Ticket #1834: Portfile

File Portfile, 1.0 KB (added by julien.touche@…, 20 years ago)

portfile

Line 
1# $Id: Portfile,v 1.1 2003/12/29 21:45:26 jkh Exp $
2
3PortSystem        1.0
4name              openvpn2
5version           2.0_beta1
6distname          openvpn-${version}
7categories        net security
8maintainers       julien.touche@touche.fr.st
9description       easy-to-use, robust, and highly configurable VPN
10long_description  OpenVPN is an easy-to-use, robust, and highly \
11                  configurable VPN (Virtual Private Network) daemon \
12                  which can be used to securely link two or more \
13                  private networks using an encrypted tunnel over \
14                  the internet.
15homepage          http://openvpn.sourceforge.net/
16master_sites      sourceforge:openvpn
17platforms         darwin openbsd
18depends_lib       lib:liblzo:lzo
19checksums         md5 0e47cc39e11fac4c6f4a9396d27aaa87
20configure.args    --mandir=${prefix}/share/man \
21                  --with-lzo-headers=${prefix}/include \
22                  --with-lzo-lib=${prefix}/lib
23
24variant no_lzo {
25        configure.args-append --disable-lzo
26        depends_lib-delete lib:liblzo:lzo
27}