mirror of
https://git.FreeBSD.org/ports.git
synced 2024-11-26 00:55:14 +00:00
33 lines
664 B
Makefile
33 lines
664 B
Makefile
# Created by: Akinori MUSHA aka knu <knu@idaemons.org>
|
|
# $FreeBSD$
|
|
|
|
PORTNAME= darts
|
|
PORTVERSION= 0.32
|
|
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
|
|
|
|
GNU_CONFIGURE= yes
|
|
|
|
EXAMPLES= darts.cpp mkdarts.cpp
|
|
DOCS= AUTHORS ChangeLog README doc
|
|
|
|
NO_STAGE= yes
|
|
post-install:
|
|
.if !defined(NOPORTDOCS)
|
|
${MKDIR} ${DOCSDIR}
|
|
.for f in ${DOCS}
|
|
${CP} -R ${WRKSRC}/${f} ${DOCSDIR}/
|
|
.endfor
|
|
.endif
|
|
.if !defined(NOPORTEXAMPLES)
|
|
${MKDIR} ${EXAMPLESDIR}
|
|
.for f in ${EXAMPLES}
|
|
${CP} -R ${WRKSRC}/${f} ${EXAMPLESDIR}/
|
|
.endfor
|
|
.endif
|
|
|
|
.include <bsd.port.mk>
|