diff options
author | miwi <miwi@FreeBSD.org> | 2014-06-28 12:43:59 +0800 |
---|---|---|
committer | miwi <miwi@FreeBSD.org> | 2014-06-28 12:43:59 +0800 |
commit | d9b44772b1825f91ca6dbda62c62195ead3f3c94 (patch) | |
tree | 91200d24c335e90e268190844cdf242339a4a3b3 /www | |
parent | 0a6d10bfe5a6d5671e0a64538efb795f527e1e17 (diff) | |
download | freebsd-ports-gnome-d9b44772b1825f91ca6dbda62c62195ead3f3c94.tar.gz freebsd-ports-gnome-d9b44772b1825f91ca6dbda62c62195ead3f3c94.tar.zst freebsd-ports-gnome-d9b44772b1825f91ca6dbda62c62195ead3f3c94.zip |
- Stage support
PR: 190048
Diffstat (limited to 'www')
-rw-r--r-- | www/flat-frog/Makefile | 19 |
1 files changed, 8 insertions, 11 deletions
diff --git a/www/flat-frog/Makefile b/www/flat-frog/Makefile index b3c334ddeff5..7055bbde5fc4 100644 --- a/www/flat-frog/Makefile +++ b/www/flat-frog/Makefile @@ -13,17 +13,14 @@ NO_BUILD= yes USE_PHP= yes USES= zip -NO_STAGE= yes do-install: - ${MKDIR} ${DATADIR} ${DATADIR}/plugins - ${INSTALL_DATA} ${WRKSRC}/src/class.* ${DATADIR} - ${INSTALL_DATA} ${WRKSRC}/src/plugins/* ${DATADIR}/plugins - ${MKDIR} ${EXAMPLESDIR} ${EXAMPLESDIR}/templates - ${INSTALL_DATA} ${WRKSRC}/demo/test.* ${EXAMPLESDIR} - ${INSTALL_DATA} ${WRKSRC}/demo/templates/* ${EXAMPLESDIR}/templates -.if !defined(NOPORTDOCS) - ${MKDIR} ${DOCSDIR} - ${INSTALL_DATA} ${WRKSRC}/docs/* ${DOCSDIR} -.endif + ${MKDIR} ${STAGEDIR}${DATADIR} ${STAGEDIR}${DATADIR}/plugins + ${INSTALL_DATA} ${WRKSRC}/src/class.* ${STAGEDIR}${DATADIR} + ${INSTALL_DATA} ${WRKSRC}/src/plugins/* ${STAGEDIR}${DATADIR}/plugins + ${MKDIR} ${STAGEDIR}${EXAMPLESDIR} ${STAGEDIR}${EXAMPLESDIR}/templates + ${INSTALL_DATA} ${WRKSRC}/demo/test.* ${STAGEDIR}${EXAMPLESDIR} + ${INSTALL_DATA} ${WRKSRC}/demo/templates/* ${STAGEDIR}${EXAMPLESDIR}/templates + ${MKDIR} ${STAGEDIR}${DOCSDIR} + ${INSTALL_DATA} ${WRKSRC}/docs/* ${STAGEDIR}${DOCSDIR} .include <bsd.port.mk> |