diff options
author | Alexis Ballier <aballier@gentoo.org> | 2009-06-17 07:04:42 +0000 |
---|---|---|
committer | Alexis Ballier <aballier@gentoo.org> | 2009-06-17 07:04:42 +0000 |
commit | a38027e6013c19656c33fe793f36dd1a096a71a3 (patch) | |
tree | 48513321ae148a5c0574f57e5631a71027476f31 /media-sound/lash | |
parent | version bump (diff) | |
download | gentoo-2-a38027e6013c19656c33fe793f36dd1a096a71a3.tar.gz gentoo-2-a38027e6013c19656c33fe793f36dd1a096a71a3.tar.bz2 gentoo-2-a38027e6013c19656c33fe793f36dd1a096a71a3.zip |
remove old
(Portage version: 2.2_rc33/cvs/Linux x86_64)
Diffstat (limited to 'media-sound/lash')
-rw-r--r-- | media-sound/lash/ChangeLog | 6 | ||||
-rw-r--r-- | media-sound/lash/lash-0.5.1.ebuild | 42 | ||||
-rw-r--r-- | media-sound/lash/lash-0.5.4.ebuild | 62 |
3 files changed, 5 insertions, 105 deletions
diff --git a/media-sound/lash/ChangeLog b/media-sound/lash/ChangeLog index 0c75e3cca309..77fcf3d24951 100644 --- a/media-sound/lash/ChangeLog +++ b/media-sound/lash/ChangeLog @@ -1,6 +1,10 @@ # ChangeLog for media-sound/lash # Copyright 1999-2009 Gentoo Foundation; Distributed under the GPL v2 -# $Header: /var/cvsroot/gentoo-x86/media-sound/lash/ChangeLog,v 1.27 2009/03/14 19:22:54 nixnut Exp $ +# $Header: /var/cvsroot/gentoo-x86/media-sound/lash/ChangeLog,v 1.28 2009/06/17 07:04:42 aballier Exp $ + + 17 Jun 2009; Alexis Ballier <aballier@gentoo.org> -lash-0.5.1.ebuild, + -lash-0.5.4.ebuild: + remove old 14 Mar 2009; nixnut <nixnut@gentoo.org> lash-0.5.4-r1.ebuild: ppc stable #258262 diff --git a/media-sound/lash/lash-0.5.1.ebuild b/media-sound/lash/lash-0.5.1.ebuild deleted file mode 100644 index f23a0424cf45..000000000000 --- a/media-sound/lash/lash-0.5.1.ebuild +++ /dev/null @@ -1,42 +0,0 @@ -# Copyright 1999-2008 Gentoo Foundation -# Distributed under the terms of the GNU General Public License v2 -# $Header: /var/cvsroot/gentoo-x86/media-sound/lash/lash-0.5.1.ebuild,v 1.7 2008/01/13 14:32:56 aballier Exp $ - -inherit eutils - -IUSE="" - -DESCRIPTION="LASH Audio Session Handler" -HOMEPAGE="http://www.nongnu.org/lash/" -SRC_URI="http://download.savannah.gnu.org/releases/lash/${P}.tar.gz" - -LICENSE="GPL-2" -SLOT="0" -KEYWORDS="amd64 ppc sparc x86" -IUSE="" - -RDEPEND="media-libs/alsa-lib - media-sound/jack-audio-connection-kit - dev-libs/libxml2 - >=x11-libs/gtk+-2.0" -DEPEND="${RDEPEND} - dev-util/pkgconfig" - -src_compile() { - econf --disable-serv-inst || die "econf failed" - emake || die "emake failed" -} - -src_install() { - make DESTDIR="${D}" install || die - - # Add to /etc/services - if ! grep -q ^lash /etc/services; then - dodir /etc - insinto /etc - doins /etc/services - echo -e "\nlash\t\t14541/tcp\t\t\t# LASH client/server protocol" >> "${D}/etc/services" - fi - - dodoc AUTHORS ChangeLog NEWS README TODO -} diff --git a/media-sound/lash/lash-0.5.4.ebuild b/media-sound/lash/lash-0.5.4.ebuild deleted file mode 100644 index efbdcc4e3564..000000000000 --- a/media-sound/lash/lash-0.5.4.ebuild +++ /dev/null @@ -1,62 +0,0 @@ -# Copyright 1999-2008 Gentoo Foundation -# Distributed under the terms of the GNU General Public License v2 -# $Header: /var/cvsroot/gentoo-x86/media-sound/lash/lash-0.5.4.ebuild,v 1.6 2008/08/07 17:07:39 aballier Exp $ - -inherit eutils libtool - -DESCRIPTION="LASH Audio Session Handler" -HOMEPAGE="http://www.nongnu.org/lash/" -SRC_URI="http://download.savannah.gnu.org/releases/lash/${P}.tar.gz" - -LICENSE="GPL-2" -SLOT="0" -KEYWORDS="~alpha ~amd64 ~ppc ppc64 ~sparc ~x86" -IUSE="alsa debug gtk python" - -RDEPEND="alsa? ( media-libs/alsa-lib ) - media-sound/jack-audio-connection-kit - dev-libs/libxml2 - gtk? ( >=x11-libs/gtk+-2.0 ) - python? ( dev-lang/python ) - || ( sys-libs/readline dev-libs/libedit )" -DEPEND="${RDEPEND} - dev-util/pkgconfig - python? ( >=dev-lang/swig-1.3.31 )" - -pkg_setup() { - if use alsa && ! built_with_use --missing true media-libs/alsa-lib midi; then - eerror "" - eerror "To be able to build ${CATEGORY}/${PN} with ALSA support you" - eerror "need to have built media-libs/alsa-lib with midi USE flag." - die "Missing midi USE flag on media-libs/alsa-lib" - fi -} - -src_unpack() { - unpack ${A} - cd "${S}" - epatch "${FILESDIR}/${P}-glibc2.8.patch" - elibtoolize -} - -src_compile() { - local myconf - - # Yet-another-broken-configure: --enable-pylash would disable it. - use python || myconf="${myconf} --disable-pylash" - - econf \ - $(use_enable alsa alsa-midi) \ - $(use_enable gtk gtk2) \ - $(use_enable debug) \ - ${myconf} \ - --disable-dependency-tracking \ - || die "econf failed" - emake || die "emake failed" -} - -src_install() { - emake DESTDIR="${D}" install || die - - dodoc AUTHORS ChangeLog NEWS README TODO -} |