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: Sat, 26 May 2018 22:41:54
Message-Id: 1527374507.31becc0e7149c4cb5da347ed64698482c669a46a.johu@gentoo
1 commit: 31becc0e7149c4cb5da347ed64698482c669a46a
2 Author: Johannes Huber <johu <AT> gentoo <DOT> org>
3 AuthorDate: Sat May 26 22:41:26 2018 +0000
4 Commit: Johannes Huber <johu <AT> gentoo <DOT> org>
5 CommitDate: Sat May 26 22:41:47 2018 +0000
6 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=31becc0e
7
8 net-vpn/openfortivpn: Version bump 1.7.0
9
10 Package-Manager: Portage-2.3.40, Repoman-2.3.9
11
12 net-vpn/openfortivpn/Manifest | 1 +
13 net-vpn/openfortivpn/openfortivpn-1.7.0.ebuild | 38 ++++++++++++++++++++++++++
14 2 files changed, 39 insertions(+)
15
16 diff --git a/net-vpn/openfortivpn/Manifest b/net-vpn/openfortivpn/Manifest
17 index f5b9246e362..5dec0ccaf0d 100644
18 --- a/net-vpn/openfortivpn/Manifest
19 +++ b/net-vpn/openfortivpn/Manifest
20 @@ -1 +1,2 @@
21 DIST openfortivpn-1.6.0.tar.gz 55606 BLAKE2B 649ca2a8112313fc7b63d89867efe33c4cf8e75cb4c2f7f19839e1f569ac04e3ace841b17ac0e7aa9b51a7e6d9b1f7910925761d5052cac6ef5aec1e257b93bc SHA512 547dca62022f56271717191a10a645b8a1c554568536f0695ef73d8c2883926e957dc070570648ed672786374a01b110de34b4ea19c4ae8cb2e3657c27716c69
22 +DIST openfortivpn-1.7.0.tar.gz 60073 BLAKE2B 422e21daa4ee340009f9e1d660f12b4cc392e2c9694dc24cd2912c89996959907c2ea08fa3bfd11ea82c3984575f1cd1f59d671a7b4188e50ba1a9bbf77f9977 SHA512 60bf57a78e228f3f2f497f5b537abe25eb98a6fb8c41b521acf2e2182ac2c0ca12202a8c4e8d87cd230b0e35d31f4ae97f7137247b53e0c574bec195de0f4275
23
24 diff --git a/net-vpn/openfortivpn/openfortivpn-1.7.0.ebuild b/net-vpn/openfortivpn/openfortivpn-1.7.0.ebuild
25 new file mode 100644
26 index 00000000000..bfc317510e6
27 --- /dev/null
28 +++ b/net-vpn/openfortivpn/openfortivpn-1.7.0.ebuild
29 @@ -0,0 +1,38 @@
30 +# Copyright 1999-2018 Gentoo Foundation
31 +# Distributed under the terms of the GNU General Public License v2
32 +
33 +EAPI=6
34 +
35 +inherit autotools linux-info
36 +
37 +DESCRIPTION="A Fortinet compatible VPN client"
38 +HOMEPAGE="https://github.com/adrienverge/openfortivpn"
39 +SRC_URI="https://github.com/adrienverge/openfortivpn/archive/v${PV}.tar.gz -> ${P}.tar.gz"
40 +
41 +LICENSE="GPL-3-with-openssl-exception openssl"
42 +SLOT="0"
43 +KEYWORDS="~amd64"
44 +IUSE="libressl"
45 +
46 +DEPEND="
47 + net-dialup/ppp
48 + !libressl? ( dev-libs/openssl:0= )
49 + libressl? ( dev-libs/libressl:0= )
50 +"
51 +RDEPEND="${DEPEND}"
52 +
53 +CONFIG_CHECK="~PPP ~PPP_ASYNC"
54 +
55 +src_prepare() {
56 + default
57 +
58 + sed -i 's/-Werror//g' Makefile.am || die "Failed to remove -Werror from Makefile.am"
59 +
60 + eautoreconf
61 +}
62 +
63 +src_install() {
64 + default
65 +
66 + keepdir /etc/openfortivpn
67 +}