summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorAlexis Ballier <aballier@gentoo.org>2008-01-21 22:03:30 +0000
committerAlexis Ballier <aballier@gentoo.org>2008-01-21 22:03:30 +0000
commit9f61f0bcc5892c1483db015422a231b5e1855417 (patch)
tree131f9a764ff7de21a7a8a4a35ab97560075983da /media-libs
parentx86 stable, bug #206764 (diff)
downloadgentoo-2-9f61f0bcc5892c1483db015422a231b5e1855417.tar.gz
gentoo-2-9f61f0bcc5892c1483db015422a231b5e1855417.tar.bz2
gentoo-2-9f61f0bcc5892c1483db015422a231b5e1855417.zip
version bump
(Portage version: 2.1.4)
Diffstat (limited to 'media-libs')
-rw-r--r--media-libs/slv2/ChangeLog7
-rw-r--r--media-libs/slv2/files/digest-slv2-0.5.03
-rw-r--r--media-libs/slv2/slv2-0.5.0.ebuild38
3 files changed, 47 insertions, 1 deletions
diff --git a/media-libs/slv2/ChangeLog b/media-libs/slv2/ChangeLog
index 074a21b94977..ac937d633332 100644
--- a/media-libs/slv2/ChangeLog
+++ b/media-libs/slv2/ChangeLog
@@ -1,6 +1,11 @@
# ChangeLog for media-libs/slv2
# Copyright 1999-2008 Gentoo Foundation; Distributed under the GPL v2
-# $Header: /var/cvsroot/gentoo-x86/media-libs/slv2/ChangeLog,v 1.6 2008/01/16 11:01:02 aballier Exp $
+# $Header: /var/cvsroot/gentoo-x86/media-libs/slv2/ChangeLog,v 1.7 2008/01/21 22:03:29 aballier Exp $
+
+*slv2-0.5.0 (21 Jan 2008)
+
+ 21 Jan 2008; Alexis Ballier <aballier@gentoo.org> +slv2-0.5.0.ebuild:
+ version bump
16 Jan 2008; Alexis Ballier <aballier@gentoo.org> -slv2-0.4.0.ebuild:
remove old
diff --git a/media-libs/slv2/files/digest-slv2-0.5.0 b/media-libs/slv2/files/digest-slv2-0.5.0
new file mode 100644
index 000000000000..1976943fdce4
--- /dev/null
+++ b/media-libs/slv2/files/digest-slv2-0.5.0
@@ -0,0 +1,3 @@
+MD5 f6e619c530ff9bb427272b1018ab4fe1 slv2-0.5.0.tar.gz 446011
+RMD160 706861ddf1e9cae1388207860060519519fcfa3f slv2-0.5.0.tar.gz 446011
+SHA256 98137b730cb474ffec166aacfc2d614ca40ddec751db0f272256401061d71087 slv2-0.5.0.tar.gz 446011
diff --git a/media-libs/slv2/slv2-0.5.0.ebuild b/media-libs/slv2/slv2-0.5.0.ebuild
new file mode 100644
index 000000000000..406b025a1185
--- /dev/null
+++ b/media-libs/slv2/slv2-0.5.0.ebuild
@@ -0,0 +1,38 @@
+# 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/*
+}