blob: 4d6b226a5f18a4db822a0a9b3193992d90261637 (
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
|
# Copyright 1999-2014 Gentoo Foundation
# Distributed under the terms of the GNU General Public License v2
# $Header: /var/cvsroot/gentoo-x86/gnome-extra/nm-applet/nm-applet-0.9.8.8-r2.ebuild,v 1.1 2014/05/05 10:02:27 zerochaos Exp $
EAPI=5
GCONF_DEBUG="no"
GNOME2_LA_PUNT="yes"
GNOME_ORG_MODULE="network-manager-applet"
inherit eutils gnome2
DESCRIPTION="GNOME applet for NetworkManager"
HOMEPAGE="https://wiki.gnome.org/Projects/NetworkManager"
LICENSE="GPL-2+"
SLOT="0"
IUSE="bluetooth gconf +introspection modemmanager"
KEYWORDS="~alpha amd64 ~arm ~ia64 ~ppc ~ppc64 ~sparc x86"
RDEPEND="
app-crypt/libsecret
>=dev-libs/glib-2.26:2
>=dev-libs/dbus-glib-0.88
>=sys-apps/dbus-1.4.1
>=sys-auth/polkit-0.96-r1
>=x11-libs/gtk+-3:3[introspection?]
>=x11-libs/libnotify-0.7.0
app-text/iso-codes
>=net-misc/networkmanager-0.9.8[introspection?]
net-misc/mobile-broadband-provider-info
bluetooth? ( >=net-wireless/gnome-bluetooth-2.27.6:= )
gconf? (
>=gnome-base/gconf-2.20:2
gnome-base/libgnome-keyring )
introspection? ( >=dev-libs/gobject-introspection-0.9.6 )
modemmanager? ( >=net-misc/modemmanager-0.7.990 )
virtual/freedesktop-icon-theme
virtual/notification-daemon
virtual/udev[gudev]
"
DEPEND="${RDEPEND}
virtual/pkgconfig
>=dev-util/intltool-0.40
"
src_configure() {
gnome2_src_configure \
--with-gtkver=3 \
--disable-more-warnings \
--disable-static \
--localstatedir=/var \
$(use_with bluetooth) \
$(use_enable gconf migration) \
$(use_enable introspection) \
$(use_with modemmanager modem-manager-1)
}
src_prepare() {
# Revert "libnm-gtk: default to system CA certificates for validation for new connections"
# bug #497296 (from 'master')
epatch "${FILESDIR}/${PN}-0.9.8.8-revert-ca-certificates.patch"
gnome2_src_prepare
}
|