diff options
author | Emanuel Haupt <ehaupt@FreeBSD.org> | 2014-02-21 15:46:15 +0000 |
---|---|---|
committer | Emanuel Haupt <ehaupt@FreeBSD.org> | 2014-02-21 15:46:15 +0000 |
commit | 7656f22c2688365d79debcd4417ad8bdac83a5aa (patch) | |
tree | 45e5f5b23e3142be9a8057abe192419584f35891 | |
parent | 8c1ada2bd4556899ee44fdfbdcdce75e8e7b6370 (diff) |
Support staging
Notes
Notes:
svn path=/head/; revision=345493
-rw-r--r-- | multimedia/tcmplex-panteltje/Makefile | 11 |
1 files changed, 5 insertions, 6 deletions
diff --git a/multimedia/tcmplex-panteltje/Makefile b/multimedia/tcmplex-panteltje/Makefile index 232070f607a4..0ddb6d3fd3f8 100644 --- a/multimedia/tcmplex-panteltje/Makefile +++ b/multimedia/tcmplex-panteltje/Makefile @@ -20,14 +20,13 @@ ALL_TARGET= a.out PORTDOCS= CHANGES COPYRIGHT README PLIST_FILES= bin/${PORTNAME} -NO_STAGE= yes +OPTIONS_DEFINE= DOCS + do-install: - ${INSTALL_PROGRAM} ${WRKSRC}/${PORTNAME} ${PREFIX}/bin -.if !defined(NOPORTDOCS) - @${MKDIR} ${DOCSDIR} + ${INSTALL_PROGRAM} ${WRKSRC}/${PORTNAME} ${STAGEDIR}${PREFIX}/bin + @${MKDIR} ${STAGEDIR}${DOCSDIR} .for file in ${PORTDOCS} - ${INSTALL_DATA} ${WRKSRC}/${file} ${DOCSDIR} + ${INSTALL_DATA} ${WRKSRC}/${file} ${STAGEDIR}${DOCSDIR} .endfor -.endif .include <bsd.port.mk> |