diff options
author | Nick Hadaway <raker@gentoo.org> | 2003-02-04 18:51:10 +0000 |
---|---|---|
committer | Nick Hadaway <raker@gentoo.org> | 2003-02-04 18:51:10 +0000 |
commit | 0c42d8b2892052008bb689586e7ed718749c22b6 (patch) | |
tree | 07a003693270da3c890f719bf9de40b43f2c687f /dev-util | |
parent | version bump, please look at changelog for details (diff) | |
download | gentoo-2-0c42d8b2892052008bb689586e7ed718749c22b6.tar.gz gentoo-2-0c42d8b2892052008bb689586e7ed718749c22b6.tar.bz2 gentoo-2-0c42d8b2892052008bb689586e7ed718749c22b6.zip |
Version bump.
Diffstat (limited to 'dev-util')
-rw-r--r-- | dev-util/gnustep-gui/ChangeLog | 8 | ||||
-rw-r--r-- | dev-util/gnustep-gui/files/digest-gnustep-gui-0.8.3 | 1 | ||||
-rw-r--r-- | dev-util/gnustep-gui/gnustep-gui-0.8.3.ebuild | 39 |
3 files changed, 47 insertions, 1 deletions
diff --git a/dev-util/gnustep-gui/ChangeLog b/dev-util/gnustep-gui/ChangeLog index 80b169db83d8..2095b0f9c4a9 100644 --- a/dev-util/gnustep-gui/ChangeLog +++ b/dev-util/gnustep-gui/ChangeLog @@ -1,6 +1,12 @@ # ChangeLog for dev-util/gnustep-gui # Copyright 2002 Gentoo Technologies, Inc.; Distributed under the GPL v2 -# $Header: /var/cvsroot/gentoo-x86/dev-util/gnustep-gui/ChangeLog,v 1.4 2002/12/13 10:56:49 blizzy Exp $ +# $Header: /var/cvsroot/gentoo-x86/dev-util/gnustep-gui/ChangeLog,v 1.5 2003/02/04 18:51:10 raker Exp $ + +*gnustep-gui-0.8.3 (04 Feb 2003) + + 04 Feb 2003; Nick Hadaway <raker@gentoo.org> gnustep-gui-0.8.3.ebuild, + files/digest-gnustep-gui-0.8.3 : + Version bump. (unstable) 06 Dec 2002; Rodney Rees <manson@gentoo.org> : changed sparc ~sparc keywords diff --git a/dev-util/gnustep-gui/files/digest-gnustep-gui-0.8.3 b/dev-util/gnustep-gui/files/digest-gnustep-gui-0.8.3 new file mode 100644 index 000000000000..4c8a673e3247 --- /dev/null +++ b/dev-util/gnustep-gui/files/digest-gnustep-gui-0.8.3 @@ -0,0 +1 @@ +MD5 4d84f35eaee651e1a8edc883cd098ba2 gnustep-gui-0.8.3.tar.gz 2070740 diff --git a/dev-util/gnustep-gui/gnustep-gui-0.8.3.ebuild b/dev-util/gnustep-gui/gnustep-gui-0.8.3.ebuild new file mode 100644 index 000000000000..765a616e8749 --- /dev/null +++ b/dev-util/gnustep-gui/gnustep-gui-0.8.3.ebuild @@ -0,0 +1,39 @@ +# 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-gui/gnustep-gui-0.8.3.ebuild,v 1.1 2003/02/04 18:51:10 raker Exp $ + +DESCRIPTION="GNUstep AppKit implementation" +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 " +DEPEND=">=dev-util/gnustep-base-1.4.0 + >=media-libs/tiff-3.5.7 + >=media-libs/jpeg-6b-r2" +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 \ + || die "configure failed" + + make LD_LIBRARY_PATH=$LD_LIBRARY_PATH || 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" + +} |