Ticket #56121: Portfile

File Portfile, 1.2 KB (added by millerdev (Daniel Miller), 6 years ago)
Line 
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
2PortSystem          1.0
3 
4name                openfortivpn
5version             1.6.0
6categories          net
7platforms           darwin
8license             GPL-3
9maintainers         @millerdev
10 
11description         Client for PPP+SSL VPN tunnel services.
12long_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 
17homepage            https://github.com/adrienverge/openfortivpn
18master_sites        ${homepage}/archive/
19distfiles           v${version}.tar.gz
20 
21depends_build       port:autoconf \
22                    port:automake \
23                    port:pkgconfig
24depends_lib         port:openssl
25 
26configure.pkg_config    ${prefix}/bin/pkg-config
27 
28checksums           rmd160  b719ccef0f1691e8246c99d07e0ebb639a468aad \
29                    sha256  205ab5ac512cbeee3c7a6f693518420ae66d6414c1d27247d002167e1906d6d3
30 
31pre-configure {
32    system "cd ${worksrcpath} && ./autogen.sh"
33}