blob: bea2cbb36005c2680e1dfdfe2e873eb4126f8424 (
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
|
# Copyright 1999-2005 Gentoo Foundation
# Distributed under the terms of the GNU General Public License v2
# $Header: $
inherit gnome2 eutils
# NetworkManager likes itself with capital letters
MY_P=${P/networkmanager/NetworkManager}
MY_P=${MY_P/pptp/ppp_vpn}
DESCRIPTION="NetworkManager vpnc plugin for daemon and client configuration."
HOMEPAGE="http://www.gnome.org/projects/NetworkManager/"
SRC_URI="http://dev.gentoo.org/~rbu/distfiles/${MY_P}.tar.gz"
LICENSE="GPL-2"
SLOT="0"
KEYWORDS="~x86 ~amd64"
IUSE="crypt debug doc gnome"
RDEPEND=">=sys-apps/dbus-0.35.2
>=dev-libs/glib-2.8
>=net-misc/networkmanager-0.7.0_pre20070627
net-dialup/ppp
gnome? ( >=x11-libs/gtk+-2.8
>=gnome-base/libglade-2
>=gnome-base/gnome-keyring-0.4
>=gnome-base/gnome-panel-2
>=gnome-base/gconf-2
>=gnome-base/libgnomeui-2 )
!gnome? ( >=gnome-base/libglade-2
>=gnome-base/gnome-keyring-0.4
>=gnome-base/gconf-2 )
>=net-misc/openvpn-2.0.5
crypt? ( dev-libs/libgcrypt )"
DEPEND="${RDEPEND}
dev-util/pkgconfig
dev-util/intltool"
S=${WORKDIR}/${MY_P}
DOCS="AUTHORS ChangeLog NEWS README"
USE_DESTDIR="1"
G2CONF="${G2CONF} \
`use_with crypt gcrypt` \
`use_with gnome` \
--disable-more-warnings \
--with-dbus-sys=/etc/dbus-1/system.d \
--enable-notification-icon"
|