Ticket #32970: Portfile.diff

File Portfile.diff, 1.3 KB (added by nerdling (Jeremy Lavergne), 12 years ago)

non-whitespace diff from: svn diff -x -w Portfile

  • Portfile

     
    44
    55name                iodine
    66version             0.6.0-rc1
    7 categories          net
     7categories          networking
    88license             ISC
    9 maintainers         gmail.com:tomhennigan
     9maintainers                         tomhennigan@gmail.com
    1010description         IPv4 over DNS
    1111long_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.
    1212homepage            http://code.kryo.se/iodine/
    13 master_sites        ${homepage}
     13master_sites                http://code.kryo.se/iodine/
    1414checksums           md5     a15bb4faba020d217016fde6e231074a \
    1515                    sha1    4fa9a248b8a84df8a727a5d749e669e58136edca \
    1616                    rmd160  6974beac28e07b0c280d7095f15d13699e9cad65
    1717
     18# Iodine has no configure script so we pass in CC/CXX/CPP at build time.
     19# http://trac.macports.org/wiki/UsingTheRightCompiler
     20build.args-append   CC=${configure.cc} \
     21                    CXX=${configure.cxx} \
     22                    CPP=${configure.cpp}
     23
    1824patchfiles          patch-Makefile.diff
    1925
    2026use_configure       no
     
    2228post-patch {
    2329    reinplace "s|@PREFIX@|${prefix}|" ${worksrcpath}/Makefile
    2430}
     31