Ticket #52598: Portfile-whitespace.diff
File Portfile-whitespace.diff, 2.4 KB (added by aque (Allan Que), 8 years ago) |
---|
-
Portfile
1 1 # $Id: Portfile 125738 2014-09-25 14:43:03Z mf2k@macports.org $ 2 2 3 PortSystem 3 PortSystem 1.0 4 4 5 name 6 version 7 categories 8 maintainers 9 license 10 platforms 11 12 description 13 14 long_description 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} 15 15 16 homepage 17 master_sites 16 homepage http://nfdump.sourceforge.net/ 17 master_sites sourceforge:project/nfdump/stable/nfdump-${version} 18 18 19 checksums 20 19 checksums rmd160 63d5aec9e7f6d2ee151a88451e52ac86263996e4 \ 20 sha256 32e74310c2ca1a622dcca5dd63d0bed40e13d851ba62fff249887682ed77e485 21 21 22 depends_lib 22 depends_lib port:rrdtool 23 23 24 24 configure.cflags-append -std=gnu89 25 configure.args 26 27 25 configure.args --enable-sflow \ 26 --enable-nfprofile \ 27 --with-rrdpath=${prefix} 28 28 29 29 post-destroot { 30 31 32 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} 33 33 } 34 34 35 35 variant flowtools description {Enable support for flow-tools} { 36 37 38 36 depends_lib-append port:flow-tools 37 configure.args-append --enable-ftconv \ 38 --with-ftpath=${prefix} 39 39 } 40 40 41 41 livecheck.regex /${name}-(\[0-9.\]+)${extract.suffix} 42