pkgsrc-wip/libdbh2/Makefile
Makoto Fujiwara 138551c16d Import libdbh2-5.0.16 as wip/libdbh2.
Disk based hashes is a method to create multidimensional binary trees on disk.
This library permits the extension of database concept to a plethora of
electronic data, such as graphic information. With the multidimensional binary
tree it is possible to mathematically prove that access time to any
particular record is minimized (using the concept of critical points from
calculus), which provides the means to construct optimized databases for
particular applications.

(From: doc/html/DBH.html)
Disk Based Hashtables (DBH) 64 bit ? Library to create and manage hash
tables residing on disk. Associations are made between keys and values
so that for a given a key the value can be found and loaded into memory
quickly. Being disk based allows for large and persistent hashes. 64 bit
support allows for hashtables with sizes over 4 Gigabytes on 32 bit
systems. Quantified key generation allows for minimum access time on
balanced multidimensional trees.
2015-01-17 02:05:16 +00:00

22 lines
548 B
Makefile

# $NetBSD: Makefile,v 1.1 2015/01/17 02:05:16 makoto Exp $
DISTNAME= libdbh2-5.0.16
CATEGORIES= databases
MASTER_SITES= ${MASTER_SITE_SOURCEFORGE:=dbh/}
MAINTAINER= pkgsrc-users@NetBSD.org
HOMEPAGE= http://dbh.sourceforge.net/
COMMENT= Library to create disk based Hashtables
LICENSE= gnu-gpl-v3
USE_LIBTOOL= yes
GNU_CONFIGURE= yes
USE_TOOLS+= pkg-config
INSTALLATION_DIRS+= share/doc/dbh/html
post-install:
cd ${WRKSRC} && ${INSTALL_DATA} AUTHORS COPYING ChangeLog \
${DESTDIR}${PREFIX}/share/doc/dbh
.include "../../mk/bsd.pkg.mk"