blob: 58febaec1c0f0c055298b4f35003b356b776600a (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
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
}
|