Ticket #37553: Portfile.spacing.diff

File Portfile.spacing.diff, 4.2 KB (added by florian@…, 11 years ago)

Portfile patch to change spacing

  • Portfile

    old new  
    11# -*- coding: utf-8; mode: tcl; tab-width: 4; indent-tabs-mode: nil; c-basic-offset: 4 -*- vim:fenc=utf-8:ft=tcl:et:sw=4:ts=4:sts=4
    22# $Id: Portfile 91552 2012-04-05 01:30:01Z takeshi@macports.org $
    33
    4 PortSystem                  1.0
     4PortSystem          1.0
    55
    6 name                        gmt4
    7 version                     4.5.8
    8 categories                  science
    9 platforms                   darwin
    10 maintainers                 takeshi
    11 license                     LGPL-3
    12 description                 the generic mapping tools
     6name                gmt4
     7version             4.5.8
     8categories          science
     9platforms           darwin
     10maintainers         takeshi
     11license             LGPL-3
     12description         the generic mapping tools
    1313long_description GMT is an open source collection of ~65 tools  \
    1414    for manipulating geographic and Cartesian data sets and     \
    1515    producing Encapsulated PostScript File (EPS) illustrations  \
    16     ranging from simple x-y plots via contour maps to           \
     16    ranging from simple x-y plots via contour maps to   \
    1717    artificially illuminated surfaces and 3-D perspective views.
    18 conflicts                   gmt
    19 homepage                    http://gmt.soest.hawaii.edu/
    20 master_sites                ftp://ftp.soest.hawaii.edu/gmt          \
    21                             ftp://ibis.grdl.noaa.gov/pub/gmt        \
    22                             ftp://ftp.iris.washington.edu/pub/gmt   \
    23                             ftp://ftp.iag.usp.br/pub/gmt            \
    24                             ftp://ftp.geologi.uio.no/pub/gmt        \
    25                             ftp://gd.tuwien.ac.at/pub/gmt           \
    26                             ftp://ftp.scc.u-tokai.ac.jp/pub/gmt     \
    27                             ftp://mirror.geosci.usyd.edu.au/pub/gmt \
    28                             ftp://gmt.mirror.ac.za/pub/gmt
    29 use_bzip2                   yes
    30 set gshhsversion            2.2.0
    31 set gmtsrc                  gmt-${version}.tar.bz2
    32 set gshhs                   gshhs-${gshhsversion}.tar.bz2
    33 distfiles                   ${gmtsrc} ${gshhs}
     18conflicts           gmt
     19homepage            http://gmt.soest.hawaii.edu/
     20master_sites        ftp://ftp.soest.hawaii.edu/gmt          \
     21                    ftp://ibis.grdl.noaa.gov/pub/gmt        \
     22                    ftp://ftp.iris.washington.edu/pub/gmt   \
     23                    ftp://ftp.iag.usp.br/pub/gmt            \
     24                    ftp://ftp.geologi.uio.no/pub/gmt        \
     25                    ftp://gd.tuwien.ac.at/pub/gmt           \
     26                    ftp://ftp.scc.u-tokai.ac.jp/pub/gmt     \
     27                    ftp://mirror.geosci.usyd.edu.au/pub/gmt \
     28                    ftp://gmt.mirror.ac.za/pub/gmt
     29use_bzip2           yes
     30set gshhsversion    2.2.0
     31set gmtsrc          gmt-${version}.tar.bz2
     32set gshhs           gshhs-${gshhsversion}.tar.bz2
     33distfiles           ${gmtsrc} ${gshhs}
    3434checksums           ${gmtsrc} \
    3535                    md5     8a3fa928bcb8a82ebaed68d62ba8f1ba \
    3636                    sha1    823783c1abc9a7e0493c35661e516d4f607fff17 \
     
    4040                    sha1    786d58b9a335d3bacb37f40f21ee3bfbb424cd10 \
    4141                    rmd160  aa744b2fdcdf849cc5c4abce97f1d29f4cdc20a4
    4242
    43 worksrcdir                  GMT${version}
     43worksrcdir          GMT${version}
    4444
    45 depends_lib                 port:netcdf
     45depends_lib         port:netcdf
    4646
    4747post-extract {
    4848    # move GSHHS coastlines to worksrcpath
     
    6161                            --disable-mex
    6262configure.optflags-delete   -O2
    6363
    64 use_parallel_build          no
    65 universal_variant           no
    66 destroot.target             install-all
     64use_parallel_build  no
     65universal_variant   no
     66destroot.target     install-all
    6767configure.ldflags-delete    -L${prefix}/lib
    6868
    6969post-destroot {
     
    8787    configure.args-append   --enable-triangle
    8888}
    8989
    90 livecheck.type              regex
    91 livecheck.url               http://gmt.soest.hawaii.edu/gmt/gmt_home.html
    92 livecheck.regex             {Current version is [^0-9 ]*([0-9]+\.[0-9]+\.[0-9]+)}
     90livecheck.type      regex
     91livecheck.url       http://gmt.soest.hawaii.edu/gmt/gmt_home.html
     92livecheck.regex     {Current version is [^0-9 ]*([0-9]+\.[0-9]+\.[0-9]+)}
    9393