blob: 0c60eeca3a2453976f72905adf8f5e3aeb10d68b (
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
|
# Copyright 1999-2021 Gentoo Authors
# Distributed under the terms of the GNU General Public License v2
EAPI=6
GNOME_ORG_MODULE="NetworkManager-libreswan"
inherit gnome2
DESCRIPTION="NetworkManager libreswan plugin"
HOMEPAGE="https://wiki.gnome.org/Projects/NetworkManager/VPN"
LICENSE="GPL-2+"
SLOT="0"
KEYWORDS="~amd64 ~x86"
IUSE="gtk"
RDEPEND="
>=dev-libs/glib-2.32:2
>=dev-libs/libnl-3.2.8:3
>=net-misc/networkmanager-1.2.0:=
net-vpn/libreswan
gtk? (
app-crypt/libsecret
>=gnome-extra/nm-applet-1.2.0
>=x11-libs/gtk+-3.4:3
)
!net-misc/networkmanager-openswan
"
DEPEND="${RDEPEND}
sys-devel/gettext
dev-util/intltool
virtual/pkgconfig
"
src_configure() {
local myconf=(
--disable-more-warnings
--disable-static
--with-dist-version=Gentoo
--without-libnm-glib
$(use_with gtk gnome)
)
gnome2_src_configure "${myconf[@]}"
}
|