diff options
author | hubertf <hubertf> | 1999-11-05 02:56:37 +0000 |
---|---|---|
committer | hubertf <hubertf> | 1999-11-05 02:56:37 +0000 |
commit | 7f827aff17888f31f6b1e9eed31960ee8dd9daf0 (patch) | |
tree | 589bbe391faa22a60128dda8a6484f6f3b2ee8c7 /net/kmap/Makefile | |
parent | 58a372f8aec9d3105c10f92ae082307821f92ef8 (diff) | |
download | pkgsrc-7f827aff17888f31f6b1e9eed31960ee8dd9daf0.tar.gz |
Kmap is a gui frontend to the popular portscanning utility nmap. Nmap
is a console application with a wide variety of powerful options, but
the sheer number of these options can make using nmap difficult. Thus,
kmap is targeted towards those that would like to use a powerful
scanner from time to time, without having to constantly check the man
page for help.
Diffstat (limited to 'net/kmap/Makefile')
-rw-r--r-- | net/kmap/Makefile | 26 |
1 files changed, 26 insertions, 0 deletions
diff --git a/net/kmap/Makefile b/net/kmap/Makefile new file mode 100644 index 00000000000..f2c01d05d6d --- /dev/null +++ b/net/kmap/Makefile @@ -0,0 +1,26 @@ +# $NetBSD: Makefile,v 1.1.1.1 1999/11/05 02:56:37 hubertf Exp $ +# + +DISTNAME= kmap-0.5.6 +CATEGORIES= kde net security +MASTER_SITES= http://www.islc.net/~icszepp/kmap/ + +MAINTAINER= hubertf@netbsd.org +HOMEPAGE= http://www.islc.net/~icszepp/kmap/ + +DEPENDS+= kdebase-1.1.2:../../x11/kdebase +DEPENDS+= nmap-2.12:../../net/nmap + +USE_X11BASE= yes # To get this near KDE +GNU_CONFIGURE= yes +CONFIGURE_ARGS+=--with-qt-includes=${X11BASE}/include/qt \ + --with-qt-libraries=${X11BASE}/lib + +post-patch: + cd ${WRKSRC}/kmap ; \ + [ -f kmap.cpp.BAK ] || ${MV} kmap.cpp kmap.cpp.BAK ; \ + ${SED} \ + -e 's|@LOCALBASE@|${LOCALBASE}|' \ + <kmap.cpp.BAK >kmap.cpp + +.include "../../mk/bsd.pkg.mk" |