diff options
author | taca <taca@pkgsrc.org> | 2004-05-06 13:22:43 +0000 |
---|---|---|
committer | taca <taca@pkgsrc.org> | 2004-05-06 13:22:43 +0000 |
commit | 4ad2a9e408506ba61f4fecb6f5cc06e537211370 (patch) | |
tree | bc0a67c8d0827909f5a48bed6d7142960ac417c0 /devel/darts/Makefile | |
parent | 928d79be38426a541f0fcfa38a7a1dc4c4f9da95 (diff) | |
download | pkgsrc-4ad2a9e408506ba61f4fecb6f5cc06e537211370.tar.gz |
Importing darts-0.2.
Darts: Double-ARray Trie System
This is a C++ template library that implements Double-Array [Aoe
1989]. Currently only Japanese documentation is provided.
* [Aoe1989] Aoe, J. An Efficient Digital Search Algorithm by Using a
Double-Array Structure. IEEE Transactions on Software
Engineering. Vol. 15, 9 (Sep 1989). pp. 1066-1077.
* [Datrie] Theppitak Karoonboonyanan An Implementation of Double-Array
Triehttp://www.links.nectec.or.th/~thep/datrie/
Diffstat (limited to 'devel/darts/Makefile')
-rw-r--r-- | devel/darts/Makefile | 36 |
1 files changed, 36 insertions, 0 deletions
diff --git a/devel/darts/Makefile b/devel/darts/Makefile new file mode 100644 index 00000000000..d56aed9c883 --- /dev/null +++ b/devel/darts/Makefile @@ -0,0 +1,36 @@ +# $NetBSD: Makefile,v 1.1.1.1 2004/05/06 13:22:43 taca Exp $ +# $FreeBSD: ports/devel/darts/Makefile,v 1.2 2003/11/20 19:28:29 knu Exp $ +# + +DISTNAME= darts-0.2 +CATEGORIES= devel +MASTER_SITES= http://chasen.org/~taku/software/darts/src/ + +MAINTAINER= tech-pkg@NetBSD.org +HOMEPAGE= http://chasen.org/~taku/software/darts/ +COMMENT= C++ template library that implements Double-Array + +GNU_CONFIGURE= yes + +DOCDIR= ${PREFIX}/share/doc/darts +HTMLDOCDIR= ${PREFIX}/share/doc/html/darts +EXAMPLESDIR= ${PREFIX}/share/examples/darts +EXAMPLES= darts.cpp mkdarts.cpp +DOCS= AUTHORS ChangeLog README +HTMLDOCS= darts.css index.html + +post-install: + ${INSTALL_DATA_DIR} ${DOCDIR} +.for f in ${DOCS} + ${INSTALL_DATA} ${WRKSRC}/${f} ${DOCDIR} +.endfor + ${INSTALL_DATA_DIR} ${HTMLDOCDIR} +.for f in ${HTMLDOCS} + ${INSTALL_DATA} ${WRKSRC}/doc/${f} ${HTMLDOCDIR} +.endfor + ${INSTALL_DATA_DIR} ${EXAMPLESDIR} +.for f in ${EXAMPLES} + ${INSTALL_DATA} ${WRKSRC}/${f} ${EXAMPLESDIR} +.endfor + +.include "../../mk/bsd.pkg.mk" |