blob: c0e212871575638b33b735d72bc2f6c3e9357c39 (
plain) (
blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
|
# Created by: Niels Heinen
# $FreeBSD$
PORTNAME= fuzzdb
PORTVERSION= 1.09
CATEGORIES= security www
MASTER_SITES= ${MASTER_SITE_GOOGLE_CODE}
EXTRACT_SUFX= .tgz
MAINTAINER= ports@FreeBSD.org
COMMENT= Comprehensive set of fuzzing patterns
NO_BUILD= yes
EXTRACT_AFTER_ARGS= | ${TAR} -xf - --exclude .svn
PORTDOCS= _copyright.txt _readme.txt
PORTDIRS= attack-payloads wordlists-misc Discovery \
web-backdoors wordlists-user-passwd regex
.include <bsd.port.options.mk>
do-install:
.for dir in ${PORTDIRS}
( cd ${WRKSRC}/${dir} && ${COPYTREE_SHARE} . ${DATADIR}/${dir} )
.endfor
.if ${PORT_OPTIONS:MDOCS}
${MKDIR} ${DOCSDIR}
. for doc in ${PORTDOCS}
${INSTALL_DATA} ${WRKSRC}/${doc} ${DOCSDIR}
. endfor
.endif
.include <bsd.port.mk>
|