1 | # -*- coding: utf-8; mode: tcl; tab-width: 4; indent-tabs-mode: nil; c-basic-offset: 4 -*- vim:fenc=utf-8:ft=tcl:et:sw=4:ts=4:sts=4 |
---|
2 | PortSystem 1.0 |
---|
3 | |
---|
4 | name openfortivpn |
---|
5 | version 1.6.0 |
---|
6 | categories net |
---|
7 | platforms darwin |
---|
8 | license GPL-3 |
---|
9 | maintainers @millerdev |
---|
10 | |
---|
11 | description Client for PPP+SSL VPN tunnel services. |
---|
12 | long_description openfortivpn is a client for PPP+SSL VPN tunnel services. \ |
---|
13 | It spawns a pppd process and operates the communication \ |
---|
14 | between the gateway and this process. It is compatible \ |
---|
15 | with Fortinet VPNs. |
---|
16 | |
---|
17 | homepage https://github.com/adrienverge/openfortivpn |
---|
18 | master_sites ${homepage}/archive/ |
---|
19 | distfiles v${version}.tar.gz |
---|
20 | |
---|
21 | depends_build port:autoconf \ |
---|
22 | port:automake \ |
---|
23 | port:pkgconfig |
---|
24 | depends_lib port:openssl |
---|
25 | |
---|
26 | configure.pkg_config ${prefix}/bin/pkg-config |
---|
27 | |
---|
28 | checksums rmd160 b719ccef0f1691e8246c99d07e0ebb639a468aad \ |
---|
29 | sha256 205ab5ac512cbeee3c7a6f693518420ae66d6414c1d27247d002167e1906d6d3 |
---|
30 | |
---|
31 | pre-configure { |
---|
32 | system "cd ${worksrcpath} && ./autogen.sh" |
---|
33 | } |
---|