blob: f55c8072ffcc39ebfdc64c4c9695d3a850736981 (
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
|
# Copyright 1999-2017 Gentoo Foundation
# Distributed under the terms of the GNU General Public License v2
EAPI=6
PYTHON_COMPAT=( python2_7 )
PYTHON_REQ_USE="threads(+)"
inherit python-single-r1 waf-utils
DESCRIPTION="A set of C++ wrappers around the LV2 C API"
HOMEPAGE="http://lvtoolkit.org/"
SRC_URI="https://github.com/lvtk/lvtk/archive/${PV}.tar.gz -> ${P}.tar.gz"
LICENSE="GPL-3+"
SLOT="0"
KEYWORDS="~amd64 ~x86"
IUSE="debug doc examples +gtk2 +tools"
REQUIRED_USE="${PYTHON_REQUIRED_USE}"
RDEPEND="media-libs/lv2
>=dev-libs/boost-1.40.0
${PYTHON_DEPS}
gtk2? ( dev-cpp/gtkmm:2.4 )"
DEPEND="${RDEPEND}
doc? ( app-doc/doxygen
media-gfx/graphviz )
virtual/pkgconfig"
PATCHES=(
"${FILESDIR}/${P}-boost-system-underlinking.patch"
)
src_configure() {
local mywafconfargs=(
"--docdir=${EPREFIX}/usr/share/doc/${PF}"
"--lv2dir=${EPREFIX}/usr/$(get_libdir)/lv2"
)
use debug && mywafconfargs+=( "--debug" )
use doc && mywafconfargs+=( "--docs" )
use examples || mywafconfargs+=( "--disable-examples" )
use tools || mywafconfargs+=( "--disable-tools" )
use gtk2 || mywafconfargs+=( "--disable-ui" )
waf-utils_src_configure ${mywafconfargs[@]}
}
src_install() {
waf-utils_src_install
# It does not respect docdir properly, reported upstream
if use doc; then
mv "${ED}/usr/share/doc/${PF}/lvtk-1.0/html" "${ED}/usr/share/doc/${PF}/html" || die
rmdir "${ED}/usr/share/doc/${PF}/lvtk-1.0" || die
fi
}
|