blob: 3b00f34160d251cd5c0eb9b36e82104dabc9603d (
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
|
# Copyright 1999-2020 Gentoo Authors
# Distributed under the terms of the GNU General Public License v2
EAPI=7
PYTHON_COMPAT=( python3_{7,8,9} )
inherit meson python-r1 vala
DESCRIPTION="GLib binding for the D-Bus API provided by signond"
HOMEPAGE="https://accounts-sso.gitlab.io/"
SRC_URI="https://gitlab.com/accounts-sso/${PN}/-/archive/VERSION_${PV}/${PN}-VERSION_${PV}.tar.gz -> ${P}.tar.gz"
LICENSE="LGPL-2.1"
SLOT="0"
KEYWORDS="amd64 arm64 x86"
IUSE="debug doc +introspection python test"
REQUIRED_USE="python? ( ${PYTHON_REQUIRED_USE} introspection )"
RDEPEND="
dev-libs/glib:2
net-libs/signond
introspection? ( dev-libs/gobject-introspection:= )
python? (
${PYTHON_DEPS}
dev-python/pygobject:3[${PYTHON_USEDEP}]
)
"
DEPEND="${RDEPEND}"
BDEPEND="$(vala_depend)
dev-util/gdbus-codegen
dev-util/glib-utils
doc? ( dev-util/gtk-doc )
test? ( dev-libs/check )
"
# needs more love
RESTRICT="test"
S="${WORKDIR}/${PN}-VERSION_${PV}"
src_prepare() {
default
vala_src_prepare
use doc || sed -e "/^subdir('docs')$/d" -i meson.build || die
cp libsignon-glib/*.xml libsignon-glib/interfaces || die
}
src_configure() {
myconfigure() {
local emesonargs=(
-Ddebugging=$(usex debug true false)
-Dintrospection=$(usex introspection true false)
-Dpython=$(usex python true false)
-Dtests=$(usex test true false)
)
meson_src_configure
}
if use python; then
python_foreach_impl run_in_build_dir myconfigure
else
myconfigure
fi
}
src_compile() {
if use python; then
python_foreach_impl run_in_build_dir meson_src_compile
else
meson_src_compile
fi
}
src_compile() {
if use python; then
python_foreach_impl run_in_build_dir meson_src_test
else
meson_src_test
fi
}
src_install() {
einstalldocs
if use python; then
python_foreach_impl run_in_build_dir meson_src_install
python_foreach_impl python_optimize
else
meson_src_install
fi
}
|