Gentoo Archives: gentoo-commits

From: Thomas Deutschmann <whissi@g.o>
To: gentoo-commits@l.g.o
Subject: [gentoo-commits] repo/gentoo:master commit in: net-misc/networkmanager-strongswan/
Date: Sat, 19 Jan 2019 05:49:59
Message-Id: 1547876974.a4744a64e5c0771f790bc6728e3471a2414713d4.whissi@gentoo
1 commit: a4744a64e5c0771f790bc6728e3471a2414713d4
2 Author: Conrad Kostecki <conrad <AT> kostecki <DOT> com>
3 AuthorDate: Sun Oct 28 13:11:18 2018 +0000
4 Commit: Thomas Deutschmann <whissi <AT> gentoo <DOT> org>
5 CommitDate: Sat Jan 19 05:49:34 2019 +0000
6 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=a4744a64
7
8 net-misc/networkmanager-strongswan: drop old version
9
10 Signed-off-by: Conrad Kostecki <conrad <AT> kostecki.com>
11 Package-Manager: Portage-2.3.51, Repoman-2.3.11
12 Closes: https://github.com/gentoo/gentoo/pull/10260
13 Signed-off-by: Thomas Deutschmann <whissi <AT> gentoo.org>
14
15 .../networkmanager-strongswan-1.4.4.ebuild | 45 ----------------------
16 1 file changed, 45 deletions(-)
17
18 diff --git a/net-misc/networkmanager-strongswan/networkmanager-strongswan-1.4.4.ebuild b/net-misc/networkmanager-strongswan/networkmanager-strongswan-1.4.4.ebuild
19 deleted file mode 100644
20 index 738be2c105f..00000000000
21 --- a/net-misc/networkmanager-strongswan/networkmanager-strongswan-1.4.4.ebuild
22 +++ /dev/null
23 @@ -1,45 +0,0 @@
24 -# Copyright 1999-2018 Gentoo Foundation
25 -# Distributed under the terms of the GNU General Public License v2
26 -
27 -EAPI=6
28 -
29 -MY_PN="NetworkManager"
30 -MY_P="${P/networkmanager/${MY_PN}}"
31 -
32 -DESCRIPTION="NetworkManager StrongSwan plugin"
33 -HOMEPAGE="https://www.strongswan.org/"
34 -SRC_URI="https://download.strongswan.org/${MY_PN}/${MY_P}.tar.bz2"
35 -
36 -LICENSE="GPL-2+"
37 -SLOT="0"
38 -KEYWORDS="~amd64 ~x86"
39 -IUSE="+glib"
40 -
41 -RDEPEND="app-crypt/libsecret
42 - gnome-extra/nm-applet
43 - net-misc/networkmanager
44 - net-vpn/strongswan[networkmanager]
45 - x11-libs/gtk+:3"
46 -
47 -DEPEND="${RDEPEND}
48 - dev-util/intltool
49 - virtual/pkgconfig"
50 -
51 -S="${WORKDIR}/${MY_P}"
52 -
53 -src_configure() {
54 - local myeconfargs=(
55 - # Don't enable all warnings, as some are treated as errors and the compilation will fail
56 - --disable-more-warnings
57 - --disable-static
58 - $(usex glib '' --without-libnm-glib)
59 - )
60 -
61 - econf "${myeconfargs[@]}"
62 -}
63 -
64 -src_install() {
65 - default
66 -
67 - find "${D}" -name '*.la' -delete || die
68 -}