diff options
author | Alexis Ballier <aballier@gentoo.org> | 2009-06-20 13:13:46 +0000 |
---|---|---|
committer | Alexis Ballier <aballier@gentoo.org> | 2009-06-20 13:13:46 +0000 |
commit | 1bd3b4f3ac5ddcb3c836b5c72e7c0964fcb43beb (patch) | |
tree | 7722c99c91f27e13241ffcbc86cdcf36a55bac1d /media-libs/slv2 | |
parent | remove old (diff) | |
download | historical-1bd3b4f3ac5ddcb3c836b5c72e7c0964fcb43beb.tar.gz historical-1bd3b4f3ac5ddcb3c836b5c72e7c0964fcb43beb.tar.bz2 historical-1bd3b4f3ac5ddcb3c836b5c72e7c0964fcb43beb.zip |
remove old
Package-Manager: portage-2.2_rc33/cvs/Linux x86_64
Diffstat (limited to 'media-libs/slv2')
-rw-r--r-- | media-libs/slv2/ChangeLog | 6 | ||||
-rw-r--r-- | media-libs/slv2/slv2-0.5.0.ebuild | 38 | ||||
-rw-r--r-- | media-libs/slv2/slv2-0.6.2.ebuild | 47 |
3 files changed, 5 insertions, 86 deletions
diff --git a/media-libs/slv2/ChangeLog b/media-libs/slv2/ChangeLog index 0acd286b0264..1db6e7420207 100644 --- a/media-libs/slv2/ChangeLog +++ b/media-libs/slv2/ChangeLog @@ -1,6 +1,10 @@ # ChangeLog for media-libs/slv2 # Copyright 1999-2009 Gentoo Foundation; Distributed under the GPL v2 -# $Header: /var/cvsroot/gentoo-x86/media-libs/slv2/ChangeLog,v 1.14 2009/06/17 07:01:14 aballier Exp $ +# $Header: /var/cvsroot/gentoo-x86/media-libs/slv2/ChangeLog,v 1.15 2009/06/20 13:12:00 aballier Exp $ + + 20 Jun 2009; Alexis Ballier <aballier@gentoo.org> -slv2-0.5.0.ebuild, + -slv2-0.6.2.ebuild: + remove old *slv2-0.6.6 (17 Jun 2009) diff --git a/media-libs/slv2/slv2-0.5.0.ebuild b/media-libs/slv2/slv2-0.5.0.ebuild deleted file mode 100644 index 406b025a1185..000000000000 --- a/media-libs/slv2/slv2-0.5.0.ebuild +++ /dev/null @@ -1,38 +0,0 @@ -# Copyright 1999-2008 Gentoo Foundation -# Distributed under the terms of the GNU General Public License v2 -# $Header: /var/cvsroot/gentoo-x86/media-libs/slv2/slv2-0.5.0.ebuild,v 1.1 2008/01/21 22:03:29 aballier Exp $ - -DESCRIPTION="A library to make the use of LV2 plugins as simple as possible for applications" -HOMEPAGE="http://wiki.drobilla.net/SLV2" -SRC_URI="http://download.drobilla.net/${P}.tar.gz" - -LICENSE="GPL-2" -SLOT="0" -KEYWORDS="~amd64 ~x86" -IUSE="debug doc jack" - -RDEPEND="dev-libs/redland - media-libs/raptor - jack? ( media-sound/jack-audio-connection-kit ) - media-libs/lv2core" -DEPEND="${RDEPEND} - doc? ( app-doc/doxygen ) - dev-util/pkgconfig" - -src_compile() { - econf $(use_enable debug) \ - $(use_enable jack) \ - $(use_enable doc documentation) - - emake || die "make failed" - if use doc; then - emake docs || die "creating documentation failed" - fi -} - -src_install() { - emake DESTDIR="${D}" install || die "make install failed" - dodoc AUTHORS README ChangeLog - doman doc/man/man3/* - use doc && dohtml doc/html/* -} diff --git a/media-libs/slv2/slv2-0.6.2.ebuild b/media-libs/slv2/slv2-0.6.2.ebuild deleted file mode 100644 index 71e10d4b5e9c..000000000000 --- a/media-libs/slv2/slv2-0.6.2.ebuild +++ /dev/null @@ -1,47 +0,0 @@ -# Copyright 1999-2009 Gentoo Foundation -# Distributed under the terms of the GNU General Public License v2 -# $Header: /var/cvsroot/gentoo-x86/media-libs/slv2/slv2-0.6.2.ebuild,v 1.2 2009/04/16 08:42:29 aballier Exp $ - -EAPI=2 - -inherit multilib toolchain-funcs eutils - -DESCRIPTION="A library to make the use of LV2 plugins as simple as possible for applications" -HOMEPAGE="http://wiki.drobilla.net/SLV2" -SRC_URI="http://download.drobilla.net/${P}.tar.bz2" - -LICENSE="GPL-2" -SLOT="0" -KEYWORDS="~amd64 ~x86" -IUSE="doc jack" - -RDEPEND=">=dev-libs/redland-1.0.6 - jack? ( >=media-sound/jack-audio-connection-kit-0.107.0 ) - media-libs/lv2core" -DEPEND="${RDEPEND} - doc? ( app-doc/doxygen ) - dev-util/pkgconfig" - -src_prepare() { - epatch "${FILESDIR}/ldconfig.patch" -} - -src_configure() { - tc-export CC CXX CPP AR RANLIB - ./waf configure \ - --prefix=/usr \ - --libdir=/usr/$(get_libdir)/ \ - --htmldir=/usr/share/doc/${PF}/html \ - $(use doc && echo "--build-docs") \ - $(use jack || echo "--no-jack") \ - || die "failed to configure" -} - -src_compile() { - ./waf || die "failed to build" -} - -src_install() { - ./waf --destdir="${D}" install || die "install failed" - dodoc AUTHORS README ChangeLog -} |