diff options
author | Vanilla I. Shu <vanilla@FreeBSD.org> | 2014-08-25 08:18:18 +0000 |
---|---|---|
committer | Vanilla I. Shu <vanilla@FreeBSD.org> | 2014-08-25 08:18:18 +0000 |
commit | dbd3a2d4b91bf94831e02241c41dcb226991764b (patch) | |
tree | 9a5f460c4f4097b0fa48c5b912d16e6bb376b50d /japanese | |
parent | Stagify. (diff) |
Stagify.
Notes
Notes:
svn path=/head/; revision=366043
Diffstat (limited to 'japanese')
-rw-r--r-- | japanese/guesswork-classic/Makefile | 21 |
1 files changed, 8 insertions, 13 deletions
diff --git a/japanese/guesswork-classic/Makefile b/japanese/guesswork-classic/Makefile index f7ed78aa7043..4df5df12809f 100644 --- a/japanese/guesswork-classic/Makefile +++ b/japanese/guesswork-classic/Makefile @@ -19,29 +19,24 @@ WANT_PHP_WEB= yes SUB_FILES= pkg-message PORTDOCS= ChangeLog README LICENSE +OPTIONS_DEFINE= DOCS -NO_STAGE= yes post-extract: @${FIND} ${WRKSRC} -name '.cvsignore' -delete do-install: - ${MKDIR} ${DATADIR} + ${MKDIR} ${STAGEDIR}${DATADIR} .for DIR in lib test - ${CP} -Rp ${WRKSRC}/${DIR} ${DATADIR} - ${FIND} ${DATADIR} -type f | ${XARGS} ${CHMOD} ${SHAREMODE} + ${CP} -Rp ${WRKSRC}/${DIR} ${STAGEDIR}${DATADIR} + ${FIND} ${STAGEDIR}${DATADIR} -type f | ${XARGS} ${CHMOD} ${SHAREMODE} .endfor - ${MKDIR} ${EXAMPLESDIR} + ${MKDIR} ${STAGEDIR}${EXAMPLESDIR} .for DIR in examples public_html smarty - ${CP} -Rp ${WRKSRC}/${DIR} ${EXAMPLESDIR} + ${CP} -Rp ${WRKSRC}/${DIR} ${STAGEDIR}${EXAMPLESDIR} .endfor -.if !defined(NOPORTDOCS) - ${MKDIR} ${DOCSDIR} + ${MKDIR} ${STAGEDIR}${DOCSDIR} .for f in ${PORTDOCS} - ${INSTALL_DATA} ${WRKSRC}/$f ${DOCSDIR} + ${INSTALL_DATA} ${WRKSRC}/$f ${STAGEDIR}${DOCSDIR} .endfor -.endif - -post-install: - @${CAT} ${PKGMESSAGE} .include <bsd.port.mk> |