blob: 802b56875a5861c6ec2eb6e09f069f14c91deed6 (
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
25
26
27
28
29
30
31
|
# Copyright 1999-2002 Gentoo Technologies, Inc.
# Distributed under the terms of the GNU General Public License v2
# $Header: /var/cvsroot/gentoo-x86/dev-util/gnustep-base/gnustep-base-1.5.1.ebuild,v 1.2 2003/02/13 08:29:11 raker Exp $
IUSE=""
DESCRIPTION="GNUstep base package"
HOMEPAGE="http://www.gnustep.org"
LICENSE="LGPL"
DEPEND=">=dev-util/gnustep-make-1.5.1
>=dev-libs/libxml2-2.4.23"
RDEPEND="virtual/glibc"
SRC_URI="ftp://ftp.gnustep.org/pub/gnustep/core/${P}.tar.gz"
KEYWORDS="x86 -ppc ~sparc "
SLOT="0"
src_compile() {
. /usr/GNUstep/System/Makefiles/GNUstep.sh
econf \
--with-xml-prefix=/usr \
--with-gmp-include=/usr/include \
--with-gmp-library=/usr/lib || die "./configure failed"
make || die
}
src_install () {
. /usr/GNUstep/System/Makefiles/GNUstep.sh
make install \
GNUSTEP_INSTALLATION_DIR=${D}/usr/GNUstep/System \
INSTALL_ROOT_DIR=${D} \
|| die "install failed"
}
|