blob: fa8f3629176ab59b9a7d4ccd4eb1ac869d0aea6a (
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
32
33
34
35
36
37
|
# Copyright 1999-2003 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.3.4-r1.ebuild,v 1.4 2003/02/13 11:53:52 vapier Exp $
DESCRIPTION="GNUstep base package"
HOMEPAGE="http://www.gnustep.org"
LICENSE="LGPL"
DEPEND=">=dev-util/gnustep-make-1.3.4"
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
./configure \
--host=${CHOST} \
--prefix=/usr \
--mandir=/usr/share/man \
--infodir=/usr/share/info \
--sysconfdir=/etc \
--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"
}
|