diff options
author | miwi <miwi@FreeBSD.org> | 2014-03-01 00:19:51 +0800 |
---|---|---|
committer | miwi <miwi@FreeBSD.org> | 2014-03-01 00:19:51 +0800 |
commit | 1ee84e0f77d56ae7152da0f919bfb09335ec9114 (patch) | |
tree | 887968552f98cd03c945d1ea5bb2d7f90e65853e | |
parent | c652162fe703b66115db2af8083a636a845d5814 (diff) | |
download | freebsd-ports-graphics-1ee84e0f77d56ae7152da0f919bfb09335ec9114.tar.gz freebsd-ports-graphics-1ee84e0f77d56ae7152da0f919bfb09335ec9114.tar.zst freebsd-ports-graphics-1ee84e0f77d56ae7152da0f919bfb09335ec9114.zip |
- Stage support
-rw-r--r-- | www/fluxcms/Makefile | 10 |
1 files changed, 3 insertions, 7 deletions
diff --git a/www/fluxcms/Makefile b/www/fluxcms/Makefile index f6dc4b38064..f535c99ee4c 100644 --- a/www/fluxcms/Makefile +++ b/www/fluxcms/Makefile @@ -28,7 +28,6 @@ DEFAULT_PHP_VER= 5 PKGDEINSTALL= ${WRKDIR}/pkg-deinstall -NO_STAGE= yes .include <bsd.port.pre.mk> .if ${PORT_OPTIONS:MTIDY} @@ -39,11 +38,8 @@ post-patch: @${RM} ${WRKSRC}/install/dist/conf/config.xml.orig do-install: - @${MKDIR} ${INSTALLDIR} - @${CP} -R ${WRKSRC}/* ${INSTALLDIR} - @${CHOWN} ${WWWOWN}:${WWWGRP} ${INSTALLDIR} - -post-install: - @${CAT} ${PKGMESSAGE} + @${MKDIR} ${STAGEDIR}${INSTALLDIR} + @${CP} -R ${WRKSRC}/* ${STAGEDIR}${INSTALLDIR} + @${CHOWN} ${WWWOWN}:${WWWGRP} ${STAGEDIR}${INSTALLDIR} .include <bsd.port.post.mk> |