summaryrefslogtreecommitdiff
path: root/databases/sdbm
diff options
context:
space:
mode:
authorjlam <jlam>2003-07-16 09:33:46 +0000
committerjlam <jlam>2003-07-16 09:33:46 +0000
commite664449b954368894a4fd85edc962c90bc7b4903 (patch)
tree491111004206c0c3cb92ae9f1dd439e854e373be /databases/sdbm
parentf6cad14a16265838094c96c2784856bdf35df1a9 (diff)
downloadpkgsrc-e664449b954368894a4fd85edc962c90bc7b4903.tar.gz
Initial work in merging bits of the pkgviews branch into modern pkgsrc.
Currently, the pkgviews/buildlink2 integration is incomplete. People who work on this branch should also check out src/usr.sbin/pkg_install from the pkgviews branch.
Diffstat (limited to 'databases/sdbm')
-rw-r--r--databases/sdbm/DESCR11
-rw-r--r--databases/sdbm/Makefile25
-rw-r--r--databases/sdbm/PLIST9
-rw-r--r--databases/sdbm/distinfo11
-rw-r--r--databases/sdbm/patches/patch-aa39
-rw-r--r--databases/sdbm/patches/patch-ab14
-rw-r--r--databases/sdbm/patches/patch-ac13
-rw-r--r--databases/sdbm/patches/patch-ad23
-rw-r--r--databases/sdbm/patches/patch-ae10
-rw-r--r--databases/sdbm/patches/patch-af27
-rw-r--r--databases/sdbm/patches/patch-ag8
11 files changed, 0 insertions, 190 deletions
diff --git a/databases/sdbm/DESCR b/databases/sdbm/DESCR
deleted file mode 100644
index 8a043a41a3b..00000000000
--- a/databases/sdbm/DESCR
+++ /dev/null
@@ -1,11 +0,0 @@
-The sources accompanying this notice -- sdbm -- constitute the first
-public release (Dec. 1990) of a complete clone of the Berkeley UN*X ndbm
-library. The sdbm library is meant to clone the proven functionality of
-ndbm as closely as possible, including a few improvements. It is
-practical, easy to understand, and compatible. The sdbm library is not
-derived from any licensed, proprietary or copyrighted software.
-
-The sdbm programming interface is totally compatible with ndbm and
-includes a slight improvement in database initialization. It is also
-expected to be binary-compatible under most UN*X versions that support the
-ndbm library.
diff --git a/databases/sdbm/Makefile b/databases/sdbm/Makefile
deleted file mode 100644
index 7c7171bf2a1..00000000000
--- a/databases/sdbm/Makefile
+++ /dev/null
@@ -1,25 +0,0 @@
-# $NetBSD: Makefile,v 1.7 2003/06/02 01:21:00 jschauma Exp $
-#
-
-DISTNAME= sdbm
-# this is the Dec. 1990 release with some race condition fixes from an
-# unknown outside source:
-PKGNAME= sdbm-90.12.1
-WRKSRC= ${WRKDIR}
-CATEGORIES= databases
-MASTER_SITES= ftp://tsx-11.mit.edu/pub/linux/sources/libs/
-EXTRACT_SUFX= .tar.Z
-
-MAINTAINER= tech-pkg@netbsd.org
-COMMENT= Substitute DBM, an implementation of the `real' ndbm library
-
-MAKE_ENV+= LIBDIR=${PREFIX}/lib NOLINT=1
-
-post-extract:
- @cd ${WRKDIR} && ${SH} sdbm.shar >/dev/null
-
-post-install:
- ${INSTALL_DATA} ${WRKSRC}/sdbm.h ${PREFIX}/include/
- ${INSTALL_MAN} ${WRKSRC}/sdbm.3 ${PREFIX}/man/man3/
-
-.include "../../mk/bsd.pkg.mk"
diff --git a/databases/sdbm/PLIST b/databases/sdbm/PLIST
deleted file mode 100644
index f65fc6299c7..00000000000
--- a/databases/sdbm/PLIST
+++ /dev/null
@@ -1,9 +0,0 @@
-@comment $NetBSD: PLIST,v 1.1 2001/11/01 00:12:51 zuntum Exp $
-include/sdbm.h
-lib/libsdbm.a
-lib/libsdbm_p.a
-lib/libsdbm_pic.a
-lib/libsdbm.so
-lib/libsdbm.so.1
-lib/libsdbm.so.1.0
-man/man3/sdbm.3
diff --git a/databases/sdbm/distinfo b/databases/sdbm/distinfo
deleted file mode 100644
index 2b159f18117..00000000000
--- a/databases/sdbm/distinfo
+++ /dev/null
@@ -1,11 +0,0 @@
-$NetBSD: distinfo,v 1.2 2001/04/18 16:11:05 agc Exp $
-
-SHA1 (sdbm.tar.Z) = ebeb769b308a00853b0119f32dda781829e1d712
-Size (sdbm.tar.Z) = 63557 bytes
-SHA1 (patch-aa) = 91a4a5e39764dbfc892427a3c5fc32264cfc5da1
-SHA1 (patch-ab) = 76594d681bc8733e75703123312bd8c82afed333
-SHA1 (patch-ac) = 9b1265bceada93f6a4cb4c4ed2b01e4a6b75c96c
-SHA1 (patch-ad) = bfc801d5b42902fd75d66d3b775d2a52d7c93921
-SHA1 (patch-ae) = 06b68bd3c023bb691b5a493efb88ce8641ce2f0e
-SHA1 (patch-af) = b89690ae54d02b1e395d0937e8d790538eb2751a
-SHA1 (patch-ag) = 4c48496719db6c609f794f17fa3c11ea589968ea
diff --git a/databases/sdbm/patches/patch-aa b/databases/sdbm/patches/patch-aa
deleted file mode 100644
index 8a4c0153bc9..00000000000
--- a/databases/sdbm/patches/patch-aa
+++ /dev/null
@@ -1,39 +0,0 @@
-$NetBSD: patch-aa,v 1.3 2000/09/26 03:47:10 hubertf Exp $
-
---- sdbm.c.orig Mon Sep 25 23:17:30 2000
-+++ sdbm.c
-@@ -25,6 +25,7 @@
- #endif
- #include <errno.h>
- #include <string.h>
-+#include <stdlib.h>
-
- #ifdef __STDC__
- #include <stddef.h>
-@@ -35,17 +36,6 @@
- #endif
-
- /*
-- * externals
-- */
--#ifndef sun
--extern int errno;
--#endif
--
--extern char *malloc proto((unsigned int));
--extern void free proto((void *));
--extern long lseek();
--
--/*
- * forward
- */
- static int getdbit proto((DBM *, long));
-@@ -95,7 +85,7 @@
- */
- n = strlen(file) * 2 + strlen(DIRFEXT) + strlen(PAGFEXT) + 2;
-
-- if ((dirname = malloc((unsigned) n)) == NULL)
-+ if ((dirname = (char *) malloc(n)) == NULL)
- return errno = ENOMEM, (DBM *) NULL;
- /*
- * build the file names
diff --git a/databases/sdbm/patches/patch-ab b/databases/sdbm/patches/patch-ab
deleted file mode 100644
index 91088742169..00000000000
--- a/databases/sdbm/patches/patch-ab
+++ /dev/null
@@ -1,14 +0,0 @@
-$NetBSD: patch-ab,v 1.1 1999/06/30 09:46:45 agc Exp $
-
-Use a BSD-style Makefile
-
---- /dev/null Wed Jun 30 10:39:41 1999
-+++ Makefile Wed Jun 30 10:39:42 1999
-@@ -0,0 +1,7 @@
-+LIB= sdbm
-+OBJS= sdbm.o pair.o hash.o
-+CPPFLAGS+= -DSDBM -DDUFF
-+SHLIB_MAJOR=1
-+SHLIB_MINOR=0
-+
-+.include <bsd.lib.mk>
diff --git a/databases/sdbm/patches/patch-ac b/databases/sdbm/patches/patch-ac
deleted file mode 100644
index ec164d8e561..00000000000
--- a/databases/sdbm/patches/patch-ac
+++ /dev/null
@@ -1,13 +0,0 @@
-$NetBSD: patch-ac,v 1.1 2000/09/26 03:47:10 hubertf Exp $
-
---- tune.h.orig Mon Sep 25 23:22:26 2000
-+++ tune.h
-@@ -10,7 +10,7 @@
- #include <unistd.h>
- #endif
-
--#ifdef BSD42
-+#if defined(BSD42) && !defined(__NetBSD__)
- #define SEEK_SET L_SET
- #define memset(s,c,n) bzero(s, n) /* only when c is zero */
- #define memcpy(s1,s2,n) bcopy(s2, s1, n)
diff --git a/databases/sdbm/patches/patch-ad b/databases/sdbm/patches/patch-ad
deleted file mode 100644
index e1834f1bfe6..00000000000
--- a/databases/sdbm/patches/patch-ad
+++ /dev/null
@@ -1,23 +0,0 @@
-$NetBSD: patch-ad,v 1.1 2000/09/26 03:47:10 hubertf Exp $
-
---- util.c.orig Mon Sep 25 23:25:31 2000
-+++ util.c
-@@ -1,4 +1,7 @@
- #include <stdio.h>
-+#ifdef __NetBSD__
-+#include <errno.h>
-+#endif
- #ifdef SDBM
- #include "sdbm.h"
- #else
-@@ -10,8 +13,10 @@
- register char *s1;
- register char *s2;
- {
-+#ifndef __NetBSD__
- extern int errno, sys_nerr;
- extern char *sys_errlist[];
-+#endif
- extern char *progname;
-
- if (progname)
diff --git a/databases/sdbm/patches/patch-ae b/databases/sdbm/patches/patch-ae
deleted file mode 100644
index 8c0c001377f..00000000000
--- a/databases/sdbm/patches/patch-ae
+++ /dev/null
@@ -1,10 +0,0 @@
-$NetBSD: patch-ae,v 1.1 2000/09/26 03:47:11 hubertf Exp $
-
---- dbu.c.orig Mon Sep 25 23:27:21 2000
-+++ dbu.c
-@@ -1,4 +1,5 @@
- #include <stdio.h>
-+#include <stdlib.h>
- #include <sys/file.h>
- #ifdef SDBM
- #include "sdbm.h"
diff --git a/databases/sdbm/patches/patch-af b/databases/sdbm/patches/patch-af
deleted file mode 100644
index b533be6dcf3..00000000000
--- a/databases/sdbm/patches/patch-af
+++ /dev/null
@@ -1,27 +0,0 @@
-$NetBSD: patch-af,v 1.1 2000/09/26 03:47:11 hubertf Exp $
-
---- dbe.c.orig Mon Sep 25 23:28:28 2000
-+++ dbe.c
-@@ -1,4 +1,6 @@
- #include <stdio.h>
-+#include <stdlib.h>
-+#include <string.h>
- #ifndef VMS
- #include <sys/file.h>
- #include <ndbm.h>
-@@ -51,6 +53,7 @@
- #define index strchr
- #endif
-
-+#ifndef __NetBSD__
- char
- getopt(argc, argv, optstring)
- int argc;
-@@ -128,6 +131,7 @@
- }
- return c;
- }
-+#endif
-
-
- void
diff --git a/databases/sdbm/patches/patch-ag b/databases/sdbm/patches/patch-ag
deleted file mode 100644
index 10477b8b9cc..00000000000
--- a/databases/sdbm/patches/patch-ag
+++ /dev/null
@@ -1,8 +0,0 @@
-$NetBSD: patch-ag,v 1.1 2000/10/01 11:45:42 rh Exp $
-
---- /dev/null Sun Oct 1 13:42:37 2000
-+++ shlib_version
-@@ -0,0 +1,3 @@
-+#!/bin/sh
-+major=1
-+minor=0