diff options
author | obrien <obrien@FreeBSD.org> | 1998-12-15 19:18:32 +0800 |
---|---|---|
committer | obrien <obrien@FreeBSD.org> | 1998-12-15 19:18:32 +0800 |
commit | a5842368ae07db5764724f4da612e4d27f85c582 (patch) | |
tree | e56a32fda3b79480c264f0a02047604df7aa972a /security/zenmap/Makefile | |
parent | b33269da44a85aedb9f6fe38e314c90954ec2d1a (diff) | |
download | freebsd-ports-gnome-a5842368ae07db5764724f4da612e4d27f85c582.tar.gz freebsd-ports-gnome-a5842368ae07db5764724f4da612e4d27f85c582.tar.zst freebsd-ports-gnome-a5842368ae07db5764724f4da612e4d27f85c582.zip |
Upgrade to 2.00.
Diffstat (limited to 'security/zenmap/Makefile')
-rw-r--r-- | security/zenmap/Makefile | 15 |
1 files changed, 10 insertions, 5 deletions
diff --git a/security/zenmap/Makefile b/security/zenmap/Makefile index 43ccfbf3492a..4c3ab54524bc 100644 --- a/security/zenmap/Makefile +++ b/security/zenmap/Makefile @@ -4,17 +4,23 @@ # Date created: Tue Aug 04, 1998 # Whom: David O'Brien (obrien@NUXI.com) # -# $Id: Makefile,v 1.3 1998/08/18 14:31:31 ache Exp $ +# $Id: Makefile,v 1.4 1998/08/20 22:06:00 obrien Exp $ # -DISTNAME= nmap-1.51 +DISTNAME= nmap-2.00 CATEGORIES= security net -MASTER_SITES= http://www.insecure.org/nmap/ +MASTER_SITES= http://www.insecure.org/nmap/ \ + ftp://relay.nuxi.com/pub/misc/ +EXTRACT_SUFX= .tgz MAINTAINER= obrien@FreeBSD.org GNU_CONFIGURE= yes -CFLAGS+= -DDLT_RAW=12 # for obsoleted <net/bpf.h> +CONFIGURE_ARGS= --libdir=${PREFIX}/share/misc +OSVERSION!= sysctl -n kern.osreldate +.if ${OSVERSION} < 300004 +CFLAGS+= -DDLT_RAW=12 # for obsoleted <net/bpf.h> +.endif MAN1= nmap.1 post-extract: @@ -22,6 +28,5 @@ post-extract: post-install: @strip ${PREFIX}/bin/nmap - @${INSTALL_MAN} ${FILESDIR}/nmap.1 ${PREFIX}/man/man1 .include <bsd.port.mk> |