Ticket #52598: Portfile-whitespace.diff

File Portfile-whitespace.diff, 2.4 KB (added by aque (Allan Que), 8 years ago)

Intent/whitespace fixes

  • Portfile

     
    11# $Id: Portfile 125738 2014-09-25 14:43:03Z mf2k@macports.org $
    22
    3 PortSystem      1.0
     3PortSystem          1.0
    44
    5 name                    nfdump
    6 version                 1.6.6
    7 categories              net
    8 maintainers             nomaintainer
    9 license                 BSD
    10 platforms               darwin
    11 
    12 description             Part of the NfSen project, the nfdump tools are command-line programs to \
    13                         collect and process netflow data.
    14 long_description        ${description}
     5name                nfdump
     6version             1.6.6
     7categories          net
     8maintainers         nomaintainer
     9license             BSD
     10platforms           darwin
     11
     12description         Part of the NfSen project, the nfdump tools are command-line programs to \
     13                    collect and process netflow data.
     14long_description    ${description}
    1515
    16 homepage                http://nfdump.sourceforge.net/
    17 master_sites            sourceforge:project/nfdump/stable/nfdump-${version}
     16homepage            http://nfdump.sourceforge.net/
     17master_sites        sourceforge:project/nfdump/stable/nfdump-${version}
    1818
    19 checksums               rmd160  63d5aec9e7f6d2ee151a88451e52ac86263996e4 \
    20                         sha256  32e74310c2ca1a622dcca5dd63d0bed40e13d851ba62fff249887682ed77e485
     19checksums           rmd160  63d5aec9e7f6d2ee151a88451e52ac86263996e4 \
     20                    sha256  32e74310c2ca1a622dcca5dd63d0bed40e13d851ba62fff249887682ed77e485
    2121
    22 depends_lib     port:rrdtool
     22depends_lib         port:rrdtool
    2323
    2424configure.cflags-append -std=gnu89
    25 configure.args  --enable-sflow \
    26                 --enable-nfprofile \
    27                 --with-rrdpath=${prefix}
     25configure.args      --enable-sflow \
     26                    --enable-nfprofile \
     27                    --with-rrdpath=${prefix}
    2828
    2929post-destroot {
    30         xinstall -d ${destroot}${prefix}/share/doc/${name}
    31         xinstall -m 644 -W ${worksrcpath} BSD-license.txt ChangeLog README ToDo \
    32                 ${destroot}${prefix}/share/doc/${name}
     30    xinstall -d ${destroot}${prefix}/share/doc/${name}
     31    xinstall -m 644 -W ${worksrcpath} BSD-license.txt ChangeLog README ToDo \
     32        ${destroot}${prefix}/share/doc/${name}
    3333}
    3434
    3535variant flowtools description {Enable support for flow-tools} {
    36         depends_lib-append      port:flow-tools
    37         configure.args-append   --enable-ftconv \
    38                                 --with-ftpath=${prefix}
     36    depends_lib-append  port:flow-tools
     37    configure.args-append       --enable-ftconv \
     38        --with-ftpath=${prefix}
    3939}
    4040
    4141livecheck.regex         /${name}-(\[0-9.\]+)${extract.suffix}
     42