freebsd-ports/security/nikto/Makefile
Ion-Mihai Tetcu c781418d6d Update to 2.03
PR:		ports/127566
Submitted by:	Naram Qashat
Committed from:	EuroBSDCon2008 Dev Summit :)
2008-10-16 10:36:31 +00:00

71 lines
2.3 KiB
Makefile

# New ports collection makefile for: nikto
# Date created: 23 September 2002
# Whom: pandzilla
#
# $FreeBSD$
#
# $Tecnik: ports/security/nikto/Makefile,v 1.7 2005/12/13 16:26:20 itetcu Exp $
#
PORTNAME= nikto
PORTVERSION= 2.03
CATEGORIES= security www
MASTER_SITES= http://www.cirt.net/${PORTNAME}/ \
http://www.mirrors.wiretapped.net/security/vulnerability-assessment/${PORTNAME}/ \
http://T32.TecNik93.com/FreeBSD/ports/${PORTNAME}/sources/
MAINTAINER= itetcu@FreeBSD.org
COMMENT= Web and CGI vulnerability scanner with SSL support
USE_BZIP2= yes
USE_PERL5_RUN= yes
NO_BUILD= yes
WRKSRC= ${WRKDIR}/${PORTNAME}
PORTDOCS= CHANGES.txt LICENSE.txt nikto_manual.html
OPTIONS+= SSLEAY "Use NET::SSLeay for ssl scanning" on
OPTIONS+= NMAP "Use security/nmap for port scanning" on
.include <bsd.port.pre.mk>
.ifdef(WITH_SSLEAY)
RUN_DEPENEDS+= p5-Net-SSLeay>0:${PORTSDIR}/security/p5-Net-SSLeay
.endif
.ifdef(WITH_NMAP)
RUN_DEPENEDS+= nmap:${PORTSDIR}/security/nmap
.endif
post-patch:
@${REINPLACE_CMD} -e "s|/usr/local/bin/perl|${PERL}|" ${WRKSRC}/nikto.pl
@${REINPLACE_CMD} -Ee "s,(config.txt),${PREFIX}/etc/nikto.conf," ${WRKSRC}/nikto.pl
@${REINPLACE_CMD} -Ee "s|/usr/bin/nmap|${LOCALBASE}/bin/nmap|g" \
-e "s|# (EXECDIR=)/usr/local/nikto|\1${DATADIR}|g" \
${WRKSRC}/config.txt
@${REINPLACE_CMD} "s/config.txt/nikto.conf/g" ${WRKSRC}/plugins/* ${WRKSRC}/docs/*
@${REINPLACE_CMD} -e 's:\$NIKTO{plugindir}/../docs/CHANGES.txt:\$NIKTO{plugindir}/../../doc/nikto/CHANGES.txt:' \
-e 's:\$NIKTO{plugindir}/../CHANGES.txt:\$NIKTO{plugindir}/../../doc/nikto/CHANGES.txt:' \
${WRKSRC}/plugins/nikto_core.plugin
do-install:
${INSTALL_SCRIPT} ${WRKSRC}/nikto.pl ${PREFIX}/bin/nikto
${INSTALL_DATA} ${WRKSRC}/config.txt ${PREFIX}/etc/nikto.conf.sample
[ -f ${PREFIX}/etc/nikto.conf ] || \
${INSTALL_DATA} ${WRKSRC}/config.txt ${PREFIX}/etc/nikto.conf
@${MKDIR} ${DATADIR}
@${MKDIR} ${DATADIR}/plugins
${INSTALL_DATA} ${WRKSRC}/plugins/LW2.pm ${DATADIR}/plugins
@${RM} ${WRKSRC}/plugins/db_*.bak
${INSTALL_DATA} ${WRKSRC}/plugins/db_* ${DATADIR}/plugins
${INSTALL_DATA} ${WRKSRC}/plugins/nikto_plugin_order.txt ${DATADIR}/plugins
${INSTALL_DATA} ${WRKSRC}/plugins/*.plugin ${DATADIR}/plugins
.if !defined(NOPORTDOCS)
@${MKDIR} ${DOCSDIR}
. for i in ${PORTDOCS}
${INSTALL_DATA} ${WRKSRC}/docs/${i} ${DOCSDIR}
. endfor
.endif
.include <bsd.port.post.mk>