diff options
author | Martin Wilke <miwi@FreeBSD.org> | 2014-06-05 05:26:33 +0000 |
---|---|---|
committer | Martin Wilke <miwi@FreeBSD.org> | 2014-06-05 05:26:33 +0000 |
commit | c980fb2f119ec0a89e25ce81c2f59788bdac47f2 (patch) | |
tree | d161ec2fb3484acc6efd8a6eabce9f7a2c0be746 /www | |
parent | 9b262218ec4dd5c25c8e680746f10fe92648c059 (diff) | |
download | freebsd-ports-c980fb2f119ec0a89e25ce81c2f59788bdac47f2.zip |
- Stage support
PR: 190319
Diffstat (limited to 'www')
-rw-r--r-- | www/phproxy/Makefile | 15 |
1 files changed, 5 insertions, 10 deletions
diff --git a/www/phproxy/Makefile b/www/phproxy/Makefile index 39df65da35d9..d8bfea1d8811 100644 --- a/www/phproxy/Makefile +++ b/www/phproxy/Makefile @@ -19,20 +19,15 @@ EXTRACT_AFTER_ARGS+= -d ${WRKSRC} DOCFILES= ChangeLog.txt LICENSE.txt README.txt TODO.txt -NO_STAGE= yes do-install: - -.if !defined(NOPORTDOCS) - ${MKDIR} ${DOCSDIR} + ${MKDIR} ${STAGEDIR}${DOCSDIR} .for i in ${DOCFILES} - @${INSTALL_DATA} ${WRKSRC}/${i} ${DOCSDIR}/${i} + @${INSTALL_DATA} ${WRKSRC}/${i} ${STAGEDIR}${DOCSDIR}/${i} .endfor -.endif @${RM} ${WRKSRC}/*.txt - ${MKDIR} ${WWWDIR} - @(cd ${WRKSRC} && ${COPYTREE_SHARE} . ${WWWDIR}/) - @${CHOWN} -R ${WWWOWN}:${WWWGRP} ${WWWDIR} - @${CAT} ${PKGMESSAGE} + ${MKDIR} ${STAGEDIR}${WWWDIR} + @(cd ${WRKSRC} && ${COPYTREE_SHARE} . ${STAGEDIR}${WWWDIR}/) + @${CHOWN} -R ${WWWOWN}:${WWWGRP} ${STAGEDIR}${WWWDIR} .include <bsd.port.mk> |