summaryrefslogtreecommitdiff
path: root/media-libs/slv2/slv2-0.6.6-r3.ebuild
blob: 42bc4a47c73d76e82e4acc813c8b5555398ce50e (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
# Copyright 1999-2020 Gentoo Authors
# Distributed under the terms of the GNU General Public License v2

EAPI=6

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"

BDEPEND="
	virtual/pkgconfig
	doc? ( app-doc/doxygen )
"
CDEPEND="
	>=dev-libs/redland-1.0.6
	jack? ( virtual/jack )
	media-libs/lv2
"
RDEPEND="${CDEPEND}"
DEPEND="
	${CDEPEND}
	${PYTHON_DEPS}
"

PATCHES=(
	"${FILESDIR}"/ldconfig.patch
	"${FILESDIR}"/${P}-raptor2-link.patch
	"${FILESDIR}"/${P}-python3.patch
)

src_prepare() {
	default
	 has_version ">=media-libs/lv2-1.16.0" && (sed -i "s/lv2core/lv2/" wscript || die "Failed to fix lv2")
}

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)
}