Ticket #35868: Portfile.diff

File Portfile.diff, 2.3 KB (added by lockhart (Thomas Lockhart), 12 years ago)

Use spaces rather than tabs in Portfile. Also move livecheck.type to outside of post-destroot block.

  • Portfile

    old new  
    44PortSystem 1.0
    55PortGroup python 1.0
    66
    7 name                    py-geoip
    8 version                 1.2.7
    9 categories              python net
    10 license                 LGPL-2.1+
    11 platforms               darwin
    12 maintainers             freebsd.org:miwi
    13 description             Python module for accessing the GeoIP C library
    14 long_description        ${description}
    15 
    16 homepage                http://www.maxmind.com/app/python
    17 master_sites    http://www.maxmind.com/download/geoip/api/python/
    18 distname                GeoIP-Python-${version}
     7name              py-geoip
     8version           1.2.7
     9categories        python net
     10license           LGPL-2.1+
     11platforms         darwin
     12maintainers       freebsd.org:miwi
     13description       Python module for accessing the GeoIP C library
     14long_description  ${description}
     15
     16homepage          http://www.maxmind.com/app/python
     17master_sites      http://www.maxmind.com/download/geoip/api/python/
     18distname          GeoIP-Python-${version}
    1919
    20 checksums               sha1    0af5f5d06bc81b5427019d28ba029e8c31dec9eb \
    21                                 rmd160  4abb50a70ce15e8305e786593ddd2de15efed129
     20checksums         sha1    0af5f5d06bc81b5427019d28ba029e8c31dec9eb \
     21                  rmd160  4abb50a70ce15e8305e786593ddd2de15efed129
    2222
    23 python.versions 24 25 26 27
     23python.versions 24 25 26 27
    2424python.default_version 24
    2525
    2626if {$subport != $name} {
    27         depends_lib-append      port:libgeoip
     27    depends_lib-append port:libgeoip
    2828
    29         post-patch {
    30                 reinplace "s|/usr/local|${prefix}|" ${worksrcpath}/setup.py
    31         }
     29    post-patch {
     30        reinplace "s|/usr/local|${prefix}|" ${worksrcpath}/setup.py
     31    }
    3232
    33         post-destroot   {
     33    post-destroot {
    3434        xinstall -m 644 -W ${worksrcpath} ChangeLog LICENSE README \
    3535            ${destroot}${prefix}/share/doc/${subport}
    3636        xinstall -m 644 -W ${worksrcpath} test.py test_city.py test_org.py \
    3737            ${destroot}${prefix}/share/doc/${subport}/examples
    38         livecheck.type  none
    3938    }
     39    livecheck.type    none
    4040} else {
    41         livecheck.type  regex
    42         livecheck.url   ${master_sites}
    43         livecheck.regex "GeoIP-Python-(\\d+(\\.\\d+)+)${extract.suffix}"
     41    livecheck.type    regex
     42    livecheck.url     ${master_sites}
     43    livecheck.regex   "GeoIP-Python-(\\d+(\\.\\d+)+)${extract.suffix}"
    4444}