Commits
Jens Svalgaard Kohrt authored and Perry E. Metzger committed f8998008104
1 1 | # -*- 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 |
2 2 | |
3 3 | PortSystem 1.0 |
4 4 | PortGroup github 1.0 |
5 5 | |
6 6 | github.setup phaag nfdump 1.6.15 v |
7 + | revision 1 |
7 8 | categories net |
8 9 | maintainers nomaintainer |
9 10 | license BSD |
10 11 | platforms darwin |
11 12 | |
12 13 | description collect and process netflow data |
13 14 | long_description Part of the NfSen project, the nfdump tools are \ |
14 15 | command-line programs to collect and process netflow data. |
15 16 | |
16 17 | checksums rmd160 5f12b04ba2bc4b4debaa36a25c8e3e1331423727 \ |
17 18 | sha256 81ceb967e878606441c024b8ae5c9e6beaba5213450cc18dc3f02c1b26e5054c |
18 19 | |
19 20 | depends_lib port:rrdtool |
20 21 | |
21 22 | # https://github.com/phaag/nfdump/issues/32 |
22 23 | use_parallel_build no |
23 24 | |
24 25 | configure.cflags-append -std=gnu89 |
25 26 | configure.args --enable-sflow \ |
26 27 | --enable-nfprofile \ |
28 + | --enable-nsel \ |
27 29 | --with-rrdpath=${prefix} |
28 30 | |
29 31 | post-destroot { |
30 32 | xinstall -d ${destroot}${prefix}/share/doc/${name} |
31 33 | xinstall -m 644 -W ${worksrcpath} BSD-license.txt ChangeLog README ToDo \ |
32 34 | ${destroot}${prefix}/share/doc/${name} |
33 35 | } |
34 36 | |
35 37 | variant flowtools description {Enable support for flow-tools} { |
36 38 | depends_lib-append port:flow-tools |