diff options
author | miwi <miwi@FreeBSD.org> | 2014-02-06 20:15:02 +0800 |
---|---|---|
committer | miwi <miwi@FreeBSD.org> | 2014-02-06 20:15:02 +0800 |
commit | f80dfb876c996a864870fa5874a00774d4524608 (patch) | |
tree | 8908d683f0c25e8a250d1129b3c877e64d833c07 /emulators | |
parent | 22a9367f723caaca1df6db3df08ae069316ff8be (diff) | |
download | freebsd-ports-gnome-f80dfb876c996a864870fa5874a00774d4524608.tar.gz freebsd-ports-gnome-f80dfb876c996a864870fa5874a00774d4524608.tar.zst freebsd-ports-gnome-f80dfb876c996a864870fa5874a00774d4524608.zip |
- Stage support
Diffstat (limited to 'emulators')
-rw-r--r-- | emulators/xsystem35/Makefile | 19 |
1 files changed, 7 insertions, 12 deletions
diff --git a/emulators/xsystem35/Makefile b/emulators/xsystem35/Makefile index 900d70a6fe63..5542fc2f80f2 100644 --- a/emulators/xsystem35/Makefile +++ b/emulators/xsystem35/Makefile @@ -73,20 +73,15 @@ pre-configure: (cd ${WRKSRC}/libltdl; ${AUTOCONF}) post-install: - ${INSTALL_SCRIPT} ${WRKSRC}/contrib/instgame ${PREFIX}/bin -.if ${PORT_OPTIONS:MDOCS} - @${MKDIR} ${DOCSDIR} + ${INSTALL_SCRIPT} ${WRKSRC}/contrib/instgame ${STAGEDIR}${PREFIX}/bin + @${MKDIR} ${STAGEDIR}${DOCSDIR} (cd ${WRKSRC}/doc;\ - ${INSTALL_DATA} * ${DOCSDIR}) -.endif -.if ${PORT_OPTIONS:MEXAMPLES} - @${MKDIR} ${EXAMPLESDIR} - ${INSTALL_DATA} ${WRKSRC}/src/xsys35rc.sample ${EXAMPLESDIR} + ${INSTALL_DATA} * ${STAGEDIR}${DOCSDIR}) + @${MKDIR} ${STAGEDIR}${EXAMPLESDIR} + ${INSTALL_DATA} ${WRKSRC}/src/xsys35rc.sample ${STAGEDIR}${EXAMPLESDIR} @(cd ${WRKSRC}/contrib; \ - ${INSTALL_DATA} *.* ${EXAMPLESDIR}) + ${INSTALL_DATA} *.* ${STAGEDIR}${EXAMPLESDIR}) @(cd ${WRKSRC}/patch; \ - ${INSTALL_DATA} pastel.diff ${EXAMPLESDIR}) -.endif - @${CAT} ${PKGMESSAGE} + ${INSTALL_DATA} pastel.diff ${STAGEDIR}${EXAMPLESDIR}) .include <bsd.port.mk> |