diff options
author | Baptiste Daroussin <bapt@FreeBSD.org> | 2014-01-17 14:33:12 +0000 |
---|---|---|
committer | Baptiste Daroussin <bapt@FreeBSD.org> | 2014-01-17 14:33:12 +0000 |
commit | b2c7237931e2d75f435f20a5a377dfae928330c6 (patch) | |
tree | 83f5c9cb2aa4e4c16e4e4066edc2d1f39537f797 /devel/fistgen | |
parent | 1670d9180bfe9d08b30fde91234b3516602ef861 (diff) | |
download | ports-b2c7237931e2d75f435f20a5a377dfae928330c6.tar.gz ports-b2c7237931e2d75f435f20a5a377dfae928330c6.zip |
Notes
Diffstat (limited to 'devel/fistgen')
-rw-r--r-- | devel/fistgen/Makefile | 26 |
1 files changed, 9 insertions, 17 deletions
diff --git a/devel/fistgen/Makefile b/devel/fistgen/Makefile index ab5daba84642..f5bfc3af496b 100644 --- a/devel/fistgen/Makefile +++ b/devel/fistgen/Makefile @@ -14,31 +14,23 @@ MAKE_JOBS_UNSAFE=yes SUB_FILES= pkg-message -MAN8= fistgen.8 PORTDATA= * PORTDOCS= * PORTEXAMPLES= * -PLIST_FILES= sbin/fistgen +PLIST_FILES= sbin/fistgen \ + man/man8/fistgen.8.gz -NO_STAGE= yes post-install: -.if !defined(NOPORTDATA) - @${MKDIR} ${DATADIR} + @${MKDIR} ${STAGEDIR}${DATADIR} .for dir in templates - @(cd ${WRKSRC} && ${COPYTREE_SHARE} ${dir} ${DATADIR}) + @(cd ${WRKSRC} && ${COPYTREE_SHARE} ${dir} ${STAGEDIR}${DATADIR}) .endfor -.endif -.if !defined(NOPORTDOCS) - @${MKDIR} ${DOCSDIR} - ${INSTALL_DATA} ${WRKSRC}/README ${DOCSDIR} - ${INSTALL_DATA} ${WRKSRC}/INSTALL ${DOCSDIR} -.endif -.if !defined(NOPORTEXAMPLES) - @${MKDIR} ${EXAMPLESDIR} + @${MKDIR} ${STAGEDIR}${DOCSDIR} + ${INSTALL_DATA} ${WRKSRC}/README \ + ${WRKSRC}/INSTALL ${STAGEDIR}${DOCSDIR} + @${MKDIR} ${STAGEDIR}${EXAMPLESDIR} .for dir in copyfs cryptfs gzipfs uuencodefs tests - @(cd ${WRKSRC} && ${COPYTREE_SHARE} ${dir} ${EXAMPLESDIR}) + @(cd ${WRKSRC} && ${COPYTREE_SHARE} ${dir} ${STAGEDIR}${EXAMPLESDIR}) .endfor -.endif - @${CAT} ${PKGMESSAGE} .include <bsd.port.mk> |