Gentoo Archives: gentoo-commits

From: Johannes Huber <johu@g.o>
To: gentoo-commits@l.g.o
Subject: [gentoo-commits] repo/gentoo:master commit in: net-vpn/openfortivpn/
Date: Wed, 29 Apr 2020 10:48:49
Message-Id: 1588157312.4bbb659ac99779dbfc3976e2d452c7c9b2d26ba3.johu@gentoo
1 commit: 4bbb659ac99779dbfc3976e2d452c7c9b2d26ba3
2 Author: Johannes Huber <johu <AT> gentoo <DOT> org>
3 AuthorDate: Wed Apr 29 10:47:47 2020 +0000
4 Commit: Johannes Huber <johu <AT> gentoo <DOT> org>
5 CommitDate: Wed Apr 29 10:48:32 2020 +0000
6 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=4bbb659a
7
8 net-vpn/openfortivpn: Version bump 1.13.3
9
10 Package-Manager: Portage-2.3.99, Repoman-2.3.22
11 Signed-off-by: Johannes Huber <johu <AT> gentoo.org>
12
13 net-vpn/openfortivpn/Manifest | 1 +
14 net-vpn/openfortivpn/openfortivpn-1.13.3.ebuild | 38 +++++++++++++++++++++++++
15 2 files changed, 39 insertions(+)
16
17 diff --git a/net-vpn/openfortivpn/Manifest b/net-vpn/openfortivpn/Manifest
18 index 7727b0525b6..88bf1ccd2d8 100644
19 --- a/net-vpn/openfortivpn/Manifest
20 +++ b/net-vpn/openfortivpn/Manifest
21 @@ -1 +1,2 @@
22 DIST openfortivpn-1.13.2.tar.gz 82977 BLAKE2B 5daf2fdacaf2f9c3bc0a4bc3fc26543ed0ab424b70d2795e7b3d74b38cba53b1a8a9823564198ea5292b63f872c12f17ed3f65111a7024faee19640fff765cd7 SHA512 6be456784618d0af26190bad4af20a5f7163d3d984e3317fa3aac04b605ddd39f8973b192cf35fc8a371bf5ca4cbff8f644991b0cc031f558bf7881066fe8ec2
23 +DIST openfortivpn-1.13.3.tar.gz 150681 BLAKE2B 378837373f743c474233e5c7d0f8698a1bbaa5b2b84c89173547e4d0674e4ffe8949bf105462b7d355e603483577008d7ef99315e78a7511dca043426b668885 SHA512 57f87e1f1243b2eb1f4ef17dfacea203c8b11fd0e65440eef4c6b08af0b821c5a087a85d98423540114a7d977d12c4a99d0edcc348f0107fd230f573e3df0fbf
24
25 diff --git a/net-vpn/openfortivpn/openfortivpn-1.13.3.ebuild b/net-vpn/openfortivpn/openfortivpn-1.13.3.ebuild
26 new file mode 100644
27 index 00000000000..2cda60426dc
28 --- /dev/null
29 +++ b/net-vpn/openfortivpn/openfortivpn-1.13.3.ebuild
30 @@ -0,0 +1,38 @@
31 +# Copyright 1999-2020 Gentoo Authors
32 +# Distributed under the terms of the GNU General Public License v2
33 +
34 +EAPI=7
35 +
36 +inherit autotools linux-info
37 +
38 +DESCRIPTION="Fortinet compatible VPN client"
39 +HOMEPAGE="https://github.com/adrienverge/openfortivpn"
40 +SRC_URI="https://github.com/adrienverge/openfortivpn/archive/v${PV}.tar.gz -> ${P}.tar.gz"
41 +
42 +LICENSE="GPL-3-with-openssl-exception openssl"
43 +SLOT="0"
44 +KEYWORDS="~amd64"
45 +IUSE="libressl"
46 +
47 +DEPEND="
48 + net-dialup/ppp
49 + !libressl? ( dev-libs/openssl:0= )
50 + libressl? ( dev-libs/libressl:0= )
51 +"
52 +RDEPEND="${DEPEND}"
53 +
54 +CONFIG_CHECK="~PPP ~PPP_ASYNC"
55 +
56 +src_prepare() {
57 + default
58 +
59 + sed -i 's/-Werror//g' Makefile.am || die "Failed to remove -Werror from Makefile.am"
60 +
61 + eautoreconf
62 +}
63 +
64 +src_install() {
65 + default
66 +
67 + keepdir /etc/openfortivpn
68 +}