10a482e4f5
ok alek@
47 lines
1.3 KiB
Makefile
47 lines
1.3 KiB
Makefile
# $OpenBSD: Makefile,v 1.5 2005/10/02 15:41:19 aanriot Exp $
|
|
|
|
COMMENT= "Web and CGI vulnerability scanner with SSL support"
|
|
|
|
DISTNAME= nikto-1.35
|
|
CATEGORIES= security www
|
|
|
|
HOMEPAGE= http://www.cirt.net/code/nikto.shtml
|
|
|
|
MASTER_SITES= http://www.cirt.net/nikto/ \
|
|
http://packetstormsecurity.org/UNIX/cgi-scanners/
|
|
|
|
# GPL
|
|
PERMIT_PACKAGE_CDROM= Yes
|
|
PERMIT_PACKAGE_FTP= Yes
|
|
PERMIT_DISTFILES_CDROM= Yes
|
|
PERMIT_DISTFILES_FTP= Yes
|
|
|
|
RUN_DEPENDS= :p5-Net-SSLeay-*:security/p5-Net_SSLeay
|
|
|
|
NO_BUILD= Yes
|
|
NO_REGRESS= Yes
|
|
PKG_ARCH= *
|
|
|
|
do-install:
|
|
${INSTALL_DATA_DIR} ${PREFIX}/share/nikto
|
|
${INSTALL_DATA_DIR} ${PREFIX}/share/examples/nikto
|
|
${INSTALL_DATA_DIR} ${PREFIX}/share/doc/nikto
|
|
|
|
@perl -pi -e 's,# PLUGINDIR=.+,PLUGINDIR=${LOCALBASE}/share/nikto,' \
|
|
${WRKSRC}/config.txt
|
|
@perl -pi -e 's,config.txt,${SYSCONFDIR}/nikto.conf,' ${WRKSRC}/nikto.pl
|
|
|
|
${INSTALL_SCRIPT} ${WRKSRC}/nikto.pl ${PREFIX}/bin/nikto
|
|
${INSTALL_DATA} ${WRKSRC}/config.txt \
|
|
${PREFIX}/share/examples/nikto/nikto.conf
|
|
|
|
@for i in `ls ${WRKSRC}/plugins/` ; do \
|
|
${INSTALL_DATA} ${WRKSRC}/plugins/$$i ${PREFIX}/share/nikto; \
|
|
done
|
|
|
|
${INSTALL_DATA} ${WRKSRC}/docs/nikto_usage.txt ${PREFIX}/share/doc/nikto
|
|
${INSTALL_DATA} ${WRKSRC}/docs/README_plugins.txt ${PREFIX}/share/doc/nikto
|
|
${INSTALL_MAN} ${WRKSRC}/docs/nikto-1.34.man ${PREFIX}/man/man1/nikto.1
|
|
|
|
.include <bsd.port.mk>
|