diff options
author | Alexis Ballier <aballier@gentoo.org> | 2012-08-30 22:26:40 +0000 |
---|---|---|
committer | Alexis Ballier <aballier@gentoo.org> | 2012-08-30 22:26:40 +0000 |
commit | 33d52ebed3bcaecaa3ef7ca756cd644da2519c3b (patch) | |
tree | a4608e1a17b5b2b5bc0a4dc1b0d200aadc840ffc /media-libs/lilv | |
parent | version bump (diff) | |
download | gentoo-2-33d52ebed3bcaecaa3ef7ca756cd644da2519c3b.tar.gz gentoo-2-33d52ebed3bcaecaa3ef7ca756cd644da2519c3b.tar.bz2 gentoo-2-33d52ebed3bcaecaa3ef7ca756cd644da2519c3b.zip |
version bump
(Portage version: 2.2.0_alpha123/cvs/Linux x86_64)
Diffstat (limited to 'media-libs/lilv')
-rw-r--r-- | media-libs/lilv/ChangeLog | 7 | ||||
-rw-r--r-- | media-libs/lilv/lilv-0.14.4.ebuild | 49 |
2 files changed, 55 insertions, 1 deletions
diff --git a/media-libs/lilv/ChangeLog b/media-libs/lilv/ChangeLog index 1628760964a8..ad8921d46055 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.8 2012/05/22 16:09:15 johu Exp $ +# $Header: /var/cvsroot/gentoo-x86/media-libs/lilv/ChangeLog,v 1.9 2012/08/30 22:26:40 aballier Exp $ + +*lilv-0.14.4 (30 Aug 2012) + + 30 Aug 2012; Alexis Ballier <aballier@gentoo.org> +lilv-0.14.4.ebuild: + version bump 22 May 2012; Johannes Huber <johu@gentoo.org> lilv-0.14.2.ebuild: Add ~x86 wrt bug #413037 diff --git a/media-libs/lilv/lilv-0.14.4.ebuild b/media-libs/lilv/lilv-0.14.4.ebuild new file mode 100644 index 000000000000..f14cea7b49a6 --- /dev/null +++ b/media-libs/lilv/lilv-0.14.4.ebuild @@ -0,0 +1,49 @@ +# 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.4.ebuild,v 1.1 2012/08/30 22:26:40 aballier Exp $ + +EAPI=4 + +inherit base waf-utils bash-completion-r1 + +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 ~x86" +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 ) + virtual/pkgconfig" + +DOCS=( "AUTHORS" "NEWS" "README" ) + +src_prepare() { + sed -i -e 's/^.*run_ldconfig/#\0/' wscript || die +} + +src_configure() { + waf-utils_src_configure \ + --docdir="${EPREFIX}"/usr/share/doc/${PF} \ + --no-bash-completion \ + $(use test && echo "--test") \ + $(use doc && echo "--docs") \ + $(use static-libs && echo "--static") \ + $(use dyn-manifest && echo "--dyn-manifest") +} + +src_test() { + ./waf test || die +} + +src_install() { + waf-utils_src_install + newbashcomp utils/lilv.bash_completion ${PN} +} |