blob: 96805d145cfa21e3633057cdcd15607c5ce44126 (
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
|
# Copyright 1999-2022 Gentoo Authors
# Distributed under the terms of the GNU General Public License v2
EAPI=7
GNOME_ORG_MODULE="NetworkManager-${PN##*-}"
GNOME2_LA_PUNT="yes"
GNOME2_EAUTORECONF="yes"
inherit gnome2
DESCRIPTION="NetworkManager Fortinet SSLVPN compatible plugin"
HOMEPAGE="https://wiki.gnome.org/Projects/NetworkManager"
LICENSE="GPL-2+"
SLOT="0"
KEYWORDS="amd64"
IUSE="gtk"
DEPEND="
>=dev-libs/glib-2.32:2
>=net-misc/networkmanager-1.2:=
gtk? (
>=app-crypt/libsecret-0.18
gui-libs/gtk:4
media-libs/harfbuzz
>=net-libs/libnma-1.2.0
x11-libs/cairo
x11-libs/gdk-pixbuf
x11-libs/pango
)
"
RDEPEND="${RDEPEND}
net-dialup/ppp
>=net-vpn/openfortivpn-1.2.0"
BDEPEND="dev-util/gdbus-codegen
>=sys-devel/gettext-0.19
virtual/pkgconfig"
src_prepare() {
default
# Fix deprecated location, #709450
sed -i 's|/appdata|/metainfo|g' Makefile.{in,am} || die
}
src_configure() {
CONFIG_SHELL="${BROOT}"/bin/bash gnome2_src_configure \
--disable-static \
--with-dist-version=Gentoo \
--localstatedir=/var \
$(use_with gtk gnome) \
$(use_with gtk gtk4) \
--without-libnm-glib
}
|