1b1b29c5e6
Note: Python 2.3 is't longer supported and have a lot of security issues. Convert 2.3+ to yes/or 2.4/5+ With hat: portmgr
36 lines
878 B
Makefile
36 lines
878 B
Makefile
# New ports collection makefile for: wapiti
|
|
# Date created: 3 October 2007
|
|
# Whom: Philippe Audeoud <jadawin@tuxaco.net>
|
|
# $FreeBSD$
|
|
|
|
PORTNAME= wapiti
|
|
PORTVERSION= 1.1.6
|
|
CATEGORIES= security
|
|
MASTER_SITES= SF/${PORTNAME}/${PORTNAME}/${PORTNAME}-${PORTVERSION}
|
|
|
|
MAINTAINER= jadawin@FreeBSD.org
|
|
COMMENT= Wapiti is a vulnerability scanner for web applications
|
|
|
|
RUN_DEPENDS= ${PYTHON_SITELIBDIR}/tidy:${PORTSDIR}/www/py-utidy
|
|
|
|
USE_PYTHON= 2.4+
|
|
NO_BUILD= yes
|
|
PORTDOCS= README
|
|
|
|
PLIST_FILES= bin/wapiti.py \
|
|
bin/lswww.py \
|
|
bin/getcookie.py \
|
|
bin/cookie.py \
|
|
bin/BeautifulSoup.py
|
|
|
|
do-install:
|
|
.for i in wapiti.py lswww.py getcookie.py cookie.py BeautifulSoup.py
|
|
${INSTALL_SCRIPT} ${WRKSRC}/${i} ${PREFIX}/bin/
|
|
.endfor
|
|
.if !defined(NOPORTDOCS)
|
|
${MKDIR} ${DOCSDIR}
|
|
${INSTALL_DATA} ${WRKSRC}/README ${DOCSDIR}
|
|
.endif
|
|
|
|
.include <bsd.port.mk>
|