blob: 7bbcda8a9220bb06422974e65c42f274c544790c (
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
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
|
# Copyright 1999-2017 Gentoo Foundation
# Distributed under the terms of the GNU General Public License v2
EAPI=5
PYTHON_COMPAT=( python2_7 )
AUTOTOOLS_AUTORECONF=true
inherit eutils gnome.org python-r1 multilib-minimal xdg-utils
DESCRIPTION="Library to handle UPnP IGD port mapping for GUPnP"
HOMEPAGE="http://gupnp.org"
LICENSE="LGPL-2"
SLOT="0"
KEYWORDS="~alpha amd64 ~arm hppa ~ia64 ~ppc ppc64 ~sparc x86"
IUSE="+introspection python"
REQUIRED_USE="python? ( ${PYTHON_REQUIRED_USE} )"
RDEPEND="
>=dev-libs/glib-2.34.3:2[${MULTILIB_USEDEP}]
>=net-libs/gssdp-0.14.7[${MULTILIB_USEDEP}]
>=net-libs/gupnp-0.20.10[${MULTILIB_USEDEP}]
introspection? ( >=dev-libs/gobject-introspection-0.10 )
python? (
${PYTHON_DEPS}
>=dev-libs/gobject-introspection-0.10
>=dev-python/pygobject-2.16:2[${PYTHON_USEDEP}]
)"
DEPEND="${RDEPEND}
dev-util/gtk-doc-am
sys-devel/gettext
>=virtual/pkgconfig-0-r1[${MULTILIB_USEDEP}]
"
# The only existing test is broken
RESTRICT="test"
PATCHES=(
"${FILESDIR}"/${PN}-0.1.11-disable_static_modules.patch
)
multilib_src_configure() {
xdg_environment_reset
local myconf=(
--disable-static
--disable-gtk-doc
$(multilib_native_use_enable introspection)
# python is built separately
--disable-python
)
ECONF_SOURCE=${S} \
econf "${myconf[@]}"
if multilib_is_native_abi; then
ln -s "${S}"/doc/html doc/html || die
python_configure() {
mkdir -p "${BUILD_DIR}" || die
cd "${BUILD_DIR}" || die
ECONF_SOURCE=${S} \
econf "${myconf[@]}" \
--enable-python
}
use python && python_foreach_impl python_configure
fi
}
multilib_src_compile() {
default
if multilib_is_native_abi && use python; then
local native_builddir=${BUILD_DIR}
python_compile() {
emake -C "${BUILD_DIR}"/python \
VPATH="${S}/python:${native_builddir}/python" \
igd_la_LIBADD="\$(PYGUPNP_IGD_LIBS) ${native_builddir}/libgupnp-igd/libgupnp-igd-1.0.la"
}
python_foreach_impl python_compile
fi
}
multilib_src_install() {
default
if multilib_is_native_abi && use python; then
local native_builddir=${BUILD_DIR}
python_install() {
emake -C "${BUILD_DIR}"/python \
VPATH="${S}/python:${native_builddir}/python" \
DESTDIR="${D}" install
}
python_foreach_impl python_install
fi
}
multilib_src_install_all() {
einstalldocs
prune_libtool_files
}
|