diff options
author | Conrad Kostecki <conikost@gentoo.org> | 2022-02-09 22:26:48 +0100 |
---|---|---|
committer | Conrad Kostecki <conikost@gentoo.org> | 2022-02-09 23:56:30 +0100 |
commit | 51fe85a49062ec1b0497e630d10b390ac2c1665a (patch) | |
tree | 01ce88114a77090595e0e8b83ded78bfbfce0649 /net-vpn/networkmanager-strongswan | |
parent | net-vpn/networkmanager-strongswan: update EAPI 7 -> 8 (diff) | |
download | gentoo-51fe85a49062ec1b0497e630d10b390ac2c1665a.tar.gz gentoo-51fe85a49062ec1b0497e630d10b390ac2c1665a.tar.bz2 gentoo-51fe85a49062ec1b0497e630d10b390ac2c1665a.zip |
net-vpn/networkmanager-strongswan: drop 1.5.2
Signed-off-by: Conrad Kostecki <conikost@gentoo.org>
Diffstat (limited to 'net-vpn/networkmanager-strongswan')
-rw-r--r-- | net-vpn/networkmanager-strongswan/networkmanager-strongswan-1.5.2.ebuild | 57 |
1 files changed, 0 insertions, 57 deletions
diff --git a/net-vpn/networkmanager-strongswan/networkmanager-strongswan-1.5.2.ebuild b/net-vpn/networkmanager-strongswan/networkmanager-strongswan-1.5.2.ebuild deleted file mode 100644 index 545ed8ca1cab..000000000000 --- a/net-vpn/networkmanager-strongswan/networkmanager-strongswan-1.5.2.ebuild +++ /dev/null @@ -1,57 +0,0 @@ -# Copyright 1999-2020 Gentoo Authors -# Distributed under the terms of the GNU General Public License v2 - -EAPI=7 - -inherit autotools - -MY_PN="NetworkManager" -MY_P="${P/networkmanager/${MY_PN}}" - -DESCRIPTION="NetworkManager StrongSwan plugin" -HOMEPAGE="https://www.strongswan.org/" -SRC_URI="https://download.strongswan.org/${MY_PN}/${MY_P}.tar.bz2" - -LICENSE="GPL-2+" -SLOT="0" -KEYWORDS="amd64 x86" - -RDEPEND=" - app-crypt/libsecret - >=net-libs/libnma-1.1.0 - net-misc/networkmanager - >=net-vpn/strongswan-5.8.3[networkmanager] - x11-libs/gtk+:3 -" - -DEPEND="${RDEPEND}" - -BDEPEND=" - dev-util/intltool - virtual/pkgconfig -" - -S="${WORKDIR}/${MY_P}" - -src_prepare() { - default - - eautoreconf -} - -src_configure() { - local myeconfargs=( - # Don't enable all warnings, as some are treated as errors and the compilation will fail - --disable-more-warnings - --disable-static - --without-libnm-glib - ) - - econf "${myeconfargs[@]}" -} - -src_install() { - default - - find "${D}" -name '*.la' -delete || die -} |