diff options
Diffstat (limited to 'security/hackbot/Makefile')
-rw-r--r-- | security/hackbot/Makefile | 29 |
1 files changed, 29 insertions, 0 deletions
diff --git a/security/hackbot/Makefile b/security/hackbot/Makefile new file mode 100644 index 00000000000..629cbf151f2 --- /dev/null +++ b/security/hackbot/Makefile @@ -0,0 +1,29 @@ +# $NetBSD: Makefile,v 1.1.1.1 2002/11/26 13:40:17 pooka Exp $ + +DISTNAME= hackbot-2.15 +WRKSRC= ${WRKDIR}/hackbot +CATEGORIES= security net +MASTER_SITES= http://ws.obit.nl/hackbot/ \ + http://www.xs4all.nl/~mvberkum/hackbot/ \ + http://webs.uolsinectis.com.ar/gbarosio/hackbot/ +EXTRACT_SUFX= .tgz + +MAINTAINER= nk@atki.net +HOMEPAGE= http://ws.obit.nl/hackbot/ +COMMENT= Vulnerability scanner written in Perl + +MANCOMPRESSED= YES +USE_PERL5= YES +REPLACE_PERL= hackbot.pl + +do-build: + ${SED} "s,/usr/local/etc,${PREFIX}/share/hackbot,g" ${WRKSRC}/hackbot.pl > ${WRKSRC}/hackbot.pl.done + ${MV} ${WRKSRC}/hackbot.pl.done ${WRKSRC}/hackbot.pl + +do-install: + ${INSTALL_DATA_DIR} ${PREFIX}/share/hackbot + ${INSTALL_SCRIPT} ${WRKSRC}/hackbot.pl ${PREFIX}/bin + ${INSTALL_DATA} ${WRKSRC}/cgi.db ${WRKSRC}/fingerprint.db ${PREFIX}/share/hackbot + ${INSTALL_MAN} ${WRKSRC}/hackbot.1.gz ${PREFIX}/man/man1 + +.include "../../mk/bsd.pkg.mk" |