1
0
mirror of https://git.FreeBSD.org/ports.git synced 2025-01-14 07:43:06 +00:00
freebsd-ports/security/nikto/Makefile
Johan van Selst d88c670092 - Enable stage support
- Correct perl path
- Bump PORTREVISION
2014-01-12 15:13:07 +00:00

54 lines
1.7 KiB
Makefile

# Created by: pandzilla
# $FreeBSD$
PORTNAME= nikto
PORTVERSION= 2.1.5
PORTREVISION= 1
PORTEPOCH= 1
CATEGORIES= security www
MASTER_SITES= http://www.cirt.net/${PORTNAME}/ \
http://www.mirrors.wiretapped.net/security/vulnerability-assessment/${PORTNAME}/
MAINTAINER= johans@FreeBSD.org
COMMENT= Web and CGI vulnerability scanner with SSL support
LICENSE= GPLv2
OPTIONS_DEFINE= SSLEAY DOCS
OPTIONS_DEFAULT=SSLEAY
SSLEAY_DESC= Use NET::SSLeay for ssl scanning
SSLEAY_RUN_DEPENDS= p5-Net-SSLeay>0:${PORTSDIR}/security/p5-Net-SSLeay
NO_BUILD= yes
USE_BZIP2= yes
USES= perl5 shebangfix
USE_PERL5= run
SHEBANG_FILES= nikto.pl
post-patch: .SILENT
${REINPLACE_CMD} -e \
's|/usr/local/bin/perl|${PERL}| ; \
s|/etc/nikto.conf|${PREFIX}/etc/nikto.conf|' ${WRKSRC}/nikto.pl
${REINPLACE_CMD} -Ee \
's|# (EXECDIR=).*/nikto|\1${DATADIR}| ; \
s|# (DBDIR=).*/databases|\1${DATADIR}/databases| ; \
s|# (PLUGINDIR=).*/plugins|\1${DATADIR}/plugins| ; \
s|# (TEMPLATEDIR=).*/templates|\1${DATADIR}/templates| ; \
s|# (DOCDIR=).*/docs|\1${DOCSDIR}|' ${WRKSRC}/nikto.conf
do-install: .SILENT
${INSTALL_SCRIPT} ${WRKSRC}/nikto.pl ${STAGEDIR}${PREFIX}/bin/nikto
${INSTALL_MAN} ${WRKSRC}/docs/nikto.1 ${STAGEDIR}${PREFIX}/man/man1/nikto.1
${INSTALL_DATA} ${WRKSRC}/nikto.conf ${STAGEDIR}${PREFIX}/etc/nikto.conf.sample
${MKDIR} ${STAGEDIR}${DATADIR}
${INSTALL_DATA} ${WRKSRC}/replay.pl ${STAGEDIR}${DATADIR}
.for i in databases plugins templates
cd ${WRKSRC}; ${COPYTREE_SHARE} ${i} ${STAGEDIR}${DATADIR}
.endfor
${MKDIR} ${STAGEDIR}${DOCSDIR}
cd ${WRKSRC}/docs; ${INSTALL_DATA} CHANGES.txt LICENSE.txt nikto.dtd \
nikto_manual.html ${STAGEDIR}${DOCSDIR}
.include <bsd.port.mk>