Ticket #37343: nmap.7.10_1.patch
File nmap.7.10_1.patch, 1.6 KB (added by wyuenho (Jimmy Yuen Ho Wong), 9 years ago) |
---|
-
dports/net/nmap/Portfile
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 1 3 # $Id$ 2 4 3 5 PortSystem 1.0 … … 4 6 5 7 name nmap 6 8 version 7.10 9 revision 1 7 10 categories net 8 11 maintainers darkart.com:opendarwin.org geeklair.net:dluke 9 12 description Port scanning utility for large networks … … 35 38 path:lib/libssl.dylib:openssl \ 36 39 port:pcre \ 37 40 port:zlib \ 38 port:apr \ 39 port:subversion 41 port:apr 40 42 41 43 use_bzip2 yes 42 44 43 45 configure.args --without-zenmap --without-ndiff \ 44 --mandir=\\\${prefix}/share/man \ 45 --infodir=\\\${prefix}/share/info \ 46 --with-openssl=${prefix} \ 47 --with-libpcre=${prefix} \ 48 --with-liblua=included 46 --mandir=\\\${prefix}/share/man \ 47 --infodir=\\\${prefix}/share/info \ 48 --with-openssl=${prefix} \ 49 --with-libpcre=${prefix} \ 50 --with-liblua=included \ 51 --without-subversion 49 52 50 53 # nmap's configure script in nselib-bin does not respect --with-liblua=included 51 54 # as with many ports, configure fails if nawk is installed, force use of system awk … … 69 72 configure.python ${prefix}/bin/python2.7 70 73 depends_lib-append port:py27-pygtk 71 74 } 75 76 variant subversion description {build with subversion support} { 77 configure.args-delete --without-subversion 78 configure.args-append --with-subversion=${prefix} 79 depends_lib-append port:subversion 80 }