diff options
author | Alastair Tse <liquidx@gentoo.org> | 2003-03-31 01:28:02 +0000 |
---|---|---|
committer | Alastair Tse <liquidx@gentoo.org> | 2003-03-31 01:28:02 +0000 |
commit | b6e868e7e8b7ea01564836370356b440dc5b04af (patch) | |
tree | 3529db657d87508b1379314b552bd46eb0b8938c /dev-util/gnustep-make | |
parent | Added sparc keyword (diff) | |
download | gentoo-2-b6e868e7e8b7ea01564836370356b440dc5b04af.tar.gz gentoo-2-b6e868e7e8b7ea01564836370356b440dc5b04af.tar.bz2 gentoo-2-b6e868e7e8b7ea01564836370356b440dc5b04af.zip |
version bump
Diffstat (limited to 'dev-util/gnustep-make')
-rw-r--r-- | dev-util/gnustep-make/ChangeLog | 7 | ||||
-rw-r--r-- | dev-util/gnustep-make/files/digest-gnustep-make-1.6.0 | 1 | ||||
-rw-r--r-- | dev-util/gnustep-make/gnustep-make-1.6.0.ebuild | 35 |
3 files changed, 42 insertions, 1 deletions
diff --git a/dev-util/gnustep-make/ChangeLog b/dev-util/gnustep-make/ChangeLog index c77fa68cd638..425ae6714a67 100644 --- a/dev-util/gnustep-make/ChangeLog +++ b/dev-util/gnustep-make/ChangeLog @@ -1,6 +1,11 @@ # ChangeLog for dev-util/gnustep-make # Copyright 2002-2003 Gentoo Technologies, Inc.; Distributed under the GPL v2 -# $Header: /var/cvsroot/gentoo-x86/dev-util/gnustep-make/ChangeLog,v 1.9 2003/02/12 06:43:10 vapier Exp $ +# $Header: /var/cvsroot/gentoo-x86/dev-util/gnustep-make/ChangeLog,v 1.10 2003/03/31 01:28:02 liquidx Exp $ + +*gnustep-make-1.6.0 (31 Mar 2003) + + 31 Mar 2003; Alastair Tse <liquidx@gentoo.org> gnustep-make-1.6.0.ebuild: + version bump. thanks to Michael R. Taylor <mtaylor@member.fsf.org>. Bug #18280. *gnustep-make-1.5.1 (19 Jan 2003) diff --git a/dev-util/gnustep-make/files/digest-gnustep-make-1.6.0 b/dev-util/gnustep-make/files/digest-gnustep-make-1.6.0 new file mode 100644 index 000000000000..753507c34a95 --- /dev/null +++ b/dev-util/gnustep-make/files/digest-gnustep-make-1.6.0 @@ -0,0 +1 @@ +MD5 e17e758ee9ab5bbe24dcc01fdafdb13c gnustep-make-1.6.0.tar.gz 342471 diff --git a/dev-util/gnustep-make/gnustep-make-1.6.0.ebuild b/dev-util/gnustep-make/gnustep-make-1.6.0.ebuild new file mode 100644 index 000000000000..de3a99eaf2f0 --- /dev/null +++ b/dev-util/gnustep-make/gnustep-make-1.6.0.ebuild @@ -0,0 +1,35 @@ +# 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-make/gnustep-make-1.6.0.ebuild,v 1.1 2003/03/31 01:28:02 liquidx Exp $ + +DESCRIPTION="GNUstep makefile package" +HOMEPAGE="http://www.gnustep.org" +SRC_URI="ftp://ftp.gnustep.org/pub/gnustep/core/${P}.tar.gz" +LICENSE="LGPL-2.1" +SLOT="0" +KEYWORDS="~x86" +IUSE="" +DEPEND="virtual/glibc + >=sys-devel/gcc-3.1 + >=dev-libs/ffcall-1.8d + >=dev-libs/gmp-4.1 + >=dev-util/guile-1.4 + >=dev-libs/openssl-0.9.6g + >=media-libs/tiff-3.5.7-r1 + >=dev-libs/libxml2-2.4.22 + >=media-libs/audiofile-0.2.3 + >=x11-wm/WindowMaker-0.80.1" + +src_compile() { + ./configure \ + --host=${CHOST} || die "./configure failed" + emake || die +} + +src_install() { + make \ + GNUSTEP_SYSTEM_ROOT=${D}/usr/GNUstep/System \ + GNUSTEP_LOCAL_ROOT=${D}/usr/GNUstep/Local \ + GNUSTEP_NETWORK_ROOT=${D}/usr/GNUstep/Network \ + install || die "install failed" +} |