blob: 24a9ea5018f81bb66e7232bd9268ddb914fd9cfd (
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
|
# Copyright 1999-2024 Gentoo Authors
# Distributed under the terms of the GNU General Public License v2
EAPI=8
inherit meson cmake
DESCRIPTION="High-level C++ D-Bus library"
HOMEPAGE="https://github.com/Kistler-Group/sdbus-cpp"
SRC_URI="https://github.com/Kistler-Group/sdbus-cpp/archive/refs/tags/v${PV}.tar.gz -> ${P}.tar.gz"
S="${WORKDIR}/sdbus-cpp-${PV}"
LICENSE="LGPL-2.1+ Nokia-Qt-LGPL-Exception-1.1" # Nothing to do with Qt but exception text is exactly the same.
SLOT="0/2"
KEYWORDS="~amd64"
IUSE="doc +elogind systemd test tools"
REQUIRED_USE="?? ( elogind systemd )"
RESTRICT="!test? ( test )"
RDEPEND="
elogind? ( >=sys-auth/elogind-252 )
systemd? ( >=sys-apps/systemd-252:= )
!elogind? ( !systemd? ( >=sys-libs/basu-0.2.1 ) )
tools? ( dev-libs/expat )
"
DEPEND="
${RDEPEND}
test? ( >=dev-cpp/gtest-1.14.0 )
"
BDEPEND="
virtual/pkgconfig
doc? ( app-text/doxygen[dot] )
"
src_configure() {
local mycmakeargs=(
-DBUILD_DOXYGEN_DOC=$(usex doc)
-DSDBUSCPP_BUILD_CODEGEN=$(usex tools)
-DSDBUSCPP_BUILD_DOCS=yes
-DSDBUSCPP_BUILD_DOXYGEN_DOCS=$(usex doc)
-DSDBUSCPP_BUILD_LIBSYSTEMD=no
-DSDBUSCPP_BUILD_TESTS=$(usex test)
)
cmake_src_configure
}
src_compile() {
cmake_src_compile all $(usev doc)
}
src_test() {
if ! cmp -s {"${S}"/tests/integrationtests/files,/etc/dbus-1/system.d}/org.sdbuscpp.integrationtests.conf; then
ewarn "Not running the tests as a D-Bus configuration file has not been"
ewarn "installed yet or has changed since. The tests can be run after"
ewarn "the package has been merged."
return
elif [[ ! -S /run/dbus/system_bus_socket ]]; then
ewarn "Not running the tests as the system-wide D-Bus daemon is unavailable."
return
fi
# Can't use cmake_src_test with dbus-run-session. Don't bother with all the
# extra arguments because there's only two tests.
dbus-run-session ctest --test-dir "${BUILD_DIR}" || die
}
src_install() {
cmake_src_install
rm -v "${ED}"/usr/share/doc/${PF}/COPYING || die
if use test; then
# Delete installed test binaries.
rm -rv "${ED}"/usr/tests || die
fi
}
|