1 | # $Id$ |
---|
2 | |
---|
3 | PortSystem 1.0 |
---|
4 | |
---|
5 | name iodine |
---|
6 | version 0.6.0-rc1 |
---|
7 | categories networking |
---|
8 | license ISC |
---|
9 | maintainers tomhennigan@gmail.com |
---|
10 | description IPv4 over DNS |
---|
11 | long_description iodine lets you tunnel IPv4 data through a DNS server. This can be usable in different situations where internet access is firewalled, but DNS queries are allowed. |
---|
12 | homepage http://code.kryo.se/iodine/ |
---|
13 | master_sites http://code.kryo.se/iodine/ |
---|
14 | checksums md5 a15bb4faba020d217016fde6e231074a \ |
---|
15 | sha1 4fa9a248b8a84df8a727a5d749e669e58136edca \ |
---|
16 | rmd160 6974beac28e07b0c280d7095f15d13699e9cad65 |
---|
17 | |
---|
18 | # Iodine has no configure script so we pass in CC/CXX/CPP at build time. |
---|
19 | # http://trac.macports.org/wiki/UsingTheRightCompiler |
---|
20 | build.args-append CC=${configure.cc} \ |
---|
21 | CXX=${configure.cxx} \ |
---|
22 | CPP=${configure.cpp} |
---|
23 | |
---|
24 | patchfiles patch-Makefile.diff |
---|
25 | |
---|
26 | use_configure no |
---|
27 | |
---|
28 | post-patch { |
---|
29 | reinplace "s|@PREFIX@|${prefix}|" ${worksrcpath}/Makefile |
---|
30 | } |
---|
31 | |
---|