summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorFabian Groffen <grobian@gentoo.org>2007-08-18 14:51:49 +0000
committerFabian Groffen <grobian@gentoo.org>2007-08-18 14:51:49 +0000
commit13cca5da64c86ac045c0d2d9ec25375347fa5cbc (patch)
treec157ad93179ad0db62ddb119b2c5428b4270164f
parentMoved to the main tree (diff)
downloadgnustep-13cca5da64c86ac045c0d2d9ec25375347fa5cbc.tar.gz
gnustep-13cca5da64c86ac045c0d2d9ec25375347fa5cbc.tar.bz2
gnustep-13cca5da64c86ac045c0d2d9ec25375347fa5cbc.zip
moved to main tree
svn path=/overlay/; revision=312
-rw-r--r--gnustep-base/gnustep-gui/Manifest2
-rw-r--r--gnustep-base/gnustep-gui/gnustep-gui-0.12.0.ebuild43
2 files changed, 0 insertions, 45 deletions
diff --git a/gnustep-base/gnustep-gui/Manifest b/gnustep-base/gnustep-gui/Manifest
deleted file mode 100644
index 2f635cb..0000000
--- a/gnustep-base/gnustep-gui/Manifest
+++ /dev/null
@@ -1,2 +0,0 @@
-DIST gnustep-gui-0.12.0.tar.gz 1738576 RMD160 886839d60065dbb598d9aefed929a820a0b5dc36 SHA1 f3ebc28181db5a30788ccfc547404a6f52c49fd0 SHA256 07fc74efb2db23a4499289aa690754d533c19897681152add93a074c05fd8a6e
-EBUILD gnustep-gui-0.12.0.ebuild 1121 RMD160 7c3d429dc4ad7e3ce5890a9e9b738f121e8fc528 SHA1 981f7a509eb75ccb3b716747f3122b99af6fa3fc SHA256 88eee1179623cdc1d3a255bc6486b12ee23e469a11cead6d6271dd297a0a6428
diff --git a/gnustep-base/gnustep-gui/gnustep-gui-0.12.0.ebuild b/gnustep-base/gnustep-gui/gnustep-gui-0.12.0.ebuild
deleted file mode 100644
index c55f528..0000000
--- a/gnustep-base/gnustep-gui/gnustep-gui-0.12.0.ebuild
+++ /dev/null
@@ -1,43 +0,0 @@
-# Copyright 1999-2007 Gentoo Foundation
-# Distributed under the terms of the GNU General Public License v2
-# $Header: $
-
-inherit gnustep-base
-
-DESCRIPTION="Library of GUI classes written in Obj-C"
-HOMEPAGE="http://www.gnustep.org/"
-SRC_URI="ftp://ftp.gnustep.org/pub/gnustep/core/${P}.tar.gz"
-
-KEYWORDS="~alpha ~amd64 ~ppc ~sparc ~x86"
-SLOT="0"
-LICENSE="LGPL-2.1"
-
-IUSE="jpeg gif png cups"
-
-DEPEND="${GNUSTEP_CORE_DEPEND}
- >=gnustep-base/gnustep-base-1.14.0
- x11-libs/libXt
- >=media-libs/tiff-3
- jpeg? ( >=media-libs/jpeg-6b )
- gif? ( >=media-libs/giflib-4.1 )
- png? ( >=media-libs/libpng-1.2 )
- cups? ( >=net-print/cups-1.1 )
- media-libs/audiofile
- app-text/aspell"
-RDEPEND="${DEPEND}"
-
-src_compile() {
- egnustep_env
-
- myconf="--with-tiff-include=/usr/include --with-tiff-library=/usr/lib"
- use gif && myconf="$myconf --disable-ungif --enable-libgif"
- myconf="$myconf `use_enable jpeg`"
- myconf="$myconf `use_enable png`"
- myconf="$myconf `use_enable cups`"
- # gsnd is disabled until portaudio-19 is unmasked in portage
- myconf="$myconf --disable-gsnd"
-
- econf $myconf || die "configure failed"
-
- egnustep_make || die
-}