diff options
author | vanilla <vanilla@FreeBSD.org> | 2014-07-09 18:07:28 +0800 |
---|---|---|
committer | vanilla <vanilla@FreeBSD.org> | 2014-07-09 18:07:28 +0800 |
commit | b2602b9915c0988af72d595dccedc40a42f382a5 (patch) | |
tree | 1edddd4327f78b164ba9fc07e7678fb2a203e5c8 | |
parent | b34678374a455698e88a3f38685ce2838300d2fa (diff) | |
download | freebsd-ports-gnome-b2602b9915c0988af72d595dccedc40a42f382a5.tar.gz freebsd-ports-gnome-b2602b9915c0988af72d595dccedc40a42f382a5.tar.zst freebsd-ports-gnome-b2602b9915c0988af72d595dccedc40a42f382a5.zip |
1: Stagify.
2: use options helper.
-rw-r--r-- | games/galaxymage/Makefile | 29 |
1 files changed, 12 insertions, 17 deletions
diff --git a/games/galaxymage/Makefile b/games/galaxymage/Makefile index cb22a0cc6547..6e2a35d0833b 100644 --- a/games/galaxymage/Makefile +++ b/games/galaxymage/Makefile @@ -17,38 +17,33 @@ RUN_DEPENDS= ${PYTHON_SITELIBDIR}/Numeric/_numpy.so:${PORTSDIR}/math/py-numeric USE_PYTHON= yes USES= gettext twisted NO_BUILD= yes - -NO_STAGE= yes - OPTIONS_DEFINE= DOCS -.include <bsd.port.options.mk> - post-configure: @${REINPLACE_CMD} -e 's@%%DATADIR%%@${DATADIR}@g' ${WRKSRC}/GalaxyMage.py ${WRKSRC}/src/Resources.py @${REINPLACE_CMD} -e 's@%%LOCALBASE%%@${LOCALBASE}@g' ${WRKSRC}/src/Translate.py do-install: - @${INSTALL_SCRIPT} ${WRKSRC}/GalaxyMage.py ${PREFIX}/bin/GalaxyMage - @${MKDIR} ${DATADIR} + @${INSTALL_SCRIPT} ${WRKSRC}/GalaxyMage.py ${STAGEDIR}${PREFIX}/bin/GalaxyMage + @${MKDIR} ${STAGEDIR}${DATADIR} .for DIRE in src data @cd ${WRKSRC}/${DIRE} && \ - ${FIND} * -type d -exec ${MKDIR} "${DATADIR}/{}" \; && \ + ${FIND} * -type d -exec ${MKDIR} "${STAGEDIR}${DATADIR}/{}" \; && \ ${FIND} -E * -type f -iregex ".*\.(py|pyc|txt|TXT|ogg|wav|png|ttf|conf)" -exec ${INSTALL_DATA} "{}" \ - "${DATADIR}/{}" \; + "${STAGEDIR}${DATADIR}/{}" \; .endfor .for FILE in de en fr nl sp - @${MKDIR} ${PREFIX}/share/locale/${FILE}/LC_MESSAGES && \ + @${MKDIR} ${STAGEDIR}${PREFIX}/share/locale/${FILE}/LC_MESSAGES && \ ${INSTALL_DATA} ${WRKSRC}/locale/${FILE}/LC_MESSAGES/* \ - ${PREFIX}/share/locale/${FILE}/LC_MESSAGES + ${STAGEDIR}${PREFIX}/share/locale/${FILE}/LC_MESSAGES .endfor -.if ${PORT_OPTIONS:MDOCS} - @${MKDIR} ${DOCSDIR} + + @${MKDIR} ${STAGEDIR}${DOCSDIR} @cd ${WRKSRC}/doc && \ - ${FIND} * -type d -exec ${MKDIR} "${DOCSDIR}/{}" \; && \ + ${FIND} * -type d -exec ${MKDIR} "${STAGEDIR}${DOCSDIR}/{}" \; && \ ${FIND} -E * -type f -iregex ".*\.(html|css|txt|png)" -exec ${INSTALL_DATA} "{}" \ - "${DOCSDIR}/{}" \; - @${INSTALL_DATA} ${WRKSRC}/CREDITS.txt ${WRKSRC}/README.txt ${DOCSDIR} -.endif + "${STAGEDIR}${DOCSDIR}/{}" \; + @${INSTALL_DATA} ${WRKSRC}/CREDITS.txt ${WRKSRC}/README.txt ${STAGEDIR}${DOCSDIR} + .include <bsd.port.mk> |