summaryrefslogtreecommitdiff
path: root/databases/rdb
diff options
context:
space:
mode:
authoragc <agc@pkgsrc.org>2001-12-20 17:22:16 +0000
committeragc <agc@pkgsrc.org>2001-12-20 17:22:16 +0000
commitfa9ef25e61dacbf73a70b51991d12816ac7e971a (patch)
tree6e05be7958220dbe2c2ddc873769812576d43e0c /databases/rdb
parentf0b95a77936dbba5d4e44f6c889281668b050c26 (diff)
downloadpkgsrc-fa9ef25e61dacbf73a70b51991d12816ac7e971a.tar.gz
Initial import of rdb-2.6d into the NetBSD Packages Collection.
RDB is a fast, portable Relational Database Management System without arbitrary limits (other than memory and processor speed). It uses the "operator/stream" DBMS paradigm. The operators are Unix filters (i.e. they read STDIN and write STDOUT), so they can be connected by pipes. Provided in PR 15009 by natej@aol.net, modified by me to conform to NetBSD standards - use perl buildlink functionality, use REPLACE_PERL, modify PLIST to conform to standards, general cleanup to pass pkglint.
Diffstat (limited to 'databases/rdb')
-rw-r--r--databases/rdb/DESCR4
-rw-r--r--databases/rdb/Makefile21
-rw-r--r--databases/rdb/PLIST23
-rw-r--r--databases/rdb/distinfo5
-rw-r--r--databases/rdb/patches/patch-aa14
5 files changed, 67 insertions, 0 deletions
diff --git a/databases/rdb/DESCR b/databases/rdb/DESCR
new file mode 100644
index 00000000000..bb6b5a891d4
--- /dev/null
+++ b/databases/rdb/DESCR
@@ -0,0 +1,4 @@
+RDB is a fast, portable Relational Database Management System without
+arbitrary limits (other than memory and processor speed). It uses the
+"operator/stream" DBMS paradigm. The operators are Unix filters (i.e.
+they read STDIN and write STDOUT), so they can be connected by pipes.
diff --git a/databases/rdb/Makefile b/databases/rdb/Makefile
new file mode 100644
index 00000000000..fc546b54087
--- /dev/null
+++ b/databases/rdb/Makefile
@@ -0,0 +1,21 @@
+# $NetBSD: Makefile,v 1.1.1.1 2001/12/20 17:22:16 agc Exp $
+
+DISTNAME= RDB-2.6d
+PKGNAME= rdb-2.6.4
+CATEGORIES= databases
+MASTER_SITES= ftp://ftp.rand.org/pub/RDB-hobbs/
+
+MAINTAINER= njohnston@globaltetrahedron.com
+HOMEPAGE= ftp://ftp.rand.org/pub/RDB-hobbs/
+COMMENT= relational database system that uses standard filters via pipes
+
+WRKSRC= ${WRKDIR}/rdb
+NO_BUILD= yes
+USE_BUILDLINK_ONLY= yes
+
+REPLACE_PERL= column compute dataent etbl headchg jointbl lst2tbl mergetbl
+REPLACE_PERL+= mktbl ptbl rdb rdbt repair reporttbl row search sorttbl
+REPLACE_PERL+= subtotal summ tbl2lst uniqtbl valid
+
+.include "../../lang/perl5/buildlink.mk"
+.include "../../mk/bsd.pkg.mk"
diff --git a/databases/rdb/PLIST b/databases/rdb/PLIST
new file mode 100644
index 00000000000..b56d2093d06
--- /dev/null
+++ b/databases/rdb/PLIST
@@ -0,0 +1,23 @@
+@comment $NetBSD: PLIST,v 1.1.1.1 2001/12/20 17:22:16 agc Exp $
+bin/column
+bin/compute
+bin/dataent
+bin/etbl
+bin/headchg
+bin/jointbl
+bin/lst2tbl
+bin/mergetbl
+bin/mktbl
+bin/ptbl
+bin/rdb
+bin/rdbt
+bin/repair
+bin/reporttbl
+bin/row
+bin/search
+bin/sorttbl
+bin/subtotal
+bin/summ
+bin/tbl2lst
+bin/uniqtbl
+bin/valid
diff --git a/databases/rdb/distinfo b/databases/rdb/distinfo
new file mode 100644
index 00000000000..140bc7cb749
--- /dev/null
+++ b/databases/rdb/distinfo
@@ -0,0 +1,5 @@
+$NetBSD: distinfo,v 1.1.1.1 2001/12/20 17:22:16 agc Exp $
+
+SHA1 (RDB-2.6d.tar.gz) = d7c01391eb8035236630357d77c580fcdd2ed3dd
+Size (RDB-2.6d.tar.gz) = 214540 bytes
+SHA1 (patch-aa) = 94b60d15ceb2eceb084a7d1d6d29f7379f3dac01
diff --git a/databases/rdb/patches/patch-aa b/databases/rdb/patches/patch-aa
new file mode 100644
index 00000000000..b6e20be8499
--- /dev/null
+++ b/databases/rdb/patches/patch-aa
@@ -0,0 +1,14 @@
+$NetBSD: patch-aa,v 1.1.1.1 2001/12/20 17:22:16 agc Exp $
+
+Generalise to use ${PREFIX}
+
+--- Makefile 2001/12/20 17:05:40 1.1
++++ Makefile 2001/12/20 17:05:56
+@@ -1,6 +1,6 @@
+ # RBD Makefile - installation only
+
+-INSTALL_DIR = /usr/local/bin
++INSTALL_DIR = ${PREFIX}/bin
+
+ PERL_SCRIPTS = \
+ column compute dataent etbl headchg jointbl lst2tbl \