blob: 83bffcb79c469693ca8816d3cf4de740e8375147 (
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
|
# Copyright 1999-2016 Gentoo Foundation
# Distributed under the terms of the GNU General Public License v2
EAPI=6
PYTHON_COMPAT=( python{2_7,3_4,3_5} )
inherit autotools eutils python-r1 vcs-snapshot xdg-utils
DESCRIPTION="GLib binding for the D-Bus API provided by signond"
HOMEPAGE="https://01.org/gsso/"
SRC_URI="https://gitlab.com/accounts-sso/libsignon-glib/repository/archive.tar.gz?ref=VERSION_1.13 -> ${P}.tar.gz"
SLOT="0"
LICENSE="LGPL-2.1"
KEYWORDS="amd64 x86"
IUSE="debug doc +introspection python test"
REQUIRED_USE="${PYTHON_REQUIRED_USE} python? ( 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}
dev-util/gdbus-codegen
doc? ( dev-util/gtk-doc )
"
DOCS=( AUTHORS NEWS README )
# needs more love
RESTRICT="test"
src_prepare() {
default
if ! use doc; then
epatch "${FILESDIR}/${PN}-1.12-doc-disable.patch"
fi
eautoreconf
}
src_configure() {
xdg_environment_reset
myconfigure() {
local myeconfargs=(
$(use_enable debug)
$(use_enable doc gtk-doc)
$(use_enable introspection)
$(use_enable python)
$(use_enable test tests)
)
econf "${myeconfargs[@]}"
}
if use python; then
python_copy_sources
python_foreach_impl run_in_build_dir myconfigure
else
myconfigure
fi
}
src_compile() {
# fails to compile with more than one thread
MAKEOPTS="${MAKEOPTS} -j1"
default
if use python; then
python_foreach_impl run_in_build_dir default
fi
}
src_install() {
default
if use python; then
python_foreach_impl run_in_build_dir default
fi
prune_libtool_files
}
|