1acf936ed4
A small bit of the changes since the last update: * tons of OS fingerprint updates * fixed RPC scanning bug * fixed OS fingerprinting bug * don't print uptime if spoofed (eg OpenBSD 3.0) * added ICMP timestamp & netmask ping types * corrected "grepable output" printing * updated nmap-services port list * corrected XML output * added multi-portlist support (different ports for UDP & TCP) * corrected various memory leaks
36 lines
737 B
Makefile
36 lines
737 B
Makefile
# $OpenBSD: Makefile,v 1.40 2002/04/28 20:36:02 bmc Exp $
|
|
|
|
COMMENT= "port scanning large networks"
|
|
|
|
DISTNAME= nmap-2.54BETA33
|
|
PKGNAME= nmap-2.54b33
|
|
CATEGORIES= net security
|
|
NEED_VERSION= 1.525
|
|
MASTER_SITES= ${HOMEPAGE}dist/
|
|
EXTRACT_SUFX= .tgz
|
|
|
|
HOMEPAGE= http://www.insecure.org/nmap/
|
|
|
|
MAINTAINER= Brian Caswell <bmc@openbsd.org>
|
|
|
|
PERMIT_PACKAGE_CDROM= Yes
|
|
PERMIT_PACKAGE_FTP= Yes
|
|
PERMIT_DISTFILES_CDROM= Yes
|
|
PERMIT_DISTFILES_FTP= Yes
|
|
|
|
CONFIGURE_STYLE= gnu dest
|
|
MODGNU_CONFIG_GUESS_DIRS= ${WRKSRC} ${WRKSRC}/nbase ${WRKSRC}/libpcap-possiblymodified
|
|
|
|
FLAVORS= no_x11
|
|
FLAVOR?=
|
|
|
|
.if ${FLAVOR:L:Mno_x11}
|
|
ALL_TARGET= nmap
|
|
.else
|
|
LIB_DEPENDS= gtk.1.2,gdk.1.2::x11/gtk+
|
|
USE_X11= Yes
|
|
ALL_TARGET= nmap nmapfe/nmapfe
|
|
.endif
|
|
|
|
.include <bsd.port.mk>
|