diff options
author | Nick Hadaway <raker@gentoo.org> | 2002-09-03 19:25:36 +0000 |
---|---|---|
committer | Nick Hadaway <raker@gentoo.org> | 2002-09-03 19:25:36 +0000 |
commit | 13da29fe2ea95da2dabaa3364529d2ad0f74a489 (patch) | |
tree | 635f08fbce2b45ae21ad42d289736c92aab2ad1b /dev-util/gnustep-back | |
parent | mask for new versions of gnustep programs (diff) | |
download | gentoo-2-13da29fe2ea95da2dabaa3364529d2ad0f74a489.tar.gz gentoo-2-13da29fe2ea95da2dabaa3364529d2ad0f74a489.tar.bz2 gentoo-2-13da29fe2ea95da2dabaa3364529d2ad0f74a489.zip |
Version bump on gnustep. Currently masked. This bumps all the unstable
builds to stable revisions. gcc3 is required for these packages.
Diffstat (limited to 'dev-util/gnustep-back')
-rw-r--r-- | dev-util/gnustep-back/ChangeLog | 11 | ||||
-rw-r--r-- | dev-util/gnustep-back/files/digest-gnustep-back-0.8.0 | 1 | ||||
-rw-r--r-- | dev-util/gnustep-back/gnustep-back-0.8.0.ebuild | 42 |
3 files changed, 51 insertions, 3 deletions
diff --git a/dev-util/gnustep-back/ChangeLog b/dev-util/gnustep-back/ChangeLog index a2f736b6542b..ac09f1e7d570 100644 --- a/dev-util/gnustep-back/ChangeLog +++ b/dev-util/gnustep-back/ChangeLog @@ -1,10 +1,15 @@ -# ChangeLog for <CATEGORY>/<PACKAGE_NAME> +# ChangeLog for dev-util/gnustep-back # Copyright 2002 Gentoo Technologies, Inc.; Distributed under the GPL v2 -# $Header: /var/cvsroot/gentoo-x86/dev-util/gnustep-back/ChangeLog,v 1.1 2002/07/19 20:40:13 raker Exp $ +# $Header: /var/cvsroot/gentoo-x86/dev-util/gnustep-back/ChangeLog,v 1.2 2002/09/03 19:25:35 raker Exp $ + +*gnustep-back-0.8.0 (03 Sep 2002) + + 03 Sep 2002; Nick Hadaway <raker@gentoo.org> gnustep-back-0.8.0.ebuild, + files/digest-gnustep-back-0.8.0 : + Version bump. *gnustep-back-0.7.9 (19 Jul 2002) 19 Jul 2002; Nick Hadaway <raker@gentoo.org> gnustep-back-0.7.9.ebuild, ChangeLog, files/digest-gnustep-back-0.7.9 : - Initial ebuild. diff --git a/dev-util/gnustep-back/files/digest-gnustep-back-0.8.0 b/dev-util/gnustep-back/files/digest-gnustep-back-0.8.0 new file mode 100644 index 000000000000..0b99743ed2a8 --- /dev/null +++ b/dev-util/gnustep-back/files/digest-gnustep-back-0.8.0 @@ -0,0 +1 @@ +MD5 dfa9caa98acce96f394afeacc77665b1 gnustep-back-0.8.0.tar.gz 263324 diff --git a/dev-util/gnustep-back/gnustep-back-0.8.0.ebuild b/dev-util/gnustep-back/gnustep-back-0.8.0.ebuild new file mode 100644 index 000000000000..eee476b1100c --- /dev/null +++ b/dev-util/gnustep-back/gnustep-back-0.8.0.ebuild @@ -0,0 +1,42 @@ +# 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-back/gnustep-back-0.8.0.ebuild,v 1.1 2002/09/03 19:25:35 raker Exp $ + +DESCRIPTION="GNUstep GUI backend" +HOMEPAGE="http://www.gnustep.org" +SRC_URI="ftp://ftp.gnustep.org/pub/gnustep/core/${P}.tar.gz" +LICENSE="LGPL" +SLOT="0" +KEYWORDS="x86 -ppc -sparc -sparc64" +DEPEND=">=dev-util/gnustep-gui-0.8.0 + >=media-libs/tiff-3.5.7 + >=media-libs/jpeg-6b-r2 + x11-base/xfree" +S=${WORKDIR}/${P} + +src_compile() { + + . /usr/GNUstep/System/Makefiles/GNUstep.sh + + ./configure --prefix=/usr/GNUstep \ + --with-jpeg-library=/usr/lib \ + --with-jpeg-include=/usr/include \ + --with-tiff-library=/usr/lib \ + --with-tiff-include=/usr/include \ + --with-x \ + || die "configure failed" + + make || die + +} + +src_install () { + + . /usr/GNUstep/System/Makefiles/GNUstep.sh + + make \ + GNUSTEP_INSTALLATION_DIR=${D}/usr/GNUstep/System \ + INSTALL_ROOT_DIR=${D} \ + install || die "install failed" + +} |