diff options
author | Martin Wilke <miwi@FreeBSD.org> | 2014-02-06 15:18:38 +0000 |
---|---|---|
committer | Martin Wilke <miwi@FreeBSD.org> | 2014-02-06 15:18:38 +0000 |
commit | 0cddd6ed35cb5b7f17864265cda4b72134f9a489 (patch) | |
tree | f99db9aabf5b3c54771323f84ac1a882587e004f | |
parent | bc37d148a15d4acd1003f504cdf52cc767e92a2b (diff) | |
download | freebsd-ports-0cddd6ed35cb5b7f17864265cda4b72134f9a489.zip |
- Stage support
-rw-r--r-- | devel/tnt/Makefile | 13 |
1 files changed, 4 insertions, 9 deletions
diff --git a/devel/tnt/Makefile b/devel/tnt/Makefile index 093432f9ddb7..697372e40c4c 100644 --- a/devel/tnt/Makefile +++ b/devel/tnt/Makefile @@ -20,18 +20,13 @@ BUILD_DEPENDS= unzip:${PORTSDIR}/archivers/unzip USE_ZIP= yes NO_BUILD= yes -.ifndef NOPORTDOCS PORTDOCS= * -.endif -NO_STAGE= yes do-install: - ${MKDIR} ${PREFIX}/include/tnt - ${INSTALL_DATA} ${WRKDIR}/*.h ${PREFIX}/include/tnt -.ifndef NOPORTDOCS - ${MKDIR} ${DOCSDIR} + ${MKDIR} ${STAGEDIR}${PREFIX}/include/tnt + ${INSTALL_DATA} ${WRKDIR}/*.h ${STAGEDIR}${PREFIX}/include/tnt + ${MKDIR} ${STAGEDIR}${DOCSDIR} ${EXTRACT_CMD} ${DISTDIR}/${DIST_SUBDIR}/tnt120doc \ - -d ${DOCSDIR} -.endif + -d ${STAGEDIR}${DOCSDIR} .include <bsd.port.mk> |