blob: 0daa52adc695306161fd4494b206f093d4c4dcd1 (
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
|
# Copyright 2017-2021 Gentoo Authors
# Distributed under the terms of the GNU General Public License v2
EAPI=7
inherit meson
if [[ ${PV} == 9999 ]]; then
inherit git-r3
EGIT_REPO_URI="https://github.com/bus1/dbus-broker.git"
else
KEYWORDS="~amd64 ~arm64 ~ppc64"
SRC_URI="https://github.com/bus1/dbus-broker/archive/v${PV}/${P}.tar.gz"
declare -Ag SUBPROJECTS=(
[c-dvar]=c8ea9712a94186512c22c32f32c421d6a2db6feb
[c-ini]=204410a08d3a6c8221f6f0baf0355ce5af0232ed
[c-list]=a0970f12f1f406a5578a5dedf3580cd682e55812
[c-rbtree]=8aa7bd1828eedb19960f9eef98d15543ec9f34eb
[c-shquote]=83ccc2893385fcca1424b188f0f6c45a62f2b38d
[c-stdaux]=8652c488b8f1c29629a5179d4551d0a691ae5901
[c-utf8]=0837214a9780b7d771a3b3ce9a49196ac0a9d52f
)
for sp in "${!SUBPROJECTS[@]}"; do
commit=${SUBPROJECTS[${sp}]}
SRC_URI+=" https://github.com/c-util/${sp}/archive/${commit}/${sp}-${commit}.tar.gz"
done
unset sp commit
fi
DESCRIPTION="Linux D-Bus Message Broker"
HOMEPAGE="https://github.com/bus1/dbus-broker/wiki"
LICENSE="Apache-2.0"
SLOT="0"
IUSE="audit doc +launcher selinux"
DEPEND="
audit? (
>=sys-process/audit-3.0
>=sys-libs/libcap-ng-0.6
)
launcher? (
>=dev-libs/expat-2.2
>=sys-apps/systemd-230:0=
)
selinux? ( >=sys-libs/libselinux-3.2 )
"
RDEPEND="${DEPEND}
launcher? ( sys-apps/dbus )"
BDEPEND="
doc? ( dev-python/docutils )
virtual/pkgconfig
"
src_prepare() {
if [[ ${PV} != 9999 ]]; then
local sp commit
for sp in "${!SUBPROJECTS[@]}"; do
commit=${SUBPROJECTS[${sp}]}
rmdir "subprojects/${sp}" || die
mv "${WORKDIR}/${sp}-${commit}" "subprojects/${sp}" || die
done
fi
default
}
src_configure() {
local emesonargs=(
-Daudit=$(usex audit true false)
-Ddocs=$(usex doc true false)
-Dlauncher=$(usex launcher true false)
-Dselinux=$(usex selinux true false)
)
meson_src_configure
}
|