blob: e998453dd32d72c631e85660c52d1284fde2d55e (
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
|
# Copyright 1999-2014 Gentoo Foundation
# Distributed under the terms of the GNU General Public License v2
# $Header: $
EAPI=5
KDE_TEST="true"
inherit kde5
if [[ ${KDE_BUILD_TYPE} != live ]]; then
KEYWORDS="~amd64 ~x86"
SRC_URI="mirror://kde/stable/plasma/5.0.2/${P}.tar.xz"
else
KEYWORDS=""
fi
DESCRIPTION="NetworkManager bindings for Qt"
HOMEPAGE="https://projects.kde.org/projects/extragear/libs/libnm-qt"
LICENSE="LGPL-2"
# maybe remove SLOT when it becomes official KDE Framework
SLOT="0"
IUSE=""
RDEPEND="
dev-qt/qtdbus:5
dev-qt/qtnetwork:5
|| (
>=net-misc/networkmanager-0.9.8.4[consolekit]
>=net-misc/networkmanager-0.9.8.4[systemd]
)
"
DEPEND="${RDEPEND}
virtual/pkgconfig
"
|