Ticket #9386: Portfile

File Portfile, 786 bytes (added by pierre@…, 18 years ago)

Portfile Try1

Line 
1# $Id: Portfile,v 1.1 2005/11/22 08:03:12 mww Exp $
2
3PortSystem 1.0
4
5name                corkscrew
6categories          net
7version             2.0
8platforms           darwin
9maintainers             pierre@queinnec.org
10description         Tunnel SSH through HTTP proxies.
11long_description    \
12    Corkscrew is a tool for tunneling SSH through HTTP proxies.
13
14homepage            http://www.agroman.net/corkscrew/
15master_sites            http://www.agroman.net/corkscrew/
16checksums           md5 35df77e7f0e59c0ec4f80313be52c10a
17
18post-destroot {
19    xinstall -d ${destroot}${prefix}/share/${name}
20    xinstall -m 644 -W ${worksrcpath} README TODO ${destroot}${prefix}/share/${name}
21}
22
23platform darwin powerpc {
24        configure.args      --host=ppc
25}
26
27platform darwin i386 {
28        configure.args      --host=i386
29}