mirror of
https://git.freebsd.org/ports.git
synced 2025-07-18 01:39:16 -04:00
Add qdbm 1.7.5, quick Database Manager is a library of
routines for managing a database. The database is a simple data file containing records, each is a pair of a key and a value, organized in hash table or B+ tree.. PR: ports/58186 Submitted by: Kimura Fuyuki <fuyuki@nigredo.org>
This commit is contained in:
parent
a973b45879
commit
39f99a4357
Notes:
svn2git
2021-03-31 03:12:20 +00:00
svn path=/head/; revision=92614
5 changed files with 68 additions and 0 deletions
|
@ -186,6 +186,7 @@
|
||||||
SUBDIR += py-pyPgSQL
|
SUBDIR += py-pyPgSQL
|
||||||
SUBDIR += py-sqlrelay
|
SUBDIR += py-sqlrelay
|
||||||
SUBDIR += pydbdesigner
|
SUBDIR += pydbdesigner
|
||||||
|
SUBDIR += qdbm
|
||||||
SUBDIR += qt-mysql-plugin
|
SUBDIR += qt-mysql-plugin
|
||||||
SUBDIR += qt-pgsql-plugin
|
SUBDIR += qt-pgsql-plugin
|
||||||
SUBDIR += rdb
|
SUBDIR += rdb
|
||||||
|
|
26
databases/qdbm/Makefile
Normal file
26
databases/qdbm/Makefile
Normal file
|
@ -0,0 +1,26 @@
|
||||||
|
# New ports collection makefile for: QDBM
|
||||||
|
# Date created: 18 October 2003
|
||||||
|
# Whom: Kimura Fuyuki <fuyuki@nigredo.org>
|
||||||
|
#
|
||||||
|
# $FreeBSD$
|
||||||
|
#
|
||||||
|
|
||||||
|
PORTNAME= qdbm
|
||||||
|
PORTVERSION= 1.7.5
|
||||||
|
CATEGORIES= databases
|
||||||
|
MASTER_SITES= ${MASTER_SITE_SOURCEFORGE}
|
||||||
|
MASTER_SITE_SUBDIR= ${PORTNAME}
|
||||||
|
|
||||||
|
MAINTAINER= fuyuki@nigredo.org
|
||||||
|
COMMENT= Quick Database Manager
|
||||||
|
|
||||||
|
GNU_CONFIGURE= yes
|
||||||
|
MAKE_ARGS= RELCFLAGS="${CFLAGS}" \
|
||||||
|
MYSHAREDIR="${DOCSDIR}" \
|
||||||
|
MYDOCS="spex.html spex-ja.html"
|
||||||
|
INSTALLS_SHLIB= yes
|
||||||
|
|
||||||
|
MAN3= cabin.3 cropen.3 curia.3 depot.3 dpopen.3 hovel.3 \
|
||||||
|
odeum.3 odopen.3 qdbm.3 relic.3 villa.3 vlopen.3
|
||||||
|
|
||||||
|
.include <bsd.port.mk>
|
1
databases/qdbm/distinfo
Normal file
1
databases/qdbm/distinfo
Normal file
|
@ -0,0 +1 @@
|
||||||
|
MD5 (qdbm-1.7.5.tar.gz) = a249fb971b83b396cb12b02ae0ec23e2
|
8
databases/qdbm/pkg-descr
Normal file
8
databases/qdbm/pkg-descr
Normal file
|
@ -0,0 +1,8 @@
|
||||||
|
QDBM is a library of routines for managing a database. The database
|
||||||
|
is a simple data file containing records, each is a pair of a key and
|
||||||
|
a value. Every key and value is serial bytes with variable length.
|
||||||
|
Both binary data and character string can be used as a key and a
|
||||||
|
value. There is neither concept of data tables nor data types.
|
||||||
|
Records are organized in hash table or B+ tree.
|
||||||
|
|
||||||
|
WWW: http://qdbm.sourceforge.net/
|
32
databases/qdbm/pkg-plist
Normal file
32
databases/qdbm/pkg-plist
Normal file
|
@ -0,0 +1,32 @@
|
||||||
|
bin/cbcodec
|
||||||
|
bin/cbtest
|
||||||
|
bin/crmgr
|
||||||
|
bin/crtest
|
||||||
|
bin/crtsv
|
||||||
|
bin/dpmgr
|
||||||
|
bin/dptest
|
||||||
|
bin/dptsv
|
||||||
|
bin/hvmgr
|
||||||
|
bin/hvtest
|
||||||
|
bin/odidx
|
||||||
|
bin/odmgr
|
||||||
|
bin/odtest
|
||||||
|
bin/rlmgr
|
||||||
|
bin/rltest
|
||||||
|
bin/vlmgr
|
||||||
|
bin/vltest
|
||||||
|
bin/vltsv
|
||||||
|
include/cabin.h
|
||||||
|
include/curia.h
|
||||||
|
include/depot.h
|
||||||
|
include/hovel.h
|
||||||
|
include/odeum.h
|
||||||
|
include/relic.h
|
||||||
|
include/villa.h
|
||||||
|
lib/libqdbm.a
|
||||||
|
lib/libqdbm.so
|
||||||
|
lib/libqdbm.so.1
|
||||||
|
lib/libqdbm.so.1.0.0
|
||||||
|
%%DOCSDIR%%/spex-ja.html
|
||||||
|
%%DOCSDIR%%/spex.html
|
||||||
|
@dirrm %%DOCSDIR%%
|
Loading…
Add table
Reference in a new issue