Ticket #39191: Portfile

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

Portfile

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