summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorAlexis Ballier <aballier@gentoo.org>2009-06-20 13:12:00 +0000
committerAlexis Ballier <aballier@gentoo.org>2009-06-20 13:12:00 +0000
commit324f9a48eb0e120f2ce6da5a68b1a559db9c83e2 (patch)
tree17df3202f6d3451ce62d31726f9faa02b4fa60ea /media-libs/slv2
parentremove old (diff)
downloadgentoo-2-324f9a48eb0e120f2ce6da5a68b1a559db9c83e2.tar.gz
gentoo-2-324f9a48eb0e120f2ce6da5a68b1a559db9c83e2.tar.bz2
gentoo-2-324f9a48eb0e120f2ce6da5a68b1a559db9c83e2.zip
remove old
(Portage version: 2.2_rc33/cvs/Linux x86_64)
Diffstat (limited to 'media-libs/slv2')
-rw-r--r--media-libs/slv2/ChangeLog6
-rw-r--r--media-libs/slv2/slv2-0.5.0.ebuild38
-rw-r--r--media-libs/slv2/slv2-0.6.2.ebuild47
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
-}