o bump NEED_VERSION

o add tcl and c++ flavors
 o use PFRAG.<flavor> instead of PLIST-<flavor>
 o make proper .so.MAJOR.MINOR dynlibs with makefile and configure
   patches
 o fix reference to shared libraries in a few tcl test scripts
 o use a patch to makefile.in instead of a port makefile tweak
   to create libdb3.a instead of libdb-3.1.a
 o sync libtool patches
 o remove some sleepycat's marketing speech from DESCR
 o take over MAINTAINER
 o clarify license a bit
lots of thanks to Nils Nordman <nino@nforced.com> and naddy@ for
running the huge test set. (it takes days.)
naddy@ ok
This commit is contained in:
heko 2001-09-07 16:06:08 +00:00
parent e669487621
commit f2e2c80c2e
15 changed files with 532 additions and 992 deletions

View File

@ -1,17 +1,22 @@
# $OpenBSD: Makefile,v 1.24 2001/06/08 23:26:51 matt Exp $
# $OpenBSD: Makefile,v 1.25 2001/09/07 16:06:08 heko Exp $
COMMENT= "Berkeley DB package, revision 3"
DISTNAME= db-3.1.17
VMM= 3.1
VERSION= ${VMM}.17
DISTNAME= db-${VERSION}
CATEGORIES= databases
NEED_VERSION= 1.402
MASTER_SITES= http://www.sleepycat.com/update/3.1.17/
NEED_VERSION= 1.444
HOMEPAGE= http://www.sleepycat.com/
MASTER_SITES= ${HOMEPAGE}/update/${VERSION}/
JDK_VERSION= 1.1.8
TCL_VERSION= 8.3
MAINTAINER= ports@openbsd.org
MAINTAINER= Heikki Korpela <heko@openbsd.org>
# License: BSD+SleepyCat's additions.
# Must purchase license to redistribute if not distributing the source.
PERMIT_PACKAGE_CDROM= YES
PERMIT_PACKAGE_FTP= YES
PERMIT_DISTFILES_CDROM= YES
@ -19,14 +24,36 @@ PERMIT_DISTFILES_FTP= YES
CONFIGURE_STYLE= gnu dest
CONFIGURE_SCRIPT= ../dist/configure
CONFIGURE_ARGS= --enable-compat185 --enable-dump185 --enable-cxx \
${CONFIGURE_SHARED}
CONFIGURE_ARGS+= --enable-compat185
CONFIGURE_ARGS+= --enable-dump185
CONFIGURE_ARGS+= --enable-static
CONFIGURE_ARGS+= ${CONFIGURE_SHARED}
WRKBUILD= ${WRKDIST}/build_unix
FLAVORS= java
FLAVORS= java tcl c++
FLAVOR?=
.if ${FLAVOR:L:Mtcl}
# We can't use NO_SHARED_LIBS and IGNORE because IGNORE
# is only handled by bsd.port.mk and NO_SHARED_LIBS doesn't get
# defined until bsd.port.mk..
NOT_FOR_ARCHS= hppa mvme88k vax
LIB_DEPENDS+= tcl83.1.3::lang/tcl/${TCL_VERSION}
# Argh.
CFLAGS+=-I${LOCALBASE}/include/tcl${TCL_VERSION}
CONFIGURE_ARGS+=--enable-tcl
CONFIGURE_ARGS+=--with-tcl=${LOCALBASE}/lib/tcl${TCL_VERSION}
.else
CONFIGURE_ARGS+=--disable-tcl
.endif
.if ${FLAVOR:L:Mc++}
CONFIGURE_ARGS+=--enable-cxx
.else
CONFIGURE_ARGS+=--disable-cxx
.endif
.if ${FLAVOR:L:Mjava}
BROKEN= "requires native JDK"
ONLY_FOR_ARCHS= i386
@ -36,28 +63,41 @@ PORTPATH= /usr/bin:/bin:/usr/sbin:/sbin:${LOCALBASE}/bin:${X11BASE}/bin:${LOCAL
.endif
post-configure:
.if ${FLAVOR:L:Mjava}
@-ln -s ${LOCALBASE}/jdk${JDK_VERSION}/include/freebsd/jni_md.h \
${WRKBUILD}/jni_md.h
.endif
post-install:
@${INSTALL_DATA_DIR} ${PREFIX}/share/examples/db
# Renaming db.h to db3.h (to avoid conflict with /usr/include/db.h)
@mv ${PREFIX}/include/db.h ${PREFIX}/include/db3.h
.if exists(${PREFIX}/lib/libdb-3.1.a) && exists(${PREFIX}/lib/libdb_cxx-3.1.a)
@mv ${PREFIX}/lib/libdb-3.1.a ${PREFIX}/lib/libdb3.a
@mv ${PREFIX}/lib/libdb_cxx-3.1.a ${PREFIX}/lib/libdb3_cxx.a
.else
@mv ${PREFIX}/lib/libdb.a ${PREFIX}/lib/libdb3.a
@mv ${PREFIX}/lib/libdb_cxx.a ${PREFIX}/lib/libdb3_cxx.a
.endif
@echo "Installing samples: ${PREFIX}/share/examples/db ..."
# Installing examples for each language installed. (No examples for
# tcl available, only tests.)
@${INSTALL_DATA_DIR} ${PREFIX}/share/examples/db
@echo "Installing samples: ${PREFIX}/share/examples/db/*.c ..."
@cd ${WRKSRC}/examples_c; ${INSTALL_DATA} *.c \
${PREFIX}/share/examples/db
.if ${FLAVOR:L:Mc++}
@echo "Installing samples: ${PREFIX}/share/examples/db/*.cpp ..."
@cd ${WRKSRC}/examples_cxx; ${INSTALL_DATA} *.cpp \
${PREFIX}/share/examples/db
.endif
.if ${FLAVOR:L:Mjava}
@echo "Installing samples: ${PREFIX}/share/examples/db/*.java ..."
@cd ${WRKSRC}/examples_java; ${INSTALL_DATA} *.java \
${PREFIX}/share/examples/db
.endif
.include <bsd.port.mk>
# From postgreSQL port Makefile.
.if ${FLAVOR:L:Mc++} && !defined(NO_SHARED_LIBS)
SED_PLIST+=-e '/%%SHARED-c++%%/r${PKGDIR}/PFRAG.c++.shared' -e '//d'
.elif ${FLAVOR:L:Mc++} && defined(NO_SHARED_LIBS) && \
${NO_SHARED_LIBS:L} == "yes"
SED_PLIST+=-e '/%%SHARED-c++%%/d'
.endif

View File

@ -1,16 +1,77 @@
$OpenBSD: patch-dist_Makefile_in,v 1.2 2001/07/28 02:56:56 brad Exp $
--- dist/Makefile.in.orig Tue Jul 18 11:37:57 2000
+++ dist/Makefile.in Fri Jul 27 22:55:30 2001
@@ -112,7 +112,7 @@ exec_prefix=@exec_prefix@
$OpenBSD: patch-dist_Makefile_in,v 1.3 2001/09/07 16:06:08 heko Exp $
--- dist/Makefile.in.orig Tue Jul 18 18:37:57 2000
+++ dist/Makefile.in Fri Aug 31 14:02:26 2001
@@ -34,11 +34,11 @@ SOVERSION= @DB_VERSION_MAJOR@.@DB_VERSIO
libdb= libdb.a
libso_base= libdb
-libso_linkname= $(libso_base)-$(SOVERSION).la
-libso= $(libso_base)-$(SOVERSION).@SOSUFFIX@
-libso_target= $(libso_base)-$(SOVERSION).la
+libso_linkname= $(libso_base).la
+libso= $(libso_base).@SOSUFFIX@.$(SOVERSION)
+libso_target= $(libso_base).la
libso_default= $(libso_base).@SOSUFFIX@
-libso_major= $(libso_base)-$(SOMAJOR).@SOSUFFIX@
+libso_major= $(libso_base).@SOSUFFIX@.$(SOMAJOR)
##################################################
# C++
@@ -49,10 +49,10 @@ libso_major= $(libso_base)-$(SOMAJOR).@S
##################################################
libcxx= libdb_cxx.a
libxso_base= libdb_cxx
-libxso= $(libxso_base)-$(SOVERSION).@SOSUFFIX@
-libxso_target= $(libxso_base)-$(SOVERSION).la
+libxso= $(libxso_base).@SOSUFFIX@.$(SOVERSION)
+libxso_target= $(libxso_base).la
libxso_default= $(libxso_base).@SOSUFFIX@
-libxso_major= $(libxso_base)-$(SOMAJOR).@SOSUFFIX@
+libxso_major= $(libxso_base).@SOSUFFIX@.$(SOMAJOR)
##################################################
# JAVA
@@ -71,11 +71,11 @@ JAVA_DBDIR= $(JAVA_SRCDIR)/com/sleepycat
JAVA_EXDIR= $(JAVA_SRCDIR)/com/sleepycat/examples
libjso_base= libdb_java
-libjso= $(libjso_base)-$(SOVERSION).@SOSUFFIX@
-libjso_target= $(libjso_base)-$(SOVERSION).la
+libjso= $(libjso_base).@SOSUFFIX@.$(SOVERSION)
+libjso_target= $(libjso_base).la
libjso_default= $(libjso_base).@SOSUFFIX@
-libjso_major= $(libjso_base)-$(SOMAJOR).@SOSUFFIX@
-libjso_g= $(libjso_base)-$(SOVERSION)_g.@SOSUFFIX@
+libjso_major= $(libjso_base).@SOSUFFIX@.$(SOVERSION)
+libjso_g= $(libjso_base)_g.@SOSUFFIX@.$(SOVERSION)
##################################################
# TCL
@@ -86,10 +86,10 @@ libjso_g= $(libjso_base)-$(SOVERSION)_g.
##################################################
TCFLAGS= @TCFLAGS@
libtso_base= libdb_tcl
-libtso= $(libtso_base)-$(SOVERSION).@SOSUFFIX@
-libtso_target= $(libtso_base)-$(SOVERSION).la
+libtso= $(libtso_base).@SOSUFFIX@.$(SOVERSION)
+libtso_target= $(libtso_base).la
libtso_default= $(libtso_base).@SOSUFFIX@
-libtso_major= $(libtso_base)-$(SOMAJOR).@SOSUFFIX@
+libtso_major= $(libtso_base).@SOSUFFIX@.$(SOMAJOR)
##################################################
# DB_DUMP185 UTILITY
@@ -112,8 +112,7 @@ exec_prefix=@exec_prefix@
bindir= @bindir@
includedir=@includedir@
libdir= @libdir@
-docdir= $(prefix)/docs
-
+docdir= $(prefix)/share/doc/db
dmode= 755
emode= 555
@@ -426,7 +426,6 @@ install_dynamic: install_setup
fmode= 444
@@ -426,7 +425,6 @@ install_dynamic: install_setup
@$(INSTALLER) $(libso_target) $(libdir)
@cd $(libdir) && $(ln) -s $(libso) $(libso_default)
@cd $(libdir) && $(ln) -s $(libso) $(libso_major)

View File

@ -1,6 +1,6 @@
$OpenBSD: patch-dist_configure,v 1.1 2000/12/28 17:14:10 matt Exp $
--- dist/configure.orig Fri Oct 27 01:38:17 2000
+++ dist/configure Fri Oct 27 01:38:30 2000
$OpenBSD: patch-dist_configure,v 1.2 2001/09/07 16:06:08 heko Exp $
--- dist/configure.orig Mon Jul 31 19:58:18 2000
+++ dist/configure Fri Aug 31 16:03:44 2001
@@ -1602,7 +1602,6 @@ echo "configure:1601: checking libtool c
${CONFIG_SHELL-/bin/sh} $srcdir/ltconfig \
--no-verify $srcdir/ltmain.sh \
@ -9,3 +9,12 @@ $OpenBSD: patch-dist_configure,v 1.1 2000/12/28 17:14:10 matt Exp $
|| { echo "configure: error: libtool configure failed" 1>&2; exit 1; }
SOSUFFIX=`sed -e '/^library_names_spec=/!d' -e 's/.*\.\([a-zA-Z0-9_]*\).*/\1/' ./libtool`
@@ -1617,7 +1616,7 @@ echo "configure:1601: checking libtool c
INSTALLER="\$(LIBTOOL) --mode=install cp"
POSTLINK="\$(LIBTOOL) --mode=execute true"
- SOLINK="\$(LIBTOOL) --mode=link ${SAVE_CC} -avoid-version"
+ SOLINK="\$(LIBTOOL) --mode=link ${SAVE_CC} -version-info @DB_VERSION_MAJOR@:@DB_VERSION_MINOR@"
SOFLAGS="-rpath \$(libdir)"
o=".lo"
fi

View File

@ -1,7 +1,23 @@
$OpenBSD: patch-dist_ltconfig,v 1.1 2001/02/19 19:41:14 danh Exp $
--- dist/ltconfig.orig Mon Feb 19 14:33:00 2001
+++ dist/ltconfig Mon Feb 19 14:35:27 2001
@@ -1105,6 +1105,9 @@ cygwin* | mingw*)
$OpenBSD: patch-dist_ltconfig,v 1.2 2001/09/07 16:06:08 heko Exp $
--- dist/ltconfig.orig Tue May 2 19:03:13 2000
+++ dist/ltconfig Thu Aug 30 21:10:07 2001
@@ -501,7 +501,14 @@ fi
if test -n "$RANLIB"; then
old_archive_cmds="$old_archive_cmds~\$RANLIB \$oldlib"
- old_postinstall_cmds="\$RANLIB \$oldlib~$old_postinstall_cmds"
+ case "$host_os" in
+ openbsd*)
+ old_postinstall_cmds="\$RANLIB -t \$oldlib~$old_postinstall_cmds"
+ ;;
+ *)
+ old_postinstall_cmds="\$RANLIB \$oldlib~$old_postinstall_cmds"
+ ;;
+ esac
fi
# Set sane defaults for `DLLTOOL', `OBJDUMP', and `AS', used on cygwin.
@@ -1105,6 +1112,9 @@ cygwin* | mingw*)
with_gnu_ld=no
fi
;;
@ -11,7 +27,7 @@ $OpenBSD: patch-dist_ltconfig,v 1.1 2001/02/19 19:41:14 danh Exp $
esac
@@ -1400,10 +1403,21 @@ else
@@ -1400,10 +1410,21 @@ else
;;
openbsd*)
@ -27,7 +43,7 @@ $OpenBSD: patch-dist_ltconfig,v 1.1 2001/02/19 19:41:14 danh Exp $
+ *)
+ archive_cmds='$CC -shared $pic_flag -o $lib $libobjs $deplibs $linkopts'
+ hardcode_libdir_flag_spec='${wl}-rpath,$libdir'
+ if [ "`/usr/bin/file /usr/lib/libc.so.* | grep ELF`" != "" ]; then
+ if test "`echo __ELF__ | $CC -E - | grep __ELF__`" = "" || test "$host_os-$host_cpu" = "openbsd2.8-powerpc"; then
+ export_dynamic_flag_spec='${wl}-E'
+ fi
+ ;;
@ -35,18 +51,30 @@ $OpenBSD: patch-dist_ltconfig,v 1.1 2001/02/19 19:41:14 danh Exp $
;;
os2*)
@@ -2009,13 +2023,10 @@ netbsd*)
@@ -2009,9 +2030,23 @@ netbsd*)
openbsd*)
version_type=sunos
- if test "$with_gnu_ld" = yes; then
- need_lib_prefix=no
- need_version=no
- fi
+ need_lib_prefix=no
+ need_version=no
+ file_magic_cmd=/usr/bin/file
+ file_magic_test_file=`echo /usr/lib/libc.so.*`
+ if test "`echo __ELF__ | $CC -E - | grep __ELF__`" = "" || test "$host_os-$host_cpu" = "openbsd2.8-powerpc"; then
+ deplibs_check_method='file_magic ELF [0-9][0-9]*-bit [LM]SB shared object'
+ case "$host_os" in
+ openbsd2.[89] | openbsd2.[89].*)
+ shlibpath_overrides_runpath=no
+ ;;
+ *)
+ shlibpath_overrides_runpath=yes
+ ;;
+ esac
+ else
+ deplibs_check_method='file_magic OpenBSD.* shared library'
+ shlibpath_overrides_runpath=yes
fi
library_names_spec='${libname}${release}.so$versuffix ${libname}.so$versuffix'
finish_cmds='PATH="\$PATH:/sbin" ldconfig -m $libdir'
shlibpath_var=LD_LIBRARY_PATH
+ deplibs_check_method='pass_all'
;;
os2*)

View File

@ -1,7 +1,7 @@
$OpenBSD: patch-dist_ltmain_sh,v 1.1 2001/02/19 19:41:14 danh Exp $
--- dist/ltmain.sh.orig Mon Feb 19 14:33:05 2001
+++ dist/ltmain.sh Mon Feb 19 14:37:46 2001
@@ -1079,7 +1079,18 @@ compiler."
$OpenBSD: patch-dist_ltmain_sh,v 1.2 2001/09/07 16:06:08 heko Exp $
--- dist/ltmain.sh.orig Sun Jul 30 20:45:53 2000
+++ dist/ltmain.sh Thu Aug 30 21:12:05 2001
@@ -1079,6 +1079,17 @@ compiler."
# These systems don't actually have c library (as such)
continue
;;
@ -9,17 +9,16 @@ $OpenBSD: patch-dist_ltmain_sh,v 1.1 2001/02/19 19:41:14 danh Exp $
+ # Do not include libc due to us having libc/libc_r.
+ continue
+ ;;
esac
+ esac
+ elif test "$arg" = "-lc_r"; then
+ case "$host" in
+ *-*-openbsd*)
+ # Do not include libc_r directly, use -pthread flag.
+ continue
+ ;;
+ esac
esac
elif test "$arg" = "-lm"; then
case "$host" in
*-*-cygwin* | *-*-beos*)
@@ -1091,6 +1102,10 @@ compiler."
deplibs="$deplibs $arg"
;;
@ -31,17 +30,17 @@ $OpenBSD: patch-dist_ltmain_sh,v 1.1 2001/02/19 19:41:14 danh Exp $
-module)
module=yes
continue
@@ -1803,6 +1818,10 @@ compiler."
# defer to whether the user wants -lc, or -lc_r
@@ -1796,6 +1811,10 @@ compiler."
# these systems don't actually have a c library (as such)!
;;
+ *-*-openbsd*)
+ # Do not include libc due to us having libc/libc_r.
+ ;;
+
*)
# Add libc to deplibs on all other systems.
deplibs="$deplibs -lc"
#### local change for Sleepycat DB: [#2380]
# The following case is added, since the linker's -pthread
# option implicitly controls use of -lc or -lc_r.
@@ -3563,40 +3582,6 @@ libdir='$install_libdir'\
# Exit here if they wanted silent mode.
test "$show" = : && exit 0

View File

@ -0,0 +1,12 @@
$OpenBSD: patch-dist_s_tcl,v 1.1 2001/09/07 16:06:08 heko Exp $
--- dist/s_tcl.orig Thu May 11 21:36:08 2000
+++ dist/s_tcl Thu Aug 30 21:01:38 2001
@@ -11,7 +11,7 @@ f=../test/include.tcl
echo "Building $f"
rm -f $f
(echo "set tclsh_path @TCL_TCLSH@" && \
- echo "set tcllib .libs/libdb_tcl-@DB_VERSION_MAJOR@.@DB_VERSION_MINOR@.@SOSUFFIX@" && \
+ echo "set tcllib .libs/libdb_tcl.@SOSUFFIX@.@DB_VERSION_MAJOR@.@DB_VERSION_MINOR@" && \
echo "set rpc_server localhost" && \
echo "set test_path @srcdir@/../test" && \
echo "" && \

View File

@ -0,0 +1,10 @@
$OpenBSD: patch-test_include_tcl,v 1.1 2001/09/07 16:06:08 heko Exp $
--- test/include.tcl.orig Mon Jul 31 19:58:22 2000
+++ test/include.tcl Thu Aug 30 21:02:41 2001
@@ -1,5 +1,5 @@
set tclsh_path @TCL_TCLSH@
-set tcllib .libs/libdb_tcl-@DB_VERSION_MAJOR@.@DB_VERSION_MINOR@.@SOSUFFIX@
+set tcllib .libs/libdb_tcl.@SOSUFFIX@.@DB_VERSION_MAJOR@.@DB_VERSION_MINOR@
set rpc_server localhost
set test_path @srcdir@/../test

View File

@ -13,8 +13,6 @@ At the same time, Berkeley DB's small footprint, in-process execution
model, simple function-call API and low administrative overhead make it
ideal for use in embedded systems. Vendors of telecommunications switches,
routers and wired and wireless network gateways choose Berkeley DB to
manage critical information in their products. Berkeley DB runs reliably
24 hours a day, 7 days a week in unattended systems, with no database or
system administrator to oversee it.
manage critical information in their products.
WWW: ${HOMEPAGE}

141
databases/db/pkg/PFRAG.c++ Normal file
View File

@ -0,0 +1,141 @@
@comment $OpenBSD: PFRAG.c++,v 1.1 2001/09/07 16:06:08 heko Exp $
share/doc/db/api_cxx/cxx_index.html
share/doc/db/api_cxx/cxx_pindex.html
share/doc/db/api_cxx/db_class.html
share/doc/db/api_cxx/db_close.html
share/doc/db/api_cxx/db_cursor.html
share/doc/db/api_cxx/db_del.html
share/doc/db/api_cxx/db_err.html
share/doc/db/api_cxx/db_fd.html
share/doc/db/api_cxx/db_get.html
share/doc/db/api_cxx/db_get_byteswapped.html
share/doc/db/api_cxx/db_get_type.html
share/doc/db/api_cxx/db_join.html
share/doc/db/api_cxx/db_key_range.html
share/doc/db/api_cxx/db_open.html
share/doc/db/api_cxx/db_put.html
share/doc/db/api_cxx/db_remove.html
share/doc/db/api_cxx/db_rename.html
share/doc/db/api_cxx/db_set_bt_compare.html
share/doc/db/api_cxx/db_set_bt_minkey.html
share/doc/db/api_cxx/db_set_bt_prefix.html
share/doc/db/api_cxx/db_set_cachesize.html
share/doc/db/api_cxx/db_set_dup_compare.html
share/doc/db/api_cxx/db_set_errcall.html
share/doc/db/api_cxx/db_set_errfile.html
share/doc/db/api_cxx/db_set_errpfx.html
share/doc/db/api_cxx/db_set_feedback.html
share/doc/db/api_cxx/db_set_flags.html
share/doc/db/api_cxx/db_set_h_ffactor.html
share/doc/db/api_cxx/db_set_h_hash.html
share/doc/db/api_cxx/db_set_h_nelem.html
share/doc/db/api_cxx/db_set_lorder.html
share/doc/db/api_cxx/db_set_malloc.html
share/doc/db/api_cxx/db_set_pagesize.html
share/doc/db/api_cxx/db_set_paniccall.html
share/doc/db/api_cxx/db_set_re_delim.html
share/doc/db/api_cxx/db_set_re_len.html
share/doc/db/api_cxx/db_set_re_pad.html
share/doc/db/api_cxx/db_set_re_source.html
share/doc/db/api_cxx/db_set_realloc.html
share/doc/db/api_cxx/db_stat.html
share/doc/db/api_cxx/db_sync.html
share/doc/db/api_cxx/db_upgrade.html
share/doc/db/api_cxx/db_verify.html
share/doc/db/api_cxx/dbc_class.html
share/doc/db/api_cxx/dbc_close.html
share/doc/db/api_cxx/dbc_count.html
share/doc/db/api_cxx/dbc_del.html
share/doc/db/api_cxx/dbc_dup.html
share/doc/db/api_cxx/dbc_get.html
share/doc/db/api_cxx/dbc_put.html
share/doc/db/api_cxx/dbenv_class.html
share/doc/db/api_cxx/dbt_class.html
share/doc/db/api_cxx/env_close.html
share/doc/db/api_cxx/env_open.html
share/doc/db/api_cxx/env_remove.html
share/doc/db/api_cxx/env_set_cachesize.html
share/doc/db/api_cxx/env_set_data_dir.html
share/doc/db/api_cxx/env_set_errcall.html
share/doc/db/api_cxx/env_set_errfile.html
share/doc/db/api_cxx/env_set_error_stream.html
share/doc/db/api_cxx/env_set_errpfx.html
share/doc/db/api_cxx/env_set_feedback.html
share/doc/db/api_cxx/env_set_lg_bsize.html
share/doc/db/api_cxx/env_set_lg_dir.html
share/doc/db/api_cxx/env_set_lg_max.html
share/doc/db/api_cxx/env_set_lk_conflicts.html
share/doc/db/api_cxx/env_set_lk_detect.html
share/doc/db/api_cxx/env_set_lk_max.html
share/doc/db/api_cxx/env_set_mp_mmapsize.html
share/doc/db/api_cxx/env_set_mutexlocks.html
share/doc/db/api_cxx/env_set_pageyield.html
share/doc/db/api_cxx/env_set_paniccall.html
share/doc/db/api_cxx/env_set_panicstate.html
share/doc/db/api_cxx/env_set_rec_init.html
share/doc/db/api_cxx/env_set_region_init.html
share/doc/db/api_cxx/env_set_server.html
share/doc/db/api_cxx/env_set_shm_key.html
share/doc/db/api_cxx/env_set_tas_spins.html
share/doc/db/api_cxx/env_set_tmp_dir.html
share/doc/db/api_cxx/env_set_tx_max.html
share/doc/db/api_cxx/env_set_tx_recover.html
share/doc/db/api_cxx/env_set_tx_timestamp.html
share/doc/db/api_cxx/env_set_verbose.html
share/doc/db/api_cxx/env_strerror.html
share/doc/db/api_cxx/env_version.html
share/doc/db/api_cxx/except_class.html
share/doc/db/api_cxx/get_errno.html
share/doc/db/api_cxx/lock_class.html
share/doc/db/api_cxx/lock_detect.html
share/doc/db/api_cxx/lock_get.html
share/doc/db/api_cxx/lock_id.html
share/doc/db/api_cxx/lock_put.html
share/doc/db/api_cxx/lock_stat.html
share/doc/db/api_cxx/lock_vec.html
share/doc/db/api_cxx/log_archive.html
share/doc/db/api_cxx/log_compare.html
share/doc/db/api_cxx/log_file.html
share/doc/db/api_cxx/log_flush.html
share/doc/db/api_cxx/log_get.html
share/doc/db/api_cxx/log_put.html
share/doc/db/api_cxx/log_register.html
share/doc/db/api_cxx/log_stat.html
share/doc/db/api_cxx/log_unregister.html
share/doc/db/api_cxx/lsn_class.html
share/doc/db/api_cxx/memp_fclose.html
share/doc/db/api_cxx/memp_fget.html
share/doc/db/api_cxx/memp_fopen.html
share/doc/db/api_cxx/memp_fput.html
share/doc/db/api_cxx/memp_fset.html
share/doc/db/api_cxx/memp_fsync.html
share/doc/db/api_cxx/memp_register.html
share/doc/db/api_cxx/memp_stat.html
share/doc/db/api_cxx/memp_sync.html
share/doc/db/api_cxx/memp_trickle.html
share/doc/db/api_cxx/mempfile_class.html
share/doc/db/api_cxx/pindex.src
share/doc/db/api_cxx/txn_abort.html
share/doc/db/api_cxx/txn_begin.html
share/doc/db/api_cxx/txn_checkpoint.html
share/doc/db/api_cxx/txn_class.html
share/doc/db/api_cxx/txn_commit.html
share/doc/db/api_cxx/txn_id.html
share/doc/db/api_cxx/txn_prepare.html
share/doc/db/api_cxx/txn_stat.html
share/doc/db/api_cxx/what.html
share/doc/db/ref/upgrade.3.0/cxx.html
share/doc/db/ref/upgrade.3.0/db_cxx.html
share/doc/db/ref/upgrade.3.0/dbenv_cxx.html
share/examples/db/AccessExample.cpp
share/examples/db/BtRecExample.cpp
share/examples/db/EnvExample.cpp
share/examples/db/LockExample.cpp
share/examples/db/MpoolExample.cpp
share/examples/db/TpcbExample.cpp
include/db_cxx.h
lib/libdb_cxx.a
lib/libdb_cxx.la
%%SHARED-c++%%
@dirrm share/doc/db/api_cxx

View File

@ -0,0 +1,4 @@
@comment $OpenBSD: PFRAG.c++.shared,v 1.1 2001/09/07 16:06:08 heko Exp $
lib/libdb_cxx.so
lib/libdb_cxx.so.3
lib/libdb_cxx.so.3.1

122
databases/db/pkg/PFRAG.java Normal file
View File

@ -0,0 +1,122 @@
@comment $OpenBSD: PFRAG.java,v 1.1 2001/09/07 16:06:08 heko Exp $
share/doc/db/api_java/db_class.html
share/doc/db/api_java/db_close.html
share/doc/db/api_java/db_cursor.html
share/doc/db/api_java/db_del.html
share/doc/db/api_java/db_fd.html
share/doc/db/api_java/db_get.html
share/doc/db/api_java/db_get_byteswapped.html
share/doc/db/api_java/db_get_type.html
share/doc/db/api_java/db_join.html
share/doc/db/api_java/db_key_range.html
share/doc/db/api_java/db_open.html
share/doc/db/api_java/db_put.html
share/doc/db/api_java/db_remove.html
share/doc/db/api_java/db_rename.html
share/doc/db/api_java/db_set_bt_minkey.html
share/doc/db/api_java/db_set_cachesize.html
share/doc/db/api_java/db_set_errcall.html
share/doc/db/api_java/db_set_errpfx.html
share/doc/db/api_java/db_set_feedback.html
share/doc/db/api_java/db_set_flags.html
share/doc/db/api_java/db_set_h_ffactor.html
share/doc/db/api_java/db_set_h_nelem.html
share/doc/db/api_java/db_set_lorder.html
share/doc/db/api_java/db_set_pagesize.html
share/doc/db/api_java/db_set_re_delim.html
share/doc/db/api_java/db_set_re_len.html
share/doc/db/api_java/db_set_re_pad.html
share/doc/db/api_java/db_set_re_source.html
share/doc/db/api_java/db_stat.html
share/doc/db/api_java/db_sync.html
share/doc/db/api_java/db_upgrade.html
share/doc/db/api_java/db_verify.html
share/doc/db/api_java/dbc_class.html
share/doc/db/api_java/dbc_close.html
share/doc/db/api_java/dbc_count.html
share/doc/db/api_java/dbc_del.html
share/doc/db/api_java/dbc_dup.html
share/doc/db/api_java/dbc_get.html
share/doc/db/api_java/dbc_put.html
share/doc/db/api_java/dbenv_class.html
share/doc/db/api_java/dbt_class.html
share/doc/db/api_java/deadlock_class.html
share/doc/db/api_java/env_close.html
share/doc/db/api_java/env_open.html
share/doc/db/api_java/env_remove.html
share/doc/db/api_java/env_set_cachesize.html
share/doc/db/api_java/env_set_data_dir.html
share/doc/db/api_java/env_set_errcall.html
share/doc/db/api_java/env_set_error_stream.html
share/doc/db/api_java/env_set_errpfx.html
share/doc/db/api_java/env_set_feedback.html
share/doc/db/api_java/env_set_lg_bsize.html
share/doc/db/api_java/env_set_lg_dir.html
share/doc/db/api_java/env_set_lg_max.html
share/doc/db/api_java/env_set_lk_conflicts.html
share/doc/db/api_java/env_set_lk_detect.html
share/doc/db/api_java/env_set_lk_max.html
share/doc/db/api_java/env_set_mp_mmapsize.html
share/doc/db/api_java/env_set_mutexlocks.html
share/doc/db/api_java/env_set_pageyield.html
share/doc/db/api_java/env_set_panicstate.html
share/doc/db/api_java/env_set_rec_init.html
share/doc/db/api_java/env_set_region_init.html
share/doc/db/api_java/env_set_server.html
share/doc/db/api_java/env_set_shm_key.html
share/doc/db/api_java/env_set_tas_spins.html
share/doc/db/api_java/env_set_tmp_dir.html
share/doc/db/api_java/env_set_tx_max.html
share/doc/db/api_java/env_set_tx_timestamp.html
share/doc/db/api_java/env_set_verbose.html
share/doc/db/api_java/env_strerror.html
share/doc/db/api_java/env_version.html
share/doc/db/api_java/except_class.html
share/doc/db/api_java/get_errno.html
share/doc/db/api_java/java_index.html
share/doc/db/api_java/java_pindex.html
share/doc/db/api_java/lock_class.html
share/doc/db/api_java/lock_detect.html
share/doc/db/api_java/lock_get.html
share/doc/db/api_java/lock_id.html
share/doc/db/api_java/lock_put.html
share/doc/db/api_java/lock_stat.html
share/doc/db/api_java/lock_vec.html
share/doc/db/api_java/log_archive.html
share/doc/db/api_java/log_compare.html
share/doc/db/api_java/log_file.html
share/doc/db/api_java/log_flush.html
share/doc/db/api_java/log_get.html
share/doc/db/api_java/log_put.html
share/doc/db/api_java/log_register.html
share/doc/db/api_java/log_stat.html
share/doc/db/api_java/log_unregister.html
share/doc/db/api_java/lsn_class.html
share/doc/db/api_java/mem_class.html
share/doc/db/api_java/memp_fclose.html
share/doc/db/api_java/memp_fget.html
share/doc/db/api_java/memp_fopen.html
share/doc/db/api_java/memp_fput.html
share/doc/db/api_java/memp_fset.html
share/doc/db/api_java/memp_fsync.html
share/doc/db/api_java/memp_register.html
share/doc/db/api_java/memp_stat.html
share/doc/db/api_java/memp_sync.html
share/doc/db/api_java/memp_trickle.html
share/doc/db/api_java/pindex.src
share/doc/db/api_java/runrec_class.html
share/doc/db/api_java/txn_abort.html
share/doc/db/api_java/txn_begin.html
share/doc/db/api_java/txn_checkpoint.html
share/doc/db/api_java/txn_class.html
share/doc/db/api_java/txn_commit.html
share/doc/db/api_java/txn_id.html
share/doc/db/api_java/txn_prepare.html
share/doc/db/api_java/txn_stat.html
share/doc/db/ref/java/compat.html
share/doc/db/ref/java/conf.html
share/doc/db/ref/java/program.html
share/doc/db/ref/upgrade.3.0/java.html
@dirrm share/doc/db/ref/java
@dirrm share/doc/db/api_java

View File

@ -1,10 +1,5 @@
@comment $OpenBSD: PFRAG.shared,v 1.2 2000/12/28 17:14:10 matt Exp $
lib/libdb-3.1.la
lib/libdb-3.so
@comment $OpenBSD: PFRAG.shared,v 1.3 2001/09/07 16:06:08 heko Exp $
lib/libdb.so
lib/libdb_cxx-3.1.la
lib/libdb_cxx-3.so
lib/libdb_cxx.so
lib/libdb-3.1.so.0.0
lib/libdb_cxx-3.1.so.0.0
lib/libdb.so.3
lib/libdb.so.3.1
DYNLIBDIR(%D/lib)

View File

@ -0,0 +1,43 @@
@comment $OpenBSD: PFRAG.tcl,v 1.1 2001/09/07 16:06:08 heko Exp $
share/doc/db/api_tcl/db_close.html
share/doc/db/api_tcl/db_count.html
share/doc/db/api_tcl/db_cursor.html
share/doc/db/api_tcl/db_del.html
share/doc/db/api_tcl/db_get.html
share/doc/db/api_tcl/db_get_join.html
share/doc/db/api_tcl/db_get_type.html
share/doc/db/api_tcl/db_is_byteswapped.html
share/doc/db/api_tcl/db_join.html
share/doc/db/api_tcl/db_open.html
share/doc/db/api_tcl/db_put.html
share/doc/db/api_tcl/db_remove.html
share/doc/db/api_tcl/db_rename.html
share/doc/db/api_tcl/db_stat.html
share/doc/db/api_tcl/db_sync.html
share/doc/db/api_tcl/dbc_close.html
share/doc/db/api_tcl/dbc_del.html
share/doc/db/api_tcl/dbc_dup.html
share/doc/db/api_tcl/dbc_get.html
share/doc/db/api_tcl/dbc_put.html
share/doc/db/api_tcl/env_close.html
share/doc/db/api_tcl/env_open.html
share/doc/db/api_tcl/env_remove.html
share/doc/db/api_tcl/pindex.src
share/doc/db/api_tcl/tcl_index.html
share/doc/db/api_tcl/tcl_pindex.html
share/doc/db/api_tcl/txn.html
share/doc/db/api_tcl/txn_abort.html
share/doc/db/api_tcl/txn_commit.html
share/doc/db/api_tcl/version.html
share/doc/db/ref/tcl/error.html
share/doc/db/ref/tcl/intro.html
share/doc/db/ref/tcl/program.html
share/doc/db/ref/tcl/using.html
share/doc/db/ref/upgrade.3.1/tcl.html
lib/libdb_tcl.la
lib/libdb_tcl.so
lib/libdb_tcl.so.3
lib/libdb_tcl.so.3.1
@dirrm share/doc/db/ref/tcl
@dirrm share/doc/db/api_tcl

View File

@ -1,4 +1,4 @@
@comment $OpenBSD: PLIST,v 1.10 2000/12/28 17:14:10 matt Exp $
@comment $OpenBSD: PLIST,v 1.11 2001/09/07 16:06:08 heko Exp $
bin/db_archive
bin/db_checkpoint
bin/db_deadlock
@ -10,11 +10,6 @@ bin/db_recover
bin/db_stat
bin/db_upgrade
bin/db_verify
include/db3.h
include/db_185.h
include/db_cxx.h
lib/libdb3.a
lib/libdb3_cxx.a
share/doc/db/api_c/c_index.html
share/doc/db/api_c/c_pindex.html
share/doc/db/api_c/db_close.html
@ -153,161 +148,6 @@ share/doc/db/api_c/txn_commit.html
share/doc/db/api_c/txn_id.html
share/doc/db/api_c/txn_prepare.html
share/doc/db/api_c/txn_stat.html
share/doc/db/api_cxx/cxx_index.html
share/doc/db/api_cxx/cxx_pindex.html
share/doc/db/api_cxx/db_class.html
share/doc/db/api_cxx/db_close.html
share/doc/db/api_cxx/db_cursor.html
share/doc/db/api_cxx/db_del.html
share/doc/db/api_cxx/db_err.html
share/doc/db/api_cxx/db_fd.html
share/doc/db/api_cxx/db_get.html
share/doc/db/api_cxx/db_get_byteswapped.html
share/doc/db/api_cxx/db_get_type.html
share/doc/db/api_cxx/db_join.html
share/doc/db/api_cxx/db_key_range.html
share/doc/db/api_cxx/db_open.html
share/doc/db/api_cxx/db_put.html
share/doc/db/api_cxx/db_remove.html
share/doc/db/api_cxx/db_rename.html
share/doc/db/api_cxx/db_set_bt_compare.html
share/doc/db/api_cxx/db_set_bt_minkey.html
share/doc/db/api_cxx/db_set_bt_prefix.html
share/doc/db/api_cxx/db_set_cachesize.html
share/doc/db/api_cxx/db_set_dup_compare.html
share/doc/db/api_cxx/db_set_errcall.html
share/doc/db/api_cxx/db_set_errfile.html
share/doc/db/api_cxx/db_set_errpfx.html
share/doc/db/api_cxx/db_set_feedback.html
share/doc/db/api_cxx/db_set_flags.html
share/doc/db/api_cxx/db_set_h_ffactor.html
share/doc/db/api_cxx/db_set_h_hash.html
share/doc/db/api_cxx/db_set_h_nelem.html
share/doc/db/api_cxx/db_set_lorder.html
share/doc/db/api_cxx/db_set_malloc.html
share/doc/db/api_cxx/db_set_pagesize.html
share/doc/db/api_cxx/db_set_paniccall.html
share/doc/db/api_cxx/db_set_re_delim.html
share/doc/db/api_cxx/db_set_re_len.html
share/doc/db/api_cxx/db_set_re_pad.html
share/doc/db/api_cxx/db_set_re_source.html
share/doc/db/api_cxx/db_set_realloc.html
share/doc/db/api_cxx/db_stat.html
share/doc/db/api_cxx/db_sync.html
share/doc/db/api_cxx/db_upgrade.html
share/doc/db/api_cxx/db_verify.html
share/doc/db/api_cxx/dbc_class.html
share/doc/db/api_cxx/dbc_close.html
share/doc/db/api_cxx/dbc_count.html
share/doc/db/api_cxx/dbc_del.html
share/doc/db/api_cxx/dbc_dup.html
share/doc/db/api_cxx/dbc_get.html
share/doc/db/api_cxx/dbc_put.html
share/doc/db/api_cxx/dbenv_class.html
share/doc/db/api_cxx/dbt_class.html
share/doc/db/api_cxx/env_close.html
share/doc/db/api_cxx/env_open.html
share/doc/db/api_cxx/env_remove.html
share/doc/db/api_cxx/env_set_cachesize.html
share/doc/db/api_cxx/env_set_data_dir.html
share/doc/db/api_cxx/env_set_errcall.html
share/doc/db/api_cxx/env_set_errfile.html
share/doc/db/api_cxx/env_set_error_stream.html
share/doc/db/api_cxx/env_set_errpfx.html
share/doc/db/api_cxx/env_set_feedback.html
share/doc/db/api_cxx/env_set_lg_bsize.html
share/doc/db/api_cxx/env_set_lg_dir.html
share/doc/db/api_cxx/env_set_lg_max.html
share/doc/db/api_cxx/env_set_lk_conflicts.html
share/doc/db/api_cxx/env_set_lk_detect.html
share/doc/db/api_cxx/env_set_lk_max.html
share/doc/db/api_cxx/env_set_mp_mmapsize.html
share/doc/db/api_cxx/env_set_mutexlocks.html
share/doc/db/api_cxx/env_set_pageyield.html
share/doc/db/api_cxx/env_set_paniccall.html
share/doc/db/api_cxx/env_set_panicstate.html
share/doc/db/api_cxx/env_set_rec_init.html
share/doc/db/api_cxx/env_set_region_init.html
share/doc/db/api_cxx/env_set_server.html
share/doc/db/api_cxx/env_set_shm_key.html
share/doc/db/api_cxx/env_set_tas_spins.html
share/doc/db/api_cxx/env_set_tmp_dir.html
share/doc/db/api_cxx/env_set_tx_max.html
share/doc/db/api_cxx/env_set_tx_recover.html
share/doc/db/api_cxx/env_set_tx_timestamp.html
share/doc/db/api_cxx/env_set_verbose.html
share/doc/db/api_cxx/env_strerror.html
share/doc/db/api_cxx/env_version.html
share/doc/db/api_cxx/except_class.html
share/doc/db/api_cxx/get_errno.html
share/doc/db/api_cxx/lock_class.html
share/doc/db/api_cxx/lock_detect.html
share/doc/db/api_cxx/lock_get.html
share/doc/db/api_cxx/lock_id.html
share/doc/db/api_cxx/lock_put.html
share/doc/db/api_cxx/lock_stat.html
share/doc/db/api_cxx/lock_vec.html
share/doc/db/api_cxx/log_archive.html
share/doc/db/api_cxx/log_compare.html
share/doc/db/api_cxx/log_file.html
share/doc/db/api_cxx/log_flush.html
share/doc/db/api_cxx/log_get.html
share/doc/db/api_cxx/log_put.html
share/doc/db/api_cxx/log_register.html
share/doc/db/api_cxx/log_stat.html
share/doc/db/api_cxx/log_unregister.html
share/doc/db/api_cxx/lsn_class.html
share/doc/db/api_cxx/memp_fclose.html
share/doc/db/api_cxx/memp_fget.html
share/doc/db/api_cxx/memp_fopen.html
share/doc/db/api_cxx/memp_fput.html
share/doc/db/api_cxx/memp_fset.html
share/doc/db/api_cxx/memp_fsync.html
share/doc/db/api_cxx/memp_register.html
share/doc/db/api_cxx/memp_stat.html
share/doc/db/api_cxx/memp_sync.html
share/doc/db/api_cxx/memp_trickle.html
share/doc/db/api_cxx/mempfile_class.html
share/doc/db/api_cxx/pindex.src
share/doc/db/api_cxx/txn_abort.html
share/doc/db/api_cxx/txn_begin.html
share/doc/db/api_cxx/txn_checkpoint.html
share/doc/db/api_cxx/txn_class.html
share/doc/db/api_cxx/txn_commit.html
share/doc/db/api_cxx/txn_id.html
share/doc/db/api_cxx/txn_prepare.html
share/doc/db/api_cxx/txn_stat.html
share/doc/db/api_cxx/what.html
share/doc/db/api_tcl/db_close.html
share/doc/db/api_tcl/db_count.html
share/doc/db/api_tcl/db_cursor.html
share/doc/db/api_tcl/db_del.html
share/doc/db/api_tcl/db_get.html
share/doc/db/api_tcl/db_get_join.html
share/doc/db/api_tcl/db_get_type.html
share/doc/db/api_tcl/db_is_byteswapped.html
share/doc/db/api_tcl/db_join.html
share/doc/db/api_tcl/db_open.html
share/doc/db/api_tcl/db_put.html
share/doc/db/api_tcl/db_remove.html
share/doc/db/api_tcl/db_rename.html
share/doc/db/api_tcl/db_stat.html
share/doc/db/api_tcl/db_sync.html
share/doc/db/api_tcl/dbc_close.html
share/doc/db/api_tcl/dbc_del.html
share/doc/db/api_tcl/dbc_dup.html
share/doc/db/api_tcl/dbc_get.html
share/doc/db/api_tcl/dbc_put.html
share/doc/db/api_tcl/env_close.html
share/doc/db/api_tcl/env_open.html
share/doc/db/api_tcl/env_remove.html
share/doc/db/api_tcl/pindex.src
share/doc/db/api_tcl/tcl_index.html
share/doc/db/api_tcl/tcl_pindex.html
share/doc/db/api_tcl/txn.html
share/doc/db/api_tcl/txn_abort.html
share/doc/db/api_tcl/txn_commit.html
share/doc/db/api_tcl/version.html
share/doc/db/images/api.gif
share/doc/db/images/next.gif
share/doc/db/images/prev.gif
@ -464,10 +304,6 @@ share/doc/db/ref/simple_tut/intro.html
share/doc/db/ref/simple_tut/keydata.html
share/doc/db/ref/simple_tut/open.html
share/doc/db/ref/simple_tut/put.html
share/doc/db/ref/tcl/error.html
share/doc/db/ref/tcl/intro.html
share/doc/db/ref/tcl/program.html
share/doc/db/ref/tcl/using.html
share/doc/db/ref/test/run.html
share/doc/db/ref/toc.html
share/doc/db/ref/transapp/admin.html
@ -495,11 +331,8 @@ share/doc/db/ref/upgrade.2.0/disk.html
share/doc/db/ref/upgrade.2.0/intro.html
share/doc/db/ref/upgrade.2.0/system.html
share/doc/db/ref/upgrade.3.0/close.html
share/doc/db/ref/upgrade.3.0/cxx.html
share/doc/db/ref/upgrade.3.0/db.html
share/doc/db/ref/upgrade.3.0/db_cxx.html
share/doc/db/ref/upgrade.3.0/dbenv.html
share/doc/db/ref/upgrade.3.0/dbenv_cxx.html
share/doc/db/ref/upgrade.3.0/dbinfo.html
share/doc/db/ref/upgrade.3.0/disk.html
share/doc/db/ref/upgrade.3.0/eacces.html
@ -507,7 +340,6 @@ share/doc/db/ref/upgrade.3.0/eagain.html
share/doc/db/ref/upgrade.3.0/envopen.html
share/doc/db/ref/upgrade.3.0/func.html
share/doc/db/ref/upgrade.3.0/intro.html
share/doc/db/ref/upgrade.3.0/java.html
share/doc/db/ref/upgrade.3.0/join.html
share/doc/db/ref/upgrade.3.0/jump_set.html
share/doc/db/ref/upgrade.3.0/lock_detect.html
@ -539,7 +371,6 @@ share/doc/db/ref/upgrade.3.1/set_feedback.html
share/doc/db/ref/upgrade.3.1/set_paniccall.html
share/doc/db/ref/upgrade.3.1/set_tx_recover.html
share/doc/db/ref/upgrade.3.1/sysmem.html
share/doc/db/ref/upgrade.3.1/tcl.html
share/doc/db/ref/upgrade.3.1/tmp.html
share/doc/db/ref/upgrade.3.1/txn_check.html
share/doc/db/ref/xa/config.html
@ -560,12 +391,10 @@ share/doc/db/utility/db_stat.html
share/doc/db/utility/db_upgrade.html
share/doc/db/utility/db_verify.html
share/doc/db/utility/index.html
share/examples/db/AccessExample.cpp
share/examples/db/BtRecExample.cpp
share/examples/db/EnvExample.cpp
share/examples/db/LockExample.cpp
share/examples/db/MpoolExample.cpp
share/examples/db/TpcbExample.cpp
include/db3.h
include/db_185.h
lib/libdb.a
lib/libdb.la
share/examples/db/ex_access.c
share/examples/db/ex_btrec.c
share/examples/db/ex_dbclient.c
@ -575,6 +404,9 @@ share/examples/db/ex_mpool.c
share/examples/db/ex_thread.c
share/examples/db/ex_tpcb.c
%%SHARED%%
%%tcl%%
%%java%%
%%c++%%
@dirrm share/examples/db
@dirrm share/doc/db/utility
@dirrm share/doc/db/sleepycat
@ -585,7 +417,6 @@ share/examples/db/ex_tpcb.c
@dirrm share/doc/db/ref/txn
@dirrm share/doc/db/ref/transapp
@dirrm share/doc/db/ref/test
@dirrm share/doc/db/ref/tcl
@dirrm share/doc/db/ref/simple_tut
@dirrm share/doc/db/ref/sendmail
@dirrm share/doc/db/ref/rpc
@ -610,7 +441,5 @@ share/examples/db/ex_tpcb.c
@dirrm share/doc/db/ref/am
@dirrm share/doc/db/ref
@dirrm share/doc/db/images
@dirrm share/doc/db/api_tcl
@dirrm share/doc/db/api_cxx
@dirrm share/doc/db/api_c
@dirrm share/doc/db

View File

@ -1,751 +0,0 @@
@comment $OpenBSD: PLIST-java,v 1.1 2000/09/04 17:17:47 matt Exp $
bin/db_archive
bin/db_checkpoint
bin/db_deadlock
bin/db_dump
bin/db_dump185
bin/db_load
bin/db_printlog
bin/db_recover
bin/db_stat
bin/db_upgrade
bin/db_verify
include/db3.h
include/db_185.h
include/db_cxx.h
lib/libdb-3.1.la
lib/libdb-3.so
lib/libdb.so
lib/libdb_cxx-3.1.la
lib/libdb_cxx-3.so
lib/libdb_cxx.so
lib/libdb_java-3.1.la
lib/libdb_java-3.1_g.so
lib/libdb_java-3.so
lib/libdb_java.so
share/doc/db/api_c/c_index.html
share/doc/db/api_c/c_pindex.html
share/doc/db/api_c/db_close.html
share/doc/db/api_c/db_create.html
share/doc/db/api_c/db_cursor.html
share/doc/db/api_c/db_del.html
share/doc/db/api_c/db_err.html
share/doc/db/api_c/db_fd.html
share/doc/db/api_c/db_get.html
share/doc/db/api_c/db_get_byteswapped.html
share/doc/db/api_c/db_get_type.html
share/doc/db/api_c/db_join.html
share/doc/db/api_c/db_key_range.html
share/doc/db/api_c/db_lsn.html
share/doc/db/api_c/db_open.html
share/doc/db/api_c/db_put.html
share/doc/db/api_c/db_remove.html
share/doc/db/api_c/db_rename.html
share/doc/db/api_c/db_set_bt_compare.html
share/doc/db/api_c/db_set_bt_minkey.html
share/doc/db/api_c/db_set_bt_prefix.html
share/doc/db/api_c/db_set_cachesize.html
share/doc/db/api_c/db_set_dup_compare.html
share/doc/db/api_c/db_set_errcall.html
share/doc/db/api_c/db_set_errfile.html
share/doc/db/api_c/db_set_errpfx.html
share/doc/db/api_c/db_set_feedback.html
share/doc/db/api_c/db_set_flags.html
share/doc/db/api_c/db_set_h_ffactor.html
share/doc/db/api_c/db_set_h_hash.html
share/doc/db/api_c/db_set_h_nelem.html
share/doc/db/api_c/db_set_lorder.html
share/doc/db/api_c/db_set_malloc.html
share/doc/db/api_c/db_set_pagesize.html
share/doc/db/api_c/db_set_paniccall.html
share/doc/db/api_c/db_set_re_delim.html
share/doc/db/api_c/db_set_re_len.html
share/doc/db/api_c/db_set_re_pad.html
share/doc/db/api_c/db_set_re_source.html
share/doc/db/api_c/db_set_realloc.html
share/doc/db/api_c/db_stat.html
share/doc/db/api_c/db_sync.html
share/doc/db/api_c/db_upgrade.html
share/doc/db/api_c/db_verify.html
share/doc/db/api_c/dbc_close.html
share/doc/db/api_c/dbc_count.html
share/doc/db/api_c/dbc_del.html
share/doc/db/api_c/dbc_dup.html
share/doc/db/api_c/dbc_get.html
share/doc/db/api_c/dbc_put.html
share/doc/db/api_c/dbm.html
share/doc/db/api_c/dbt.html
share/doc/db/api_c/env_close.html
share/doc/db/api_c/env_create.html
share/doc/db/api_c/env_open.html
share/doc/db/api_c/env_remove.html
share/doc/db/api_c/env_set_cachesize.html
share/doc/db/api_c/env_set_data_dir.html
share/doc/db/api_c/env_set_errcall.html
share/doc/db/api_c/env_set_errfile.html
share/doc/db/api_c/env_set_errpfx.html
share/doc/db/api_c/env_set_feedback.html
share/doc/db/api_c/env_set_lg_bsize.html
share/doc/db/api_c/env_set_lg_dir.html
share/doc/db/api_c/env_set_lg_max.html
share/doc/db/api_c/env_set_lk_conflicts.html
share/doc/db/api_c/env_set_lk_detect.html
share/doc/db/api_c/env_set_lk_max.html
share/doc/db/api_c/env_set_mp_mmapsize.html
share/doc/db/api_c/env_set_mutexlocks.html
share/doc/db/api_c/env_set_pageyield.html
share/doc/db/api_c/env_set_paniccall.html
share/doc/db/api_c/env_set_panicstate.html
share/doc/db/api_c/env_set_rec_init.html
share/doc/db/api_c/env_set_region_init.html
share/doc/db/api_c/env_set_server.html
share/doc/db/api_c/env_set_shm_key.html
share/doc/db/api_c/env_set_tas_spins.html
share/doc/db/api_c/env_set_tmp_dir.html
share/doc/db/api_c/env_set_tx_max.html
share/doc/db/api_c/env_set_tx_recover.html
share/doc/db/api_c/env_set_tx_timestamp.html
share/doc/db/api_c/env_set_verbose.html
share/doc/db/api_c/env_strerror.html
share/doc/db/api_c/env_version.html
share/doc/db/api_c/hsearch.html
share/doc/db/api_c/lock_detect.html
share/doc/db/api_c/lock_get.html
share/doc/db/api_c/lock_id.html
share/doc/db/api_c/lock_put.html
share/doc/db/api_c/lock_stat.html
share/doc/db/api_c/lock_vec.html
share/doc/db/api_c/log_archive.html
share/doc/db/api_c/log_compare.html
share/doc/db/api_c/log_file.html
share/doc/db/api_c/log_flush.html
share/doc/db/api_c/log_get.html
share/doc/db/api_c/log_put.html
share/doc/db/api_c/log_register.html
share/doc/db/api_c/log_stat.html
share/doc/db/api_c/log_unregister.html
share/doc/db/api_c/memp_fclose.html
share/doc/db/api_c/memp_fget.html
share/doc/db/api_c/memp_fopen.html
share/doc/db/api_c/memp_fput.html
share/doc/db/api_c/memp_fset.html
share/doc/db/api_c/memp_fsync.html
share/doc/db/api_c/memp_register.html
share/doc/db/api_c/memp_stat.html
share/doc/db/api_c/memp_sync.html
share/doc/db/api_c/memp_trickle.html
share/doc/db/api_c/pindex.src
share/doc/db/api_c/set_func_close.html
share/doc/db/api_c/set_func_dirfree.html
share/doc/db/api_c/set_func_dirlist.html
share/doc/db/api_c/set_func_exists.html
share/doc/db/api_c/set_func_free.html
share/doc/db/api_c/set_func_fsync.html
share/doc/db/api_c/set_func_ioinfo.html
share/doc/db/api_c/set_func_malloc.html
share/doc/db/api_c/set_func_map.html
share/doc/db/api_c/set_func_open.html
share/doc/db/api_c/set_func_read.html
share/doc/db/api_c/set_func_realloc.html
share/doc/db/api_c/set_func_rename.html
share/doc/db/api_c/set_func_seek.html
share/doc/db/api_c/set_func_sleep.html
share/doc/db/api_c/set_func_unlink.html
share/doc/db/api_c/set_func_unmap.html
share/doc/db/api_c/set_func_write.html
share/doc/db/api_c/set_func_yield.html
share/doc/db/api_c/txn_abort.html
share/doc/db/api_c/txn_begin.html
share/doc/db/api_c/txn_checkpoint.html
share/doc/db/api_c/txn_commit.html
share/doc/db/api_c/txn_id.html
share/doc/db/api_c/txn_prepare.html
share/doc/db/api_c/txn_stat.html
share/doc/db/api_cxx/cxx_index.html
share/doc/db/api_cxx/cxx_pindex.html
share/doc/db/api_cxx/db_class.html
share/doc/db/api_cxx/db_close.html
share/doc/db/api_cxx/db_cursor.html
share/doc/db/api_cxx/db_del.html
share/doc/db/api_cxx/db_err.html
share/doc/db/api_cxx/db_fd.html
share/doc/db/api_cxx/db_get.html
share/doc/db/api_cxx/db_get_byteswapped.html
share/doc/db/api_cxx/db_get_type.html
share/doc/db/api_cxx/db_join.html
share/doc/db/api_cxx/db_key_range.html
share/doc/db/api_cxx/db_open.html
share/doc/db/api_cxx/db_put.html
share/doc/db/api_cxx/db_remove.html
share/doc/db/api_cxx/db_rename.html
share/doc/db/api_cxx/db_set_bt_compare.html
share/doc/db/api_cxx/db_set_bt_minkey.html
share/doc/db/api_cxx/db_set_bt_prefix.html
share/doc/db/api_cxx/db_set_cachesize.html
share/doc/db/api_cxx/db_set_dup_compare.html
share/doc/db/api_cxx/db_set_errcall.html
share/doc/db/api_cxx/db_set_errfile.html
share/doc/db/api_cxx/db_set_errpfx.html
share/doc/db/api_cxx/db_set_feedback.html
share/doc/db/api_cxx/db_set_flags.html
share/doc/db/api_cxx/db_set_h_ffactor.html
share/doc/db/api_cxx/db_set_h_hash.html
share/doc/db/api_cxx/db_set_h_nelem.html
share/doc/db/api_cxx/db_set_lorder.html
share/doc/db/api_cxx/db_set_malloc.html
share/doc/db/api_cxx/db_set_pagesize.html
share/doc/db/api_cxx/db_set_paniccall.html
share/doc/db/api_cxx/db_set_re_delim.html
share/doc/db/api_cxx/db_set_re_len.html
share/doc/db/api_cxx/db_set_re_pad.html
share/doc/db/api_cxx/db_set_re_source.html
share/doc/db/api_cxx/db_set_realloc.html
share/doc/db/api_cxx/db_stat.html
share/doc/db/api_cxx/db_sync.html
share/doc/db/api_cxx/db_upgrade.html
share/doc/db/api_cxx/db_verify.html
share/doc/db/api_cxx/dbc_class.html
share/doc/db/api_cxx/dbc_close.html
share/doc/db/api_cxx/dbc_count.html
share/doc/db/api_cxx/dbc_del.html
share/doc/db/api_cxx/dbc_dup.html
share/doc/db/api_cxx/dbc_get.html
share/doc/db/api_cxx/dbc_put.html
share/doc/db/api_cxx/dbenv_class.html
share/doc/db/api_cxx/dbt_class.html
share/doc/db/api_cxx/env_close.html
share/doc/db/api_cxx/env_open.html
share/doc/db/api_cxx/env_remove.html
share/doc/db/api_cxx/env_set_cachesize.html
share/doc/db/api_cxx/env_set_data_dir.html
share/doc/db/api_cxx/env_set_errcall.html
share/doc/db/api_cxx/env_set_errfile.html
share/doc/db/api_cxx/env_set_error_stream.html
share/doc/db/api_cxx/env_set_errpfx.html
share/doc/db/api_cxx/env_set_feedback.html
share/doc/db/api_cxx/env_set_lg_bsize.html
share/doc/db/api_cxx/env_set_lg_dir.html
share/doc/db/api_cxx/env_set_lg_max.html
share/doc/db/api_cxx/env_set_lk_conflicts.html
share/doc/db/api_cxx/env_set_lk_detect.html
share/doc/db/api_cxx/env_set_lk_max.html
share/doc/db/api_cxx/env_set_mp_mmapsize.html
share/doc/db/api_cxx/env_set_mutexlocks.html
share/doc/db/api_cxx/env_set_pageyield.html
share/doc/db/api_cxx/env_set_paniccall.html
share/doc/db/api_cxx/env_set_panicstate.html
share/doc/db/api_cxx/env_set_rec_init.html
share/doc/db/api_cxx/env_set_region_init.html
share/doc/db/api_cxx/env_set_server.html
share/doc/db/api_cxx/env_set_shm_key.html
share/doc/db/api_cxx/env_set_tas_spins.html
share/doc/db/api_cxx/env_set_tmp_dir.html
share/doc/db/api_cxx/env_set_tx_max.html
share/doc/db/api_cxx/env_set_tx_recover.html
share/doc/db/api_cxx/env_set_tx_timestamp.html
share/doc/db/api_cxx/env_set_verbose.html
share/doc/db/api_cxx/env_strerror.html
share/doc/db/api_cxx/env_version.html
share/doc/db/api_cxx/except_class.html
share/doc/db/api_cxx/get_errno.html
share/doc/db/api_cxx/lock_class.html
share/doc/db/api_cxx/lock_detect.html
share/doc/db/api_cxx/lock_get.html
share/doc/db/api_cxx/lock_id.html
share/doc/db/api_cxx/lock_put.html
share/doc/db/api_cxx/lock_stat.html
share/doc/db/api_cxx/lock_vec.html
share/doc/db/api_cxx/log_archive.html
share/doc/db/api_cxx/log_compare.html
share/doc/db/api_cxx/log_file.html
share/doc/db/api_cxx/log_flush.html
share/doc/db/api_cxx/log_get.html
share/doc/db/api_cxx/log_put.html
share/doc/db/api_cxx/log_register.html
share/doc/db/api_cxx/log_stat.html
share/doc/db/api_cxx/log_unregister.html
share/doc/db/api_cxx/lsn_class.html
share/doc/db/api_cxx/memp_fclose.html
share/doc/db/api_cxx/memp_fget.html
share/doc/db/api_cxx/memp_fopen.html
share/doc/db/api_cxx/memp_fput.html
share/doc/db/api_cxx/memp_fset.html
share/doc/db/api_cxx/memp_fsync.html
share/doc/db/api_cxx/memp_register.html
share/doc/db/api_cxx/memp_stat.html
share/doc/db/api_cxx/memp_sync.html
share/doc/db/api_cxx/memp_trickle.html
share/doc/db/api_cxx/mempfile_class.html
share/doc/db/api_cxx/pindex.src
share/doc/db/api_cxx/txn_abort.html
share/doc/db/api_cxx/txn_begin.html
share/doc/db/api_cxx/txn_checkpoint.html
share/doc/db/api_cxx/txn_class.html
share/doc/db/api_cxx/txn_commit.html
share/doc/db/api_cxx/txn_id.html
share/doc/db/api_cxx/txn_prepare.html
share/doc/db/api_cxx/txn_stat.html
share/doc/db/api_cxx/what.html
share/doc/db/api_java/db_class.html
share/doc/db/api_java/db_close.html
share/doc/db/api_java/db_cursor.html
share/doc/db/api_java/db_del.html
share/doc/db/api_java/db_fd.html
share/doc/db/api_java/db_get.html
share/doc/db/api_java/db_get_byteswapped.html
share/doc/db/api_java/db_get_type.html
share/doc/db/api_java/db_join.html
share/doc/db/api_java/db_key_range.html
share/doc/db/api_java/db_open.html
share/doc/db/api_java/db_put.html
share/doc/db/api_java/db_remove.html
share/doc/db/api_java/db_rename.html
share/doc/db/api_java/db_set_bt_minkey.html
share/doc/db/api_java/db_set_cachesize.html
share/doc/db/api_java/db_set_errcall.html
share/doc/db/api_java/db_set_errpfx.html
share/doc/db/api_java/db_set_feedback.html
share/doc/db/api_java/db_set_flags.html
share/doc/db/api_java/db_set_h_ffactor.html
share/doc/db/api_java/db_set_h_nelem.html
share/doc/db/api_java/db_set_lorder.html
share/doc/db/api_java/db_set_pagesize.html
share/doc/db/api_java/db_set_re_delim.html
share/doc/db/api_java/db_set_re_len.html
share/doc/db/api_java/db_set_re_pad.html
share/doc/db/api_java/db_set_re_source.html
share/doc/db/api_java/db_stat.html
share/doc/db/api_java/db_sync.html
share/doc/db/api_java/db_upgrade.html
share/doc/db/api_java/db_verify.html
share/doc/db/api_java/dbc_class.html
share/doc/db/api_java/dbc_close.html
share/doc/db/api_java/dbc_count.html
share/doc/db/api_java/dbc_del.html
share/doc/db/api_java/dbc_dup.html
share/doc/db/api_java/dbc_get.html
share/doc/db/api_java/dbc_put.html
share/doc/db/api_java/dbenv_class.html
share/doc/db/api_java/dbt_class.html
share/doc/db/api_java/deadlock_class.html
share/doc/db/api_java/env_close.html
share/doc/db/api_java/env_open.html
share/doc/db/api_java/env_remove.html
share/doc/db/api_java/env_set_cachesize.html
share/doc/db/api_java/env_set_data_dir.html
share/doc/db/api_java/env_set_errcall.html
share/doc/db/api_java/env_set_error_stream.html
share/doc/db/api_java/env_set_errpfx.html
share/doc/db/api_java/env_set_feedback.html
share/doc/db/api_java/env_set_lg_bsize.html
share/doc/db/api_java/env_set_lg_dir.html
share/doc/db/api_java/env_set_lg_max.html
share/doc/db/api_java/env_set_lk_conflicts.html
share/doc/db/api_java/env_set_lk_detect.html
share/doc/db/api_java/env_set_lk_max.html
share/doc/db/api_java/env_set_mp_mmapsize.html
share/doc/db/api_java/env_set_mutexlocks.html
share/doc/db/api_java/env_set_pageyield.html
share/doc/db/api_java/env_set_panicstate.html
share/doc/db/api_java/env_set_rec_init.html
share/doc/db/api_java/env_set_region_init.html
share/doc/db/api_java/env_set_server.html
share/doc/db/api_java/env_set_shm_key.html
share/doc/db/api_java/env_set_tas_spins.html
share/doc/db/api_java/env_set_tmp_dir.html
share/doc/db/api_java/env_set_tx_max.html
share/doc/db/api_java/env_set_tx_timestamp.html
share/doc/db/api_java/env_set_verbose.html
share/doc/db/api_java/env_strerror.html
share/doc/db/api_java/env_version.html
share/doc/db/api_java/except_class.html
share/doc/db/api_java/get_errno.html
share/doc/db/api_java/java_index.html
share/doc/db/api_java/java_pindex.html
share/doc/db/api_java/lock_class.html
share/doc/db/api_java/lock_detect.html
share/doc/db/api_java/lock_get.html
share/doc/db/api_java/lock_id.html
share/doc/db/api_java/lock_put.html
share/doc/db/api_java/lock_stat.html
share/doc/db/api_java/lock_vec.html
share/doc/db/api_java/log_archive.html
share/doc/db/api_java/log_compare.html
share/doc/db/api_java/log_file.html
share/doc/db/api_java/log_flush.html
share/doc/db/api_java/log_get.html
share/doc/db/api_java/log_put.html
share/doc/db/api_java/log_register.html
share/doc/db/api_java/log_stat.html
share/doc/db/api_java/log_unregister.html
share/doc/db/api_java/lsn_class.html
share/doc/db/api_java/mem_class.html
share/doc/db/api_java/memp_fclose.html
share/doc/db/api_java/memp_fget.html
share/doc/db/api_java/memp_fopen.html
share/doc/db/api_java/memp_fput.html
share/doc/db/api_java/memp_fset.html
share/doc/db/api_java/memp_fsync.html
share/doc/db/api_java/memp_register.html
share/doc/db/api_java/memp_stat.html
share/doc/db/api_java/memp_sync.html
share/doc/db/api_java/memp_trickle.html
share/doc/db/api_java/pindex.src
share/doc/db/api_java/runrec_class.html
share/doc/db/api_java/txn_abort.html
share/doc/db/api_java/txn_begin.html
share/doc/db/api_java/txn_checkpoint.html
share/doc/db/api_java/txn_class.html
share/doc/db/api_java/txn_commit.html
share/doc/db/api_java/txn_id.html
share/doc/db/api_java/txn_prepare.html
share/doc/db/api_java/txn_stat.html
share/doc/db/api_tcl/db_close.html
share/doc/db/api_tcl/db_count.html
share/doc/db/api_tcl/db_cursor.html
share/doc/db/api_tcl/db_del.html
share/doc/db/api_tcl/db_get.html
share/doc/db/api_tcl/db_get_join.html
share/doc/db/api_tcl/db_get_type.html
share/doc/db/api_tcl/db_is_byteswapped.html
share/doc/db/api_tcl/db_join.html
share/doc/db/api_tcl/db_open.html
share/doc/db/api_tcl/db_put.html
share/doc/db/api_tcl/db_remove.html
share/doc/db/api_tcl/db_rename.html
share/doc/db/api_tcl/db_stat.html
share/doc/db/api_tcl/db_sync.html
share/doc/db/api_tcl/dbc_close.html
share/doc/db/api_tcl/dbc_del.html
share/doc/db/api_tcl/dbc_dup.html
share/doc/db/api_tcl/dbc_get.html
share/doc/db/api_tcl/dbc_put.html
share/doc/db/api_tcl/env_close.html
share/doc/db/api_tcl/env_open.html
share/doc/db/api_tcl/env_remove.html
share/doc/db/api_tcl/pindex.src
share/doc/db/api_tcl/tcl_index.html
share/doc/db/api_tcl/tcl_pindex.html
share/doc/db/api_tcl/txn.html
share/doc/db/api_tcl/txn_abort.html
share/doc/db/api_tcl/txn_commit.html
share/doc/db/api_tcl/version.html
share/doc/db/images/api.gif
share/doc/db/images/next.gif
share/doc/db/images/prev.gif
share/doc/db/images/ps.gif
share/doc/db/images/ref.gif
share/doc/db/images/sleepycat.gif
share/doc/db/index.html
share/doc/db/ref/am/close.html
share/doc/db/ref/am/count.html
share/doc/db/ref/am/curclose.html
share/doc/db/ref/am/curdel.html
share/doc/db/ref/am/curdup.html
share/doc/db/ref/am/curget.html
share/doc/db/ref/am/curput.html
share/doc/db/ref/am/cursor.html
share/doc/db/ref/am/delete.html
share/doc/db/ref/am/error.html
share/doc/db/ref/am/get.html
share/doc/db/ref/am/join.html
share/doc/db/ref/am/open.html
share/doc/db/ref/am/opensub.html
share/doc/db/ref/am/ops.html
share/doc/db/ref/am/partial.html
share/doc/db/ref/am/put.html
share/doc/db/ref/am/stat.html
share/doc/db/ref/am/sync.html
share/doc/db/ref/am/upgrade.html
share/doc/db/ref/am/verify.html
share/doc/db/ref/am_conf/bt_compare.html
share/doc/db/ref/am_conf/bt_minkey.html
share/doc/db/ref/am_conf/bt_prefix.html
share/doc/db/ref/am_conf/bt_recnum.html
share/doc/db/ref/am_conf/byteorder.html
share/doc/db/ref/am_conf/cachesize.html
share/doc/db/ref/am_conf/dup.html
share/doc/db/ref/am_conf/h_ffactor.html
share/doc/db/ref/am_conf/h_hash.html
share/doc/db/ref/am_conf/h_nelem.html
share/doc/db/ref/am_conf/intro.html
share/doc/db/ref/am_conf/logrec.html
share/doc/db/ref/am_conf/malloc.html
share/doc/db/ref/am_conf/pagesize.html
share/doc/db/ref/am_conf/re_source.html
share/doc/db/ref/am_conf/recno.html
share/doc/db/ref/am_conf/renumber.html
share/doc/db/ref/am_conf/select.html
share/doc/db/ref/arch/apis.html
share/doc/db/ref/arch/bigpic.gif
share/doc/db/ref/arch/bigpic.html
share/doc/db/ref/arch/progmodel.html
share/doc/db/ref/arch/script.html
share/doc/db/ref/arch/smallpic.gif
share/doc/db/ref/arch/utilities.html
share/doc/db/ref/build_unix/aix.html
share/doc/db/ref/build_unix/conf.html
share/doc/db/ref/build_unix/flags.html
share/doc/db/ref/build_unix/freebsd.html
share/doc/db/ref/build_unix/hpux.html
share/doc/db/ref/build_unix/install.html
share/doc/db/ref/build_unix/intro.html
share/doc/db/ref/build_unix/irix.html
share/doc/db/ref/build_unix/linux.html
share/doc/db/ref/build_unix/notes.html
share/doc/db/ref/build_unix/osf1.html
share/doc/db/ref/build_unix/sco.html
share/doc/db/ref/build_unix/shlib.html
share/doc/db/ref/build_unix/solaris.html
share/doc/db/ref/build_unix/sunos.html
share/doc/db/ref/build_unix/test.html
share/doc/db/ref/build_unix/ultrix.html
share/doc/db/ref/build_vxworks/faq.html
share/doc/db/ref/build_vxworks/intro.html
share/doc/db/ref/build_vxworks/notes.html
share/doc/db/ref/build_win/faq.html
share/doc/db/ref/build_win/intro.html
share/doc/db/ref/build_win/notes.html
share/doc/db/ref/build_win/test.html
share/doc/db/ref/cam/intro.html
share/doc/db/ref/debug/common.html
share/doc/db/ref/debug/compile.html
share/doc/db/ref/debug/intro.html
share/doc/db/ref/debug/printlog.html
share/doc/db/ref/debug/runtime.html
share/doc/db/ref/distrib/layout.html
share/doc/db/ref/dumpload/format.html
share/doc/db/ref/dumpload/text.html
share/doc/db/ref/dumpload/utility.html
share/doc/db/ref/env/create.html
share/doc/db/ref/env/error.html
share/doc/db/ref/env/intro.html
share/doc/db/ref/env/naming.html
share/doc/db/ref/env/open.html
share/doc/db/ref/env/region.html
share/doc/db/ref/env/remote.html
share/doc/db/ref/env/security.html
share/doc/db/ref/install/file.html
share/doc/db/ref/install/magic.s5.be.txt
share/doc/db/ref/install/magic.s5.le.txt
share/doc/db/ref/install/magic.txt
share/doc/db/ref/intro/distrib.html
share/doc/db/ref/intro/do.html
share/doc/db/ref/intro/products.html
share/doc/db/ref/intro/what.html
share/doc/db/ref/intro/where.html
share/doc/db/ref/java/compat.html
share/doc/db/ref/java/conf.html
share/doc/db/ref/java/program.html
share/doc/db/ref/lock/am_conv.html
share/doc/db/ref/lock/cam_conv.html
share/doc/db/ref/lock/config.html
share/doc/db/ref/lock/dead.html
share/doc/db/ref/lock/intro.html
share/doc/db/ref/lock/nondb.html
share/doc/db/ref/lock/notxn.html
share/doc/db/ref/lock/page.html
share/doc/db/ref/lock/stdmode.html
share/doc/db/ref/lock/twopl.html
share/doc/db/ref/log/config.html
share/doc/db/ref/log/intro.html
share/doc/db/ref/log/limits.html
share/doc/db/ref/mp/config.html
share/doc/db/ref/mp/intro.html
share/doc/db/ref/perl/intro.html
share/doc/db/ref/pindex.src
share/doc/db/ref/program/appsignals.html
share/doc/db/ref/program/byteorder.html
share/doc/db/ref/program/compatible.html
share/doc/db/ref/program/copy.html
share/doc/db/ref/program/dbsizes.html
share/doc/db/ref/program/diskspace.html
share/doc/db/ref/program/environ.html
share/doc/db/ref/program/errorret.html
share/doc/db/ref/program/extending.html
share/doc/db/ref/program/mt.html
share/doc/db/ref/program/namespace.html
share/doc/db/ref/program/runtime.html
share/doc/db/ref/program/solaris.txt
share/doc/db/ref/program/version.html
share/doc/db/ref/refs/bdb_usenix.html
share/doc/db/ref/refs/bdb_usenix.ps
share/doc/db/ref/refs/embedded.html
share/doc/db/ref/refs/hash_usenix.ps
share/doc/db/ref/refs/libtp_usenix.ps
share/doc/db/ref/refs/refs.html
share/doc/db/ref/refs/witold.html
share/doc/db/ref/rpc/client.html
share/doc/db/ref/rpc/intro.html
share/doc/db/ref/rpc/server.html
share/doc/db/ref/sendmail/intro.html
share/doc/db/ref/simple_tut/close.html
share/doc/db/ref/simple_tut/del.html
share/doc/db/ref/simple_tut/errors.html
share/doc/db/ref/simple_tut/example.txt
share/doc/db/ref/simple_tut/get.html
share/doc/db/ref/simple_tut/handles.html
share/doc/db/ref/simple_tut/intro.html
share/doc/db/ref/simple_tut/keydata.html
share/doc/db/ref/simple_tut/open.html
share/doc/db/ref/simple_tut/put.html
share/doc/db/ref/tcl/error.html
share/doc/db/ref/tcl/intro.html
share/doc/db/ref/tcl/program.html
share/doc/db/ref/tcl/using.html
share/doc/db/ref/test/run.html
share/doc/db/ref/toc.html
share/doc/db/ref/transapp/admin.html
share/doc/db/ref/transapp/app.html
share/doc/db/ref/transapp/archival.html
share/doc/db/ref/transapp/checkpoint.html
share/doc/db/ref/transapp/deadlock.html
share/doc/db/ref/transapp/filesys.html
share/doc/db/ref/transapp/intro.html
share/doc/db/ref/transapp/recimp.html
share/doc/db/ref/transapp/reclimit.html
share/doc/db/ref/transapp/recovery.html
share/doc/db/ref/transapp/routine.html
share/doc/db/ref/transapp/term.html
share/doc/db/ref/transapp/throughput.html
share/doc/db/ref/transapp/writetest.txt
share/doc/db/ref/txn/config.html
share/doc/db/ref/txn/intro.html
share/doc/db/ref/txn/limits.html
share/doc/db/ref/txn/nested.html
share/doc/db/ref/txn/other.html
share/doc/db/ref/txn/stability.html
share/doc/db/ref/upgrade.2.0/convert.html
share/doc/db/ref/upgrade.2.0/disk.html
share/doc/db/ref/upgrade.2.0/intro.html
share/doc/db/ref/upgrade.2.0/system.html
share/doc/db/ref/upgrade.3.0/close.html
share/doc/db/ref/upgrade.3.0/cxx.html
share/doc/db/ref/upgrade.3.0/db.html
share/doc/db/ref/upgrade.3.0/db_cxx.html
share/doc/db/ref/upgrade.3.0/dbenv.html
share/doc/db/ref/upgrade.3.0/dbenv_cxx.html
share/doc/db/ref/upgrade.3.0/dbinfo.html
share/doc/db/ref/upgrade.3.0/disk.html
share/doc/db/ref/upgrade.3.0/eacces.html
share/doc/db/ref/upgrade.3.0/eagain.html
share/doc/db/ref/upgrade.3.0/envopen.html
share/doc/db/ref/upgrade.3.0/func.html
share/doc/db/ref/upgrade.3.0/intro.html
share/doc/db/ref/upgrade.3.0/java.html
share/doc/db/ref/upgrade.3.0/join.html
share/doc/db/ref/upgrade.3.0/jump_set.html
share/doc/db/ref/upgrade.3.0/lock_detect.html
share/doc/db/ref/upgrade.3.0/lock_notheld.html
share/doc/db/ref/upgrade.3.0/lock_put.html
share/doc/db/ref/upgrade.3.0/lock_stat.html
share/doc/db/ref/upgrade.3.0/log_register.html
share/doc/db/ref/upgrade.3.0/log_stat.html
share/doc/db/ref/upgrade.3.0/memp_stat.html
share/doc/db/ref/upgrade.3.0/open.html
share/doc/db/ref/upgrade.3.0/rmw.html
share/doc/db/ref/upgrade.3.0/stat.html
share/doc/db/ref/upgrade.3.0/txn_begin.html
share/doc/db/ref/upgrade.3.0/txn_commit.html
share/doc/db/ref/upgrade.3.0/txn_stat.html
share/doc/db/ref/upgrade.3.0/value_set.html
share/doc/db/ref/upgrade.3.0/xa.html
share/doc/db/ref/upgrade.3.1/btstat.html
share/doc/db/ref/upgrade.3.1/config.html
share/doc/db/ref/upgrade.3.1/disk.html
share/doc/db/ref/upgrade.3.1/dup.html
share/doc/db/ref/upgrade.3.1/env.html
share/doc/db/ref/upgrade.3.1/intro.html
share/doc/db/ref/upgrade.3.1/log_register.html
share/doc/db/ref/upgrade.3.1/logalloc.html
share/doc/db/ref/upgrade.3.1/memp_register.html
share/doc/db/ref/upgrade.3.1/put.html
share/doc/db/ref/upgrade.3.1/set_feedback.html
share/doc/db/ref/upgrade.3.1/set_paniccall.html
share/doc/db/ref/upgrade.3.1/set_tx_recover.html
share/doc/db/ref/upgrade.3.1/sysmem.html
share/doc/db/ref/upgrade.3.1/tcl.html
share/doc/db/ref/upgrade.3.1/tmp.html
share/doc/db/ref/upgrade.3.1/txn_check.html
share/doc/db/ref/xa/config.html
share/doc/db/ref/xa/faq.html
share/doc/db/ref/xa/intro.html
share/doc/db/sleepycat/contact.html
share/doc/db/sleepycat/legal.html
share/doc/db/sleepycat/license.html
share/doc/db/utility/berkeley_db_svc.html
share/doc/db/utility/db_archive.html
share/doc/db/utility/db_checkpoint.html
share/doc/db/utility/db_deadlock.html
share/doc/db/utility/db_dump.html
share/doc/db/utility/db_load.html
share/doc/db/utility/db_printlog.html
share/doc/db/utility/db_recover.html
share/doc/db/utility/db_stat.html
share/doc/db/utility/db_upgrade.html
share/doc/db/utility/db_verify.html
share/doc/db/utility/index.html
share/examples/db/AccessExample.cpp
share/examples/db/AccessExample.java
share/examples/db/BtRecExample.cpp
share/examples/db/BtRecExample.java
share/examples/db/EnvExample.cpp
share/examples/db/EnvExample.java
share/examples/db/LockExample.cpp
share/examples/db/LockExample.java
share/examples/db/MpoolExample.cpp
share/examples/db/TpcbExample.cpp
share/examples/db/TpcbExample.java
share/examples/db/ex_access.c
share/examples/db/ex_btrec.c
share/examples/db/ex_dbclient.c
share/examples/db/ex_env.c
share/examples/db/ex_lock.c
share/examples/db/ex_mpool.c
share/examples/db/ex_thread.c
share/examples/db/ex_tpcb.c
lib/libdb-3.1.so.0.0
lib/libdb_cxx-3.1.so.0.0
lib/libdb_java-3.1.so.0.0
DYNLIBDIR(%D/lib)
@dirrm share/examples/db
@dirrm share/doc/db/utility
@dirrm share/doc/db/sleepycat
@dirrm share/doc/db/ref/xa
@dirrm share/doc/db/ref/upgrade.3.1
@dirrm share/doc/db/ref/upgrade.3.0
@dirrm share/doc/db/ref/upgrade.2.0
@dirrm share/doc/db/ref/txn
@dirrm share/doc/db/ref/transapp
@dirrm share/doc/db/ref/test
@dirrm share/doc/db/ref/tcl
@dirrm share/doc/db/ref/simple_tut
@dirrm share/doc/db/ref/sendmail
@dirrm share/doc/db/ref/rpc
@dirrm share/doc/db/ref/refs
@dirrm share/doc/db/ref/program
@dirrm share/doc/db/ref/perl
@dirrm share/doc/db/ref/mp
@dirrm share/doc/db/ref/log
@dirrm share/doc/db/ref/lock
@dirrm share/doc/db/ref/java
@dirrm share/doc/db/ref/intro
@dirrm share/doc/db/ref/install
@dirrm share/doc/db/ref/env
@dirrm share/doc/db/ref/dumpload
@dirrm share/doc/db/ref/distrib
@dirrm share/doc/db/ref/debug
@dirrm share/doc/db/ref/cam
@dirrm share/doc/db/ref/build_win
@dirrm share/doc/db/ref/build_vxworks
@dirrm share/doc/db/ref/build_unix
@dirrm share/doc/db/ref/arch
@dirrm share/doc/db/ref/am_conf
@dirrm share/doc/db/ref/am
@dirrm share/doc/db/ref
@dirrm share/doc/db/images
@dirrm share/doc/db/api_tcl
@dirrm share/doc/db/api_java
@dirrm share/doc/db/api_cxx
@dirrm share/doc/db/api_c
@dirrm share/doc/db