diff options
author | 2014-01-18 12:22:58 +0000 | |
---|---|---|
committer | 2014-01-18 12:22:58 +0000 | |
commit | 53c66b9243c28c6837e42ffeea31489cc2f35f35 (patch) | |
tree | 63a4cd7bd7508e516cba92f7d94e8bee58b46e82 /media-libs/lilv | |
parent | Add arm64 love. (diff) | |
download | gentoo-2-53c66b9243c28c6837e42ffeea31489cc2f35f35.tar.gz gentoo-2-53c66b9243c28c6837e42ffeea31489cc2f35f35.tar.bz2 gentoo-2-53c66b9243c28c6837e42ffeea31489cc2f35f35.zip |
version bump
(Portage version: 2.2.8/cvs/Linux x86_64, signed Manifest commit with key 160F534A)
Diffstat (limited to 'media-libs/lilv')
-rw-r--r-- | media-libs/lilv/ChangeLog | 9 | ||||
-rw-r--r-- | media-libs/lilv/lilv-0.18.0.ebuild | 49 |
2 files changed, 56 insertions, 2 deletions
diff --git a/media-libs/lilv/ChangeLog b/media-libs/lilv/ChangeLog index dde74d224811..a33b469c9164 100644 --- a/media-libs/lilv/ChangeLog +++ b/media-libs/lilv/ChangeLog @@ -1,6 +1,11 @@ # ChangeLog for media-libs/lilv -# Copyright 1999-2013 Gentoo Foundation; Distributed under the GPL v2 -# $Header: /var/cvsroot/gentoo-x86/media-libs/lilv/ChangeLog,v 1.11 2013/02/21 10:13:40 aballier Exp $ +# Copyright 1999-2014 Gentoo Foundation; Distributed under the GPL v2 +# $Header: /var/cvsroot/gentoo-x86/media-libs/lilv/ChangeLog,v 1.12 2014/01/18 12:22:58 aballier Exp $ + +*lilv-0.18.0 (18 Jan 2014) + + 18 Jan 2014; Alexis Ballier <aballier@gentoo.org> +lilv-0.18.0.ebuild: + version bump *lilv-0.16.0 (21 Feb 2013) diff --git a/media-libs/lilv/lilv-0.18.0.ebuild b/media-libs/lilv/lilv-0.18.0.ebuild new file mode 100644 index 000000000000..56262839c0e6 --- /dev/null +++ b/media-libs/lilv/lilv-0.18.0.ebuild @@ -0,0 +1,49 @@ +# Copyright 1999-2014 Gentoo Foundation +# Distributed under the terms of the GNU General Public License v2 +# $Header: /var/cvsroot/gentoo-x86/media-libs/lilv/lilv-0.18.0.ebuild,v 1.1 2014/01/18 12:22:58 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 ~ppc ~x86" +IUSE="doc +dyn-manifest static-libs test" + +RDEPEND="media-libs/lv2 + >=media-libs/sratom-0.4.0 + >=dev-libs/serd-0.14.0 + >=dev-libs/sord-0.12.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} +} |