RCS file: /Volumes/src/cvs/od/projects/darwinports/dports/net/ethereal/Portfile,v
retrieving revision 1.21
diff -u -r1.21 Portfile
|
|
|
3 | 3 | PortSystem 1.0 |
4 | 4 | name ethereal |
5 | 5 | version 0.10.2 |
| 6 | revision 1 |
6 | 7 | categories net |
7 | 8 | maintainers opendarwin.org@darkart.com |
8 | 9 | description Graphical network analyzer and capture tool |
… |
… |
|
31 | 32 | |
32 | 33 | configure.args --without-plugins --enable-gtk2 \ |
33 | 34 | --with-net-snmp=no --with-ucd-snmp=no \ |
34 | | --mandir=\\\${prefix}/share/man |
| 35 | --mandir=\\\${prefix}/share/man \ |
| 36 | --infodir=\\\${prefix}/share/info |
35 | 37 | |
36 | 38 | variant no-x11 { |
37 | 39 | configure.args-append --disable-ethereal |
38 | 40 | depends_lib-delete lib:libgtk.2:gtk2 |
39 | 41 | } |
| 42 | variant pcre { |
| 43 | configure.args-append --with-pcre=${prefix} |
| 44 | depends_lib-append lib:libpcre:pcre |
| 45 | } |
| 46 | |
| 47 | variant net-snmp { |
| 48 | configure.args-append --with-net-snmp=${prefix}/bin/net-snmp-config |
| 49 | configure.args-delete --with-net-snmp=no |
| 50 | depends_lib-append lib:XXX:net-snmp |
| 51 | } |
| 52 | |
| 53 | variant adns { |
| 54 | configure.args-append --with-adns=${prefix} |
| 55 | depends_lib-append lib:XXX:adns |
| 56 | } |
| 57 | # |
| 58 | ##EOF |