blob: e2ad6d75ab93fe667f6dd0f610fdb38863f6fccc (
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
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
|
# Copyright 1999-2021 Gentoo Authors
# Distributed under the terms of the GNU General Public License v2
EAPI=7
inherit eutils multilib-minimal
DESCRIPTION="Legacy NetworkManager glib and util libraries"
HOMEPAGE="https://wiki.gnome.org/Projects/NetworkManager"
LICENSE="GPL-2+"
SLOT="0"
KEYWORDS="~alpha ~amd64 ~arm ~arm64 ~ia64 ~ppc ~ppc64 ~sparc ~x86"
IUSE="gnutls +nss"
REQUIRED_USE="|| ( nss gnutls )"
RESTRICT="test"
SRC_URI="https://download.gnome.org/sources/NetworkManager/1.18/NetworkManager-${PV}.tar.xz"
DEPEND="
>=sys-apps/dbus-1.2[${MULTILIB_USEDEP}]
>=dev-libs/dbus-glib-0.100[${MULTILIB_USEDEP}]
>=dev-libs/glib-2.40:2[${MULTILIB_USEDEP}]
net-libs/libndp[${MULTILIB_USEDEP}]
sys-apps/util-linux[${MULTILIB_USEDEP}]
>=virtual/libudev-175:=[${MULTILIB_USEDEP}]
nss? ( >=dev-libs/nss-3.11:=[${MULTILIB_USEDEP}] )
!nss? ( gnutls? (
dev-libs/libgcrypt:0=[${MULTILIB_USEDEP}]
>=net-libs/gnutls-2.12:=[${MULTILIB_USEDEP}] ) )
"
RDEPEND="
${DEPEND}
!<net-misc/networkmanager-1.19
"
BDEPEND="
>=dev-util/intltool-0.40
virtual/pkgconfig
"
S="${WORKDIR}/NetworkManager-${PV}"
multilib_src_configure() {
local myconf=(
--disable-bluez5-dun
--disable-concheck
--disable-json-validation
--disable-more-asserts
--disable-more-logging
--disable-ovs
--disable-polkit
--disable-polkit-agent
--disable-ppp
--disable-qt
--disable-rpath
--disable-teamdctl
--disable-wifi
--enable-introspection=no
--enable-more-warnings=no
--enable-vala=no
--with-consolekit=no
--with-crypto=$(usex nss gnutls)
--with-dbus-sys-dir=/etc/dbus-1/system.d
--with-dhclient=no
--with-dhcpcanon=no
--with-dhcpcd=no
--with-ebpf=no
--with-libnm-glib
--with-libpsl=no
--with-netconfig=no
--with-nmcli=no
--with-nmtui=no
--without-iwd
--without-libaudit
--without-modem-manager-1
--without-ofono
--without-resolvconf
--without-wext
--with-selinux=no
--with-session-tracking=no
--with-suspend-resume=upower
--with-systemd-journal=no
--with-systemd-logind=no
--with-valgrind=no
)
ECONF_SOURCE="${S}" econf "${myconf[@]}"
}
multilib_src_install() {
dolib.so libnm-{glib,util}/.libs/libnm-*.so*[0-9]
}
|