mirror of
https://git.FreeBSD.org/ports.git
synced 2024-12-14 03:10:47 +00:00
c3688d2d20
- Add NO_ARCH - Switch to options helpers
38 lines
815 B
Makefile
38 lines
815 B
Makefile
# Created by: Niels Heinen
|
|
# $FreeBSD$
|
|
|
|
PORTNAME= fuzzdb
|
|
PORTVERSION= 1.09
|
|
CATEGORIES= security www
|
|
MASTER_SITES= GOOGLE_CODE
|
|
|
|
MAINTAINER= ports@FreeBSD.org
|
|
COMMENT= Comprehensive set of fuzzing patterns
|
|
|
|
LICENSE= BSD3CLAUSE APACHE20
|
|
LICENSE_COMB= multi
|
|
LICENSE_FILE= ${WRKSRC}/_copyright.txt
|
|
|
|
USES= tar:tgz
|
|
NO_BUILD= yes
|
|
NO_ARCH= yes
|
|
EXTRACT_AFTER_ARGS= --exclude .svn
|
|
PORTDOCS= _copyright.txt _readme.txt
|
|
PORTDIRS= attack-payloads wordlists-misc Discovery \
|
|
web-backdoors wordlists-user-passwd regex
|
|
|
|
OPTIONS_DEFINE= DOCS
|
|
|
|
do-install:
|
|
.for dir in ${PORTDIRS}
|
|
( cd ${WRKSRC}/${dir} && ${COPYTREE_SHARE} . ${STAGEDIR}${DATADIR}/${dir} )
|
|
.endfor
|
|
|
|
do-install-DOCS-on:
|
|
@${MKDIR} ${STAGEDIR}${DOCSDIR}
|
|
.for doc in ${PORTDOCS}
|
|
${INSTALL_DATA} ${WRKSRC}/${doc} ${STAGEDIR}${DOCSDIR}
|
|
.endfor
|
|
|
|
.include <bsd.port.mk>
|