diff options
author | Martin Wilke <miwi@FreeBSD.org> | 2014-02-06 10:47:47 +0000 |
---|---|---|
committer | Martin Wilke <miwi@FreeBSD.org> | 2014-02-06 10:47:47 +0000 |
commit | 49776a50b478684975bb920b97fac5e5dbbc9d2c (patch) | |
tree | 95570b22e3e87bddfb2a86d8aaddde6ea771a475 | |
parent | f1c973ce6f3ef942b6d23e6aeff333eb61ad2d0a (diff) |
Notes
-rw-r--r-- | finance/weberp/Makefile | 13 |
1 files changed, 4 insertions, 9 deletions
diff --git a/finance/weberp/Makefile b/finance/weberp/Makefile index 5da57eb2c9a1..72c951b09736 100644 --- a/finance/weberp/Makefile +++ b/finance/weberp/Makefile @@ -20,13 +20,10 @@ WRKSRC= ${WRKDIR}/webERP${PORTVERSION} NO_BUILD= yes SUB_FILES= pkg-message -NO_STAGE= yes -.include <bsd.port.pre.mk> - do-install: - @cd ${WRKSRC} && ${COPYTREE_SHARE} . ${WWWDIR} - @${CHOWN} -R ${WWWOWN}:${WWWGRP} ${WWWDIR} - @${CHMOD} -R 755 ${WWWDIR} + @cd ${WRKSRC} && ${COPYTREE_SHARE} . ${STAGEDIR}${WWWDIR} + @${CHOWN} -R ${WWWOWN}:${WWWGRP} ${STAGEDIR}${WWWDIR} + @${CHMOD} -R 755 ${STAGEDIR}${WWWDIR} post-install: @${ECHO_CMD} '@exec ${CHOWN} -R ${WWWOWN}:${WWWGRP} ${WWWDIR}' \ @@ -34,6 +31,4 @@ post-install: @${ECHO_CMD} '@exec ${CHMOD} 755 -R ${WWWDIR}' \ >> ${TMPPLIST} - ${CAT} ${PKGMESSAGE} - -.include <bsd.port.post.mk> +.include <bsd.port.mk> |