diff options
author | Gregorio Guidi <greg_g@gentoo.org> | 2005-02-08 15:30:15 +0000 |
---|---|---|
committer | Gregorio Guidi <greg_g@gentoo.org> | 2005-02-08 15:30:15 +0000 |
commit | 42be1cca4124f5544084395b1124cccaf2d10b05 (patch) | |
tree | 0f706d6e6ccf252aedec18e77194b4e59e97ce78 /kde-base/arts | |
parent | Remove blockers on removed packages. (diff) | |
download | gentoo-2-42be1cca4124f5544084395b1124cccaf2d10b05.tar.gz gentoo-2-42be1cca4124f5544084395b1124cccaf2d10b05.tar.bz2 gentoo-2-42be1cca4124f5544084395b1124cccaf2d10b05.zip |
Remove old ebuilds.
(Portage version: 2.0.51-r15)
Diffstat (limited to 'kde-base/arts')
-rw-r--r-- | kde-base/arts/ChangeLog | 7 | ||||
-rw-r--r-- | kde-base/arts/arts-1.2.0.ebuild | 75 | ||||
-rw-r--r-- | kde-base/arts/arts-1.2.2.ebuild | 83 | ||||
-rw-r--r-- | kde-base/arts/arts-1.2.3.ebuild | 4 | ||||
-rw-r--r-- | kde-base/arts/arts-1.3.0.ebuild | 85 | ||||
-rw-r--r-- | kde-base/arts/files/arts-1.2.2-buffer.patch | 27 | ||||
-rw-r--r-- | kde-base/arts/files/digest-arts-1.2.0 | 1 | ||||
-rw-r--r-- | kde-base/arts/files/digest-arts-1.2.2 | 1 | ||||
-rw-r--r-- | kde-base/arts/files/digest-arts-1.3.0 | 1 |
9 files changed, 8 insertions, 276 deletions
diff --git a/kde-base/arts/ChangeLog b/kde-base/arts/ChangeLog index a9c2afa5ff7b..78b397378dc4 100644 --- a/kde-base/arts/ChangeLog +++ b/kde-base/arts/ChangeLog @@ -1,6 +1,11 @@ # ChangeLog for kde-base/arts # Copyright 2002-2005 Gentoo Foundation; Distributed under the GPL v2 -# $Header: /var/cvsroot/gentoo-x86/kde-base/arts/ChangeLog,v 1.141 2005/02/07 19:59:15 greg_g Exp $ +# $Header: /var/cvsroot/gentoo-x86/kde-base/arts/ChangeLog,v 1.142 2005/02/08 15:30:15 greg_g Exp $ + + 08 Feb 2005; Gregorio Guidi <greg_g@gentoo.org> + -files/arts-1.2.2-buffer.patch, -arts-1.2.0.ebuild, -arts-1.2.2.ebuild, + arts-1.2.3.ebuild, -arts-1.3.0.ebuild: + Remove old ebuilds. *arts-1.3.2-r1 (07 Feb 2005) diff --git a/kde-base/arts/arts-1.2.0.ebuild b/kde-base/arts/arts-1.2.0.ebuild deleted file mode 100644 index f47323d450f3..000000000000 --- a/kde-base/arts/arts-1.2.0.ebuild +++ /dev/null @@ -1,75 +0,0 @@ -# Copyright 1999-2005 Gentoo Foundation -# Distributed under the terms of the GNU General Public License v2 -# $Header: /var/cvsroot/gentoo-x86/kde-base/arts/arts-1.2.0.ebuild,v 1.17 2005/01/15 12:54:34 danarmak Exp $ - -inherit kde flag-o-matic -set-kdedir 3.2 - -DESCRIPTION="aRts, the KDE sound (and all-around multimedia) server/output manager" -HOMEPAGE="http://multimedia.kde.org/" -SRC_URI="mirror://kde/stable/${PV/1.2.0/3.2}/src/${PN}-${PV}.tar.bz2" - -LICENSE="GPL-2 LGPL-2" -SLOT="3.2" -KEYWORDS="x86 ppc sparc hppa amd64 alpha ia64" -IUSE="alsa oggvorbis esd artswrappersuid mad" - -DEPEND="alsa? ( media-libs/alsa-lib virtual/alsa ) - oggvorbis? ( media-libs/libvorbis media-libs/libogg ) - esd? ( media-sound/esound ) - mad? ( media-libs/libmad media-libs/libid3tag ) - media-libs/audiofile - >=dev-libs/glib-2 - >=x11-libs/qt-3.2 - >=sys-apps/portage-2.0.49-r8" - -# patch to configure.in.in that makes the vorbis, libmad deps optional -# has no version number in its filename because it's the same for all -# arts versions - the patched file hasn't changed in a year's time -# PATCHES="$FILESDIR/optional-deps.diff" - -src_unpack() { - kde_src_unpack - kde_sandbox_patch ${S}/soundserver - # for the configure.in.in patch, for some reason it's not automatically picked up - # rm -f $S/configure -} - -src_compile() { - #fix bug 13453 - filter-flags -foptimize-sibling-calls - - myconf="$myconf `use_enable alsa`" - myconf="$myconf `use_enable oggvorbis vorbis`" - myconf="$myconf `use_enable mad libmad`" - - kde_src_compile -} - -src_install() { - kde_src_install - dodoc ${S}/doc/{NEWS,README,TODO} - - # moved here from kdelibs so that when arts is installed - # without kdelibs it's still in the path. - dodir /etc/env.d -echo "PATH=${PREFIX}/bin -ROOTPATH=${PREFIX}/sbin:${PREFIX}/bin -LDPATH=${PREFIX}/lib -CONFIG_PROTECT=${PREFIX}/share/config" > ${D}/etc/env.d/48kdepaths-3.2.0 # number goes down with version upgrade - - echo "KDEDIR=$PREFIX" > ${D}/etc/env.d/57kdedir-3.2.0 # number goes up with version upgrade - - # used for realtime priority, but off by default as it is a security hazard - use artswrappersuid && chmod +s ${D}/${PREFIX}/bin/artswrapper -} - -pkg_postinst() { - if ! use artswrappersuid ; then - einfo "Run chmod +s ${PREFIX}/bin/artswrapper to let artsd use realtime priority" - einfo "and so avoid possible skips in sound. However, on untrusted systems this" - einfo "creates the possibility of a DoS attack that'll use 100% cpu at realtime" - einfo "priority, and so is off by default. See bug #7883." - einfo "Or, you can set the local artswrappersuid USE flag to make the ebuild do this." - fi -} diff --git a/kde-base/arts/arts-1.2.2.ebuild b/kde-base/arts/arts-1.2.2.ebuild deleted file mode 100644 index 42054fa5332b..000000000000 --- a/kde-base/arts/arts-1.2.2.ebuild +++ /dev/null @@ -1,83 +0,0 @@ -# Copyright 1999-2005 Gentoo Foundation -# Distributed under the terms of the GNU General Public License v2 -# $Header: /var/cvsroot/gentoo-x86/kde-base/arts/arts-1.2.2.ebuild,v 1.15 2005/01/15 12:54:34 danarmak Exp $ - -inherit kde flag-o-matic eutils -set-kdedir 3.2 - -DESCRIPTION="aRts, the KDE sound (and all-around multimedia) server/output manager" -HOMEPAGE="http://multimedia.kde.org/" -SRC_URI="mirror://kde/stable/${PV/1.2.2/3.2.2}/src/${PN}-${PV}.tar.bz2" - -LICENSE="GPL-2 LGPL-2" -SLOT="3.2" -KEYWORDS="x86 ppc sparc ~mips alpha hppa amd64 ~ia64" -IUSE="alsa oggvorbis esd artswrappersuid mad" - -DEPEND="alsa? ( media-libs/alsa-lib virtual/alsa ) - oggvorbis? ( media-libs/libvorbis media-libs/libogg ) - esd? ( media-sound/esound ) - mad? ( media-libs/libmad media-libs/libid3tag ) - media-libs/audiofile - >=dev-libs/glib-2 - >=x11-libs/qt-3.2 - >=sys-apps/portage-2.0.49-r8" - -# patch to configure.in.in that makes the vorbis, libmad deps optional -# has no version number in its filename because it's the same for all -# arts versions - the patched file hasn't changed in a year's time -# PATCHES="$FILESDIR/optional-deps.diff" - -src_unpack() { - kde_src_unpack - kde_sandbox_patch ${S}/soundserver - # for the configure.in.in patch, for some reason it's not automatically picked up - # rm -f $S/configure - - cd ${S} - use amd64 && epatch ${FILESDIR}/arts-${PV}-buffer.patch - # this patch fixes the high cpu usage of mp3 and vorbis - epatch ${FILESDIR}/arts-vorbis-fix.dif -} - -src_compile() { - #fix bug 13453 - filter-flags -foptimize-sibling-calls - - #fix bug 41980 - use sparc && filter-flags -fomit-frame-pointer - - myconf="$myconf `use_enable alsa`" - myconf="$myconf `use_enable oggvorbis vorbis`" - myconf="$myconf `use_enable mad libmad`" - - kde_src_compile -} - -src_install() { - kde_src_install - dodoc ${S}/doc/{NEWS,README,TODO} - - # moved here from kdelibs so that when arts is installed - # without kdelibs it's still in the path. - dodir /etc/env.d -echo "PATH=${PREFIX}/bin -ROOTPATH=${PREFIX}/sbin:${PREFIX}/bin -LDPATH=${PREFIX}/lib -CONFIG_PROTECT=${PREFIX}/share/config" > ${D}/etc/env.d/48kdepaths-3.2.2 # number goes down with version upgrade - - echo "KDEDIR=$PREFIX" > ${D}/etc/env.d/57kdedir-3.2.2 # number goes up with version upgrade - - # used for realtime priority, but off by default as it is a security hazard - use artswrappersuid && chmod +s ${D}/${PREFIX}/bin/artswrapper -} - -pkg_postinst() { - if ! use artswrappersuid ; then - einfo "Run chmod +s ${PREFIX}/bin/artswrapper to let artsd use realtime priority" - einfo "and so avoid possible skips in sound. However, on untrusted systems this" - einfo "creates the possibility of a DoS attack that'll use 100% cpu at realtime" - einfo "priority, and so is off by default. See bug #7883." - einfo "Or, you can set the local artswrappersuid USE flag to make the ebuild do this." - fi -} diff --git a/kde-base/arts/arts-1.2.3.ebuild b/kde-base/arts/arts-1.2.3.ebuild index 99ef3818fd1c..d72cac9a5d44 100644 --- a/kde-base/arts/arts-1.2.3.ebuild +++ b/kde-base/arts/arts-1.2.3.ebuild @@ -1,6 +1,6 @@ # Copyright 1999-2005 Gentoo Foundation # Distributed under the terms of the GNU General Public License v2 -# $Header: /var/cvsroot/gentoo-x86/kde-base/arts/arts-1.2.3.ebuild,v 1.14 2005/01/15 12:54:34 danarmak Exp $ +# $Header: /var/cvsroot/gentoo-x86/kde-base/arts/arts-1.2.3.ebuild,v 1.15 2005/02/08 15:30:15 greg_g Exp $ inherit kde flag-o-matic eutils set-kdedir 3.2 @@ -35,7 +35,7 @@ src_unpack() { # rm -f $S/configure cd ${S} - use amd64 && epatch ${FILESDIR}/arts-1.2.2-buffer.patch + use amd64 && epatch ${FILESDIR}/${P}-buffer.patch # this patch fixes the high cpu usage of mp3 and vorbis epatch ${FILESDIR}/arts-vorbis-fix.dif } diff --git a/kde-base/arts/arts-1.3.0.ebuild b/kde-base/arts/arts-1.3.0.ebuild deleted file mode 100644 index 72ed7bce7329..000000000000 --- a/kde-base/arts/arts-1.3.0.ebuild +++ /dev/null @@ -1,85 +0,0 @@ -# Copyright 1999-2005 Gentoo Foundation -# Distributed under the terms of the GNU General Public License v2 -# $Header: /var/cvsroot/gentoo-x86/kde-base/arts/arts-1.3.0.ebuild,v 1.15 2005/01/15 12:54:34 danarmak Exp $ - -inherit kde flag-o-matic eutils -set-kdedir 3.3 - -DESCRIPTION="aRts, the KDE sound (and all-around multimedia) server/output manager" -HOMEPAGE="http://multimedia.kde.org/" -SRC_URI="mirror://kde/stable/${PV/1.3.0/3.3}/src/${PN}-${PV}.tar.bz2" - -LICENSE="GPL-2 LGPL-2" -SLOT="3.3" -KEYWORDS="amd64 hppa ppc ppc64 sparc x86" -IUSE="alsa oggvorbis esd artswrappersuid jack mad" - -DEPEND="alsa? ( media-libs/alsa-lib virtual/alsa ) - oggvorbis? ( media-libs/libvorbis media-libs/libogg ) - esd? ( media-sound/esound ) - jack? ( media-sound/jack-audio-connection-kit ) - mad? ( media-libs/libmad media-libs/libid3tag ) - media-libs/audiofile - >=dev-libs/glib-2 - >=x11-libs/qt-3.3 - >=sys-apps/portage-2.0.49-r8" - -# patch to configure.in.in that makes the vorbis, libmad deps optional -# has no version number in its filename because it's the same for all -# arts versions - the patched file hasn't changed in a year's time -# PATCHES="$FILESDIR/optional-deps.diff" - -src_unpack() { - kde_src_unpack - epatch ${FILESDIR}/1.3.0-jack-configure.in.in.patch - - kde_sandbox_patch ${S}/soundserver - # for the configure.in.in patch, for some reason it's not automatically picked up - # rm -f $S/configure - - cd ${S} && make -f admin/Makefile.common - # use amd64 && epatch ${FILESDIR}/arts-${PV}-buffer.patch - # this patch fixes the high cpu usage of mp3 and vorbis - # epatch ${FILESDIR}/arts-vorbis-fix.dif -} - -src_compile() { - - #fix bug 13453 - filter-flags -foptimize-sibling-calls - - #fix bug 41980 - use sparc && filter-flags -fomit-frame-pointer - - myconf="$myconf $(use_enable alsa) $(use_enable oggvorbis vorbis) $(use_enable mad libmad) $(use_enable jack)" - - kde_src_compile -} - -src_install() { - kde_src_install - dodoc ${S}/doc/{NEWS,README,TODO} - - # moved here from kdelibs so that when arts is installed - # without kdelibs it's still in the path. - dodir /etc/env.d -echo "PATH=${PREFIX}/bin -ROOTPATH=${PREFIX}/sbin:${PREFIX}/bin -LDPATH=${PREFIX}/lib -CONFIG_PROTECT=\"${PREFIX}/share/config ${PREFIX}/env ${PREFIX}/shutdown\"" > ${D}/etc/env.d/47kdepaths-3.3.0 # number goes down with version upgrade - - echo "KDEDIR=$PREFIX" > ${D}/etc/env.d/58kdedir-3.3.0 # number goes up with version upgrade - - # used for realtime priority, but off by default as it is a security hazard - use artswrappersuid && chmod +s ${D}/${PREFIX}/bin/artswrapper -} - -pkg_postinst() { - if ! use artswrappersuid ; then - einfo "Run chmod +s ${PREFIX}/bin/artswrapper to let artsd use realtime priority" - einfo "and so avoid possible skips in sound. However, on untrusted systems this" - einfo "creates the possibility of a DoS attack that'll use 100% cpu at realtime" - einfo "priority, and so is off by default. See bug #7883." - einfo "Or, you can set the local artswrappersuid USE flag to make the ebuild do this." - fi -} diff --git a/kde-base/arts/files/arts-1.2.2-buffer.patch b/kde-base/arts/files/arts-1.2.2-buffer.patch deleted file mode 100644 index b8bb4a94ec9f..000000000000 --- a/kde-base/arts/files/arts-1.2.2-buffer.patch +++ /dev/null @@ -1,27 +0,0 @@ ---- mcop/buffer.cc.orig 2004-03-24 14:51:23.586055192 +0100 -+++ mcop/buffer.cc 2004-03-24 14:56:14.054897216 +0100 -@@ -87,9 +87,8 @@ - void Buffer::writeFloat(float f) { - // FIXME: on some machines this may fail badly (there is explicit - // float marshalling and demarshalling code in mico/orb/util.cc) -- -- long *f_as_long = (long *)&f; -- writeLong(*f_as_long); -+ union { float f; long l; } u = {f}; -+ writeLong(u.l); - } - - void Buffer::writeFloatSeq(const std::vector<float>& seq) { -@@ -252,9 +251,10 @@ - float Buffer::readFloat() - { - // FIXME: see writeFloat() -- long f_as_long = readLong(); -+ union {float f; long l; } u; -+ u.l = readLong(); - -- if(!_readError) return *(float *)&f_as_long; -+ if(!_readError) return u.f; - return 0.0; - } - diff --git a/kde-base/arts/files/digest-arts-1.2.0 b/kde-base/arts/files/digest-arts-1.2.0 deleted file mode 100644 index 9f06182359b5..000000000000 --- a/kde-base/arts/files/digest-arts-1.2.0 +++ /dev/null @@ -1 +0,0 @@ -MD5 f17708ad3c91b0a2f0c83674f78c3e53 arts-1.2.0.tar.bz2 993338 diff --git a/kde-base/arts/files/digest-arts-1.2.2 b/kde-base/arts/files/digest-arts-1.2.2 deleted file mode 100644 index 978c22cc7873..000000000000 --- a/kde-base/arts/files/digest-arts-1.2.2 +++ /dev/null @@ -1 +0,0 @@ -MD5 83ca7e7a33c55de34e12bfc360190795 arts-1.2.2.tar.bz2 971207 diff --git a/kde-base/arts/files/digest-arts-1.3.0 b/kde-base/arts/files/digest-arts-1.3.0 deleted file mode 100644 index 51c007afe057..000000000000 --- a/kde-base/arts/files/digest-arts-1.3.0 +++ /dev/null @@ -1 +0,0 @@ -MD5 6a0a03c24a20c43a8e443a5484bb9fef arts-1.3.0.tar.bz2 967395 |