diff options
author | Alexis Ballier <aballier@gentoo.org> | 2012-04-22 02:51:42 +0000 |
---|---|---|
committer | Alexis Ballier <aballier@gentoo.org> | 2012-04-22 02:51:42 +0000 |
commit | 0bbd40c2d34973e5fcce49b6c4525c176ac939d8 (patch) | |
tree | 07ad040bb38212b343eb656a82b13f883038d30f /media-libs | |
parent | remove copypasted long description... (diff) | |
download | gentoo-2-0bbd40c2d34973e5fcce49b6c4525c176ac939d8.tar.gz gentoo-2-0bbd40c2d34973e5fcce49b6c4525c176ac939d8.tar.bz2 gentoo-2-0bbd40c2d34973e5fcce49b6c4525c176ac939d8.zip |
version bump
(Portage version: 2.2.0_alpha100/cvs/Linux x86_64)
Diffstat (limited to 'media-libs')
-rw-r--r-- | media-libs/lilv/ChangeLog | 7 | ||||
-rw-r--r-- | media-libs/lilv/lilv-0.14.2.ebuild | 41 | ||||
-rw-r--r-- | media-libs/lilv/metadata.xml | 3 |
3 files changed, 50 insertions, 1 deletions
diff --git a/media-libs/lilv/ChangeLog b/media-libs/lilv/ChangeLog index bafe6e80052a..20c5c51fcb4a 100644 --- a/media-libs/lilv/ChangeLog +++ b/media-libs/lilv/ChangeLog @@ -1,6 +1,11 @@ # ChangeLog for media-libs/lilv # Copyright 1999-2012 Gentoo Foundation; Distributed under the GPL v2 -# $Header: /var/cvsroot/gentoo-x86/media-libs/lilv/ChangeLog,v 1.4 2012/04/21 22:19:08 aballier Exp $ +# $Header: /var/cvsroot/gentoo-x86/media-libs/lilv/ChangeLog,v 1.5 2012/04/22 02:51:42 aballier Exp $ + +*lilv-0.14.2 (22 Apr 2012) + + 22 Apr 2012; Alexis Ballier <aballier@gentoo.org> +lilv-0.14.2.ebuild: + version bump 21 Apr 2012; Alexis Ballier <aballier@gentoo.org> lilv-0.5.0.ebuild: allow media-libs/lv2 in addition of lv2core diff --git a/media-libs/lilv/lilv-0.14.2.ebuild b/media-libs/lilv/lilv-0.14.2.ebuild new file mode 100644 index 000000000000..8c364a40c930 --- /dev/null +++ b/media-libs/lilv/lilv-0.14.2.ebuild @@ -0,0 +1,41 @@ +# Copyright 1999-2012 Gentoo Foundation +# Distributed under the terms of the GNU General Public License v2 +# $Header: /var/cvsroot/gentoo-x86/media-libs/lilv/lilv-0.14.2.ebuild,v 1.1 2012/04/22 02:51:42 aballier Exp $ + +EAPI=4 + +inherit base waf-utils + +DESCRIPTION="Library to make the use of LV2 plugins as simple as possible for applications" +HOMEPAGE="http://drobilla.net/software/lilv/" +SRC_URI="http://download.drobilla.net/${P}.tar.bz2" + +LICENSE="ISC" +SLOT="0" +KEYWORDS="~amd64" +IUSE="doc +dyn-manifest static-libs test" + +RDEPEND="media-libs/lv2 + media-libs/sratom + >=dev-libs/serd-0.14.0 + >=dev-libs/sord-0.8.0" +DEPEND="${RDEPEND} + doc? ( app-doc/doxygen ) + dev-util/pkgconfig" + +PATCHES=( "${FILESDIR}/ldconfig.patch" ) +DOCS=( "AUTHORS" "NEWS" "README" ) + +src_configure() { + waf-utils_src_configure \ + "--mandir=/usr/share/man" \ + "--docdir=/usr/share/doc/${PF}" \ + $(use test && echo "--test") \ + $(use doc && echo "--docs") \ + $(use static-libs && echo "--static") \ + $(use dyn-manifest && echo "--dyn-manifest") +} + +src_test() { + ./waf test || die +} diff --git a/media-libs/lilv/metadata.xml b/media-libs/lilv/metadata.xml index 640383e7be81..3d40c7743f80 100644 --- a/media-libs/lilv/metadata.xml +++ b/media-libs/lilv/metadata.xml @@ -5,4 +5,7 @@ <longdescription lang="en"> Lilv is a library to make the use of LV2 plugins as simple as possible for applications. Lilv is the successor to SLV2, rewritten to be significantly faster and have minimal dependencies. </longdescription> + <use> + <flag name="dyn-manifest">Add LV2 Dynamic Manifest support. See http://lv2plug.in/ns/ext/dynmanifest/</flag> + </use> </pkgmetadata> |