Gentoo Archives: gentoo-commits

From: Ben Kohler <bkohler@g.o>
To: gentoo-commits@l.g.o
Subject: [gentoo-commits] repo/gentoo:master commit in: net-misc/connman/
Date: Mon, 29 Mar 2021 13:49:45
Message-Id: 1617025767.e868096084cdd4f29adec580e6622e59ce0250af.bkohler@gentoo
1 commit: e868096084cdd4f29adec580e6622e59ce0250af
2 Author: Ben Kohler <bkohler <AT> gentoo <DOT> org>
3 AuthorDate: Mon Mar 29 13:31:24 2021 +0000
4 Commit: Ben Kohler <bkohler <AT> gentoo <DOT> org>
5 CommitDate: Mon Mar 29 13:49:27 2021 +0000
6 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=e8680960
7
8 net-misc/connman: drop old
9
10 Package-Manager: Portage-3.0.17, Repoman-3.0.2
11 Signed-off-by: Ben Kohler <bkohler <AT> gentoo.org>
12
13 net-misc/connman/connman-1.39.ebuild | 100 -----------------------------------
14 1 file changed, 100 deletions(-)
15
16 diff --git a/net-misc/connman/connman-1.39.ebuild b/net-misc/connman/connman-1.39.ebuild
17 deleted file mode 100644
18 index d37b4b33e95..00000000000
19 --- a/net-misc/connman/connman-1.39.ebuild
20 +++ /dev/null
21 @@ -1,100 +0,0 @@
22 -# Copyright 1999-2021 Gentoo Authors
23 -# Distributed under the terms of the GNU General Public License v2
24 -
25 -EAPI="7"
26 -inherit autotools systemd tmpfiles
27 -
28 -if [[ ${PV} == *9999* ]]; then
29 - inherit git-r3
30 - EGIT_REPO_URI="https://git.kernel.org/pub/scm/network/connman/connman.git"
31 -else
32 - SRC_URI="https://www.kernel.org/pub/linux/network/${PN}/${P}.tar.xz"
33 - KEYWORDS="amd64 arm arm64 ppc ppc64 x86"
34 -fi
35 -
36 -DESCRIPTION="Provides a daemon for managing internet connections"
37 -HOMEPAGE="https://01.org/connman"
38 -
39 -LICENSE="GPL-2"
40 -SLOT="0"
41 -
42 -IUSE="bluetooth debug doc +ethernet examples iptables iwd l2tp networkmanager
43 -+nftables ofono openconnect openvpn policykit pptp tools vpnc +wifi wireguard
44 -wispr"
45 -
46 -REQUIRED_USE="^^ ( iptables nftables )"
47 -BDEPEND="virtual/pkgconfig"
48 -RDEPEND=">=dev-libs/glib-2.16
49 - >=sys-apps/dbus-1.2.24
50 - sys-libs/readline:0=
51 - bluetooth? ( net-wireless/bluez )
52 - iptables? ( >=net-firewall/iptables-1.4.8 )
53 - iwd? ( net-wireless/iwd )
54 - l2tp? ( net-dialup/xl2tpd )
55 - nftables? (
56 - >=net-libs/libnftnl-1.0.4:0=
57 - >=net-libs/libmnl-1.0.0:0= )
58 - ofono? ( net-misc/ofono )
59 - openconnect? ( net-vpn/openconnect )
60 - openvpn? ( net-vpn/openvpn )
61 - policykit? ( sys-auth/polkit )
62 - pptp? ( net-dialup/pptpclient )
63 - vpnc? ( net-vpn/vpnc )
64 - wifi? ( >=net-wireless/wpa_supplicant-2.0[dbus] )
65 - wireguard? ( >=net-libs/libmnl-1.0.0:0= )
66 - wispr? ( net-libs/gnutls )"
67 -
68 -DEPEND="${RDEPEND}
69 - >=sys-kernel/linux-headers-2.6.39"
70 -
71 -src_prepare() {
72 - default
73 - eautoreconf
74 -}
75 -
76 -src_configure() {
77 - econf \
78 - --localstatedir=/var \
79 - --with-systemdunitdir=$(systemd_get_systemunitdir) \
80 - --with-tmpfilesdir="${EPREFIX}"/usr/lib/tmpfiles.d \
81 - --enable-client \
82 - --enable-datafiles \
83 - --enable-loopback=builtin \
84 - $(use_enable bluetooth bluetooth builtin) \
85 - $(use_enable debug) \
86 - $(use_enable ethernet ethernet builtin) \
87 - $(use_enable examples test) \
88 - $(use_enable iwd) \
89 - $(use_enable l2tp l2tp builtin) \
90 - $(use_enable networkmanager nmcompat) \
91 - $(use_enable ofono ofono builtin) \
92 - $(use_enable openconnect openconnect builtin) \
93 - $(use_enable openvpn openvpn builtin) \
94 - $(use_enable policykit polkit builtin) \
95 - $(use_enable pptp pptp builtin) \
96 - $(use_enable tools) \
97 - $(use_enable vpnc vpnc builtin) \
98 - $(use_enable wifi wifi builtin) \
99 - $(use_enable wireguard) \
100 - $(use_enable wispr wispr builtin) \
101 - --with-firewall=$(usex iptables "iptables" "nftables" ) \
102 - --disable-iospm \
103 - --disable-hh2serial-gps
104 -}
105 -
106 -src_install() {
107 - default
108 - dobin client/connmanctl
109 -
110 - if use doc; then
111 - dodoc doc/*.txt
112 - fi
113 - keepdir /usr/lib/${PN}/scripts
114 - keepdir /var/lib/${PN}
115 - newinitd "${FILESDIR}"/${PN}.initd2 ${PN}
116 - newconfd "${FILESDIR}"/${PN}.confd ${PN}
117 -}
118 -
119 -pkg_postinst() {
120 - tmpfiles_process /usr/lib/tmpfiles.d/connman_resolvconf.conf
121 -}