diff options
author | Lars Wendler <polynomial-c@gentoo.org> | 2020-07-06 10:12:59 +0200 |
---|---|---|
committer | Lars Wendler <polynomial-c@gentoo.org> | 2020-07-06 10:12:59 +0200 |
commit | 6e2e230353f4509cff4e41dbb8dd039c1e9406d4 (patch) | |
tree | f88cdcfaa8c4bfe73ad0b884bda325f59b63cc34 /media-libs/lilv/lilv-0.24.8.ebuild | |
parent | media-libs/libvorbis: Bump to version 1.3.7 (diff) | |
download | gentoo-6e2e230353f4509cff4e41dbb8dd039c1e9406d4.tar.gz gentoo-6e2e230353f4509cff4e41dbb8dd039c1e9406d4.tar.bz2 gentoo-6e2e230353f4509cff4e41dbb8dd039c1e9406d4.zip |
media-libs/lilv: Bump to version 0.24.8
Package-Manager: Portage-2.3.103, Repoman-2.3.23
Signed-off-by: Lars Wendler <polynomial-c@gentoo.org>
Diffstat (limited to 'media-libs/lilv/lilv-0.24.8.ebuild')
-rw-r--r-- | media-libs/lilv/lilv-0.24.8.ebuild | 74 |
1 files changed, 74 insertions, 0 deletions
diff --git a/media-libs/lilv/lilv-0.24.8.ebuild b/media-libs/lilv/lilv-0.24.8.ebuild new file mode 100644 index 000000000000..698ee9385c5b --- /dev/null +++ b/media-libs/lilv/lilv-0.24.8.ebuild @@ -0,0 +1,74 @@ +# Copyright 1999-2020 Gentoo Authors +# Distributed under the terms of the GNU General Public License v2 + +EAPI=6 + +PYTHON_COMPAT=( python3_{6,7,8} ) +PYTHON_REQ_USE='threads(+)' + +inherit python-any-r1 waf-utils bash-completion-r1 multilib-build multilib-minimal + +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="~alpha ~amd64 ~arm ~arm64 ~hppa ~ia64 ~ppc ~ppc64 ~sparc ~x86" +IUSE="doc +dyn-manifest static-libs test" +RESTRICT="!test? ( test )" + +RDEPEND=" + >=dev-libs/serd-0.30.0-r1[${MULTILIB_USEDEP}] + >=dev-libs/sord-0.16.0-r1[${MULTILIB_USEDEP}] + media-libs/libsndfile + >=media-libs/lv2-1.16.0[${MULTILIB_USEDEP}] + media-libs/sratom[${MULTILIB_USEDEP}] +" +DEPEND=" + ${RDEPEND} + ${PYTHON_DEPS} + virtual/pkgconfig + doc? ( app-doc/doxygen ) + test? ( dev-python/unittest2 ) +" + +PATCHES=( "${FILESDIR}/includedir.patch" ) + +src_prepare() { + default + sed -i -e 's/^.*run_ldconfig/#\0/' wscript || die + multilib_copy_sources +} + +multilib_src_configure() { + waf-utils_src_configure \ + --docdir="${EPREFIX}"/usr/share/doc/${PF} \ + --no-bash-completion \ + $(multilib_native_usex doc --docs "") \ + $(usex test --test "") \ + $(usex static-libs --static "") \ + $(usex dyn-manifest --dyn-manifest "") +} + +multilib_src_compile() { + ./waf build || die +} + +multilib_src_test() { + ./waf test || die +} + +multilib_src_install() { + waf-utils_src_install +} + +multilib_src_install_all() { + sed -i "/lv2jack/d" utils/lilv.bash_completion + newbashcomp utils/lilv.bash_completion lv2info + + dodir /etc/env.d + echo "LV2_PATH=${EPREFIX}/usr/$(get_libdir)/lv2" > "${ED}/etc/env.d/60lv2" + + python_optimize +} |