diff options
author | agc <agc> | 2001-12-20 17:22:16 +0000 |
---|---|---|
committer | agc <agc> | 2001-12-20 17:22:16 +0000 |
commit | 484c967a5db77e4b299acde3a12ec451a754b823 (patch) | |
tree | 6e05be7958220dbe2c2ddc873769812576d43e0c /databases/rdb/Makefile | |
parent | 34fa549cd34f3369fb8116f6a256f90293ad0ed8 (diff) | |
download | pkgsrc-484c967a5db77e4b299acde3a12ec451a754b823.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/Makefile')
-rw-r--r-- | databases/rdb/Makefile | 21 |
1 files changed, 21 insertions, 0 deletions
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" |