Gentoo Archives: gentoo-commits

From: David Seifert <soap@g.o>
To: gentoo-commits@l.g.o
Subject: [gentoo-commits] repo/gentoo:master commit in: net-misc/openfortivpn/
Date: Tue, 11 Oct 2016 07:49:21
Message-Id: 1476172126.0b9f32f0c6e8816d8b0e9b2ff6d5bb96cbf2190c.soap@gentoo
1 commit: 0b9f32f0c6e8816d8b0e9b2ff6d5bb96cbf2190c
2 Author: Mathy Vanvoorden <mathy <AT> vanvoorden <DOT> be>
3 AuthorDate: Tue Sep 27 21:27:24 2016 +0000
4 Commit: David Seifert <soap <AT> gentoo <DOT> org>
5 CommitDate: Tue Oct 11 07:48:46 2016 +0000
6 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=0b9f32f0
7
8 net-misc/openfortivpn: New package
9
10 openfortivpn is a client for PPP+SSL VPN tunnel services.
11 It spawns a pppd process and operates the communication
12 between the gateway and this process.
13
14 It is compatible with Fortinet VPNs.
15
16 Package-Manager: portage-2.2.28
17 Closes: https://github.com/gentoo/gentoo/pull/2424
18
19 Signed-off-by: David Seifert <soap <AT> gentoo.org>
20
21 net-misc/openfortivpn/Manifest | 1 +
22 net-misc/openfortivpn/metadata.xml | 12 ++++++++
23 net-misc/openfortivpn/openfortivpn-1.2.0.ebuild | 38 +++++++++++++++++++++++++
24 3 files changed, 51 insertions(+)
25
26 diff --git a/net-misc/openfortivpn/Manifest b/net-misc/openfortivpn/Manifest
27 new file mode 100644
28 index 00000000..f8b6384
29 --- /dev/null
30 +++ b/net-misc/openfortivpn/Manifest
31 @@ -0,0 +1 @@
32 +DIST openfortivpn-1.2.0.tar.gz 44609 SHA256 2e0592eb053686f7f54eabf2fd2252446074e6d11072413f98ba5ff07d8c68ab SHA512 836ba43a156c2575222b5d553005662c5a44ad4e21c1a8dc9896d117a1dac2dce64a6815e9b05cb921c2f6166b003c83885e07a8d50a9aca9c5f3cc68f229a67 WHIRLPOOL 8874e0b9d6d103fda8446d75cc9789480b5adfdd3bc734867ae9e6e7518632460f8d609b95df8eedc26d602320c4c3218d223c33c502faed2a7620cda9a23ea0
33
34 diff --git a/net-misc/openfortivpn/metadata.xml b/net-misc/openfortivpn/metadata.xml
35 new file mode 100644
36 index 00000000..b7fa921
37 --- /dev/null
38 +++ b/net-misc/openfortivpn/metadata.xml
39 @@ -0,0 +1,12 @@
40 +<?xml version="1.0" encoding="UTF-8"?>
41 +<!DOCTYPE pkgmetadata SYSTEM "http://www.gentoo.org/dtd/metadata.dtd">
42 +<pkgmetadata>
43 + <maintainer type="person">
44 + <email>mathy@××××××××××.be</email>
45 + <name>Mathy Vanvoorden</name>
46 + </maintainer>
47 + <maintainer type="project">
48 + <email>proxy-maint@g.o</email>
49 + <name>Proxy Maintainers</name>
50 + </maintainer>
51 +</pkgmetadata>
52
53 diff --git a/net-misc/openfortivpn/openfortivpn-1.2.0.ebuild b/net-misc/openfortivpn/openfortivpn-1.2.0.ebuild
54 new file mode 100644
55 index 00000000..ed1be00
56 --- /dev/null
57 +++ b/net-misc/openfortivpn/openfortivpn-1.2.0.ebuild
58 @@ -0,0 +1,38 @@
59 +# Copyright 1999-2016 Gentoo Foundation
60 +# Distributed under the terms of the GNU General Public License v2
61 +# $Id$
62 +
63 +EAPI=6
64 +
65 +inherit autotools linux-info
66 +
67 +DESCRIPTION="A Fortinet compatible VPN client"
68 +HOMEPAGE="https://github.com/adrienverge/openfortivpn"
69 +SRC_URI="https://github.com/adrienverge/openfortivpn/archive/v${PV}.tar.gz -> ${P}.tar.gz"
70 +
71 +LICENSE="GPL-3-with-openssl-exception openssl"
72 +SLOT="0"
73 +KEYWORDS="~amd64"
74 +IUSE="libressl"
75 +
76 +DEPEND="
77 + !libressl? ( dev-libs/openssl:0= )
78 + libressl? ( dev-libs/libressl:0= )
79 +"
80 +RDEPEND="${DEPEND}"
81 +
82 +CONFIG_CHECK="~PPP ~PPP_ASYNC"
83 +
84 +src_prepare() {
85 + default
86 +
87 + sed -i 's/-Werror//g' Makefile.am || die "Failed to remove -Werror from Makefile.am"
88 +
89 + eautoreconf
90 +}
91 +
92 +src_install() {
93 + default
94 +
95 + keepdir /etc/openfortivpn
96 +}