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 | # $Id$ |
---|
3 | |
---|
4 | PortSystem 1.0 |
---|
5 | PortGroup cmake 1.0 |
---|
6 | |
---|
7 | name zmap |
---|
8 | version v1.2.0 |
---|
9 | fetch.type git |
---|
10 | git.url https://github.com/zmap/zmap.git |
---|
11 | git.branch v1.2.0 |
---|
12 | |
---|
13 | categories net |
---|
14 | platforms darwin |
---|
15 | license apache-2 |
---|
16 | maintainers gmail.com:pat.pannuto \ |
---|
17 | openmaintainer |
---|
18 | description Internet scanner |
---|
19 | long_description ZMap is a fast network scanner designed for Internet-wide network surveys. |
---|
20 | homepage https://zmap.io/ |
---|
21 | master_sites https://github.com/zmap/zmap |
---|
22 | |
---|
23 | depends_build port:cmake \ |
---|
24 | port:byacc \ |
---|
25 | port:flex \ |
---|
26 | port:gengetopt |
---|
27 | |
---|
28 | depends_lib port:gmp \ |
---|
29 | port:libdnet \ |
---|
30 | |
---|
31 | variant redis description {Add Redis support} { |
---|
32 | depends_lib-append port:redis |
---|
33 | depends_lib-append port:hiredis |
---|
34 | configure.args-append -DWITH_REDIS=ON |
---|
35 | } |
---|
36 | |
---|
37 | variant json description {Add JSON support} { |
---|
38 | depends_lib-append port:json-c |
---|
39 | configure.args-append -DWITH_JSON=ON |
---|
40 | } |
---|