blob: 17ee0dd395147cd19b8b1316a6cb553cbbb6fad6 (
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
|
# Copyright 1999-2024 Gentoo Authors
# Distributed under the terms of the GNU General Public License v2
EAPI=8
PYTHON_COMPAT=( python3_{10..12} )
PYTHON_REQ_USE="xml(+)"
inherit gnome.org meson-multilib python-single-r1 vala xdg
DESCRIPTION="An object-oriented framework for creating UPnP devs and control points"
HOMEPAGE="https://wiki.gnome.org/Projects/GUPnP https://gitlab.gnome.org/GNOME/gupnp"
LICENSE="LGPL-2+ GPL-2+" # gupnp-binding-tool is GPL-2+
SLOT="1.6/1.6-0" # <API version>-<soname>
KEYWORDS="~alpha amd64 ~arm arm64 ~hppa ~ia64 ~loong ~ppc ppc64 ~riscv ~sparc x86"
IUSE="connman gtk-doc +introspection networkmanager +vala"
REQUIRED_USE="${PYTHON_REQUIRED_USE}
?? ( connman networkmanager )
gtk-doc? ( introspection )
"
# prefix: uuid dependency can be adapted to non-linux platforms
RDEPEND="${PYTHON_DEPS}
>=dev-libs/glib-2.70:2[${MULTILIB_USEDEP}]
>=net-libs/gssdp-1.6.2:1.6=[introspection?,${MULTILIB_USEDEP}]
>=dev-libs/libxml2-2.9.1-r4[${MULTILIB_USEDEP}]
>=net-libs/libsoup-2.99.0:3.0[introspection?,${MULTILIB_USEDEP}]
>=sys-apps/util-linux-2.24.1-r3[${MULTILIB_USEDEP}]
introspection? ( >=dev-libs/gobject-introspection-1.54:= )
"
DEPEND="${RDEPEND}"
BDEPEND="
dev-util/glib-utils
gtk-doc? ( >=dev-util/gi-docgen-2021.1 )
dev-libs/libxslt
app-text/docbook-xsl-stylesheets
virtual/pkgconfig
!connman? ( !networkmanager? ( kernel_linux? ( sys-kernel/linux-headers ) ) )
vala? ( $(vala_depend)
>=net-libs/gssdp-1.5.2:1.6[vala]
net-libs/libsoup:3.0[vala]
)
"
PATCHES=(
"${FILESDIR}"/${PN}-1.6.6-libxml2-2.12.patch
)
src_prepare() {
default
use vala && vala_setup
# This makes sense for upstream but not for us downstream, bug #906124.
sed -i -e '/-Werror=deprecated-declarations/d' meson.build || die
}
multilib_src_configure() {
local backend=system
use kernel_linux && backend=linux
use connman && backend=connman
use networkmanager && backend=network-manager
local emesonargs=(
-Dcontext_manager=${backend}
$(meson_native_use_bool introspection)
$(meson_native_use_bool vala vapi)
$(meson_native_use_bool gtk-doc gtk_doc)
-Dexamples=false
)
meson_src_configure
}
multilib_src_install_all() {
python_fix_shebang "${ED}"/usr/bin/gupnp-binding-tool-1.6
if use gtk-doc ; then
mkdir "${ED}"/usr/share/gtk-doc || die
mv "${ED}"/usr/share/{doc,gtk-doc}/gupnp-1.6 || die
fi
}
|