From owner-freebsd-ports-bugs@FreeBSD.ORG Fri Oct 17 22:50:28 2003 Return-Path: Delivered-To: freebsd-ports-bugs@hub.freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 7FE0716A4C0 for ; Fri, 17 Oct 2003 22:50:28 -0700 (PDT) Received: from freefall.freebsd.org (freefall.freebsd.org [216.136.204.21]) by mx1.FreeBSD.org (Postfix) with ESMTP id 84DC943FEA for ; Fri, 17 Oct 2003 22:50:25 -0700 (PDT) (envelope-from gnats@FreeBSD.org) Received: from freefall.freebsd.org (gnats@localhost [127.0.0.1]) by freefall.freebsd.org (8.12.9/8.12.9) with ESMTP id h9I5oPFY059467 for ; Fri, 17 Oct 2003 22:50:25 -0700 (PDT) (envelope-from gnats@freefall.freebsd.org) Received: (from gnats@localhost) by freefall.freebsd.org (8.12.9/8.12.9/Submit) id h9I5oP2M059466; Fri, 17 Oct 2003 22:50:25 -0700 (PDT) (envelope-from gnats) Resent-Date: Fri, 17 Oct 2003 22:50:25 -0700 (PDT) Resent-Message-Id: <200310180550.h9I5oP2M059466@freefall.freebsd.org> Resent-From: FreeBSD-gnats-submit@FreeBSD.org (GNATS Filer) Resent-To: freebsd-ports-bugs@FreeBSD.org Resent-Reply-To: FreeBSD-gnats-submit@FreeBSD.org, Kimura Fuyuki Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id AC82E16A4B3 for ; Fri, 17 Oct 2003 22:48:09 -0700 (PDT) Received: from mgate10.so-net.ne.jp (mgate10.so-net.ne.jp [210.139.254.157]) by mx1.FreeBSD.org (Postfix) with ESMTP id 81EE443FB1 for ; Fri, 17 Oct 2003 22:48:08 -0700 (PDT) (envelope-from fuyuki@nigredo.org) Received: from mail.dg8.so-net.ne.jp (mspool12.so-net.ne.jp [210.139.248.12]) by mgate10.so-net.ne.jp with ESMTP id h9I5m6921871 for ; Sat, 18 Oct 2003 14:48:07 +0900 (JST) Received: from ns.nigredo.org (pdd7491.spprac00.ap.so-net.ne.jp [218.221.116.145]) by mail.dg8.so-net.ne.jp with ESMTP id h9I5m6Y19441 for ; Sat, 18 Oct 2003 14:48:06 +0900 (JST) Received: from ns.nigredo.org (localhost [IPv6:::1]) by ns.nigredo.org (Postfix) with ESMTP id C1CDC20D0 for ; Sat, 18 Oct 2003 14:48:05 +0900 (JST) Message-Id: <8665in5c6i.wl%fuyuki@nigredo.org> Date: Sat, 18 Oct 2003 14:48:05 +0900 From: Kimura Fuyuki To: FreeBSD-gnats-submit@FreeBSD.org Subject: ports/58186: New port: databases/qdbm (quick database manager) X-BeenThere: freebsd-ports-bugs@freebsd.org X-Mailman-Version: 2.1.1 Precedence: list List-Id: Ports bug reports List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Sat, 18 Oct 2003 05:50:28 -0000 >Number: 58186 >Category: ports >Synopsis: New port: databases/qdbm (quick database manager) >Confidential: no >Severity: non-critical >Priority: low >Responsible: freebsd-ports-bugs >State: open >Quarter: >Keywords: >Date-Required: >Class: change-request >Submitter-Id: current-users >Arrival-Date: Fri Oct 17 22:50:25 PDT 2003 >Closed-Date: >Last-Modified: >Originator: Kimura Fuyuki >Release: FreeBSD 5.1-CURRENT i386 >Organization: >Environment: FreeBSD ns.nigredo.org 5.1-CURRENT i386 >Description: 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/ >How-To-Repeat: >Fix: # This is a shell archive. Save it in a file, remove anything before # this line, and then unpack it by entering "sh file". Note, it may # create directories; files and directories will be owned by you and # have default permissions. # # This archive contains: # # qdbm # qdbm/Makefile # qdbm/distinfo # qdbm/pkg-descr # qdbm/pkg-plist # echo c - qdbm mkdir -p qdbm > /dev/null 2>&1 echo x - qdbm/Makefile sed 's/^X//' >qdbm/Makefile << 'END-of-qdbm/Makefile' X# New ports collection makefile for: QDBM X# Date created: 18 October 2003 X# Whom: Kimura Fuyuki X# X# $FreeBSD$ X# X XPORTNAME= qdbm XPORTVERSION= 1.7.1 XCATEGORIES= databases XMASTER_SITES= ${MASTER_SITE_SOURCEFORGE} XMASTER_SITE_SUBDIR= ${PORTNAME} X XMAINTAINER= fuyuki@nigredo.org XCOMMENT= Quick Database Manager X XGNU_CONFIGURE= yes XMAKE_ARGS= RELCFLAGS="${CFLAGS}" \ X MYSHAREDIR="${DOCSDIR}" \ X MYDOCS="spex.html spex-ja.html" XINSTALLS_SHLIB= yes X XMAN3= cabin.3 cropen.3 curia.3 depot.3 dpopen.3 hovel.3 \ X odeum.3 odopen.3 qdbm.3 relic.3 villa.3 vlopen.3 X X.include END-of-qdbm/Makefile echo x - qdbm/distinfo sed 's/^X//' >qdbm/distinfo << 'END-of-qdbm/distinfo' XMD5 (qdbm-1.7.1.tar.gz) = 77ad433a76c5057a81920a77addb426f END-of-qdbm/distinfo echo x - qdbm/pkg-descr sed 's/^X//' >qdbm/pkg-descr << 'END-of-qdbm/pkg-descr' XQDBM is a library of routines for managing a database. The database Xis a simple data file containing records, each is a pair of a key and Xa value. Every key and value is serial bytes with variable length. XBoth binary data and character string can be used as a key and a Xvalue. There is neither concept of data tables nor data types. XRecords are organized in hash table or B+ tree. X XWWW: http://qdbm.sourceforge.net/ END-of-qdbm/pkg-descr echo x - qdbm/pkg-plist sed 's/^X//' >qdbm/pkg-plist << 'END-of-qdbm/pkg-plist' Xbin/cbcodec Xbin/cbtest Xbin/crmgr Xbin/crtest Xbin/crtsv Xbin/dpmgr Xbin/dptest Xbin/dptsv Xbin/hvmgr Xbin/hvtest Xbin/odidx Xbin/odmgr Xbin/odtest Xbin/rlmgr Xbin/rltest Xbin/vlmgr Xbin/vltest Xbin/vltsv Xinclude/cabin.h Xinclude/curia.h Xinclude/depot.h Xinclude/hovel.h Xinclude/odeum.h Xinclude/relic.h Xinclude/villa.h Xlib/libqdbm.a Xlib/libqdbm.so Xlib/libqdbm.so.1 Xlib/libqdbm.so.1.0.0 X%%DOCSDIR%%/spex-ja.html X%%DOCSDIR%%/spex.html X@dirrm %%DOCSDIR%% END-of-qdbm/pkg-plist exit >Release-Note: >Audit-Trail: >Unformatted: