diff options
author | edwin <edwin@FreeBSD.org> | 2003-04-01 02:36:38 +0000 |
---|---|---|
committer | edwin <edwin@FreeBSD.org> | 2003-04-01 02:36:38 +0000 |
commit | 78d9320313f709519b73415e20ac83b1e9b86ee9 (patch) | |
tree | d81cf816708f4d26da4492d713ec44609593dca9 /databases/puredb/Makefile | |
parent | 413d1229843c3979c9a97ff3a7709eb7d7abc56e (diff) | |
download | FreeBSD-ports-78d9320313f709519b73415e20ac83b1e9b86ee9.zip FreeBSD-ports-78d9320313f709519b73415e20ac83b1e9b86ee9.tar.gz |
databases/puredb: Set of libraries for creating and reading constant databases
PureDB is a portable and tiny set of libraries for creating
and reading constant databases. It manages data files that
contains text or binary key/data pairs of arbitrary sizes.
Lookups are very fast (normally only one disk access to
match a hash value), overhead is low (a database is 1028
bytes plus only 16 extra bytes per record), multiple
concurrent read access are supported, and databases can be
up to 4 Gb long, and they are portable across architectures.
PR: ports/48901
Submitted by: Sergei Kolobov <sergei@kolobov.com>
Diffstat (limited to 'databases/puredb/Makefile')
-rw-r--r-- | databases/puredb/Makefile | 28 |
1 files changed, 28 insertions, 0 deletions
diff --git a/databases/puredb/Makefile b/databases/puredb/Makefile new file mode 100644 index 0000000..557e320 --- /dev/null +++ b/databases/puredb/Makefile @@ -0,0 +1,28 @@ +# New ports collection makefile for: puredb +# Date created: 01 Nov 2002 +# Whom: Sergei Kolobov <sergei@kolobov.com> +# +# $FreeBSD$ +# + +PORTNAME= puredb +PORTVERSION= 2.1 +CATEGORIES= databases +MASTER_SITES= http://www.pureftpd.org/puredb/ +DISTNAME= pure-db-${PORTVERSION} + +MAINTAINER= sergei@kolobov.com +COMMENT= Set of libraries for creating and reading constant databases + +USE_LIBTOOL= yes +INSTALLS_SHLIB= yes + +DOCS= AUTHORS FORMAT_DESCR NEWS README + +.if !defined(NOPORTDOCS) +post-install: + @${MKDIR} ${DOCSDIR} + cd ${WRKSRC} && ${INSTALL_DATA} ${DOCS} ${DOCSDIR} +.endif + +.include <bsd.port.mk> |