diff options
author | Alexis Ballier <aballier@gentoo.org> | 2008-01-10 08:22:35 +0000 |
---|---|---|
committer | Alexis Ballier <aballier@gentoo.org> | 2008-01-10 08:22:35 +0000 |
commit | cd11eec73b03a11703b31000b35c98826a37101c (patch) | |
tree | a984bb3d80d0b4dba671fb7b083f0a455709057a /media-libs/slv2 | |
parent | initial import (diff) | |
download | gentoo-2-cd11eec73b03a11703b31000b35c98826a37101c.tar.gz gentoo-2-cd11eec73b03a11703b31000b35c98826a37101c.tar.bz2 gentoo-2-cd11eec73b03a11703b31000b35c98826a37101c.zip |
version bump
(Portage version: 2.1.4_rc14)
Diffstat (limited to 'media-libs/slv2')
-rw-r--r-- | media-libs/slv2/ChangeLog | 7 | ||||
-rw-r--r-- | media-libs/slv2/files/digest-slv2-0.4.2 | 3 | ||||
-rw-r--r-- | media-libs/slv2/slv2-0.4.2.ebuild | 38 |
3 files changed, 47 insertions, 1 deletions
diff --git a/media-libs/slv2/ChangeLog b/media-libs/slv2/ChangeLog index 5dc8735a3fbf..55d2ecb342d5 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.4 2008/01/06 22:42:21 aballier Exp $ +# $Header: /var/cvsroot/gentoo-x86/media-libs/slv2/ChangeLog,v 1.5 2008/01/10 08:22:34 aballier Exp $ + +*slv2-0.4.2 (10 Jan 2008) + + 10 Jan 2008; Alexis Ballier <aballier@gentoo.org> +slv2-0.4.2.ebuild: + version bump 06 Jan 2008; Alexis Ballier <aballier@gentoo.org> -slv2-0.3.2.ebuild: remove old diff --git a/media-libs/slv2/files/digest-slv2-0.4.2 b/media-libs/slv2/files/digest-slv2-0.4.2 new file mode 100644 index 000000000000..bb41d6716e37 --- /dev/null +++ b/media-libs/slv2/files/digest-slv2-0.4.2 @@ -0,0 +1,3 @@ +MD5 a08fb5028e01544ef2add7798e0d9b66 slv2-0.4.2.tar.gz 442099 +RMD160 87583a91b02d27ce555ddbebdd72fb82d7bcb54d slv2-0.4.2.tar.gz 442099 +SHA256 25210d25f5728cf59db1d059da5eb2c0bf0b8c4c0750a842297e08caeecb374a slv2-0.4.2.tar.gz 442099 diff --git a/media-libs/slv2/slv2-0.4.2.ebuild b/media-libs/slv2/slv2-0.4.2.ebuild new file mode 100644 index 000000000000..3337ed448375 --- /dev/null +++ b/media-libs/slv2/slv2-0.4.2.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.4.2.ebuild,v 1.1 2008/01/10 08:22:34 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 + doman doc/man/man3/* + use doc && dohtml doc/html/* +} |