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