blob: 34fc89dcb47d600f7a43f53e76c90aa4965b5b94 (
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
33
34
35
36
37
38
39
40
|
# New ports collection makefile for: fuzzdb
# Date created: 2010-04-14
# Whom: Niels Heinen
#
# $FreeBSD$
#
PORTNAME= fuzzdb
PORTVERSION= 1.05
CATEGORIES= security www
MASTER_SITES= ${MASTER_SITE_GOOGLE_CODE}
EXTRACT_SUFX= .tgz
MAINTAINER= niels@FreeBSD.org
COMMENT= A comprehensive set of fuzzing patterns
NO_BUILD= yes
WRKSRC= ${WRKDIR}/${PORTNAME}
EXTRACT_AFTER_ARGS= | ${TAR} -xf - --exclude .svn
PORTDOCS= _copyright.txt _readme.txt
PORTDIRS= attack-payloads wordlists-misc discovery \
web-backdoors wordlists-user-passwd
.include <bsd.port.pre.mk>
post-extract:
@${RM} ${WRKSRC}/wordlists-user-passwd/~
do-install:
.for dir in ${PORTDIRS}
( cd ${WRKSRC}/${dir} && ${COPYTREE_SHARE} . ${DATADIR}/${dir} )
.endfor
.if !defined(NOPORTDOCS)
${MKDIR} ${DOCSDIR}
. for doc in ${PORTDOCS}
${INSTALL_DATA} ${WRKSRC}/${doc} ${DOCSDIR}
. endfor
.endif
.include <bsd.port.post.mk>
|