Ticket #25610: Portfile

File Portfile, 1.2 KB (added by mike@…, 14 years ago)

Portfile

Line 
1# $Id$
2
3PortSystem          1.0
4
5name                tinc
6version             1.0.13
7revision        2
8categories          net
9maintainers         goodlook.com.au:mike
10license             GPLv2
11platforms           darwin
12
13description         Virtual Private Network Tool
14
15long_description    tinc is a Virtual Private Network (VPN) daemon that uses \
16                    tunneling and encryption to create a secure private \
17                    network between hosts on the Internet.
18
19homepage            http://www.tinc-vpn.org/
20master_sites        ${homepage}packages/
21
22checksums           md5     ee0b1a3366c6e379cae34be6fa5dcb15 \
23                    sha1    d67578e96cf6b734a3c5bd4b32cf3e628603328a \
24                    rmd160  80c543dd4faad2355e33c7daa86c0f639447f044
25
26depends_lib         port:tuntaposx \
27                    port:zlib \
28                    port:openssl \
29                    port:lzo2
30
31post-destroot {
32    set docdir ${destroot}${prefix}/share/doc/${name}
33    xinstall -d ${docdir}
34    xinstall -m 644 -W ${worksrcpath} \
35        AUTHORS \
36        COPYING \
37        COPYING.README \
38        ChangeLog \
39        NEWS \
40        README \
41        THANKS \
42        ${docdir}
43}