diff options
author | Karl Linden <karl.j.linden@gmail.com> | 2017-05-09 09:43:59 +0200 |
---|---|---|
committer | Alexis Ballier <aballier@gentoo.org> | 2017-05-09 10:17:36 +0200 |
commit | 004f48c18947d3d1c0756f85f88f0e5333695473 (patch) | |
tree | 38f0e5259f1b5d60aeb5ae5a1d94b418d8461376 /media-libs/slv2/slv2-0.6.6-r2.ebuild | |
parent | profiles/arch/alpha: drop xfce-base/xfwm4[xpresent] mask, its now keyworded (diff) | |
download | gentoo-004f48c18947d3d1c0756f85f88f0e5333695473.tar.gz gentoo-004f48c18947d3d1c0756f85f88f0e5333695473.tar.bz2 gentoo-004f48c18947d3d1c0756f85f88f0e5333695473.zip |
media-libs/slv2: depend on virtual/jack
Package-Manager: Portage-2.3.5, Repoman-2.3.2
Diffstat (limited to 'media-libs/slv2/slv2-0.6.6-r2.ebuild')
-rw-r--r-- | media-libs/slv2/slv2-0.6.6-r2.ebuild | 39 |
1 files changed, 39 insertions, 0 deletions
diff --git a/media-libs/slv2/slv2-0.6.6-r2.ebuild b/media-libs/slv2/slv2-0.6.6-r2.ebuild new file mode 100644 index 000000000000..734510116818 --- /dev/null +++ b/media-libs/slv2/slv2-0.6.6-r2.ebuild @@ -0,0 +1,39 @@ +# Copyright 1999-2017 Gentoo Foundation +# Distributed under the terms of the GNU General Public License v2 + +EAPI=5 + +PYTHON_COMPAT=( python2_7 ) +PYTHON_REQ_USE='threads(+)' +inherit eutils multilib python-any-r1 toolchain-funcs waf-utils + +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.bz2" + +LICENSE="GPL-2" +SLOT="0" +KEYWORDS="amd64 ~ppc x86" +IUSE="doc jack" + +RDEPEND=">=dev-libs/redland-1.0.6 + jack? ( virtual/jack ) + || ( media-libs/lv2 media-libs/lv2core )" +DEPEND="${RDEPEND} + ${PYTHON_DEPS} + virtual/pkgconfig + doc? ( app-doc/doxygen )" + +src_prepare() { + epatch "${FILESDIR}"/ldconfig.patch + epatch "${FILESDIR}"/${P}-raptor2-link.patch +} + +src_configure() { + waf-utils_src_configure \ + --prefix=/usr \ + --libdir=/usr/$(get_libdir) \ + --htmldir=/usr/share/doc/${PF}/html \ + $(use doc && echo --build-docs) \ + $(use jack || echo --no-jack) +} |