diff options
author | Bernard Cafarelli <voyageur@gentoo.org> | 2007-12-08 20:06:35 +0000 |
---|---|---|
committer | Bernard Cafarelli <voyageur@gentoo.org> | 2007-12-08 20:06:35 +0000 |
commit | f10df2764b48e355cc51b96002d0643641b96b9f (patch) | |
tree | faed643e3b33385e9e235f49c62b90b6bde88548 /gnustep-base | |
parent | Remove old versions (diff) | |
download | gentoo-2-f10df2764b48e355cc51b96002d0643641b96b9f.tar.gz gentoo-2-f10df2764b48e355cc51b96002d0643641b96b9f.tar.bz2 gentoo-2-f10df2764b48e355cc51b96002d0643641b96b9f.zip |
Remove old versions
(Portage version: 2.1.4_rc9)
Diffstat (limited to 'gnustep-base')
-rw-r--r-- | gnustep-base/gnustep-gui/ChangeLog | 6 | ||||
-rw-r--r-- | gnustep-base/gnustep-gui/files/digest-gnustep-gui-0.10.3 | 3 | ||||
-rw-r--r-- | gnustep-base/gnustep-gui/files/digest-gnustep-gui-0.11.0 | 3 | ||||
-rw-r--r-- | gnustep-base/gnustep-gui/files/gsnd.initd | 45 | ||||
-rw-r--r-- | gnustep-base/gnustep-gui/gnustep-gui-0.10.3.ebuild | 90 | ||||
-rw-r--r-- | gnustep-base/gnustep-gui/gnustep-gui-0.11.0.ebuild | 89 |
6 files changed, 5 insertions, 231 deletions
diff --git a/gnustep-base/gnustep-gui/ChangeLog b/gnustep-base/gnustep-gui/ChangeLog index 16a615009fbd..1f8ed9aa054d 100644 --- a/gnustep-base/gnustep-gui/ChangeLog +++ b/gnustep-base/gnustep-gui/ChangeLog @@ -1,6 +1,10 @@ # ChangeLog for gnustep-base/gnustep-gui # Copyright 2002-2007 Gentoo Foundation; Distributed under the GPL v2 -# $Header: /var/cvsroot/gentoo-x86/gnustep-base/gnustep-gui/ChangeLog,v 1.55 2007/12/06 12:09:10 armin76 Exp $ +# $Header: /var/cvsroot/gentoo-x86/gnustep-base/gnustep-gui/ChangeLog,v 1.56 2007/12/08 20:06:35 voyageur Exp $ + + 08 Dec 2007; Bernard Cafarelli <voyageur@gentoo.org> -files/gsnd.initd, + -gnustep-gui-0.10.3.ebuild, -gnustep-gui-0.11.0.ebuild: + Remove old versions 06 Dec 2007; Raúl Porcel <armin76@gentoo.org> gnustep-gui-0.12.0.ebuild: sparc stable wrt #195990 diff --git a/gnustep-base/gnustep-gui/files/digest-gnustep-gui-0.10.3 b/gnustep-base/gnustep-gui/files/digest-gnustep-gui-0.10.3 deleted file mode 100644 index bf436dc8b302..000000000000 --- a/gnustep-base/gnustep-gui/files/digest-gnustep-gui-0.10.3 +++ /dev/null @@ -1,3 +0,0 @@ -MD5 ce015fcf9c6ff421e723811275f5a5c6 gnustep-gui-0.10.3.tar.gz 1522039 -RMD160 c556fc64ab74265391156c51d1da86563ff56752 gnustep-gui-0.10.3.tar.gz 1522039 -SHA256 2abef8a1bcea96ccae9c4b49547b8907c040ac48c90552bc8ad97809c4505763 gnustep-gui-0.10.3.tar.gz 1522039 diff --git a/gnustep-base/gnustep-gui/files/digest-gnustep-gui-0.11.0 b/gnustep-base/gnustep-gui/files/digest-gnustep-gui-0.11.0 deleted file mode 100644 index 8a2a4f748b0c..000000000000 --- a/gnustep-base/gnustep-gui/files/digest-gnustep-gui-0.11.0 +++ /dev/null @@ -1,3 +0,0 @@ -MD5 7821a516ce5f683885116d78ac09b79e gnustep-gui-0.11.0.tar.gz 1602044 -RMD160 9428d9f0e3f3487b62499d7dfb716d58d5567d2d gnustep-gui-0.11.0.tar.gz 1602044 -SHA256 cdce927b9ed55bccf38f04378bd1687404719050a6cf680bd833a53c224bb2a2 gnustep-gui-0.11.0.tar.gz 1602044 diff --git a/gnustep-base/gnustep-gui/files/gsnd.initd b/gnustep-base/gnustep-gui/files/gsnd.initd deleted file mode 100644 index 170d4d3b4398..000000000000 --- a/gnustep-base/gnustep-gui/files/gsnd.initd +++ /dev/null @@ -1,45 +0,0 @@ -#!/sbin/runscript -# Copyright 1999-2006 Gentoo Technologies, Inc. -# Distributed under the terms of the GNU General Public License, v2 or later -# $Header: /var/cvsroot/gentoo-x86/gnustep-base/gnustep-gui/files/gsnd.initd,v 1.2 2006/12/05 20:22:42 grobian Exp $ - -service_name="GNUstep sound daemon" - -if [ -e /etc/GNUstep/GNUstep.conf ]; -then - . /etc/GNUstep/GNUstep.conf -else - GNUSTEP_SYSTEM_ROOT="/usr/GNUstep/System" -fi - -start() { - ebegin "Starting ${service_name}" - - # Check for necessary files - if [ -d ${GNUSTEP_SYSTEM_ROOT}/Makefiles ]; - then - # Source GNUstep makefile - . ${GNUSTEP_SYSTEM_ROOT}/Makefiles/GNUstep.sh - else - return 1 - fi - - if [ -z "$GNUSTEP_FLATTENED" ]; - then - TDIR=${GNUSTEP_SYSTEM_ROOT}/Tools/${GNUSTEP_HOST_CPU}/${GNUSTEP_HOST_OS}/${LIBRARY_COMBO} - else - TDIR=${GNUSTEP_SYSTEM_ROOT}/Tools - fi - - if [ -x $TDIR/gnustep_sndd ]; - then - $TDIR/gnustep_sndd - fi -} - -stop() { - ebegin "Stopping ${service_name}" - - # Kill processes - killall gnustep_sndd >& /dev/null -} diff --git a/gnustep-base/gnustep-gui/gnustep-gui-0.10.3.ebuild b/gnustep-base/gnustep-gui/gnustep-gui-0.10.3.ebuild deleted file mode 100644 index 101876c119fb..000000000000 --- a/gnustep-base/gnustep-gui/gnustep-gui-0.10.3.ebuild +++ /dev/null @@ -1,90 +0,0 @@ -# Copyright 1999-2007 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.10.3.ebuild,v 1.6 2007/07/22 10:25:37 dberkholz Exp $ - -inherit gnustep - -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" - -# no ppc-macos as it bails out while compiling, needs work -KEYWORDS="~alpha amd64 ~ppc sparc x86" -SLOT="0" -LICENSE="LGPL-2.1" - -# doc has sandbox violations -IUSE="cups gif gsnd jpeg png" -DEPEND="${GNUSTEP_CORE_DEPEND} - >=gnustep-base/gnustep-make-1.10 - >=gnustep-base/gnustep-base-1.10 - x11-libs/libXt - >=media-libs/tiff-3 - jpeg? ( >=media-libs/jpeg-6b ) - gif? ( >=media-libs/giflib-4.1 ) - png? ( >=media-libs/libpng-1.2 ) - gsnd? ( - >=media-libs/audiofile-0.2 - ) - cups? ( >=net-print/cups-1.1 ) - app-text/aspell" -# gsnd needs a recent portaudio that's not in the tree yet -# =media-libs/portaudio-19* -RDEPEND="${DEPEND} - ${DEBUG_DEPEND} - ${DOC_RDEPEND}" - -egnustep_install_domain "System" - -src_unpack() { - unpack ${A} - - cd ${S} - -# if use gsnd ; -# then -# sed -i -e "s:#include <portaudio.h>:#include <portaudio-19/portaudio.h>:g" ${S}/Tools/gsnd/gsnd.m -# sed -i -e "s:-lportaudio:-lportaudio-19:g" ${S}/Tools/gsnd/GNUmakefile -# sed -i -e "s:^BUILD_GSND=.*$:BUILD_GSND=gsnd:g" ${S}/config.make.in -# fi -} - -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`" - - if use gsnd ; - then - myconf="$myconf --enable-gsnd" - myconf="$myconf --with-audiofile-include=/usr/include --with-audiofile-lib=/usr/lib" -# myconf="$myconf --with-include-flags=-I/usr/include/portaudio-19" - fi - - econf $myconf || die "configure failed" - - egnustep_make || die - -# if use doc ; -# then -# cd ${S}/Documentation -# egnustep_make || die -# fi -} - -src_install() { - egnustep_env - egnustep_install || die - -# if use doc ; -# then -# cd ${S}/Documentation -# egnustep_install || die -# fi - - use gsnd && newinitd ${FILESDIR}/gsnd.initd gsnd -} diff --git a/gnustep-base/gnustep-gui/gnustep-gui-0.11.0.ebuild b/gnustep-base/gnustep-gui/gnustep-gui-0.11.0.ebuild deleted file mode 100644 index 643e10775611..000000000000 --- a/gnustep-base/gnustep-gui/gnustep-gui-0.11.0.ebuild +++ /dev/null @@ -1,89 +0,0 @@ -# Copyright 1999-2007 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.11.0.ebuild,v 1.4 2007/09/05 19:36:46 josejx Exp $ - -inherit gnustep - -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="${IUSE} jpeg gif png gsnd doc cups" - -DEPEND="${GNUSTEP_CORE_DEPEND} - >=gnustep-base/gnustep-make-1.12.0 - >=gnustep-base/gnustep-base-1.12.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 ) - gsnd? ( - >=media-libs/audiofile-0.2 - ) - cups? ( >=net-print/cups-1.1 ) - app-text/aspell" -# gsnd needs a recent portaudio that's not in the tree yet -# =media-libs/portaudio-19* -RDEPEND="${DEPEND} - ${DEBUG_DEPEND} - ${DOC_RDEPEND}" - -egnustep_install_domain "System" - -src_unpack() { - unpack ${A} - - cd ${S} - -# if use gsnd; -# then -# sed -i -e "s:#include <portaudio.h>:#include <portaudio-2/portaudio.h>:g" ${S}/Tools/gsnd/gsnd.m -# sed -i -e "s:-lportaudio:-lportaudio-2:g" ${S}/Tools/gsnd/GNUmakefile -# sed -i -e "s:^BUILD_GSND=.*$:BUILD_GSND=gsnd:g" ${S}/config.make.in -# fi -} - -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`" - - if use gsnd; - then - myconf="$myconf `use_enable gsnd`" - myconf="$myconf --with-audiofile-include=/usr/include --with-audiofile-lib=/usr/lib" -# myconf="$myconf --with-include-flags=-I/usr/include/portaudio-2" - fi - - econf $myconf || die "configure failed" - - egnustep_make || die - - if use doc; - then - cd ${S}/Documentation - egnustep_make || die - fi -} - -src_install() { - egnustep_env - egnustep_install || die - - if use doc; - then - cd ${S}/Documentation - egnustep_install || die - fi - - use gsnd && newinitd ${FILESDIR}/gsnd.initd gsnd -} |