blob: a71c9b505b291c02794d5656da6235bc484acafb (
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
|
# Copyright 1999-2021 Gentoo Authors
# Distributed under the terms of the GNU General Public License v2
EAPI="7"
VALA_USE_DEPEND="vapigen"
inherit gnome.org meson-multilib vala xdg
DESCRIPTION="GObject-based API for handling resource discovery and announcement over SSDP"
HOMEPAGE="https://wiki.gnome.org/Projects/GUPnP https://gitlab.gnome.org/GNOME/gssdp"
LICENSE="LGPL-2+"
SLOT="0/1.2-0" # <API version>-<soname>
KEYWORDS="~alpha ~amd64 ~arm ~arm64 ~hppa ~ia64 ~ppc ~ppc64 ~sparc ~x86"
IUSE="gtk-doc +introspection gtk vala"
REQUIRED_USE="vala? ( introspection )"
RDEPEND="
>=dev-libs/glib-2.54:2[${MULTILIB_USEDEP}]
>=net-libs/libsoup-2.26.1:2.4[${MULTILIB_USEDEP},introspection?]
gtk? ( gui-libs/gtk:4 )
introspection? ( >=dev-libs/gobject-introspection-1.54:= )
"
DEPEND="${RDEPEND}"
BDEPEND="
gtk-doc? (
>=dev-util/gi-docgen-2021.1
app-text/docbook-xml-dtd:4.1.2
)
virtual/pkgconfig
vala? (
$(vala_depend)
net-libs/libsoup:2.4[vala]
)
"
src_prepare() {
use vala && vala_src_prepare
xdg_src_prepare
}
multilib_src_configure() {
local emesonargs=(
# Never use gi-docgen subproject
--wrap-mode nofallback
$(meson_native_use_bool gtk-doc gtk_doc)
$(meson_native_use_bool gtk sniffer)
$(meson_native_use_bool introspection)
$(meson_native_use_bool vala vapi)
-Dexamples=false
)
meson_src_configure
}
multilib_src_install_all() {
if use gtk-doc ; then
mv "${ED}"/usr/share/doc/{gssdp-1.2/reference,${PF}/html} || die
rmdir "${ED}"/usr/share/doc/gssdp-1.2
fi
}
|