From: Conrad Kostecki Date: Sun, 28 Oct 2018 13:10:50 +0000 (+0100) Subject: net-misc/networkmanager-strongswan: bump to EAPI=7 X-Git-Url: http://git.tremily.us/?a=commitdiff_plain;h=10330282dce2f076e10519de92e088c9daf6d8e4;p=gentoo.git net-misc/networkmanager-strongswan: bump to EAPI=7 Signed-off-by: Conrad Kostecki Package-Manager: Portage-2.3.51, Repoman-2.3.11 Signed-off-by: Thomas Deutschmann --- diff --git a/net-misc/networkmanager-strongswan/networkmanager-strongswan-1.4.4-r1.ebuild b/net-misc/networkmanager-strongswan/networkmanager-strongswan-1.4.4-r1.ebuild new file mode 100644 index 000000000000..de93d1d51007 --- /dev/null +++ b/net-misc/networkmanager-strongswan/networkmanager-strongswan-1.4.4-r1.ebuild @@ -0,0 +1,50 @@ +# Copyright 1999-2018 Gentoo Authors +# Distributed under the terms of the GNU General Public License v2 + +EAPI=7 + +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" +IUSE="+glib" + +RDEPEND=" + app-crypt/libsecret + gnome-extra/nm-applet + net-misc/networkmanager + net-vpn/strongswan[networkmanager] + x11-libs/gtk+:3 +" + +DEPEND=" + ${RDEPEND} + dev-util/intltool +" + +BDEPEND="virtual/pkgconfig" + +S="${WORKDIR}/${MY_P}" + +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 + $(usex glib '' --without-libnm-glib) + ) + + econf "${myeconfargs[@]}" +} + +src_install() { + default + + find "${D}" -name '*.la' -delete || die +}