blob: 6af5b7c27dd0db88e2f3f8da3e43efea1b69b365 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
|
# Copyright 1999-2014 Gentoo Foundation
# Distributed under the terms of the GNU General Public License v2
# $Header: /var/cvsroot/gentoo-x86/gnustep-apps/projectcenter/projectcenter-0.6.0.ebuild,v 1.6 2014/08/10 21:20:15 slyfox Exp $
EAPI=4
inherit gnustep-2
MY_P=${P/projectc/ProjectC}
S=${WORKDIR}/${MY_P}
DESCRIPTION="An IDE for GNUstep"
HOMEPAGE="http://www.gnustep.org/experience/ProjectCenter.html"
SRC_URI="http://ftpmain.gnustep.org/pub/gnustep/dev-apps/${MY_P}.tar.gz"
KEYWORDS="amd64 ppc x86 ~x86-fbsd"
LICENSE="GPL-2"
SLOT="0"
IUSE=""
RDEPEND=">=sys-devel/gdb-6.0"
src_prepare() {
epatch "${FILESDIR}"/${P}-32788+33818.patch
}
|