diff options
author | bapt <bapt@FreeBSD.org> | 2013-12-11 06:54:55 +0800 |
---|---|---|
committer | bapt <bapt@FreeBSD.org> | 2013-12-11 06:54:55 +0800 |
commit | fef0238490a1f56b9db9305fd424d44d55b297f3 (patch) | |
tree | 65dd1ac138c34ea5007de89d8fa7c60effeac1b6 /devel/darts | |
parent | b3558055fa1ea0419daebde3e88eaa22f304b0dc (diff) | |
download | freebsd-ports-gnome-fef0238490a1f56b9db9305fd424d44d55b297f3.tar.gz freebsd-ports-gnome-fef0238490a1f56b9db9305fd424d44d55b297f3.tar.zst freebsd-ports-gnome-fef0238490a1f56b9db9305fd424d44d55b297f3.zip |
Support stage
Diffstat (limited to 'devel/darts')
-rw-r--r-- | devel/darts/Makefile | 16 |
1 files changed, 6 insertions, 10 deletions
diff --git a/devel/darts/Makefile b/devel/darts/Makefile index 4362faa6847a..c63309d5fbd1 100644 --- a/devel/darts/Makefile +++ b/devel/darts/Makefile @@ -7,26 +7,22 @@ CATEGORIES= devel MASTER_SITES= http://www.chasen.org/~taku/software/darts/src/ MAINTAINER= ports@FreeBSD.org -COMMENT= A C++ template library that implements Double-Array +COMMENT= C++ template library that implements Double-Array GNU_CONFIGURE= yes +OPTIONS_DEFINE= DOCS EXAMPLES EXAMPLES= darts.cpp mkdarts.cpp DOCS= AUTHORS ChangeLog README doc -NO_STAGE= yes post-install: -.if !defined(NOPORTDOCS) - ${MKDIR} ${DOCSDIR} + ${MKDIR} ${STAGEDIR}${DOCSDIR} .for f in ${DOCS} - ${CP} -R ${WRKSRC}/${f} ${DOCSDIR}/ + ${CP} -R ${WRKSRC}/${f} ${STAGEDIR}${DOCSDIR}/ .endfor -.endif -.if !defined(NOPORTEXAMPLES) - ${MKDIR} ${EXAMPLESDIR} + ${MKDIR} ${STAGEDIR}${EXAMPLESDIR} .for f in ${EXAMPLES} - ${CP} -R ${WRKSRC}/${f} ${EXAMPLESDIR}/ + ${CP} -R ${WRKSRC}/${f} ${STAGEDIR}${EXAMPLESDIR}/ .endfor -.endif .include <bsd.port.mk> |