From mboxrd@z Thu Jan 1 00:00:00 1970 Return-Path: Received: from lists.gentoo.org (pigeon.gentoo.org [208.92.234.80]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (No client certificate requested) by finch.gentoo.org (Postfix) with ESMTPS id 6E07C138351 for ; Sun, 19 Apr 2020 18:15:32 +0000 (UTC) Received: from pigeon.gentoo.org (localhost [127.0.0.1]) by pigeon.gentoo.org (Postfix) with SMTP id 7EF66E099B; Sun, 19 Apr 2020 18:15:31 +0000 (UTC) Received: from smtp.gentoo.org (smtp.gentoo.org [140.211.166.183]) (using TLSv1.2 with cipher ECDHE-RSA-AES128-GCM-SHA256 (128/128 bits)) (No client certificate requested) by pigeon.gentoo.org (Postfix) with ESMTPS id 5F224E099B for ; Sun, 19 Apr 2020 18:15:31 +0000 (UTC) Received: from oystercatcher.gentoo.org (unknown [IPv6:2a01:4f8:202:4333:225:90ff:fed9:fc84]) (using TLSv1.2 with cipher ECDHE-RSA-AES128-GCM-SHA256 (128/128 bits)) (No client certificate requested) by smtp.gentoo.org (Postfix) with ESMTPS id 5A25234F08C for ; Sun, 19 Apr 2020 18:15:30 +0000 (UTC) Received: from localhost.localdomain (localhost [IPv6:::1]) by oystercatcher.gentoo.org (Postfix) with ESMTP id AD0FA1E3 for ; Sun, 19 Apr 2020 18:15:28 +0000 (UTC) From: "Mart Raudsepp" To: gentoo-commits@lists.gentoo.org Content-Transfer-Encoding: 8bit Content-type: text/plain; charset=UTF-8 Reply-To: gentoo-dev@lists.gentoo.org, "Mart Raudsepp" Message-ID: <1587320054.c45957ba142d807787a538860546fea10a1b361a.leio@gentoo> Subject: [gentoo-commits] repo/gentoo:master commit in: net-vpn/networkmanager-fortisslvpn/ X-VCS-Repository: repo/gentoo X-VCS-Files: net-vpn/networkmanager-fortisslvpn/networkmanager-fortisslvpn-1.2.8-r2.ebuild X-VCS-Directories: net-vpn/networkmanager-fortisslvpn/ X-VCS-Committer: leio X-VCS-Committer-Name: Mart Raudsepp X-VCS-Revision: c45957ba142d807787a538860546fea10a1b361a X-VCS-Branch: master Date: Sun, 19 Apr 2020 18:15:28 +0000 (UTC) Precedence: bulk List-Post: List-Help: List-Unsubscribe: List-Subscribe: List-Id: Gentoo Linux mail X-BeenThere: gentoo-commits@lists.gentoo.org X-Auto-Response-Suppress: DR, RN, NRN, OOF, AutoReply X-Archives-Salt: 2beb55d8-8bd1-483a-963b-31d37430b93c X-Archives-Hash: 32002eedf9f0ea5d11c9f11e4638521e commit: c45957ba142d807787a538860546fea10a1b361a Author: Mart Raudsepp gentoo org> AuthorDate: Sun Apr 19 18:13:54 2020 +0000 Commit: Mart Raudsepp gentoo org> CommitDate: Sun Apr 19 18:14:14 2020 +0000 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=c45957ba net-vpn/networkmanager-fortisslvpn: disable legacy libnm-glib compat Disable libnm-glib, libnm-glib-vpn and libnm-util usage, as they are all gone with newer NetworkManager. This also disables libnm-gtk usage, which requires libnm-glib in turn as well, and is also gone with newer nm-applet. Depend on new libnma package instead of nm-applet, as this is what is needed here. Package-Manager: Portage-2.3.84, Repoman-2.3.20 Signed-off-by: Mart Raudsepp gentoo.org> .../networkmanager-fortisslvpn-1.2.8-r2.ebuild | 44 ++++++++++++++++++++++ 1 file changed, 44 insertions(+) diff --git a/net-vpn/networkmanager-fortisslvpn/networkmanager-fortisslvpn-1.2.8-r2.ebuild b/net-vpn/networkmanager-fortisslvpn/networkmanager-fortisslvpn-1.2.8-r2.ebuild new file mode 100644 index 00000000000..e66f115f32c --- /dev/null +++ b/net-vpn/networkmanager-fortisslvpn/networkmanager-fortisslvpn-1.2.8-r2.ebuild @@ -0,0 +1,44 @@ +# Copyright 1999-2020 Gentoo Authors +# Distributed under the terms of the GNU General Public License v2 + +EAPI=6 +GNOME_ORG_MODULE="NetworkManager-${PN##*-}" +GNOME2_LA_PUNT="yes" +GNOME2_EAUTORECONF="yes" + +inherit gnome2 + +DESCRIPTION="NetworkManager Fortinet SSLVPN compatible plugin" +HOMEPAGE="https://wiki.gnome.org/Projects/NetworkManager" + +LICENSE="GPL-2+" +SLOT="0" +KEYWORDS="~amd64" +IUSE="gtk" + +RDEPEND=" + >=net-misc/networkmanager-1.2:= + >=dev-libs/glib-2.32:2 + net-dialup/ppp:= + >=net-vpn/openfortivpn-1.2.0 + gtk? ( + >=app-crypt/libsecret-0.18 + >=net-libs/libnma-1.2.0 + >=x11-libs/gtk+-3.4:3 + ) +" +DEPEND="${RDEPEND} + dev-util/gdbus-codegen + sys-devel/gettext + >=dev-util/intltool-0.35 + virtual/pkgconfig +" + +src_configure() { + gnome2_src_configure \ + --disable-static \ + --with-dist-version=Gentoo \ + --localstatedir=/var \ + $(use_with gtk gnome) \ + --without-libnm-glib +}