blob: 3d59b2462fad433d22ebb31cae965ae62a5e3e8b (
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
|
# Copyright 1999-2024 Gentoo Authors
# Distributed under the terms of the GNU General Public License v2
EAPI=8
QTMIN=6.6.2
inherit ecm frameworks.kde.org
DESCRIPTION="NetworkManager bindings for Qt"
LICENSE="LGPL-2"
KEYWORDS="~amd64"
IUSE="teamd"
DEPEND="
dev-libs/glib:2
>=dev-qt/qtbase-${QTMIN}:6[dbus,network]
>=net-misc/networkmanager-1.4.0-r1[teamd=]
"
RDEPEND="${DEPEND}
|| (
>=net-misc/networkmanager-1.4.0-r1[elogind]
>=net-misc/networkmanager-1.4.0-r1[systemd]
)
"
BDEPEND="virtual/pkgconfig"
CMAKE_SKIP_TESTS=(
# bug: 625276
managertest
settingstest
activeconnectiontest
)
|