diff options
author | salo <salo@pkgsrc.org> | 2005-12-08 22:00:22 +0000 |
---|---|---|
committer | salo <salo@pkgsrc.org> | 2005-12-08 22:00:22 +0000 |
commit | d78f6759169a5210606cff22ede06d265eb322f9 (patch) | |
tree | 6b80138b4f93392edb37ecb3c939ead95b83d9fc /net/nmapfe | |
parent | 218c87ab37cff1de26dc2a8a9dc14ba2f11ba069 (diff) | |
download | pkgsrc-d78f6759169a5210606cff22ede06d265eb322f9.tar.gz |
Sync with nmap 3.95
Changes:
- Updated NmapFE to build with GTK2 rather than obsolete GTK1. Thanks
to Mike Basinger (dbasinge(a)speakeasy.net) and Meethune Bhowmick
(meethune(a)oss-institute.org) for developing the
patch. I made some changes as well to prevent compilation warnings.
The new NmapFE now seems to work, though I do get "Gtk-CRITICAL"
assertion error messages. If someone has time to look into this, that
would be appreciated.
Diffstat (limited to 'net/nmapfe')
-rw-r--r-- | net/nmapfe/Makefile | 9 |
1 files changed, 5 insertions, 4 deletions
diff --git a/net/nmapfe/Makefile b/net/nmapfe/Makefile index 90aec02f399..8dc88ea2674 100644 --- a/net/nmapfe/Makefile +++ b/net/nmapfe/Makefile @@ -1,9 +1,9 @@ -# $NetBSD: Makefile,v 1.33 2005/09/15 14:12:19 salo Exp $ +# $NetBSD: Makefile,v 1.34 2005/12/08 22:00:22 salo Exp $ # -DISTNAME= nmap-3.93 +DISTNAME= nmap-3.95 PKGNAME= nmapfe-0.9.5 -PKGREVISION= 21 +PKGREVISION= 22 CATEGORIES= net security MASTER_SITES= http://www.insecure.org/nmap/dist/ EXTRACT_SUFX= .tar.bz2 @@ -15,6 +15,7 @@ COMMENT= Graphical front end to the nmap port scanner DEPENDS+= nmap-[23].*:../../net/nmap GNU_CONFIGURE= YES +USE_TOOLS+= pkg-config PATCHDIR= ${.CURDIR}/../../net/nmap/patches DISTINFO_FILE= ${.CURDIR}/../../net/nmap/distinfo @@ -28,6 +29,6 @@ do-install: ${INSTALL_PROGRAM} ${WRKSRC}/nmapfe/nmapfe ${PREFIX}/bin ${INSTALL_MAN} ${WRKSRC}/docs/nmapfe.1 ${PREFIX}/man/man1 -.include "../../x11/gtk/buildlink3.mk" +.include "../../x11/gtk2/buildlink3.mk" .include "../../mk/bsd.pkg.mk" |