diff options
author | Armando Di Cianno <fafhrd@gentoo.org> | 2004-11-16 23:15:11 +0000 |
---|---|---|
committer | Armando Di Cianno <fafhrd@gentoo.org> | 2004-11-16 23:15:11 +0000 |
commit | c89f00d140714503ec542cd23d6db763aeed6e94 (patch) | |
tree | eea2a3a3009c0cbda9388aad9b4d94202b024baf /gnustep-base/gnustep-gui | |
parent | digest fix (diff) | |
download | gentoo-2-c89f00d140714503ec542cd23d6db763aeed6e94.tar.gz gentoo-2-c89f00d140714503ec542cd23d6db763aeed6e94.tar.bz2 gentoo-2-c89f00d140714503ec542cd23d6db763aeed6e94.zip |
Version bumps for cvs based ebuilds.
Diffstat (limited to 'gnustep-base/gnustep-gui')
-rw-r--r-- | gnustep-base/gnustep-gui/Manifest | 2 | ||||
-rw-r--r-- | gnustep-base/gnustep-gui/files/digest-gnustep-gui-0.9.5_pre20041116 | 0 | ||||
-rw-r--r-- | gnustep-base/gnustep-gui/gnustep-gui-0.9.5_pre20041116.ebuild | 54 |
3 files changed, 56 insertions, 0 deletions
diff --git a/gnustep-base/gnustep-gui/Manifest b/gnustep-base/gnustep-gui/Manifest index a2113d66b2e1..2429cae534c2 100644 --- a/gnustep-base/gnustep-gui/Manifest +++ b/gnustep-base/gnustep-gui/Manifest @@ -1,3 +1,4 @@ +MD5 efb8570987c1408c9db31788c7d58542 gnustep-gui-0.9.5_pre20041116.ebuild 1508 MD5 08b57ab90ee62e3af9d126a19b080daa gnustep-gui-0.9.5_pre20041030-r1.ebuild 1629 MD5 1b18e0f1b71a4895fde6e9ee4b53786f ChangeLog 5498 MD5 649db105cbe2e9ffcca068143f88926f metadata.xml 1355 @@ -5,3 +6,4 @@ MD5 365f2eb8569d79f58892088ad387c367 gnustep-gui-0.9.4.ebuild 1339 MD5 6f66904f0ad8d980c653d5c0fdf7d81b files/gnustep-gui-0.9.4-camaelon.patch 4029 MD5 d41d8cd98f00b204e9800998ecf8427e files/digest-gnustep-gui-0.9.5_pre20041030-r1 0 MD5 c6c9275a80b7fc7af0686d0875489069 files/digest-gnustep-gui-0.9.4 70 +MD5 d41d8cd98f00b204e9800998ecf8427e files/digest-gnustep-gui-0.9.5_pre20041116 0 diff --git a/gnustep-base/gnustep-gui/files/digest-gnustep-gui-0.9.5_pre20041116 b/gnustep-base/gnustep-gui/files/digest-gnustep-gui-0.9.5_pre20041116 new file mode 100644 index 000000000000..e69de29bb2d1 --- /dev/null +++ b/gnustep-base/gnustep-gui/files/digest-gnustep-gui-0.9.5_pre20041116 diff --git a/gnustep-base/gnustep-gui/gnustep-gui-0.9.5_pre20041116.ebuild b/gnustep-base/gnustep-gui/gnustep-gui-0.9.5_pre20041116.ebuild new file mode 100644 index 000000000000..d978a848747c --- /dev/null +++ b/gnustep-base/gnustep-gui/gnustep-gui-0.9.5_pre20041116.ebuild @@ -0,0 +1,54 @@ +# Copyright 1999-2004 Gentoo Foundation +# Distributed under the terms of the GNU General Public License v2 +# $Header: /var/cvsroot/gentoo-x86/gnustep-base/gnustep-gui/gnustep-gui-0.9.5_pre20041116.ebuild,v 1.1 2004/11/16 23:14:30 fafhrd Exp $ + +ECVS_CVS_COMMAND="cvs -q" +ECVS_SERVER="savannah.gnu.org:/cvsroot/gnustep" +ECVS_USER="anoncvs" +ECVS_AUTH="ext" +ECVS_MODULE="gnustep/core/gui" +ECVS_CO_OPTS="-P -D ${PV/*_pre}" +ECVS_UP_OPTS="-dP -D ${PV/*_pre}" +ECVS_TOP_DIR="${DISTDIR}/cvs-src/savannah.gnu.org-gnustep" +inherit gnustep cvs + +S=${WORKDIR}/${ECVS_MODULE} + +DESCRIPTION="It is a library of graphical user interface classes written completely in the Objective-C language." +HOMEPAGE="http://www.gnustep.org" + +KEYWORDS="~ppc ~x86 ~amd64 ~sparc ~alpha" +SLOT="0" +LICENSE="LGPL-2.1" + +IUSE="${IUSE} jpeg gif png gsnd doc cups" +DEPEND="${GNUSTEP_BASE_DEPEND} + >=gnustep-base/gnustep-base-1.10.2_pre* + virtual/x11 + >=media-libs/tiff-3* + jpeg? >=media-libs/jpeg-6b* + gif? >=media-libs/libungif-4.1* + png? >=media-libs/libpng-1.2* + gsnd? >=media-libs/audiofile-0.2* + cups? >=net-print/cups-1.1* + app-text/aspell" +RDEPEND="${DEPEND} + ${DOC_RDEPEND}" + +egnustep_install_domain "System" + +src_compile() { + egnustep_env + + myconf="--with-tiff-include=/usr/include --with-tiff-library=/usr/lib" + myconf="$myconf `use_enable gsnd`" + use gsnd && myconf="$myconf --with-audiofile-include=/usr/include --with-audiofile-lib=/usr/lib" + use gif && myconf="$myconf --enable-ungif" + myconf="$myconf `use_enable jpeg`" + myconf="$myconf `use_enable png`" + myconf="$myconf `use_enable cups`" + econf $myconf || die "configure failed" + + egnustep_make || die +} + |