blob: 4ae1fc73d37056ba1684619be5d5d6e04323a921 (
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
|
# Copyright 1999-2021 Gentoo Authors
# Distributed under the terms of the GNU General Public License v2
EAPI=7
PYTHON_COMPAT=( python3_{8,9,10} )
PYTHON_REQ_USE="xml(+)"
if [[ ${PV} == *9999* ]]; then
EGIT_REPO_URI=( "https://gitlab.freedesktop.org/telepathy/${PN}" )
inherit git-r3
else
SRC_URI="https://telepathy.freedesktop.org/releases/${PN}/${P}.tar.gz"
KEYWORDS="~amd64 ~arm ~arm64 ~riscv ~x86"
fi
inherit python-any-r1 cmake virtualx
DESCRIPTION="Qt bindings for the Telepathy D-Bus protocol"
HOMEPAGE="https://telepathy.freedesktop.org/"
LICENSE="LGPL-2.1"
SLOT="0"
IUSE="debug farstream test"
REQUIRED_USE="test? ( farstream )"
RESTRICT="!test? ( test )"
BDEPEND="${PYTHON_DEPS}
virtual/pkgconfig
test? (
dev-libs/glib:2
$(python_gen_any_dep '
dev-python/dbus-python[${PYTHON_USEDEP}]
')
)
"
RDEPEND="
dev-qt/qtcore:5
dev-qt/qtdbus:5
dev-qt/qtgui:5
dev-qt/qtnetwork:5
dev-qt/qtxml:5
farstream? (
>=net-libs/telepathy-farstream-0.2.2
>=net-libs/telepathy-glib-0.18.0
)
"
DEPEND="${RDEPEND}
test? (
dev-libs/dbus-glib
dev-qt/qttest:5
)
"
python_check_deps() {
use test || return 0
has_version "dev-python/dbus-python[${PYTHON_USEDEP}]"
}
pkg_setup() {
python-any-r1_pkg_setup
}
src_configure() {
local mycmakeargs=(
-DPython3_EXECUTABLE="${PYTHON}"
-DENABLE_DEBUG_OUTPUT=$(usex debug)
-DENABLE_FARSTREAM=$(usex farstream)
-DENABLE_TESTS=$(usex test)
-DENABLE_EXAMPLES=OFF
)
cmake_src_configure
}
src_test() {
# some tests require D-Bus, bug #732110
local myctestargs=(
-E "(BaseConnectionManager|BaseProtocol|StreamTubeHandlers)"
)
pushd "${BUILD_DIR}" > /dev/null || die
virtx cmake_src_test
popd > /dev/null || die
}
|