Date: Tue, 25 Feb 2014 11:19:57 +0000 (UTC) From: Emanuel Haupt <ehaupt@FreeBSD.org> To: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org Subject: svn commit: r345957 - head/security/fuzzdb Message-ID: <201402251119.s1PBJvHU067083@svn.freebsd.org>
next in thread | raw e-mail | index | archive | help
Author: ehaupt Date: Tue Feb 25 11:19:57 2014 New Revision: 345957 URL: http://svnweb.freebsd.org/changeset/ports/345957 QAT: https://qat.redports.org/buildarchive/r345957/ Log: Support staging Modified: head/security/fuzzdb/Makefile Modified: head/security/fuzzdb/Makefile ============================================================================== --- head/security/fuzzdb/Makefile Tue Feb 25 10:38:57 2014 (r345956) +++ head/security/fuzzdb/Makefile Tue Feb 25 11:19:57 2014 (r345957) @@ -16,21 +16,15 @@ PORTDOCS= _copyright.txt _readme.txt PORTDIRS= attack-payloads wordlists-misc Discovery \ web-backdoors wordlists-user-passwd regex -NO_STAGE= yes - OPTIONS_DEFINE= DOCS -.include <bsd.port.options.mk> - do-install: .for dir in ${PORTDIRS} - ( cd ${WRKSRC}/${dir} && ${COPYTREE_SHARE} . ${DATADIR}/${dir} ) + ( cd ${WRKSRC}/${dir} && ${COPYTREE_SHARE} . ${STAGEDIR}${DATADIR}/${dir} ) +.endfor + ${MKDIR} ${STAGEDIR}${DOCSDIR} +.for doc in ${PORTDOCS} + ${INSTALL_DATA} ${WRKSRC}/${doc} ${STAGEDIR}${DOCSDIR} .endfor -.if ${PORT_OPTIONS:MDOCS} - ${MKDIR} ${DOCSDIR} -. for doc in ${PORTDOCS} - ${INSTALL_DATA} ${WRKSRC}/${doc} ${DOCSDIR} -. endfor -.endif .include <bsd.port.mk>
Want to link to this message? Use this URL: <https://mail-archive.FreeBSD.org/cgi/mid.cgi?201402251119.s1PBJvHU067083>