blob: b42fb3cf7932f8fc786e6a1463fa15f2f086f3f9 (
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
|
# Copyright 1999-2009 Gentoo Foundation
# Distributed under the terms of the GNU General Public License v2
# $Header: $
EAPI="2"
KMNAME="playground/base/plasma/applets"
KMMODULE="networkmanager"
QT_MINIMAL="4.6.0_beta"
inherit kde4-base
DESCRIPTION="KDE frontend for NetworkManager"
HOMEPAGE="http://kde.org/"
LICENSE="GPL-2 LGPL-2"
KEYWORDS=""
SLOT="4"
IUSE="consolekit debug +networkmanager wicd"
DEPEND="
!kde-misc/networkmanager-applet
>=kde-base/solid-${KDE_MINIMAL}[networkmanager?,wicd?]
>=net-misc/networkmanager-0.7
consolekit? ( sys-auth/consolekit )
"
RDEPEND="${DEPEND}"
pkg_setup() {
if ! use networkmanager && ! use wicd; then
eerror "You need to pick up one of the backend implementations"
eerror " * networkmanager"
eerror " * wicd"
die "No backend selected"
fi
kde4-base_pkg_setup
}
src_configure() {
if ! use consolekit; then
# Fix dbus policy
sed -i \
-e 's/at_console=".*"/group="plugdev"/' \
"${S}/NetworkManager-kde4.conf" \
|| die "Fixing dbus policy failed"
fi
mycmakeargs="${mycmakeargs}
-DDBUS_SYSTEM_POLICY_DIR=/etc/dbus-1/system.d"
kde4-base_src_configure
}
|