summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
Diffstat (limited to 'media-libs/slv2/slv2-0.6.0.ebuild')
-rw-r--r--media-libs/slv2/slv2-0.6.0.ebuild38
1 files changed, 0 insertions, 38 deletions
diff --git a/media-libs/slv2/slv2-0.6.0.ebuild b/media-libs/slv2/slv2-0.6.0.ebuild
deleted file mode 100644
index 68e922fe56fd..000000000000
--- a/media-libs/slv2/slv2-0.6.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.6.0.ebuild,v 1.1 2008/07/09 10:36:15 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/*
-}