Gentoo Archives: gentoo-commits

From: "Andreas K. Hüttel" <dilfridge@g.o>
To: gentoo-commits@l.g.o
Subject: [gentoo-commits] repo/gentoo:master commit in: net-vpn/openfortivpn/
Date: Sun, 06 Jan 2019 16:59:01
Message-Id: 1546793932.869cca1402e8ec12d64c4eb99175eadc2070dc15.dilfridge@gentoo
1 commit: 869cca1402e8ec12d64c4eb99175eadc2070dc15
2 Author: Andreas K. Hüttel <dilfridge <AT> gentoo <DOT> org>
3 AuthorDate: Sun Jan 6 16:58:25 2019 +0000
4 Commit: Andreas K. Hüttel <dilfridge <AT> gentoo <DOT> org>
5 CommitDate: Sun Jan 6 16:58:52 2019 +0000
6 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=869cca14
7
8 net-vpn/openfortivpn: Version bump
9
10 Package-Manager: Portage-2.3.54, Repoman-2.3.12
11 Signed-off-by: Andreas K. Hüttel <dilfridge <AT> gentoo.org>
12
13 net-vpn/openfortivpn/Manifest | 1 +
14 net-vpn/openfortivpn/openfortivpn-1.8.1.ebuild | 38 ++++++++++++++++++++++++++
15 2 files changed, 39 insertions(+)
16
17 diff --git a/net-vpn/openfortivpn/Manifest b/net-vpn/openfortivpn/Manifest
18 index df1f0409b5b..b309783b649 100644
19 --- a/net-vpn/openfortivpn/Manifest
20 +++ b/net-vpn/openfortivpn/Manifest
21 @@ -1 +1,2 @@
22 DIST openfortivpn-1.7.1.tar.gz 61236 BLAKE2B b382ceac577e63ebb7a92ee3ca80c45e94f77eb95f8ea75f91a4c2ca2fb006f4d2e5e4c7bdf3974875cfb3611f34ef249218d194d58f66f3b51b30c8b90a3f82 SHA512 9c151ce3f914a7cba13be3e3b98e35d49329ac2c04410b653ce40dfb9fe1912c2e51d0322f9e37d5ed47bb28a46203a19ce87ab2fa670229f2b5ccf5b9bb6fc1
23 +DIST openfortivpn-1.8.1.tar.gz 70521 BLAKE2B 5451ab9937e0f6ba1c2601f9ad8a44d5b9954b9798f4a4aa81675d561f5aa95890946a5623af9a57db6e20fe074e65b0578655ca538c20751e7e1363df01ab68 SHA512 0c2f26e744c266125bf35a643bc2510d782c9c7b4e3324cef53cc7e9a350df3c968c4d0d34256a64cf6b7d1cad2ffc95019a39586786238481dda20030e524a9
24
25 diff --git a/net-vpn/openfortivpn/openfortivpn-1.8.1.ebuild b/net-vpn/openfortivpn/openfortivpn-1.8.1.ebuild
26 new file mode 100644
27 index 00000000000..a0280e748da
28 --- /dev/null
29 +++ b/net-vpn/openfortivpn/openfortivpn-1.8.1.ebuild
30 @@ -0,0 +1,38 @@
31 +# Copyright 1999-2019 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="A 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 +}