diff options
author | cvs2svn <cvs2svn@FreeBSD.org> | 2000-07-21 18:15:36 +0000 |
---|---|---|
committer | cvs2svn <cvs2svn@FreeBSD.org> | 2000-07-21 18:15:36 +0000 |
commit | 70f89778c0f2f76bc2f8046e99cc55f2962ac9c2 (patch) | |
tree | 14c35099cfb4f4257c5e0b8e589d530fcb829468 /databases | |
parent | f667b39b3c0614d5aeb9bcb4bac4a4b222408185 (diff) |
This commit was manufactured by cvs2svn to create tag 'RELEASE_4_1_0'.release/4.1.0
Notes
Notes:
svn path=/head/; revision=30942
svn path=/tags/RELEASE_4_1_0/; revision=30943; tag=release/4.1.0
Diffstat (limited to 'databases')
587 files changed, 0 insertions, 45623 deletions
diff --git a/databases/db2/Makefile b/databases/db2/Makefile deleted file mode 100644 index 9b1fe8a00a1e..000000000000 --- a/databases/db2/Makefile +++ /dev/null @@ -1,41 +0,0 @@ -# ports collection makefile for: Berkeley DB -# Date created: 26 Jan 1998 -# Whom: Josh Tiefenbach <josh@ican.net> -# -# $FreeBSD$ -# - -PORTNAME= db -PORTVERSION= 2.7.7 -CATEGORIES= databases -MASTER_SITES= http://www.sleepycat.com/update/${PORTVERSION}/ - -MAINTAINER= josh@ican.net - -Y2K= http://www.sleepycat.com/faq.html#A8 - -MANUAL_PACKAGE_BUILD= incompatible with libc internal db calls -WRKSRC= ${WRKDIR}/${DISTNAME}/build_unix - -INSTALLS_SHLIB= yes -GNU_CONFIGURE= yes -CONFIGURE_SCRIPT= ../dist/configure -CONFIGURE_ARGS= --enable-compat185 \ - --enable-dump185 --enable-cxx - -post-install: - ${MKDIR} ${PREFIX}/share/examples/db2 - cd ${WRKSRC}/..; \ - tar -cf - --exclude tags examples/ examples_cxx/ examples_java/ | \ - ( cd ${PREFIX}/share/examples/db2; tar xf - ) - @${ECHO_MSG} "" - @${ECHO_MSG} "Java support for ${PKGNAME} is *not* built by default, and requires that you" - @${ECHO_MSG} "have a working copy of the JDK (v1.1) installed." - @${ECHO_MSG} "" - @${ECHO_MSG} "To build java support, please read:" - @${ECHO_MSG} "" - @${ECHO_MSG} "${WRKDIR}/${DISTNAME}/java/README" - @${ECHO_MSG} "" - @${ECHO_MSG} "and follow the directions therein." - -.include <bsd.port.mk> diff --git a/databases/db2/distinfo b/databases/db2/distinfo deleted file mode 100644 index d761baf3bdff..000000000000 --- a/databases/db2/distinfo +++ /dev/null @@ -1 +0,0 @@ -MD5 (db-2.7.7.tar.gz) = 20256735091ee382c6601117d82d749a diff --git a/databases/db2/files/patch-aa b/databases/db2/files/patch-aa deleted file mode 100644 index db3d430758a2..000000000000 --- a/databases/db2/files/patch-aa +++ /dev/null @@ -1,506 +0,0 @@ ---- ../dist/Makefile.in.orig Mon Dec 7 21:05:59 1998 -+++ ../dist/Makefile.in Tue Jun 6 17:44:50 2000 -@@ -1,13 +1,16 @@ - # @(#)Makefile.in 10.62 (Sleepycat) 12/7/98 - -+SOVER?= 0 -+ - srcdir= @srcdir@/.. - CPPFLAGS=-I. -I$(srcdir)/include @CPPFLAGS@ -+SHAREDFLAGS= -fpic -DPIC - CFLAGS= -c @CFLAGS@ $(CPPFLAGS) - CC= @CC@ - CXXFLAGS=-c @CXXFLAGS@ $(CPPFLAGS) - CXX= @CXX@ --LDFLAGS=@LDFLAGS@ --LIBS= @LIBS@ -+LDFLAGS=@LDFLAGS@ -L. -+LIBS= @LIBS@ -ldb2 - - SHELL= @db_cv_path_sh@ - ar= @db_cv_path_ar@ cr -@@ -43,85 +46,91 @@ - LOBJS= @LIBOBJS@ - POBJS= err.o getlong.o - --libdb= libdb.a --all: $(libdb) $(PROGS) -+libdb= libdb2.a -+libdbso= libdb2.so.$(SOVER) -+all: $(libdb) $(libdbso) $(PROGS) - - $(libdb): db.h $(OBJS) $(LOBJS) - $(rm) -f $@ - $(ar) $@ $(OBJS) $(LOBJS) - test ! -f $(ranlib) || $(ranlib) $@ - -+$(libdbso): db.h $(OBJS:S/.o$/.so/g) $(LOBJS:S/.o$/.so/g) -+ $(rm) -f $@ -+ $(CXX) -shared -Wl,-x -Wl,-assert -Wl,pure-text -Wl,-soname,$@ -o $@ $(OBJS:S/.o$/.so/g) $(LOBJS:S/.o$/.so/g) -+ ln -sf $@ libdb2.so -+ - DBA= db_archive.o $(POBJS) --db_archive: $(DBA) $(libdb) -- $(CC) -o $@ $(LDFLAGS) $(DBA) $(libdb) $(LIBS) -+db_archive: $(DBA) $(libdbso) -+ $(CC) -o $@ $(LDFLAGS) $(DBA) $(LIBS) - - DBB= db_checkpoint.o $(POBJS) --db_checkpoint: $(DBB) $(libdb) -- $(CC) -o $@ $(LDFLAGS) $(DBB) $(libdb) $(LIBS) -+db_checkpoint: $(DBB) $(libdbso) -+ $(CC) -o $@ $(LDFLAGS) $(DBB) $(LIBS) - - DBC= db_deadlock.o $(POBJS) --db_deadlock: $(DBC) $(libdb) -- $(CC) -o $@ $(LDFLAGS) $(DBC) $(libdb) $(LIBS) -+db_deadlock: $(DBC) $(libdbso) -+ $(CC) -o $@ $(LDFLAGS) $(DBC) $(LIBS) - - DBD= db_dump.o $(POBJS) --db_dump: $(DBD) $(libdb) -- $(CC) -o $@ $(LDFLAGS) $(DBD) $(libdb) $(LIBS) -+db_dump: $(DBD) $(libdbso) -+ $(CC) -o $@ $(LDFLAGS) $(DBD) $(LIBS) - - DBE= db_dump185.o $(POBJS) - db_dump185: $(DBE) - $(CC) -o $@ $(LDFLAGS) $(DBE) $(LIBS) - - DBF= db_load.o $(POBJS) --db_load: $(DBF) $(libdb) -- $(CC) -o $@ $(LDFLAGS) $(DBF) $(libdb) $(LIBS) -+db_load: $(DBF) $(libdbso) -+ $(CC) -o $@ $(LDFLAGS) $(DBF) $(LIBS) - - DBG= db_printlog.o $(POBJS) --db_printlog: $(DBG) $(libdb) -- $(CC) -o $@ $(LDFLAGS) $(DBG) $(libdb) $(LIBS) -+db_printlog: $(DBG) $(libdbso) -+ $(CC) -o $@ $(LDFLAGS) $(DBG) $(LIBS) - - DBH= db_recover.o $(POBJS) --db_recover: $(DBH) $(libdb) -- $(CC) -o $@ $(LDFLAGS) $(DBH) $(libdb) $(LIBS) -+db_recover: $(DBH) $(libdbso) -+ $(CC) -o $@ $(LDFLAGS) $(DBH) $(LIBS) - - DBI= db_stat.o $(POBJS) --db_stat: $(DBI) $(libdb) -- $(CC) -o $@ $(LDFLAGS) $(DBI) $(libdb) $(LIBS) -+db_stat: $(DBI) $(libdbso) -+ $(CC) -o $@ $(LDFLAGS) $(DBI) $(LIBS) - - EPROGS= ex_access ex_appinit ex_btrec ex_lock ex_mpool ex_thread ex_tpcb - DBJ= ex_access.o --ex_access: $(DBJ) $(libdb) -- $(CC) -o $@ $(LDFLAGS) $(DBJ) $(libdb) $(LIBS) -+ex_access: $(DBJ) $(libdbso) -+ $(CC) -o $@ $(LDFLAGS) $(DBJ) $(LIBS) - - DBK= ex_appinit.o --ex_appinit: $(DBK) $(libdb) -- $(CC) -o $@ $(LDFLAGS) $(DBK) $(libdb) $(LIBS) -+ex_appinit: $(DBK) $(libdbso) -+ $(CC) -o $@ $(LDFLAGS) $(DBK) $(LIBS) - - DBL= ex_btrec.o --ex_btrec: $(DBL) $(libdb) -- $(CC) -o $@ $(LDFLAGS) $(DBL) $(libdb) $(LIBS) -+ex_btrec: $(DBL) $(libdbso) -+ $(CC) -o $@ $(LDFLAGS) $(DBL) $(LIBS) - - DBM= ex_lock.o $(POBJS) --ex_lock: $(DBM) $(libdb) -- $(CC) -o $@ $(LDFLAGS) $(DBM) $(libdb) $(LIBS) -+ex_lock: $(DBM) $(libdbso) -+ $(CC) -o $@ $(LDFLAGS) $(DBM) $(LIBS) - - DBN= ex_mpool.o --ex_mpool: $(DBN) $(libdb) -- $(CC) -o $@ $(LDFLAGS) $(DBN) $(libdb) $(LIBS) -+ex_mpool: $(DBN) $(libdbso) -+ $(CC) -o $@ $(LDFLAGS) $(DBN) $(LIBS) - - DBO= ex_thread.o --ex_thread: $(DBO) $(libdb) -- $(CC) -o $@ $(LDFLAGS) $(DBO) $(libdb) $(LIBS) -+ex_thread: $(DBO) $(libdbso) -+ $(CC) -o $@ $(LDFLAGS) $(DBO) $(LIBS) - - DBP= ex_tpcb.o $(POBJS) --ex_tpcb: $(DBP) $(libdb) -- $(CC) -o $@ $(LDFLAGS) $(DBP) $(libdb) $(LIBS) -+ex_tpcb: $(DBP) $(libdbso) -+ $(CC) -o $@ $(LDFLAGS) $(DBP) $(LIBS) - - DBT= tclAppInit.o tcl_dbm.o tcl_hsearch.o tcl_lock.o tcl_log.o tcl_mpool.o \ - tcl_mutex.o tcl_ndbm.o tcl_txn.o utils.o $(POBJS) - - dbtest: .dbtestrc --dbtest: $(DBT) $(libdb) -- $(CC) -o $@ $(LDFLAGS) $(DBT) $(libdb) $(LIBS) -+dbtest: $(DBT) $(libdbso) -+ $(CC) -o $@ $(LDFLAGS) $(DBT) $(LIBS) - - AOBJS= err.o getcwd.o getlong.o getopt.o memcmp.o memcpy.o memmove.o \ - raise.o snprintf.o strerror.o strsep.o vsnprintf.o -@@ -131,8 +140,8 @@ - $(rm) -f $(DBA) $(DBB) $(DBC) $(DBD) $(DBE) $(DBF) $(DBG) $(DBH) - $(rm) -f $(DBI) $(DBJ) $(DBK) $(DBL) $(DBM) $(DBN) $(DBO) $(DBP) - $(rm) -f $(DBT) -- $(rm) -f $(PROGS) $(EPROGS) $(POBJS) $(LOBJS) @build_test@ -- $(rm) -f core *.core .dbtestrc $(libdb) -+ $(rm) -f $(PROGS) $(EPROGS) $(POBJS) $(LOBJS) *.so @build_test@ -+ $(rm) -f core *.core .dbtestrc $(libdb) $(libdbso) - - depend obj: - -@@ -141,11 +150,11 @@ - $(rm) -f confdefs.h db.h db_int.h db_185.h include.tcl - - prefix= @prefix@ --bindir= $(prefix)/BerkeleyDB/bin --datadir=$(prefix)/BerkeleyDB/share --includedir=$(prefix)/BerkeleyDB/include --libdir= $(prefix)/BerkeleyDB/lib --mandir= $(prefix)/BerkeleyDB/docs -+bindir= $(prefix)/bin -+datadir=$(prefix)/share/db2 -+includedir=$(prefix)/include/db2 -+libdir= $(prefix)/lib -+mandir= $(prefix)/share/doc/db2 - - dmode= 755 - emode= 555 -@@ -170,6 +179,9 @@ - @cd $(libdir) && $(rm) -f $(libdb) - @$(cp) -p $(libdb) $(libdir) - @cd $(libdir) && $(chmod) $(fmode) $(libdb) -+ @$(cp) -p $(libdbso) $(libdir) -+ @cd $(libdir) && $(chmod) $(fmode) $(libdbso) -+ ln -sf $(libdbso) $(libdir)/libdb2.so - @echo "Installing DB utilities: $(bindir) ..." - @test -d $(bindir) || \ - ($(mkdir) -p $(bindir) && $(chmod) $(dmode) $(bindir)) -@@ -506,3 +518,320 @@ - $(CC) $(CFLAGS) $? - vsnprintf.o: $(srcdir)/clib/vsnprintf.c - $(CC) $(CFLAGS) $? -+ -+# Shared build -+# Programs. -+db_archive.so: $(srcdir)/db_archive/db_archive.c -+ $(CC) $(CFLAGS) $(SHAREDFLAGS) $? -o $@ -+db_checkpoint.so: $(srcdir)/db_checkpoint/db_checkpoint.c -+ $(CC) $(CFLAGS) $(SHAREDFLAGS) $? -o $@ -+db_deadlock.so: $(srcdir)/db_deadlock/db_deadlock.c -+ $(CC) $(CFLAGS) $(SHAREDFLAGS) $? -o $@ -+db_dump.so: $(srcdir)/db_dump/db_dump.c -+ $(CC) $(CFLAGS) $(SHAREDFLAGS) $? -o $@ -+db_dump185.so: $(srcdir)/db_dump185/db_dump185.c -+ $(CC) $(CFLAGS) $(SHAREDFLAGS) $? -o $@ -+db_load.so: $(srcdir)/db_load/db_load.c -+ $(CC) $(CFLAGS) $(SHAREDFLAGS) $? -o $@ -+db_printlog.so: $(srcdir)/db_printlog/db_printlog.c -+ $(CC) $(CFLAGS) $(SHAREDFLAGS) $? -o $@ -+db_recover.so: $(srcdir)/db_recover/db_recover.c -+ $(CC) $(CFLAGS) $(SHAREDFLAGS) $? -o $@ -+db_stat.so: $(srcdir)/db_stat/db_stat.c -+ $(CC) $(CFLAGS) $(SHAREDFLAGS) $? -o $@ -+ -+# Examples. -+ex_access.so: $(srcdir)/examples/ex_access.c -+ $(CC) $(CFLAGS) $(SHAREDFLAGS) $? -o $@ -+ex_appinit.so: $(srcdir)/examples/ex_appinit.c -+ $(CC) $(CFLAGS) $(SHAREDFLAGS) $? -o $@ -+ex_btrec.so: $(srcdir)/examples/ex_btrec.c -+ $(CC) $(CFLAGS) $(SHAREDFLAGS) $? -o $@ -+ex_lock.so: $(srcdir)/examples/ex_lock.c -+ $(CC) $(CFLAGS) $(SHAREDFLAGS) $? -o $@ -+ex_mpool.so: $(srcdir)/examples/ex_mpool.c -+ $(CC) $(CFLAGS) $(SHAREDFLAGS) $? -o $@ -+ex_thread.so: $(srcdir)/examples/ex_thread.c -+ $(CC) $(CFLAGS) $(SHAREDFLAGS) $? -o $@ -+ex_tpcb.so: $(srcdir)/examples/ex_tpcb.c -+ $(CC) $(CFLAGS) $(SHAREDFLAGS) $? -o $@ -+ -+# DB files. -+db.so: $(srcdir)/db/db.c -+ $(CC) $(CFLAGS) $(SHAREDFLAGS) $? -o $@ -+db_am.so: $(srcdir)/db/db_am.c -+ $(CC) $(CFLAGS) $(SHAREDFLAGS) $? -o $@ -+db_auto.so: $(srcdir)/db/db_auto.c -+ $(CC) $(CFLAGS) $(SHAREDFLAGS) $? -o $@ -+db_conv.so: $(srcdir)/db/db_conv.c -+ $(CC) $(CFLAGS) $(SHAREDFLAGS) $? -o $@ -+db_dispatch.so: $(srcdir)/db/db_dispatch.c -+ $(CC) $(CFLAGS) $(SHAREDFLAGS) $? -o $@ -+db_dup.so: $(srcdir)/db/db_dup.c -+ $(CC) $(CFLAGS) $(SHAREDFLAGS) $? -o $@ -+db_iface.so: $(srcdir)/db/db_iface.c -+ $(CC) $(CFLAGS) $(SHAREDFLAGS) $? -o $@ -+db_join.so: $(srcdir)/db/db_join.c -+ $(CC) $(CFLAGS) $(SHAREDFLAGS) $? -o $@ -+db_overflow.so: $(srcdir)/db/db_overflow.c -+ $(CC) $(CFLAGS) $(SHAREDFLAGS) $? -o $@ -+db_pr.so: $(srcdir)/db/db_pr.c -+ $(CC) $(CFLAGS) $(SHAREDFLAGS) $? -o $@ -+db_rec.so: $(srcdir)/db/db_rec.c -+ $(CC) $(CFLAGS) $(SHAREDFLAGS) $? -o $@ -+db_ret.so: $(srcdir)/db/db_ret.c -+ $(CC) $(CFLAGS) $(SHAREDFLAGS) $? -o $@ -+ -+# Btree source files. -+bt_compare.so: $(srcdir)/btree/bt_compare.c -+ $(CC) $(CFLAGS) $(SHAREDFLAGS) $? -o $@ -+bt_conv.so: $(srcdir)/btree/bt_conv.c -+ $(CC) $(CFLAGS) $(SHAREDFLAGS) $? -o $@ -+bt_curadj.so: $(srcdir)/btree/bt_curadj.c -+ $(CC) $(CFLAGS) $(SHAREDFLAGS) $? -o $@ -+bt_cursor.so: $(srcdir)/btree/bt_cursor.c -+ $(CC) $(CFLAGS) $(SHAREDFLAGS) $? -o $@ -+bt_delete.so: $(srcdir)/btree/bt_delete.c -+ $(CC) $(CFLAGS) $(SHAREDFLAGS) $? -o $@ -+bt_open.so: $(srcdir)/btree/bt_open.c -+ $(CC) $(CFLAGS) $(SHAREDFLAGS) $? -o $@ -+bt_page.so: $(srcdir)/btree/bt_page.c -+ $(CC) $(CFLAGS) $(SHAREDFLAGS) $? -o $@ -+bt_put.so: $(srcdir)/btree/bt_put.c -+ $(CC) $(CFLAGS) $(SHAREDFLAGS) $? -o $@ -+bt_rec.so: $(srcdir)/btree/bt_rec.c -+ $(CC) $(CFLAGS) $(SHAREDFLAGS) $? -o $@ -+bt_recno.so: $(srcdir)/btree/bt_recno.c -+ $(CC) $(CFLAGS) $(SHAREDFLAGS) $? -o $@ -+bt_rsearch.so: $(srcdir)/btree/bt_rsearch.c -+ $(CC) $(CFLAGS) $(SHAREDFLAGS) $? -o $@ -+bt_search.so: $(srcdir)/btree/bt_search.c -+ $(CC) $(CFLAGS) $(SHAREDFLAGS) $? -o $@ -+bt_split.so: $(srcdir)/btree/bt_split.c -+ $(CC) $(CFLAGS) $(SHAREDFLAGS) $? -o $@ -+bt_stack.so: $(srcdir)/btree/bt_stack.c -+ $(CC) $(CFLAGS) $(SHAREDFLAGS) $? -o $@ -+bt_stat.so: $(srcdir)/btree/bt_stat.c -+ $(CC) $(CFLAGS) $(SHAREDFLAGS) $? -o $@ -+btree_auto.so: $(srcdir)/btree/btree_auto.c -+ $(CC) $(CFLAGS) $(SHAREDFLAGS) $? -o $@ -+ -+# C++ interface files. -+cxx_app.so: $(srcdir)/cxx/cxx_app.cpp -+ $(CXX) $(CXXFLAGS) $(SHAREDFLAGS) $? -o $@ -+cxx_except.so: $(srcdir)/cxx/cxx_except.cpp -+ $(CXX) $(CXXFLAGS) $(SHAREDFLAGS) $? -o $@ -+cxx_lock.so: $(srcdir)/cxx/cxx_lock.cpp -+ $(CXX) $(CXXFLAGS) $(SHAREDFLAGS) $? -o $@ -+cxx_log.so: $(srcdir)/cxx/cxx_log.cpp -+ $(CXX) $(CXXFLAGS) $(SHAREDFLAGS) $? -o $@ -+cxx_mpool.so: $(srcdir)/cxx/cxx_mpool.cpp -+ $(CXX) $(CXXFLAGS) $(SHAREDFLAGS) $? -o $@ -+cxx_table.so: $(srcdir)/cxx/cxx_table.cpp -+ $(CXX) $(CXXFLAGS) $(SHAREDFLAGS) $? -o $@ -+cxx_txn.so: $(srcdir)/cxx/cxx_txn.cpp -+ $(CXX) $(CXXFLAGS) $(SHAREDFLAGS) $? -o $@ -+ -+# Hash source files. -+hash_auto.so: $(srcdir)/hash/hash_auto.c -+ $(CC) $(CFLAGS) $(SHAREDFLAGS) $? -o $@ -+hash.so: $(srcdir)/hash/hash.c -+ $(CC) $(CFLAGS) $(SHAREDFLAGS) $? -o $@ -+hash_conv.so: $(srcdir)/hash/hash_conv.c -+ $(CC) $(CFLAGS) $(SHAREDFLAGS) $? -o $@ -+hash_dup.so: $(srcdir)/hash/hash_dup.c -+ $(CC) $(CFLAGS) $(SHAREDFLAGS) $? -o $@ -+hash_func.so: $(srcdir)/hash/hash_func.c -+ $(CC) $(CFLAGS) $(SHAREDFLAGS) $? -o $@ -+hash_page.so: $(srcdir)/hash/hash_page.c -+ $(CC) $(CFLAGS) $(SHAREDFLAGS) $? -o $@ -+hash_rec.so: $(srcdir)/hash/hash_rec.c -+ $(CC) $(CFLAGS) $(SHAREDFLAGS) $? -o $@ -+hash_stat.so: $(srcdir)/hash/hash_stat.c -+ $(CC) $(CFLAGS) $(SHAREDFLAGS) $? -o $@ -+ -+# Lock source files. -+lock.so: $(srcdir)/lock/lock.c -+ $(CC) $(CFLAGS) $(SHAREDFLAGS) $? -o $@ -+lock_conflict.so:$(srcdir)/lock/lock_conflict.c -+ $(CC) $(CFLAGS) $(SHAREDFLAGS) $? -o $@ -+lock_deadlock.so:$(srcdir)/lock/lock_deadlock.c -+ $(CC) $(CFLAGS) $(SHAREDFLAGS) $? -o $@ -+lock_region.so:$(srcdir)/lock/lock_region.c -+ $(CC) $(CFLAGS) $(SHAREDFLAGS) $? -o $@ -+lock_util.so:$(srcdir)/lock/lock_util.c -+ $(CC) $(CFLAGS) $(SHAREDFLAGS) $? -o $@ -+ -+# Log source files. -+log.so: $(srcdir)/log/log.c -+ $(CC) $(CFLAGS) $(SHAREDFLAGS) $? -o $@ -+log_archive.so: $(srcdir)/log/log_archive.c -+ $(CC) $(CFLAGS) $(SHAREDFLAGS) $? -o $@ -+log_auto.so: $(srcdir)/log/log_auto.c -+ $(CC) $(CFLAGS) $(SHAREDFLAGS) $? -o $@ -+log_compare.so: $(srcdir)/log/log_compare.c -+ $(CC) $(CFLAGS) $(SHAREDFLAGS) $? -o $@ -+log_findckp.so: $(srcdir)/log/log_findckp.c -+ $(CC) $(CFLAGS) $(SHAREDFLAGS) $? -o $@ -+log_get.so: $(srcdir)/log/log_get.c -+ $(CC) $(CFLAGS) $(SHAREDFLAGS) $? -o $@ -+log_put.so: $(srcdir)/log/log_put.c -+ $(CC) $(CFLAGS) $(SHAREDFLAGS) $? -o $@ -+log_rec.so: $(srcdir)/log/log_rec.c -+ $(CC) $(CFLAGS) $(SHAREDFLAGS) $? -o $@ -+log_register.so: $(srcdir)/log/log_register.c -+ $(CC) $(CFLAGS) $(SHAREDFLAGS) $? -o $@ -+ -+# Mpool source files. -+mp_bh.so: $(srcdir)/mp/mp_bh.c -+ $(CC) $(CFLAGS) $(SHAREDFLAGS) $? -o $@ -+mp_fget.so: $(srcdir)/mp/mp_fget.c -+ $(CC) $(CFLAGS) $(SHAREDFLAGS) $? -o $@ -+mp_fopen.so: $(srcdir)/mp/mp_fopen.c -+ $(CC) $(CFLAGS) $(SHAREDFLAGS) $? -o $@ -+mp_fput.so: $(srcdir)/mp/mp_fput.c -+ $(CC) $(CFLAGS) $(SHAREDFLAGS) $? -o $@ -+mp_fset.so: $(srcdir)/mp/mp_fset.c -+ $(CC) $(CFLAGS) $(SHAREDFLAGS) $? -o $@ -+mp_open.so: $(srcdir)/mp/mp_open.c -+ $(CC) $(CFLAGS) $(SHAREDFLAGS) $? -o $@ -+mp_pr.so: $(srcdir)/mp/mp_pr.c -+ $(CC) $(CFLAGS) $(SHAREDFLAGS) $? -o $@ -+mp_region.so: $(srcdir)/mp/mp_region.c -+ $(CC) $(CFLAGS) $(SHAREDFLAGS) $? -o $@ -+mp_sync.so: $(srcdir)/mp/mp_sync.c -+ $(CC) $(CFLAGS) $(SHAREDFLAGS) $? -o $@ -+ -+# Mutex source files. -+mutex.so: $(srcdir)/mutex/mutex.c -+ $(CC) $(CFLAGS) $(SHAREDFLAGS) $? -o $@ -+# XXX -+# UTS4 spinlocks -+uts4_cc.so: $(srcdir)/mutex/uts4_cc.s -+ $(AS) $(ASFLAGS) $(SHAREDFLAGS) -o $@ $? -o $@ -+ -+# Transaction source files. -+txn.so: $(srcdir)/txn/txn.c -+ $(CC) $(CFLAGS) $(SHAREDFLAGS) $? -o $@ -+txn_auto.so: $(srcdir)/txn/txn_auto.c -+ $(CC) $(CFLAGS) $(SHAREDFLAGS) $? -o $@ -+txn_rec.so: $(srcdir)/txn/txn_rec.c -+ $(CC) $(CFLAGS) $(SHAREDFLAGS) $? -o $@ -+ -+# XA source files. -+xa.so: $(srcdir)/xa/xa.c -+ $(CC) $(CFLAGS) $(SHAREDFLAGS) $? -o $@ -+xa_db.so: $(srcdir)/xa/xa_db.c -+ $(CC) $(CFLAGS) $(SHAREDFLAGS) $? -o $@ -+xa_map.so: $(srcdir)/xa/xa_map.c -+ $(CC) $(CFLAGS) $(SHAREDFLAGS) $? -o $@ -+ -+# Historic interfaces. -+hsearch.so: $(srcdir)/hsearch/hsearch.c -+ $(CC) $(CFLAGS) $(SHAREDFLAGS) $? -o $@ -+dbm.so: $(srcdir)/dbm/dbm.c -+ $(CC) $(CFLAGS) $(SHAREDFLAGS) $? -o $@ -+db185.so: $(srcdir)/db185/db185.c -+ $(CC) $(CFLAGS) $(SHAREDFLAGS) $? -o $@ -+ -+# Common source files. -+db_appinit.so: $(srcdir)/common/db_appinit.c -+ $(CC) $(CFLAGS) $(SHAREDFLAGS) $? -o $@ -+db_apprec.so: $(srcdir)/common/db_apprec.c -+ $(CC) $(CFLAGS) $(SHAREDFLAGS) $? -o $@ -+db_byteorder.so: $(srcdir)/common/db_byteorder.c -+ $(CC) $(CFLAGS) $(SHAREDFLAGS) $? -o $@ -+db_err.so: $(srcdir)/common/db_err.c -+ $(CC) $(CFLAGS) $(SHAREDFLAGS) $? -o $@ -+db_log2.so: $(srcdir)/common/db_log2.c -+ $(CC) $(CFLAGS) $(SHAREDFLAGS) $? -o $@ -+db_region.so: $(srcdir)/common/db_region.c -+ $(CC) $(CFLAGS) $(SHAREDFLAGS) $? -o $@ -+db_salloc.so: $(srcdir)/common/db_salloc.c -+ $(CC) $(CFLAGS) $(SHAREDFLAGS) $? -o $@ -+db_shash.so: $(srcdir)/common/db_shash.c -+ $(CC) $(CFLAGS) $(SHAREDFLAGS) $? -o $@ -+ -+# OS specific source files. -+os_abs.so: $(srcdir)/os/os_abs.c -+ $(CC) $(CFLAGS) $(SHAREDFLAGS) $? -o $@ -+os_alloc.so: $(srcdir)/os/os_alloc.c -+ $(CC) $(CFLAGS) $(SHAREDFLAGS) $? -o $@ -+os_config.so: $(srcdir)/os/os_config.c -+ $(CC) $(CFLAGS) $(SHAREDFLAGS) $? -o $@ -+os_dir.so: $(srcdir)/os/os_dir.c -+ $(CC) $(CFLAGS) $(SHAREDFLAGS) $? -o $@ -+os_fid.so: $(srcdir)/os/os_fid.c -+ $(CC) $(CFLAGS) $(SHAREDFLAGS) $? -o $@ -+os_fsync.so: $(srcdir)/os/os_fsync.c -+ $(CC) $(CFLAGS) $(SHAREDFLAGS) $? -o $@ -+os_map.so: $(srcdir)/os/os_map.c -+ $(CC) $(CFLAGS) $(SHAREDFLAGS) $? -o $@ -+os_oflags.so: $(srcdir)/os/os_oflags.c -+ $(CC) $(CFLAGS) $(SHAREDFLAGS) $? -o $@ -+os_open.so: $(srcdir)/os/os_open.c -+ $(CC) $(CFLAGS) $(SHAREDFLAGS) $? -o $@ -+os_rpath.so: $(srcdir)/os/os_rpath.c -+ $(CC) $(CFLAGS) $(SHAREDFLAGS) $? -o $@ -+os_rw.so: $(srcdir)/os/os_rw.c -+ $(CC) $(CFLAGS) $(SHAREDFLAGS) $? -o $@ -+os_seek.so: $(srcdir)/os/os_seek.c -+ $(CC) $(CFLAGS) $(SHAREDFLAGS) $? -o $@ -+os_sleep.so: $(srcdir)/os/os_sleep.c -+ $(CC) $(CFLAGS) $(SHAREDFLAGS) $? -o $@ -+os_spin.so: $(srcdir)/os/os_spin.c -+ $(CC) $(CFLAGS) $(SHAREDFLAGS) $? -o $@ -+os_stat.so: $(srcdir)/os/os_stat.c -+ $(CC) $(CFLAGS) $(SHAREDFLAGS) $? -o $@ -+os_tmpdir.so: $(srcdir)/os/os_tmpdir.c -+ $(CC) $(CFLAGS) $(SHAREDFLAGS) $? -o $@ -+os_unlink.so: $(srcdir)/os/os_unlink.c -+ $(CC) $(CFLAGS) $(SHAREDFLAGS) $? -o $@ -+ -+# Test programs. -+tclAppInit.so: $(srcdir)/test/tclAppInit.c -+ $(CC) $(CFLAGS) $(SHAREDFLAGS) $? -o $@ -+tcl_dbm.so: $(srcdir)/test/tcl_dbm.c -+ $(CC) $(CFLAGS) $(SHAREDFLAGS) $? -o $@ -+tcl_hsearch.so: $(srcdir)/test/tcl_hsearch.c -+ $(CC) $(CFLAGS) $(SHAREDFLAGS) $? -o $@ -+tcl_lock.so: $(srcdir)/test/tcl_lock.c -+ $(CC) $(CFLAGS) $(SHAREDFLAGS) $? -o $@ -+tcl_log.so: $(srcdir)/test/tcl_log.c -+ $(CC) $(CFLAGS) $(SHAREDFLAGS) $? -o $@ -+tcl_mpool.so: $(srcdir)/test/tcl_mpool.c -+ $(CC) $(CFLAGS) $(SHAREDFLAGS) $? -o $@ -+tcl_mutex.so: $(srcdir)/test/tcl_mutex.c -+ $(CC) $(CFLAGS) $(SHAREDFLAGS) $? -o $@ -+tcl_ndbm.so: $(srcdir)/test/tcl_ndbm.c -+ $(CC) $(CFLAGS) $(SHAREDFLAGS) $? -o $@ -+tcl_txn.so: $(srcdir)/test/tcl_txn.c -+ $(CC) $(CFLAGS) $(SHAREDFLAGS) $? -o $@ -+utils.so: $(srcdir)/test/utils.c -+ $(CC) $(CFLAGS) $(SHAREDFLAGS) $? -o $@ -+ -+# Replacement source files. -+err.so: $(srcdir)/clib/err.c -+ $(CC) $(CFLAGS) $(SHAREDFLAGS) $? -o $@ -+getcwd.so: $(srcdir)/clib/getcwd.c -+ $(CC) $(CFLAGS) $(SHAREDFLAGS) $? -o $@ -+getlong.so: $(srcdir)/clib/getlong.c -+ $(CC) $(CFLAGS) $(SHAREDFLAGS) $? -o $@ -+getopt.so: $(srcdir)/clib/getopt.c -+ $(CC) $(CFLAGS) $(SHAREDFLAGS) $? -o $@ -+memcmp.so: $(srcdir)/clib/memcmp.c -+ $(CC) $(CFLAGS) $(SHAREDFLAGS) $? -o $@ -+memcpy.so: $(srcdir)/clib/memmove.c -+ $(CC) -DMEMCOPY $(CFLAGS) $(SHAREDFLAGS) $? -o $@ -+memmove.so: $(srcdir)/clib/memmove.c -+ $(CC) -DMEMMOVE $(CFLAGS) $(SHAREDFLAGS) $? -o $@ -+raise.so: $(srcdir)/clib/raise.c -+ $(CC) $(CFLAGS) $(SHAREDFLAGS) $? -o $@ -+snprintf.so: $(srcdir)/clib/snprintf.c -+ $(CC) $(CFLAGS) $(SHAREDFLAGS) $? -o $@ -+strerror.so: $(srcdir)/clib/strerror.c -+ $(CC) $(CFLAGS) $(SHAREDFLAGS) $? -o $@ -+strsep.so: $(srcdir)/clib/strsep.c -+ $(CC) $(CFLAGS) $(SHAREDFLAGS) $? -o $@ -+vsnprintf.so: $(srcdir)/clib/vsnprintf.c -+ $(CC) $(CFLAGS) $(SHAREDFLAGS) $? -o $@ diff --git a/databases/db2/pkg-comment b/databases/db2/pkg-comment deleted file mode 100644 index 39a54a240320..000000000000 --- a/databases/db2/pkg-comment +++ /dev/null @@ -1 +0,0 @@ -The Berkeley DB package, revision 2 diff --git a/databases/db2/pkg-descr b/databases/db2/pkg-descr deleted file mode 100644 index b9ed34ee6d81..000000000000 --- a/databases/db2/pkg-descr +++ /dev/null @@ -1,13 +0,0 @@ -Revesion 2 of the Berkeley DB library. This version uses an incompatible -underlying database format than revision 1 and a different standard API. -Utilities are included in the distribution to convert v1.85 databases to v2 -databases, and a backwards compatible API is provided to maintain -compatibility with programs using the v1.85 interface. - -There are minor interface changes in this release which may require that DB -applications be modified and recompiled. For a complete discussion of -interface changes, see: - -http://www.sleepycat.com/update/ - -WWW: http://www.sleepycat.com diff --git a/databases/db2/pkg-plist b/databases/db2/pkg-plist deleted file mode 100644 index 961bc047a6e4..000000000000 --- a/databases/db2/pkg-plist +++ /dev/null @@ -1,564 +0,0 @@ -include/db2/db.h -include/db2/db_cxx.h -include/db2/db_185.h -lib/libdb2.a -lib/libdb2.so -lib/libdb2.so.0 -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 -share/doc/db2/api_c/Db/close.html -share/doc/db2/api_c/Db/cursor.html -share/doc/db2/api_c/Db/del.html -share/doc/db2/api_c/Db/fd.html -share/doc/db2/api_c/Db/get.html -share/doc/db2/api_c/Db/join.html -share/doc/db2/api_c/Db/open.html -share/doc/db2/api_c/Db/put.html -share/doc/db2/api_c/Db/stat.html -share/doc/db2/api_c/Db/sync.html -share/doc/db2/api_c/DbEnv/appexit.html -share/doc/db2/api_c/DbEnv/appinit.html -share/doc/db2/api_c/DbEnv/env.html -share/doc/db2/api_c/DbEnv/version.html -share/doc/db2/api_c/DbInfo/info.html -share/doc/db2/api_c/DbLock/put.html -share/doc/db2/api_c/DbLockTab/close.html -share/doc/db2/api_c/DbLockTab/detect.html -share/doc/db2/api_c/DbLockTab/get.html -share/doc/db2/api_c/DbLockTab/id.html -share/doc/db2/api_c/DbLockTab/open.html -share/doc/db2/api_c/DbLockTab/stat.html -share/doc/db2/api_c/DbLockTab/unlink.html -share/doc/db2/api_c/DbLockTab/vec.html -share/doc/db2/api_c/DbLog/archive.html -share/doc/db2/api_c/DbLog/close.html -share/doc/db2/api_c/DbLog/compare.html -share/doc/db2/api_c/DbLog/db_register.html -share/doc/db2/api_c/DbLog/db_unregister.html -share/doc/db2/api_c/DbLog/file.html -share/doc/db2/api_c/DbLog/flush.html -share/doc/db2/api_c/DbLog/get.html -share/doc/db2/api_c/DbLog/lsn.html -share/doc/db2/api_c/DbLog/open.html -share/doc/db2/api_c/DbLog/put.html -share/doc/db2/api_c/DbLog/stat.html -share/doc/db2/api_c/DbLog/unlink.html -share/doc/db2/api_c/DbMpool/close.html -share/doc/db2/api_c/DbMpool/db_register.html -share/doc/db2/api_c/DbMpool/open.html -share/doc/db2/api_c/DbMpool/stat.html -share/doc/db2/api_c/DbMpool/sync.html -share/doc/db2/api_c/DbMpool/trickle.html -share/doc/db2/api_c/DbMpool/unlink.html -share/doc/db2/api_c/DbMpoolFile/close.html -share/doc/db2/api_c/DbMpoolFile/get.html -share/doc/db2/api_c/DbMpoolFile/open.html -share/doc/db2/api_c/DbMpoolFile/put.html -share/doc/db2/api_c/DbMpoolFile/set.html -share/doc/db2/api_c/DbMpoolFile/sync.html -share/doc/db2/api_c/DbTxn/abort.html -share/doc/db2/api_c/DbTxn/commit.html -share/doc/db2/api_c/DbTxn/id.html -share/doc/db2/api_c/DbTxn/prepare.html -share/doc/db2/api_c/DbTxnMgr/begin.html -share/doc/db2/api_c/DbTxnMgr/checkpoint.html -share/doc/db2/api_c/DbTxnMgr/close.html -share/doc/db2/api_c/DbTxnMgr/open.html -share/doc/db2/api_c/DbTxnMgr/stat.html -share/doc/db2/api_c/DbTxnMgr/unlink.html -share/doc/db2/api_c/Dbc/close.html -share/doc/db2/api_c/Dbc/del.html -share/doc/db2/api_c/Dbc/get.html -share/doc/db2/api_c/Dbc/put.html -share/doc/db2/api_c/Dbt/dbt.html -share/doc/db2/api_c/historic/dbm.html -share/doc/db2/api_c/historic/hsearch.html -share/doc/db2/api_c/index/flags.html -share/doc/db2/api_c/index/function.html -share/doc/db2/api_c/index/structure.html -share/doc/db2/api_c/internal/db_jump_set.html -share/doc/db2/api_c/internal/db_value_set.html -share/doc/db2/api_cxx/Db/class.html -share/doc/db2/api_cxx/Db/close.html -share/doc/db2/api_cxx/Db/cursor.html -share/doc/db2/api_cxx/Db/del.html -share/doc/db2/api_cxx/Db/fd.html -share/doc/db2/api_cxx/Db/get.html -share/doc/db2/api_cxx/Db/get_byteswapped.html -share/doc/db2/api_cxx/Db/get_type.html -share/doc/db2/api_cxx/Db/join.html -share/doc/db2/api_cxx/Db/open.html -share/doc/db2/api_cxx/Db/put.html -share/doc/db2/api_cxx/Db/stat.html -share/doc/db2/api_cxx/Db/sync.html -share/doc/db2/api_cxx/DbEnv/appexit.html -share/doc/db2/api_cxx/DbEnv/appinit.html -share/doc/db2/api_cxx/DbEnv/class.html -share/doc/db2/api_cxx/DbEnv/get_lg_info.html -share/doc/db2/api_cxx/DbEnv/get_lk_info.html -share/doc/db2/api_cxx/DbEnv/get_mp_info.html -share/doc/db2/api_cxx/DbEnv/get_tx_info.html -share/doc/db2/api_cxx/DbEnv/set_errcall.html -share/doc/db2/api_cxx/DbEnv/set_errfile.html -share/doc/db2/api_cxx/DbEnv/set_error_model.html -share/doc/db2/api_cxx/DbEnv/set_error_stream.html -share/doc/db2/api_cxx/DbEnv/set_errpfx.html -share/doc/db2/api_cxx/DbEnv/set_lg_max.html -share/doc/db2/api_cxx/DbEnv/set_lk_conflicts.html -share/doc/db2/api_cxx/DbEnv/set_lk_detect.html -share/doc/db2/api_cxx/DbEnv/set_lk_max.html -share/doc/db2/api_cxx/DbEnv/set_lk_modes.html -share/doc/db2/api_cxx/DbEnv/set_lorder.html -share/doc/db2/api_cxx/DbEnv/set_mp_mmapsize.html -share/doc/db2/api_cxx/DbEnv/set_mp_size.html -share/doc/db2/api_cxx/DbEnv/set_tx_max.html -share/doc/db2/api_cxx/DbEnv/set_tx_recover.html -share/doc/db2/api_cxx/DbEnv/set_verbose.html -share/doc/db2/api_cxx/DbEnv/version.html -share/doc/db2/api_cxx/DbException/class.html -share/doc/db2/api_cxx/DbException/get_errno.html -share/doc/db2/api_cxx/DbException/what.html -share/doc/db2/api_cxx/DbInfo/class.html -share/doc/db2/api_cxx/DbInfo/set_bt_compare.html -share/doc/db2/api_cxx/DbInfo/set_bt_maxkey.html -share/doc/db2/api_cxx/DbInfo/set_bt_minkey.html -share/doc/db2/api_cxx/DbInfo/set_bt_prefix.html -share/doc/db2/api_cxx/DbInfo/set_cachesize.html -share/doc/db2/api_cxx/DbInfo/set_compare.html -share/doc/db2/api_cxx/DbInfo/set_flags.html -share/doc/db2/api_cxx/DbInfo/set_h_ffactor.html -share/doc/db2/api_cxx/DbInfo/set_h_hash.html -share/doc/db2/api_cxx/DbInfo/set_h_nelem.html -share/doc/db2/api_cxx/DbInfo/set_lorder.html -share/doc/db2/api_cxx/DbInfo/set_malloc.html -share/doc/db2/api_cxx/DbInfo/set_pagesize.html -share/doc/db2/api_cxx/DbInfo/set_re_delim.html -share/doc/db2/api_cxx/DbInfo/set_re_len.html -share/doc/db2/api_cxx/DbInfo/set_re_pad.html -share/doc/db2/api_cxx/DbInfo/set_re_source.html -share/doc/db2/api_cxx/DbLock/class.html -share/doc/db2/api_cxx/DbLock/put.html -share/doc/db2/api_cxx/DbLockTab/class.html -share/doc/db2/api_cxx/DbLockTab/close.html -share/doc/db2/api_cxx/DbLockTab/detect.html -share/doc/db2/api_cxx/DbLockTab/get.html -share/doc/db2/api_cxx/DbLockTab/id.html -share/doc/db2/api_cxx/DbLockTab/open.html -share/doc/db2/api_cxx/DbLockTab/stat.html -share/doc/db2/api_cxx/DbLockTab/unlink.html -share/doc/db2/api_cxx/DbLockTab/vec.html -share/doc/db2/api_cxx/DbLog/archive.html -share/doc/db2/api_cxx/DbLog/class.html -share/doc/db2/api_cxx/DbLog/close.html -share/doc/db2/api_cxx/DbLog/compare.html -share/doc/db2/api_cxx/DbLog/db_register.html -share/doc/db2/api_cxx/DbLog/db_unregister.html -share/doc/db2/api_cxx/DbLog/file.html -share/doc/db2/api_cxx/DbLog/flush.html -share/doc/db2/api_cxx/DbLog/get.html -share/doc/db2/api_cxx/DbLog/open.html -share/doc/db2/api_cxx/DbLog/put.html -share/doc/db2/api_cxx/DbLog/stat.html -share/doc/db2/api_cxx/DbLog/unlink.html -share/doc/db2/api_cxx/DbLsn/class.html -share/doc/db2/api_cxx/DbMpool/class.html -share/doc/db2/api_cxx/DbMpool/close.html -share/doc/db2/api_cxx/DbMpool/db_register.html -share/doc/db2/api_cxx/DbMpool/open.html -share/doc/db2/api_cxx/DbMpool/stat.html -share/doc/db2/api_cxx/DbMpool/sync.html -share/doc/db2/api_cxx/DbMpool/trickle.html -share/doc/db2/api_cxx/DbMpool/unlink.html -share/doc/db2/api_cxx/DbMpoolFile/class.html -share/doc/db2/api_cxx/DbMpoolFile/close.html -share/doc/db2/api_cxx/DbMpoolFile/get.html -share/doc/db2/api_cxx/DbMpoolFile/open.html -share/doc/db2/api_cxx/DbMpoolFile/put.html -share/doc/db2/api_cxx/DbMpoolFile/set.html -share/doc/db2/api_cxx/DbMpoolFile/sync.html -share/doc/db2/api_cxx/DbTxn/abort.html -share/doc/db2/api_cxx/DbTxn/class.html -share/doc/db2/api_cxx/DbTxn/commit.html -share/doc/db2/api_cxx/DbTxn/id.html -share/doc/db2/api_cxx/DbTxn/prepare.html -share/doc/db2/api_cxx/DbTxnMgr/begin.html -share/doc/db2/api_cxx/DbTxnMgr/checkpoint.html -share/doc/db2/api_cxx/DbTxnMgr/class.html -share/doc/db2/api_cxx/DbTxnMgr/close.html -share/doc/db2/api_cxx/DbTxnMgr/open.html -share/doc/db2/api_cxx/DbTxnMgr/stat.html -share/doc/db2/api_cxx/DbTxnMgr/unlink.html -share/doc/db2/api_cxx/Dbc/class.html -share/doc/db2/api_cxx/Dbc/close.html -share/doc/db2/api_cxx/Dbc/del.html -share/doc/db2/api_cxx/Dbc/get.html -share/doc/db2/api_cxx/Dbc/put.html -share/doc/db2/api_cxx/Dbt/class.html -share/doc/db2/api_cxx/index/class.html -share/doc/db2/api_java/Db/class.html -share/doc/db2/api_java/Db/close.html -share/doc/db2/api_java/Db/cursor.html -share/doc/db2/api_java/Db/del.html -share/doc/db2/api_java/Db/fd.html -share/doc/db2/api_java/Db/get.html -share/doc/db2/api_java/Db/get_byteswapped.html -share/doc/db2/api_java/Db/get_type.html -share/doc/db2/api_java/Db/join.html -share/doc/db2/api_java/Db/open.html -share/doc/db2/api_java/Db/put.html -share/doc/db2/api_java/Db/stat.html -share/doc/db2/api_java/Db/sync.html -share/doc/db2/api_java/DbEnv/appexit.html -share/doc/db2/api_java/DbEnv/appinit.html -share/doc/db2/api_java/DbEnv/class.html -share/doc/db2/api_java/DbEnv/get_lg_info.html -share/doc/db2/api_java/DbEnv/get_lk_info.html -share/doc/db2/api_java/DbEnv/get_mp_info.html -share/doc/db2/api_java/DbEnv/get_tx_info.html -share/doc/db2/api_java/DbEnv/set_errcall.html -share/doc/db2/api_java/DbEnv/set_error_stream.html -share/doc/db2/api_java/DbEnv/set_errpfx.html -share/doc/db2/api_java/DbEnv/set_lg_max.html -share/doc/db2/api_java/DbEnv/set_lk_conflicts.html -share/doc/db2/api_java/DbEnv/set_lk_detect.html -share/doc/db2/api_java/DbEnv/set_lk_max.html -share/doc/db2/api_java/DbEnv/set_lk_modes.html -share/doc/db2/api_java/DbEnv/set_lorder.html -share/doc/db2/api_java/DbEnv/set_mp_mmapsize.html -share/doc/db2/api_java/DbEnv/set_mp_size.html -share/doc/db2/api_java/DbEnv/set_tx_max.html -share/doc/db2/api_java/DbEnv/set_verbose.html -share/doc/db2/api_java/DbEnv/version.html -share/doc/db2/api_java/DbException/class.html -share/doc/db2/api_java/DbException/get_errno.html -share/doc/db2/api_java/DbInfo/class.html -share/doc/db2/api_java/DbInfo/set_bt_compare.html -share/doc/db2/api_java/DbInfo/set_bt_maxkey.html -share/doc/db2/api_java/DbInfo/set_bt_minkey.html -share/doc/db2/api_java/DbInfo/set_bt_prefix.html -share/doc/db2/api_java/DbInfo/set_cachesize.html -share/doc/db2/api_java/DbInfo/set_compare.html -share/doc/db2/api_java/DbInfo/set_flags.html -share/doc/db2/api_java/DbInfo/set_h_ffactor.html -share/doc/db2/api_java/DbInfo/set_h_hash.html -share/doc/db2/api_java/DbInfo/set_h_nelem.html -share/doc/db2/api_java/DbInfo/set_lorder.html -share/doc/db2/api_java/DbInfo/set_malloc.html -share/doc/db2/api_java/DbInfo/set_pagesize.html -share/doc/db2/api_java/DbInfo/set_re_delim.html -share/doc/db2/api_java/DbInfo/set_re_len.html -share/doc/db2/api_java/DbInfo/set_re_pad.html -share/doc/db2/api_java/DbInfo/set_re_source.html -share/doc/db2/api_java/DbLock/class.html -share/doc/db2/api_java/DbLock/put.html -share/doc/db2/api_java/DbLockTab/class.html -share/doc/db2/api_java/DbLockTab/close.html -share/doc/db2/api_java/DbLockTab/detect.html -share/doc/db2/api_java/DbLockTab/get.html -share/doc/db2/api_java/DbLockTab/id.html -share/doc/db2/api_java/DbLockTab/open.html -share/doc/db2/api_java/DbLockTab/stat.html -share/doc/db2/api_java/DbLockTab/unlink.html -share/doc/db2/api_java/DbLockTab/vec.html -share/doc/db2/api_java/DbLog/archive.html -share/doc/db2/api_java/DbLog/class.html -share/doc/db2/api_java/DbLog/close.html -share/doc/db2/api_java/DbLog/compare.html -share/doc/db2/api_java/DbLog/db_register.html -share/doc/db2/api_java/DbLog/db_unregister.html -share/doc/db2/api_java/DbLog/file.html -share/doc/db2/api_java/DbLog/flush.html -share/doc/db2/api_java/DbLog/get.html -share/doc/db2/api_java/DbLog/open.html -share/doc/db2/api_java/DbLog/put.html -share/doc/db2/api_java/DbLog/stat.html -share/doc/db2/api_java/DbLog/unlink.html -share/doc/db2/api_java/DbLsn/class.html -share/doc/db2/api_java/DbMpool/class.html -share/doc/db2/api_java/DbMpool/close.html -share/doc/db2/api_java/DbMpool/db_register.html -share/doc/db2/api_java/DbMpool/open.html -share/doc/db2/api_java/DbMpool/stat.html -share/doc/db2/api_java/DbMpool/sync.html -share/doc/db2/api_java/DbMpool/trickle.html -share/doc/db2/api_java/DbMpool/unlink.html -share/doc/db2/api_java/DbMpoolFile/class.html -share/doc/db2/api_java/DbMpoolFile/close.html -share/doc/db2/api_java/DbMpoolFile/get.html -share/doc/db2/api_java/DbMpoolFile/open.html -share/doc/db2/api_java/DbMpoolFile/put.html -share/doc/db2/api_java/DbMpoolFile/set.html -share/doc/db2/api_java/DbMpoolFile/sync.html -share/doc/db2/api_java/DbRunRecoveryException/class.html -share/doc/db2/api_java/DbTxn/abort.html -share/doc/db2/api_java/DbTxn/class.html -share/doc/db2/api_java/DbTxn/commit.html -share/doc/db2/api_java/DbTxn/id.html -share/doc/db2/api_java/DbTxn/prepare.html -share/doc/db2/api_java/DbTxnMgr/begin.html -share/doc/db2/api_java/DbTxnMgr/checkpoint.html -share/doc/db2/api_java/DbTxnMgr/class.html -share/doc/db2/api_java/DbTxnMgr/close.html -share/doc/db2/api_java/DbTxnMgr/open.html -share/doc/db2/api_java/DbTxnMgr/stat.html -share/doc/db2/api_java/DbTxnMgr/unlink.html -share/doc/db2/api_java/Dbc/class.html -share/doc/db2/api_java/Dbc/close.html -share/doc/db2/api_java/Dbc/del.html -share/doc/db2/api_java/Dbc/get.html -share/doc/db2/api_java/Dbc/put.html -share/doc/db2/api_java/Dbt/class.html -share/doc/db2/api_java/index/class.html -share/doc/db2/build/java.html -share/doc/db2/build/shared.html -share/doc/db2/build/shared_gcc.html -share/doc/db2/build/shared_hp.html -share/doc/db2/build/unix.html -share/doc/db2/build/unix_faq.html -share/doc/db2/build/win16.html -share/doc/db2/build/win32.html -share/doc/db2/build/win_faq.html -share/doc/db2/distrib/layout.html -share/doc/db2/images/folder.gif -share/doc/db2/images/folder_open.gif -share/doc/db2/images/next.gif -share/doc/db2/images/prev.gif -share/doc/db2/images/ps.gif -share/doc/db2/images/sleepycat.gif -share/doc/db2/images/toc.gif -share/doc/db2/index.html -share/doc/db2/packages/hash_usenix.ps -share/doc/db2/packages/index.html -share/doc/db2/packages/libtp_usenix.ps -share/doc/db2/packages/witold.html -share/doc/db2/ref/am/bt_compare.html -share/doc/db2/ref/am/bt_dup.html -share/doc/db2/ref/am/bt_maxkey.html -share/doc/db2/ref/am/bt_minkey.html -share/doc/db2/ref/am/bt_prefix.html -share/doc/db2/ref/am/bt_recnum.html -share/doc/db2/ref/am/byteorder.html -share/doc/db2/ref/am/cachesize.html -share/doc/db2/ref/am/close.html -share/doc/db2/ref/am/compare.html -share/doc/db2/ref/am/curclose.html -share/doc/db2/ref/am/curdel.html -share/doc/db2/ref/am/curget.html -share/doc/db2/ref/am/curput.html -share/doc/db2/ref/am/cursor.html -share/doc/db2/ref/am/delete.html -share/doc/db2/ref/am/get.html -share/doc/db2/ref/am/h_dup.html -share/doc/db2/ref/am/h_ffactor.html -share/doc/db2/ref/am/h_hash.html -share/doc/db2/ref/am/h_nelem.html -share/doc/db2/ref/am/intro.html -share/doc/db2/ref/am/join.html -share/doc/db2/ref/am/logrec.html -share/doc/db2/ref/am/malloc.html -share/doc/db2/ref/am/ops.html -share/doc/db2/ref/am/pagesize.html -share/doc/db2/ref/am/partial.html -share/doc/db2/ref/am/put.html -share/doc/db2/ref/am/re_delim.html -share/doc/db2/ref/am/re_len.html -share/doc/db2/ref/am/re_pad.html -share/doc/db2/ref/am/re_source.html -share/doc/db2/ref/am/renumber.html -share/doc/db2/ref/am/select.html -share/doc/db2/ref/am/stat.html -share/doc/db2/ref/am/sync.html -share/doc/db2/ref/arch/apis.html -share/doc/db2/ref/arch/bigpic.gif -share/doc/db2/ref/arch/bigpic.html -share/doc/db2/ref/arch/env.html -share/doc/db2/ref/arch/extending.html -share/doc/db2/ref/arch/progmodel.html -share/doc/db2/ref/arch/script.html -share/doc/db2/ref/arch/smallpic.gif -share/doc/db2/ref/arch/subsystem.html -share/doc/db2/ref/arch/utilities.html -share/doc/db2/ref/cam/intro.html -share/doc/db2/ref/debug/runtime.html -share/doc/db2/ref/dumpload/format.html -share/doc/db2/ref/dumpload/text.html -share/doc/db2/ref/dumpload/utility.html -share/doc/db2/ref/env/create.html -share/doc/db2/ref/env/naming.html -share/doc/db2/ref/env/open.html -share/doc/db2/ref/env/region.html -share/doc/db2/ref/env/security.html -share/doc/db2/ref/install/file.html -share/doc/db2/ref/install/magic.s5.be.txt -share/doc/db2/ref/install/magic.s5.le.txt -share/doc/db2/ref/install/magic.txt -share/doc/db2/ref/intro/distrib.html -share/doc/db2/ref/intro/do.html -share/doc/db2/ref/intro/what.html -share/doc/db2/ref/intro/where.html -share/doc/db2/ref/lock/stdmode.html -share/doc/db2/ref/log/config.html -share/doc/db2/ref/log/intro.html -share/doc/db2/ref/log/limits.html -share/doc/db2/ref/mp/config.html -share/doc/db2/ref/mp/intro.html -share/doc/db2/ref/perl/intro.html -share/doc/db2/ref/program/appsignals.html -share/doc/db2/ref/program/byteorder.html -share/doc/db2/ref/program/compatible.html -share/doc/db2/ref/program/convert.html -share/doc/db2/ref/program/dbsizes.html -share/doc/db2/ref/program/environ.html -share/doc/db2/ref/program/errorret.html -share/doc/db2/ref/program/java.html -share/doc/db2/ref/program/runtime.html -share/doc/db2/ref/program/solaris.txt -share/doc/db2/ref/program/thread.html -share/doc/db2/ref/program/version.html -share/doc/db2/ref/sendmail/intro.html -share/doc/db2/ref/simple_tut/close.html -share/doc/db2/ref/simple_tut/del.html -share/doc/db2/ref/simple_tut/errors.html -share/doc/db2/ref/simple_tut/example.txt -share/doc/db2/ref/simple_tut/get.html -share/doc/db2/ref/simple_tut/intro.html -share/doc/db2/ref/simple_tut/keydata.html -share/doc/db2/ref/simple_tut/open.html -share/doc/db2/ref/simple_tut/put.html -share/doc/db2/ref/toc.html -share/doc/db2/ref/transapp/admin.html -share/doc/db2/ref/transapp/apps.html -share/doc/db2/ref/transapp/archival.html -share/doc/db2/ref/transapp/checkpoint.html -share/doc/db2/ref/transapp/deadlock.html -share/doc/db2/ref/transapp/filesys.html -share/doc/db2/ref/transapp/intro.html -share/doc/db2/ref/transapp/recovery.html -share/doc/db2/ref/transapp/throughput.html -share/doc/db2/ref/transapp/writetest.txt -share/doc/db2/ref/txn/config.html -share/doc/db2/ref/txn/limits.html -share/doc/db2/ref/txn/other.html -share/doc/db2/ref/txn/stability.html -share/doc/db2/sleepycat/contact.html -share/doc/db2/sleepycat/products.html -share/doc/db2/test/build.html -share/doc/db2/test/build_faq.html -share/doc/db2/test/debug.html -share/doc/db2/test/run.html -share/doc/db2/utility/db_archive.html -share/doc/db2/utility/db_checkpoint.html -share/doc/db2/utility/db_deadlock.html -share/doc/db2/utility/db_dump.html -share/doc/db2/utility/db_load.html -share/doc/db2/utility/db_recover.html -share/doc/db2/utility/db_stat.html -share/doc/db2/utility/index.html -share/examples/db2/examples/README -share/examples/db2/examples/ex_access.c -share/examples/db2/examples/ex_appinit.c -share/examples/db2/examples/ex_btrec.c -share/examples/db2/examples/ex_lock.c -share/examples/db2/examples/ex_mpool.c -share/examples/db2/examples/ex_thread.c -share/examples/db2/examples/ex_tpcb.c -share/examples/db2/examples/ex_tpcb.h -share/examples/db2/examples_cxx/AccessExample.cpp -share/examples/db2/examples_cxx/AppinitExample.cpp -share/examples/db2/examples_cxx/LockExample.cpp -share/examples/db2/examples_cxx/MpoolExample.cpp -share/examples/db2/examples_cxx/TpcbExample.cpp -share/examples/db2/examples_java/AccessExample.java -share/examples/db2/examples_java/AppinitExample.java -share/examples/db2/examples_java/LockExample.java -share/examples/db2/examples_java/TpcbExample.java -@dirrm include/db2 -@dirrm share/examples/db2/examples -@dirrm share/examples/db2/examples_cxx -@dirrm share/examples/db2/examples_java -@dirrm share/examples/db2 -@dirrm share/doc/db2/api_c/DbTxn -@dirrm share/doc/db2/api_c/DbEnv -@dirrm share/doc/db2/api_c/DbInfo -@dirrm share/doc/db2/api_c/DbLock -@dirrm share/doc/db2/api_c/DbLockTab -@dirrm share/doc/db2/api_c/DbLog -@dirrm share/doc/db2/api_c/DbMpool -@dirrm share/doc/db2/api_c/DbMpoolFile -@dirrm share/doc/db2/api_c/Db -@dirrm share/doc/db2/api_c/DbTxnMgr -@dirrm share/doc/db2/api_c/Dbc -@dirrm share/doc/db2/api_c/Dbt -@dirrm share/doc/db2/api_c/historic -@dirrm share/doc/db2/api_c/index -@dirrm share/doc/db2/api_c/internal -@dirrm share/doc/db2/api_c/special -@dirrm share/doc/db2/api_c -@dirrm share/doc/db2/test -@dirrm share/doc/db2/sleepycat -@dirrm share/doc/db2/ref/txn -@dirrm share/doc/db2/ref/am -@dirrm share/doc/db2/ref/arch -@dirrm share/doc/db2/ref/cam -@dirrm share/doc/db2/ref/debug -@dirrm share/doc/db2/ref/dumpload -@dirrm share/doc/db2/ref/env -@dirrm share/doc/db2/ref/intro -@dirrm share/doc/db2/ref/install -@dirrm share/doc/db2/ref/lock -@dirrm share/doc/db2/ref/log -@dirrm share/doc/db2/ref/mp -@dirrm share/doc/db2/ref/perl -@dirrm share/doc/db2/ref/program -@dirrm share/doc/db2/ref/sendmail -@dirrm share/doc/db2/ref/simple_tut -@dirrm share/doc/db2/ref/transapp -@dirrm share/doc/db2/ref -@dirrm share/doc/db2/packages -@dirrm share/doc/db2/api_cxx/DbLsn -@dirrm share/doc/db2/api_cxx/Dbc -@dirrm share/doc/db2/api_cxx/DbEnv -@dirrm share/doc/db2/api_cxx/DbException -@dirrm share/doc/db2/api_cxx/DbInfo -@dirrm share/doc/db2/api_cxx/DbLock -@dirrm share/doc/db2/api_cxx/DbLockTab -@dirrm share/doc/db2/api_cxx/DbLog -@dirrm share/doc/db2/api_cxx/Db -@dirrm share/doc/db2/api_cxx/DbMpool -@dirrm share/doc/db2/api_cxx/DbMpoolFile -@dirrm share/doc/db2/api_cxx/DbTxn -@dirrm share/doc/db2/api_cxx/DbTxnMgr -@dirrm share/doc/db2/api_cxx/Dbt -@dirrm share/doc/db2/api_cxx/index -@dirrm share/doc/db2/api_cxx/special -@dirrm share/doc/db2/api_cxx -@dirrm share/doc/db2/utility -@dirrm share/doc/db2/distrib -@dirrm share/doc/db2/build -@dirrm share/doc/db2/api_java/DbMpool -@dirrm share/doc/db2/api_java/DbEnv -@dirrm share/doc/db2/api_java/DbException -@dirrm share/doc/db2/api_java/DbInfo -@dirrm share/doc/db2/api_java/DbLock -@dirrm share/doc/db2/api_java/DbLockTab -@dirrm share/doc/db2/api_java/DbLog -@dirrm share/doc/db2/api_java/DbLsn -@dirrm share/doc/db2/api_java/Db -@dirrm share/doc/db2/api_java/DbMpoolFile -@dirrm share/doc/db2/api_java/DbRunRecoveryException -@dirrm share/doc/db2/api_java/DbTxn -@dirrm share/doc/db2/api_java/DbTxnMgr -@dirrm share/doc/db2/api_java/Dbc -@dirrm share/doc/db2/api_java/Dbt -@dirrm share/doc/db2/api_java/index -@dirrm share/doc/db2/api_java/special -@dirrm share/doc/db2/api_java -@dirrm share/doc/db2/images -@dirrm share/doc/db2 diff --git a/databases/db33/Makefile b/databases/db33/Makefile deleted file mode 100644 index 9b1fe8a00a1e..000000000000 --- a/databases/db33/Makefile +++ /dev/null @@ -1,41 +0,0 @@ -# ports collection makefile for: Berkeley DB -# Date created: 26 Jan 1998 -# Whom: Josh Tiefenbach <josh@ican.net> -# -# $FreeBSD$ -# - -PORTNAME= db -PORTVERSION= 2.7.7 -CATEGORIES= databases -MASTER_SITES= http://www.sleepycat.com/update/${PORTVERSION}/ - -MAINTAINER= josh@ican.net - -Y2K= http://www.sleepycat.com/faq.html#A8 - -MANUAL_PACKAGE_BUILD= incompatible with libc internal db calls -WRKSRC= ${WRKDIR}/${DISTNAME}/build_unix - -INSTALLS_SHLIB= yes -GNU_CONFIGURE= yes -CONFIGURE_SCRIPT= ../dist/configure -CONFIGURE_ARGS= --enable-compat185 \ - --enable-dump185 --enable-cxx - -post-install: - ${MKDIR} ${PREFIX}/share/examples/db2 - cd ${WRKSRC}/..; \ - tar -cf - --exclude tags examples/ examples_cxx/ examples_java/ | \ - ( cd ${PREFIX}/share/examples/db2; tar xf - ) - @${ECHO_MSG} "" - @${ECHO_MSG} "Java support for ${PKGNAME} is *not* built by default, and requires that you" - @${ECHO_MSG} "have a working copy of the JDK (v1.1) installed." - @${ECHO_MSG} "" - @${ECHO_MSG} "To build java support, please read:" - @${ECHO_MSG} "" - @${ECHO_MSG} "${WRKDIR}/${DISTNAME}/java/README" - @${ECHO_MSG} "" - @${ECHO_MSG} "and follow the directions therein." - -.include <bsd.port.mk> diff --git a/databases/db33/distinfo b/databases/db33/distinfo deleted file mode 100644 index d761baf3bdff..000000000000 --- a/databases/db33/distinfo +++ /dev/null @@ -1 +0,0 @@ -MD5 (db-2.7.7.tar.gz) = 20256735091ee382c6601117d82d749a diff --git a/databases/db33/files/patch-aa b/databases/db33/files/patch-aa deleted file mode 100644 index db3d430758a2..000000000000 --- a/databases/db33/files/patch-aa +++ /dev/null @@ -1,506 +0,0 @@ ---- ../dist/Makefile.in.orig Mon Dec 7 21:05:59 1998 -+++ ../dist/Makefile.in Tue Jun 6 17:44:50 2000 -@@ -1,13 +1,16 @@ - # @(#)Makefile.in 10.62 (Sleepycat) 12/7/98 - -+SOVER?= 0 -+ - srcdir= @srcdir@/.. - CPPFLAGS=-I. -I$(srcdir)/include @CPPFLAGS@ -+SHAREDFLAGS= -fpic -DPIC - CFLAGS= -c @CFLAGS@ $(CPPFLAGS) - CC= @CC@ - CXXFLAGS=-c @CXXFLAGS@ $(CPPFLAGS) - CXX= @CXX@ --LDFLAGS=@LDFLAGS@ --LIBS= @LIBS@ -+LDFLAGS=@LDFLAGS@ -L. -+LIBS= @LIBS@ -ldb2 - - SHELL= @db_cv_path_sh@ - ar= @db_cv_path_ar@ cr -@@ -43,85 +46,91 @@ - LOBJS= @LIBOBJS@ - POBJS= err.o getlong.o - --libdb= libdb.a --all: $(libdb) $(PROGS) -+libdb= libdb2.a -+libdbso= libdb2.so.$(SOVER) -+all: $(libdb) $(libdbso) $(PROGS) - - $(libdb): db.h $(OBJS) $(LOBJS) - $(rm) -f $@ - $(ar) $@ $(OBJS) $(LOBJS) - test ! -f $(ranlib) || $(ranlib) $@ - -+$(libdbso): db.h $(OBJS:S/.o$/.so/g) $(LOBJS:S/.o$/.so/g) -+ $(rm) -f $@ -+ $(CXX) -shared -Wl,-x -Wl,-assert -Wl,pure-text -Wl,-soname,$@ -o $@ $(OBJS:S/.o$/.so/g) $(LOBJS:S/.o$/.so/g) -+ ln -sf $@ libdb2.so -+ - DBA= db_archive.o $(POBJS) --db_archive: $(DBA) $(libdb) -- $(CC) -o $@ $(LDFLAGS) $(DBA) $(libdb) $(LIBS) -+db_archive: $(DBA) $(libdbso) -+ $(CC) -o $@ $(LDFLAGS) $(DBA) $(LIBS) - - DBB= db_checkpoint.o $(POBJS) --db_checkpoint: $(DBB) $(libdb) -- $(CC) -o $@ $(LDFLAGS) $(DBB) $(libdb) $(LIBS) -+db_checkpoint: $(DBB) $(libdbso) -+ $(CC) -o $@ $(LDFLAGS) $(DBB) $(LIBS) - - DBC= db_deadlock.o $(POBJS) --db_deadlock: $(DBC) $(libdb) -- $(CC) -o $@ $(LDFLAGS) $(DBC) $(libdb) $(LIBS) -+db_deadlock: $(DBC) $(libdbso) -+ $(CC) -o $@ $(LDFLAGS) $(DBC) $(LIBS) - - DBD= db_dump.o $(POBJS) --db_dump: $(DBD) $(libdb) -- $(CC) -o $@ $(LDFLAGS) $(DBD) $(libdb) $(LIBS) -+db_dump: $(DBD) $(libdbso) -+ $(CC) -o $@ $(LDFLAGS) $(DBD) $(LIBS) - - DBE= db_dump185.o $(POBJS) - db_dump185: $(DBE) - $(CC) -o $@ $(LDFLAGS) $(DBE) $(LIBS) - - DBF= db_load.o $(POBJS) --db_load: $(DBF) $(libdb) -- $(CC) -o $@ $(LDFLAGS) $(DBF) $(libdb) $(LIBS) -+db_load: $(DBF) $(libdbso) -+ $(CC) -o $@ $(LDFLAGS) $(DBF) $(LIBS) - - DBG= db_printlog.o $(POBJS) --db_printlog: $(DBG) $(libdb) -- $(CC) -o $@ $(LDFLAGS) $(DBG) $(libdb) $(LIBS) -+db_printlog: $(DBG) $(libdbso) -+ $(CC) -o $@ $(LDFLAGS) $(DBG) $(LIBS) - - DBH= db_recover.o $(POBJS) --db_recover: $(DBH) $(libdb) -- $(CC) -o $@ $(LDFLAGS) $(DBH) $(libdb) $(LIBS) -+db_recover: $(DBH) $(libdbso) -+ $(CC) -o $@ $(LDFLAGS) $(DBH) $(LIBS) - - DBI= db_stat.o $(POBJS) --db_stat: $(DBI) $(libdb) -- $(CC) -o $@ $(LDFLAGS) $(DBI) $(libdb) $(LIBS) -+db_stat: $(DBI) $(libdbso) -+ $(CC) -o $@ $(LDFLAGS) $(DBI) $(LIBS) - - EPROGS= ex_access ex_appinit ex_btrec ex_lock ex_mpool ex_thread ex_tpcb - DBJ= ex_access.o --ex_access: $(DBJ) $(libdb) -- $(CC) -o $@ $(LDFLAGS) $(DBJ) $(libdb) $(LIBS) -+ex_access: $(DBJ) $(libdbso) -+ $(CC) -o $@ $(LDFLAGS) $(DBJ) $(LIBS) - - DBK= ex_appinit.o --ex_appinit: $(DBK) $(libdb) -- $(CC) -o $@ $(LDFLAGS) $(DBK) $(libdb) $(LIBS) -+ex_appinit: $(DBK) $(libdbso) -+ $(CC) -o $@ $(LDFLAGS) $(DBK) $(LIBS) - - DBL= ex_btrec.o --ex_btrec: $(DBL) $(libdb) -- $(CC) -o $@ $(LDFLAGS) $(DBL) $(libdb) $(LIBS) -+ex_btrec: $(DBL) $(libdbso) -+ $(CC) -o $@ $(LDFLAGS) $(DBL) $(LIBS) - - DBM= ex_lock.o $(POBJS) --ex_lock: $(DBM) $(libdb) -- $(CC) -o $@ $(LDFLAGS) $(DBM) $(libdb) $(LIBS) -+ex_lock: $(DBM) $(libdbso) -+ $(CC) -o $@ $(LDFLAGS) $(DBM) $(LIBS) - - DBN= ex_mpool.o --ex_mpool: $(DBN) $(libdb) -- $(CC) -o $@ $(LDFLAGS) $(DBN) $(libdb) $(LIBS) -+ex_mpool: $(DBN) $(libdbso) -+ $(CC) -o $@ $(LDFLAGS) $(DBN) $(LIBS) - - DBO= ex_thread.o --ex_thread: $(DBO) $(libdb) -- $(CC) -o $@ $(LDFLAGS) $(DBO) $(libdb) $(LIBS) -+ex_thread: $(DBO) $(libdbso) -+ $(CC) -o $@ $(LDFLAGS) $(DBO) $(LIBS) - - DBP= ex_tpcb.o $(POBJS) --ex_tpcb: $(DBP) $(libdb) -- $(CC) -o $@ $(LDFLAGS) $(DBP) $(libdb) $(LIBS) -+ex_tpcb: $(DBP) $(libdbso) -+ $(CC) -o $@ $(LDFLAGS) $(DBP) $(LIBS) - - DBT= tclAppInit.o tcl_dbm.o tcl_hsearch.o tcl_lock.o tcl_log.o tcl_mpool.o \ - tcl_mutex.o tcl_ndbm.o tcl_txn.o utils.o $(POBJS) - - dbtest: .dbtestrc --dbtest: $(DBT) $(libdb) -- $(CC) -o $@ $(LDFLAGS) $(DBT) $(libdb) $(LIBS) -+dbtest: $(DBT) $(libdbso) -+ $(CC) -o $@ $(LDFLAGS) $(DBT) $(LIBS) - - AOBJS= err.o getcwd.o getlong.o getopt.o memcmp.o memcpy.o memmove.o \ - raise.o snprintf.o strerror.o strsep.o vsnprintf.o -@@ -131,8 +140,8 @@ - $(rm) -f $(DBA) $(DBB) $(DBC) $(DBD) $(DBE) $(DBF) $(DBG) $(DBH) - $(rm) -f $(DBI) $(DBJ) $(DBK) $(DBL) $(DBM) $(DBN) $(DBO) $(DBP) - $(rm) -f $(DBT) -- $(rm) -f $(PROGS) $(EPROGS) $(POBJS) $(LOBJS) @build_test@ -- $(rm) -f core *.core .dbtestrc $(libdb) -+ $(rm) -f $(PROGS) $(EPROGS) $(POBJS) $(LOBJS) *.so @build_test@ -+ $(rm) -f core *.core .dbtestrc $(libdb) $(libdbso) - - depend obj: - -@@ -141,11 +150,11 @@ - $(rm) -f confdefs.h db.h db_int.h db_185.h include.tcl - - prefix= @prefix@ --bindir= $(prefix)/BerkeleyDB/bin --datadir=$(prefix)/BerkeleyDB/share --includedir=$(prefix)/BerkeleyDB/include --libdir= $(prefix)/BerkeleyDB/lib --mandir= $(prefix)/BerkeleyDB/docs -+bindir= $(prefix)/bin -+datadir=$(prefix)/share/db2 -+includedir=$(prefix)/include/db2 -+libdir= $(prefix)/lib -+mandir= $(prefix)/share/doc/db2 - - dmode= 755 - emode= 555 -@@ -170,6 +179,9 @@ - @cd $(libdir) && $(rm) -f $(libdb) - @$(cp) -p $(libdb) $(libdir) - @cd $(libdir) && $(chmod) $(fmode) $(libdb) -+ @$(cp) -p $(libdbso) $(libdir) -+ @cd $(libdir) && $(chmod) $(fmode) $(libdbso) -+ ln -sf $(libdbso) $(libdir)/libdb2.so - @echo "Installing DB utilities: $(bindir) ..." - @test -d $(bindir) || \ - ($(mkdir) -p $(bindir) && $(chmod) $(dmode) $(bindir)) -@@ -506,3 +518,320 @@ - $(CC) $(CFLAGS) $? - vsnprintf.o: $(srcdir)/clib/vsnprintf.c - $(CC) $(CFLAGS) $? -+ -+# Shared build -+# Programs. -+db_archive.so: $(srcdir)/db_archive/db_archive.c -+ $(CC) $(CFLAGS) $(SHAREDFLAGS) $? -o $@ -+db_checkpoint.so: $(srcdir)/db_checkpoint/db_checkpoint.c -+ $(CC) $(CFLAGS) $(SHAREDFLAGS) $? -o $@ -+db_deadlock.so: $(srcdir)/db_deadlock/db_deadlock.c -+ $(CC) $(CFLAGS) $(SHAREDFLAGS) $? -o $@ -+db_dump.so: $(srcdir)/db_dump/db_dump.c -+ $(CC) $(CFLAGS) $(SHAREDFLAGS) $? -o $@ -+db_dump185.so: $(srcdir)/db_dump185/db_dump185.c -+ $(CC) $(CFLAGS) $(SHAREDFLAGS) $? -o $@ -+db_load.so: $(srcdir)/db_load/db_load.c -+ $(CC) $(CFLAGS) $(SHAREDFLAGS) $? -o $@ -+db_printlog.so: $(srcdir)/db_printlog/db_printlog.c -+ $(CC) $(CFLAGS) $(SHAREDFLAGS) $? -o $@ -+db_recover.so: $(srcdir)/db_recover/db_recover.c -+ $(CC) $(CFLAGS) $(SHAREDFLAGS) $? -o $@ -+db_stat.so: $(srcdir)/db_stat/db_stat.c -+ $(CC) $(CFLAGS) $(SHAREDFLAGS) $? -o $@ -+ -+# Examples. -+ex_access.so: $(srcdir)/examples/ex_access.c -+ $(CC) $(CFLAGS) $(SHAREDFLAGS) $? -o $@ -+ex_appinit.so: $(srcdir)/examples/ex_appinit.c -+ $(CC) $(CFLAGS) $(SHAREDFLAGS) $? -o $@ -+ex_btrec.so: $(srcdir)/examples/ex_btrec.c -+ $(CC) $(CFLAGS) $(SHAREDFLAGS) $? -o $@ -+ex_lock.so: $(srcdir)/examples/ex_lock.c -+ $(CC) $(CFLAGS) $(SHAREDFLAGS) $? -o $@ -+ex_mpool.so: $(srcdir)/examples/ex_mpool.c -+ $(CC) $(CFLAGS) $(SHAREDFLAGS) $? -o $@ -+ex_thread.so: $(srcdir)/examples/ex_thread.c -+ $(CC) $(CFLAGS) $(SHAREDFLAGS) $? -o $@ -+ex_tpcb.so: $(srcdir)/examples/ex_tpcb.c -+ $(CC) $(CFLAGS) $(SHAREDFLAGS) $? -o $@ -+ -+# DB files. -+db.so: $(srcdir)/db/db.c -+ $(CC) $(CFLAGS) $(SHAREDFLAGS) $? -o $@ -+db_am.so: $(srcdir)/db/db_am.c -+ $(CC) $(CFLAGS) $(SHAREDFLAGS) $? -o $@ -+db_auto.so: $(srcdir)/db/db_auto.c -+ $(CC) $(CFLAGS) $(SHAREDFLAGS) $? -o $@ -+db_conv.so: $(srcdir)/db/db_conv.c -+ $(CC) $(CFLAGS) $(SHAREDFLAGS) $? -o $@ -+db_dispatch.so: $(srcdir)/db/db_dispatch.c -+ $(CC) $(CFLAGS) $(SHAREDFLAGS) $? -o $@ -+db_dup.so: $(srcdir)/db/db_dup.c -+ $(CC) $(CFLAGS) $(SHAREDFLAGS) $? -o $@ -+db_iface.so: $(srcdir)/db/db_iface.c -+ $(CC) $(CFLAGS) $(SHAREDFLAGS) $? -o $@ -+db_join.so: $(srcdir)/db/db_join.c -+ $(CC) $(CFLAGS) $(SHAREDFLAGS) $? -o $@ -+db_overflow.so: $(srcdir)/db/db_overflow.c -+ $(CC) $(CFLAGS) $(SHAREDFLAGS) $? -o $@ -+db_pr.so: $(srcdir)/db/db_pr.c -+ $(CC) $(CFLAGS) $(SHAREDFLAGS) $? -o $@ -+db_rec.so: $(srcdir)/db/db_rec.c -+ $(CC) $(CFLAGS) $(SHAREDFLAGS) $? -o $@ -+db_ret.so: $(srcdir)/db/db_ret.c -+ $(CC) $(CFLAGS) $(SHAREDFLAGS) $? -o $@ -+ -+# Btree source files. -+bt_compare.so: $(srcdir)/btree/bt_compare.c -+ $(CC) $(CFLAGS) $(SHAREDFLAGS) $? -o $@ -+bt_conv.so: $(srcdir)/btree/bt_conv.c -+ $(CC) $(CFLAGS) $(SHAREDFLAGS) $? -o $@ -+bt_curadj.so: $(srcdir)/btree/bt_curadj.c -+ $(CC) $(CFLAGS) $(SHAREDFLAGS) $? -o $@ -+bt_cursor.so: $(srcdir)/btree/bt_cursor.c -+ $(CC) $(CFLAGS) $(SHAREDFLAGS) $? -o $@ -+bt_delete.so: $(srcdir)/btree/bt_delete.c -+ $(CC) $(CFLAGS) $(SHAREDFLAGS) $? -o $@ -+bt_open.so: $(srcdir)/btree/bt_open.c -+ $(CC) $(CFLAGS) $(SHAREDFLAGS) $? -o $@ -+bt_page.so: $(srcdir)/btree/bt_page.c -+ $(CC) $(CFLAGS) $(SHAREDFLAGS) $? -o $@ -+bt_put.so: $(srcdir)/btree/bt_put.c -+ $(CC) $(CFLAGS) $(SHAREDFLAGS) $? -o $@ -+bt_rec.so: $(srcdir)/btree/bt_rec.c -+ $(CC) $(CFLAGS) $(SHAREDFLAGS) $? -o $@ -+bt_recno.so: $(srcdir)/btree/bt_recno.c -+ $(CC) $(CFLAGS) $(SHAREDFLAGS) $? -o $@ -+bt_rsearch.so: $(srcdir)/btree/bt_rsearch.c -+ $(CC) $(CFLAGS) $(SHAREDFLAGS) $? -o $@ -+bt_search.so: $(srcdir)/btree/bt_search.c -+ $(CC) $(CFLAGS) $(SHAREDFLAGS) $? -o $@ -+bt_split.so: $(srcdir)/btree/bt_split.c -+ $(CC) $(CFLAGS) $(SHAREDFLAGS) $? -o $@ -+bt_stack.so: $(srcdir)/btree/bt_stack.c -+ $(CC) $(CFLAGS) $(SHAREDFLAGS) $? -o $@ -+bt_stat.so: $(srcdir)/btree/bt_stat.c -+ $(CC) $(CFLAGS) $(SHAREDFLAGS) $? -o $@ -+btree_auto.so: $(srcdir)/btree/btree_auto.c -+ $(CC) $(CFLAGS) $(SHAREDFLAGS) $? -o $@ -+ -+# C++ interface files. -+cxx_app.so: $(srcdir)/cxx/cxx_app.cpp -+ $(CXX) $(CXXFLAGS) $(SHAREDFLAGS) $? -o $@ -+cxx_except.so: $(srcdir)/cxx/cxx_except.cpp -+ $(CXX) $(CXXFLAGS) $(SHAREDFLAGS) $? -o $@ -+cxx_lock.so: $(srcdir)/cxx/cxx_lock.cpp -+ $(CXX) $(CXXFLAGS) $(SHAREDFLAGS) $? -o $@ -+cxx_log.so: $(srcdir)/cxx/cxx_log.cpp -+ $(CXX) $(CXXFLAGS) $(SHAREDFLAGS) $? -o $@ -+cxx_mpool.so: $(srcdir)/cxx/cxx_mpool.cpp -+ $(CXX) $(CXXFLAGS) $(SHAREDFLAGS) $? -o $@ -+cxx_table.so: $(srcdir)/cxx/cxx_table.cpp -+ $(CXX) $(CXXFLAGS) $(SHAREDFLAGS) $? -o $@ -+cxx_txn.so: $(srcdir)/cxx/cxx_txn.cpp -+ $(CXX) $(CXXFLAGS) $(SHAREDFLAGS) $? -o $@ -+ -+# Hash source files. -+hash_auto.so: $(srcdir)/hash/hash_auto.c -+ $(CC) $(CFLAGS) $(SHAREDFLAGS) $? -o $@ -+hash.so: $(srcdir)/hash/hash.c -+ $(CC) $(CFLAGS) $(SHAREDFLAGS) $? -o $@ -+hash_conv.so: $(srcdir)/hash/hash_conv.c -+ $(CC) $(CFLAGS) $(SHAREDFLAGS) $? -o $@ -+hash_dup.so: $(srcdir)/hash/hash_dup.c -+ $(CC) $(CFLAGS) $(SHAREDFLAGS) $? -o $@ -+hash_func.so: $(srcdir)/hash/hash_func.c -+ $(CC) $(CFLAGS) $(SHAREDFLAGS) $? -o $@ -+hash_page.so: $(srcdir)/hash/hash_page.c -+ $(CC) $(CFLAGS) $(SHAREDFLAGS) $? -o $@ -+hash_rec.so: $(srcdir)/hash/hash_rec.c -+ $(CC) $(CFLAGS) $(SHAREDFLAGS) $? -o $@ -+hash_stat.so: $(srcdir)/hash/hash_stat.c -+ $(CC) $(CFLAGS) $(SHAREDFLAGS) $? -o $@ -+ -+# Lock source files. -+lock.so: $(srcdir)/lock/lock.c -+ $(CC) $(CFLAGS) $(SHAREDFLAGS) $? -o $@ -+lock_conflict.so:$(srcdir)/lock/lock_conflict.c -+ $(CC) $(CFLAGS) $(SHAREDFLAGS) $? -o $@ -+lock_deadlock.so:$(srcdir)/lock/lock_deadlock.c -+ $(CC) $(CFLAGS) $(SHAREDFLAGS) $? -o $@ -+lock_region.so:$(srcdir)/lock/lock_region.c -+ $(CC) $(CFLAGS) $(SHAREDFLAGS) $? -o $@ -+lock_util.so:$(srcdir)/lock/lock_util.c -+ $(CC) $(CFLAGS) $(SHAREDFLAGS) $? -o $@ -+ -+# Log source files. -+log.so: $(srcdir)/log/log.c -+ $(CC) $(CFLAGS) $(SHAREDFLAGS) $? -o $@ -+log_archive.so: $(srcdir)/log/log_archive.c -+ $(CC) $(CFLAGS) $(SHAREDFLAGS) $? -o $@ -+log_auto.so: $(srcdir)/log/log_auto.c -+ $(CC) $(CFLAGS) $(SHAREDFLAGS) $? -o $@ -+log_compare.so: $(srcdir)/log/log_compare.c -+ $(CC) $(CFLAGS) $(SHAREDFLAGS) $? -o $@ -+log_findckp.so: $(srcdir)/log/log_findckp.c -+ $(CC) $(CFLAGS) $(SHAREDFLAGS) $? -o $@ -+log_get.so: $(srcdir)/log/log_get.c -+ $(CC) $(CFLAGS) $(SHAREDFLAGS) $? -o $@ -+log_put.so: $(srcdir)/log/log_put.c -+ $(CC) $(CFLAGS) $(SHAREDFLAGS) $? -o $@ -+log_rec.so: $(srcdir)/log/log_rec.c -+ $(CC) $(CFLAGS) $(SHAREDFLAGS) $? -o $@ -+log_register.so: $(srcdir)/log/log_register.c -+ $(CC) $(CFLAGS) $(SHAREDFLAGS) $? -o $@ -+ -+# Mpool source files. -+mp_bh.so: $(srcdir)/mp/mp_bh.c -+ $(CC) $(CFLAGS) $(SHAREDFLAGS) $? -o $@ -+mp_fget.so: $(srcdir)/mp/mp_fget.c -+ $(CC) $(CFLAGS) $(SHAREDFLAGS) $? -o $@ -+mp_fopen.so: $(srcdir)/mp/mp_fopen.c -+ $(CC) $(CFLAGS) $(SHAREDFLAGS) $? -o $@ -+mp_fput.so: $(srcdir)/mp/mp_fput.c -+ $(CC) $(CFLAGS) $(SHAREDFLAGS) $? -o $@ -+mp_fset.so: $(srcdir)/mp/mp_fset.c -+ $(CC) $(CFLAGS) $(SHAREDFLAGS) $? -o $@ -+mp_open.so: $(srcdir)/mp/mp_open.c -+ $(CC) $(CFLAGS) $(SHAREDFLAGS) $? -o $@ -+mp_pr.so: $(srcdir)/mp/mp_pr.c -+ $(CC) $(CFLAGS) $(SHAREDFLAGS) $? -o $@ -+mp_region.so: $(srcdir)/mp/mp_region.c -+ $(CC) $(CFLAGS) $(SHAREDFLAGS) $? -o $@ -+mp_sync.so: $(srcdir)/mp/mp_sync.c -+ $(CC) $(CFLAGS) $(SHAREDFLAGS) $? -o $@ -+ -+# Mutex source files. -+mutex.so: $(srcdir)/mutex/mutex.c -+ $(CC) $(CFLAGS) $(SHAREDFLAGS) $? -o $@ -+# XXX -+# UTS4 spinlocks -+uts4_cc.so: $(srcdir)/mutex/uts4_cc.s -+ $(AS) $(ASFLAGS) $(SHAREDFLAGS) -o $@ $? -o $@ -+ -+# Transaction source files. -+txn.so: $(srcdir)/txn/txn.c -+ $(CC) $(CFLAGS) $(SHAREDFLAGS) $? -o $@ -+txn_auto.so: $(srcdir)/txn/txn_auto.c -+ $(CC) $(CFLAGS) $(SHAREDFLAGS) $? -o $@ -+txn_rec.so: $(srcdir)/txn/txn_rec.c -+ $(CC) $(CFLAGS) $(SHAREDFLAGS) $? -o $@ -+ -+# XA source files. -+xa.so: $(srcdir)/xa/xa.c -+ $(CC) $(CFLAGS) $(SHAREDFLAGS) $? -o $@ -+xa_db.so: $(srcdir)/xa/xa_db.c -+ $(CC) $(CFLAGS) $(SHAREDFLAGS) $? -o $@ -+xa_map.so: $(srcdir)/xa/xa_map.c -+ $(CC) $(CFLAGS) $(SHAREDFLAGS) $? -o $@ -+ -+# Historic interfaces. -+hsearch.so: $(srcdir)/hsearch/hsearch.c -+ $(CC) $(CFLAGS) $(SHAREDFLAGS) $? -o $@ -+dbm.so: $(srcdir)/dbm/dbm.c -+ $(CC) $(CFLAGS) $(SHAREDFLAGS) $? -o $@ -+db185.so: $(srcdir)/db185/db185.c -+ $(CC) $(CFLAGS) $(SHAREDFLAGS) $? -o $@ -+ -+# Common source files. -+db_appinit.so: $(srcdir)/common/db_appinit.c -+ $(CC) $(CFLAGS) $(SHAREDFLAGS) $? -o $@ -+db_apprec.so: $(srcdir)/common/db_apprec.c -+ $(CC) $(CFLAGS) $(SHAREDFLAGS) $? -o $@ -+db_byteorder.so: $(srcdir)/common/db_byteorder.c -+ $(CC) $(CFLAGS) $(SHAREDFLAGS) $? -o $@ -+db_err.so: $(srcdir)/common/db_err.c -+ $(CC) $(CFLAGS) $(SHAREDFLAGS) $? -o $@ -+db_log2.so: $(srcdir)/common/db_log2.c -+ $(CC) $(CFLAGS) $(SHAREDFLAGS) $? -o $@ -+db_region.so: $(srcdir)/common/db_region.c -+ $(CC) $(CFLAGS) $(SHAREDFLAGS) $? -o $@ -+db_salloc.so: $(srcdir)/common/db_salloc.c -+ $(CC) $(CFLAGS) $(SHAREDFLAGS) $? -o $@ -+db_shash.so: $(srcdir)/common/db_shash.c -+ $(CC) $(CFLAGS) $(SHAREDFLAGS) $? -o $@ -+ -+# OS specific source files. -+os_abs.so: $(srcdir)/os/os_abs.c -+ $(CC) $(CFLAGS) $(SHAREDFLAGS) $? -o $@ -+os_alloc.so: $(srcdir)/os/os_alloc.c -+ $(CC) $(CFLAGS) $(SHAREDFLAGS) $? -o $@ -+os_config.so: $(srcdir)/os/os_config.c -+ $(CC) $(CFLAGS) $(SHAREDFLAGS) $? -o $@ -+os_dir.so: $(srcdir)/os/os_dir.c -+ $(CC) $(CFLAGS) $(SHAREDFLAGS) $? -o $@ -+os_fid.so: $(srcdir)/os/os_fid.c -+ $(CC) $(CFLAGS) $(SHAREDFLAGS) $? -o $@ -+os_fsync.so: $(srcdir)/os/os_fsync.c -+ $(CC) $(CFLAGS) $(SHAREDFLAGS) $? -o $@ -+os_map.so: $(srcdir)/os/os_map.c -+ $(CC) $(CFLAGS) $(SHAREDFLAGS) $? -o $@ -+os_oflags.so: $(srcdir)/os/os_oflags.c -+ $(CC) $(CFLAGS) $(SHAREDFLAGS) $? -o $@ -+os_open.so: $(srcdir)/os/os_open.c -+ $(CC) $(CFLAGS) $(SHAREDFLAGS) $? -o $@ -+os_rpath.so: $(srcdir)/os/os_rpath.c -+ $(CC) $(CFLAGS) $(SHAREDFLAGS) $? -o $@ -+os_rw.so: $(srcdir)/os/os_rw.c -+ $(CC) $(CFLAGS) $(SHAREDFLAGS) $? -o $@ -+os_seek.so: $(srcdir)/os/os_seek.c -+ $(CC) $(CFLAGS) $(SHAREDFLAGS) $? -o $@ -+os_sleep.so: $(srcdir)/os/os_sleep.c -+ $(CC) $(CFLAGS) $(SHAREDFLAGS) $? -o $@ -+os_spin.so: $(srcdir)/os/os_spin.c -+ $(CC) $(CFLAGS) $(SHAREDFLAGS) $? -o $@ -+os_stat.so: $(srcdir)/os/os_stat.c -+ $(CC) $(CFLAGS) $(SHAREDFLAGS) $? -o $@ -+os_tmpdir.so: $(srcdir)/os/os_tmpdir.c -+ $(CC) $(CFLAGS) $(SHAREDFLAGS) $? -o $@ -+os_unlink.so: $(srcdir)/os/os_unlink.c -+ $(CC) $(CFLAGS) $(SHAREDFLAGS) $? -o $@ -+ -+# Test programs. -+tclAppInit.so: $(srcdir)/test/tclAppInit.c -+ $(CC) $(CFLAGS) $(SHAREDFLAGS) $? -o $@ -+tcl_dbm.so: $(srcdir)/test/tcl_dbm.c -+ $(CC) $(CFLAGS) $(SHAREDFLAGS) $? -o $@ -+tcl_hsearch.so: $(srcdir)/test/tcl_hsearch.c -+ $(CC) $(CFLAGS) $(SHAREDFLAGS) $? -o $@ -+tcl_lock.so: $(srcdir)/test/tcl_lock.c -+ $(CC) $(CFLAGS) $(SHAREDFLAGS) $? -o $@ -+tcl_log.so: $(srcdir)/test/tcl_log.c -+ $(CC) $(CFLAGS) $(SHAREDFLAGS) $? -o $@ -+tcl_mpool.so: $(srcdir)/test/tcl_mpool.c -+ $(CC) $(CFLAGS) $(SHAREDFLAGS) $? -o $@ -+tcl_mutex.so: $(srcdir)/test/tcl_mutex.c -+ $(CC) $(CFLAGS) $(SHAREDFLAGS) $? -o $@ -+tcl_ndbm.so: $(srcdir)/test/tcl_ndbm.c -+ $(CC) $(CFLAGS) $(SHAREDFLAGS) $? -o $@ -+tcl_txn.so: $(srcdir)/test/tcl_txn.c -+ $(CC) $(CFLAGS) $(SHAREDFLAGS) $? -o $@ -+utils.so: $(srcdir)/test/utils.c -+ $(CC) $(CFLAGS) $(SHAREDFLAGS) $? -o $@ -+ -+# Replacement source files. -+err.so: $(srcdir)/clib/err.c -+ $(CC) $(CFLAGS) $(SHAREDFLAGS) $? -o $@ -+getcwd.so: $(srcdir)/clib/getcwd.c -+ $(CC) $(CFLAGS) $(SHAREDFLAGS) $? -o $@ -+getlong.so: $(srcdir)/clib/getlong.c -+ $(CC) $(CFLAGS) $(SHAREDFLAGS) $? -o $@ -+getopt.so: $(srcdir)/clib/getopt.c -+ $(CC) $(CFLAGS) $(SHAREDFLAGS) $? -o $@ -+memcmp.so: $(srcdir)/clib/memcmp.c -+ $(CC) $(CFLAGS) $(SHAREDFLAGS) $? -o $@ -+memcpy.so: $(srcdir)/clib/memmove.c -+ $(CC) -DMEMCOPY $(CFLAGS) $(SHAREDFLAGS) $? -o $@ -+memmove.so: $(srcdir)/clib/memmove.c -+ $(CC) -DMEMMOVE $(CFLAGS) $(SHAREDFLAGS) $? -o $@ -+raise.so: $(srcdir)/clib/raise.c -+ $(CC) $(CFLAGS) $(SHAREDFLAGS) $? -o $@ -+snprintf.so: $(srcdir)/clib/snprintf.c -+ $(CC) $(CFLAGS) $(SHAREDFLAGS) $? -o $@ -+strerror.so: $(srcdir)/clib/strerror.c -+ $(CC) $(CFLAGS) $(SHAREDFLAGS) $? -o $@ -+strsep.so: $(srcdir)/clib/strsep.c -+ $(CC) $(CFLAGS) $(SHAREDFLAGS) $? -o $@ -+vsnprintf.so: $(srcdir)/clib/vsnprintf.c -+ $(CC) $(CFLAGS) $(SHAREDFLAGS) $? -o $@ diff --git a/databases/db33/pkg-comment b/databases/db33/pkg-comment deleted file mode 100644 index 39a54a240320..000000000000 --- a/databases/db33/pkg-comment +++ /dev/null @@ -1 +0,0 @@ -The Berkeley DB package, revision 2 diff --git a/databases/db33/pkg-descr b/databases/db33/pkg-descr deleted file mode 100644 index b9ed34ee6d81..000000000000 --- a/databases/db33/pkg-descr +++ /dev/null @@ -1,13 +0,0 @@ -Revesion 2 of the Berkeley DB library. This version uses an incompatible -underlying database format than revision 1 and a different standard API. -Utilities are included in the distribution to convert v1.85 databases to v2 -databases, and a backwards compatible API is provided to maintain -compatibility with programs using the v1.85 interface. - -There are minor interface changes in this release which may require that DB -applications be modified and recompiled. For a complete discussion of -interface changes, see: - -http://www.sleepycat.com/update/ - -WWW: http://www.sleepycat.com diff --git a/databases/db33/pkg-plist b/databases/db33/pkg-plist deleted file mode 100644 index 961bc047a6e4..000000000000 --- a/databases/db33/pkg-plist +++ /dev/null @@ -1,564 +0,0 @@ -include/db2/db.h -include/db2/db_cxx.h -include/db2/db_185.h -lib/libdb2.a -lib/libdb2.so -lib/libdb2.so.0 -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 -share/doc/db2/api_c/Db/close.html -share/doc/db2/api_c/Db/cursor.html -share/doc/db2/api_c/Db/del.html -share/doc/db2/api_c/Db/fd.html -share/doc/db2/api_c/Db/get.html -share/doc/db2/api_c/Db/join.html -share/doc/db2/api_c/Db/open.html -share/doc/db2/api_c/Db/put.html -share/doc/db2/api_c/Db/stat.html -share/doc/db2/api_c/Db/sync.html -share/doc/db2/api_c/DbEnv/appexit.html -share/doc/db2/api_c/DbEnv/appinit.html -share/doc/db2/api_c/DbEnv/env.html -share/doc/db2/api_c/DbEnv/version.html -share/doc/db2/api_c/DbInfo/info.html -share/doc/db2/api_c/DbLock/put.html -share/doc/db2/api_c/DbLockTab/close.html -share/doc/db2/api_c/DbLockTab/detect.html -share/doc/db2/api_c/DbLockTab/get.html -share/doc/db2/api_c/DbLockTab/id.html -share/doc/db2/api_c/DbLockTab/open.html -share/doc/db2/api_c/DbLockTab/stat.html -share/doc/db2/api_c/DbLockTab/unlink.html -share/doc/db2/api_c/DbLockTab/vec.html -share/doc/db2/api_c/DbLog/archive.html -share/doc/db2/api_c/DbLog/close.html -share/doc/db2/api_c/DbLog/compare.html -share/doc/db2/api_c/DbLog/db_register.html -share/doc/db2/api_c/DbLog/db_unregister.html -share/doc/db2/api_c/DbLog/file.html -share/doc/db2/api_c/DbLog/flush.html -share/doc/db2/api_c/DbLog/get.html -share/doc/db2/api_c/DbLog/lsn.html -share/doc/db2/api_c/DbLog/open.html -share/doc/db2/api_c/DbLog/put.html -share/doc/db2/api_c/DbLog/stat.html -share/doc/db2/api_c/DbLog/unlink.html -share/doc/db2/api_c/DbMpool/close.html -share/doc/db2/api_c/DbMpool/db_register.html -share/doc/db2/api_c/DbMpool/open.html -share/doc/db2/api_c/DbMpool/stat.html -share/doc/db2/api_c/DbMpool/sync.html -share/doc/db2/api_c/DbMpool/trickle.html -share/doc/db2/api_c/DbMpool/unlink.html -share/doc/db2/api_c/DbMpoolFile/close.html -share/doc/db2/api_c/DbMpoolFile/get.html -share/doc/db2/api_c/DbMpoolFile/open.html -share/doc/db2/api_c/DbMpoolFile/put.html -share/doc/db2/api_c/DbMpoolFile/set.html -share/doc/db2/api_c/DbMpoolFile/sync.html -share/doc/db2/api_c/DbTxn/abort.html -share/doc/db2/api_c/DbTxn/commit.html -share/doc/db2/api_c/DbTxn/id.html -share/doc/db2/api_c/DbTxn/prepare.html -share/doc/db2/api_c/DbTxnMgr/begin.html -share/doc/db2/api_c/DbTxnMgr/checkpoint.html -share/doc/db2/api_c/DbTxnMgr/close.html -share/doc/db2/api_c/DbTxnMgr/open.html -share/doc/db2/api_c/DbTxnMgr/stat.html -share/doc/db2/api_c/DbTxnMgr/unlink.html -share/doc/db2/api_c/Dbc/close.html -share/doc/db2/api_c/Dbc/del.html -share/doc/db2/api_c/Dbc/get.html -share/doc/db2/api_c/Dbc/put.html -share/doc/db2/api_c/Dbt/dbt.html -share/doc/db2/api_c/historic/dbm.html -share/doc/db2/api_c/historic/hsearch.html -share/doc/db2/api_c/index/flags.html -share/doc/db2/api_c/index/function.html -share/doc/db2/api_c/index/structure.html -share/doc/db2/api_c/internal/db_jump_set.html -share/doc/db2/api_c/internal/db_value_set.html -share/doc/db2/api_cxx/Db/class.html -share/doc/db2/api_cxx/Db/close.html -share/doc/db2/api_cxx/Db/cursor.html -share/doc/db2/api_cxx/Db/del.html -share/doc/db2/api_cxx/Db/fd.html -share/doc/db2/api_cxx/Db/get.html -share/doc/db2/api_cxx/Db/get_byteswapped.html -share/doc/db2/api_cxx/Db/get_type.html -share/doc/db2/api_cxx/Db/join.html -share/doc/db2/api_cxx/Db/open.html -share/doc/db2/api_cxx/Db/put.html -share/doc/db2/api_cxx/Db/stat.html -share/doc/db2/api_cxx/Db/sync.html -share/doc/db2/api_cxx/DbEnv/appexit.html -share/doc/db2/api_cxx/DbEnv/appinit.html -share/doc/db2/api_cxx/DbEnv/class.html -share/doc/db2/api_cxx/DbEnv/get_lg_info.html -share/doc/db2/api_cxx/DbEnv/get_lk_info.html -share/doc/db2/api_cxx/DbEnv/get_mp_info.html -share/doc/db2/api_cxx/DbEnv/get_tx_info.html -share/doc/db2/api_cxx/DbEnv/set_errcall.html -share/doc/db2/api_cxx/DbEnv/set_errfile.html -share/doc/db2/api_cxx/DbEnv/set_error_model.html -share/doc/db2/api_cxx/DbEnv/set_error_stream.html -share/doc/db2/api_cxx/DbEnv/set_errpfx.html -share/doc/db2/api_cxx/DbEnv/set_lg_max.html -share/doc/db2/api_cxx/DbEnv/set_lk_conflicts.html -share/doc/db2/api_cxx/DbEnv/set_lk_detect.html -share/doc/db2/api_cxx/DbEnv/set_lk_max.html -share/doc/db2/api_cxx/DbEnv/set_lk_modes.html -share/doc/db2/api_cxx/DbEnv/set_lorder.html -share/doc/db2/api_cxx/DbEnv/set_mp_mmapsize.html -share/doc/db2/api_cxx/DbEnv/set_mp_size.html -share/doc/db2/api_cxx/DbEnv/set_tx_max.html -share/doc/db2/api_cxx/DbEnv/set_tx_recover.html -share/doc/db2/api_cxx/DbEnv/set_verbose.html -share/doc/db2/api_cxx/DbEnv/version.html -share/doc/db2/api_cxx/DbException/class.html -share/doc/db2/api_cxx/DbException/get_errno.html -share/doc/db2/api_cxx/DbException/what.html -share/doc/db2/api_cxx/DbInfo/class.html -share/doc/db2/api_cxx/DbInfo/set_bt_compare.html -share/doc/db2/api_cxx/DbInfo/set_bt_maxkey.html -share/doc/db2/api_cxx/DbInfo/set_bt_minkey.html -share/doc/db2/api_cxx/DbInfo/set_bt_prefix.html -share/doc/db2/api_cxx/DbInfo/set_cachesize.html -share/doc/db2/api_cxx/DbInfo/set_compare.html -share/doc/db2/api_cxx/DbInfo/set_flags.html -share/doc/db2/api_cxx/DbInfo/set_h_ffactor.html -share/doc/db2/api_cxx/DbInfo/set_h_hash.html -share/doc/db2/api_cxx/DbInfo/set_h_nelem.html -share/doc/db2/api_cxx/DbInfo/set_lorder.html -share/doc/db2/api_cxx/DbInfo/set_malloc.html -share/doc/db2/api_cxx/DbInfo/set_pagesize.html -share/doc/db2/api_cxx/DbInfo/set_re_delim.html -share/doc/db2/api_cxx/DbInfo/set_re_len.html -share/doc/db2/api_cxx/DbInfo/set_re_pad.html -share/doc/db2/api_cxx/DbInfo/set_re_source.html -share/doc/db2/api_cxx/DbLock/class.html -share/doc/db2/api_cxx/DbLock/put.html -share/doc/db2/api_cxx/DbLockTab/class.html -share/doc/db2/api_cxx/DbLockTab/close.html -share/doc/db2/api_cxx/DbLockTab/detect.html -share/doc/db2/api_cxx/DbLockTab/get.html -share/doc/db2/api_cxx/DbLockTab/id.html -share/doc/db2/api_cxx/DbLockTab/open.html -share/doc/db2/api_cxx/DbLockTab/stat.html -share/doc/db2/api_cxx/DbLockTab/unlink.html -share/doc/db2/api_cxx/DbLockTab/vec.html -share/doc/db2/api_cxx/DbLog/archive.html -share/doc/db2/api_cxx/DbLog/class.html -share/doc/db2/api_cxx/DbLog/close.html -share/doc/db2/api_cxx/DbLog/compare.html -share/doc/db2/api_cxx/DbLog/db_register.html -share/doc/db2/api_cxx/DbLog/db_unregister.html -share/doc/db2/api_cxx/DbLog/file.html -share/doc/db2/api_cxx/DbLog/flush.html -share/doc/db2/api_cxx/DbLog/get.html -share/doc/db2/api_cxx/DbLog/open.html -share/doc/db2/api_cxx/DbLog/put.html -share/doc/db2/api_cxx/DbLog/stat.html -share/doc/db2/api_cxx/DbLog/unlink.html -share/doc/db2/api_cxx/DbLsn/class.html -share/doc/db2/api_cxx/DbMpool/class.html -share/doc/db2/api_cxx/DbMpool/close.html -share/doc/db2/api_cxx/DbMpool/db_register.html -share/doc/db2/api_cxx/DbMpool/open.html -share/doc/db2/api_cxx/DbMpool/stat.html -share/doc/db2/api_cxx/DbMpool/sync.html -share/doc/db2/api_cxx/DbMpool/trickle.html -share/doc/db2/api_cxx/DbMpool/unlink.html -share/doc/db2/api_cxx/DbMpoolFile/class.html -share/doc/db2/api_cxx/DbMpoolFile/close.html -share/doc/db2/api_cxx/DbMpoolFile/get.html -share/doc/db2/api_cxx/DbMpoolFile/open.html -share/doc/db2/api_cxx/DbMpoolFile/put.html -share/doc/db2/api_cxx/DbMpoolFile/set.html -share/doc/db2/api_cxx/DbMpoolFile/sync.html -share/doc/db2/api_cxx/DbTxn/abort.html -share/doc/db2/api_cxx/DbTxn/class.html -share/doc/db2/api_cxx/DbTxn/commit.html -share/doc/db2/api_cxx/DbTxn/id.html -share/doc/db2/api_cxx/DbTxn/prepare.html -share/doc/db2/api_cxx/DbTxnMgr/begin.html -share/doc/db2/api_cxx/DbTxnMgr/checkpoint.html -share/doc/db2/api_cxx/DbTxnMgr/class.html -share/doc/db2/api_cxx/DbTxnMgr/close.html -share/doc/db2/api_cxx/DbTxnMgr/open.html -share/doc/db2/api_cxx/DbTxnMgr/stat.html -share/doc/db2/api_cxx/DbTxnMgr/unlink.html -share/doc/db2/api_cxx/Dbc/class.html -share/doc/db2/api_cxx/Dbc/close.html -share/doc/db2/api_cxx/Dbc/del.html -share/doc/db2/api_cxx/Dbc/get.html -share/doc/db2/api_cxx/Dbc/put.html -share/doc/db2/api_cxx/Dbt/class.html -share/doc/db2/api_cxx/index/class.html -share/doc/db2/api_java/Db/class.html -share/doc/db2/api_java/Db/close.html -share/doc/db2/api_java/Db/cursor.html -share/doc/db2/api_java/Db/del.html -share/doc/db2/api_java/Db/fd.html -share/doc/db2/api_java/Db/get.html -share/doc/db2/api_java/Db/get_byteswapped.html -share/doc/db2/api_java/Db/get_type.html -share/doc/db2/api_java/Db/join.html -share/doc/db2/api_java/Db/open.html -share/doc/db2/api_java/Db/put.html -share/doc/db2/api_java/Db/stat.html -share/doc/db2/api_java/Db/sync.html -share/doc/db2/api_java/DbEnv/appexit.html -share/doc/db2/api_java/DbEnv/appinit.html -share/doc/db2/api_java/DbEnv/class.html -share/doc/db2/api_java/DbEnv/get_lg_info.html -share/doc/db2/api_java/DbEnv/get_lk_info.html -share/doc/db2/api_java/DbEnv/get_mp_info.html -share/doc/db2/api_java/DbEnv/get_tx_info.html -share/doc/db2/api_java/DbEnv/set_errcall.html -share/doc/db2/api_java/DbEnv/set_error_stream.html -share/doc/db2/api_java/DbEnv/set_errpfx.html -share/doc/db2/api_java/DbEnv/set_lg_max.html -share/doc/db2/api_java/DbEnv/set_lk_conflicts.html -share/doc/db2/api_java/DbEnv/set_lk_detect.html -share/doc/db2/api_java/DbEnv/set_lk_max.html -share/doc/db2/api_java/DbEnv/set_lk_modes.html -share/doc/db2/api_java/DbEnv/set_lorder.html -share/doc/db2/api_java/DbEnv/set_mp_mmapsize.html -share/doc/db2/api_java/DbEnv/set_mp_size.html -share/doc/db2/api_java/DbEnv/set_tx_max.html -share/doc/db2/api_java/DbEnv/set_verbose.html -share/doc/db2/api_java/DbEnv/version.html -share/doc/db2/api_java/DbException/class.html -share/doc/db2/api_java/DbException/get_errno.html -share/doc/db2/api_java/DbInfo/class.html -share/doc/db2/api_java/DbInfo/set_bt_compare.html -share/doc/db2/api_java/DbInfo/set_bt_maxkey.html -share/doc/db2/api_java/DbInfo/set_bt_minkey.html -share/doc/db2/api_java/DbInfo/set_bt_prefix.html -share/doc/db2/api_java/DbInfo/set_cachesize.html -share/doc/db2/api_java/DbInfo/set_compare.html -share/doc/db2/api_java/DbInfo/set_flags.html -share/doc/db2/api_java/DbInfo/set_h_ffactor.html -share/doc/db2/api_java/DbInfo/set_h_hash.html -share/doc/db2/api_java/DbInfo/set_h_nelem.html -share/doc/db2/api_java/DbInfo/set_lorder.html -share/doc/db2/api_java/DbInfo/set_malloc.html -share/doc/db2/api_java/DbInfo/set_pagesize.html -share/doc/db2/api_java/DbInfo/set_re_delim.html -share/doc/db2/api_java/DbInfo/set_re_len.html -share/doc/db2/api_java/DbInfo/set_re_pad.html -share/doc/db2/api_java/DbInfo/set_re_source.html -share/doc/db2/api_java/DbLock/class.html -share/doc/db2/api_java/DbLock/put.html -share/doc/db2/api_java/DbLockTab/class.html -share/doc/db2/api_java/DbLockTab/close.html -share/doc/db2/api_java/DbLockTab/detect.html -share/doc/db2/api_java/DbLockTab/get.html -share/doc/db2/api_java/DbLockTab/id.html -share/doc/db2/api_java/DbLockTab/open.html -share/doc/db2/api_java/DbLockTab/stat.html -share/doc/db2/api_java/DbLockTab/unlink.html -share/doc/db2/api_java/DbLockTab/vec.html -share/doc/db2/api_java/DbLog/archive.html -share/doc/db2/api_java/DbLog/class.html -share/doc/db2/api_java/DbLog/close.html -share/doc/db2/api_java/DbLog/compare.html -share/doc/db2/api_java/DbLog/db_register.html -share/doc/db2/api_java/DbLog/db_unregister.html -share/doc/db2/api_java/DbLog/file.html -share/doc/db2/api_java/DbLog/flush.html -share/doc/db2/api_java/DbLog/get.html -share/doc/db2/api_java/DbLog/open.html -share/doc/db2/api_java/DbLog/put.html -share/doc/db2/api_java/DbLog/stat.html -share/doc/db2/api_java/DbLog/unlink.html -share/doc/db2/api_java/DbLsn/class.html -share/doc/db2/api_java/DbMpool/class.html -share/doc/db2/api_java/DbMpool/close.html -share/doc/db2/api_java/DbMpool/db_register.html -share/doc/db2/api_java/DbMpool/open.html -share/doc/db2/api_java/DbMpool/stat.html -share/doc/db2/api_java/DbMpool/sync.html -share/doc/db2/api_java/DbMpool/trickle.html -share/doc/db2/api_java/DbMpool/unlink.html -share/doc/db2/api_java/DbMpoolFile/class.html -share/doc/db2/api_java/DbMpoolFile/close.html -share/doc/db2/api_java/DbMpoolFile/get.html -share/doc/db2/api_java/DbMpoolFile/open.html -share/doc/db2/api_java/DbMpoolFile/put.html -share/doc/db2/api_java/DbMpoolFile/set.html -share/doc/db2/api_java/DbMpoolFile/sync.html -share/doc/db2/api_java/DbRunRecoveryException/class.html -share/doc/db2/api_java/DbTxn/abort.html -share/doc/db2/api_java/DbTxn/class.html -share/doc/db2/api_java/DbTxn/commit.html -share/doc/db2/api_java/DbTxn/id.html -share/doc/db2/api_java/DbTxn/prepare.html -share/doc/db2/api_java/DbTxnMgr/begin.html -share/doc/db2/api_java/DbTxnMgr/checkpoint.html -share/doc/db2/api_java/DbTxnMgr/class.html -share/doc/db2/api_java/DbTxnMgr/close.html -share/doc/db2/api_java/DbTxnMgr/open.html -share/doc/db2/api_java/DbTxnMgr/stat.html -share/doc/db2/api_java/DbTxnMgr/unlink.html -share/doc/db2/api_java/Dbc/class.html -share/doc/db2/api_java/Dbc/close.html -share/doc/db2/api_java/Dbc/del.html -share/doc/db2/api_java/Dbc/get.html -share/doc/db2/api_java/Dbc/put.html -share/doc/db2/api_java/Dbt/class.html -share/doc/db2/api_java/index/class.html -share/doc/db2/build/java.html -share/doc/db2/build/shared.html -share/doc/db2/build/shared_gcc.html -share/doc/db2/build/shared_hp.html -share/doc/db2/build/unix.html -share/doc/db2/build/unix_faq.html -share/doc/db2/build/win16.html -share/doc/db2/build/win32.html -share/doc/db2/build/win_faq.html -share/doc/db2/distrib/layout.html -share/doc/db2/images/folder.gif -share/doc/db2/images/folder_open.gif -share/doc/db2/images/next.gif -share/doc/db2/images/prev.gif -share/doc/db2/images/ps.gif -share/doc/db2/images/sleepycat.gif -share/doc/db2/images/toc.gif -share/doc/db2/index.html -share/doc/db2/packages/hash_usenix.ps -share/doc/db2/packages/index.html -share/doc/db2/packages/libtp_usenix.ps -share/doc/db2/packages/witold.html -share/doc/db2/ref/am/bt_compare.html -share/doc/db2/ref/am/bt_dup.html -share/doc/db2/ref/am/bt_maxkey.html -share/doc/db2/ref/am/bt_minkey.html -share/doc/db2/ref/am/bt_prefix.html -share/doc/db2/ref/am/bt_recnum.html -share/doc/db2/ref/am/byteorder.html -share/doc/db2/ref/am/cachesize.html -share/doc/db2/ref/am/close.html -share/doc/db2/ref/am/compare.html -share/doc/db2/ref/am/curclose.html -share/doc/db2/ref/am/curdel.html -share/doc/db2/ref/am/curget.html -share/doc/db2/ref/am/curput.html -share/doc/db2/ref/am/cursor.html -share/doc/db2/ref/am/delete.html -share/doc/db2/ref/am/get.html -share/doc/db2/ref/am/h_dup.html -share/doc/db2/ref/am/h_ffactor.html -share/doc/db2/ref/am/h_hash.html -share/doc/db2/ref/am/h_nelem.html -share/doc/db2/ref/am/intro.html -share/doc/db2/ref/am/join.html -share/doc/db2/ref/am/logrec.html -share/doc/db2/ref/am/malloc.html -share/doc/db2/ref/am/ops.html -share/doc/db2/ref/am/pagesize.html -share/doc/db2/ref/am/partial.html -share/doc/db2/ref/am/put.html -share/doc/db2/ref/am/re_delim.html -share/doc/db2/ref/am/re_len.html -share/doc/db2/ref/am/re_pad.html -share/doc/db2/ref/am/re_source.html -share/doc/db2/ref/am/renumber.html -share/doc/db2/ref/am/select.html -share/doc/db2/ref/am/stat.html -share/doc/db2/ref/am/sync.html -share/doc/db2/ref/arch/apis.html -share/doc/db2/ref/arch/bigpic.gif -share/doc/db2/ref/arch/bigpic.html -share/doc/db2/ref/arch/env.html -share/doc/db2/ref/arch/extending.html -share/doc/db2/ref/arch/progmodel.html -share/doc/db2/ref/arch/script.html -share/doc/db2/ref/arch/smallpic.gif -share/doc/db2/ref/arch/subsystem.html -share/doc/db2/ref/arch/utilities.html -share/doc/db2/ref/cam/intro.html -share/doc/db2/ref/debug/runtime.html -share/doc/db2/ref/dumpload/format.html -share/doc/db2/ref/dumpload/text.html -share/doc/db2/ref/dumpload/utility.html -share/doc/db2/ref/env/create.html -share/doc/db2/ref/env/naming.html -share/doc/db2/ref/env/open.html -share/doc/db2/ref/env/region.html -share/doc/db2/ref/env/security.html -share/doc/db2/ref/install/file.html -share/doc/db2/ref/install/magic.s5.be.txt -share/doc/db2/ref/install/magic.s5.le.txt -share/doc/db2/ref/install/magic.txt -share/doc/db2/ref/intro/distrib.html -share/doc/db2/ref/intro/do.html -share/doc/db2/ref/intro/what.html -share/doc/db2/ref/intro/where.html -share/doc/db2/ref/lock/stdmode.html -share/doc/db2/ref/log/config.html -share/doc/db2/ref/log/intro.html -share/doc/db2/ref/log/limits.html -share/doc/db2/ref/mp/config.html -share/doc/db2/ref/mp/intro.html -share/doc/db2/ref/perl/intro.html -share/doc/db2/ref/program/appsignals.html -share/doc/db2/ref/program/byteorder.html -share/doc/db2/ref/program/compatible.html -share/doc/db2/ref/program/convert.html -share/doc/db2/ref/program/dbsizes.html -share/doc/db2/ref/program/environ.html -share/doc/db2/ref/program/errorret.html -share/doc/db2/ref/program/java.html -share/doc/db2/ref/program/runtime.html -share/doc/db2/ref/program/solaris.txt -share/doc/db2/ref/program/thread.html -share/doc/db2/ref/program/version.html -share/doc/db2/ref/sendmail/intro.html -share/doc/db2/ref/simple_tut/close.html -share/doc/db2/ref/simple_tut/del.html -share/doc/db2/ref/simple_tut/errors.html -share/doc/db2/ref/simple_tut/example.txt -share/doc/db2/ref/simple_tut/get.html -share/doc/db2/ref/simple_tut/intro.html -share/doc/db2/ref/simple_tut/keydata.html -share/doc/db2/ref/simple_tut/open.html -share/doc/db2/ref/simple_tut/put.html -share/doc/db2/ref/toc.html -share/doc/db2/ref/transapp/admin.html -share/doc/db2/ref/transapp/apps.html -share/doc/db2/ref/transapp/archival.html -share/doc/db2/ref/transapp/checkpoint.html -share/doc/db2/ref/transapp/deadlock.html -share/doc/db2/ref/transapp/filesys.html -share/doc/db2/ref/transapp/intro.html -share/doc/db2/ref/transapp/recovery.html -share/doc/db2/ref/transapp/throughput.html -share/doc/db2/ref/transapp/writetest.txt -share/doc/db2/ref/txn/config.html -share/doc/db2/ref/txn/limits.html -share/doc/db2/ref/txn/other.html -share/doc/db2/ref/txn/stability.html -share/doc/db2/sleepycat/contact.html -share/doc/db2/sleepycat/products.html -share/doc/db2/test/build.html -share/doc/db2/test/build_faq.html -share/doc/db2/test/debug.html -share/doc/db2/test/run.html -share/doc/db2/utility/db_archive.html -share/doc/db2/utility/db_checkpoint.html -share/doc/db2/utility/db_deadlock.html -share/doc/db2/utility/db_dump.html -share/doc/db2/utility/db_load.html -share/doc/db2/utility/db_recover.html -share/doc/db2/utility/db_stat.html -share/doc/db2/utility/index.html -share/examples/db2/examples/README -share/examples/db2/examples/ex_access.c -share/examples/db2/examples/ex_appinit.c -share/examples/db2/examples/ex_btrec.c -share/examples/db2/examples/ex_lock.c -share/examples/db2/examples/ex_mpool.c -share/examples/db2/examples/ex_thread.c -share/examples/db2/examples/ex_tpcb.c -share/examples/db2/examples/ex_tpcb.h -share/examples/db2/examples_cxx/AccessExample.cpp -share/examples/db2/examples_cxx/AppinitExample.cpp -share/examples/db2/examples_cxx/LockExample.cpp -share/examples/db2/examples_cxx/MpoolExample.cpp -share/examples/db2/examples_cxx/TpcbExample.cpp -share/examples/db2/examples_java/AccessExample.java -share/examples/db2/examples_java/AppinitExample.java -share/examples/db2/examples_java/LockExample.java -share/examples/db2/examples_java/TpcbExample.java -@dirrm include/db2 -@dirrm share/examples/db2/examples -@dirrm share/examples/db2/examples_cxx -@dirrm share/examples/db2/examples_java -@dirrm share/examples/db2 -@dirrm share/doc/db2/api_c/DbTxn -@dirrm share/doc/db2/api_c/DbEnv -@dirrm share/doc/db2/api_c/DbInfo -@dirrm share/doc/db2/api_c/DbLock -@dirrm share/doc/db2/api_c/DbLockTab -@dirrm share/doc/db2/api_c/DbLog -@dirrm share/doc/db2/api_c/DbMpool -@dirrm share/doc/db2/api_c/DbMpoolFile -@dirrm share/doc/db2/api_c/Db -@dirrm share/doc/db2/api_c/DbTxnMgr -@dirrm share/doc/db2/api_c/Dbc -@dirrm share/doc/db2/api_c/Dbt -@dirrm share/doc/db2/api_c/historic -@dirrm share/doc/db2/api_c/index -@dirrm share/doc/db2/api_c/internal -@dirrm share/doc/db2/api_c/special -@dirrm share/doc/db2/api_c -@dirrm share/doc/db2/test -@dirrm share/doc/db2/sleepycat -@dirrm share/doc/db2/ref/txn -@dirrm share/doc/db2/ref/am -@dirrm share/doc/db2/ref/arch -@dirrm share/doc/db2/ref/cam -@dirrm share/doc/db2/ref/debug -@dirrm share/doc/db2/ref/dumpload -@dirrm share/doc/db2/ref/env -@dirrm share/doc/db2/ref/intro -@dirrm share/doc/db2/ref/install -@dirrm share/doc/db2/ref/lock -@dirrm share/doc/db2/ref/log -@dirrm share/doc/db2/ref/mp -@dirrm share/doc/db2/ref/perl -@dirrm share/doc/db2/ref/program -@dirrm share/doc/db2/ref/sendmail -@dirrm share/doc/db2/ref/simple_tut -@dirrm share/doc/db2/ref/transapp -@dirrm share/doc/db2/ref -@dirrm share/doc/db2/packages -@dirrm share/doc/db2/api_cxx/DbLsn -@dirrm share/doc/db2/api_cxx/Dbc -@dirrm share/doc/db2/api_cxx/DbEnv -@dirrm share/doc/db2/api_cxx/DbException -@dirrm share/doc/db2/api_cxx/DbInfo -@dirrm share/doc/db2/api_cxx/DbLock -@dirrm share/doc/db2/api_cxx/DbLockTab -@dirrm share/doc/db2/api_cxx/DbLog -@dirrm share/doc/db2/api_cxx/Db -@dirrm share/doc/db2/api_cxx/DbMpool -@dirrm share/doc/db2/api_cxx/DbMpoolFile -@dirrm share/doc/db2/api_cxx/DbTxn -@dirrm share/doc/db2/api_cxx/DbTxnMgr -@dirrm share/doc/db2/api_cxx/Dbt -@dirrm share/doc/db2/api_cxx/index -@dirrm share/doc/db2/api_cxx/special -@dirrm share/doc/db2/api_cxx -@dirrm share/doc/db2/utility -@dirrm share/doc/db2/distrib -@dirrm share/doc/db2/build -@dirrm share/doc/db2/api_java/DbMpool -@dirrm share/doc/db2/api_java/DbEnv -@dirrm share/doc/db2/api_java/DbException -@dirrm share/doc/db2/api_java/DbInfo -@dirrm share/doc/db2/api_java/DbLock -@dirrm share/doc/db2/api_java/DbLockTab -@dirrm share/doc/db2/api_java/DbLog -@dirrm share/doc/db2/api_java/DbLsn -@dirrm share/doc/db2/api_java/Db -@dirrm share/doc/db2/api_java/DbMpoolFile -@dirrm share/doc/db2/api_java/DbRunRecoveryException -@dirrm share/doc/db2/api_java/DbTxn -@dirrm share/doc/db2/api_java/DbTxnMgr -@dirrm share/doc/db2/api_java/Dbc -@dirrm share/doc/db2/api_java/Dbt -@dirrm share/doc/db2/api_java/index -@dirrm share/doc/db2/api_java/special -@dirrm share/doc/db2/api_java -@dirrm share/doc/db2/images -@dirrm share/doc/db2 diff --git a/databases/db4/Makefile b/databases/db4/Makefile deleted file mode 100644 index 9b1fe8a00a1e..000000000000 --- a/databases/db4/Makefile +++ /dev/null @@ -1,41 +0,0 @@ -# ports collection makefile for: Berkeley DB -# Date created: 26 Jan 1998 -# Whom: Josh Tiefenbach <josh@ican.net> -# -# $FreeBSD$ -# - -PORTNAME= db -PORTVERSION= 2.7.7 -CATEGORIES= databases -MASTER_SITES= http://www.sleepycat.com/update/${PORTVERSION}/ - -MAINTAINER= josh@ican.net - -Y2K= http://www.sleepycat.com/faq.html#A8 - -MANUAL_PACKAGE_BUILD= incompatible with libc internal db calls -WRKSRC= ${WRKDIR}/${DISTNAME}/build_unix - -INSTALLS_SHLIB= yes -GNU_CONFIGURE= yes -CONFIGURE_SCRIPT= ../dist/configure -CONFIGURE_ARGS= --enable-compat185 \ - --enable-dump185 --enable-cxx - -post-install: - ${MKDIR} ${PREFIX}/share/examples/db2 - cd ${WRKSRC}/..; \ - tar -cf - --exclude tags examples/ examples_cxx/ examples_java/ | \ - ( cd ${PREFIX}/share/examples/db2; tar xf - ) - @${ECHO_MSG} "" - @${ECHO_MSG} "Java support for ${PKGNAME} is *not* built by default, and requires that you" - @${ECHO_MSG} "have a working copy of the JDK (v1.1) installed." - @${ECHO_MSG} "" - @${ECHO_MSG} "To build java support, please read:" - @${ECHO_MSG} "" - @${ECHO_MSG} "${WRKDIR}/${DISTNAME}/java/README" - @${ECHO_MSG} "" - @${ECHO_MSG} "and follow the directions therein." - -.include <bsd.port.mk> diff --git a/databases/db4/distinfo b/databases/db4/distinfo deleted file mode 100644 index d761baf3bdff..000000000000 --- a/databases/db4/distinfo +++ /dev/null @@ -1 +0,0 @@ -MD5 (db-2.7.7.tar.gz) = 20256735091ee382c6601117d82d749a diff --git a/databases/db4/files/patch-aa b/databases/db4/files/patch-aa deleted file mode 100644 index db3d430758a2..000000000000 --- a/databases/db4/files/patch-aa +++ /dev/null @@ -1,506 +0,0 @@ ---- ../dist/Makefile.in.orig Mon Dec 7 21:05:59 1998 -+++ ../dist/Makefile.in Tue Jun 6 17:44:50 2000 -@@ -1,13 +1,16 @@ - # @(#)Makefile.in 10.62 (Sleepycat) 12/7/98 - -+SOVER?= 0 -+ - srcdir= @srcdir@/.. - CPPFLAGS=-I. -I$(srcdir)/include @CPPFLAGS@ -+SHAREDFLAGS= -fpic -DPIC - CFLAGS= -c @CFLAGS@ $(CPPFLAGS) - CC= @CC@ - CXXFLAGS=-c @CXXFLAGS@ $(CPPFLAGS) - CXX= @CXX@ --LDFLAGS=@LDFLAGS@ --LIBS= @LIBS@ -+LDFLAGS=@LDFLAGS@ -L. -+LIBS= @LIBS@ -ldb2 - - SHELL= @db_cv_path_sh@ - ar= @db_cv_path_ar@ cr -@@ -43,85 +46,91 @@ - LOBJS= @LIBOBJS@ - POBJS= err.o getlong.o - --libdb= libdb.a --all: $(libdb) $(PROGS) -+libdb= libdb2.a -+libdbso= libdb2.so.$(SOVER) -+all: $(libdb) $(libdbso) $(PROGS) - - $(libdb): db.h $(OBJS) $(LOBJS) - $(rm) -f $@ - $(ar) $@ $(OBJS) $(LOBJS) - test ! -f $(ranlib) || $(ranlib) $@ - -+$(libdbso): db.h $(OBJS:S/.o$/.so/g) $(LOBJS:S/.o$/.so/g) -+ $(rm) -f $@ -+ $(CXX) -shared -Wl,-x -Wl,-assert -Wl,pure-text -Wl,-soname,$@ -o $@ $(OBJS:S/.o$/.so/g) $(LOBJS:S/.o$/.so/g) -+ ln -sf $@ libdb2.so -+ - DBA= db_archive.o $(POBJS) --db_archive: $(DBA) $(libdb) -- $(CC) -o $@ $(LDFLAGS) $(DBA) $(libdb) $(LIBS) -+db_archive: $(DBA) $(libdbso) -+ $(CC) -o $@ $(LDFLAGS) $(DBA) $(LIBS) - - DBB= db_checkpoint.o $(POBJS) --db_checkpoint: $(DBB) $(libdb) -- $(CC) -o $@ $(LDFLAGS) $(DBB) $(libdb) $(LIBS) -+db_checkpoint: $(DBB) $(libdbso) -+ $(CC) -o $@ $(LDFLAGS) $(DBB) $(LIBS) - - DBC= db_deadlock.o $(POBJS) --db_deadlock: $(DBC) $(libdb) -- $(CC) -o $@ $(LDFLAGS) $(DBC) $(libdb) $(LIBS) -+db_deadlock: $(DBC) $(libdbso) -+ $(CC) -o $@ $(LDFLAGS) $(DBC) $(LIBS) - - DBD= db_dump.o $(POBJS) --db_dump: $(DBD) $(libdb) -- $(CC) -o $@ $(LDFLAGS) $(DBD) $(libdb) $(LIBS) -+db_dump: $(DBD) $(libdbso) -+ $(CC) -o $@ $(LDFLAGS) $(DBD) $(LIBS) - - DBE= db_dump185.o $(POBJS) - db_dump185: $(DBE) - $(CC) -o $@ $(LDFLAGS) $(DBE) $(LIBS) - - DBF= db_load.o $(POBJS) --db_load: $(DBF) $(libdb) -- $(CC) -o $@ $(LDFLAGS) $(DBF) $(libdb) $(LIBS) -+db_load: $(DBF) $(libdbso) -+ $(CC) -o $@ $(LDFLAGS) $(DBF) $(LIBS) - - DBG= db_printlog.o $(POBJS) --db_printlog: $(DBG) $(libdb) -- $(CC) -o $@ $(LDFLAGS) $(DBG) $(libdb) $(LIBS) -+db_printlog: $(DBG) $(libdbso) -+ $(CC) -o $@ $(LDFLAGS) $(DBG) $(LIBS) - - DBH= db_recover.o $(POBJS) --db_recover: $(DBH) $(libdb) -- $(CC) -o $@ $(LDFLAGS) $(DBH) $(libdb) $(LIBS) -+db_recover: $(DBH) $(libdbso) -+ $(CC) -o $@ $(LDFLAGS) $(DBH) $(LIBS) - - DBI= db_stat.o $(POBJS) --db_stat: $(DBI) $(libdb) -- $(CC) -o $@ $(LDFLAGS) $(DBI) $(libdb) $(LIBS) -+db_stat: $(DBI) $(libdbso) -+ $(CC) -o $@ $(LDFLAGS) $(DBI) $(LIBS) - - EPROGS= ex_access ex_appinit ex_btrec ex_lock ex_mpool ex_thread ex_tpcb - DBJ= ex_access.o --ex_access: $(DBJ) $(libdb) -- $(CC) -o $@ $(LDFLAGS) $(DBJ) $(libdb) $(LIBS) -+ex_access: $(DBJ) $(libdbso) -+ $(CC) -o $@ $(LDFLAGS) $(DBJ) $(LIBS) - - DBK= ex_appinit.o --ex_appinit: $(DBK) $(libdb) -- $(CC) -o $@ $(LDFLAGS) $(DBK) $(libdb) $(LIBS) -+ex_appinit: $(DBK) $(libdbso) -+ $(CC) -o $@ $(LDFLAGS) $(DBK) $(LIBS) - - DBL= ex_btrec.o --ex_btrec: $(DBL) $(libdb) -- $(CC) -o $@ $(LDFLAGS) $(DBL) $(libdb) $(LIBS) -+ex_btrec: $(DBL) $(libdbso) -+ $(CC) -o $@ $(LDFLAGS) $(DBL) $(LIBS) - - DBM= ex_lock.o $(POBJS) --ex_lock: $(DBM) $(libdb) -- $(CC) -o $@ $(LDFLAGS) $(DBM) $(libdb) $(LIBS) -+ex_lock: $(DBM) $(libdbso) -+ $(CC) -o $@ $(LDFLAGS) $(DBM) $(LIBS) - - DBN= ex_mpool.o --ex_mpool: $(DBN) $(libdb) -- $(CC) -o $@ $(LDFLAGS) $(DBN) $(libdb) $(LIBS) -+ex_mpool: $(DBN) $(libdbso) -+ $(CC) -o $@ $(LDFLAGS) $(DBN) $(LIBS) - - DBO= ex_thread.o --ex_thread: $(DBO) $(libdb) -- $(CC) -o $@ $(LDFLAGS) $(DBO) $(libdb) $(LIBS) -+ex_thread: $(DBO) $(libdbso) -+ $(CC) -o $@ $(LDFLAGS) $(DBO) $(LIBS) - - DBP= ex_tpcb.o $(POBJS) --ex_tpcb: $(DBP) $(libdb) -- $(CC) -o $@ $(LDFLAGS) $(DBP) $(libdb) $(LIBS) -+ex_tpcb: $(DBP) $(libdbso) -+ $(CC) -o $@ $(LDFLAGS) $(DBP) $(LIBS) - - DBT= tclAppInit.o tcl_dbm.o tcl_hsearch.o tcl_lock.o tcl_log.o tcl_mpool.o \ - tcl_mutex.o tcl_ndbm.o tcl_txn.o utils.o $(POBJS) - - dbtest: .dbtestrc --dbtest: $(DBT) $(libdb) -- $(CC) -o $@ $(LDFLAGS) $(DBT) $(libdb) $(LIBS) -+dbtest: $(DBT) $(libdbso) -+ $(CC) -o $@ $(LDFLAGS) $(DBT) $(LIBS) - - AOBJS= err.o getcwd.o getlong.o getopt.o memcmp.o memcpy.o memmove.o \ - raise.o snprintf.o strerror.o strsep.o vsnprintf.o -@@ -131,8 +140,8 @@ - $(rm) -f $(DBA) $(DBB) $(DBC) $(DBD) $(DBE) $(DBF) $(DBG) $(DBH) - $(rm) -f $(DBI) $(DBJ) $(DBK) $(DBL) $(DBM) $(DBN) $(DBO) $(DBP) - $(rm) -f $(DBT) -- $(rm) -f $(PROGS) $(EPROGS) $(POBJS) $(LOBJS) @build_test@ -- $(rm) -f core *.core .dbtestrc $(libdb) -+ $(rm) -f $(PROGS) $(EPROGS) $(POBJS) $(LOBJS) *.so @build_test@ -+ $(rm) -f core *.core .dbtestrc $(libdb) $(libdbso) - - depend obj: - -@@ -141,11 +150,11 @@ - $(rm) -f confdefs.h db.h db_int.h db_185.h include.tcl - - prefix= @prefix@ --bindir= $(prefix)/BerkeleyDB/bin --datadir=$(prefix)/BerkeleyDB/share --includedir=$(prefix)/BerkeleyDB/include --libdir= $(prefix)/BerkeleyDB/lib --mandir= $(prefix)/BerkeleyDB/docs -+bindir= $(prefix)/bin -+datadir=$(prefix)/share/db2 -+includedir=$(prefix)/include/db2 -+libdir= $(prefix)/lib -+mandir= $(prefix)/share/doc/db2 - - dmode= 755 - emode= 555 -@@ -170,6 +179,9 @@ - @cd $(libdir) && $(rm) -f $(libdb) - @$(cp) -p $(libdb) $(libdir) - @cd $(libdir) && $(chmod) $(fmode) $(libdb) -+ @$(cp) -p $(libdbso) $(libdir) -+ @cd $(libdir) && $(chmod) $(fmode) $(libdbso) -+ ln -sf $(libdbso) $(libdir)/libdb2.so - @echo "Installing DB utilities: $(bindir) ..." - @test -d $(bindir) || \ - ($(mkdir) -p $(bindir) && $(chmod) $(dmode) $(bindir)) -@@ -506,3 +518,320 @@ - $(CC) $(CFLAGS) $? - vsnprintf.o: $(srcdir)/clib/vsnprintf.c - $(CC) $(CFLAGS) $? -+ -+# Shared build -+# Programs. -+db_archive.so: $(srcdir)/db_archive/db_archive.c -+ $(CC) $(CFLAGS) $(SHAREDFLAGS) $? -o $@ -+db_checkpoint.so: $(srcdir)/db_checkpoint/db_checkpoint.c -+ $(CC) $(CFLAGS) $(SHAREDFLAGS) $? -o $@ -+db_deadlock.so: $(srcdir)/db_deadlock/db_deadlock.c -+ $(CC) $(CFLAGS) $(SHAREDFLAGS) $? -o $@ -+db_dump.so: $(srcdir)/db_dump/db_dump.c -+ $(CC) $(CFLAGS) $(SHAREDFLAGS) $? -o $@ -+db_dump185.so: $(srcdir)/db_dump185/db_dump185.c -+ $(CC) $(CFLAGS) $(SHAREDFLAGS) $? -o $@ -+db_load.so: $(srcdir)/db_load/db_load.c -+ $(CC) $(CFLAGS) $(SHAREDFLAGS) $? -o $@ -+db_printlog.so: $(srcdir)/db_printlog/db_printlog.c -+ $(CC) $(CFLAGS) $(SHAREDFLAGS) $? -o $@ -+db_recover.so: $(srcdir)/db_recover/db_recover.c -+ $(CC) $(CFLAGS) $(SHAREDFLAGS) $? -o $@ -+db_stat.so: $(srcdir)/db_stat/db_stat.c -+ $(CC) $(CFLAGS) $(SHAREDFLAGS) $? -o $@ -+ -+# Examples. -+ex_access.so: $(srcdir)/examples/ex_access.c -+ $(CC) $(CFLAGS) $(SHAREDFLAGS) $? -o $@ -+ex_appinit.so: $(srcdir)/examples/ex_appinit.c -+ $(CC) $(CFLAGS) $(SHAREDFLAGS) $? -o $@ -+ex_btrec.so: $(srcdir)/examples/ex_btrec.c -+ $(CC) $(CFLAGS) $(SHAREDFLAGS) $? -o $@ -+ex_lock.so: $(srcdir)/examples/ex_lock.c -+ $(CC) $(CFLAGS) $(SHAREDFLAGS) $? -o $@ -+ex_mpool.so: $(srcdir)/examples/ex_mpool.c -+ $(CC) $(CFLAGS) $(SHAREDFLAGS) $? -o $@ -+ex_thread.so: $(srcdir)/examples/ex_thread.c -+ $(CC) $(CFLAGS) $(SHAREDFLAGS) $? -o $@ -+ex_tpcb.so: $(srcdir)/examples/ex_tpcb.c -+ $(CC) $(CFLAGS) $(SHAREDFLAGS) $? -o $@ -+ -+# DB files. -+db.so: $(srcdir)/db/db.c -+ $(CC) $(CFLAGS) $(SHAREDFLAGS) $? -o $@ -+db_am.so: $(srcdir)/db/db_am.c -+ $(CC) $(CFLAGS) $(SHAREDFLAGS) $? -o $@ -+db_auto.so: $(srcdir)/db/db_auto.c -+ $(CC) $(CFLAGS) $(SHAREDFLAGS) $? -o $@ -+db_conv.so: $(srcdir)/db/db_conv.c -+ $(CC) $(CFLAGS) $(SHAREDFLAGS) $? -o $@ -+db_dispatch.so: $(srcdir)/db/db_dispatch.c -+ $(CC) $(CFLAGS) $(SHAREDFLAGS) $? -o $@ -+db_dup.so: $(srcdir)/db/db_dup.c -+ $(CC) $(CFLAGS) $(SHAREDFLAGS) $? -o $@ -+db_iface.so: $(srcdir)/db/db_iface.c -+ $(CC) $(CFLAGS) $(SHAREDFLAGS) $? -o $@ -+db_join.so: $(srcdir)/db/db_join.c -+ $(CC) $(CFLAGS) $(SHAREDFLAGS) $? -o $@ -+db_overflow.so: $(srcdir)/db/db_overflow.c -+ $(CC) $(CFLAGS) $(SHAREDFLAGS) $? -o $@ -+db_pr.so: $(srcdir)/db/db_pr.c -+ $(CC) $(CFLAGS) $(SHAREDFLAGS) $? -o $@ -+db_rec.so: $(srcdir)/db/db_rec.c -+ $(CC) $(CFLAGS) $(SHAREDFLAGS) $? -o $@ -+db_ret.so: $(srcdir)/db/db_ret.c -+ $(CC) $(CFLAGS) $(SHAREDFLAGS) $? -o $@ -+ -+# Btree source files. -+bt_compare.so: $(srcdir)/btree/bt_compare.c -+ $(CC) $(CFLAGS) $(SHAREDFLAGS) $? -o $@ -+bt_conv.so: $(srcdir)/btree/bt_conv.c -+ $(CC) $(CFLAGS) $(SHAREDFLAGS) $? -o $@ -+bt_curadj.so: $(srcdir)/btree/bt_curadj.c -+ $(CC) $(CFLAGS) $(SHAREDFLAGS) $? -o $@ -+bt_cursor.so: $(srcdir)/btree/bt_cursor.c -+ $(CC) $(CFLAGS) $(SHAREDFLAGS) $? -o $@ -+bt_delete.so: $(srcdir)/btree/bt_delete.c -+ $(CC) $(CFLAGS) $(SHAREDFLAGS) $? -o $@ -+bt_open.so: $(srcdir)/btree/bt_open.c -+ $(CC) $(CFLAGS) $(SHAREDFLAGS) $? -o $@ -+bt_page.so: $(srcdir)/btree/bt_page.c -+ $(CC) $(CFLAGS) $(SHAREDFLAGS) $? -o $@ -+bt_put.so: $(srcdir)/btree/bt_put.c -+ $(CC) $(CFLAGS) $(SHAREDFLAGS) $? -o $@ -+bt_rec.so: $(srcdir)/btree/bt_rec.c -+ $(CC) $(CFLAGS) $(SHAREDFLAGS) $? -o $@ -+bt_recno.so: $(srcdir)/btree/bt_recno.c -+ $(CC) $(CFLAGS) $(SHAREDFLAGS) $? -o $@ -+bt_rsearch.so: $(srcdir)/btree/bt_rsearch.c -+ $(CC) $(CFLAGS) $(SHAREDFLAGS) $? -o $@ -+bt_search.so: $(srcdir)/btree/bt_search.c -+ $(CC) $(CFLAGS) $(SHAREDFLAGS) $? -o $@ -+bt_split.so: $(srcdir)/btree/bt_split.c -+ $(CC) $(CFLAGS) $(SHAREDFLAGS) $? -o $@ -+bt_stack.so: $(srcdir)/btree/bt_stack.c -+ $(CC) $(CFLAGS) $(SHAREDFLAGS) $? -o $@ -+bt_stat.so: $(srcdir)/btree/bt_stat.c -+ $(CC) $(CFLAGS) $(SHAREDFLAGS) $? -o $@ -+btree_auto.so: $(srcdir)/btree/btree_auto.c -+ $(CC) $(CFLAGS) $(SHAREDFLAGS) $? -o $@ -+ -+# C++ interface files. -+cxx_app.so: $(srcdir)/cxx/cxx_app.cpp -+ $(CXX) $(CXXFLAGS) $(SHAREDFLAGS) $? -o $@ -+cxx_except.so: $(srcdir)/cxx/cxx_except.cpp -+ $(CXX) $(CXXFLAGS) $(SHAREDFLAGS) $? -o $@ -+cxx_lock.so: $(srcdir)/cxx/cxx_lock.cpp -+ $(CXX) $(CXXFLAGS) $(SHAREDFLAGS) $? -o $@ -+cxx_log.so: $(srcdir)/cxx/cxx_log.cpp -+ $(CXX) $(CXXFLAGS) $(SHAREDFLAGS) $? -o $@ -+cxx_mpool.so: $(srcdir)/cxx/cxx_mpool.cpp -+ $(CXX) $(CXXFLAGS) $(SHAREDFLAGS) $? -o $@ -+cxx_table.so: $(srcdir)/cxx/cxx_table.cpp -+ $(CXX) $(CXXFLAGS) $(SHAREDFLAGS) $? -o $@ -+cxx_txn.so: $(srcdir)/cxx/cxx_txn.cpp -+ $(CXX) $(CXXFLAGS) $(SHAREDFLAGS) $? -o $@ -+ -+# Hash source files. -+hash_auto.so: $(srcdir)/hash/hash_auto.c -+ $(CC) $(CFLAGS) $(SHAREDFLAGS) $? -o $@ -+hash.so: $(srcdir)/hash/hash.c -+ $(CC) $(CFLAGS) $(SHAREDFLAGS) $? -o $@ -+hash_conv.so: $(srcdir)/hash/hash_conv.c -+ $(CC) $(CFLAGS) $(SHAREDFLAGS) $? -o $@ -+hash_dup.so: $(srcdir)/hash/hash_dup.c -+ $(CC) $(CFLAGS) $(SHAREDFLAGS) $? -o $@ -+hash_func.so: $(srcdir)/hash/hash_func.c -+ $(CC) $(CFLAGS) $(SHAREDFLAGS) $? -o $@ -+hash_page.so: $(srcdir)/hash/hash_page.c -+ $(CC) $(CFLAGS) $(SHAREDFLAGS) $? -o $@ -+hash_rec.so: $(srcdir)/hash/hash_rec.c -+ $(CC) $(CFLAGS) $(SHAREDFLAGS) $? -o $@ -+hash_stat.so: $(srcdir)/hash/hash_stat.c -+ $(CC) $(CFLAGS) $(SHAREDFLAGS) $? -o $@ -+ -+# Lock source files. -+lock.so: $(srcdir)/lock/lock.c -+ $(CC) $(CFLAGS) $(SHAREDFLAGS) $? -o $@ -+lock_conflict.so:$(srcdir)/lock/lock_conflict.c -+ $(CC) $(CFLAGS) $(SHAREDFLAGS) $? -o $@ -+lock_deadlock.so:$(srcdir)/lock/lock_deadlock.c -+ $(CC) $(CFLAGS) $(SHAREDFLAGS) $? -o $@ -+lock_region.so:$(srcdir)/lock/lock_region.c -+ $(CC) $(CFLAGS) $(SHAREDFLAGS) $? -o $@ -+lock_util.so:$(srcdir)/lock/lock_util.c -+ $(CC) $(CFLAGS) $(SHAREDFLAGS) $? -o $@ -+ -+# Log source files. -+log.so: $(srcdir)/log/log.c -+ $(CC) $(CFLAGS) $(SHAREDFLAGS) $? -o $@ -+log_archive.so: $(srcdir)/log/log_archive.c -+ $(CC) $(CFLAGS) $(SHAREDFLAGS) $? -o $@ -+log_auto.so: $(srcdir)/log/log_auto.c -+ $(CC) $(CFLAGS) $(SHAREDFLAGS) $? -o $@ -+log_compare.so: $(srcdir)/log/log_compare.c -+ $(CC) $(CFLAGS) $(SHAREDFLAGS) $? -o $@ -+log_findckp.so: $(srcdir)/log/log_findckp.c -+ $(CC) $(CFLAGS) $(SHAREDFLAGS) $? -o $@ -+log_get.so: $(srcdir)/log/log_get.c -+ $(CC) $(CFLAGS) $(SHAREDFLAGS) $? -o $@ -+log_put.so: $(srcdir)/log/log_put.c -+ $(CC) $(CFLAGS) $(SHAREDFLAGS) $? -o $@ -+log_rec.so: $(srcdir)/log/log_rec.c -+ $(CC) $(CFLAGS) $(SHAREDFLAGS) $? -o $@ -+log_register.so: $(srcdir)/log/log_register.c -+ $(CC) $(CFLAGS) $(SHAREDFLAGS) $? -o $@ -+ -+# Mpool source files. -+mp_bh.so: $(srcdir)/mp/mp_bh.c -+ $(CC) $(CFLAGS) $(SHAREDFLAGS) $? -o $@ -+mp_fget.so: $(srcdir)/mp/mp_fget.c -+ $(CC) $(CFLAGS) $(SHAREDFLAGS) $? -o $@ -+mp_fopen.so: $(srcdir)/mp/mp_fopen.c -+ $(CC) $(CFLAGS) $(SHAREDFLAGS) $? -o $@ -+mp_fput.so: $(srcdir)/mp/mp_fput.c -+ $(CC) $(CFLAGS) $(SHAREDFLAGS) $? -o $@ -+mp_fset.so: $(srcdir)/mp/mp_fset.c -+ $(CC) $(CFLAGS) $(SHAREDFLAGS) $? -o $@ -+mp_open.so: $(srcdir)/mp/mp_open.c -+ $(CC) $(CFLAGS) $(SHAREDFLAGS) $? -o $@ -+mp_pr.so: $(srcdir)/mp/mp_pr.c -+ $(CC) $(CFLAGS) $(SHAREDFLAGS) $? -o $@ -+mp_region.so: $(srcdir)/mp/mp_region.c -+ $(CC) $(CFLAGS) $(SHAREDFLAGS) $? -o $@ -+mp_sync.so: $(srcdir)/mp/mp_sync.c -+ $(CC) $(CFLAGS) $(SHAREDFLAGS) $? -o $@ -+ -+# Mutex source files. -+mutex.so: $(srcdir)/mutex/mutex.c -+ $(CC) $(CFLAGS) $(SHAREDFLAGS) $? -o $@ -+# XXX -+# UTS4 spinlocks -+uts4_cc.so: $(srcdir)/mutex/uts4_cc.s -+ $(AS) $(ASFLAGS) $(SHAREDFLAGS) -o $@ $? -o $@ -+ -+# Transaction source files. -+txn.so: $(srcdir)/txn/txn.c -+ $(CC) $(CFLAGS) $(SHAREDFLAGS) $? -o $@ -+txn_auto.so: $(srcdir)/txn/txn_auto.c -+ $(CC) $(CFLAGS) $(SHAREDFLAGS) $? -o $@ -+txn_rec.so: $(srcdir)/txn/txn_rec.c -+ $(CC) $(CFLAGS) $(SHAREDFLAGS) $? -o $@ -+ -+# XA source files. -+xa.so: $(srcdir)/xa/xa.c -+ $(CC) $(CFLAGS) $(SHAREDFLAGS) $? -o $@ -+xa_db.so: $(srcdir)/xa/xa_db.c -+ $(CC) $(CFLAGS) $(SHAREDFLAGS) $? -o $@ -+xa_map.so: $(srcdir)/xa/xa_map.c -+ $(CC) $(CFLAGS) $(SHAREDFLAGS) $? -o $@ -+ -+# Historic interfaces. -+hsearch.so: $(srcdir)/hsearch/hsearch.c -+ $(CC) $(CFLAGS) $(SHAREDFLAGS) $? -o $@ -+dbm.so: $(srcdir)/dbm/dbm.c -+ $(CC) $(CFLAGS) $(SHAREDFLAGS) $? -o $@ -+db185.so: $(srcdir)/db185/db185.c -+ $(CC) $(CFLAGS) $(SHAREDFLAGS) $? -o $@ -+ -+# Common source files. -+db_appinit.so: $(srcdir)/common/db_appinit.c -+ $(CC) $(CFLAGS) $(SHAREDFLAGS) $? -o $@ -+db_apprec.so: $(srcdir)/common/db_apprec.c -+ $(CC) $(CFLAGS) $(SHAREDFLAGS) $? -o $@ -+db_byteorder.so: $(srcdir)/common/db_byteorder.c -+ $(CC) $(CFLAGS) $(SHAREDFLAGS) $? -o $@ -+db_err.so: $(srcdir)/common/db_err.c -+ $(CC) $(CFLAGS) $(SHAREDFLAGS) $? -o $@ -+db_log2.so: $(srcdir)/common/db_log2.c -+ $(CC) $(CFLAGS) $(SHAREDFLAGS) $? -o $@ -+db_region.so: $(srcdir)/common/db_region.c -+ $(CC) $(CFLAGS) $(SHAREDFLAGS) $? -o $@ -+db_salloc.so: $(srcdir)/common/db_salloc.c -+ $(CC) $(CFLAGS) $(SHAREDFLAGS) $? -o $@ -+db_shash.so: $(srcdir)/common/db_shash.c -+ $(CC) $(CFLAGS) $(SHAREDFLAGS) $? -o $@ -+ -+# OS specific source files. -+os_abs.so: $(srcdir)/os/os_abs.c -+ $(CC) $(CFLAGS) $(SHAREDFLAGS) $? -o $@ -+os_alloc.so: $(srcdir)/os/os_alloc.c -+ $(CC) $(CFLAGS) $(SHAREDFLAGS) $? -o $@ -+os_config.so: $(srcdir)/os/os_config.c -+ $(CC) $(CFLAGS) $(SHAREDFLAGS) $? -o $@ -+os_dir.so: $(srcdir)/os/os_dir.c -+ $(CC) $(CFLAGS) $(SHAREDFLAGS) $? -o $@ -+os_fid.so: $(srcdir)/os/os_fid.c -+ $(CC) $(CFLAGS) $(SHAREDFLAGS) $? -o $@ -+os_fsync.so: $(srcdir)/os/os_fsync.c -+ $(CC) $(CFLAGS) $(SHAREDFLAGS) $? -o $@ -+os_map.so: $(srcdir)/os/os_map.c -+ $(CC) $(CFLAGS) $(SHAREDFLAGS) $? -o $@ -+os_oflags.so: $(srcdir)/os/os_oflags.c -+ $(CC) $(CFLAGS) $(SHAREDFLAGS) $? -o $@ -+os_open.so: $(srcdir)/os/os_open.c -+ $(CC) $(CFLAGS) $(SHAREDFLAGS) $? -o $@ -+os_rpath.so: $(srcdir)/os/os_rpath.c -+ $(CC) $(CFLAGS) $(SHAREDFLAGS) $? -o $@ -+os_rw.so: $(srcdir)/os/os_rw.c -+ $(CC) $(CFLAGS) $(SHAREDFLAGS) $? -o $@ -+os_seek.so: $(srcdir)/os/os_seek.c -+ $(CC) $(CFLAGS) $(SHAREDFLAGS) $? -o $@ -+os_sleep.so: $(srcdir)/os/os_sleep.c -+ $(CC) $(CFLAGS) $(SHAREDFLAGS) $? -o $@ -+os_spin.so: $(srcdir)/os/os_spin.c -+ $(CC) $(CFLAGS) $(SHAREDFLAGS) $? -o $@ -+os_stat.so: $(srcdir)/os/os_stat.c -+ $(CC) $(CFLAGS) $(SHAREDFLAGS) $? -o $@ -+os_tmpdir.so: $(srcdir)/os/os_tmpdir.c -+ $(CC) $(CFLAGS) $(SHAREDFLAGS) $? -o $@ -+os_unlink.so: $(srcdir)/os/os_unlink.c -+ $(CC) $(CFLAGS) $(SHAREDFLAGS) $? -o $@ -+ -+# Test programs. -+tclAppInit.so: $(srcdir)/test/tclAppInit.c -+ $(CC) $(CFLAGS) $(SHAREDFLAGS) $? -o $@ -+tcl_dbm.so: $(srcdir)/test/tcl_dbm.c -+ $(CC) $(CFLAGS) $(SHAREDFLAGS) $? -o $@ -+tcl_hsearch.so: $(srcdir)/test/tcl_hsearch.c -+ $(CC) $(CFLAGS) $(SHAREDFLAGS) $? -o $@ -+tcl_lock.so: $(srcdir)/test/tcl_lock.c -+ $(CC) $(CFLAGS) $(SHAREDFLAGS) $? -o $@ -+tcl_log.so: $(srcdir)/test/tcl_log.c -+ $(CC) $(CFLAGS) $(SHAREDFLAGS) $? -o $@ -+tcl_mpool.so: $(srcdir)/test/tcl_mpool.c -+ $(CC) $(CFLAGS) $(SHAREDFLAGS) $? -o $@ -+tcl_mutex.so: $(srcdir)/test/tcl_mutex.c -+ $(CC) $(CFLAGS) $(SHAREDFLAGS) $? -o $@ -+tcl_ndbm.so: $(srcdir)/test/tcl_ndbm.c -+ $(CC) $(CFLAGS) $(SHAREDFLAGS) $? -o $@ -+tcl_txn.so: $(srcdir)/test/tcl_txn.c -+ $(CC) $(CFLAGS) $(SHAREDFLAGS) $? -o $@ -+utils.so: $(srcdir)/test/utils.c -+ $(CC) $(CFLAGS) $(SHAREDFLAGS) $? -o $@ -+ -+# Replacement source files. -+err.so: $(srcdir)/clib/err.c -+ $(CC) $(CFLAGS) $(SHAREDFLAGS) $? -o $@ -+getcwd.so: $(srcdir)/clib/getcwd.c -+ $(CC) $(CFLAGS) $(SHAREDFLAGS) $? -o $@ -+getlong.so: $(srcdir)/clib/getlong.c -+ $(CC) $(CFLAGS) $(SHAREDFLAGS) $? -o $@ -+getopt.so: $(srcdir)/clib/getopt.c -+ $(CC) $(CFLAGS) $(SHAREDFLAGS) $? -o $@ -+memcmp.so: $(srcdir)/clib/memcmp.c -+ $(CC) $(CFLAGS) $(SHAREDFLAGS) $? -o $@ -+memcpy.so: $(srcdir)/clib/memmove.c -+ $(CC) -DMEMCOPY $(CFLAGS) $(SHAREDFLAGS) $? -o $@ -+memmove.so: $(srcdir)/clib/memmove.c -+ $(CC) -DMEMMOVE $(CFLAGS) $(SHAREDFLAGS) $? -o $@ -+raise.so: $(srcdir)/clib/raise.c -+ $(CC) $(CFLAGS) $(SHAREDFLAGS) $? -o $@ -+snprintf.so: $(srcdir)/clib/snprintf.c -+ $(CC) $(CFLAGS) $(SHAREDFLAGS) $? -o $@ -+strerror.so: $(srcdir)/clib/strerror.c -+ $(CC) $(CFLAGS) $(SHAREDFLAGS) $? -o $@ -+strsep.so: $(srcdir)/clib/strsep.c -+ $(CC) $(CFLAGS) $(SHAREDFLAGS) $? -o $@ -+vsnprintf.so: $(srcdir)/clib/vsnprintf.c -+ $(CC) $(CFLAGS) $(SHAREDFLAGS) $? -o $@ diff --git a/databases/db4/pkg-comment b/databases/db4/pkg-comment deleted file mode 100644 index 39a54a240320..000000000000 --- a/databases/db4/pkg-comment +++ /dev/null @@ -1 +0,0 @@ -The Berkeley DB package, revision 2 diff --git a/databases/db4/pkg-descr b/databases/db4/pkg-descr deleted file mode 100644 index b9ed34ee6d81..000000000000 --- a/databases/db4/pkg-descr +++ /dev/null @@ -1,13 +0,0 @@ -Revesion 2 of the Berkeley DB library. This version uses an incompatible -underlying database format than revision 1 and a different standard API. -Utilities are included in the distribution to convert v1.85 databases to v2 -databases, and a backwards compatible API is provided to maintain -compatibility with programs using the v1.85 interface. - -There are minor interface changes in this release which may require that DB -applications be modified and recompiled. For a complete discussion of -interface changes, see: - -http://www.sleepycat.com/update/ - -WWW: http://www.sleepycat.com diff --git a/databases/db4/pkg-plist b/databases/db4/pkg-plist deleted file mode 100644 index 961bc047a6e4..000000000000 --- a/databases/db4/pkg-plist +++ /dev/null @@ -1,564 +0,0 @@ -include/db2/db.h -include/db2/db_cxx.h -include/db2/db_185.h -lib/libdb2.a -lib/libdb2.so -lib/libdb2.so.0 -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 -share/doc/db2/api_c/Db/close.html -share/doc/db2/api_c/Db/cursor.html -share/doc/db2/api_c/Db/del.html -share/doc/db2/api_c/Db/fd.html -share/doc/db2/api_c/Db/get.html -share/doc/db2/api_c/Db/join.html -share/doc/db2/api_c/Db/open.html -share/doc/db2/api_c/Db/put.html -share/doc/db2/api_c/Db/stat.html -share/doc/db2/api_c/Db/sync.html -share/doc/db2/api_c/DbEnv/appexit.html -share/doc/db2/api_c/DbEnv/appinit.html -share/doc/db2/api_c/DbEnv/env.html -share/doc/db2/api_c/DbEnv/version.html -share/doc/db2/api_c/DbInfo/info.html -share/doc/db2/api_c/DbLock/put.html -share/doc/db2/api_c/DbLockTab/close.html -share/doc/db2/api_c/DbLockTab/detect.html -share/doc/db2/api_c/DbLockTab/get.html -share/doc/db2/api_c/DbLockTab/id.html -share/doc/db2/api_c/DbLockTab/open.html -share/doc/db2/api_c/DbLockTab/stat.html -share/doc/db2/api_c/DbLockTab/unlink.html -share/doc/db2/api_c/DbLockTab/vec.html -share/doc/db2/api_c/DbLog/archive.html -share/doc/db2/api_c/DbLog/close.html -share/doc/db2/api_c/DbLog/compare.html -share/doc/db2/api_c/DbLog/db_register.html -share/doc/db2/api_c/DbLog/db_unregister.html -share/doc/db2/api_c/DbLog/file.html -share/doc/db2/api_c/DbLog/flush.html -share/doc/db2/api_c/DbLog/get.html -share/doc/db2/api_c/DbLog/lsn.html -share/doc/db2/api_c/DbLog/open.html -share/doc/db2/api_c/DbLog/put.html -share/doc/db2/api_c/DbLog/stat.html -share/doc/db2/api_c/DbLog/unlink.html -share/doc/db2/api_c/DbMpool/close.html -share/doc/db2/api_c/DbMpool/db_register.html -share/doc/db2/api_c/DbMpool/open.html -share/doc/db2/api_c/DbMpool/stat.html -share/doc/db2/api_c/DbMpool/sync.html -share/doc/db2/api_c/DbMpool/trickle.html -share/doc/db2/api_c/DbMpool/unlink.html -share/doc/db2/api_c/DbMpoolFile/close.html -share/doc/db2/api_c/DbMpoolFile/get.html -share/doc/db2/api_c/DbMpoolFile/open.html -share/doc/db2/api_c/DbMpoolFile/put.html -share/doc/db2/api_c/DbMpoolFile/set.html -share/doc/db2/api_c/DbMpoolFile/sync.html -share/doc/db2/api_c/DbTxn/abort.html -share/doc/db2/api_c/DbTxn/commit.html -share/doc/db2/api_c/DbTxn/id.html -share/doc/db2/api_c/DbTxn/prepare.html -share/doc/db2/api_c/DbTxnMgr/begin.html -share/doc/db2/api_c/DbTxnMgr/checkpoint.html -share/doc/db2/api_c/DbTxnMgr/close.html -share/doc/db2/api_c/DbTxnMgr/open.html -share/doc/db2/api_c/DbTxnMgr/stat.html -share/doc/db2/api_c/DbTxnMgr/unlink.html -share/doc/db2/api_c/Dbc/close.html -share/doc/db2/api_c/Dbc/del.html -share/doc/db2/api_c/Dbc/get.html -share/doc/db2/api_c/Dbc/put.html -share/doc/db2/api_c/Dbt/dbt.html -share/doc/db2/api_c/historic/dbm.html -share/doc/db2/api_c/historic/hsearch.html -share/doc/db2/api_c/index/flags.html -share/doc/db2/api_c/index/function.html -share/doc/db2/api_c/index/structure.html -share/doc/db2/api_c/internal/db_jump_set.html -share/doc/db2/api_c/internal/db_value_set.html -share/doc/db2/api_cxx/Db/class.html -share/doc/db2/api_cxx/Db/close.html -share/doc/db2/api_cxx/Db/cursor.html -share/doc/db2/api_cxx/Db/del.html -share/doc/db2/api_cxx/Db/fd.html -share/doc/db2/api_cxx/Db/get.html -share/doc/db2/api_cxx/Db/get_byteswapped.html -share/doc/db2/api_cxx/Db/get_type.html -share/doc/db2/api_cxx/Db/join.html -share/doc/db2/api_cxx/Db/open.html -share/doc/db2/api_cxx/Db/put.html -share/doc/db2/api_cxx/Db/stat.html -share/doc/db2/api_cxx/Db/sync.html -share/doc/db2/api_cxx/DbEnv/appexit.html -share/doc/db2/api_cxx/DbEnv/appinit.html -share/doc/db2/api_cxx/DbEnv/class.html -share/doc/db2/api_cxx/DbEnv/get_lg_info.html -share/doc/db2/api_cxx/DbEnv/get_lk_info.html -share/doc/db2/api_cxx/DbEnv/get_mp_info.html -share/doc/db2/api_cxx/DbEnv/get_tx_info.html -share/doc/db2/api_cxx/DbEnv/set_errcall.html -share/doc/db2/api_cxx/DbEnv/set_errfile.html -share/doc/db2/api_cxx/DbEnv/set_error_model.html -share/doc/db2/api_cxx/DbEnv/set_error_stream.html -share/doc/db2/api_cxx/DbEnv/set_errpfx.html -share/doc/db2/api_cxx/DbEnv/set_lg_max.html -share/doc/db2/api_cxx/DbEnv/set_lk_conflicts.html -share/doc/db2/api_cxx/DbEnv/set_lk_detect.html -share/doc/db2/api_cxx/DbEnv/set_lk_max.html -share/doc/db2/api_cxx/DbEnv/set_lk_modes.html -share/doc/db2/api_cxx/DbEnv/set_lorder.html -share/doc/db2/api_cxx/DbEnv/set_mp_mmapsize.html -share/doc/db2/api_cxx/DbEnv/set_mp_size.html -share/doc/db2/api_cxx/DbEnv/set_tx_max.html -share/doc/db2/api_cxx/DbEnv/set_tx_recover.html -share/doc/db2/api_cxx/DbEnv/set_verbose.html -share/doc/db2/api_cxx/DbEnv/version.html -share/doc/db2/api_cxx/DbException/class.html -share/doc/db2/api_cxx/DbException/get_errno.html -share/doc/db2/api_cxx/DbException/what.html -share/doc/db2/api_cxx/DbInfo/class.html -share/doc/db2/api_cxx/DbInfo/set_bt_compare.html -share/doc/db2/api_cxx/DbInfo/set_bt_maxkey.html -share/doc/db2/api_cxx/DbInfo/set_bt_minkey.html -share/doc/db2/api_cxx/DbInfo/set_bt_prefix.html -share/doc/db2/api_cxx/DbInfo/set_cachesize.html -share/doc/db2/api_cxx/DbInfo/set_compare.html -share/doc/db2/api_cxx/DbInfo/set_flags.html -share/doc/db2/api_cxx/DbInfo/set_h_ffactor.html -share/doc/db2/api_cxx/DbInfo/set_h_hash.html -share/doc/db2/api_cxx/DbInfo/set_h_nelem.html -share/doc/db2/api_cxx/DbInfo/set_lorder.html -share/doc/db2/api_cxx/DbInfo/set_malloc.html -share/doc/db2/api_cxx/DbInfo/set_pagesize.html -share/doc/db2/api_cxx/DbInfo/set_re_delim.html -share/doc/db2/api_cxx/DbInfo/set_re_len.html -share/doc/db2/api_cxx/DbInfo/set_re_pad.html -share/doc/db2/api_cxx/DbInfo/set_re_source.html -share/doc/db2/api_cxx/DbLock/class.html -share/doc/db2/api_cxx/DbLock/put.html -share/doc/db2/api_cxx/DbLockTab/class.html -share/doc/db2/api_cxx/DbLockTab/close.html -share/doc/db2/api_cxx/DbLockTab/detect.html -share/doc/db2/api_cxx/DbLockTab/get.html -share/doc/db2/api_cxx/DbLockTab/id.html -share/doc/db2/api_cxx/DbLockTab/open.html -share/doc/db2/api_cxx/DbLockTab/stat.html -share/doc/db2/api_cxx/DbLockTab/unlink.html -share/doc/db2/api_cxx/DbLockTab/vec.html -share/doc/db2/api_cxx/DbLog/archive.html -share/doc/db2/api_cxx/DbLog/class.html -share/doc/db2/api_cxx/DbLog/close.html -share/doc/db2/api_cxx/DbLog/compare.html -share/doc/db2/api_cxx/DbLog/db_register.html -share/doc/db2/api_cxx/DbLog/db_unregister.html -share/doc/db2/api_cxx/DbLog/file.html -share/doc/db2/api_cxx/DbLog/flush.html -share/doc/db2/api_cxx/DbLog/get.html -share/doc/db2/api_cxx/DbLog/open.html -share/doc/db2/api_cxx/DbLog/put.html -share/doc/db2/api_cxx/DbLog/stat.html -share/doc/db2/api_cxx/DbLog/unlink.html -share/doc/db2/api_cxx/DbLsn/class.html -share/doc/db2/api_cxx/DbMpool/class.html -share/doc/db2/api_cxx/DbMpool/close.html -share/doc/db2/api_cxx/DbMpool/db_register.html -share/doc/db2/api_cxx/DbMpool/open.html -share/doc/db2/api_cxx/DbMpool/stat.html -share/doc/db2/api_cxx/DbMpool/sync.html -share/doc/db2/api_cxx/DbMpool/trickle.html -share/doc/db2/api_cxx/DbMpool/unlink.html -share/doc/db2/api_cxx/DbMpoolFile/class.html -share/doc/db2/api_cxx/DbMpoolFile/close.html -share/doc/db2/api_cxx/DbMpoolFile/get.html -share/doc/db2/api_cxx/DbMpoolFile/open.html -share/doc/db2/api_cxx/DbMpoolFile/put.html -share/doc/db2/api_cxx/DbMpoolFile/set.html -share/doc/db2/api_cxx/DbMpoolFile/sync.html -share/doc/db2/api_cxx/DbTxn/abort.html -share/doc/db2/api_cxx/DbTxn/class.html -share/doc/db2/api_cxx/DbTxn/commit.html -share/doc/db2/api_cxx/DbTxn/id.html -share/doc/db2/api_cxx/DbTxn/prepare.html -share/doc/db2/api_cxx/DbTxnMgr/begin.html -share/doc/db2/api_cxx/DbTxnMgr/checkpoint.html -share/doc/db2/api_cxx/DbTxnMgr/class.html -share/doc/db2/api_cxx/DbTxnMgr/close.html -share/doc/db2/api_cxx/DbTxnMgr/open.html -share/doc/db2/api_cxx/DbTxnMgr/stat.html -share/doc/db2/api_cxx/DbTxnMgr/unlink.html -share/doc/db2/api_cxx/Dbc/class.html -share/doc/db2/api_cxx/Dbc/close.html -share/doc/db2/api_cxx/Dbc/del.html -share/doc/db2/api_cxx/Dbc/get.html -share/doc/db2/api_cxx/Dbc/put.html -share/doc/db2/api_cxx/Dbt/class.html -share/doc/db2/api_cxx/index/class.html -share/doc/db2/api_java/Db/class.html -share/doc/db2/api_java/Db/close.html -share/doc/db2/api_java/Db/cursor.html -share/doc/db2/api_java/Db/del.html -share/doc/db2/api_java/Db/fd.html -share/doc/db2/api_java/Db/get.html -share/doc/db2/api_java/Db/get_byteswapped.html -share/doc/db2/api_java/Db/get_type.html -share/doc/db2/api_java/Db/join.html -share/doc/db2/api_java/Db/open.html -share/doc/db2/api_java/Db/put.html -share/doc/db2/api_java/Db/stat.html -share/doc/db2/api_java/Db/sync.html -share/doc/db2/api_java/DbEnv/appexit.html -share/doc/db2/api_java/DbEnv/appinit.html -share/doc/db2/api_java/DbEnv/class.html -share/doc/db2/api_java/DbEnv/get_lg_info.html -share/doc/db2/api_java/DbEnv/get_lk_info.html -share/doc/db2/api_java/DbEnv/get_mp_info.html -share/doc/db2/api_java/DbEnv/get_tx_info.html -share/doc/db2/api_java/DbEnv/set_errcall.html -share/doc/db2/api_java/DbEnv/set_error_stream.html -share/doc/db2/api_java/DbEnv/set_errpfx.html -share/doc/db2/api_java/DbEnv/set_lg_max.html -share/doc/db2/api_java/DbEnv/set_lk_conflicts.html -share/doc/db2/api_java/DbEnv/set_lk_detect.html -share/doc/db2/api_java/DbEnv/set_lk_max.html -share/doc/db2/api_java/DbEnv/set_lk_modes.html -share/doc/db2/api_java/DbEnv/set_lorder.html -share/doc/db2/api_java/DbEnv/set_mp_mmapsize.html -share/doc/db2/api_java/DbEnv/set_mp_size.html -share/doc/db2/api_java/DbEnv/set_tx_max.html -share/doc/db2/api_java/DbEnv/set_verbose.html -share/doc/db2/api_java/DbEnv/version.html -share/doc/db2/api_java/DbException/class.html -share/doc/db2/api_java/DbException/get_errno.html -share/doc/db2/api_java/DbInfo/class.html -share/doc/db2/api_java/DbInfo/set_bt_compare.html -share/doc/db2/api_java/DbInfo/set_bt_maxkey.html -share/doc/db2/api_java/DbInfo/set_bt_minkey.html -share/doc/db2/api_java/DbInfo/set_bt_prefix.html -share/doc/db2/api_java/DbInfo/set_cachesize.html -share/doc/db2/api_java/DbInfo/set_compare.html -share/doc/db2/api_java/DbInfo/set_flags.html -share/doc/db2/api_java/DbInfo/set_h_ffactor.html -share/doc/db2/api_java/DbInfo/set_h_hash.html -share/doc/db2/api_java/DbInfo/set_h_nelem.html -share/doc/db2/api_java/DbInfo/set_lorder.html -share/doc/db2/api_java/DbInfo/set_malloc.html -share/doc/db2/api_java/DbInfo/set_pagesize.html -share/doc/db2/api_java/DbInfo/set_re_delim.html -share/doc/db2/api_java/DbInfo/set_re_len.html -share/doc/db2/api_java/DbInfo/set_re_pad.html -share/doc/db2/api_java/DbInfo/set_re_source.html -share/doc/db2/api_java/DbLock/class.html -share/doc/db2/api_java/DbLock/put.html -share/doc/db2/api_java/DbLockTab/class.html -share/doc/db2/api_java/DbLockTab/close.html -share/doc/db2/api_java/DbLockTab/detect.html -share/doc/db2/api_java/DbLockTab/get.html -share/doc/db2/api_java/DbLockTab/id.html -share/doc/db2/api_java/DbLockTab/open.html -share/doc/db2/api_java/DbLockTab/stat.html -share/doc/db2/api_java/DbLockTab/unlink.html -share/doc/db2/api_java/DbLockTab/vec.html -share/doc/db2/api_java/DbLog/archive.html -share/doc/db2/api_java/DbLog/class.html -share/doc/db2/api_java/DbLog/close.html -share/doc/db2/api_java/DbLog/compare.html -share/doc/db2/api_java/DbLog/db_register.html -share/doc/db2/api_java/DbLog/db_unregister.html -share/doc/db2/api_java/DbLog/file.html -share/doc/db2/api_java/DbLog/flush.html -share/doc/db2/api_java/DbLog/get.html -share/doc/db2/api_java/DbLog/open.html -share/doc/db2/api_java/DbLog/put.html -share/doc/db2/api_java/DbLog/stat.html -share/doc/db2/api_java/DbLog/unlink.html -share/doc/db2/api_java/DbLsn/class.html -share/doc/db2/api_java/DbMpool/class.html -share/doc/db2/api_java/DbMpool/close.html -share/doc/db2/api_java/DbMpool/db_register.html -share/doc/db2/api_java/DbMpool/open.html -share/doc/db2/api_java/DbMpool/stat.html -share/doc/db2/api_java/DbMpool/sync.html -share/doc/db2/api_java/DbMpool/trickle.html -share/doc/db2/api_java/DbMpool/unlink.html -share/doc/db2/api_java/DbMpoolFile/class.html -share/doc/db2/api_java/DbMpoolFile/close.html -share/doc/db2/api_java/DbMpoolFile/get.html -share/doc/db2/api_java/DbMpoolFile/open.html -share/doc/db2/api_java/DbMpoolFile/put.html -share/doc/db2/api_java/DbMpoolFile/set.html -share/doc/db2/api_java/DbMpoolFile/sync.html -share/doc/db2/api_java/DbRunRecoveryException/class.html -share/doc/db2/api_java/DbTxn/abort.html -share/doc/db2/api_java/DbTxn/class.html -share/doc/db2/api_java/DbTxn/commit.html -share/doc/db2/api_java/DbTxn/id.html -share/doc/db2/api_java/DbTxn/prepare.html -share/doc/db2/api_java/DbTxnMgr/begin.html -share/doc/db2/api_java/DbTxnMgr/checkpoint.html -share/doc/db2/api_java/DbTxnMgr/class.html -share/doc/db2/api_java/DbTxnMgr/close.html -share/doc/db2/api_java/DbTxnMgr/open.html -share/doc/db2/api_java/DbTxnMgr/stat.html -share/doc/db2/api_java/DbTxnMgr/unlink.html -share/doc/db2/api_java/Dbc/class.html -share/doc/db2/api_java/Dbc/close.html -share/doc/db2/api_java/Dbc/del.html -share/doc/db2/api_java/Dbc/get.html -share/doc/db2/api_java/Dbc/put.html -share/doc/db2/api_java/Dbt/class.html -share/doc/db2/api_java/index/class.html -share/doc/db2/build/java.html -share/doc/db2/build/shared.html -share/doc/db2/build/shared_gcc.html -share/doc/db2/build/shared_hp.html -share/doc/db2/build/unix.html -share/doc/db2/build/unix_faq.html -share/doc/db2/build/win16.html -share/doc/db2/build/win32.html -share/doc/db2/build/win_faq.html -share/doc/db2/distrib/layout.html -share/doc/db2/images/folder.gif -share/doc/db2/images/folder_open.gif -share/doc/db2/images/next.gif -share/doc/db2/images/prev.gif -share/doc/db2/images/ps.gif -share/doc/db2/images/sleepycat.gif -share/doc/db2/images/toc.gif -share/doc/db2/index.html -share/doc/db2/packages/hash_usenix.ps -share/doc/db2/packages/index.html -share/doc/db2/packages/libtp_usenix.ps -share/doc/db2/packages/witold.html -share/doc/db2/ref/am/bt_compare.html -share/doc/db2/ref/am/bt_dup.html -share/doc/db2/ref/am/bt_maxkey.html -share/doc/db2/ref/am/bt_minkey.html -share/doc/db2/ref/am/bt_prefix.html -share/doc/db2/ref/am/bt_recnum.html -share/doc/db2/ref/am/byteorder.html -share/doc/db2/ref/am/cachesize.html -share/doc/db2/ref/am/close.html -share/doc/db2/ref/am/compare.html -share/doc/db2/ref/am/curclose.html -share/doc/db2/ref/am/curdel.html -share/doc/db2/ref/am/curget.html -share/doc/db2/ref/am/curput.html -share/doc/db2/ref/am/cursor.html -share/doc/db2/ref/am/delete.html -share/doc/db2/ref/am/get.html -share/doc/db2/ref/am/h_dup.html -share/doc/db2/ref/am/h_ffactor.html -share/doc/db2/ref/am/h_hash.html -share/doc/db2/ref/am/h_nelem.html -share/doc/db2/ref/am/intro.html -share/doc/db2/ref/am/join.html -share/doc/db2/ref/am/logrec.html -share/doc/db2/ref/am/malloc.html -share/doc/db2/ref/am/ops.html -share/doc/db2/ref/am/pagesize.html -share/doc/db2/ref/am/partial.html -share/doc/db2/ref/am/put.html -share/doc/db2/ref/am/re_delim.html -share/doc/db2/ref/am/re_len.html -share/doc/db2/ref/am/re_pad.html -share/doc/db2/ref/am/re_source.html -share/doc/db2/ref/am/renumber.html -share/doc/db2/ref/am/select.html -share/doc/db2/ref/am/stat.html -share/doc/db2/ref/am/sync.html -share/doc/db2/ref/arch/apis.html -share/doc/db2/ref/arch/bigpic.gif -share/doc/db2/ref/arch/bigpic.html -share/doc/db2/ref/arch/env.html -share/doc/db2/ref/arch/extending.html -share/doc/db2/ref/arch/progmodel.html -share/doc/db2/ref/arch/script.html -share/doc/db2/ref/arch/smallpic.gif -share/doc/db2/ref/arch/subsystem.html -share/doc/db2/ref/arch/utilities.html -share/doc/db2/ref/cam/intro.html -share/doc/db2/ref/debug/runtime.html -share/doc/db2/ref/dumpload/format.html -share/doc/db2/ref/dumpload/text.html -share/doc/db2/ref/dumpload/utility.html -share/doc/db2/ref/env/create.html -share/doc/db2/ref/env/naming.html -share/doc/db2/ref/env/open.html -share/doc/db2/ref/env/region.html -share/doc/db2/ref/env/security.html -share/doc/db2/ref/install/file.html -share/doc/db2/ref/install/magic.s5.be.txt -share/doc/db2/ref/install/magic.s5.le.txt -share/doc/db2/ref/install/magic.txt -share/doc/db2/ref/intro/distrib.html -share/doc/db2/ref/intro/do.html -share/doc/db2/ref/intro/what.html -share/doc/db2/ref/intro/where.html -share/doc/db2/ref/lock/stdmode.html -share/doc/db2/ref/log/config.html -share/doc/db2/ref/log/intro.html -share/doc/db2/ref/log/limits.html -share/doc/db2/ref/mp/config.html -share/doc/db2/ref/mp/intro.html -share/doc/db2/ref/perl/intro.html -share/doc/db2/ref/program/appsignals.html -share/doc/db2/ref/program/byteorder.html -share/doc/db2/ref/program/compatible.html -share/doc/db2/ref/program/convert.html -share/doc/db2/ref/program/dbsizes.html -share/doc/db2/ref/program/environ.html -share/doc/db2/ref/program/errorret.html -share/doc/db2/ref/program/java.html -share/doc/db2/ref/program/runtime.html -share/doc/db2/ref/program/solaris.txt -share/doc/db2/ref/program/thread.html -share/doc/db2/ref/program/version.html -share/doc/db2/ref/sendmail/intro.html -share/doc/db2/ref/simple_tut/close.html -share/doc/db2/ref/simple_tut/del.html -share/doc/db2/ref/simple_tut/errors.html -share/doc/db2/ref/simple_tut/example.txt -share/doc/db2/ref/simple_tut/get.html -share/doc/db2/ref/simple_tut/intro.html -share/doc/db2/ref/simple_tut/keydata.html -share/doc/db2/ref/simple_tut/open.html -share/doc/db2/ref/simple_tut/put.html -share/doc/db2/ref/toc.html -share/doc/db2/ref/transapp/admin.html -share/doc/db2/ref/transapp/apps.html -share/doc/db2/ref/transapp/archival.html -share/doc/db2/ref/transapp/checkpoint.html -share/doc/db2/ref/transapp/deadlock.html -share/doc/db2/ref/transapp/filesys.html -share/doc/db2/ref/transapp/intro.html -share/doc/db2/ref/transapp/recovery.html -share/doc/db2/ref/transapp/throughput.html -share/doc/db2/ref/transapp/writetest.txt -share/doc/db2/ref/txn/config.html -share/doc/db2/ref/txn/limits.html -share/doc/db2/ref/txn/other.html -share/doc/db2/ref/txn/stability.html -share/doc/db2/sleepycat/contact.html -share/doc/db2/sleepycat/products.html -share/doc/db2/test/build.html -share/doc/db2/test/build_faq.html -share/doc/db2/test/debug.html -share/doc/db2/test/run.html -share/doc/db2/utility/db_archive.html -share/doc/db2/utility/db_checkpoint.html -share/doc/db2/utility/db_deadlock.html -share/doc/db2/utility/db_dump.html -share/doc/db2/utility/db_load.html -share/doc/db2/utility/db_recover.html -share/doc/db2/utility/db_stat.html -share/doc/db2/utility/index.html -share/examples/db2/examples/README -share/examples/db2/examples/ex_access.c -share/examples/db2/examples/ex_appinit.c -share/examples/db2/examples/ex_btrec.c -share/examples/db2/examples/ex_lock.c -share/examples/db2/examples/ex_mpool.c -share/examples/db2/examples/ex_thread.c -share/examples/db2/examples/ex_tpcb.c -share/examples/db2/examples/ex_tpcb.h -share/examples/db2/examples_cxx/AccessExample.cpp -share/examples/db2/examples_cxx/AppinitExample.cpp -share/examples/db2/examples_cxx/LockExample.cpp -share/examples/db2/examples_cxx/MpoolExample.cpp -share/examples/db2/examples_cxx/TpcbExample.cpp -share/examples/db2/examples_java/AccessExample.java -share/examples/db2/examples_java/AppinitExample.java -share/examples/db2/examples_java/LockExample.java -share/examples/db2/examples_java/TpcbExample.java -@dirrm include/db2 -@dirrm share/examples/db2/examples -@dirrm share/examples/db2/examples_cxx -@dirrm share/examples/db2/examples_java -@dirrm share/examples/db2 -@dirrm share/doc/db2/api_c/DbTxn -@dirrm share/doc/db2/api_c/DbEnv -@dirrm share/doc/db2/api_c/DbInfo -@dirrm share/doc/db2/api_c/DbLock -@dirrm share/doc/db2/api_c/DbLockTab -@dirrm share/doc/db2/api_c/DbLog -@dirrm share/doc/db2/api_c/DbMpool -@dirrm share/doc/db2/api_c/DbMpoolFile -@dirrm share/doc/db2/api_c/Db -@dirrm share/doc/db2/api_c/DbTxnMgr -@dirrm share/doc/db2/api_c/Dbc -@dirrm share/doc/db2/api_c/Dbt -@dirrm share/doc/db2/api_c/historic -@dirrm share/doc/db2/api_c/index -@dirrm share/doc/db2/api_c/internal -@dirrm share/doc/db2/api_c/special -@dirrm share/doc/db2/api_c -@dirrm share/doc/db2/test -@dirrm share/doc/db2/sleepycat -@dirrm share/doc/db2/ref/txn -@dirrm share/doc/db2/ref/am -@dirrm share/doc/db2/ref/arch -@dirrm share/doc/db2/ref/cam -@dirrm share/doc/db2/ref/debug -@dirrm share/doc/db2/ref/dumpload -@dirrm share/doc/db2/ref/env -@dirrm share/doc/db2/ref/intro -@dirrm share/doc/db2/ref/install -@dirrm share/doc/db2/ref/lock -@dirrm share/doc/db2/ref/log -@dirrm share/doc/db2/ref/mp -@dirrm share/doc/db2/ref/perl -@dirrm share/doc/db2/ref/program -@dirrm share/doc/db2/ref/sendmail -@dirrm share/doc/db2/ref/simple_tut -@dirrm share/doc/db2/ref/transapp -@dirrm share/doc/db2/ref -@dirrm share/doc/db2/packages -@dirrm share/doc/db2/api_cxx/DbLsn -@dirrm share/doc/db2/api_cxx/Dbc -@dirrm share/doc/db2/api_cxx/DbEnv -@dirrm share/doc/db2/api_cxx/DbException -@dirrm share/doc/db2/api_cxx/DbInfo -@dirrm share/doc/db2/api_cxx/DbLock -@dirrm share/doc/db2/api_cxx/DbLockTab -@dirrm share/doc/db2/api_cxx/DbLog -@dirrm share/doc/db2/api_cxx/Db -@dirrm share/doc/db2/api_cxx/DbMpool -@dirrm share/doc/db2/api_cxx/DbMpoolFile -@dirrm share/doc/db2/api_cxx/DbTxn -@dirrm share/doc/db2/api_cxx/DbTxnMgr -@dirrm share/doc/db2/api_cxx/Dbt -@dirrm share/doc/db2/api_cxx/index -@dirrm share/doc/db2/api_cxx/special -@dirrm share/doc/db2/api_cxx -@dirrm share/doc/db2/utility -@dirrm share/doc/db2/distrib -@dirrm share/doc/db2/build -@dirrm share/doc/db2/api_java/DbMpool -@dirrm share/doc/db2/api_java/DbEnv -@dirrm share/doc/db2/api_java/DbException -@dirrm share/doc/db2/api_java/DbInfo -@dirrm share/doc/db2/api_java/DbLock -@dirrm share/doc/db2/api_java/DbLockTab -@dirrm share/doc/db2/api_java/DbLog -@dirrm share/doc/db2/api_java/DbLsn -@dirrm share/doc/db2/api_java/Db -@dirrm share/doc/db2/api_java/DbMpoolFile -@dirrm share/doc/db2/api_java/DbRunRecoveryException -@dirrm share/doc/db2/api_java/DbTxn -@dirrm share/doc/db2/api_java/DbTxnMgr -@dirrm share/doc/db2/api_java/Dbc -@dirrm share/doc/db2/api_java/Dbt -@dirrm share/doc/db2/api_java/index -@dirrm share/doc/db2/api_java/special -@dirrm share/doc/db2/api_java -@dirrm share/doc/db2/images -@dirrm share/doc/db2 diff --git a/databases/db41/Makefile b/databases/db41/Makefile deleted file mode 100644 index 9b1fe8a00a1e..000000000000 --- a/databases/db41/Makefile +++ /dev/null @@ -1,41 +0,0 @@ -# ports collection makefile for: Berkeley DB -# Date created: 26 Jan 1998 -# Whom: Josh Tiefenbach <josh@ican.net> -# -# $FreeBSD$ -# - -PORTNAME= db -PORTVERSION= 2.7.7 -CATEGORIES= databases -MASTER_SITES= http://www.sleepycat.com/update/${PORTVERSION}/ - -MAINTAINER= josh@ican.net - -Y2K= http://www.sleepycat.com/faq.html#A8 - -MANUAL_PACKAGE_BUILD= incompatible with libc internal db calls -WRKSRC= ${WRKDIR}/${DISTNAME}/build_unix - -INSTALLS_SHLIB= yes -GNU_CONFIGURE= yes -CONFIGURE_SCRIPT= ../dist/configure -CONFIGURE_ARGS= --enable-compat185 \ - --enable-dump185 --enable-cxx - -post-install: - ${MKDIR} ${PREFIX}/share/examples/db2 - cd ${WRKSRC}/..; \ - tar -cf - --exclude tags examples/ examples_cxx/ examples_java/ | \ - ( cd ${PREFIX}/share/examples/db2; tar xf - ) - @${ECHO_MSG} "" - @${ECHO_MSG} "Java support for ${PKGNAME} is *not* built by default, and requires that you" - @${ECHO_MSG} "have a working copy of the JDK (v1.1) installed." - @${ECHO_MSG} "" - @${ECHO_MSG} "To build java support, please read:" - @${ECHO_MSG} "" - @${ECHO_MSG} "${WRKDIR}/${DISTNAME}/java/README" - @${ECHO_MSG} "" - @${ECHO_MSG} "and follow the directions therein." - -.include <bsd.port.mk> diff --git a/databases/db41/distinfo b/databases/db41/distinfo deleted file mode 100644 index d761baf3bdff..000000000000 --- a/databases/db41/distinfo +++ /dev/null @@ -1 +0,0 @@ -MD5 (db-2.7.7.tar.gz) = 20256735091ee382c6601117d82d749a diff --git a/databases/db41/files/patch-aa b/databases/db41/files/patch-aa deleted file mode 100644 index db3d430758a2..000000000000 --- a/databases/db41/files/patch-aa +++ /dev/null @@ -1,506 +0,0 @@ ---- ../dist/Makefile.in.orig Mon Dec 7 21:05:59 1998 -+++ ../dist/Makefile.in Tue Jun 6 17:44:50 2000 -@@ -1,13 +1,16 @@ - # @(#)Makefile.in 10.62 (Sleepycat) 12/7/98 - -+SOVER?= 0 -+ - srcdir= @srcdir@/.. - CPPFLAGS=-I. -I$(srcdir)/include @CPPFLAGS@ -+SHAREDFLAGS= -fpic -DPIC - CFLAGS= -c @CFLAGS@ $(CPPFLAGS) - CC= @CC@ - CXXFLAGS=-c @CXXFLAGS@ $(CPPFLAGS) - CXX= @CXX@ --LDFLAGS=@LDFLAGS@ --LIBS= @LIBS@ -+LDFLAGS=@LDFLAGS@ -L. -+LIBS= @LIBS@ -ldb2 - - SHELL= @db_cv_path_sh@ - ar= @db_cv_path_ar@ cr -@@ -43,85 +46,91 @@ - LOBJS= @LIBOBJS@ - POBJS= err.o getlong.o - --libdb= libdb.a --all: $(libdb) $(PROGS) -+libdb= libdb2.a -+libdbso= libdb2.so.$(SOVER) -+all: $(libdb) $(libdbso) $(PROGS) - - $(libdb): db.h $(OBJS) $(LOBJS) - $(rm) -f $@ - $(ar) $@ $(OBJS) $(LOBJS) - test ! -f $(ranlib) || $(ranlib) $@ - -+$(libdbso): db.h $(OBJS:S/.o$/.so/g) $(LOBJS:S/.o$/.so/g) -+ $(rm) -f $@ -+ $(CXX) -shared -Wl,-x -Wl,-assert -Wl,pure-text -Wl,-soname,$@ -o $@ $(OBJS:S/.o$/.so/g) $(LOBJS:S/.o$/.so/g) -+ ln -sf $@ libdb2.so -+ - DBA= db_archive.o $(POBJS) --db_archive: $(DBA) $(libdb) -- $(CC) -o $@ $(LDFLAGS) $(DBA) $(libdb) $(LIBS) -+db_archive: $(DBA) $(libdbso) -+ $(CC) -o $@ $(LDFLAGS) $(DBA) $(LIBS) - - DBB= db_checkpoint.o $(POBJS) --db_checkpoint: $(DBB) $(libdb) -- $(CC) -o $@ $(LDFLAGS) $(DBB) $(libdb) $(LIBS) -+db_checkpoint: $(DBB) $(libdbso) -+ $(CC) -o $@ $(LDFLAGS) $(DBB) $(LIBS) - - DBC= db_deadlock.o $(POBJS) --db_deadlock: $(DBC) $(libdb) -- $(CC) -o $@ $(LDFLAGS) $(DBC) $(libdb) $(LIBS) -+db_deadlock: $(DBC) $(libdbso) -+ $(CC) -o $@ $(LDFLAGS) $(DBC) $(LIBS) - - DBD= db_dump.o $(POBJS) --db_dump: $(DBD) $(libdb) -- $(CC) -o $@ $(LDFLAGS) $(DBD) $(libdb) $(LIBS) -+db_dump: $(DBD) $(libdbso) -+ $(CC) -o $@ $(LDFLAGS) $(DBD) $(LIBS) - - DBE= db_dump185.o $(POBJS) - db_dump185: $(DBE) - $(CC) -o $@ $(LDFLAGS) $(DBE) $(LIBS) - - DBF= db_load.o $(POBJS) --db_load: $(DBF) $(libdb) -- $(CC) -o $@ $(LDFLAGS) $(DBF) $(libdb) $(LIBS) -+db_load: $(DBF) $(libdbso) -+ $(CC) -o $@ $(LDFLAGS) $(DBF) $(LIBS) - - DBG= db_printlog.o $(POBJS) --db_printlog: $(DBG) $(libdb) -- $(CC) -o $@ $(LDFLAGS) $(DBG) $(libdb) $(LIBS) -+db_printlog: $(DBG) $(libdbso) -+ $(CC) -o $@ $(LDFLAGS) $(DBG) $(LIBS) - - DBH= db_recover.o $(POBJS) --db_recover: $(DBH) $(libdb) -- $(CC) -o $@ $(LDFLAGS) $(DBH) $(libdb) $(LIBS) -+db_recover: $(DBH) $(libdbso) -+ $(CC) -o $@ $(LDFLAGS) $(DBH) $(LIBS) - - DBI= db_stat.o $(POBJS) --db_stat: $(DBI) $(libdb) -- $(CC) -o $@ $(LDFLAGS) $(DBI) $(libdb) $(LIBS) -+db_stat: $(DBI) $(libdbso) -+ $(CC) -o $@ $(LDFLAGS) $(DBI) $(LIBS) - - EPROGS= ex_access ex_appinit ex_btrec ex_lock ex_mpool ex_thread ex_tpcb - DBJ= ex_access.o --ex_access: $(DBJ) $(libdb) -- $(CC) -o $@ $(LDFLAGS) $(DBJ) $(libdb) $(LIBS) -+ex_access: $(DBJ) $(libdbso) -+ $(CC) -o $@ $(LDFLAGS) $(DBJ) $(LIBS) - - DBK= ex_appinit.o --ex_appinit: $(DBK) $(libdb) -- $(CC) -o $@ $(LDFLAGS) $(DBK) $(libdb) $(LIBS) -+ex_appinit: $(DBK) $(libdbso) -+ $(CC) -o $@ $(LDFLAGS) $(DBK) $(LIBS) - - DBL= ex_btrec.o --ex_btrec: $(DBL) $(libdb) -- $(CC) -o $@ $(LDFLAGS) $(DBL) $(libdb) $(LIBS) -+ex_btrec: $(DBL) $(libdbso) -+ $(CC) -o $@ $(LDFLAGS) $(DBL) $(LIBS) - - DBM= ex_lock.o $(POBJS) --ex_lock: $(DBM) $(libdb) -- $(CC) -o $@ $(LDFLAGS) $(DBM) $(libdb) $(LIBS) -+ex_lock: $(DBM) $(libdbso) -+ $(CC) -o $@ $(LDFLAGS) $(DBM) $(LIBS) - - DBN= ex_mpool.o --ex_mpool: $(DBN) $(libdb) -- $(CC) -o $@ $(LDFLAGS) $(DBN) $(libdb) $(LIBS) -+ex_mpool: $(DBN) $(libdbso) -+ $(CC) -o $@ $(LDFLAGS) $(DBN) $(LIBS) - - DBO= ex_thread.o --ex_thread: $(DBO) $(libdb) -- $(CC) -o $@ $(LDFLAGS) $(DBO) $(libdb) $(LIBS) -+ex_thread: $(DBO) $(libdbso) -+ $(CC) -o $@ $(LDFLAGS) $(DBO) $(LIBS) - - DBP= ex_tpcb.o $(POBJS) --ex_tpcb: $(DBP) $(libdb) -- $(CC) -o $@ $(LDFLAGS) $(DBP) $(libdb) $(LIBS) -+ex_tpcb: $(DBP) $(libdbso) -+ $(CC) -o $@ $(LDFLAGS) $(DBP) $(LIBS) - - DBT= tclAppInit.o tcl_dbm.o tcl_hsearch.o tcl_lock.o tcl_log.o tcl_mpool.o \ - tcl_mutex.o tcl_ndbm.o tcl_txn.o utils.o $(POBJS) - - dbtest: .dbtestrc --dbtest: $(DBT) $(libdb) -- $(CC) -o $@ $(LDFLAGS) $(DBT) $(libdb) $(LIBS) -+dbtest: $(DBT) $(libdbso) -+ $(CC) -o $@ $(LDFLAGS) $(DBT) $(LIBS) - - AOBJS= err.o getcwd.o getlong.o getopt.o memcmp.o memcpy.o memmove.o \ - raise.o snprintf.o strerror.o strsep.o vsnprintf.o -@@ -131,8 +140,8 @@ - $(rm) -f $(DBA) $(DBB) $(DBC) $(DBD) $(DBE) $(DBF) $(DBG) $(DBH) - $(rm) -f $(DBI) $(DBJ) $(DBK) $(DBL) $(DBM) $(DBN) $(DBO) $(DBP) - $(rm) -f $(DBT) -- $(rm) -f $(PROGS) $(EPROGS) $(POBJS) $(LOBJS) @build_test@ -- $(rm) -f core *.core .dbtestrc $(libdb) -+ $(rm) -f $(PROGS) $(EPROGS) $(POBJS) $(LOBJS) *.so @build_test@ -+ $(rm) -f core *.core .dbtestrc $(libdb) $(libdbso) - - depend obj: - -@@ -141,11 +150,11 @@ - $(rm) -f confdefs.h db.h db_int.h db_185.h include.tcl - - prefix= @prefix@ --bindir= $(prefix)/BerkeleyDB/bin --datadir=$(prefix)/BerkeleyDB/share --includedir=$(prefix)/BerkeleyDB/include --libdir= $(prefix)/BerkeleyDB/lib --mandir= $(prefix)/BerkeleyDB/docs -+bindir= $(prefix)/bin -+datadir=$(prefix)/share/db2 -+includedir=$(prefix)/include/db2 -+libdir= $(prefix)/lib -+mandir= $(prefix)/share/doc/db2 - - dmode= 755 - emode= 555 -@@ -170,6 +179,9 @@ - @cd $(libdir) && $(rm) -f $(libdb) - @$(cp) -p $(libdb) $(libdir) - @cd $(libdir) && $(chmod) $(fmode) $(libdb) -+ @$(cp) -p $(libdbso) $(libdir) -+ @cd $(libdir) && $(chmod) $(fmode) $(libdbso) -+ ln -sf $(libdbso) $(libdir)/libdb2.so - @echo "Installing DB utilities: $(bindir) ..." - @test -d $(bindir) || \ - ($(mkdir) -p $(bindir) && $(chmod) $(dmode) $(bindir)) -@@ -506,3 +518,320 @@ - $(CC) $(CFLAGS) $? - vsnprintf.o: $(srcdir)/clib/vsnprintf.c - $(CC) $(CFLAGS) $? -+ -+# Shared build -+# Programs. -+db_archive.so: $(srcdir)/db_archive/db_archive.c -+ $(CC) $(CFLAGS) $(SHAREDFLAGS) $? -o $@ -+db_checkpoint.so: $(srcdir)/db_checkpoint/db_checkpoint.c -+ $(CC) $(CFLAGS) $(SHAREDFLAGS) $? -o $@ -+db_deadlock.so: $(srcdir)/db_deadlock/db_deadlock.c -+ $(CC) $(CFLAGS) $(SHAREDFLAGS) $? -o $@ -+db_dump.so: $(srcdir)/db_dump/db_dump.c -+ $(CC) $(CFLAGS) $(SHAREDFLAGS) $? -o $@ -+db_dump185.so: $(srcdir)/db_dump185/db_dump185.c -+ $(CC) $(CFLAGS) $(SHAREDFLAGS) $? -o $@ -+db_load.so: $(srcdir)/db_load/db_load.c -+ $(CC) $(CFLAGS) $(SHAREDFLAGS) $? -o $@ -+db_printlog.so: $(srcdir)/db_printlog/db_printlog.c -+ $(CC) $(CFLAGS) $(SHAREDFLAGS) $? -o $@ -+db_recover.so: $(srcdir)/db_recover/db_recover.c -+ $(CC) $(CFLAGS) $(SHAREDFLAGS) $? -o $@ -+db_stat.so: $(srcdir)/db_stat/db_stat.c -+ $(CC) $(CFLAGS) $(SHAREDFLAGS) $? -o $@ -+ -+# Examples. -+ex_access.so: $(srcdir)/examples/ex_access.c -+ $(CC) $(CFLAGS) $(SHAREDFLAGS) $? -o $@ -+ex_appinit.so: $(srcdir)/examples/ex_appinit.c -+ $(CC) $(CFLAGS) $(SHAREDFLAGS) $? -o $@ -+ex_btrec.so: $(srcdir)/examples/ex_btrec.c -+ $(CC) $(CFLAGS) $(SHAREDFLAGS) $? -o $@ -+ex_lock.so: $(srcdir)/examples/ex_lock.c -+ $(CC) $(CFLAGS) $(SHAREDFLAGS) $? -o $@ -+ex_mpool.so: $(srcdir)/examples/ex_mpool.c -+ $(CC) $(CFLAGS) $(SHAREDFLAGS) $? -o $@ -+ex_thread.so: $(srcdir)/examples/ex_thread.c -+ $(CC) $(CFLAGS) $(SHAREDFLAGS) $? -o $@ -+ex_tpcb.so: $(srcdir)/examples/ex_tpcb.c -+ $(CC) $(CFLAGS) $(SHAREDFLAGS) $? -o $@ -+ -+# DB files. -+db.so: $(srcdir)/db/db.c -+ $(CC) $(CFLAGS) $(SHAREDFLAGS) $? -o $@ -+db_am.so: $(srcdir)/db/db_am.c -+ $(CC) $(CFLAGS) $(SHAREDFLAGS) $? -o $@ -+db_auto.so: $(srcdir)/db/db_auto.c -+ $(CC) $(CFLAGS) $(SHAREDFLAGS) $? -o $@ -+db_conv.so: $(srcdir)/db/db_conv.c -+ $(CC) $(CFLAGS) $(SHAREDFLAGS) $? -o $@ -+db_dispatch.so: $(srcdir)/db/db_dispatch.c -+ $(CC) $(CFLAGS) $(SHAREDFLAGS) $? -o $@ -+db_dup.so: $(srcdir)/db/db_dup.c -+ $(CC) $(CFLAGS) $(SHAREDFLAGS) $? -o $@ -+db_iface.so: $(srcdir)/db/db_iface.c -+ $(CC) $(CFLAGS) $(SHAREDFLAGS) $? -o $@ -+db_join.so: $(srcdir)/db/db_join.c -+ $(CC) $(CFLAGS) $(SHAREDFLAGS) $? -o $@ -+db_overflow.so: $(srcdir)/db/db_overflow.c -+ $(CC) $(CFLAGS) $(SHAREDFLAGS) $? -o $@ -+db_pr.so: $(srcdir)/db/db_pr.c -+ $(CC) $(CFLAGS) $(SHAREDFLAGS) $? -o $@ -+db_rec.so: $(srcdir)/db/db_rec.c -+ $(CC) $(CFLAGS) $(SHAREDFLAGS) $? -o $@ -+db_ret.so: $(srcdir)/db/db_ret.c -+ $(CC) $(CFLAGS) $(SHAREDFLAGS) $? -o $@ -+ -+# Btree source files. -+bt_compare.so: $(srcdir)/btree/bt_compare.c -+ $(CC) $(CFLAGS) $(SHAREDFLAGS) $? -o $@ -+bt_conv.so: $(srcdir)/btree/bt_conv.c -+ $(CC) $(CFLAGS) $(SHAREDFLAGS) $? -o $@ -+bt_curadj.so: $(srcdir)/btree/bt_curadj.c -+ $(CC) $(CFLAGS) $(SHAREDFLAGS) $? -o $@ -+bt_cursor.so: $(srcdir)/btree/bt_cursor.c -+ $(CC) $(CFLAGS) $(SHAREDFLAGS) $? -o $@ -+bt_delete.so: $(srcdir)/btree/bt_delete.c -+ $(CC) $(CFLAGS) $(SHAREDFLAGS) $? -o $@ -+bt_open.so: $(srcdir)/btree/bt_open.c -+ $(CC) $(CFLAGS) $(SHAREDFLAGS) $? -o $@ -+bt_page.so: $(srcdir)/btree/bt_page.c -+ $(CC) $(CFLAGS) $(SHAREDFLAGS) $? -o $@ -+bt_put.so: $(srcdir)/btree/bt_put.c -+ $(CC) $(CFLAGS) $(SHAREDFLAGS) $? -o $@ -+bt_rec.so: $(srcdir)/btree/bt_rec.c -+ $(CC) $(CFLAGS) $(SHAREDFLAGS) $? -o $@ -+bt_recno.so: $(srcdir)/btree/bt_recno.c -+ $(CC) $(CFLAGS) $(SHAREDFLAGS) $? -o $@ -+bt_rsearch.so: $(srcdir)/btree/bt_rsearch.c -+ $(CC) $(CFLAGS) $(SHAREDFLAGS) $? -o $@ -+bt_search.so: $(srcdir)/btree/bt_search.c -+ $(CC) $(CFLAGS) $(SHAREDFLAGS) $? -o $@ -+bt_split.so: $(srcdir)/btree/bt_split.c -+ $(CC) $(CFLAGS) $(SHAREDFLAGS) $? -o $@ -+bt_stack.so: $(srcdir)/btree/bt_stack.c -+ $(CC) $(CFLAGS) $(SHAREDFLAGS) $? -o $@ -+bt_stat.so: $(srcdir)/btree/bt_stat.c -+ $(CC) $(CFLAGS) $(SHAREDFLAGS) $? -o $@ -+btree_auto.so: $(srcdir)/btree/btree_auto.c -+ $(CC) $(CFLAGS) $(SHAREDFLAGS) $? -o $@ -+ -+# C++ interface files. -+cxx_app.so: $(srcdir)/cxx/cxx_app.cpp -+ $(CXX) $(CXXFLAGS) $(SHAREDFLAGS) $? -o $@ -+cxx_except.so: $(srcdir)/cxx/cxx_except.cpp -+ $(CXX) $(CXXFLAGS) $(SHAREDFLAGS) $? -o $@ -+cxx_lock.so: $(srcdir)/cxx/cxx_lock.cpp -+ $(CXX) $(CXXFLAGS) $(SHAREDFLAGS) $? -o $@ -+cxx_log.so: $(srcdir)/cxx/cxx_log.cpp -+ $(CXX) $(CXXFLAGS) $(SHAREDFLAGS) $? -o $@ -+cxx_mpool.so: $(srcdir)/cxx/cxx_mpool.cpp -+ $(CXX) $(CXXFLAGS) $(SHAREDFLAGS) $? -o $@ -+cxx_table.so: $(srcdir)/cxx/cxx_table.cpp -+ $(CXX) $(CXXFLAGS) $(SHAREDFLAGS) $? -o $@ -+cxx_txn.so: $(srcdir)/cxx/cxx_txn.cpp -+ $(CXX) $(CXXFLAGS) $(SHAREDFLAGS) $? -o $@ -+ -+# Hash source files. -+hash_auto.so: $(srcdir)/hash/hash_auto.c -+ $(CC) $(CFLAGS) $(SHAREDFLAGS) $? -o $@ -+hash.so: $(srcdir)/hash/hash.c -+ $(CC) $(CFLAGS) $(SHAREDFLAGS) $? -o $@ -+hash_conv.so: $(srcdir)/hash/hash_conv.c -+ $(CC) $(CFLAGS) $(SHAREDFLAGS) $? -o $@ -+hash_dup.so: $(srcdir)/hash/hash_dup.c -+ $(CC) $(CFLAGS) $(SHAREDFLAGS) $? -o $@ -+hash_func.so: $(srcdir)/hash/hash_func.c -+ $(CC) $(CFLAGS) $(SHAREDFLAGS) $? -o $@ -+hash_page.so: $(srcdir)/hash/hash_page.c -+ $(CC) $(CFLAGS) $(SHAREDFLAGS) $? -o $@ -+hash_rec.so: $(srcdir)/hash/hash_rec.c -+ $(CC) $(CFLAGS) $(SHAREDFLAGS) $? -o $@ -+hash_stat.so: $(srcdir)/hash/hash_stat.c -+ $(CC) $(CFLAGS) $(SHAREDFLAGS) $? -o $@ -+ -+# Lock source files. -+lock.so: $(srcdir)/lock/lock.c -+ $(CC) $(CFLAGS) $(SHAREDFLAGS) $? -o $@ -+lock_conflict.so:$(srcdir)/lock/lock_conflict.c -+ $(CC) $(CFLAGS) $(SHAREDFLAGS) $? -o $@ -+lock_deadlock.so:$(srcdir)/lock/lock_deadlock.c -+ $(CC) $(CFLAGS) $(SHAREDFLAGS) $? -o $@ -+lock_region.so:$(srcdir)/lock/lock_region.c -+ $(CC) $(CFLAGS) $(SHAREDFLAGS) $? -o $@ -+lock_util.so:$(srcdir)/lock/lock_util.c -+ $(CC) $(CFLAGS) $(SHAREDFLAGS) $? -o $@ -+ -+# Log source files. -+log.so: $(srcdir)/log/log.c -+ $(CC) $(CFLAGS) $(SHAREDFLAGS) $? -o $@ -+log_archive.so: $(srcdir)/log/log_archive.c -+ $(CC) $(CFLAGS) $(SHAREDFLAGS) $? -o $@ -+log_auto.so: $(srcdir)/log/log_auto.c -+ $(CC) $(CFLAGS) $(SHAREDFLAGS) $? -o $@ -+log_compare.so: $(srcdir)/log/log_compare.c -+ $(CC) $(CFLAGS) $(SHAREDFLAGS) $? -o $@ -+log_findckp.so: $(srcdir)/log/log_findckp.c -+ $(CC) $(CFLAGS) $(SHAREDFLAGS) $? -o $@ -+log_get.so: $(srcdir)/log/log_get.c -+ $(CC) $(CFLAGS) $(SHAREDFLAGS) $? -o $@ -+log_put.so: $(srcdir)/log/log_put.c -+ $(CC) $(CFLAGS) $(SHAREDFLAGS) $? -o $@ -+log_rec.so: $(srcdir)/log/log_rec.c -+ $(CC) $(CFLAGS) $(SHAREDFLAGS) $? -o $@ -+log_register.so: $(srcdir)/log/log_register.c -+ $(CC) $(CFLAGS) $(SHAREDFLAGS) $? -o $@ -+ -+# Mpool source files. -+mp_bh.so: $(srcdir)/mp/mp_bh.c -+ $(CC) $(CFLAGS) $(SHAREDFLAGS) $? -o $@ -+mp_fget.so: $(srcdir)/mp/mp_fget.c -+ $(CC) $(CFLAGS) $(SHAREDFLAGS) $? -o $@ -+mp_fopen.so: $(srcdir)/mp/mp_fopen.c -+ $(CC) $(CFLAGS) $(SHAREDFLAGS) $? -o $@ -+mp_fput.so: $(srcdir)/mp/mp_fput.c -+ $(CC) $(CFLAGS) $(SHAREDFLAGS) $? -o $@ -+mp_fset.so: $(srcdir)/mp/mp_fset.c -+ $(CC) $(CFLAGS) $(SHAREDFLAGS) $? -o $@ -+mp_open.so: $(srcdir)/mp/mp_open.c -+ $(CC) $(CFLAGS) $(SHAREDFLAGS) $? -o $@ -+mp_pr.so: $(srcdir)/mp/mp_pr.c -+ $(CC) $(CFLAGS) $(SHAREDFLAGS) $? -o $@ -+mp_region.so: $(srcdir)/mp/mp_region.c -+ $(CC) $(CFLAGS) $(SHAREDFLAGS) $? -o $@ -+mp_sync.so: $(srcdir)/mp/mp_sync.c -+ $(CC) $(CFLAGS) $(SHAREDFLAGS) $? -o $@ -+ -+# Mutex source files. -+mutex.so: $(srcdir)/mutex/mutex.c -+ $(CC) $(CFLAGS) $(SHAREDFLAGS) $? -o $@ -+# XXX -+# UTS4 spinlocks -+uts4_cc.so: $(srcdir)/mutex/uts4_cc.s -+ $(AS) $(ASFLAGS) $(SHAREDFLAGS) -o $@ $? -o $@ -+ -+# Transaction source files. -+txn.so: $(srcdir)/txn/txn.c -+ $(CC) $(CFLAGS) $(SHAREDFLAGS) $? -o $@ -+txn_auto.so: $(srcdir)/txn/txn_auto.c -+ $(CC) $(CFLAGS) $(SHAREDFLAGS) $? -o $@ -+txn_rec.so: $(srcdir)/txn/txn_rec.c -+ $(CC) $(CFLAGS) $(SHAREDFLAGS) $? -o $@ -+ -+# XA source files. -+xa.so: $(srcdir)/xa/xa.c -+ $(CC) $(CFLAGS) $(SHAREDFLAGS) $? -o $@ -+xa_db.so: $(srcdir)/xa/xa_db.c -+ $(CC) $(CFLAGS) $(SHAREDFLAGS) $? -o $@ -+xa_map.so: $(srcdir)/xa/xa_map.c -+ $(CC) $(CFLAGS) $(SHAREDFLAGS) $? -o $@ -+ -+# Historic interfaces. -+hsearch.so: $(srcdir)/hsearch/hsearch.c -+ $(CC) $(CFLAGS) $(SHAREDFLAGS) $? -o $@ -+dbm.so: $(srcdir)/dbm/dbm.c -+ $(CC) $(CFLAGS) $(SHAREDFLAGS) $? -o $@ -+db185.so: $(srcdir)/db185/db185.c -+ $(CC) $(CFLAGS) $(SHAREDFLAGS) $? -o $@ -+ -+# Common source files. -+db_appinit.so: $(srcdir)/common/db_appinit.c -+ $(CC) $(CFLAGS) $(SHAREDFLAGS) $? -o $@ -+db_apprec.so: $(srcdir)/common/db_apprec.c -+ $(CC) $(CFLAGS) $(SHAREDFLAGS) $? -o $@ -+db_byteorder.so: $(srcdir)/common/db_byteorder.c -+ $(CC) $(CFLAGS) $(SHAREDFLAGS) $? -o $@ -+db_err.so: $(srcdir)/common/db_err.c -+ $(CC) $(CFLAGS) $(SHAREDFLAGS) $? -o $@ -+db_log2.so: $(srcdir)/common/db_log2.c -+ $(CC) $(CFLAGS) $(SHAREDFLAGS) $? -o $@ -+db_region.so: $(srcdir)/common/db_region.c -+ $(CC) $(CFLAGS) $(SHAREDFLAGS) $? -o $@ -+db_salloc.so: $(srcdir)/common/db_salloc.c -+ $(CC) $(CFLAGS) $(SHAREDFLAGS) $? -o $@ -+db_shash.so: $(srcdir)/common/db_shash.c -+ $(CC) $(CFLAGS) $(SHAREDFLAGS) $? -o $@ -+ -+# OS specific source files. -+os_abs.so: $(srcdir)/os/os_abs.c -+ $(CC) $(CFLAGS) $(SHAREDFLAGS) $? -o $@ -+os_alloc.so: $(srcdir)/os/os_alloc.c -+ $(CC) $(CFLAGS) $(SHAREDFLAGS) $? -o $@ -+os_config.so: $(srcdir)/os/os_config.c -+ $(CC) $(CFLAGS) $(SHAREDFLAGS) $? -o $@ -+os_dir.so: $(srcdir)/os/os_dir.c -+ $(CC) $(CFLAGS) $(SHAREDFLAGS) $? -o $@ -+os_fid.so: $(srcdir)/os/os_fid.c -+ $(CC) $(CFLAGS) $(SHAREDFLAGS) $? -o $@ -+os_fsync.so: $(srcdir)/os/os_fsync.c -+ $(CC) $(CFLAGS) $(SHAREDFLAGS) $? -o $@ -+os_map.so: $(srcdir)/os/os_map.c -+ $(CC) $(CFLAGS) $(SHAREDFLAGS) $? -o $@ -+os_oflags.so: $(srcdir)/os/os_oflags.c -+ $(CC) $(CFLAGS) $(SHAREDFLAGS) $? -o $@ -+os_open.so: $(srcdir)/os/os_open.c -+ $(CC) $(CFLAGS) $(SHAREDFLAGS) $? -o $@ -+os_rpath.so: $(srcdir)/os/os_rpath.c -+ $(CC) $(CFLAGS) $(SHAREDFLAGS) $? -o $@ -+os_rw.so: $(srcdir)/os/os_rw.c -+ $(CC) $(CFLAGS) $(SHAREDFLAGS) $? -o $@ -+os_seek.so: $(srcdir)/os/os_seek.c -+ $(CC) $(CFLAGS) $(SHAREDFLAGS) $? -o $@ -+os_sleep.so: $(srcdir)/os/os_sleep.c -+ $(CC) $(CFLAGS) $(SHAREDFLAGS) $? -o $@ -+os_spin.so: $(srcdir)/os/os_spin.c -+ $(CC) $(CFLAGS) $(SHAREDFLAGS) $? -o $@ -+os_stat.so: $(srcdir)/os/os_stat.c -+ $(CC) $(CFLAGS) $(SHAREDFLAGS) $? -o $@ -+os_tmpdir.so: $(srcdir)/os/os_tmpdir.c -+ $(CC) $(CFLAGS) $(SHAREDFLAGS) $? -o $@ -+os_unlink.so: $(srcdir)/os/os_unlink.c -+ $(CC) $(CFLAGS) $(SHAREDFLAGS) $? -o $@ -+ -+# Test programs. -+tclAppInit.so: $(srcdir)/test/tclAppInit.c -+ $(CC) $(CFLAGS) $(SHAREDFLAGS) $? -o $@ -+tcl_dbm.so: $(srcdir)/test/tcl_dbm.c -+ $(CC) $(CFLAGS) $(SHAREDFLAGS) $? -o $@ -+tcl_hsearch.so: $(srcdir)/test/tcl_hsearch.c -+ $(CC) $(CFLAGS) $(SHAREDFLAGS) $? -o $@ -+tcl_lock.so: $(srcdir)/test/tcl_lock.c -+ $(CC) $(CFLAGS) $(SHAREDFLAGS) $? -o $@ -+tcl_log.so: $(srcdir)/test/tcl_log.c -+ $(CC) $(CFLAGS) $(SHAREDFLAGS) $? -o $@ -+tcl_mpool.so: $(srcdir)/test/tcl_mpool.c -+ $(CC) $(CFLAGS) $(SHAREDFLAGS) $? -o $@ -+tcl_mutex.so: $(srcdir)/test/tcl_mutex.c -+ $(CC) $(CFLAGS) $(SHAREDFLAGS) $? -o $@ -+tcl_ndbm.so: $(srcdir)/test/tcl_ndbm.c -+ $(CC) $(CFLAGS) $(SHAREDFLAGS) $? -o $@ -+tcl_txn.so: $(srcdir)/test/tcl_txn.c -+ $(CC) $(CFLAGS) $(SHAREDFLAGS) $? -o $@ -+utils.so: $(srcdir)/test/utils.c -+ $(CC) $(CFLAGS) $(SHAREDFLAGS) $? -o $@ -+ -+# Replacement source files. -+err.so: $(srcdir)/clib/err.c -+ $(CC) $(CFLAGS) $(SHAREDFLAGS) $? -o $@ -+getcwd.so: $(srcdir)/clib/getcwd.c -+ $(CC) $(CFLAGS) $(SHAREDFLAGS) $? -o $@ -+getlong.so: $(srcdir)/clib/getlong.c -+ $(CC) $(CFLAGS) $(SHAREDFLAGS) $? -o $@ -+getopt.so: $(srcdir)/clib/getopt.c -+ $(CC) $(CFLAGS) $(SHAREDFLAGS) $? -o $@ -+memcmp.so: $(srcdir)/clib/memcmp.c -+ $(CC) $(CFLAGS) $(SHAREDFLAGS) $? -o $@ -+memcpy.so: $(srcdir)/clib/memmove.c -+ $(CC) -DMEMCOPY $(CFLAGS) $(SHAREDFLAGS) $? -o $@ -+memmove.so: $(srcdir)/clib/memmove.c -+ $(CC) -DMEMMOVE $(CFLAGS) $(SHAREDFLAGS) $? -o $@ -+raise.so: $(srcdir)/clib/raise.c -+ $(CC) $(CFLAGS) $(SHAREDFLAGS) $? -o $@ -+snprintf.so: $(srcdir)/clib/snprintf.c -+ $(CC) $(CFLAGS) $(SHAREDFLAGS) $? -o $@ -+strerror.so: $(srcdir)/clib/strerror.c -+ $(CC) $(CFLAGS) $(SHAREDFLAGS) $? -o $@ -+strsep.so: $(srcdir)/clib/strsep.c -+ $(CC) $(CFLAGS) $(SHAREDFLAGS) $? -o $@ -+vsnprintf.so: $(srcdir)/clib/vsnprintf.c -+ $(CC) $(CFLAGS) $(SHAREDFLAGS) $? -o $@ diff --git a/databases/db41/pkg-comment b/databases/db41/pkg-comment deleted file mode 100644 index 39a54a240320..000000000000 --- a/databases/db41/pkg-comment +++ /dev/null @@ -1 +0,0 @@ -The Berkeley DB package, revision 2 diff --git a/databases/db41/pkg-descr b/databases/db41/pkg-descr deleted file mode 100644 index b9ed34ee6d81..000000000000 --- a/databases/db41/pkg-descr +++ /dev/null @@ -1,13 +0,0 @@ -Revesion 2 of the Berkeley DB library. This version uses an incompatible -underlying database format than revision 1 and a different standard API. -Utilities are included in the distribution to convert v1.85 databases to v2 -databases, and a backwards compatible API is provided to maintain -compatibility with programs using the v1.85 interface. - -There are minor interface changes in this release which may require that DB -applications be modified and recompiled. For a complete discussion of -interface changes, see: - -http://www.sleepycat.com/update/ - -WWW: http://www.sleepycat.com diff --git a/databases/db41/pkg-plist b/databases/db41/pkg-plist deleted file mode 100644 index 961bc047a6e4..000000000000 --- a/databases/db41/pkg-plist +++ /dev/null @@ -1,564 +0,0 @@ -include/db2/db.h -include/db2/db_cxx.h -include/db2/db_185.h -lib/libdb2.a -lib/libdb2.so -lib/libdb2.so.0 -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 -share/doc/db2/api_c/Db/close.html -share/doc/db2/api_c/Db/cursor.html -share/doc/db2/api_c/Db/del.html -share/doc/db2/api_c/Db/fd.html -share/doc/db2/api_c/Db/get.html -share/doc/db2/api_c/Db/join.html -share/doc/db2/api_c/Db/open.html -share/doc/db2/api_c/Db/put.html -share/doc/db2/api_c/Db/stat.html -share/doc/db2/api_c/Db/sync.html -share/doc/db2/api_c/DbEnv/appexit.html -share/doc/db2/api_c/DbEnv/appinit.html -share/doc/db2/api_c/DbEnv/env.html -share/doc/db2/api_c/DbEnv/version.html -share/doc/db2/api_c/DbInfo/info.html -share/doc/db2/api_c/DbLock/put.html -share/doc/db2/api_c/DbLockTab/close.html -share/doc/db2/api_c/DbLockTab/detect.html -share/doc/db2/api_c/DbLockTab/get.html -share/doc/db2/api_c/DbLockTab/id.html -share/doc/db2/api_c/DbLockTab/open.html -share/doc/db2/api_c/DbLockTab/stat.html -share/doc/db2/api_c/DbLockTab/unlink.html -share/doc/db2/api_c/DbLockTab/vec.html -share/doc/db2/api_c/DbLog/archive.html -share/doc/db2/api_c/DbLog/close.html -share/doc/db2/api_c/DbLog/compare.html -share/doc/db2/api_c/DbLog/db_register.html -share/doc/db2/api_c/DbLog/db_unregister.html -share/doc/db2/api_c/DbLog/file.html -share/doc/db2/api_c/DbLog/flush.html -share/doc/db2/api_c/DbLog/get.html -share/doc/db2/api_c/DbLog/lsn.html -share/doc/db2/api_c/DbLog/open.html -share/doc/db2/api_c/DbLog/put.html -share/doc/db2/api_c/DbLog/stat.html -share/doc/db2/api_c/DbLog/unlink.html -share/doc/db2/api_c/DbMpool/close.html -share/doc/db2/api_c/DbMpool/db_register.html -share/doc/db2/api_c/DbMpool/open.html -share/doc/db2/api_c/DbMpool/stat.html -share/doc/db2/api_c/DbMpool/sync.html -share/doc/db2/api_c/DbMpool/trickle.html -share/doc/db2/api_c/DbMpool/unlink.html -share/doc/db2/api_c/DbMpoolFile/close.html -share/doc/db2/api_c/DbMpoolFile/get.html -share/doc/db2/api_c/DbMpoolFile/open.html -share/doc/db2/api_c/DbMpoolFile/put.html -share/doc/db2/api_c/DbMpoolFile/set.html -share/doc/db2/api_c/DbMpoolFile/sync.html -share/doc/db2/api_c/DbTxn/abort.html -share/doc/db2/api_c/DbTxn/commit.html -share/doc/db2/api_c/DbTxn/id.html -share/doc/db2/api_c/DbTxn/prepare.html -share/doc/db2/api_c/DbTxnMgr/begin.html -share/doc/db2/api_c/DbTxnMgr/checkpoint.html -share/doc/db2/api_c/DbTxnMgr/close.html -share/doc/db2/api_c/DbTxnMgr/open.html -share/doc/db2/api_c/DbTxnMgr/stat.html -share/doc/db2/api_c/DbTxnMgr/unlink.html -share/doc/db2/api_c/Dbc/close.html -share/doc/db2/api_c/Dbc/del.html -share/doc/db2/api_c/Dbc/get.html -share/doc/db2/api_c/Dbc/put.html -share/doc/db2/api_c/Dbt/dbt.html -share/doc/db2/api_c/historic/dbm.html -share/doc/db2/api_c/historic/hsearch.html -share/doc/db2/api_c/index/flags.html -share/doc/db2/api_c/index/function.html -share/doc/db2/api_c/index/structure.html -share/doc/db2/api_c/internal/db_jump_set.html -share/doc/db2/api_c/internal/db_value_set.html -share/doc/db2/api_cxx/Db/class.html -share/doc/db2/api_cxx/Db/close.html -share/doc/db2/api_cxx/Db/cursor.html -share/doc/db2/api_cxx/Db/del.html -share/doc/db2/api_cxx/Db/fd.html -share/doc/db2/api_cxx/Db/get.html -share/doc/db2/api_cxx/Db/get_byteswapped.html -share/doc/db2/api_cxx/Db/get_type.html -share/doc/db2/api_cxx/Db/join.html -share/doc/db2/api_cxx/Db/open.html -share/doc/db2/api_cxx/Db/put.html -share/doc/db2/api_cxx/Db/stat.html -share/doc/db2/api_cxx/Db/sync.html -share/doc/db2/api_cxx/DbEnv/appexit.html -share/doc/db2/api_cxx/DbEnv/appinit.html -share/doc/db2/api_cxx/DbEnv/class.html -share/doc/db2/api_cxx/DbEnv/get_lg_info.html -share/doc/db2/api_cxx/DbEnv/get_lk_info.html -share/doc/db2/api_cxx/DbEnv/get_mp_info.html -share/doc/db2/api_cxx/DbEnv/get_tx_info.html -share/doc/db2/api_cxx/DbEnv/set_errcall.html -share/doc/db2/api_cxx/DbEnv/set_errfile.html -share/doc/db2/api_cxx/DbEnv/set_error_model.html -share/doc/db2/api_cxx/DbEnv/set_error_stream.html -share/doc/db2/api_cxx/DbEnv/set_errpfx.html -share/doc/db2/api_cxx/DbEnv/set_lg_max.html -share/doc/db2/api_cxx/DbEnv/set_lk_conflicts.html -share/doc/db2/api_cxx/DbEnv/set_lk_detect.html -share/doc/db2/api_cxx/DbEnv/set_lk_max.html -share/doc/db2/api_cxx/DbEnv/set_lk_modes.html -share/doc/db2/api_cxx/DbEnv/set_lorder.html -share/doc/db2/api_cxx/DbEnv/set_mp_mmapsize.html -share/doc/db2/api_cxx/DbEnv/set_mp_size.html -share/doc/db2/api_cxx/DbEnv/set_tx_max.html -share/doc/db2/api_cxx/DbEnv/set_tx_recover.html -share/doc/db2/api_cxx/DbEnv/set_verbose.html -share/doc/db2/api_cxx/DbEnv/version.html -share/doc/db2/api_cxx/DbException/class.html -share/doc/db2/api_cxx/DbException/get_errno.html -share/doc/db2/api_cxx/DbException/what.html -share/doc/db2/api_cxx/DbInfo/class.html -share/doc/db2/api_cxx/DbInfo/set_bt_compare.html -share/doc/db2/api_cxx/DbInfo/set_bt_maxkey.html -share/doc/db2/api_cxx/DbInfo/set_bt_minkey.html -share/doc/db2/api_cxx/DbInfo/set_bt_prefix.html -share/doc/db2/api_cxx/DbInfo/set_cachesize.html -share/doc/db2/api_cxx/DbInfo/set_compare.html -share/doc/db2/api_cxx/DbInfo/set_flags.html -share/doc/db2/api_cxx/DbInfo/set_h_ffactor.html -share/doc/db2/api_cxx/DbInfo/set_h_hash.html -share/doc/db2/api_cxx/DbInfo/set_h_nelem.html -share/doc/db2/api_cxx/DbInfo/set_lorder.html -share/doc/db2/api_cxx/DbInfo/set_malloc.html -share/doc/db2/api_cxx/DbInfo/set_pagesize.html -share/doc/db2/api_cxx/DbInfo/set_re_delim.html -share/doc/db2/api_cxx/DbInfo/set_re_len.html -share/doc/db2/api_cxx/DbInfo/set_re_pad.html -share/doc/db2/api_cxx/DbInfo/set_re_source.html -share/doc/db2/api_cxx/DbLock/class.html -share/doc/db2/api_cxx/DbLock/put.html -share/doc/db2/api_cxx/DbLockTab/class.html -share/doc/db2/api_cxx/DbLockTab/close.html -share/doc/db2/api_cxx/DbLockTab/detect.html -share/doc/db2/api_cxx/DbLockTab/get.html -share/doc/db2/api_cxx/DbLockTab/id.html -share/doc/db2/api_cxx/DbLockTab/open.html -share/doc/db2/api_cxx/DbLockTab/stat.html -share/doc/db2/api_cxx/DbLockTab/unlink.html -share/doc/db2/api_cxx/DbLockTab/vec.html -share/doc/db2/api_cxx/DbLog/archive.html -share/doc/db2/api_cxx/DbLog/class.html -share/doc/db2/api_cxx/DbLog/close.html -share/doc/db2/api_cxx/DbLog/compare.html -share/doc/db2/api_cxx/DbLog/db_register.html -share/doc/db2/api_cxx/DbLog/db_unregister.html -share/doc/db2/api_cxx/DbLog/file.html -share/doc/db2/api_cxx/DbLog/flush.html -share/doc/db2/api_cxx/DbLog/get.html -share/doc/db2/api_cxx/DbLog/open.html -share/doc/db2/api_cxx/DbLog/put.html -share/doc/db2/api_cxx/DbLog/stat.html -share/doc/db2/api_cxx/DbLog/unlink.html -share/doc/db2/api_cxx/DbLsn/class.html -share/doc/db2/api_cxx/DbMpool/class.html -share/doc/db2/api_cxx/DbMpool/close.html -share/doc/db2/api_cxx/DbMpool/db_register.html -share/doc/db2/api_cxx/DbMpool/open.html -share/doc/db2/api_cxx/DbMpool/stat.html -share/doc/db2/api_cxx/DbMpool/sync.html -share/doc/db2/api_cxx/DbMpool/trickle.html -share/doc/db2/api_cxx/DbMpool/unlink.html -share/doc/db2/api_cxx/DbMpoolFile/class.html -share/doc/db2/api_cxx/DbMpoolFile/close.html -share/doc/db2/api_cxx/DbMpoolFile/get.html -share/doc/db2/api_cxx/DbMpoolFile/open.html -share/doc/db2/api_cxx/DbMpoolFile/put.html -share/doc/db2/api_cxx/DbMpoolFile/set.html -share/doc/db2/api_cxx/DbMpoolFile/sync.html -share/doc/db2/api_cxx/DbTxn/abort.html -share/doc/db2/api_cxx/DbTxn/class.html -share/doc/db2/api_cxx/DbTxn/commit.html -share/doc/db2/api_cxx/DbTxn/id.html -share/doc/db2/api_cxx/DbTxn/prepare.html -share/doc/db2/api_cxx/DbTxnMgr/begin.html -share/doc/db2/api_cxx/DbTxnMgr/checkpoint.html -share/doc/db2/api_cxx/DbTxnMgr/class.html -share/doc/db2/api_cxx/DbTxnMgr/close.html -share/doc/db2/api_cxx/DbTxnMgr/open.html -share/doc/db2/api_cxx/DbTxnMgr/stat.html -share/doc/db2/api_cxx/DbTxnMgr/unlink.html -share/doc/db2/api_cxx/Dbc/class.html -share/doc/db2/api_cxx/Dbc/close.html -share/doc/db2/api_cxx/Dbc/del.html -share/doc/db2/api_cxx/Dbc/get.html -share/doc/db2/api_cxx/Dbc/put.html -share/doc/db2/api_cxx/Dbt/class.html -share/doc/db2/api_cxx/index/class.html -share/doc/db2/api_java/Db/class.html -share/doc/db2/api_java/Db/close.html -share/doc/db2/api_java/Db/cursor.html -share/doc/db2/api_java/Db/del.html -share/doc/db2/api_java/Db/fd.html -share/doc/db2/api_java/Db/get.html -share/doc/db2/api_java/Db/get_byteswapped.html -share/doc/db2/api_java/Db/get_type.html -share/doc/db2/api_java/Db/join.html -share/doc/db2/api_java/Db/open.html -share/doc/db2/api_java/Db/put.html -share/doc/db2/api_java/Db/stat.html -share/doc/db2/api_java/Db/sync.html -share/doc/db2/api_java/DbEnv/appexit.html -share/doc/db2/api_java/DbEnv/appinit.html -share/doc/db2/api_java/DbEnv/class.html -share/doc/db2/api_java/DbEnv/get_lg_info.html -share/doc/db2/api_java/DbEnv/get_lk_info.html -share/doc/db2/api_java/DbEnv/get_mp_info.html -share/doc/db2/api_java/DbEnv/get_tx_info.html -share/doc/db2/api_java/DbEnv/set_errcall.html -share/doc/db2/api_java/DbEnv/set_error_stream.html -share/doc/db2/api_java/DbEnv/set_errpfx.html -share/doc/db2/api_java/DbEnv/set_lg_max.html -share/doc/db2/api_java/DbEnv/set_lk_conflicts.html -share/doc/db2/api_java/DbEnv/set_lk_detect.html -share/doc/db2/api_java/DbEnv/set_lk_max.html -share/doc/db2/api_java/DbEnv/set_lk_modes.html -share/doc/db2/api_java/DbEnv/set_lorder.html -share/doc/db2/api_java/DbEnv/set_mp_mmapsize.html -share/doc/db2/api_java/DbEnv/set_mp_size.html -share/doc/db2/api_java/DbEnv/set_tx_max.html -share/doc/db2/api_java/DbEnv/set_verbose.html -share/doc/db2/api_java/DbEnv/version.html -share/doc/db2/api_java/DbException/class.html -share/doc/db2/api_java/DbException/get_errno.html -share/doc/db2/api_java/DbInfo/class.html -share/doc/db2/api_java/DbInfo/set_bt_compare.html -share/doc/db2/api_java/DbInfo/set_bt_maxkey.html -share/doc/db2/api_java/DbInfo/set_bt_minkey.html -share/doc/db2/api_java/DbInfo/set_bt_prefix.html -share/doc/db2/api_java/DbInfo/set_cachesize.html -share/doc/db2/api_java/DbInfo/set_compare.html -share/doc/db2/api_java/DbInfo/set_flags.html -share/doc/db2/api_java/DbInfo/set_h_ffactor.html -share/doc/db2/api_java/DbInfo/set_h_hash.html -share/doc/db2/api_java/DbInfo/set_h_nelem.html -share/doc/db2/api_java/DbInfo/set_lorder.html -share/doc/db2/api_java/DbInfo/set_malloc.html -share/doc/db2/api_java/DbInfo/set_pagesize.html -share/doc/db2/api_java/DbInfo/set_re_delim.html -share/doc/db2/api_java/DbInfo/set_re_len.html -share/doc/db2/api_java/DbInfo/set_re_pad.html -share/doc/db2/api_java/DbInfo/set_re_source.html -share/doc/db2/api_java/DbLock/class.html -share/doc/db2/api_java/DbLock/put.html -share/doc/db2/api_java/DbLockTab/class.html -share/doc/db2/api_java/DbLockTab/close.html -share/doc/db2/api_java/DbLockTab/detect.html -share/doc/db2/api_java/DbLockTab/get.html -share/doc/db2/api_java/DbLockTab/id.html -share/doc/db2/api_java/DbLockTab/open.html -share/doc/db2/api_java/DbLockTab/stat.html -share/doc/db2/api_java/DbLockTab/unlink.html -share/doc/db2/api_java/DbLockTab/vec.html -share/doc/db2/api_java/DbLog/archive.html -share/doc/db2/api_java/DbLog/class.html -share/doc/db2/api_java/DbLog/close.html -share/doc/db2/api_java/DbLog/compare.html -share/doc/db2/api_java/DbLog/db_register.html -share/doc/db2/api_java/DbLog/db_unregister.html -share/doc/db2/api_java/DbLog/file.html -share/doc/db2/api_java/DbLog/flush.html -share/doc/db2/api_java/DbLog/get.html -share/doc/db2/api_java/DbLog/open.html -share/doc/db2/api_java/DbLog/put.html -share/doc/db2/api_java/DbLog/stat.html -share/doc/db2/api_java/DbLog/unlink.html -share/doc/db2/api_java/DbLsn/class.html -share/doc/db2/api_java/DbMpool/class.html -share/doc/db2/api_java/DbMpool/close.html -share/doc/db2/api_java/DbMpool/db_register.html -share/doc/db2/api_java/DbMpool/open.html -share/doc/db2/api_java/DbMpool/stat.html -share/doc/db2/api_java/DbMpool/sync.html -share/doc/db2/api_java/DbMpool/trickle.html -share/doc/db2/api_java/DbMpool/unlink.html -share/doc/db2/api_java/DbMpoolFile/class.html -share/doc/db2/api_java/DbMpoolFile/close.html -share/doc/db2/api_java/DbMpoolFile/get.html -share/doc/db2/api_java/DbMpoolFile/open.html -share/doc/db2/api_java/DbMpoolFile/put.html -share/doc/db2/api_java/DbMpoolFile/set.html -share/doc/db2/api_java/DbMpoolFile/sync.html -share/doc/db2/api_java/DbRunRecoveryException/class.html -share/doc/db2/api_java/DbTxn/abort.html -share/doc/db2/api_java/DbTxn/class.html -share/doc/db2/api_java/DbTxn/commit.html -share/doc/db2/api_java/DbTxn/id.html -share/doc/db2/api_java/DbTxn/prepare.html -share/doc/db2/api_java/DbTxnMgr/begin.html -share/doc/db2/api_java/DbTxnMgr/checkpoint.html -share/doc/db2/api_java/DbTxnMgr/class.html -share/doc/db2/api_java/DbTxnMgr/close.html -share/doc/db2/api_java/DbTxnMgr/open.html -share/doc/db2/api_java/DbTxnMgr/stat.html -share/doc/db2/api_java/DbTxnMgr/unlink.html -share/doc/db2/api_java/Dbc/class.html -share/doc/db2/api_java/Dbc/close.html -share/doc/db2/api_java/Dbc/del.html -share/doc/db2/api_java/Dbc/get.html -share/doc/db2/api_java/Dbc/put.html -share/doc/db2/api_java/Dbt/class.html -share/doc/db2/api_java/index/class.html -share/doc/db2/build/java.html -share/doc/db2/build/shared.html -share/doc/db2/build/shared_gcc.html -share/doc/db2/build/shared_hp.html -share/doc/db2/build/unix.html -share/doc/db2/build/unix_faq.html -share/doc/db2/build/win16.html -share/doc/db2/build/win32.html -share/doc/db2/build/win_faq.html -share/doc/db2/distrib/layout.html -share/doc/db2/images/folder.gif -share/doc/db2/images/folder_open.gif -share/doc/db2/images/next.gif -share/doc/db2/images/prev.gif -share/doc/db2/images/ps.gif -share/doc/db2/images/sleepycat.gif -share/doc/db2/images/toc.gif -share/doc/db2/index.html -share/doc/db2/packages/hash_usenix.ps -share/doc/db2/packages/index.html -share/doc/db2/packages/libtp_usenix.ps -share/doc/db2/packages/witold.html -share/doc/db2/ref/am/bt_compare.html -share/doc/db2/ref/am/bt_dup.html -share/doc/db2/ref/am/bt_maxkey.html -share/doc/db2/ref/am/bt_minkey.html -share/doc/db2/ref/am/bt_prefix.html -share/doc/db2/ref/am/bt_recnum.html -share/doc/db2/ref/am/byteorder.html -share/doc/db2/ref/am/cachesize.html -share/doc/db2/ref/am/close.html -share/doc/db2/ref/am/compare.html -share/doc/db2/ref/am/curclose.html -share/doc/db2/ref/am/curdel.html -share/doc/db2/ref/am/curget.html -share/doc/db2/ref/am/curput.html -share/doc/db2/ref/am/cursor.html -share/doc/db2/ref/am/delete.html -share/doc/db2/ref/am/get.html -share/doc/db2/ref/am/h_dup.html -share/doc/db2/ref/am/h_ffactor.html -share/doc/db2/ref/am/h_hash.html -share/doc/db2/ref/am/h_nelem.html -share/doc/db2/ref/am/intro.html -share/doc/db2/ref/am/join.html -share/doc/db2/ref/am/logrec.html -share/doc/db2/ref/am/malloc.html -share/doc/db2/ref/am/ops.html -share/doc/db2/ref/am/pagesize.html -share/doc/db2/ref/am/partial.html -share/doc/db2/ref/am/put.html -share/doc/db2/ref/am/re_delim.html -share/doc/db2/ref/am/re_len.html -share/doc/db2/ref/am/re_pad.html -share/doc/db2/ref/am/re_source.html -share/doc/db2/ref/am/renumber.html -share/doc/db2/ref/am/select.html -share/doc/db2/ref/am/stat.html -share/doc/db2/ref/am/sync.html -share/doc/db2/ref/arch/apis.html -share/doc/db2/ref/arch/bigpic.gif -share/doc/db2/ref/arch/bigpic.html -share/doc/db2/ref/arch/env.html -share/doc/db2/ref/arch/extending.html -share/doc/db2/ref/arch/progmodel.html -share/doc/db2/ref/arch/script.html -share/doc/db2/ref/arch/smallpic.gif -share/doc/db2/ref/arch/subsystem.html -share/doc/db2/ref/arch/utilities.html -share/doc/db2/ref/cam/intro.html -share/doc/db2/ref/debug/runtime.html -share/doc/db2/ref/dumpload/format.html -share/doc/db2/ref/dumpload/text.html -share/doc/db2/ref/dumpload/utility.html -share/doc/db2/ref/env/create.html -share/doc/db2/ref/env/naming.html -share/doc/db2/ref/env/open.html -share/doc/db2/ref/env/region.html -share/doc/db2/ref/env/security.html -share/doc/db2/ref/install/file.html -share/doc/db2/ref/install/magic.s5.be.txt -share/doc/db2/ref/install/magic.s5.le.txt -share/doc/db2/ref/install/magic.txt -share/doc/db2/ref/intro/distrib.html -share/doc/db2/ref/intro/do.html -share/doc/db2/ref/intro/what.html -share/doc/db2/ref/intro/where.html -share/doc/db2/ref/lock/stdmode.html -share/doc/db2/ref/log/config.html -share/doc/db2/ref/log/intro.html -share/doc/db2/ref/log/limits.html -share/doc/db2/ref/mp/config.html -share/doc/db2/ref/mp/intro.html -share/doc/db2/ref/perl/intro.html -share/doc/db2/ref/program/appsignals.html -share/doc/db2/ref/program/byteorder.html -share/doc/db2/ref/program/compatible.html -share/doc/db2/ref/program/convert.html -share/doc/db2/ref/program/dbsizes.html -share/doc/db2/ref/program/environ.html -share/doc/db2/ref/program/errorret.html -share/doc/db2/ref/program/java.html -share/doc/db2/ref/program/runtime.html -share/doc/db2/ref/program/solaris.txt -share/doc/db2/ref/program/thread.html -share/doc/db2/ref/program/version.html -share/doc/db2/ref/sendmail/intro.html -share/doc/db2/ref/simple_tut/close.html -share/doc/db2/ref/simple_tut/del.html -share/doc/db2/ref/simple_tut/errors.html -share/doc/db2/ref/simple_tut/example.txt -share/doc/db2/ref/simple_tut/get.html -share/doc/db2/ref/simple_tut/intro.html -share/doc/db2/ref/simple_tut/keydata.html -share/doc/db2/ref/simple_tut/open.html -share/doc/db2/ref/simple_tut/put.html -share/doc/db2/ref/toc.html -share/doc/db2/ref/transapp/admin.html -share/doc/db2/ref/transapp/apps.html -share/doc/db2/ref/transapp/archival.html -share/doc/db2/ref/transapp/checkpoint.html -share/doc/db2/ref/transapp/deadlock.html -share/doc/db2/ref/transapp/filesys.html -share/doc/db2/ref/transapp/intro.html -share/doc/db2/ref/transapp/recovery.html -share/doc/db2/ref/transapp/throughput.html -share/doc/db2/ref/transapp/writetest.txt -share/doc/db2/ref/txn/config.html -share/doc/db2/ref/txn/limits.html -share/doc/db2/ref/txn/other.html -share/doc/db2/ref/txn/stability.html -share/doc/db2/sleepycat/contact.html -share/doc/db2/sleepycat/products.html -share/doc/db2/test/build.html -share/doc/db2/test/build_faq.html -share/doc/db2/test/debug.html -share/doc/db2/test/run.html -share/doc/db2/utility/db_archive.html -share/doc/db2/utility/db_checkpoint.html -share/doc/db2/utility/db_deadlock.html -share/doc/db2/utility/db_dump.html -share/doc/db2/utility/db_load.html -share/doc/db2/utility/db_recover.html -share/doc/db2/utility/db_stat.html -share/doc/db2/utility/index.html -share/examples/db2/examples/README -share/examples/db2/examples/ex_access.c -share/examples/db2/examples/ex_appinit.c -share/examples/db2/examples/ex_btrec.c -share/examples/db2/examples/ex_lock.c -share/examples/db2/examples/ex_mpool.c -share/examples/db2/examples/ex_thread.c -share/examples/db2/examples/ex_tpcb.c -share/examples/db2/examples/ex_tpcb.h -share/examples/db2/examples_cxx/AccessExample.cpp -share/examples/db2/examples_cxx/AppinitExample.cpp -share/examples/db2/examples_cxx/LockExample.cpp -share/examples/db2/examples_cxx/MpoolExample.cpp -share/examples/db2/examples_cxx/TpcbExample.cpp -share/examples/db2/examples_java/AccessExample.java -share/examples/db2/examples_java/AppinitExample.java -share/examples/db2/examples_java/LockExample.java -share/examples/db2/examples_java/TpcbExample.java -@dirrm include/db2 -@dirrm share/examples/db2/examples -@dirrm share/examples/db2/examples_cxx -@dirrm share/examples/db2/examples_java -@dirrm share/examples/db2 -@dirrm share/doc/db2/api_c/DbTxn -@dirrm share/doc/db2/api_c/DbEnv -@dirrm share/doc/db2/api_c/DbInfo -@dirrm share/doc/db2/api_c/DbLock -@dirrm share/doc/db2/api_c/DbLockTab -@dirrm share/doc/db2/api_c/DbLog -@dirrm share/doc/db2/api_c/DbMpool -@dirrm share/doc/db2/api_c/DbMpoolFile -@dirrm share/doc/db2/api_c/Db -@dirrm share/doc/db2/api_c/DbTxnMgr -@dirrm share/doc/db2/api_c/Dbc -@dirrm share/doc/db2/api_c/Dbt -@dirrm share/doc/db2/api_c/historic -@dirrm share/doc/db2/api_c/index -@dirrm share/doc/db2/api_c/internal -@dirrm share/doc/db2/api_c/special -@dirrm share/doc/db2/api_c -@dirrm share/doc/db2/test -@dirrm share/doc/db2/sleepycat -@dirrm share/doc/db2/ref/txn -@dirrm share/doc/db2/ref/am -@dirrm share/doc/db2/ref/arch -@dirrm share/doc/db2/ref/cam -@dirrm share/doc/db2/ref/debug -@dirrm share/doc/db2/ref/dumpload -@dirrm share/doc/db2/ref/env -@dirrm share/doc/db2/ref/intro -@dirrm share/doc/db2/ref/install -@dirrm share/doc/db2/ref/lock -@dirrm share/doc/db2/ref/log -@dirrm share/doc/db2/ref/mp -@dirrm share/doc/db2/ref/perl -@dirrm share/doc/db2/ref/program -@dirrm share/doc/db2/ref/sendmail -@dirrm share/doc/db2/ref/simple_tut -@dirrm share/doc/db2/ref/transapp -@dirrm share/doc/db2/ref -@dirrm share/doc/db2/packages -@dirrm share/doc/db2/api_cxx/DbLsn -@dirrm share/doc/db2/api_cxx/Dbc -@dirrm share/doc/db2/api_cxx/DbEnv -@dirrm share/doc/db2/api_cxx/DbException -@dirrm share/doc/db2/api_cxx/DbInfo -@dirrm share/doc/db2/api_cxx/DbLock -@dirrm share/doc/db2/api_cxx/DbLockTab -@dirrm share/doc/db2/api_cxx/DbLog -@dirrm share/doc/db2/api_cxx/Db -@dirrm share/doc/db2/api_cxx/DbMpool -@dirrm share/doc/db2/api_cxx/DbMpoolFile -@dirrm share/doc/db2/api_cxx/DbTxn -@dirrm share/doc/db2/api_cxx/DbTxnMgr -@dirrm share/doc/db2/api_cxx/Dbt -@dirrm share/doc/db2/api_cxx/index -@dirrm share/doc/db2/api_cxx/special -@dirrm share/doc/db2/api_cxx -@dirrm share/doc/db2/utility -@dirrm share/doc/db2/distrib -@dirrm share/doc/db2/build -@dirrm share/doc/db2/api_java/DbMpool -@dirrm share/doc/db2/api_java/DbEnv -@dirrm share/doc/db2/api_java/DbException -@dirrm share/doc/db2/api_java/DbInfo -@dirrm share/doc/db2/api_java/DbLock -@dirrm share/doc/db2/api_java/DbLockTab -@dirrm share/doc/db2/api_java/DbLog -@dirrm share/doc/db2/api_java/DbLsn -@dirrm share/doc/db2/api_java/Db -@dirrm share/doc/db2/api_java/DbMpoolFile -@dirrm share/doc/db2/api_java/DbRunRecoveryException -@dirrm share/doc/db2/api_java/DbTxn -@dirrm share/doc/db2/api_java/DbTxnMgr -@dirrm share/doc/db2/api_java/Dbc -@dirrm share/doc/db2/api_java/Dbt -@dirrm share/doc/db2/api_java/index -@dirrm share/doc/db2/api_java/special -@dirrm share/doc/db2/api_java -@dirrm share/doc/db2/images -@dirrm share/doc/db2 diff --git a/databases/db42/Makefile b/databases/db42/Makefile deleted file mode 100644 index 9b1fe8a00a1e..000000000000 --- a/databases/db42/Makefile +++ /dev/null @@ -1,41 +0,0 @@ -# ports collection makefile for: Berkeley DB -# Date created: 26 Jan 1998 -# Whom: Josh Tiefenbach <josh@ican.net> -# -# $FreeBSD$ -# - -PORTNAME= db -PORTVERSION= 2.7.7 -CATEGORIES= databases -MASTER_SITES= http://www.sleepycat.com/update/${PORTVERSION}/ - -MAINTAINER= josh@ican.net - -Y2K= http://www.sleepycat.com/faq.html#A8 - -MANUAL_PACKAGE_BUILD= incompatible with libc internal db calls -WRKSRC= ${WRKDIR}/${DISTNAME}/build_unix - -INSTALLS_SHLIB= yes -GNU_CONFIGURE= yes -CONFIGURE_SCRIPT= ../dist/configure -CONFIGURE_ARGS= --enable-compat185 \ - --enable-dump185 --enable-cxx - -post-install: - ${MKDIR} ${PREFIX}/share/examples/db2 - cd ${WRKSRC}/..; \ - tar -cf - --exclude tags examples/ examples_cxx/ examples_java/ | \ - ( cd ${PREFIX}/share/examples/db2; tar xf - ) - @${ECHO_MSG} "" - @${ECHO_MSG} "Java support for ${PKGNAME} is *not* built by default, and requires that you" - @${ECHO_MSG} "have a working copy of the JDK (v1.1) installed." - @${ECHO_MSG} "" - @${ECHO_MSG} "To build java support, please read:" - @${ECHO_MSG} "" - @${ECHO_MSG} "${WRKDIR}/${DISTNAME}/java/README" - @${ECHO_MSG} "" - @${ECHO_MSG} "and follow the directions therein." - -.include <bsd.port.mk> diff --git a/databases/db42/distinfo b/databases/db42/distinfo deleted file mode 100644 index d761baf3bdff..000000000000 --- a/databases/db42/distinfo +++ /dev/null @@ -1 +0,0 @@ -MD5 (db-2.7.7.tar.gz) = 20256735091ee382c6601117d82d749a diff --git a/databases/db42/files/patch-aa b/databases/db42/files/patch-aa deleted file mode 100644 index db3d430758a2..000000000000 --- a/databases/db42/files/patch-aa +++ /dev/null @@ -1,506 +0,0 @@ ---- ../dist/Makefile.in.orig Mon Dec 7 21:05:59 1998 -+++ ../dist/Makefile.in Tue Jun 6 17:44:50 2000 -@@ -1,13 +1,16 @@ - # @(#)Makefile.in 10.62 (Sleepycat) 12/7/98 - -+SOVER?= 0 -+ - srcdir= @srcdir@/.. - CPPFLAGS=-I. -I$(srcdir)/include @CPPFLAGS@ -+SHAREDFLAGS= -fpic -DPIC - CFLAGS= -c @CFLAGS@ $(CPPFLAGS) - CC= @CC@ - CXXFLAGS=-c @CXXFLAGS@ $(CPPFLAGS) - CXX= @CXX@ --LDFLAGS=@LDFLAGS@ --LIBS= @LIBS@ -+LDFLAGS=@LDFLAGS@ -L. -+LIBS= @LIBS@ -ldb2 - - SHELL= @db_cv_path_sh@ - ar= @db_cv_path_ar@ cr -@@ -43,85 +46,91 @@ - LOBJS= @LIBOBJS@ - POBJS= err.o getlong.o - --libdb= libdb.a --all: $(libdb) $(PROGS) -+libdb= libdb2.a -+libdbso= libdb2.so.$(SOVER) -+all: $(libdb) $(libdbso) $(PROGS) - - $(libdb): db.h $(OBJS) $(LOBJS) - $(rm) -f $@ - $(ar) $@ $(OBJS) $(LOBJS) - test ! -f $(ranlib) || $(ranlib) $@ - -+$(libdbso): db.h $(OBJS:S/.o$/.so/g) $(LOBJS:S/.o$/.so/g) -+ $(rm) -f $@ -+ $(CXX) -shared -Wl,-x -Wl,-assert -Wl,pure-text -Wl,-soname,$@ -o $@ $(OBJS:S/.o$/.so/g) $(LOBJS:S/.o$/.so/g) -+ ln -sf $@ libdb2.so -+ - DBA= db_archive.o $(POBJS) --db_archive: $(DBA) $(libdb) -- $(CC) -o $@ $(LDFLAGS) $(DBA) $(libdb) $(LIBS) -+db_archive: $(DBA) $(libdbso) -+ $(CC) -o $@ $(LDFLAGS) $(DBA) $(LIBS) - - DBB= db_checkpoint.o $(POBJS) --db_checkpoint: $(DBB) $(libdb) -- $(CC) -o $@ $(LDFLAGS) $(DBB) $(libdb) $(LIBS) -+db_checkpoint: $(DBB) $(libdbso) -+ $(CC) -o $@ $(LDFLAGS) $(DBB) $(LIBS) - - DBC= db_deadlock.o $(POBJS) --db_deadlock: $(DBC) $(libdb) -- $(CC) -o $@ $(LDFLAGS) $(DBC) $(libdb) $(LIBS) -+db_deadlock: $(DBC) $(libdbso) -+ $(CC) -o $@ $(LDFLAGS) $(DBC) $(LIBS) - - DBD= db_dump.o $(POBJS) --db_dump: $(DBD) $(libdb) -- $(CC) -o $@ $(LDFLAGS) $(DBD) $(libdb) $(LIBS) -+db_dump: $(DBD) $(libdbso) -+ $(CC) -o $@ $(LDFLAGS) $(DBD) $(LIBS) - - DBE= db_dump185.o $(POBJS) - db_dump185: $(DBE) - $(CC) -o $@ $(LDFLAGS) $(DBE) $(LIBS) - - DBF= db_load.o $(POBJS) --db_load: $(DBF) $(libdb) -- $(CC) -o $@ $(LDFLAGS) $(DBF) $(libdb) $(LIBS) -+db_load: $(DBF) $(libdbso) -+ $(CC) -o $@ $(LDFLAGS) $(DBF) $(LIBS) - - DBG= db_printlog.o $(POBJS) --db_printlog: $(DBG) $(libdb) -- $(CC) -o $@ $(LDFLAGS) $(DBG) $(libdb) $(LIBS) -+db_printlog: $(DBG) $(libdbso) -+ $(CC) -o $@ $(LDFLAGS) $(DBG) $(LIBS) - - DBH= db_recover.o $(POBJS) --db_recover: $(DBH) $(libdb) -- $(CC) -o $@ $(LDFLAGS) $(DBH) $(libdb) $(LIBS) -+db_recover: $(DBH) $(libdbso) -+ $(CC) -o $@ $(LDFLAGS) $(DBH) $(LIBS) - - DBI= db_stat.o $(POBJS) --db_stat: $(DBI) $(libdb) -- $(CC) -o $@ $(LDFLAGS) $(DBI) $(libdb) $(LIBS) -+db_stat: $(DBI) $(libdbso) -+ $(CC) -o $@ $(LDFLAGS) $(DBI) $(LIBS) - - EPROGS= ex_access ex_appinit ex_btrec ex_lock ex_mpool ex_thread ex_tpcb - DBJ= ex_access.o --ex_access: $(DBJ) $(libdb) -- $(CC) -o $@ $(LDFLAGS) $(DBJ) $(libdb) $(LIBS) -+ex_access: $(DBJ) $(libdbso) -+ $(CC) -o $@ $(LDFLAGS) $(DBJ) $(LIBS) - - DBK= ex_appinit.o --ex_appinit: $(DBK) $(libdb) -- $(CC) -o $@ $(LDFLAGS) $(DBK) $(libdb) $(LIBS) -+ex_appinit: $(DBK) $(libdbso) -+ $(CC) -o $@ $(LDFLAGS) $(DBK) $(LIBS) - - DBL= ex_btrec.o --ex_btrec: $(DBL) $(libdb) -- $(CC) -o $@ $(LDFLAGS) $(DBL) $(libdb) $(LIBS) -+ex_btrec: $(DBL) $(libdbso) -+ $(CC) -o $@ $(LDFLAGS) $(DBL) $(LIBS) - - DBM= ex_lock.o $(POBJS) --ex_lock: $(DBM) $(libdb) -- $(CC) -o $@ $(LDFLAGS) $(DBM) $(libdb) $(LIBS) -+ex_lock: $(DBM) $(libdbso) -+ $(CC) -o $@ $(LDFLAGS) $(DBM) $(LIBS) - - DBN= ex_mpool.o --ex_mpool: $(DBN) $(libdb) -- $(CC) -o $@ $(LDFLAGS) $(DBN) $(libdb) $(LIBS) -+ex_mpool: $(DBN) $(libdbso) -+ $(CC) -o $@ $(LDFLAGS) $(DBN) $(LIBS) - - DBO= ex_thread.o --ex_thread: $(DBO) $(libdb) -- $(CC) -o $@ $(LDFLAGS) $(DBO) $(libdb) $(LIBS) -+ex_thread: $(DBO) $(libdbso) -+ $(CC) -o $@ $(LDFLAGS) $(DBO) $(LIBS) - - DBP= ex_tpcb.o $(POBJS) --ex_tpcb: $(DBP) $(libdb) -- $(CC) -o $@ $(LDFLAGS) $(DBP) $(libdb) $(LIBS) -+ex_tpcb: $(DBP) $(libdbso) -+ $(CC) -o $@ $(LDFLAGS) $(DBP) $(LIBS) - - DBT= tclAppInit.o tcl_dbm.o tcl_hsearch.o tcl_lock.o tcl_log.o tcl_mpool.o \ - tcl_mutex.o tcl_ndbm.o tcl_txn.o utils.o $(POBJS) - - dbtest: .dbtestrc --dbtest: $(DBT) $(libdb) -- $(CC) -o $@ $(LDFLAGS) $(DBT) $(libdb) $(LIBS) -+dbtest: $(DBT) $(libdbso) -+ $(CC) -o $@ $(LDFLAGS) $(DBT) $(LIBS) - - AOBJS= err.o getcwd.o getlong.o getopt.o memcmp.o memcpy.o memmove.o \ - raise.o snprintf.o strerror.o strsep.o vsnprintf.o -@@ -131,8 +140,8 @@ - $(rm) -f $(DBA) $(DBB) $(DBC) $(DBD) $(DBE) $(DBF) $(DBG) $(DBH) - $(rm) -f $(DBI) $(DBJ) $(DBK) $(DBL) $(DBM) $(DBN) $(DBO) $(DBP) - $(rm) -f $(DBT) -- $(rm) -f $(PROGS) $(EPROGS) $(POBJS) $(LOBJS) @build_test@ -- $(rm) -f core *.core .dbtestrc $(libdb) -+ $(rm) -f $(PROGS) $(EPROGS) $(POBJS) $(LOBJS) *.so @build_test@ -+ $(rm) -f core *.core .dbtestrc $(libdb) $(libdbso) - - depend obj: - -@@ -141,11 +150,11 @@ - $(rm) -f confdefs.h db.h db_int.h db_185.h include.tcl - - prefix= @prefix@ --bindir= $(prefix)/BerkeleyDB/bin --datadir=$(prefix)/BerkeleyDB/share --includedir=$(prefix)/BerkeleyDB/include --libdir= $(prefix)/BerkeleyDB/lib --mandir= $(prefix)/BerkeleyDB/docs -+bindir= $(prefix)/bin -+datadir=$(prefix)/share/db2 -+includedir=$(prefix)/include/db2 -+libdir= $(prefix)/lib -+mandir= $(prefix)/share/doc/db2 - - dmode= 755 - emode= 555 -@@ -170,6 +179,9 @@ - @cd $(libdir) && $(rm) -f $(libdb) - @$(cp) -p $(libdb) $(libdir) - @cd $(libdir) && $(chmod) $(fmode) $(libdb) -+ @$(cp) -p $(libdbso) $(libdir) -+ @cd $(libdir) && $(chmod) $(fmode) $(libdbso) -+ ln -sf $(libdbso) $(libdir)/libdb2.so - @echo "Installing DB utilities: $(bindir) ..." - @test -d $(bindir) || \ - ($(mkdir) -p $(bindir) && $(chmod) $(dmode) $(bindir)) -@@ -506,3 +518,320 @@ - $(CC) $(CFLAGS) $? - vsnprintf.o: $(srcdir)/clib/vsnprintf.c - $(CC) $(CFLAGS) $? -+ -+# Shared build -+# Programs. -+db_archive.so: $(srcdir)/db_archive/db_archive.c -+ $(CC) $(CFLAGS) $(SHAREDFLAGS) $? -o $@ -+db_checkpoint.so: $(srcdir)/db_checkpoint/db_checkpoint.c -+ $(CC) $(CFLAGS) $(SHAREDFLAGS) $? -o $@ -+db_deadlock.so: $(srcdir)/db_deadlock/db_deadlock.c -+ $(CC) $(CFLAGS) $(SHAREDFLAGS) $? -o $@ -+db_dump.so: $(srcdir)/db_dump/db_dump.c -+ $(CC) $(CFLAGS) $(SHAREDFLAGS) $? -o $@ -+db_dump185.so: $(srcdir)/db_dump185/db_dump185.c -+ $(CC) $(CFLAGS) $(SHAREDFLAGS) $? -o $@ -+db_load.so: $(srcdir)/db_load/db_load.c -+ $(CC) $(CFLAGS) $(SHAREDFLAGS) $? -o $@ -+db_printlog.so: $(srcdir)/db_printlog/db_printlog.c -+ $(CC) $(CFLAGS) $(SHAREDFLAGS) $? -o $@ -+db_recover.so: $(srcdir)/db_recover/db_recover.c -+ $(CC) $(CFLAGS) $(SHAREDFLAGS) $? -o $@ -+db_stat.so: $(srcdir)/db_stat/db_stat.c -+ $(CC) $(CFLAGS) $(SHAREDFLAGS) $? -o $@ -+ -+# Examples. -+ex_access.so: $(srcdir)/examples/ex_access.c -+ $(CC) $(CFLAGS) $(SHAREDFLAGS) $? -o $@ -+ex_appinit.so: $(srcdir)/examples/ex_appinit.c -+ $(CC) $(CFLAGS) $(SHAREDFLAGS) $? -o $@ -+ex_btrec.so: $(srcdir)/examples/ex_btrec.c -+ $(CC) $(CFLAGS) $(SHAREDFLAGS) $? -o $@ -+ex_lock.so: $(srcdir)/examples/ex_lock.c -+ $(CC) $(CFLAGS) $(SHAREDFLAGS) $? -o $@ -+ex_mpool.so: $(srcdir)/examples/ex_mpool.c -+ $(CC) $(CFLAGS) $(SHAREDFLAGS) $? -o $@ -+ex_thread.so: $(srcdir)/examples/ex_thread.c -+ $(CC) $(CFLAGS) $(SHAREDFLAGS) $? -o $@ -+ex_tpcb.so: $(srcdir)/examples/ex_tpcb.c -+ $(CC) $(CFLAGS) $(SHAREDFLAGS) $? -o $@ -+ -+# DB files. -+db.so: $(srcdir)/db/db.c -+ $(CC) $(CFLAGS) $(SHAREDFLAGS) $? -o $@ -+db_am.so: $(srcdir)/db/db_am.c -+ $(CC) $(CFLAGS) $(SHAREDFLAGS) $? -o $@ -+db_auto.so: $(srcdir)/db/db_auto.c -+ $(CC) $(CFLAGS) $(SHAREDFLAGS) $? -o $@ -+db_conv.so: $(srcdir)/db/db_conv.c -+ $(CC) $(CFLAGS) $(SHAREDFLAGS) $? -o $@ -+db_dispatch.so: $(srcdir)/db/db_dispatch.c -+ $(CC) $(CFLAGS) $(SHAREDFLAGS) $? -o $@ -+db_dup.so: $(srcdir)/db/db_dup.c -+ $(CC) $(CFLAGS) $(SHAREDFLAGS) $? -o $@ -+db_iface.so: $(srcdir)/db/db_iface.c -+ $(CC) $(CFLAGS) $(SHAREDFLAGS) $? -o $@ -+db_join.so: $(srcdir)/db/db_join.c -+ $(CC) $(CFLAGS) $(SHAREDFLAGS) $? -o $@ -+db_overflow.so: $(srcdir)/db/db_overflow.c -+ $(CC) $(CFLAGS) $(SHAREDFLAGS) $? -o $@ -+db_pr.so: $(srcdir)/db/db_pr.c -+ $(CC) $(CFLAGS) $(SHAREDFLAGS) $? -o $@ -+db_rec.so: $(srcdir)/db/db_rec.c -+ $(CC) $(CFLAGS) $(SHAREDFLAGS) $? -o $@ -+db_ret.so: $(srcdir)/db/db_ret.c -+ $(CC) $(CFLAGS) $(SHAREDFLAGS) $? -o $@ -+ -+# Btree source files. -+bt_compare.so: $(srcdir)/btree/bt_compare.c -+ $(CC) $(CFLAGS) $(SHAREDFLAGS) $? -o $@ -+bt_conv.so: $(srcdir)/btree/bt_conv.c -+ $(CC) $(CFLAGS) $(SHAREDFLAGS) $? -o $@ -+bt_curadj.so: $(srcdir)/btree/bt_curadj.c -+ $(CC) $(CFLAGS) $(SHAREDFLAGS) $? -o $@ -+bt_cursor.so: $(srcdir)/btree/bt_cursor.c -+ $(CC) $(CFLAGS) $(SHAREDFLAGS) $? -o $@ -+bt_delete.so: $(srcdir)/btree/bt_delete.c -+ $(CC) $(CFLAGS) $(SHAREDFLAGS) $? -o $@ -+bt_open.so: $(srcdir)/btree/bt_open.c -+ $(CC) $(CFLAGS) $(SHAREDFLAGS) $? -o $@ -+bt_page.so: $(srcdir)/btree/bt_page.c -+ $(CC) $(CFLAGS) $(SHAREDFLAGS) $? -o $@ -+bt_put.so: $(srcdir)/btree/bt_put.c -+ $(CC) $(CFLAGS) $(SHAREDFLAGS) $? -o $@ -+bt_rec.so: $(srcdir)/btree/bt_rec.c -+ $(CC) $(CFLAGS) $(SHAREDFLAGS) $? -o $@ -+bt_recno.so: $(srcdir)/btree/bt_recno.c -+ $(CC) $(CFLAGS) $(SHAREDFLAGS) $? -o $@ -+bt_rsearch.so: $(srcdir)/btree/bt_rsearch.c -+ $(CC) $(CFLAGS) $(SHAREDFLAGS) $? -o $@ -+bt_search.so: $(srcdir)/btree/bt_search.c -+ $(CC) $(CFLAGS) $(SHAREDFLAGS) $? -o $@ -+bt_split.so: $(srcdir)/btree/bt_split.c -+ $(CC) $(CFLAGS) $(SHAREDFLAGS) $? -o $@ -+bt_stack.so: $(srcdir)/btree/bt_stack.c -+ $(CC) $(CFLAGS) $(SHAREDFLAGS) $? -o $@ -+bt_stat.so: $(srcdir)/btree/bt_stat.c -+ $(CC) $(CFLAGS) $(SHAREDFLAGS) $? -o $@ -+btree_auto.so: $(srcdir)/btree/btree_auto.c -+ $(CC) $(CFLAGS) $(SHAREDFLAGS) $? -o $@ -+ -+# C++ interface files. -+cxx_app.so: $(srcdir)/cxx/cxx_app.cpp -+ $(CXX) $(CXXFLAGS) $(SHAREDFLAGS) $? -o $@ -+cxx_except.so: $(srcdir)/cxx/cxx_except.cpp -+ $(CXX) $(CXXFLAGS) $(SHAREDFLAGS) $? -o $@ -+cxx_lock.so: $(srcdir)/cxx/cxx_lock.cpp -+ $(CXX) $(CXXFLAGS) $(SHAREDFLAGS) $? -o $@ -+cxx_log.so: $(srcdir)/cxx/cxx_log.cpp -+ $(CXX) $(CXXFLAGS) $(SHAREDFLAGS) $? -o $@ -+cxx_mpool.so: $(srcdir)/cxx/cxx_mpool.cpp -+ $(CXX) $(CXXFLAGS) $(SHAREDFLAGS) $? -o $@ -+cxx_table.so: $(srcdir)/cxx/cxx_table.cpp -+ $(CXX) $(CXXFLAGS) $(SHAREDFLAGS) $? -o $@ -+cxx_txn.so: $(srcdir)/cxx/cxx_txn.cpp -+ $(CXX) $(CXXFLAGS) $(SHAREDFLAGS) $? -o $@ -+ -+# Hash source files. -+hash_auto.so: $(srcdir)/hash/hash_auto.c -+ $(CC) $(CFLAGS) $(SHAREDFLAGS) $? -o $@ -+hash.so: $(srcdir)/hash/hash.c -+ $(CC) $(CFLAGS) $(SHAREDFLAGS) $? -o $@ -+hash_conv.so: $(srcdir)/hash/hash_conv.c -+ $(CC) $(CFLAGS) $(SHAREDFLAGS) $? -o $@ -+hash_dup.so: $(srcdir)/hash/hash_dup.c -+ $(CC) $(CFLAGS) $(SHAREDFLAGS) $? -o $@ -+hash_func.so: $(srcdir)/hash/hash_func.c -+ $(CC) $(CFLAGS) $(SHAREDFLAGS) $? -o $@ -+hash_page.so: $(srcdir)/hash/hash_page.c -+ $(CC) $(CFLAGS) $(SHAREDFLAGS) $? -o $@ -+hash_rec.so: $(srcdir)/hash/hash_rec.c -+ $(CC) $(CFLAGS) $(SHAREDFLAGS) $? -o $@ -+hash_stat.so: $(srcdir)/hash/hash_stat.c -+ $(CC) $(CFLAGS) $(SHAREDFLAGS) $? -o $@ -+ -+# Lock source files. -+lock.so: $(srcdir)/lock/lock.c -+ $(CC) $(CFLAGS) $(SHAREDFLAGS) $? -o $@ -+lock_conflict.so:$(srcdir)/lock/lock_conflict.c -+ $(CC) $(CFLAGS) $(SHAREDFLAGS) $? -o $@ -+lock_deadlock.so:$(srcdir)/lock/lock_deadlock.c -+ $(CC) $(CFLAGS) $(SHAREDFLAGS) $? -o $@ -+lock_region.so:$(srcdir)/lock/lock_region.c -+ $(CC) $(CFLAGS) $(SHAREDFLAGS) $? -o $@ -+lock_util.so:$(srcdir)/lock/lock_util.c -+ $(CC) $(CFLAGS) $(SHAREDFLAGS) $? -o $@ -+ -+# Log source files. -+log.so: $(srcdir)/log/log.c -+ $(CC) $(CFLAGS) $(SHAREDFLAGS) $? -o $@ -+log_archive.so: $(srcdir)/log/log_archive.c -+ $(CC) $(CFLAGS) $(SHAREDFLAGS) $? -o $@ -+log_auto.so: $(srcdir)/log/log_auto.c -+ $(CC) $(CFLAGS) $(SHAREDFLAGS) $? -o $@ -+log_compare.so: $(srcdir)/log/log_compare.c -+ $(CC) $(CFLAGS) $(SHAREDFLAGS) $? -o $@ -+log_findckp.so: $(srcdir)/log/log_findckp.c -+ $(CC) $(CFLAGS) $(SHAREDFLAGS) $? -o $@ -+log_get.so: $(srcdir)/log/log_get.c -+ $(CC) $(CFLAGS) $(SHAREDFLAGS) $? -o $@ -+log_put.so: $(srcdir)/log/log_put.c -+ $(CC) $(CFLAGS) $(SHAREDFLAGS) $? -o $@ -+log_rec.so: $(srcdir)/log/log_rec.c -+ $(CC) $(CFLAGS) $(SHAREDFLAGS) $? -o $@ -+log_register.so: $(srcdir)/log/log_register.c -+ $(CC) $(CFLAGS) $(SHAREDFLAGS) $? -o $@ -+ -+# Mpool source files. -+mp_bh.so: $(srcdir)/mp/mp_bh.c -+ $(CC) $(CFLAGS) $(SHAREDFLAGS) $? -o $@ -+mp_fget.so: $(srcdir)/mp/mp_fget.c -+ $(CC) $(CFLAGS) $(SHAREDFLAGS) $? -o $@ -+mp_fopen.so: $(srcdir)/mp/mp_fopen.c -+ $(CC) $(CFLAGS) $(SHAREDFLAGS) $? -o $@ -+mp_fput.so: $(srcdir)/mp/mp_fput.c -+ $(CC) $(CFLAGS) $(SHAREDFLAGS) $? -o $@ -+mp_fset.so: $(srcdir)/mp/mp_fset.c -+ $(CC) $(CFLAGS) $(SHAREDFLAGS) $? -o $@ -+mp_open.so: $(srcdir)/mp/mp_open.c -+ $(CC) $(CFLAGS) $(SHAREDFLAGS) $? -o $@ -+mp_pr.so: $(srcdir)/mp/mp_pr.c -+ $(CC) $(CFLAGS) $(SHAREDFLAGS) $? -o $@ -+mp_region.so: $(srcdir)/mp/mp_region.c -+ $(CC) $(CFLAGS) $(SHAREDFLAGS) $? -o $@ -+mp_sync.so: $(srcdir)/mp/mp_sync.c -+ $(CC) $(CFLAGS) $(SHAREDFLAGS) $? -o $@ -+ -+# Mutex source files. -+mutex.so: $(srcdir)/mutex/mutex.c -+ $(CC) $(CFLAGS) $(SHAREDFLAGS) $? -o $@ -+# XXX -+# UTS4 spinlocks -+uts4_cc.so: $(srcdir)/mutex/uts4_cc.s -+ $(AS) $(ASFLAGS) $(SHAREDFLAGS) -o $@ $? -o $@ -+ -+# Transaction source files. -+txn.so: $(srcdir)/txn/txn.c -+ $(CC) $(CFLAGS) $(SHAREDFLAGS) $? -o $@ -+txn_auto.so: $(srcdir)/txn/txn_auto.c -+ $(CC) $(CFLAGS) $(SHAREDFLAGS) $? -o $@ -+txn_rec.so: $(srcdir)/txn/txn_rec.c -+ $(CC) $(CFLAGS) $(SHAREDFLAGS) $? -o $@ -+ -+# XA source files. -+xa.so: $(srcdir)/xa/xa.c -+ $(CC) $(CFLAGS) $(SHAREDFLAGS) $? -o $@ -+xa_db.so: $(srcdir)/xa/xa_db.c -+ $(CC) $(CFLAGS) $(SHAREDFLAGS) $? -o $@ -+xa_map.so: $(srcdir)/xa/xa_map.c -+ $(CC) $(CFLAGS) $(SHAREDFLAGS) $? -o $@ -+ -+# Historic interfaces. -+hsearch.so: $(srcdir)/hsearch/hsearch.c -+ $(CC) $(CFLAGS) $(SHAREDFLAGS) $? -o $@ -+dbm.so: $(srcdir)/dbm/dbm.c -+ $(CC) $(CFLAGS) $(SHAREDFLAGS) $? -o $@ -+db185.so: $(srcdir)/db185/db185.c -+ $(CC) $(CFLAGS) $(SHAREDFLAGS) $? -o $@ -+ -+# Common source files. -+db_appinit.so: $(srcdir)/common/db_appinit.c -+ $(CC) $(CFLAGS) $(SHAREDFLAGS) $? -o $@ -+db_apprec.so: $(srcdir)/common/db_apprec.c -+ $(CC) $(CFLAGS) $(SHAREDFLAGS) $? -o $@ -+db_byteorder.so: $(srcdir)/common/db_byteorder.c -+ $(CC) $(CFLAGS) $(SHAREDFLAGS) $? -o $@ -+db_err.so: $(srcdir)/common/db_err.c -+ $(CC) $(CFLAGS) $(SHAREDFLAGS) $? -o $@ -+db_log2.so: $(srcdir)/common/db_log2.c -+ $(CC) $(CFLAGS) $(SHAREDFLAGS) $? -o $@ -+db_region.so: $(srcdir)/common/db_region.c -+ $(CC) $(CFLAGS) $(SHAREDFLAGS) $? -o $@ -+db_salloc.so: $(srcdir)/common/db_salloc.c -+ $(CC) $(CFLAGS) $(SHAREDFLAGS) $? -o $@ -+db_shash.so: $(srcdir)/common/db_shash.c -+ $(CC) $(CFLAGS) $(SHAREDFLAGS) $? -o $@ -+ -+# OS specific source files. -+os_abs.so: $(srcdir)/os/os_abs.c -+ $(CC) $(CFLAGS) $(SHAREDFLAGS) $? -o $@ -+os_alloc.so: $(srcdir)/os/os_alloc.c -+ $(CC) $(CFLAGS) $(SHAREDFLAGS) $? -o $@ -+os_config.so: $(srcdir)/os/os_config.c -+ $(CC) $(CFLAGS) $(SHAREDFLAGS) $? -o $@ -+os_dir.so: $(srcdir)/os/os_dir.c -+ $(CC) $(CFLAGS) $(SHAREDFLAGS) $? -o $@ -+os_fid.so: $(srcdir)/os/os_fid.c -+ $(CC) $(CFLAGS) $(SHAREDFLAGS) $? -o $@ -+os_fsync.so: $(srcdir)/os/os_fsync.c -+ $(CC) $(CFLAGS) $(SHAREDFLAGS) $? -o $@ -+os_map.so: $(srcdir)/os/os_map.c -+ $(CC) $(CFLAGS) $(SHAREDFLAGS) $? -o $@ -+os_oflags.so: $(srcdir)/os/os_oflags.c -+ $(CC) $(CFLAGS) $(SHAREDFLAGS) $? -o $@ -+os_open.so: $(srcdir)/os/os_open.c -+ $(CC) $(CFLAGS) $(SHAREDFLAGS) $? -o $@ -+os_rpath.so: $(srcdir)/os/os_rpath.c -+ $(CC) $(CFLAGS) $(SHAREDFLAGS) $? -o $@ -+os_rw.so: $(srcdir)/os/os_rw.c -+ $(CC) $(CFLAGS) $(SHAREDFLAGS) $? -o $@ -+os_seek.so: $(srcdir)/os/os_seek.c -+ $(CC) $(CFLAGS) $(SHAREDFLAGS) $? -o $@ -+os_sleep.so: $(srcdir)/os/os_sleep.c -+ $(CC) $(CFLAGS) $(SHAREDFLAGS) $? -o $@ -+os_spin.so: $(srcdir)/os/os_spin.c -+ $(CC) $(CFLAGS) $(SHAREDFLAGS) $? -o $@ -+os_stat.so: $(srcdir)/os/os_stat.c -+ $(CC) $(CFLAGS) $(SHAREDFLAGS) $? -o $@ -+os_tmpdir.so: $(srcdir)/os/os_tmpdir.c -+ $(CC) $(CFLAGS) $(SHAREDFLAGS) $? -o $@ -+os_unlink.so: $(srcdir)/os/os_unlink.c -+ $(CC) $(CFLAGS) $(SHAREDFLAGS) $? -o $@ -+ -+# Test programs. -+tclAppInit.so: $(srcdir)/test/tclAppInit.c -+ $(CC) $(CFLAGS) $(SHAREDFLAGS) $? -o $@ -+tcl_dbm.so: $(srcdir)/test/tcl_dbm.c -+ $(CC) $(CFLAGS) $(SHAREDFLAGS) $? -o $@ -+tcl_hsearch.so: $(srcdir)/test/tcl_hsearch.c -+ $(CC) $(CFLAGS) $(SHAREDFLAGS) $? -o $@ -+tcl_lock.so: $(srcdir)/test/tcl_lock.c -+ $(CC) $(CFLAGS) $(SHAREDFLAGS) $? -o $@ -+tcl_log.so: $(srcdir)/test/tcl_log.c -+ $(CC) $(CFLAGS) $(SHAREDFLAGS) $? -o $@ -+tcl_mpool.so: $(srcdir)/test/tcl_mpool.c -+ $(CC) $(CFLAGS) $(SHAREDFLAGS) $? -o $@ -+tcl_mutex.so: $(srcdir)/test/tcl_mutex.c -+ $(CC) $(CFLAGS) $(SHAREDFLAGS) $? -o $@ -+tcl_ndbm.so: $(srcdir)/test/tcl_ndbm.c -+ $(CC) $(CFLAGS) $(SHAREDFLAGS) $? -o $@ -+tcl_txn.so: $(srcdir)/test/tcl_txn.c -+ $(CC) $(CFLAGS) $(SHAREDFLAGS) $? -o $@ -+utils.so: $(srcdir)/test/utils.c -+ $(CC) $(CFLAGS) $(SHAREDFLAGS) $? -o $@ -+ -+# Replacement source files. -+err.so: $(srcdir)/clib/err.c -+ $(CC) $(CFLAGS) $(SHAREDFLAGS) $? -o $@ -+getcwd.so: $(srcdir)/clib/getcwd.c -+ $(CC) $(CFLAGS) $(SHAREDFLAGS) $? -o $@ -+getlong.so: $(srcdir)/clib/getlong.c -+ $(CC) $(CFLAGS) $(SHAREDFLAGS) $? -o $@ -+getopt.so: $(srcdir)/clib/getopt.c -+ $(CC) $(CFLAGS) $(SHAREDFLAGS) $? -o $@ -+memcmp.so: $(srcdir)/clib/memcmp.c -+ $(CC) $(CFLAGS) $(SHAREDFLAGS) $? -o $@ -+memcpy.so: $(srcdir)/clib/memmove.c -+ $(CC) -DMEMCOPY $(CFLAGS) $(SHAREDFLAGS) $? -o $@ -+memmove.so: $(srcdir)/clib/memmove.c -+ $(CC) -DMEMMOVE $(CFLAGS) $(SHAREDFLAGS) $? -o $@ -+raise.so: $(srcdir)/clib/raise.c -+ $(CC) $(CFLAGS) $(SHAREDFLAGS) $? -o $@ -+snprintf.so: $(srcdir)/clib/snprintf.c -+ $(CC) $(CFLAGS) $(SHAREDFLAGS) $? -o $@ -+strerror.so: $(srcdir)/clib/strerror.c -+ $(CC) $(CFLAGS) $(SHAREDFLAGS) $? -o $@ -+strsep.so: $(srcdir)/clib/strsep.c -+ $(CC) $(CFLAGS) $(SHAREDFLAGS) $? -o $@ -+vsnprintf.so: $(srcdir)/clib/vsnprintf.c -+ $(CC) $(CFLAGS) $(SHAREDFLAGS) $? -o $@ diff --git a/databases/db42/pkg-comment b/databases/db42/pkg-comment deleted file mode 100644 index 39a54a240320..000000000000 --- a/databases/db42/pkg-comment +++ /dev/null @@ -1 +0,0 @@ -The Berkeley DB package, revision 2 diff --git a/databases/db42/pkg-descr b/databases/db42/pkg-descr deleted file mode 100644 index b9ed34ee6d81..000000000000 --- a/databases/db42/pkg-descr +++ /dev/null @@ -1,13 +0,0 @@ -Revesion 2 of the Berkeley DB library. This version uses an incompatible -underlying database format than revision 1 and a different standard API. -Utilities are included in the distribution to convert v1.85 databases to v2 -databases, and a backwards compatible API is provided to maintain -compatibility with programs using the v1.85 interface. - -There are minor interface changes in this release which may require that DB -applications be modified and recompiled. For a complete discussion of -interface changes, see: - -http://www.sleepycat.com/update/ - -WWW: http://www.sleepycat.com diff --git a/databases/db42/pkg-plist b/databases/db42/pkg-plist deleted file mode 100644 index 961bc047a6e4..000000000000 --- a/databases/db42/pkg-plist +++ /dev/null @@ -1,564 +0,0 @@ -include/db2/db.h -include/db2/db_cxx.h -include/db2/db_185.h -lib/libdb2.a -lib/libdb2.so -lib/libdb2.so.0 -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 -share/doc/db2/api_c/Db/close.html -share/doc/db2/api_c/Db/cursor.html -share/doc/db2/api_c/Db/del.html -share/doc/db2/api_c/Db/fd.html -share/doc/db2/api_c/Db/get.html -share/doc/db2/api_c/Db/join.html -share/doc/db2/api_c/Db/open.html -share/doc/db2/api_c/Db/put.html -share/doc/db2/api_c/Db/stat.html -share/doc/db2/api_c/Db/sync.html -share/doc/db2/api_c/DbEnv/appexit.html -share/doc/db2/api_c/DbEnv/appinit.html -share/doc/db2/api_c/DbEnv/env.html -share/doc/db2/api_c/DbEnv/version.html -share/doc/db2/api_c/DbInfo/info.html -share/doc/db2/api_c/DbLock/put.html -share/doc/db2/api_c/DbLockTab/close.html -share/doc/db2/api_c/DbLockTab/detect.html -share/doc/db2/api_c/DbLockTab/get.html -share/doc/db2/api_c/DbLockTab/id.html -share/doc/db2/api_c/DbLockTab/open.html -share/doc/db2/api_c/DbLockTab/stat.html -share/doc/db2/api_c/DbLockTab/unlink.html -share/doc/db2/api_c/DbLockTab/vec.html -share/doc/db2/api_c/DbLog/archive.html -share/doc/db2/api_c/DbLog/close.html -share/doc/db2/api_c/DbLog/compare.html -share/doc/db2/api_c/DbLog/db_register.html -share/doc/db2/api_c/DbLog/db_unregister.html -share/doc/db2/api_c/DbLog/file.html -share/doc/db2/api_c/DbLog/flush.html -share/doc/db2/api_c/DbLog/get.html -share/doc/db2/api_c/DbLog/lsn.html -share/doc/db2/api_c/DbLog/open.html -share/doc/db2/api_c/DbLog/put.html -share/doc/db2/api_c/DbLog/stat.html -share/doc/db2/api_c/DbLog/unlink.html -share/doc/db2/api_c/DbMpool/close.html -share/doc/db2/api_c/DbMpool/db_register.html -share/doc/db2/api_c/DbMpool/open.html -share/doc/db2/api_c/DbMpool/stat.html -share/doc/db2/api_c/DbMpool/sync.html -share/doc/db2/api_c/DbMpool/trickle.html -share/doc/db2/api_c/DbMpool/unlink.html -share/doc/db2/api_c/DbMpoolFile/close.html -share/doc/db2/api_c/DbMpoolFile/get.html -share/doc/db2/api_c/DbMpoolFile/open.html -share/doc/db2/api_c/DbMpoolFile/put.html -share/doc/db2/api_c/DbMpoolFile/set.html -share/doc/db2/api_c/DbMpoolFile/sync.html -share/doc/db2/api_c/DbTxn/abort.html -share/doc/db2/api_c/DbTxn/commit.html -share/doc/db2/api_c/DbTxn/id.html -share/doc/db2/api_c/DbTxn/prepare.html -share/doc/db2/api_c/DbTxnMgr/begin.html -share/doc/db2/api_c/DbTxnMgr/checkpoint.html -share/doc/db2/api_c/DbTxnMgr/close.html -share/doc/db2/api_c/DbTxnMgr/open.html -share/doc/db2/api_c/DbTxnMgr/stat.html -share/doc/db2/api_c/DbTxnMgr/unlink.html -share/doc/db2/api_c/Dbc/close.html -share/doc/db2/api_c/Dbc/del.html -share/doc/db2/api_c/Dbc/get.html -share/doc/db2/api_c/Dbc/put.html -share/doc/db2/api_c/Dbt/dbt.html -share/doc/db2/api_c/historic/dbm.html -share/doc/db2/api_c/historic/hsearch.html -share/doc/db2/api_c/index/flags.html -share/doc/db2/api_c/index/function.html -share/doc/db2/api_c/index/structure.html -share/doc/db2/api_c/internal/db_jump_set.html -share/doc/db2/api_c/internal/db_value_set.html -share/doc/db2/api_cxx/Db/class.html -share/doc/db2/api_cxx/Db/close.html -share/doc/db2/api_cxx/Db/cursor.html -share/doc/db2/api_cxx/Db/del.html -share/doc/db2/api_cxx/Db/fd.html -share/doc/db2/api_cxx/Db/get.html -share/doc/db2/api_cxx/Db/get_byteswapped.html -share/doc/db2/api_cxx/Db/get_type.html -share/doc/db2/api_cxx/Db/join.html -share/doc/db2/api_cxx/Db/open.html -share/doc/db2/api_cxx/Db/put.html -share/doc/db2/api_cxx/Db/stat.html -share/doc/db2/api_cxx/Db/sync.html -share/doc/db2/api_cxx/DbEnv/appexit.html -share/doc/db2/api_cxx/DbEnv/appinit.html -share/doc/db2/api_cxx/DbEnv/class.html -share/doc/db2/api_cxx/DbEnv/get_lg_info.html -share/doc/db2/api_cxx/DbEnv/get_lk_info.html -share/doc/db2/api_cxx/DbEnv/get_mp_info.html -share/doc/db2/api_cxx/DbEnv/get_tx_info.html -share/doc/db2/api_cxx/DbEnv/set_errcall.html -share/doc/db2/api_cxx/DbEnv/set_errfile.html -share/doc/db2/api_cxx/DbEnv/set_error_model.html -share/doc/db2/api_cxx/DbEnv/set_error_stream.html -share/doc/db2/api_cxx/DbEnv/set_errpfx.html -share/doc/db2/api_cxx/DbEnv/set_lg_max.html -share/doc/db2/api_cxx/DbEnv/set_lk_conflicts.html -share/doc/db2/api_cxx/DbEnv/set_lk_detect.html -share/doc/db2/api_cxx/DbEnv/set_lk_max.html -share/doc/db2/api_cxx/DbEnv/set_lk_modes.html -share/doc/db2/api_cxx/DbEnv/set_lorder.html -share/doc/db2/api_cxx/DbEnv/set_mp_mmapsize.html -share/doc/db2/api_cxx/DbEnv/set_mp_size.html -share/doc/db2/api_cxx/DbEnv/set_tx_max.html -share/doc/db2/api_cxx/DbEnv/set_tx_recover.html -share/doc/db2/api_cxx/DbEnv/set_verbose.html -share/doc/db2/api_cxx/DbEnv/version.html -share/doc/db2/api_cxx/DbException/class.html -share/doc/db2/api_cxx/DbException/get_errno.html -share/doc/db2/api_cxx/DbException/what.html -share/doc/db2/api_cxx/DbInfo/class.html -share/doc/db2/api_cxx/DbInfo/set_bt_compare.html -share/doc/db2/api_cxx/DbInfo/set_bt_maxkey.html -share/doc/db2/api_cxx/DbInfo/set_bt_minkey.html -share/doc/db2/api_cxx/DbInfo/set_bt_prefix.html -share/doc/db2/api_cxx/DbInfo/set_cachesize.html -share/doc/db2/api_cxx/DbInfo/set_compare.html -share/doc/db2/api_cxx/DbInfo/set_flags.html -share/doc/db2/api_cxx/DbInfo/set_h_ffactor.html -share/doc/db2/api_cxx/DbInfo/set_h_hash.html -share/doc/db2/api_cxx/DbInfo/set_h_nelem.html -share/doc/db2/api_cxx/DbInfo/set_lorder.html -share/doc/db2/api_cxx/DbInfo/set_malloc.html -share/doc/db2/api_cxx/DbInfo/set_pagesize.html -share/doc/db2/api_cxx/DbInfo/set_re_delim.html -share/doc/db2/api_cxx/DbInfo/set_re_len.html -share/doc/db2/api_cxx/DbInfo/set_re_pad.html -share/doc/db2/api_cxx/DbInfo/set_re_source.html -share/doc/db2/api_cxx/DbLock/class.html -share/doc/db2/api_cxx/DbLock/put.html -share/doc/db2/api_cxx/DbLockTab/class.html -share/doc/db2/api_cxx/DbLockTab/close.html -share/doc/db2/api_cxx/DbLockTab/detect.html -share/doc/db2/api_cxx/DbLockTab/get.html -share/doc/db2/api_cxx/DbLockTab/id.html -share/doc/db2/api_cxx/DbLockTab/open.html -share/doc/db2/api_cxx/DbLockTab/stat.html -share/doc/db2/api_cxx/DbLockTab/unlink.html -share/doc/db2/api_cxx/DbLockTab/vec.html -share/doc/db2/api_cxx/DbLog/archive.html -share/doc/db2/api_cxx/DbLog/class.html -share/doc/db2/api_cxx/DbLog/close.html -share/doc/db2/api_cxx/DbLog/compare.html -share/doc/db2/api_cxx/DbLog/db_register.html -share/doc/db2/api_cxx/DbLog/db_unregister.html -share/doc/db2/api_cxx/DbLog/file.html -share/doc/db2/api_cxx/DbLog/flush.html -share/doc/db2/api_cxx/DbLog/get.html -share/doc/db2/api_cxx/DbLog/open.html -share/doc/db2/api_cxx/DbLog/put.html -share/doc/db2/api_cxx/DbLog/stat.html -share/doc/db2/api_cxx/DbLog/unlink.html -share/doc/db2/api_cxx/DbLsn/class.html -share/doc/db2/api_cxx/DbMpool/class.html -share/doc/db2/api_cxx/DbMpool/close.html -share/doc/db2/api_cxx/DbMpool/db_register.html -share/doc/db2/api_cxx/DbMpool/open.html -share/doc/db2/api_cxx/DbMpool/stat.html -share/doc/db2/api_cxx/DbMpool/sync.html -share/doc/db2/api_cxx/DbMpool/trickle.html -share/doc/db2/api_cxx/DbMpool/unlink.html -share/doc/db2/api_cxx/DbMpoolFile/class.html -share/doc/db2/api_cxx/DbMpoolFile/close.html -share/doc/db2/api_cxx/DbMpoolFile/get.html -share/doc/db2/api_cxx/DbMpoolFile/open.html -share/doc/db2/api_cxx/DbMpoolFile/put.html -share/doc/db2/api_cxx/DbMpoolFile/set.html -share/doc/db2/api_cxx/DbMpoolFile/sync.html -share/doc/db2/api_cxx/DbTxn/abort.html -share/doc/db2/api_cxx/DbTxn/class.html -share/doc/db2/api_cxx/DbTxn/commit.html -share/doc/db2/api_cxx/DbTxn/id.html -share/doc/db2/api_cxx/DbTxn/prepare.html -share/doc/db2/api_cxx/DbTxnMgr/begin.html -share/doc/db2/api_cxx/DbTxnMgr/checkpoint.html -share/doc/db2/api_cxx/DbTxnMgr/class.html -share/doc/db2/api_cxx/DbTxnMgr/close.html -share/doc/db2/api_cxx/DbTxnMgr/open.html -share/doc/db2/api_cxx/DbTxnMgr/stat.html -share/doc/db2/api_cxx/DbTxnMgr/unlink.html -share/doc/db2/api_cxx/Dbc/class.html -share/doc/db2/api_cxx/Dbc/close.html -share/doc/db2/api_cxx/Dbc/del.html -share/doc/db2/api_cxx/Dbc/get.html -share/doc/db2/api_cxx/Dbc/put.html -share/doc/db2/api_cxx/Dbt/class.html -share/doc/db2/api_cxx/index/class.html -share/doc/db2/api_java/Db/class.html -share/doc/db2/api_java/Db/close.html -share/doc/db2/api_java/Db/cursor.html -share/doc/db2/api_java/Db/del.html -share/doc/db2/api_java/Db/fd.html -share/doc/db2/api_java/Db/get.html -share/doc/db2/api_java/Db/get_byteswapped.html -share/doc/db2/api_java/Db/get_type.html -share/doc/db2/api_java/Db/join.html -share/doc/db2/api_java/Db/open.html -share/doc/db2/api_java/Db/put.html -share/doc/db2/api_java/Db/stat.html -share/doc/db2/api_java/Db/sync.html -share/doc/db2/api_java/DbEnv/appexit.html -share/doc/db2/api_java/DbEnv/appinit.html -share/doc/db2/api_java/DbEnv/class.html -share/doc/db2/api_java/DbEnv/get_lg_info.html -share/doc/db2/api_java/DbEnv/get_lk_info.html -share/doc/db2/api_java/DbEnv/get_mp_info.html -share/doc/db2/api_java/DbEnv/get_tx_info.html -share/doc/db2/api_java/DbEnv/set_errcall.html -share/doc/db2/api_java/DbEnv/set_error_stream.html -share/doc/db2/api_java/DbEnv/set_errpfx.html -share/doc/db2/api_java/DbEnv/set_lg_max.html -share/doc/db2/api_java/DbEnv/set_lk_conflicts.html -share/doc/db2/api_java/DbEnv/set_lk_detect.html -share/doc/db2/api_java/DbEnv/set_lk_max.html -share/doc/db2/api_java/DbEnv/set_lk_modes.html -share/doc/db2/api_java/DbEnv/set_lorder.html -share/doc/db2/api_java/DbEnv/set_mp_mmapsize.html -share/doc/db2/api_java/DbEnv/set_mp_size.html -share/doc/db2/api_java/DbEnv/set_tx_max.html -share/doc/db2/api_java/DbEnv/set_verbose.html -share/doc/db2/api_java/DbEnv/version.html -share/doc/db2/api_java/DbException/class.html -share/doc/db2/api_java/DbException/get_errno.html -share/doc/db2/api_java/DbInfo/class.html -share/doc/db2/api_java/DbInfo/set_bt_compare.html -share/doc/db2/api_java/DbInfo/set_bt_maxkey.html -share/doc/db2/api_java/DbInfo/set_bt_minkey.html -share/doc/db2/api_java/DbInfo/set_bt_prefix.html -share/doc/db2/api_java/DbInfo/set_cachesize.html -share/doc/db2/api_java/DbInfo/set_compare.html -share/doc/db2/api_java/DbInfo/set_flags.html -share/doc/db2/api_java/DbInfo/set_h_ffactor.html -share/doc/db2/api_java/DbInfo/set_h_hash.html -share/doc/db2/api_java/DbInfo/set_h_nelem.html -share/doc/db2/api_java/DbInfo/set_lorder.html -share/doc/db2/api_java/DbInfo/set_malloc.html -share/doc/db2/api_java/DbInfo/set_pagesize.html -share/doc/db2/api_java/DbInfo/set_re_delim.html -share/doc/db2/api_java/DbInfo/set_re_len.html -share/doc/db2/api_java/DbInfo/set_re_pad.html -share/doc/db2/api_java/DbInfo/set_re_source.html -share/doc/db2/api_java/DbLock/class.html -share/doc/db2/api_java/DbLock/put.html -share/doc/db2/api_java/DbLockTab/class.html -share/doc/db2/api_java/DbLockTab/close.html -share/doc/db2/api_java/DbLockTab/detect.html -share/doc/db2/api_java/DbLockTab/get.html -share/doc/db2/api_java/DbLockTab/id.html -share/doc/db2/api_java/DbLockTab/open.html -share/doc/db2/api_java/DbLockTab/stat.html -share/doc/db2/api_java/DbLockTab/unlink.html -share/doc/db2/api_java/DbLockTab/vec.html -share/doc/db2/api_java/DbLog/archive.html -share/doc/db2/api_java/DbLog/class.html -share/doc/db2/api_java/DbLog/close.html -share/doc/db2/api_java/DbLog/compare.html -share/doc/db2/api_java/DbLog/db_register.html -share/doc/db2/api_java/DbLog/db_unregister.html -share/doc/db2/api_java/DbLog/file.html -share/doc/db2/api_java/DbLog/flush.html -share/doc/db2/api_java/DbLog/get.html -share/doc/db2/api_java/DbLog/open.html -share/doc/db2/api_java/DbLog/put.html -share/doc/db2/api_java/DbLog/stat.html -share/doc/db2/api_java/DbLog/unlink.html -share/doc/db2/api_java/DbLsn/class.html -share/doc/db2/api_java/DbMpool/class.html -share/doc/db2/api_java/DbMpool/close.html -share/doc/db2/api_java/DbMpool/db_register.html -share/doc/db2/api_java/DbMpool/open.html -share/doc/db2/api_java/DbMpool/stat.html -share/doc/db2/api_java/DbMpool/sync.html -share/doc/db2/api_java/DbMpool/trickle.html -share/doc/db2/api_java/DbMpool/unlink.html -share/doc/db2/api_java/DbMpoolFile/class.html -share/doc/db2/api_java/DbMpoolFile/close.html -share/doc/db2/api_java/DbMpoolFile/get.html -share/doc/db2/api_java/DbMpoolFile/open.html -share/doc/db2/api_java/DbMpoolFile/put.html -share/doc/db2/api_java/DbMpoolFile/set.html -share/doc/db2/api_java/DbMpoolFile/sync.html -share/doc/db2/api_java/DbRunRecoveryException/class.html -share/doc/db2/api_java/DbTxn/abort.html -share/doc/db2/api_java/DbTxn/class.html -share/doc/db2/api_java/DbTxn/commit.html -share/doc/db2/api_java/DbTxn/id.html -share/doc/db2/api_java/DbTxn/prepare.html -share/doc/db2/api_java/DbTxnMgr/begin.html -share/doc/db2/api_java/DbTxnMgr/checkpoint.html -share/doc/db2/api_java/DbTxnMgr/class.html -share/doc/db2/api_java/DbTxnMgr/close.html -share/doc/db2/api_java/DbTxnMgr/open.html -share/doc/db2/api_java/DbTxnMgr/stat.html -share/doc/db2/api_java/DbTxnMgr/unlink.html -share/doc/db2/api_java/Dbc/class.html -share/doc/db2/api_java/Dbc/close.html -share/doc/db2/api_java/Dbc/del.html -share/doc/db2/api_java/Dbc/get.html -share/doc/db2/api_java/Dbc/put.html -share/doc/db2/api_java/Dbt/class.html -share/doc/db2/api_java/index/class.html -share/doc/db2/build/java.html -share/doc/db2/build/shared.html -share/doc/db2/build/shared_gcc.html -share/doc/db2/build/shared_hp.html -share/doc/db2/build/unix.html -share/doc/db2/build/unix_faq.html -share/doc/db2/build/win16.html -share/doc/db2/build/win32.html -share/doc/db2/build/win_faq.html -share/doc/db2/distrib/layout.html -share/doc/db2/images/folder.gif -share/doc/db2/images/folder_open.gif -share/doc/db2/images/next.gif -share/doc/db2/images/prev.gif -share/doc/db2/images/ps.gif -share/doc/db2/images/sleepycat.gif -share/doc/db2/images/toc.gif -share/doc/db2/index.html -share/doc/db2/packages/hash_usenix.ps -share/doc/db2/packages/index.html -share/doc/db2/packages/libtp_usenix.ps -share/doc/db2/packages/witold.html -share/doc/db2/ref/am/bt_compare.html -share/doc/db2/ref/am/bt_dup.html -share/doc/db2/ref/am/bt_maxkey.html -share/doc/db2/ref/am/bt_minkey.html -share/doc/db2/ref/am/bt_prefix.html -share/doc/db2/ref/am/bt_recnum.html -share/doc/db2/ref/am/byteorder.html -share/doc/db2/ref/am/cachesize.html -share/doc/db2/ref/am/close.html -share/doc/db2/ref/am/compare.html -share/doc/db2/ref/am/curclose.html -share/doc/db2/ref/am/curdel.html -share/doc/db2/ref/am/curget.html -share/doc/db2/ref/am/curput.html -share/doc/db2/ref/am/cursor.html -share/doc/db2/ref/am/delete.html -share/doc/db2/ref/am/get.html -share/doc/db2/ref/am/h_dup.html -share/doc/db2/ref/am/h_ffactor.html -share/doc/db2/ref/am/h_hash.html -share/doc/db2/ref/am/h_nelem.html -share/doc/db2/ref/am/intro.html -share/doc/db2/ref/am/join.html -share/doc/db2/ref/am/logrec.html -share/doc/db2/ref/am/malloc.html -share/doc/db2/ref/am/ops.html -share/doc/db2/ref/am/pagesize.html -share/doc/db2/ref/am/partial.html -share/doc/db2/ref/am/put.html -share/doc/db2/ref/am/re_delim.html -share/doc/db2/ref/am/re_len.html -share/doc/db2/ref/am/re_pad.html -share/doc/db2/ref/am/re_source.html -share/doc/db2/ref/am/renumber.html -share/doc/db2/ref/am/select.html -share/doc/db2/ref/am/stat.html -share/doc/db2/ref/am/sync.html -share/doc/db2/ref/arch/apis.html -share/doc/db2/ref/arch/bigpic.gif -share/doc/db2/ref/arch/bigpic.html -share/doc/db2/ref/arch/env.html -share/doc/db2/ref/arch/extending.html -share/doc/db2/ref/arch/progmodel.html -share/doc/db2/ref/arch/script.html -share/doc/db2/ref/arch/smallpic.gif -share/doc/db2/ref/arch/subsystem.html -share/doc/db2/ref/arch/utilities.html -share/doc/db2/ref/cam/intro.html -share/doc/db2/ref/debug/runtime.html -share/doc/db2/ref/dumpload/format.html -share/doc/db2/ref/dumpload/text.html -share/doc/db2/ref/dumpload/utility.html -share/doc/db2/ref/env/create.html -share/doc/db2/ref/env/naming.html -share/doc/db2/ref/env/open.html -share/doc/db2/ref/env/region.html -share/doc/db2/ref/env/security.html -share/doc/db2/ref/install/file.html -share/doc/db2/ref/install/magic.s5.be.txt -share/doc/db2/ref/install/magic.s5.le.txt -share/doc/db2/ref/install/magic.txt -share/doc/db2/ref/intro/distrib.html -share/doc/db2/ref/intro/do.html -share/doc/db2/ref/intro/what.html -share/doc/db2/ref/intro/where.html -share/doc/db2/ref/lock/stdmode.html -share/doc/db2/ref/log/config.html -share/doc/db2/ref/log/intro.html -share/doc/db2/ref/log/limits.html -share/doc/db2/ref/mp/config.html -share/doc/db2/ref/mp/intro.html -share/doc/db2/ref/perl/intro.html -share/doc/db2/ref/program/appsignals.html -share/doc/db2/ref/program/byteorder.html -share/doc/db2/ref/program/compatible.html -share/doc/db2/ref/program/convert.html -share/doc/db2/ref/program/dbsizes.html -share/doc/db2/ref/program/environ.html -share/doc/db2/ref/program/errorret.html -share/doc/db2/ref/program/java.html -share/doc/db2/ref/program/runtime.html -share/doc/db2/ref/program/solaris.txt -share/doc/db2/ref/program/thread.html -share/doc/db2/ref/program/version.html -share/doc/db2/ref/sendmail/intro.html -share/doc/db2/ref/simple_tut/close.html -share/doc/db2/ref/simple_tut/del.html -share/doc/db2/ref/simple_tut/errors.html -share/doc/db2/ref/simple_tut/example.txt -share/doc/db2/ref/simple_tut/get.html -share/doc/db2/ref/simple_tut/intro.html -share/doc/db2/ref/simple_tut/keydata.html -share/doc/db2/ref/simple_tut/open.html -share/doc/db2/ref/simple_tut/put.html -share/doc/db2/ref/toc.html -share/doc/db2/ref/transapp/admin.html -share/doc/db2/ref/transapp/apps.html -share/doc/db2/ref/transapp/archival.html -share/doc/db2/ref/transapp/checkpoint.html -share/doc/db2/ref/transapp/deadlock.html -share/doc/db2/ref/transapp/filesys.html -share/doc/db2/ref/transapp/intro.html -share/doc/db2/ref/transapp/recovery.html -share/doc/db2/ref/transapp/throughput.html -share/doc/db2/ref/transapp/writetest.txt -share/doc/db2/ref/txn/config.html -share/doc/db2/ref/txn/limits.html -share/doc/db2/ref/txn/other.html -share/doc/db2/ref/txn/stability.html -share/doc/db2/sleepycat/contact.html -share/doc/db2/sleepycat/products.html -share/doc/db2/test/build.html -share/doc/db2/test/build_faq.html -share/doc/db2/test/debug.html -share/doc/db2/test/run.html -share/doc/db2/utility/db_archive.html -share/doc/db2/utility/db_checkpoint.html -share/doc/db2/utility/db_deadlock.html -share/doc/db2/utility/db_dump.html -share/doc/db2/utility/db_load.html -share/doc/db2/utility/db_recover.html -share/doc/db2/utility/db_stat.html -share/doc/db2/utility/index.html -share/examples/db2/examples/README -share/examples/db2/examples/ex_access.c -share/examples/db2/examples/ex_appinit.c -share/examples/db2/examples/ex_btrec.c -share/examples/db2/examples/ex_lock.c -share/examples/db2/examples/ex_mpool.c -share/examples/db2/examples/ex_thread.c -share/examples/db2/examples/ex_tpcb.c -share/examples/db2/examples/ex_tpcb.h -share/examples/db2/examples_cxx/AccessExample.cpp -share/examples/db2/examples_cxx/AppinitExample.cpp -share/examples/db2/examples_cxx/LockExample.cpp -share/examples/db2/examples_cxx/MpoolExample.cpp -share/examples/db2/examples_cxx/TpcbExample.cpp -share/examples/db2/examples_java/AccessExample.java -share/examples/db2/examples_java/AppinitExample.java -share/examples/db2/examples_java/LockExample.java -share/examples/db2/examples_java/TpcbExample.java -@dirrm include/db2 -@dirrm share/examples/db2/examples -@dirrm share/examples/db2/examples_cxx -@dirrm share/examples/db2/examples_java -@dirrm share/examples/db2 -@dirrm share/doc/db2/api_c/DbTxn -@dirrm share/doc/db2/api_c/DbEnv -@dirrm share/doc/db2/api_c/DbInfo -@dirrm share/doc/db2/api_c/DbLock -@dirrm share/doc/db2/api_c/DbLockTab -@dirrm share/doc/db2/api_c/DbLog -@dirrm share/doc/db2/api_c/DbMpool -@dirrm share/doc/db2/api_c/DbMpoolFile -@dirrm share/doc/db2/api_c/Db -@dirrm share/doc/db2/api_c/DbTxnMgr -@dirrm share/doc/db2/api_c/Dbc -@dirrm share/doc/db2/api_c/Dbt -@dirrm share/doc/db2/api_c/historic -@dirrm share/doc/db2/api_c/index -@dirrm share/doc/db2/api_c/internal -@dirrm share/doc/db2/api_c/special -@dirrm share/doc/db2/api_c -@dirrm share/doc/db2/test -@dirrm share/doc/db2/sleepycat -@dirrm share/doc/db2/ref/txn -@dirrm share/doc/db2/ref/am -@dirrm share/doc/db2/ref/arch -@dirrm share/doc/db2/ref/cam -@dirrm share/doc/db2/ref/debug -@dirrm share/doc/db2/ref/dumpload -@dirrm share/doc/db2/ref/env -@dirrm share/doc/db2/ref/intro -@dirrm share/doc/db2/ref/install -@dirrm share/doc/db2/ref/lock -@dirrm share/doc/db2/ref/log -@dirrm share/doc/db2/ref/mp -@dirrm share/doc/db2/ref/perl -@dirrm share/doc/db2/ref/program -@dirrm share/doc/db2/ref/sendmail -@dirrm share/doc/db2/ref/simple_tut -@dirrm share/doc/db2/ref/transapp -@dirrm share/doc/db2/ref -@dirrm share/doc/db2/packages -@dirrm share/doc/db2/api_cxx/DbLsn -@dirrm share/doc/db2/api_cxx/Dbc -@dirrm share/doc/db2/api_cxx/DbEnv -@dirrm share/doc/db2/api_cxx/DbException -@dirrm share/doc/db2/api_cxx/DbInfo -@dirrm share/doc/db2/api_cxx/DbLock -@dirrm share/doc/db2/api_cxx/DbLockTab -@dirrm share/doc/db2/api_cxx/DbLog -@dirrm share/doc/db2/api_cxx/Db -@dirrm share/doc/db2/api_cxx/DbMpool -@dirrm share/doc/db2/api_cxx/DbMpoolFile -@dirrm share/doc/db2/api_cxx/DbTxn -@dirrm share/doc/db2/api_cxx/DbTxnMgr -@dirrm share/doc/db2/api_cxx/Dbt -@dirrm share/doc/db2/api_cxx/index -@dirrm share/doc/db2/api_cxx/special -@dirrm share/doc/db2/api_cxx -@dirrm share/doc/db2/utility -@dirrm share/doc/db2/distrib -@dirrm share/doc/db2/build -@dirrm share/doc/db2/api_java/DbMpool -@dirrm share/doc/db2/api_java/DbEnv -@dirrm share/doc/db2/api_java/DbException -@dirrm share/doc/db2/api_java/DbInfo -@dirrm share/doc/db2/api_java/DbLock -@dirrm share/doc/db2/api_java/DbLockTab -@dirrm share/doc/db2/api_java/DbLog -@dirrm share/doc/db2/api_java/DbLsn -@dirrm share/doc/db2/api_java/Db -@dirrm share/doc/db2/api_java/DbMpoolFile -@dirrm share/doc/db2/api_java/DbRunRecoveryException -@dirrm share/doc/db2/api_java/DbTxn -@dirrm share/doc/db2/api_java/DbTxnMgr -@dirrm share/doc/db2/api_java/Dbc -@dirrm share/doc/db2/api_java/Dbt -@dirrm share/doc/db2/api_java/index -@dirrm share/doc/db2/api_java/special -@dirrm share/doc/db2/api_java -@dirrm share/doc/db2/images -@dirrm share/doc/db2 diff --git a/databases/db43/Makefile b/databases/db43/Makefile deleted file mode 100644 index 9b1fe8a00a1e..000000000000 --- a/databases/db43/Makefile +++ /dev/null @@ -1,41 +0,0 @@ -# ports collection makefile for: Berkeley DB -# Date created: 26 Jan 1998 -# Whom: Josh Tiefenbach <josh@ican.net> -# -# $FreeBSD$ -# - -PORTNAME= db -PORTVERSION= 2.7.7 -CATEGORIES= databases -MASTER_SITES= http://www.sleepycat.com/update/${PORTVERSION}/ - -MAINTAINER= josh@ican.net - -Y2K= http://www.sleepycat.com/faq.html#A8 - -MANUAL_PACKAGE_BUILD= incompatible with libc internal db calls -WRKSRC= ${WRKDIR}/${DISTNAME}/build_unix - -INSTALLS_SHLIB= yes -GNU_CONFIGURE= yes -CONFIGURE_SCRIPT= ../dist/configure -CONFIGURE_ARGS= --enable-compat185 \ - --enable-dump185 --enable-cxx - -post-install: - ${MKDIR} ${PREFIX}/share/examples/db2 - cd ${WRKSRC}/..; \ - tar -cf - --exclude tags examples/ examples_cxx/ examples_java/ | \ - ( cd ${PREFIX}/share/examples/db2; tar xf - ) - @${ECHO_MSG} "" - @${ECHO_MSG} "Java support for ${PKGNAME} is *not* built by default, and requires that you" - @${ECHO_MSG} "have a working copy of the JDK (v1.1) installed." - @${ECHO_MSG} "" - @${ECHO_MSG} "To build java support, please read:" - @${ECHO_MSG} "" - @${ECHO_MSG} "${WRKDIR}/${DISTNAME}/java/README" - @${ECHO_MSG} "" - @${ECHO_MSG} "and follow the directions therein." - -.include <bsd.port.mk> diff --git a/databases/db43/distinfo b/databases/db43/distinfo deleted file mode 100644 index d761baf3bdff..000000000000 --- a/databases/db43/distinfo +++ /dev/null @@ -1 +0,0 @@ -MD5 (db-2.7.7.tar.gz) = 20256735091ee382c6601117d82d749a diff --git a/databases/db43/files/patch-aa b/databases/db43/files/patch-aa deleted file mode 100644 index db3d430758a2..000000000000 --- a/databases/db43/files/patch-aa +++ /dev/null @@ -1,506 +0,0 @@ ---- ../dist/Makefile.in.orig Mon Dec 7 21:05:59 1998 -+++ ../dist/Makefile.in Tue Jun 6 17:44:50 2000 -@@ -1,13 +1,16 @@ - # @(#)Makefile.in 10.62 (Sleepycat) 12/7/98 - -+SOVER?= 0 -+ - srcdir= @srcdir@/.. - CPPFLAGS=-I. -I$(srcdir)/include @CPPFLAGS@ -+SHAREDFLAGS= -fpic -DPIC - CFLAGS= -c @CFLAGS@ $(CPPFLAGS) - CC= @CC@ - CXXFLAGS=-c @CXXFLAGS@ $(CPPFLAGS) - CXX= @CXX@ --LDFLAGS=@LDFLAGS@ --LIBS= @LIBS@ -+LDFLAGS=@LDFLAGS@ -L. -+LIBS= @LIBS@ -ldb2 - - SHELL= @db_cv_path_sh@ - ar= @db_cv_path_ar@ cr -@@ -43,85 +46,91 @@ - LOBJS= @LIBOBJS@ - POBJS= err.o getlong.o - --libdb= libdb.a --all: $(libdb) $(PROGS) -+libdb= libdb2.a -+libdbso= libdb2.so.$(SOVER) -+all: $(libdb) $(libdbso) $(PROGS) - - $(libdb): db.h $(OBJS) $(LOBJS) - $(rm) -f $@ - $(ar) $@ $(OBJS) $(LOBJS) - test ! -f $(ranlib) || $(ranlib) $@ - -+$(libdbso): db.h $(OBJS:S/.o$/.so/g) $(LOBJS:S/.o$/.so/g) -+ $(rm) -f $@ -+ $(CXX) -shared -Wl,-x -Wl,-assert -Wl,pure-text -Wl,-soname,$@ -o $@ $(OBJS:S/.o$/.so/g) $(LOBJS:S/.o$/.so/g) -+ ln -sf $@ libdb2.so -+ - DBA= db_archive.o $(POBJS) --db_archive: $(DBA) $(libdb) -- $(CC) -o $@ $(LDFLAGS) $(DBA) $(libdb) $(LIBS) -+db_archive: $(DBA) $(libdbso) -+ $(CC) -o $@ $(LDFLAGS) $(DBA) $(LIBS) - - DBB= db_checkpoint.o $(POBJS) --db_checkpoint: $(DBB) $(libdb) -- $(CC) -o $@ $(LDFLAGS) $(DBB) $(libdb) $(LIBS) -+db_checkpoint: $(DBB) $(libdbso) -+ $(CC) -o $@ $(LDFLAGS) $(DBB) $(LIBS) - - DBC= db_deadlock.o $(POBJS) --db_deadlock: $(DBC) $(libdb) -- $(CC) -o $@ $(LDFLAGS) $(DBC) $(libdb) $(LIBS) -+db_deadlock: $(DBC) $(libdbso) -+ $(CC) -o $@ $(LDFLAGS) $(DBC) $(LIBS) - - DBD= db_dump.o $(POBJS) --db_dump: $(DBD) $(libdb) -- $(CC) -o $@ $(LDFLAGS) $(DBD) $(libdb) $(LIBS) -+db_dump: $(DBD) $(libdbso) -+ $(CC) -o $@ $(LDFLAGS) $(DBD) $(LIBS) - - DBE= db_dump185.o $(POBJS) - db_dump185: $(DBE) - $(CC) -o $@ $(LDFLAGS) $(DBE) $(LIBS) - - DBF= db_load.o $(POBJS) --db_load: $(DBF) $(libdb) -- $(CC) -o $@ $(LDFLAGS) $(DBF) $(libdb) $(LIBS) -+db_load: $(DBF) $(libdbso) -+ $(CC) -o $@ $(LDFLAGS) $(DBF) $(LIBS) - - DBG= db_printlog.o $(POBJS) --db_printlog: $(DBG) $(libdb) -- $(CC) -o $@ $(LDFLAGS) $(DBG) $(libdb) $(LIBS) -+db_printlog: $(DBG) $(libdbso) -+ $(CC) -o $@ $(LDFLAGS) $(DBG) $(LIBS) - - DBH= db_recover.o $(POBJS) --db_recover: $(DBH) $(libdb) -- $(CC) -o $@ $(LDFLAGS) $(DBH) $(libdb) $(LIBS) -+db_recover: $(DBH) $(libdbso) -+ $(CC) -o $@ $(LDFLAGS) $(DBH) $(LIBS) - - DBI= db_stat.o $(POBJS) --db_stat: $(DBI) $(libdb) -- $(CC) -o $@ $(LDFLAGS) $(DBI) $(libdb) $(LIBS) -+db_stat: $(DBI) $(libdbso) -+ $(CC) -o $@ $(LDFLAGS) $(DBI) $(LIBS) - - EPROGS= ex_access ex_appinit ex_btrec ex_lock ex_mpool ex_thread ex_tpcb - DBJ= ex_access.o --ex_access: $(DBJ) $(libdb) -- $(CC) -o $@ $(LDFLAGS) $(DBJ) $(libdb) $(LIBS) -+ex_access: $(DBJ) $(libdbso) -+ $(CC) -o $@ $(LDFLAGS) $(DBJ) $(LIBS) - - DBK= ex_appinit.o --ex_appinit: $(DBK) $(libdb) -- $(CC) -o $@ $(LDFLAGS) $(DBK) $(libdb) $(LIBS) -+ex_appinit: $(DBK) $(libdbso) -+ $(CC) -o $@ $(LDFLAGS) $(DBK) $(LIBS) - - DBL= ex_btrec.o --ex_btrec: $(DBL) $(libdb) -- $(CC) -o $@ $(LDFLAGS) $(DBL) $(libdb) $(LIBS) -+ex_btrec: $(DBL) $(libdbso) -+ $(CC) -o $@ $(LDFLAGS) $(DBL) $(LIBS) - - DBM= ex_lock.o $(POBJS) --ex_lock: $(DBM) $(libdb) -- $(CC) -o $@ $(LDFLAGS) $(DBM) $(libdb) $(LIBS) -+ex_lock: $(DBM) $(libdbso) -+ $(CC) -o $@ $(LDFLAGS) $(DBM) $(LIBS) - - DBN= ex_mpool.o --ex_mpool: $(DBN) $(libdb) -- $(CC) -o $@ $(LDFLAGS) $(DBN) $(libdb) $(LIBS) -+ex_mpool: $(DBN) $(libdbso) -+ $(CC) -o $@ $(LDFLAGS) $(DBN) $(LIBS) - - DBO= ex_thread.o --ex_thread: $(DBO) $(libdb) -- $(CC) -o $@ $(LDFLAGS) $(DBO) $(libdb) $(LIBS) -+ex_thread: $(DBO) $(libdbso) -+ $(CC) -o $@ $(LDFLAGS) $(DBO) $(LIBS) - - DBP= ex_tpcb.o $(POBJS) --ex_tpcb: $(DBP) $(libdb) -- $(CC) -o $@ $(LDFLAGS) $(DBP) $(libdb) $(LIBS) -+ex_tpcb: $(DBP) $(libdbso) -+ $(CC) -o $@ $(LDFLAGS) $(DBP) $(LIBS) - - DBT= tclAppInit.o tcl_dbm.o tcl_hsearch.o tcl_lock.o tcl_log.o tcl_mpool.o \ - tcl_mutex.o tcl_ndbm.o tcl_txn.o utils.o $(POBJS) - - dbtest: .dbtestrc --dbtest: $(DBT) $(libdb) -- $(CC) -o $@ $(LDFLAGS) $(DBT) $(libdb) $(LIBS) -+dbtest: $(DBT) $(libdbso) -+ $(CC) -o $@ $(LDFLAGS) $(DBT) $(LIBS) - - AOBJS= err.o getcwd.o getlong.o getopt.o memcmp.o memcpy.o memmove.o \ - raise.o snprintf.o strerror.o strsep.o vsnprintf.o -@@ -131,8 +140,8 @@ - $(rm) -f $(DBA) $(DBB) $(DBC) $(DBD) $(DBE) $(DBF) $(DBG) $(DBH) - $(rm) -f $(DBI) $(DBJ) $(DBK) $(DBL) $(DBM) $(DBN) $(DBO) $(DBP) - $(rm) -f $(DBT) -- $(rm) -f $(PROGS) $(EPROGS) $(POBJS) $(LOBJS) @build_test@ -- $(rm) -f core *.core .dbtestrc $(libdb) -+ $(rm) -f $(PROGS) $(EPROGS) $(POBJS) $(LOBJS) *.so @build_test@ -+ $(rm) -f core *.core .dbtestrc $(libdb) $(libdbso) - - depend obj: - -@@ -141,11 +150,11 @@ - $(rm) -f confdefs.h db.h db_int.h db_185.h include.tcl - - prefix= @prefix@ --bindir= $(prefix)/BerkeleyDB/bin --datadir=$(prefix)/BerkeleyDB/share --includedir=$(prefix)/BerkeleyDB/include --libdir= $(prefix)/BerkeleyDB/lib --mandir= $(prefix)/BerkeleyDB/docs -+bindir= $(prefix)/bin -+datadir=$(prefix)/share/db2 -+includedir=$(prefix)/include/db2 -+libdir= $(prefix)/lib -+mandir= $(prefix)/share/doc/db2 - - dmode= 755 - emode= 555 -@@ -170,6 +179,9 @@ - @cd $(libdir) && $(rm) -f $(libdb) - @$(cp) -p $(libdb) $(libdir) - @cd $(libdir) && $(chmod) $(fmode) $(libdb) -+ @$(cp) -p $(libdbso) $(libdir) -+ @cd $(libdir) && $(chmod) $(fmode) $(libdbso) -+ ln -sf $(libdbso) $(libdir)/libdb2.so - @echo "Installing DB utilities: $(bindir) ..." - @test -d $(bindir) || \ - ($(mkdir) -p $(bindir) && $(chmod) $(dmode) $(bindir)) -@@ -506,3 +518,320 @@ - $(CC) $(CFLAGS) $? - vsnprintf.o: $(srcdir)/clib/vsnprintf.c - $(CC) $(CFLAGS) $? -+ -+# Shared build -+# Programs. -+db_archive.so: $(srcdir)/db_archive/db_archive.c -+ $(CC) $(CFLAGS) $(SHAREDFLAGS) $? -o $@ -+db_checkpoint.so: $(srcdir)/db_checkpoint/db_checkpoint.c -+ $(CC) $(CFLAGS) $(SHAREDFLAGS) $? -o $@ -+db_deadlock.so: $(srcdir)/db_deadlock/db_deadlock.c -+ $(CC) $(CFLAGS) $(SHAREDFLAGS) $? -o $@ -+db_dump.so: $(srcdir)/db_dump/db_dump.c -+ $(CC) $(CFLAGS) $(SHAREDFLAGS) $? -o $@ -+db_dump185.so: $(srcdir)/db_dump185/db_dump185.c -+ $(CC) $(CFLAGS) $(SHAREDFLAGS) $? -o $@ -+db_load.so: $(srcdir)/db_load/db_load.c -+ $(CC) $(CFLAGS) $(SHAREDFLAGS) $? -o $@ -+db_printlog.so: $(srcdir)/db_printlog/db_printlog.c -+ $(CC) $(CFLAGS) $(SHAREDFLAGS) $? -o $@ -+db_recover.so: $(srcdir)/db_recover/db_recover.c -+ $(CC) $(CFLAGS) $(SHAREDFLAGS) $? -o $@ -+db_stat.so: $(srcdir)/db_stat/db_stat.c -+ $(CC) $(CFLAGS) $(SHAREDFLAGS) $? -o $@ -+ -+# Examples. -+ex_access.so: $(srcdir)/examples/ex_access.c -+ $(CC) $(CFLAGS) $(SHAREDFLAGS) $? -o $@ -+ex_appinit.so: $(srcdir)/examples/ex_appinit.c -+ $(CC) $(CFLAGS) $(SHAREDFLAGS) $? -o $@ -+ex_btrec.so: $(srcdir)/examples/ex_btrec.c -+ $(CC) $(CFLAGS) $(SHAREDFLAGS) $? -o $@ -+ex_lock.so: $(srcdir)/examples/ex_lock.c -+ $(CC) $(CFLAGS) $(SHAREDFLAGS) $? -o $@ -+ex_mpool.so: $(srcdir)/examples/ex_mpool.c -+ $(CC) $(CFLAGS) $(SHAREDFLAGS) $? -o $@ -+ex_thread.so: $(srcdir)/examples/ex_thread.c -+ $(CC) $(CFLAGS) $(SHAREDFLAGS) $? -o $@ -+ex_tpcb.so: $(srcdir)/examples/ex_tpcb.c -+ $(CC) $(CFLAGS) $(SHAREDFLAGS) $? -o $@ -+ -+# DB files. -+db.so: $(srcdir)/db/db.c -+ $(CC) $(CFLAGS) $(SHAREDFLAGS) $? -o $@ -+db_am.so: $(srcdir)/db/db_am.c -+ $(CC) $(CFLAGS) $(SHAREDFLAGS) $? -o $@ -+db_auto.so: $(srcdir)/db/db_auto.c -+ $(CC) $(CFLAGS) $(SHAREDFLAGS) $? -o $@ -+db_conv.so: $(srcdir)/db/db_conv.c -+ $(CC) $(CFLAGS) $(SHAREDFLAGS) $? -o $@ -+db_dispatch.so: $(srcdir)/db/db_dispatch.c -+ $(CC) $(CFLAGS) $(SHAREDFLAGS) $? -o $@ -+db_dup.so: $(srcdir)/db/db_dup.c -+ $(CC) $(CFLAGS) $(SHAREDFLAGS) $? -o $@ -+db_iface.so: $(srcdir)/db/db_iface.c -+ $(CC) $(CFLAGS) $(SHAREDFLAGS) $? -o $@ -+db_join.so: $(srcdir)/db/db_join.c -+ $(CC) $(CFLAGS) $(SHAREDFLAGS) $? -o $@ -+db_overflow.so: $(srcdir)/db/db_overflow.c -+ $(CC) $(CFLAGS) $(SHAREDFLAGS) $? -o $@ -+db_pr.so: $(srcdir)/db/db_pr.c -+ $(CC) $(CFLAGS) $(SHAREDFLAGS) $? -o $@ -+db_rec.so: $(srcdir)/db/db_rec.c -+ $(CC) $(CFLAGS) $(SHAREDFLAGS) $? -o $@ -+db_ret.so: $(srcdir)/db/db_ret.c -+ $(CC) $(CFLAGS) $(SHAREDFLAGS) $? -o $@ -+ -+# Btree source files. -+bt_compare.so: $(srcdir)/btree/bt_compare.c -+ $(CC) $(CFLAGS) $(SHAREDFLAGS) $? -o $@ -+bt_conv.so: $(srcdir)/btree/bt_conv.c -+ $(CC) $(CFLAGS) $(SHAREDFLAGS) $? -o $@ -+bt_curadj.so: $(srcdir)/btree/bt_curadj.c -+ $(CC) $(CFLAGS) $(SHAREDFLAGS) $? -o $@ -+bt_cursor.so: $(srcdir)/btree/bt_cursor.c -+ $(CC) $(CFLAGS) $(SHAREDFLAGS) $? -o $@ -+bt_delete.so: $(srcdir)/btree/bt_delete.c -+ $(CC) $(CFLAGS) $(SHAREDFLAGS) $? -o $@ -+bt_open.so: $(srcdir)/btree/bt_open.c -+ $(CC) $(CFLAGS) $(SHAREDFLAGS) $? -o $@ -+bt_page.so: $(srcdir)/btree/bt_page.c -+ $(CC) $(CFLAGS) $(SHAREDFLAGS) $? -o $@ -+bt_put.so: $(srcdir)/btree/bt_put.c -+ $(CC) $(CFLAGS) $(SHAREDFLAGS) $? -o $@ -+bt_rec.so: $(srcdir)/btree/bt_rec.c -+ $(CC) $(CFLAGS) $(SHAREDFLAGS) $? -o $@ -+bt_recno.so: $(srcdir)/btree/bt_recno.c -+ $(CC) $(CFLAGS) $(SHAREDFLAGS) $? -o $@ -+bt_rsearch.so: $(srcdir)/btree/bt_rsearch.c -+ $(CC) $(CFLAGS) $(SHAREDFLAGS) $? -o $@ -+bt_search.so: $(srcdir)/btree/bt_search.c -+ $(CC) $(CFLAGS) $(SHAREDFLAGS) $? -o $@ -+bt_split.so: $(srcdir)/btree/bt_split.c -+ $(CC) $(CFLAGS) $(SHAREDFLAGS) $? -o $@ -+bt_stack.so: $(srcdir)/btree/bt_stack.c -+ $(CC) $(CFLAGS) $(SHAREDFLAGS) $? -o $@ -+bt_stat.so: $(srcdir)/btree/bt_stat.c -+ $(CC) $(CFLAGS) $(SHAREDFLAGS) $? -o $@ -+btree_auto.so: $(srcdir)/btree/btree_auto.c -+ $(CC) $(CFLAGS) $(SHAREDFLAGS) $? -o $@ -+ -+# C++ interface files. -+cxx_app.so: $(srcdir)/cxx/cxx_app.cpp -+ $(CXX) $(CXXFLAGS) $(SHAREDFLAGS) $? -o $@ -+cxx_except.so: $(srcdir)/cxx/cxx_except.cpp -+ $(CXX) $(CXXFLAGS) $(SHAREDFLAGS) $? -o $@ -+cxx_lock.so: $(srcdir)/cxx/cxx_lock.cpp -+ $(CXX) $(CXXFLAGS) $(SHAREDFLAGS) $? -o $@ -+cxx_log.so: $(srcdir)/cxx/cxx_log.cpp -+ $(CXX) $(CXXFLAGS) $(SHAREDFLAGS) $? -o $@ -+cxx_mpool.so: $(srcdir)/cxx/cxx_mpool.cpp -+ $(CXX) $(CXXFLAGS) $(SHAREDFLAGS) $? -o $@ -+cxx_table.so: $(srcdir)/cxx/cxx_table.cpp -+ $(CXX) $(CXXFLAGS) $(SHAREDFLAGS) $? -o $@ -+cxx_txn.so: $(srcdir)/cxx/cxx_txn.cpp -+ $(CXX) $(CXXFLAGS) $(SHAREDFLAGS) $? -o $@ -+ -+# Hash source files. -+hash_auto.so: $(srcdir)/hash/hash_auto.c -+ $(CC) $(CFLAGS) $(SHAREDFLAGS) $? -o $@ -+hash.so: $(srcdir)/hash/hash.c -+ $(CC) $(CFLAGS) $(SHAREDFLAGS) $? -o $@ -+hash_conv.so: $(srcdir)/hash/hash_conv.c -+ $(CC) $(CFLAGS) $(SHAREDFLAGS) $? -o $@ -+hash_dup.so: $(srcdir)/hash/hash_dup.c -+ $(CC) $(CFLAGS) $(SHAREDFLAGS) $? -o $@ -+hash_func.so: $(srcdir)/hash/hash_func.c -+ $(CC) $(CFLAGS) $(SHAREDFLAGS) $? -o $@ -+hash_page.so: $(srcdir)/hash/hash_page.c -+ $(CC) $(CFLAGS) $(SHAREDFLAGS) $? -o $@ -+hash_rec.so: $(srcdir)/hash/hash_rec.c -+ $(CC) $(CFLAGS) $(SHAREDFLAGS) $? -o $@ -+hash_stat.so: $(srcdir)/hash/hash_stat.c -+ $(CC) $(CFLAGS) $(SHAREDFLAGS) $? -o $@ -+ -+# Lock source files. -+lock.so: $(srcdir)/lock/lock.c -+ $(CC) $(CFLAGS) $(SHAREDFLAGS) $? -o $@ -+lock_conflict.so:$(srcdir)/lock/lock_conflict.c -+ $(CC) $(CFLAGS) $(SHAREDFLAGS) $? -o $@ -+lock_deadlock.so:$(srcdir)/lock/lock_deadlock.c -+ $(CC) $(CFLAGS) $(SHAREDFLAGS) $? -o $@ -+lock_region.so:$(srcdir)/lock/lock_region.c -+ $(CC) $(CFLAGS) $(SHAREDFLAGS) $? -o $@ -+lock_util.so:$(srcdir)/lock/lock_util.c -+ $(CC) $(CFLAGS) $(SHAREDFLAGS) $? -o $@ -+ -+# Log source files. -+log.so: $(srcdir)/log/log.c -+ $(CC) $(CFLAGS) $(SHAREDFLAGS) $? -o $@ -+log_archive.so: $(srcdir)/log/log_archive.c -+ $(CC) $(CFLAGS) $(SHAREDFLAGS) $? -o $@ -+log_auto.so: $(srcdir)/log/log_auto.c -+ $(CC) $(CFLAGS) $(SHAREDFLAGS) $? -o $@ -+log_compare.so: $(srcdir)/log/log_compare.c -+ $(CC) $(CFLAGS) $(SHAREDFLAGS) $? -o $@ -+log_findckp.so: $(srcdir)/log/log_findckp.c -+ $(CC) $(CFLAGS) $(SHAREDFLAGS) $? -o $@ -+log_get.so: $(srcdir)/log/log_get.c -+ $(CC) $(CFLAGS) $(SHAREDFLAGS) $? -o $@ -+log_put.so: $(srcdir)/log/log_put.c -+ $(CC) $(CFLAGS) $(SHAREDFLAGS) $? -o $@ -+log_rec.so: $(srcdir)/log/log_rec.c -+ $(CC) $(CFLAGS) $(SHAREDFLAGS) $? -o $@ -+log_register.so: $(srcdir)/log/log_register.c -+ $(CC) $(CFLAGS) $(SHAREDFLAGS) $? -o $@ -+ -+# Mpool source files. -+mp_bh.so: $(srcdir)/mp/mp_bh.c -+ $(CC) $(CFLAGS) $(SHAREDFLAGS) $? -o $@ -+mp_fget.so: $(srcdir)/mp/mp_fget.c -+ $(CC) $(CFLAGS) $(SHAREDFLAGS) $? -o $@ -+mp_fopen.so: $(srcdir)/mp/mp_fopen.c -+ $(CC) $(CFLAGS) $(SHAREDFLAGS) $? -o $@ -+mp_fput.so: $(srcdir)/mp/mp_fput.c -+ $(CC) $(CFLAGS) $(SHAREDFLAGS) $? -o $@ -+mp_fset.so: $(srcdir)/mp/mp_fset.c -+ $(CC) $(CFLAGS) $(SHAREDFLAGS) $? -o $@ -+mp_open.so: $(srcdir)/mp/mp_open.c -+ $(CC) $(CFLAGS) $(SHAREDFLAGS) $? -o $@ -+mp_pr.so: $(srcdir)/mp/mp_pr.c -+ $(CC) $(CFLAGS) $(SHAREDFLAGS) $? -o $@ -+mp_region.so: $(srcdir)/mp/mp_region.c -+ $(CC) $(CFLAGS) $(SHAREDFLAGS) $? -o $@ -+mp_sync.so: $(srcdir)/mp/mp_sync.c -+ $(CC) $(CFLAGS) $(SHAREDFLAGS) $? -o $@ -+ -+# Mutex source files. -+mutex.so: $(srcdir)/mutex/mutex.c -+ $(CC) $(CFLAGS) $(SHAREDFLAGS) $? -o $@ -+# XXX -+# UTS4 spinlocks -+uts4_cc.so: $(srcdir)/mutex/uts4_cc.s -+ $(AS) $(ASFLAGS) $(SHAREDFLAGS) -o $@ $? -o $@ -+ -+# Transaction source files. -+txn.so: $(srcdir)/txn/txn.c -+ $(CC) $(CFLAGS) $(SHAREDFLAGS) $? -o $@ -+txn_auto.so: $(srcdir)/txn/txn_auto.c -+ $(CC) $(CFLAGS) $(SHAREDFLAGS) $? -o $@ -+txn_rec.so: $(srcdir)/txn/txn_rec.c -+ $(CC) $(CFLAGS) $(SHAREDFLAGS) $? -o $@ -+ -+# XA source files. -+xa.so: $(srcdir)/xa/xa.c -+ $(CC) $(CFLAGS) $(SHAREDFLAGS) $? -o $@ -+xa_db.so: $(srcdir)/xa/xa_db.c -+ $(CC) $(CFLAGS) $(SHAREDFLAGS) $? -o $@ -+xa_map.so: $(srcdir)/xa/xa_map.c -+ $(CC) $(CFLAGS) $(SHAREDFLAGS) $? -o $@ -+ -+# Historic interfaces. -+hsearch.so: $(srcdir)/hsearch/hsearch.c -+ $(CC) $(CFLAGS) $(SHAREDFLAGS) $? -o $@ -+dbm.so: $(srcdir)/dbm/dbm.c -+ $(CC) $(CFLAGS) $(SHAREDFLAGS) $? -o $@ -+db185.so: $(srcdir)/db185/db185.c -+ $(CC) $(CFLAGS) $(SHAREDFLAGS) $? -o $@ -+ -+# Common source files. -+db_appinit.so: $(srcdir)/common/db_appinit.c -+ $(CC) $(CFLAGS) $(SHAREDFLAGS) $? -o $@ -+db_apprec.so: $(srcdir)/common/db_apprec.c -+ $(CC) $(CFLAGS) $(SHAREDFLAGS) $? -o $@ -+db_byteorder.so: $(srcdir)/common/db_byteorder.c -+ $(CC) $(CFLAGS) $(SHAREDFLAGS) $? -o $@ -+db_err.so: $(srcdir)/common/db_err.c -+ $(CC) $(CFLAGS) $(SHAREDFLAGS) $? -o $@ -+db_log2.so: $(srcdir)/common/db_log2.c -+ $(CC) $(CFLAGS) $(SHAREDFLAGS) $? -o $@ -+db_region.so: $(srcdir)/common/db_region.c -+ $(CC) $(CFLAGS) $(SHAREDFLAGS) $? -o $@ -+db_salloc.so: $(srcdir)/common/db_salloc.c -+ $(CC) $(CFLAGS) $(SHAREDFLAGS) $? -o $@ -+db_shash.so: $(srcdir)/common/db_shash.c -+ $(CC) $(CFLAGS) $(SHAREDFLAGS) $? -o $@ -+ -+# OS specific source files. -+os_abs.so: $(srcdir)/os/os_abs.c -+ $(CC) $(CFLAGS) $(SHAREDFLAGS) $? -o $@ -+os_alloc.so: $(srcdir)/os/os_alloc.c -+ $(CC) $(CFLAGS) $(SHAREDFLAGS) $? -o $@ -+os_config.so: $(srcdir)/os/os_config.c -+ $(CC) $(CFLAGS) $(SHAREDFLAGS) $? -o $@ -+os_dir.so: $(srcdir)/os/os_dir.c -+ $(CC) $(CFLAGS) $(SHAREDFLAGS) $? -o $@ -+os_fid.so: $(srcdir)/os/os_fid.c -+ $(CC) $(CFLAGS) $(SHAREDFLAGS) $? -o $@ -+os_fsync.so: $(srcdir)/os/os_fsync.c -+ $(CC) $(CFLAGS) $(SHAREDFLAGS) $? -o $@ -+os_map.so: $(srcdir)/os/os_map.c -+ $(CC) $(CFLAGS) $(SHAREDFLAGS) $? -o $@ -+os_oflags.so: $(srcdir)/os/os_oflags.c -+ $(CC) $(CFLAGS) $(SHAREDFLAGS) $? -o $@ -+os_open.so: $(srcdir)/os/os_open.c -+ $(CC) $(CFLAGS) $(SHAREDFLAGS) $? -o $@ -+os_rpath.so: $(srcdir)/os/os_rpath.c -+ $(CC) $(CFLAGS) $(SHAREDFLAGS) $? -o $@ -+os_rw.so: $(srcdir)/os/os_rw.c -+ $(CC) $(CFLAGS) $(SHAREDFLAGS) $? -o $@ -+os_seek.so: $(srcdir)/os/os_seek.c -+ $(CC) $(CFLAGS) $(SHAREDFLAGS) $? -o $@ -+os_sleep.so: $(srcdir)/os/os_sleep.c -+ $(CC) $(CFLAGS) $(SHAREDFLAGS) $? -o $@ -+os_spin.so: $(srcdir)/os/os_spin.c -+ $(CC) $(CFLAGS) $(SHAREDFLAGS) $? -o $@ -+os_stat.so: $(srcdir)/os/os_stat.c -+ $(CC) $(CFLAGS) $(SHAREDFLAGS) $? -o $@ -+os_tmpdir.so: $(srcdir)/os/os_tmpdir.c -+ $(CC) $(CFLAGS) $(SHAREDFLAGS) $? -o $@ -+os_unlink.so: $(srcdir)/os/os_unlink.c -+ $(CC) $(CFLAGS) $(SHAREDFLAGS) $? -o $@ -+ -+# Test programs. -+tclAppInit.so: $(srcdir)/test/tclAppInit.c -+ $(CC) $(CFLAGS) $(SHAREDFLAGS) $? -o $@ -+tcl_dbm.so: $(srcdir)/test/tcl_dbm.c -+ $(CC) $(CFLAGS) $(SHAREDFLAGS) $? -o $@ -+tcl_hsearch.so: $(srcdir)/test/tcl_hsearch.c -+ $(CC) $(CFLAGS) $(SHAREDFLAGS) $? -o $@ -+tcl_lock.so: $(srcdir)/test/tcl_lock.c -+ $(CC) $(CFLAGS) $(SHAREDFLAGS) $? -o $@ -+tcl_log.so: $(srcdir)/test/tcl_log.c -+ $(CC) $(CFLAGS) $(SHAREDFLAGS) $? -o $@ -+tcl_mpool.so: $(srcdir)/test/tcl_mpool.c -+ $(CC) $(CFLAGS) $(SHAREDFLAGS) $? -o $@ -+tcl_mutex.so: $(srcdir)/test/tcl_mutex.c -+ $(CC) $(CFLAGS) $(SHAREDFLAGS) $? -o $@ -+tcl_ndbm.so: $(srcdir)/test/tcl_ndbm.c -+ $(CC) $(CFLAGS) $(SHAREDFLAGS) $? -o $@ -+tcl_txn.so: $(srcdir)/test/tcl_txn.c -+ $(CC) $(CFLAGS) $(SHAREDFLAGS) $? -o $@ -+utils.so: $(srcdir)/test/utils.c -+ $(CC) $(CFLAGS) $(SHAREDFLAGS) $? -o $@ -+ -+# Replacement source files. -+err.so: $(srcdir)/clib/err.c -+ $(CC) $(CFLAGS) $(SHAREDFLAGS) $? -o $@ -+getcwd.so: $(srcdir)/clib/getcwd.c -+ $(CC) $(CFLAGS) $(SHAREDFLAGS) $? -o $@ -+getlong.so: $(srcdir)/clib/getlong.c -+ $(CC) $(CFLAGS) $(SHAREDFLAGS) $? -o $@ -+getopt.so: $(srcdir)/clib/getopt.c -+ $(CC) $(CFLAGS) $(SHAREDFLAGS) $? -o $@ -+memcmp.so: $(srcdir)/clib/memcmp.c -+ $(CC) $(CFLAGS) $(SHAREDFLAGS) $? -o $@ -+memcpy.so: $(srcdir)/clib/memmove.c -+ $(CC) -DMEMCOPY $(CFLAGS) $(SHAREDFLAGS) $? -o $@ -+memmove.so: $(srcdir)/clib/memmove.c -+ $(CC) -DMEMMOVE $(CFLAGS) $(SHAREDFLAGS) $? -o $@ -+raise.so: $(srcdir)/clib/raise.c -+ $(CC) $(CFLAGS) $(SHAREDFLAGS) $? -o $@ -+snprintf.so: $(srcdir)/clib/snprintf.c -+ $(CC) $(CFLAGS) $(SHAREDFLAGS) $? -o $@ -+strerror.so: $(srcdir)/clib/strerror.c -+ $(CC) $(CFLAGS) $(SHAREDFLAGS) $? -o $@ -+strsep.so: $(srcdir)/clib/strsep.c -+ $(CC) $(CFLAGS) $(SHAREDFLAGS) $? -o $@ -+vsnprintf.so: $(srcdir)/clib/vsnprintf.c -+ $(CC) $(CFLAGS) $(SHAREDFLAGS) $? -o $@ diff --git a/databases/db43/pkg-comment b/databases/db43/pkg-comment deleted file mode 100644 index 39a54a240320..000000000000 --- a/databases/db43/pkg-comment +++ /dev/null @@ -1 +0,0 @@ -The Berkeley DB package, revision 2 diff --git a/databases/db43/pkg-descr b/databases/db43/pkg-descr deleted file mode 100644 index b9ed34ee6d81..000000000000 --- a/databases/db43/pkg-descr +++ /dev/null @@ -1,13 +0,0 @@ -Revesion 2 of the Berkeley DB library. This version uses an incompatible -underlying database format than revision 1 and a different standard API. -Utilities are included in the distribution to convert v1.85 databases to v2 -databases, and a backwards compatible API is provided to maintain -compatibility with programs using the v1.85 interface. - -There are minor interface changes in this release which may require that DB -applications be modified and recompiled. For a complete discussion of -interface changes, see: - -http://www.sleepycat.com/update/ - -WWW: http://www.sleepycat.com diff --git a/databases/db43/pkg-plist b/databases/db43/pkg-plist deleted file mode 100644 index 961bc047a6e4..000000000000 --- a/databases/db43/pkg-plist +++ /dev/null @@ -1,564 +0,0 @@ -include/db2/db.h -include/db2/db_cxx.h -include/db2/db_185.h -lib/libdb2.a -lib/libdb2.so -lib/libdb2.so.0 -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 -share/doc/db2/api_c/Db/close.html -share/doc/db2/api_c/Db/cursor.html -share/doc/db2/api_c/Db/del.html -share/doc/db2/api_c/Db/fd.html -share/doc/db2/api_c/Db/get.html -share/doc/db2/api_c/Db/join.html -share/doc/db2/api_c/Db/open.html -share/doc/db2/api_c/Db/put.html -share/doc/db2/api_c/Db/stat.html -share/doc/db2/api_c/Db/sync.html -share/doc/db2/api_c/DbEnv/appexit.html -share/doc/db2/api_c/DbEnv/appinit.html -share/doc/db2/api_c/DbEnv/env.html -share/doc/db2/api_c/DbEnv/version.html -share/doc/db2/api_c/DbInfo/info.html -share/doc/db2/api_c/DbLock/put.html -share/doc/db2/api_c/DbLockTab/close.html -share/doc/db2/api_c/DbLockTab/detect.html -share/doc/db2/api_c/DbLockTab/get.html -share/doc/db2/api_c/DbLockTab/id.html -share/doc/db2/api_c/DbLockTab/open.html -share/doc/db2/api_c/DbLockTab/stat.html -share/doc/db2/api_c/DbLockTab/unlink.html -share/doc/db2/api_c/DbLockTab/vec.html -share/doc/db2/api_c/DbLog/archive.html -share/doc/db2/api_c/DbLog/close.html -share/doc/db2/api_c/DbLog/compare.html -share/doc/db2/api_c/DbLog/db_register.html -share/doc/db2/api_c/DbLog/db_unregister.html -share/doc/db2/api_c/DbLog/file.html -share/doc/db2/api_c/DbLog/flush.html -share/doc/db2/api_c/DbLog/get.html -share/doc/db2/api_c/DbLog/lsn.html -share/doc/db2/api_c/DbLog/open.html -share/doc/db2/api_c/DbLog/put.html -share/doc/db2/api_c/DbLog/stat.html -share/doc/db2/api_c/DbLog/unlink.html -share/doc/db2/api_c/DbMpool/close.html -share/doc/db2/api_c/DbMpool/db_register.html -share/doc/db2/api_c/DbMpool/open.html -share/doc/db2/api_c/DbMpool/stat.html -share/doc/db2/api_c/DbMpool/sync.html -share/doc/db2/api_c/DbMpool/trickle.html -share/doc/db2/api_c/DbMpool/unlink.html -share/doc/db2/api_c/DbMpoolFile/close.html -share/doc/db2/api_c/DbMpoolFile/get.html -share/doc/db2/api_c/DbMpoolFile/open.html -share/doc/db2/api_c/DbMpoolFile/put.html -share/doc/db2/api_c/DbMpoolFile/set.html -share/doc/db2/api_c/DbMpoolFile/sync.html -share/doc/db2/api_c/DbTxn/abort.html -share/doc/db2/api_c/DbTxn/commit.html -share/doc/db2/api_c/DbTxn/id.html -share/doc/db2/api_c/DbTxn/prepare.html -share/doc/db2/api_c/DbTxnMgr/begin.html -share/doc/db2/api_c/DbTxnMgr/checkpoint.html -share/doc/db2/api_c/DbTxnMgr/close.html -share/doc/db2/api_c/DbTxnMgr/open.html -share/doc/db2/api_c/DbTxnMgr/stat.html -share/doc/db2/api_c/DbTxnMgr/unlink.html -share/doc/db2/api_c/Dbc/close.html -share/doc/db2/api_c/Dbc/del.html -share/doc/db2/api_c/Dbc/get.html -share/doc/db2/api_c/Dbc/put.html -share/doc/db2/api_c/Dbt/dbt.html -share/doc/db2/api_c/historic/dbm.html -share/doc/db2/api_c/historic/hsearch.html -share/doc/db2/api_c/index/flags.html -share/doc/db2/api_c/index/function.html -share/doc/db2/api_c/index/structure.html -share/doc/db2/api_c/internal/db_jump_set.html -share/doc/db2/api_c/internal/db_value_set.html -share/doc/db2/api_cxx/Db/class.html -share/doc/db2/api_cxx/Db/close.html -share/doc/db2/api_cxx/Db/cursor.html -share/doc/db2/api_cxx/Db/del.html -share/doc/db2/api_cxx/Db/fd.html -share/doc/db2/api_cxx/Db/get.html -share/doc/db2/api_cxx/Db/get_byteswapped.html -share/doc/db2/api_cxx/Db/get_type.html -share/doc/db2/api_cxx/Db/join.html -share/doc/db2/api_cxx/Db/open.html -share/doc/db2/api_cxx/Db/put.html -share/doc/db2/api_cxx/Db/stat.html -share/doc/db2/api_cxx/Db/sync.html -share/doc/db2/api_cxx/DbEnv/appexit.html -share/doc/db2/api_cxx/DbEnv/appinit.html -share/doc/db2/api_cxx/DbEnv/class.html -share/doc/db2/api_cxx/DbEnv/get_lg_info.html -share/doc/db2/api_cxx/DbEnv/get_lk_info.html -share/doc/db2/api_cxx/DbEnv/get_mp_info.html -share/doc/db2/api_cxx/DbEnv/get_tx_info.html -share/doc/db2/api_cxx/DbEnv/set_errcall.html -share/doc/db2/api_cxx/DbEnv/set_errfile.html -share/doc/db2/api_cxx/DbEnv/set_error_model.html -share/doc/db2/api_cxx/DbEnv/set_error_stream.html -share/doc/db2/api_cxx/DbEnv/set_errpfx.html -share/doc/db2/api_cxx/DbEnv/set_lg_max.html -share/doc/db2/api_cxx/DbEnv/set_lk_conflicts.html -share/doc/db2/api_cxx/DbEnv/set_lk_detect.html -share/doc/db2/api_cxx/DbEnv/set_lk_max.html -share/doc/db2/api_cxx/DbEnv/set_lk_modes.html -share/doc/db2/api_cxx/DbEnv/set_lorder.html -share/doc/db2/api_cxx/DbEnv/set_mp_mmapsize.html -share/doc/db2/api_cxx/DbEnv/set_mp_size.html -share/doc/db2/api_cxx/DbEnv/set_tx_max.html -share/doc/db2/api_cxx/DbEnv/set_tx_recover.html -share/doc/db2/api_cxx/DbEnv/set_verbose.html -share/doc/db2/api_cxx/DbEnv/version.html -share/doc/db2/api_cxx/DbException/class.html -share/doc/db2/api_cxx/DbException/get_errno.html -share/doc/db2/api_cxx/DbException/what.html -share/doc/db2/api_cxx/DbInfo/class.html -share/doc/db2/api_cxx/DbInfo/set_bt_compare.html -share/doc/db2/api_cxx/DbInfo/set_bt_maxkey.html -share/doc/db2/api_cxx/DbInfo/set_bt_minkey.html -share/doc/db2/api_cxx/DbInfo/set_bt_prefix.html -share/doc/db2/api_cxx/DbInfo/set_cachesize.html -share/doc/db2/api_cxx/DbInfo/set_compare.html -share/doc/db2/api_cxx/DbInfo/set_flags.html -share/doc/db2/api_cxx/DbInfo/set_h_ffactor.html -share/doc/db2/api_cxx/DbInfo/set_h_hash.html -share/doc/db2/api_cxx/DbInfo/set_h_nelem.html -share/doc/db2/api_cxx/DbInfo/set_lorder.html -share/doc/db2/api_cxx/DbInfo/set_malloc.html -share/doc/db2/api_cxx/DbInfo/set_pagesize.html -share/doc/db2/api_cxx/DbInfo/set_re_delim.html -share/doc/db2/api_cxx/DbInfo/set_re_len.html -share/doc/db2/api_cxx/DbInfo/set_re_pad.html -share/doc/db2/api_cxx/DbInfo/set_re_source.html -share/doc/db2/api_cxx/DbLock/class.html -share/doc/db2/api_cxx/DbLock/put.html -share/doc/db2/api_cxx/DbLockTab/class.html -share/doc/db2/api_cxx/DbLockTab/close.html -share/doc/db2/api_cxx/DbLockTab/detect.html -share/doc/db2/api_cxx/DbLockTab/get.html -share/doc/db2/api_cxx/DbLockTab/id.html -share/doc/db2/api_cxx/DbLockTab/open.html -share/doc/db2/api_cxx/DbLockTab/stat.html -share/doc/db2/api_cxx/DbLockTab/unlink.html -share/doc/db2/api_cxx/DbLockTab/vec.html -share/doc/db2/api_cxx/DbLog/archive.html -share/doc/db2/api_cxx/DbLog/class.html -share/doc/db2/api_cxx/DbLog/close.html -share/doc/db2/api_cxx/DbLog/compare.html -share/doc/db2/api_cxx/DbLog/db_register.html -share/doc/db2/api_cxx/DbLog/db_unregister.html -share/doc/db2/api_cxx/DbLog/file.html -share/doc/db2/api_cxx/DbLog/flush.html -share/doc/db2/api_cxx/DbLog/get.html -share/doc/db2/api_cxx/DbLog/open.html -share/doc/db2/api_cxx/DbLog/put.html -share/doc/db2/api_cxx/DbLog/stat.html -share/doc/db2/api_cxx/DbLog/unlink.html -share/doc/db2/api_cxx/DbLsn/class.html -share/doc/db2/api_cxx/DbMpool/class.html -share/doc/db2/api_cxx/DbMpool/close.html -share/doc/db2/api_cxx/DbMpool/db_register.html -share/doc/db2/api_cxx/DbMpool/open.html -share/doc/db2/api_cxx/DbMpool/stat.html -share/doc/db2/api_cxx/DbMpool/sync.html -share/doc/db2/api_cxx/DbMpool/trickle.html -share/doc/db2/api_cxx/DbMpool/unlink.html -share/doc/db2/api_cxx/DbMpoolFile/class.html -share/doc/db2/api_cxx/DbMpoolFile/close.html -share/doc/db2/api_cxx/DbMpoolFile/get.html -share/doc/db2/api_cxx/DbMpoolFile/open.html -share/doc/db2/api_cxx/DbMpoolFile/put.html -share/doc/db2/api_cxx/DbMpoolFile/set.html -share/doc/db2/api_cxx/DbMpoolFile/sync.html -share/doc/db2/api_cxx/DbTxn/abort.html -share/doc/db2/api_cxx/DbTxn/class.html -share/doc/db2/api_cxx/DbTxn/commit.html -share/doc/db2/api_cxx/DbTxn/id.html -share/doc/db2/api_cxx/DbTxn/prepare.html -share/doc/db2/api_cxx/DbTxnMgr/begin.html -share/doc/db2/api_cxx/DbTxnMgr/checkpoint.html -share/doc/db2/api_cxx/DbTxnMgr/class.html -share/doc/db2/api_cxx/DbTxnMgr/close.html -share/doc/db2/api_cxx/DbTxnMgr/open.html -share/doc/db2/api_cxx/DbTxnMgr/stat.html -share/doc/db2/api_cxx/DbTxnMgr/unlink.html -share/doc/db2/api_cxx/Dbc/class.html -share/doc/db2/api_cxx/Dbc/close.html -share/doc/db2/api_cxx/Dbc/del.html -share/doc/db2/api_cxx/Dbc/get.html -share/doc/db2/api_cxx/Dbc/put.html -share/doc/db2/api_cxx/Dbt/class.html -share/doc/db2/api_cxx/index/class.html -share/doc/db2/api_java/Db/class.html -share/doc/db2/api_java/Db/close.html -share/doc/db2/api_java/Db/cursor.html -share/doc/db2/api_java/Db/del.html -share/doc/db2/api_java/Db/fd.html -share/doc/db2/api_java/Db/get.html -share/doc/db2/api_java/Db/get_byteswapped.html -share/doc/db2/api_java/Db/get_type.html -share/doc/db2/api_java/Db/join.html -share/doc/db2/api_java/Db/open.html -share/doc/db2/api_java/Db/put.html -share/doc/db2/api_java/Db/stat.html -share/doc/db2/api_java/Db/sync.html -share/doc/db2/api_java/DbEnv/appexit.html -share/doc/db2/api_java/DbEnv/appinit.html -share/doc/db2/api_java/DbEnv/class.html -share/doc/db2/api_java/DbEnv/get_lg_info.html -share/doc/db2/api_java/DbEnv/get_lk_info.html -share/doc/db2/api_java/DbEnv/get_mp_info.html -share/doc/db2/api_java/DbEnv/get_tx_info.html -share/doc/db2/api_java/DbEnv/set_errcall.html -share/doc/db2/api_java/DbEnv/set_error_stream.html -share/doc/db2/api_java/DbEnv/set_errpfx.html -share/doc/db2/api_java/DbEnv/set_lg_max.html -share/doc/db2/api_java/DbEnv/set_lk_conflicts.html -share/doc/db2/api_java/DbEnv/set_lk_detect.html -share/doc/db2/api_java/DbEnv/set_lk_max.html -share/doc/db2/api_java/DbEnv/set_lk_modes.html -share/doc/db2/api_java/DbEnv/set_lorder.html -share/doc/db2/api_java/DbEnv/set_mp_mmapsize.html -share/doc/db2/api_java/DbEnv/set_mp_size.html -share/doc/db2/api_java/DbEnv/set_tx_max.html -share/doc/db2/api_java/DbEnv/set_verbose.html -share/doc/db2/api_java/DbEnv/version.html -share/doc/db2/api_java/DbException/class.html -share/doc/db2/api_java/DbException/get_errno.html -share/doc/db2/api_java/DbInfo/class.html -share/doc/db2/api_java/DbInfo/set_bt_compare.html -share/doc/db2/api_java/DbInfo/set_bt_maxkey.html -share/doc/db2/api_java/DbInfo/set_bt_minkey.html -share/doc/db2/api_java/DbInfo/set_bt_prefix.html -share/doc/db2/api_java/DbInfo/set_cachesize.html -share/doc/db2/api_java/DbInfo/set_compare.html -share/doc/db2/api_java/DbInfo/set_flags.html -share/doc/db2/api_java/DbInfo/set_h_ffactor.html -share/doc/db2/api_java/DbInfo/set_h_hash.html -share/doc/db2/api_java/DbInfo/set_h_nelem.html -share/doc/db2/api_java/DbInfo/set_lorder.html -share/doc/db2/api_java/DbInfo/set_malloc.html -share/doc/db2/api_java/DbInfo/set_pagesize.html -share/doc/db2/api_java/DbInfo/set_re_delim.html -share/doc/db2/api_java/DbInfo/set_re_len.html -share/doc/db2/api_java/DbInfo/set_re_pad.html -share/doc/db2/api_java/DbInfo/set_re_source.html -share/doc/db2/api_java/DbLock/class.html -share/doc/db2/api_java/DbLock/put.html -share/doc/db2/api_java/DbLockTab/class.html -share/doc/db2/api_java/DbLockTab/close.html -share/doc/db2/api_java/DbLockTab/detect.html -share/doc/db2/api_java/DbLockTab/get.html -share/doc/db2/api_java/DbLockTab/id.html -share/doc/db2/api_java/DbLockTab/open.html -share/doc/db2/api_java/DbLockTab/stat.html -share/doc/db2/api_java/DbLockTab/unlink.html -share/doc/db2/api_java/DbLockTab/vec.html -share/doc/db2/api_java/DbLog/archive.html -share/doc/db2/api_java/DbLog/class.html -share/doc/db2/api_java/DbLog/close.html -share/doc/db2/api_java/DbLog/compare.html -share/doc/db2/api_java/DbLog/db_register.html -share/doc/db2/api_java/DbLog/db_unregister.html -share/doc/db2/api_java/DbLog/file.html -share/doc/db2/api_java/DbLog/flush.html -share/doc/db2/api_java/DbLog/get.html -share/doc/db2/api_java/DbLog/open.html -share/doc/db2/api_java/DbLog/put.html -share/doc/db2/api_java/DbLog/stat.html -share/doc/db2/api_java/DbLog/unlink.html -share/doc/db2/api_java/DbLsn/class.html -share/doc/db2/api_java/DbMpool/class.html -share/doc/db2/api_java/DbMpool/close.html -share/doc/db2/api_java/DbMpool/db_register.html -share/doc/db2/api_java/DbMpool/open.html -share/doc/db2/api_java/DbMpool/stat.html -share/doc/db2/api_java/DbMpool/sync.html -share/doc/db2/api_java/DbMpool/trickle.html -share/doc/db2/api_java/DbMpool/unlink.html -share/doc/db2/api_java/DbMpoolFile/class.html -share/doc/db2/api_java/DbMpoolFile/close.html -share/doc/db2/api_java/DbMpoolFile/get.html -share/doc/db2/api_java/DbMpoolFile/open.html -share/doc/db2/api_java/DbMpoolFile/put.html -share/doc/db2/api_java/DbMpoolFile/set.html -share/doc/db2/api_java/DbMpoolFile/sync.html -share/doc/db2/api_java/DbRunRecoveryException/class.html -share/doc/db2/api_java/DbTxn/abort.html -share/doc/db2/api_java/DbTxn/class.html -share/doc/db2/api_java/DbTxn/commit.html -share/doc/db2/api_java/DbTxn/id.html -share/doc/db2/api_java/DbTxn/prepare.html -share/doc/db2/api_java/DbTxnMgr/begin.html -share/doc/db2/api_java/DbTxnMgr/checkpoint.html -share/doc/db2/api_java/DbTxnMgr/class.html -share/doc/db2/api_java/DbTxnMgr/close.html -share/doc/db2/api_java/DbTxnMgr/open.html -share/doc/db2/api_java/DbTxnMgr/stat.html -share/doc/db2/api_java/DbTxnMgr/unlink.html -share/doc/db2/api_java/Dbc/class.html -share/doc/db2/api_java/Dbc/close.html -share/doc/db2/api_java/Dbc/del.html -share/doc/db2/api_java/Dbc/get.html -share/doc/db2/api_java/Dbc/put.html -share/doc/db2/api_java/Dbt/class.html -share/doc/db2/api_java/index/class.html -share/doc/db2/build/java.html -share/doc/db2/build/shared.html -share/doc/db2/build/shared_gcc.html -share/doc/db2/build/shared_hp.html -share/doc/db2/build/unix.html -share/doc/db2/build/unix_faq.html -share/doc/db2/build/win16.html -share/doc/db2/build/win32.html -share/doc/db2/build/win_faq.html -share/doc/db2/distrib/layout.html -share/doc/db2/images/folder.gif -share/doc/db2/images/folder_open.gif -share/doc/db2/images/next.gif -share/doc/db2/images/prev.gif -share/doc/db2/images/ps.gif -share/doc/db2/images/sleepycat.gif -share/doc/db2/images/toc.gif -share/doc/db2/index.html -share/doc/db2/packages/hash_usenix.ps -share/doc/db2/packages/index.html -share/doc/db2/packages/libtp_usenix.ps -share/doc/db2/packages/witold.html -share/doc/db2/ref/am/bt_compare.html -share/doc/db2/ref/am/bt_dup.html -share/doc/db2/ref/am/bt_maxkey.html -share/doc/db2/ref/am/bt_minkey.html -share/doc/db2/ref/am/bt_prefix.html -share/doc/db2/ref/am/bt_recnum.html -share/doc/db2/ref/am/byteorder.html -share/doc/db2/ref/am/cachesize.html -share/doc/db2/ref/am/close.html -share/doc/db2/ref/am/compare.html -share/doc/db2/ref/am/curclose.html -share/doc/db2/ref/am/curdel.html -share/doc/db2/ref/am/curget.html -share/doc/db2/ref/am/curput.html -share/doc/db2/ref/am/cursor.html -share/doc/db2/ref/am/delete.html -share/doc/db2/ref/am/get.html -share/doc/db2/ref/am/h_dup.html -share/doc/db2/ref/am/h_ffactor.html -share/doc/db2/ref/am/h_hash.html -share/doc/db2/ref/am/h_nelem.html -share/doc/db2/ref/am/intro.html -share/doc/db2/ref/am/join.html -share/doc/db2/ref/am/logrec.html -share/doc/db2/ref/am/malloc.html -share/doc/db2/ref/am/ops.html -share/doc/db2/ref/am/pagesize.html -share/doc/db2/ref/am/partial.html -share/doc/db2/ref/am/put.html -share/doc/db2/ref/am/re_delim.html -share/doc/db2/ref/am/re_len.html -share/doc/db2/ref/am/re_pad.html -share/doc/db2/ref/am/re_source.html -share/doc/db2/ref/am/renumber.html -share/doc/db2/ref/am/select.html -share/doc/db2/ref/am/stat.html -share/doc/db2/ref/am/sync.html -share/doc/db2/ref/arch/apis.html -share/doc/db2/ref/arch/bigpic.gif -share/doc/db2/ref/arch/bigpic.html -share/doc/db2/ref/arch/env.html -share/doc/db2/ref/arch/extending.html -share/doc/db2/ref/arch/progmodel.html -share/doc/db2/ref/arch/script.html -share/doc/db2/ref/arch/smallpic.gif -share/doc/db2/ref/arch/subsystem.html -share/doc/db2/ref/arch/utilities.html -share/doc/db2/ref/cam/intro.html -share/doc/db2/ref/debug/runtime.html -share/doc/db2/ref/dumpload/format.html -share/doc/db2/ref/dumpload/text.html -share/doc/db2/ref/dumpload/utility.html -share/doc/db2/ref/env/create.html -share/doc/db2/ref/env/naming.html -share/doc/db2/ref/env/open.html -share/doc/db2/ref/env/region.html -share/doc/db2/ref/env/security.html -share/doc/db2/ref/install/file.html -share/doc/db2/ref/install/magic.s5.be.txt -share/doc/db2/ref/install/magic.s5.le.txt -share/doc/db2/ref/install/magic.txt -share/doc/db2/ref/intro/distrib.html -share/doc/db2/ref/intro/do.html -share/doc/db2/ref/intro/what.html -share/doc/db2/ref/intro/where.html -share/doc/db2/ref/lock/stdmode.html -share/doc/db2/ref/log/config.html -share/doc/db2/ref/log/intro.html -share/doc/db2/ref/log/limits.html -share/doc/db2/ref/mp/config.html -share/doc/db2/ref/mp/intro.html -share/doc/db2/ref/perl/intro.html -share/doc/db2/ref/program/appsignals.html -share/doc/db2/ref/program/byteorder.html -share/doc/db2/ref/program/compatible.html -share/doc/db2/ref/program/convert.html -share/doc/db2/ref/program/dbsizes.html -share/doc/db2/ref/program/environ.html -share/doc/db2/ref/program/errorret.html -share/doc/db2/ref/program/java.html -share/doc/db2/ref/program/runtime.html -share/doc/db2/ref/program/solaris.txt -share/doc/db2/ref/program/thread.html -share/doc/db2/ref/program/version.html -share/doc/db2/ref/sendmail/intro.html -share/doc/db2/ref/simple_tut/close.html -share/doc/db2/ref/simple_tut/del.html -share/doc/db2/ref/simple_tut/errors.html -share/doc/db2/ref/simple_tut/example.txt -share/doc/db2/ref/simple_tut/get.html -share/doc/db2/ref/simple_tut/intro.html -share/doc/db2/ref/simple_tut/keydata.html -share/doc/db2/ref/simple_tut/open.html -share/doc/db2/ref/simple_tut/put.html -share/doc/db2/ref/toc.html -share/doc/db2/ref/transapp/admin.html -share/doc/db2/ref/transapp/apps.html -share/doc/db2/ref/transapp/archival.html -share/doc/db2/ref/transapp/checkpoint.html -share/doc/db2/ref/transapp/deadlock.html -share/doc/db2/ref/transapp/filesys.html -share/doc/db2/ref/transapp/intro.html -share/doc/db2/ref/transapp/recovery.html -share/doc/db2/ref/transapp/throughput.html -share/doc/db2/ref/transapp/writetest.txt -share/doc/db2/ref/txn/config.html -share/doc/db2/ref/txn/limits.html -share/doc/db2/ref/txn/other.html -share/doc/db2/ref/txn/stability.html -share/doc/db2/sleepycat/contact.html -share/doc/db2/sleepycat/products.html -share/doc/db2/test/build.html -share/doc/db2/test/build_faq.html -share/doc/db2/test/debug.html -share/doc/db2/test/run.html -share/doc/db2/utility/db_archive.html -share/doc/db2/utility/db_checkpoint.html -share/doc/db2/utility/db_deadlock.html -share/doc/db2/utility/db_dump.html -share/doc/db2/utility/db_load.html -share/doc/db2/utility/db_recover.html -share/doc/db2/utility/db_stat.html -share/doc/db2/utility/index.html -share/examples/db2/examples/README -share/examples/db2/examples/ex_access.c -share/examples/db2/examples/ex_appinit.c -share/examples/db2/examples/ex_btrec.c -share/examples/db2/examples/ex_lock.c -share/examples/db2/examples/ex_mpool.c -share/examples/db2/examples/ex_thread.c -share/examples/db2/examples/ex_tpcb.c -share/examples/db2/examples/ex_tpcb.h -share/examples/db2/examples_cxx/AccessExample.cpp -share/examples/db2/examples_cxx/AppinitExample.cpp -share/examples/db2/examples_cxx/LockExample.cpp -share/examples/db2/examples_cxx/MpoolExample.cpp -share/examples/db2/examples_cxx/TpcbExample.cpp -share/examples/db2/examples_java/AccessExample.java -share/examples/db2/examples_java/AppinitExample.java -share/examples/db2/examples_java/LockExample.java -share/examples/db2/examples_java/TpcbExample.java -@dirrm include/db2 -@dirrm share/examples/db2/examples -@dirrm share/examples/db2/examples_cxx -@dirrm share/examples/db2/examples_java -@dirrm share/examples/db2 -@dirrm share/doc/db2/api_c/DbTxn -@dirrm share/doc/db2/api_c/DbEnv -@dirrm share/doc/db2/api_c/DbInfo -@dirrm share/doc/db2/api_c/DbLock -@dirrm share/doc/db2/api_c/DbLockTab -@dirrm share/doc/db2/api_c/DbLog -@dirrm share/doc/db2/api_c/DbMpool -@dirrm share/doc/db2/api_c/DbMpoolFile -@dirrm share/doc/db2/api_c/Db -@dirrm share/doc/db2/api_c/DbTxnMgr -@dirrm share/doc/db2/api_c/Dbc -@dirrm share/doc/db2/api_c/Dbt -@dirrm share/doc/db2/api_c/historic -@dirrm share/doc/db2/api_c/index -@dirrm share/doc/db2/api_c/internal -@dirrm share/doc/db2/api_c/special -@dirrm share/doc/db2/api_c -@dirrm share/doc/db2/test -@dirrm share/doc/db2/sleepycat -@dirrm share/doc/db2/ref/txn -@dirrm share/doc/db2/ref/am -@dirrm share/doc/db2/ref/arch -@dirrm share/doc/db2/ref/cam -@dirrm share/doc/db2/ref/debug -@dirrm share/doc/db2/ref/dumpload -@dirrm share/doc/db2/ref/env -@dirrm share/doc/db2/ref/intro -@dirrm share/doc/db2/ref/install -@dirrm share/doc/db2/ref/lock -@dirrm share/doc/db2/ref/log -@dirrm share/doc/db2/ref/mp -@dirrm share/doc/db2/ref/perl -@dirrm share/doc/db2/ref/program -@dirrm share/doc/db2/ref/sendmail -@dirrm share/doc/db2/ref/simple_tut -@dirrm share/doc/db2/ref/transapp -@dirrm share/doc/db2/ref -@dirrm share/doc/db2/packages -@dirrm share/doc/db2/api_cxx/DbLsn -@dirrm share/doc/db2/api_cxx/Dbc -@dirrm share/doc/db2/api_cxx/DbEnv -@dirrm share/doc/db2/api_cxx/DbException -@dirrm share/doc/db2/api_cxx/DbInfo -@dirrm share/doc/db2/api_cxx/DbLock -@dirrm share/doc/db2/api_cxx/DbLockTab -@dirrm share/doc/db2/api_cxx/DbLog -@dirrm share/doc/db2/api_cxx/Db -@dirrm share/doc/db2/api_cxx/DbMpool -@dirrm share/doc/db2/api_cxx/DbMpoolFile -@dirrm share/doc/db2/api_cxx/DbTxn -@dirrm share/doc/db2/api_cxx/DbTxnMgr -@dirrm share/doc/db2/api_cxx/Dbt -@dirrm share/doc/db2/api_cxx/index -@dirrm share/doc/db2/api_cxx/special -@dirrm share/doc/db2/api_cxx -@dirrm share/doc/db2/utility -@dirrm share/doc/db2/distrib -@dirrm share/doc/db2/build -@dirrm share/doc/db2/api_java/DbMpool -@dirrm share/doc/db2/api_java/DbEnv -@dirrm share/doc/db2/api_java/DbException -@dirrm share/doc/db2/api_java/DbInfo -@dirrm share/doc/db2/api_java/DbLock -@dirrm share/doc/db2/api_java/DbLockTab -@dirrm share/doc/db2/api_java/DbLog -@dirrm share/doc/db2/api_java/DbLsn -@dirrm share/doc/db2/api_java/Db -@dirrm share/doc/db2/api_java/DbMpoolFile -@dirrm share/doc/db2/api_java/DbRunRecoveryException -@dirrm share/doc/db2/api_java/DbTxn -@dirrm share/doc/db2/api_java/DbTxnMgr -@dirrm share/doc/db2/api_java/Dbc -@dirrm share/doc/db2/api_java/Dbt -@dirrm share/doc/db2/api_java/index -@dirrm share/doc/db2/api_java/special -@dirrm share/doc/db2/api_java -@dirrm share/doc/db2/images -@dirrm share/doc/db2 diff --git a/databases/db44/Makefile b/databases/db44/Makefile deleted file mode 100644 index 9b1fe8a00a1e..000000000000 --- a/databases/db44/Makefile +++ /dev/null @@ -1,41 +0,0 @@ -# ports collection makefile for: Berkeley DB -# Date created: 26 Jan 1998 -# Whom: Josh Tiefenbach <josh@ican.net> -# -# $FreeBSD$ -# - -PORTNAME= db -PORTVERSION= 2.7.7 -CATEGORIES= databases -MASTER_SITES= http://www.sleepycat.com/update/${PORTVERSION}/ - -MAINTAINER= josh@ican.net - -Y2K= http://www.sleepycat.com/faq.html#A8 - -MANUAL_PACKAGE_BUILD= incompatible with libc internal db calls -WRKSRC= ${WRKDIR}/${DISTNAME}/build_unix - -INSTALLS_SHLIB= yes -GNU_CONFIGURE= yes -CONFIGURE_SCRIPT= ../dist/configure -CONFIGURE_ARGS= --enable-compat185 \ - --enable-dump185 --enable-cxx - -post-install: - ${MKDIR} ${PREFIX}/share/examples/db2 - cd ${WRKSRC}/..; \ - tar -cf - --exclude tags examples/ examples_cxx/ examples_java/ | \ - ( cd ${PREFIX}/share/examples/db2; tar xf - ) - @${ECHO_MSG} "" - @${ECHO_MSG} "Java support for ${PKGNAME} is *not* built by default, and requires that you" - @${ECHO_MSG} "have a working copy of the JDK (v1.1) installed." - @${ECHO_MSG} "" - @${ECHO_MSG} "To build java support, please read:" - @${ECHO_MSG} "" - @${ECHO_MSG} "${WRKDIR}/${DISTNAME}/java/README" - @${ECHO_MSG} "" - @${ECHO_MSG} "and follow the directions therein." - -.include <bsd.port.mk> diff --git a/databases/db44/distinfo b/databases/db44/distinfo deleted file mode 100644 index d761baf3bdff..000000000000 --- a/databases/db44/distinfo +++ /dev/null @@ -1 +0,0 @@ -MD5 (db-2.7.7.tar.gz) = 20256735091ee382c6601117d82d749a diff --git a/databases/db44/files/patch-aa b/databases/db44/files/patch-aa deleted file mode 100644 index db3d430758a2..000000000000 --- a/databases/db44/files/patch-aa +++ /dev/null @@ -1,506 +0,0 @@ ---- ../dist/Makefile.in.orig Mon Dec 7 21:05:59 1998 -+++ ../dist/Makefile.in Tue Jun 6 17:44:50 2000 -@@ -1,13 +1,16 @@ - # @(#)Makefile.in 10.62 (Sleepycat) 12/7/98 - -+SOVER?= 0 -+ - srcdir= @srcdir@/.. - CPPFLAGS=-I. -I$(srcdir)/include @CPPFLAGS@ -+SHAREDFLAGS= -fpic -DPIC - CFLAGS= -c @CFLAGS@ $(CPPFLAGS) - CC= @CC@ - CXXFLAGS=-c @CXXFLAGS@ $(CPPFLAGS) - CXX= @CXX@ --LDFLAGS=@LDFLAGS@ --LIBS= @LIBS@ -+LDFLAGS=@LDFLAGS@ -L. -+LIBS= @LIBS@ -ldb2 - - SHELL= @db_cv_path_sh@ - ar= @db_cv_path_ar@ cr -@@ -43,85 +46,91 @@ - LOBJS= @LIBOBJS@ - POBJS= err.o getlong.o - --libdb= libdb.a --all: $(libdb) $(PROGS) -+libdb= libdb2.a -+libdbso= libdb2.so.$(SOVER) -+all: $(libdb) $(libdbso) $(PROGS) - - $(libdb): db.h $(OBJS) $(LOBJS) - $(rm) -f $@ - $(ar) $@ $(OBJS) $(LOBJS) - test ! -f $(ranlib) || $(ranlib) $@ - -+$(libdbso): db.h $(OBJS:S/.o$/.so/g) $(LOBJS:S/.o$/.so/g) -+ $(rm) -f $@ -+ $(CXX) -shared -Wl,-x -Wl,-assert -Wl,pure-text -Wl,-soname,$@ -o $@ $(OBJS:S/.o$/.so/g) $(LOBJS:S/.o$/.so/g) -+ ln -sf $@ libdb2.so -+ - DBA= db_archive.o $(POBJS) --db_archive: $(DBA) $(libdb) -- $(CC) -o $@ $(LDFLAGS) $(DBA) $(libdb) $(LIBS) -+db_archive: $(DBA) $(libdbso) -+ $(CC) -o $@ $(LDFLAGS) $(DBA) $(LIBS) - - DBB= db_checkpoint.o $(POBJS) --db_checkpoint: $(DBB) $(libdb) -- $(CC) -o $@ $(LDFLAGS) $(DBB) $(libdb) $(LIBS) -+db_checkpoint: $(DBB) $(libdbso) -+ $(CC) -o $@ $(LDFLAGS) $(DBB) $(LIBS) - - DBC= db_deadlock.o $(POBJS) --db_deadlock: $(DBC) $(libdb) -- $(CC) -o $@ $(LDFLAGS) $(DBC) $(libdb) $(LIBS) -+db_deadlock: $(DBC) $(libdbso) -+ $(CC) -o $@ $(LDFLAGS) $(DBC) $(LIBS) - - DBD= db_dump.o $(POBJS) --db_dump: $(DBD) $(libdb) -- $(CC) -o $@ $(LDFLAGS) $(DBD) $(libdb) $(LIBS) -+db_dump: $(DBD) $(libdbso) -+ $(CC) -o $@ $(LDFLAGS) $(DBD) $(LIBS) - - DBE= db_dump185.o $(POBJS) - db_dump185: $(DBE) - $(CC) -o $@ $(LDFLAGS) $(DBE) $(LIBS) - - DBF= db_load.o $(POBJS) --db_load: $(DBF) $(libdb) -- $(CC) -o $@ $(LDFLAGS) $(DBF) $(libdb) $(LIBS) -+db_load: $(DBF) $(libdbso) -+ $(CC) -o $@ $(LDFLAGS) $(DBF) $(LIBS) - - DBG= db_printlog.o $(POBJS) --db_printlog: $(DBG) $(libdb) -- $(CC) -o $@ $(LDFLAGS) $(DBG) $(libdb) $(LIBS) -+db_printlog: $(DBG) $(libdbso) -+ $(CC) -o $@ $(LDFLAGS) $(DBG) $(LIBS) - - DBH= db_recover.o $(POBJS) --db_recover: $(DBH) $(libdb) -- $(CC) -o $@ $(LDFLAGS) $(DBH) $(libdb) $(LIBS) -+db_recover: $(DBH) $(libdbso) -+ $(CC) -o $@ $(LDFLAGS) $(DBH) $(LIBS) - - DBI= db_stat.o $(POBJS) --db_stat: $(DBI) $(libdb) -- $(CC) -o $@ $(LDFLAGS) $(DBI) $(libdb) $(LIBS) -+db_stat: $(DBI) $(libdbso) -+ $(CC) -o $@ $(LDFLAGS) $(DBI) $(LIBS) - - EPROGS= ex_access ex_appinit ex_btrec ex_lock ex_mpool ex_thread ex_tpcb - DBJ= ex_access.o --ex_access: $(DBJ) $(libdb) -- $(CC) -o $@ $(LDFLAGS) $(DBJ) $(libdb) $(LIBS) -+ex_access: $(DBJ) $(libdbso) -+ $(CC) -o $@ $(LDFLAGS) $(DBJ) $(LIBS) - - DBK= ex_appinit.o --ex_appinit: $(DBK) $(libdb) -- $(CC) -o $@ $(LDFLAGS) $(DBK) $(libdb) $(LIBS) -+ex_appinit: $(DBK) $(libdbso) -+ $(CC) -o $@ $(LDFLAGS) $(DBK) $(LIBS) - - DBL= ex_btrec.o --ex_btrec: $(DBL) $(libdb) -- $(CC) -o $@ $(LDFLAGS) $(DBL) $(libdb) $(LIBS) -+ex_btrec: $(DBL) $(libdbso) -+ $(CC) -o $@ $(LDFLAGS) $(DBL) $(LIBS) - - DBM= ex_lock.o $(POBJS) --ex_lock: $(DBM) $(libdb) -- $(CC) -o $@ $(LDFLAGS) $(DBM) $(libdb) $(LIBS) -+ex_lock: $(DBM) $(libdbso) -+ $(CC) -o $@ $(LDFLAGS) $(DBM) $(LIBS) - - DBN= ex_mpool.o --ex_mpool: $(DBN) $(libdb) -- $(CC) -o $@ $(LDFLAGS) $(DBN) $(libdb) $(LIBS) -+ex_mpool: $(DBN) $(libdbso) -+ $(CC) -o $@ $(LDFLAGS) $(DBN) $(LIBS) - - DBO= ex_thread.o --ex_thread: $(DBO) $(libdb) -- $(CC) -o $@ $(LDFLAGS) $(DBO) $(libdb) $(LIBS) -+ex_thread: $(DBO) $(libdbso) -+ $(CC) -o $@ $(LDFLAGS) $(DBO) $(LIBS) - - DBP= ex_tpcb.o $(POBJS) --ex_tpcb: $(DBP) $(libdb) -- $(CC) -o $@ $(LDFLAGS) $(DBP) $(libdb) $(LIBS) -+ex_tpcb: $(DBP) $(libdbso) -+ $(CC) -o $@ $(LDFLAGS) $(DBP) $(LIBS) - - DBT= tclAppInit.o tcl_dbm.o tcl_hsearch.o tcl_lock.o tcl_log.o tcl_mpool.o \ - tcl_mutex.o tcl_ndbm.o tcl_txn.o utils.o $(POBJS) - - dbtest: .dbtestrc --dbtest: $(DBT) $(libdb) -- $(CC) -o $@ $(LDFLAGS) $(DBT) $(libdb) $(LIBS) -+dbtest: $(DBT) $(libdbso) -+ $(CC) -o $@ $(LDFLAGS) $(DBT) $(LIBS) - - AOBJS= err.o getcwd.o getlong.o getopt.o memcmp.o memcpy.o memmove.o \ - raise.o snprintf.o strerror.o strsep.o vsnprintf.o -@@ -131,8 +140,8 @@ - $(rm) -f $(DBA) $(DBB) $(DBC) $(DBD) $(DBE) $(DBF) $(DBG) $(DBH) - $(rm) -f $(DBI) $(DBJ) $(DBK) $(DBL) $(DBM) $(DBN) $(DBO) $(DBP) - $(rm) -f $(DBT) -- $(rm) -f $(PROGS) $(EPROGS) $(POBJS) $(LOBJS) @build_test@ -- $(rm) -f core *.core .dbtestrc $(libdb) -+ $(rm) -f $(PROGS) $(EPROGS) $(POBJS) $(LOBJS) *.so @build_test@ -+ $(rm) -f core *.core .dbtestrc $(libdb) $(libdbso) - - depend obj: - -@@ -141,11 +150,11 @@ - $(rm) -f confdefs.h db.h db_int.h db_185.h include.tcl - - prefix= @prefix@ --bindir= $(prefix)/BerkeleyDB/bin --datadir=$(prefix)/BerkeleyDB/share --includedir=$(prefix)/BerkeleyDB/include --libdir= $(prefix)/BerkeleyDB/lib --mandir= $(prefix)/BerkeleyDB/docs -+bindir= $(prefix)/bin -+datadir=$(prefix)/share/db2 -+includedir=$(prefix)/include/db2 -+libdir= $(prefix)/lib -+mandir= $(prefix)/share/doc/db2 - - dmode= 755 - emode= 555 -@@ -170,6 +179,9 @@ - @cd $(libdir) && $(rm) -f $(libdb) - @$(cp) -p $(libdb) $(libdir) - @cd $(libdir) && $(chmod) $(fmode) $(libdb) -+ @$(cp) -p $(libdbso) $(libdir) -+ @cd $(libdir) && $(chmod) $(fmode) $(libdbso) -+ ln -sf $(libdbso) $(libdir)/libdb2.so - @echo "Installing DB utilities: $(bindir) ..." - @test -d $(bindir) || \ - ($(mkdir) -p $(bindir) && $(chmod) $(dmode) $(bindir)) -@@ -506,3 +518,320 @@ - $(CC) $(CFLAGS) $? - vsnprintf.o: $(srcdir)/clib/vsnprintf.c - $(CC) $(CFLAGS) $? -+ -+# Shared build -+# Programs. -+db_archive.so: $(srcdir)/db_archive/db_archive.c -+ $(CC) $(CFLAGS) $(SHAREDFLAGS) $? -o $@ -+db_checkpoint.so: $(srcdir)/db_checkpoint/db_checkpoint.c -+ $(CC) $(CFLAGS) $(SHAREDFLAGS) $? -o $@ -+db_deadlock.so: $(srcdir)/db_deadlock/db_deadlock.c -+ $(CC) $(CFLAGS) $(SHAREDFLAGS) $? -o $@ -+db_dump.so: $(srcdir)/db_dump/db_dump.c -+ $(CC) $(CFLAGS) $(SHAREDFLAGS) $? -o $@ -+db_dump185.so: $(srcdir)/db_dump185/db_dump185.c -+ $(CC) $(CFLAGS) $(SHAREDFLAGS) $? -o $@ -+db_load.so: $(srcdir)/db_load/db_load.c -+ $(CC) $(CFLAGS) $(SHAREDFLAGS) $? -o $@ -+db_printlog.so: $(srcdir)/db_printlog/db_printlog.c -+ $(CC) $(CFLAGS) $(SHAREDFLAGS) $? -o $@ -+db_recover.so: $(srcdir)/db_recover/db_recover.c -+ $(CC) $(CFLAGS) $(SHAREDFLAGS) $? -o $@ -+db_stat.so: $(srcdir)/db_stat/db_stat.c -+ $(CC) $(CFLAGS) $(SHAREDFLAGS) $? -o $@ -+ -+# Examples. -+ex_access.so: $(srcdir)/examples/ex_access.c -+ $(CC) $(CFLAGS) $(SHAREDFLAGS) $? -o $@ -+ex_appinit.so: $(srcdir)/examples/ex_appinit.c -+ $(CC) $(CFLAGS) $(SHAREDFLAGS) $? -o $@ -+ex_btrec.so: $(srcdir)/examples/ex_btrec.c -+ $(CC) $(CFLAGS) $(SHAREDFLAGS) $? -o $@ -+ex_lock.so: $(srcdir)/examples/ex_lock.c -+ $(CC) $(CFLAGS) $(SHAREDFLAGS) $? -o $@ -+ex_mpool.so: $(srcdir)/examples/ex_mpool.c -+ $(CC) $(CFLAGS) $(SHAREDFLAGS) $? -o $@ -+ex_thread.so: $(srcdir)/examples/ex_thread.c -+ $(CC) $(CFLAGS) $(SHAREDFLAGS) $? -o $@ -+ex_tpcb.so: $(srcdir)/examples/ex_tpcb.c -+ $(CC) $(CFLAGS) $(SHAREDFLAGS) $? -o $@ -+ -+# DB files. -+db.so: $(srcdir)/db/db.c -+ $(CC) $(CFLAGS) $(SHAREDFLAGS) $? -o $@ -+db_am.so: $(srcdir)/db/db_am.c -+ $(CC) $(CFLAGS) $(SHAREDFLAGS) $? -o $@ -+db_auto.so: $(srcdir)/db/db_auto.c -+ $(CC) $(CFLAGS) $(SHAREDFLAGS) $? -o $@ -+db_conv.so: $(srcdir)/db/db_conv.c -+ $(CC) $(CFLAGS) $(SHAREDFLAGS) $? -o $@ -+db_dispatch.so: $(srcdir)/db/db_dispatch.c -+ $(CC) $(CFLAGS) $(SHAREDFLAGS) $? -o $@ -+db_dup.so: $(srcdir)/db/db_dup.c -+ $(CC) $(CFLAGS) $(SHAREDFLAGS) $? -o $@ -+db_iface.so: $(srcdir)/db/db_iface.c -+ $(CC) $(CFLAGS) $(SHAREDFLAGS) $? -o $@ -+db_join.so: $(srcdir)/db/db_join.c -+ $(CC) $(CFLAGS) $(SHAREDFLAGS) $? -o $@ -+db_overflow.so: $(srcdir)/db/db_overflow.c -+ $(CC) $(CFLAGS) $(SHAREDFLAGS) $? -o $@ -+db_pr.so: $(srcdir)/db/db_pr.c -+ $(CC) $(CFLAGS) $(SHAREDFLAGS) $? -o $@ -+db_rec.so: $(srcdir)/db/db_rec.c -+ $(CC) $(CFLAGS) $(SHAREDFLAGS) $? -o $@ -+db_ret.so: $(srcdir)/db/db_ret.c -+ $(CC) $(CFLAGS) $(SHAREDFLAGS) $? -o $@ -+ -+# Btree source files. -+bt_compare.so: $(srcdir)/btree/bt_compare.c -+ $(CC) $(CFLAGS) $(SHAREDFLAGS) $? -o $@ -+bt_conv.so: $(srcdir)/btree/bt_conv.c -+ $(CC) $(CFLAGS) $(SHAREDFLAGS) $? -o $@ -+bt_curadj.so: $(srcdir)/btree/bt_curadj.c -+ $(CC) $(CFLAGS) $(SHAREDFLAGS) $? -o $@ -+bt_cursor.so: $(srcdir)/btree/bt_cursor.c -+ $(CC) $(CFLAGS) $(SHAREDFLAGS) $? -o $@ -+bt_delete.so: $(srcdir)/btree/bt_delete.c -+ $(CC) $(CFLAGS) $(SHAREDFLAGS) $? -o $@ -+bt_open.so: $(srcdir)/btree/bt_open.c -+ $(CC) $(CFLAGS) $(SHAREDFLAGS) $? -o $@ -+bt_page.so: $(srcdir)/btree/bt_page.c -+ $(CC) $(CFLAGS) $(SHAREDFLAGS) $? -o $@ -+bt_put.so: $(srcdir)/btree/bt_put.c -+ $(CC) $(CFLAGS) $(SHAREDFLAGS) $? -o $@ -+bt_rec.so: $(srcdir)/btree/bt_rec.c -+ $(CC) $(CFLAGS) $(SHAREDFLAGS) $? -o $@ -+bt_recno.so: $(srcdir)/btree/bt_recno.c -+ $(CC) $(CFLAGS) $(SHAREDFLAGS) $? -o $@ -+bt_rsearch.so: $(srcdir)/btree/bt_rsearch.c -+ $(CC) $(CFLAGS) $(SHAREDFLAGS) $? -o $@ -+bt_search.so: $(srcdir)/btree/bt_search.c -+ $(CC) $(CFLAGS) $(SHAREDFLAGS) $? -o $@ -+bt_split.so: $(srcdir)/btree/bt_split.c -+ $(CC) $(CFLAGS) $(SHAREDFLAGS) $? -o $@ -+bt_stack.so: $(srcdir)/btree/bt_stack.c -+ $(CC) $(CFLAGS) $(SHAREDFLAGS) $? -o $@ -+bt_stat.so: $(srcdir)/btree/bt_stat.c -+ $(CC) $(CFLAGS) $(SHAREDFLAGS) $? -o $@ -+btree_auto.so: $(srcdir)/btree/btree_auto.c -+ $(CC) $(CFLAGS) $(SHAREDFLAGS) $? -o $@ -+ -+# C++ interface files. -+cxx_app.so: $(srcdir)/cxx/cxx_app.cpp -+ $(CXX) $(CXXFLAGS) $(SHAREDFLAGS) $? -o $@ -+cxx_except.so: $(srcdir)/cxx/cxx_except.cpp -+ $(CXX) $(CXXFLAGS) $(SHAREDFLAGS) $? -o $@ -+cxx_lock.so: $(srcdir)/cxx/cxx_lock.cpp -+ $(CXX) $(CXXFLAGS) $(SHAREDFLAGS) $? -o $@ -+cxx_log.so: $(srcdir)/cxx/cxx_log.cpp -+ $(CXX) $(CXXFLAGS) $(SHAREDFLAGS) $? -o $@ -+cxx_mpool.so: $(srcdir)/cxx/cxx_mpool.cpp -+ $(CXX) $(CXXFLAGS) $(SHAREDFLAGS) $? -o $@ -+cxx_table.so: $(srcdir)/cxx/cxx_table.cpp -+ $(CXX) $(CXXFLAGS) $(SHAREDFLAGS) $? -o $@ -+cxx_txn.so: $(srcdir)/cxx/cxx_txn.cpp -+ $(CXX) $(CXXFLAGS) $(SHAREDFLAGS) $? -o $@ -+ -+# Hash source files. -+hash_auto.so: $(srcdir)/hash/hash_auto.c -+ $(CC) $(CFLAGS) $(SHAREDFLAGS) $? -o $@ -+hash.so: $(srcdir)/hash/hash.c -+ $(CC) $(CFLAGS) $(SHAREDFLAGS) $? -o $@ -+hash_conv.so: $(srcdir)/hash/hash_conv.c -+ $(CC) $(CFLAGS) $(SHAREDFLAGS) $? -o $@ -+hash_dup.so: $(srcdir)/hash/hash_dup.c -+ $(CC) $(CFLAGS) $(SHAREDFLAGS) $? -o $@ -+hash_func.so: $(srcdir)/hash/hash_func.c -+ $(CC) $(CFLAGS) $(SHAREDFLAGS) $? -o $@ -+hash_page.so: $(srcdir)/hash/hash_page.c -+ $(CC) $(CFLAGS) $(SHAREDFLAGS) $? -o $@ -+hash_rec.so: $(srcdir)/hash/hash_rec.c -+ $(CC) $(CFLAGS) $(SHAREDFLAGS) $? -o $@ -+hash_stat.so: $(srcdir)/hash/hash_stat.c -+ $(CC) $(CFLAGS) $(SHAREDFLAGS) $? -o $@ -+ -+# Lock source files. -+lock.so: $(srcdir)/lock/lock.c -+ $(CC) $(CFLAGS) $(SHAREDFLAGS) $? -o $@ -+lock_conflict.so:$(srcdir)/lock/lock_conflict.c -+ $(CC) $(CFLAGS) $(SHAREDFLAGS) $? -o $@ -+lock_deadlock.so:$(srcdir)/lock/lock_deadlock.c -+ $(CC) $(CFLAGS) $(SHAREDFLAGS) $? -o $@ -+lock_region.so:$(srcdir)/lock/lock_region.c -+ $(CC) $(CFLAGS) $(SHAREDFLAGS) $? -o $@ -+lock_util.so:$(srcdir)/lock/lock_util.c -+ $(CC) $(CFLAGS) $(SHAREDFLAGS) $? -o $@ -+ -+# Log source files. -+log.so: $(srcdir)/log/log.c -+ $(CC) $(CFLAGS) $(SHAREDFLAGS) $? -o $@ -+log_archive.so: $(srcdir)/log/log_archive.c -+ $(CC) $(CFLAGS) $(SHAREDFLAGS) $? -o $@ -+log_auto.so: $(srcdir)/log/log_auto.c -+ $(CC) $(CFLAGS) $(SHAREDFLAGS) $? -o $@ -+log_compare.so: $(srcdir)/log/log_compare.c -+ $(CC) $(CFLAGS) $(SHAREDFLAGS) $? -o $@ -+log_findckp.so: $(srcdir)/log/log_findckp.c -+ $(CC) $(CFLAGS) $(SHAREDFLAGS) $? -o $@ -+log_get.so: $(srcdir)/log/log_get.c -+ $(CC) $(CFLAGS) $(SHAREDFLAGS) $? -o $@ -+log_put.so: $(srcdir)/log/log_put.c -+ $(CC) $(CFLAGS) $(SHAREDFLAGS) $? -o $@ -+log_rec.so: $(srcdir)/log/log_rec.c -+ $(CC) $(CFLAGS) $(SHAREDFLAGS) $? -o $@ -+log_register.so: $(srcdir)/log/log_register.c -+ $(CC) $(CFLAGS) $(SHAREDFLAGS) $? -o $@ -+ -+# Mpool source files. -+mp_bh.so: $(srcdir)/mp/mp_bh.c -+ $(CC) $(CFLAGS) $(SHAREDFLAGS) $? -o $@ -+mp_fget.so: $(srcdir)/mp/mp_fget.c -+ $(CC) $(CFLAGS) $(SHAREDFLAGS) $? -o $@ -+mp_fopen.so: $(srcdir)/mp/mp_fopen.c -+ $(CC) $(CFLAGS) $(SHAREDFLAGS) $? -o $@ -+mp_fput.so: $(srcdir)/mp/mp_fput.c -+ $(CC) $(CFLAGS) $(SHAREDFLAGS) $? -o $@ -+mp_fset.so: $(srcdir)/mp/mp_fset.c -+ $(CC) $(CFLAGS) $(SHAREDFLAGS) $? -o $@ -+mp_open.so: $(srcdir)/mp/mp_open.c -+ $(CC) $(CFLAGS) $(SHAREDFLAGS) $? -o $@ -+mp_pr.so: $(srcdir)/mp/mp_pr.c -+ $(CC) $(CFLAGS) $(SHAREDFLAGS) $? -o $@ -+mp_region.so: $(srcdir)/mp/mp_region.c -+ $(CC) $(CFLAGS) $(SHAREDFLAGS) $? -o $@ -+mp_sync.so: $(srcdir)/mp/mp_sync.c -+ $(CC) $(CFLAGS) $(SHAREDFLAGS) $? -o $@ -+ -+# Mutex source files. -+mutex.so: $(srcdir)/mutex/mutex.c -+ $(CC) $(CFLAGS) $(SHAREDFLAGS) $? -o $@ -+# XXX -+# UTS4 spinlocks -+uts4_cc.so: $(srcdir)/mutex/uts4_cc.s -+ $(AS) $(ASFLAGS) $(SHAREDFLAGS) -o $@ $? -o $@ -+ -+# Transaction source files. -+txn.so: $(srcdir)/txn/txn.c -+ $(CC) $(CFLAGS) $(SHAREDFLAGS) $? -o $@ -+txn_auto.so: $(srcdir)/txn/txn_auto.c -+ $(CC) $(CFLAGS) $(SHAREDFLAGS) $? -o $@ -+txn_rec.so: $(srcdir)/txn/txn_rec.c -+ $(CC) $(CFLAGS) $(SHAREDFLAGS) $? -o $@ -+ -+# XA source files. -+xa.so: $(srcdir)/xa/xa.c -+ $(CC) $(CFLAGS) $(SHAREDFLAGS) $? -o $@ -+xa_db.so: $(srcdir)/xa/xa_db.c -+ $(CC) $(CFLAGS) $(SHAREDFLAGS) $? -o $@ -+xa_map.so: $(srcdir)/xa/xa_map.c -+ $(CC) $(CFLAGS) $(SHAREDFLAGS) $? -o $@ -+ -+# Historic interfaces. -+hsearch.so: $(srcdir)/hsearch/hsearch.c -+ $(CC) $(CFLAGS) $(SHAREDFLAGS) $? -o $@ -+dbm.so: $(srcdir)/dbm/dbm.c -+ $(CC) $(CFLAGS) $(SHAREDFLAGS) $? -o $@ -+db185.so: $(srcdir)/db185/db185.c -+ $(CC) $(CFLAGS) $(SHAREDFLAGS) $? -o $@ -+ -+# Common source files. -+db_appinit.so: $(srcdir)/common/db_appinit.c -+ $(CC) $(CFLAGS) $(SHAREDFLAGS) $? -o $@ -+db_apprec.so: $(srcdir)/common/db_apprec.c -+ $(CC) $(CFLAGS) $(SHAREDFLAGS) $? -o $@ -+db_byteorder.so: $(srcdir)/common/db_byteorder.c -+ $(CC) $(CFLAGS) $(SHAREDFLAGS) $? -o $@ -+db_err.so: $(srcdir)/common/db_err.c -+ $(CC) $(CFLAGS) $(SHAREDFLAGS) $? -o $@ -+db_log2.so: $(srcdir)/common/db_log2.c -+ $(CC) $(CFLAGS) $(SHAREDFLAGS) $? -o $@ -+db_region.so: $(srcdir)/common/db_region.c -+ $(CC) $(CFLAGS) $(SHAREDFLAGS) $? -o $@ -+db_salloc.so: $(srcdir)/common/db_salloc.c -+ $(CC) $(CFLAGS) $(SHAREDFLAGS) $? -o $@ -+db_shash.so: $(srcdir)/common/db_shash.c -+ $(CC) $(CFLAGS) $(SHAREDFLAGS) $? -o $@ -+ -+# OS specific source files. -+os_abs.so: $(srcdir)/os/os_abs.c -+ $(CC) $(CFLAGS) $(SHAREDFLAGS) $? -o $@ -+os_alloc.so: $(srcdir)/os/os_alloc.c -+ $(CC) $(CFLAGS) $(SHAREDFLAGS) $? -o $@ -+os_config.so: $(srcdir)/os/os_config.c -+ $(CC) $(CFLAGS) $(SHAREDFLAGS) $? -o $@ -+os_dir.so: $(srcdir)/os/os_dir.c -+ $(CC) $(CFLAGS) $(SHAREDFLAGS) $? -o $@ -+os_fid.so: $(srcdir)/os/os_fid.c -+ $(CC) $(CFLAGS) $(SHAREDFLAGS) $? -o $@ -+os_fsync.so: $(srcdir)/os/os_fsync.c -+ $(CC) $(CFLAGS) $(SHAREDFLAGS) $? -o $@ -+os_map.so: $(srcdir)/os/os_map.c -+ $(CC) $(CFLAGS) $(SHAREDFLAGS) $? -o $@ -+os_oflags.so: $(srcdir)/os/os_oflags.c -+ $(CC) $(CFLAGS) $(SHAREDFLAGS) $? -o $@ -+os_open.so: $(srcdir)/os/os_open.c -+ $(CC) $(CFLAGS) $(SHAREDFLAGS) $? -o $@ -+os_rpath.so: $(srcdir)/os/os_rpath.c -+ $(CC) $(CFLAGS) $(SHAREDFLAGS) $? -o $@ -+os_rw.so: $(srcdir)/os/os_rw.c -+ $(CC) $(CFLAGS) $(SHAREDFLAGS) $? -o $@ -+os_seek.so: $(srcdir)/os/os_seek.c -+ $(CC) $(CFLAGS) $(SHAREDFLAGS) $? -o $@ -+os_sleep.so: $(srcdir)/os/os_sleep.c -+ $(CC) $(CFLAGS) $(SHAREDFLAGS) $? -o $@ -+os_spin.so: $(srcdir)/os/os_spin.c -+ $(CC) $(CFLAGS) $(SHAREDFLAGS) $? -o $@ -+os_stat.so: $(srcdir)/os/os_stat.c -+ $(CC) $(CFLAGS) $(SHAREDFLAGS) $? -o $@ -+os_tmpdir.so: $(srcdir)/os/os_tmpdir.c -+ $(CC) $(CFLAGS) $(SHAREDFLAGS) $? -o $@ -+os_unlink.so: $(srcdir)/os/os_unlink.c -+ $(CC) $(CFLAGS) $(SHAREDFLAGS) $? -o $@ -+ -+# Test programs. -+tclAppInit.so: $(srcdir)/test/tclAppInit.c -+ $(CC) $(CFLAGS) $(SHAREDFLAGS) $? -o $@ -+tcl_dbm.so: $(srcdir)/test/tcl_dbm.c -+ $(CC) $(CFLAGS) $(SHAREDFLAGS) $? -o $@ -+tcl_hsearch.so: $(srcdir)/test/tcl_hsearch.c -+ $(CC) $(CFLAGS) $(SHAREDFLAGS) $? -o $@ -+tcl_lock.so: $(srcdir)/test/tcl_lock.c -+ $(CC) $(CFLAGS) $(SHAREDFLAGS) $? -o $@ -+tcl_log.so: $(srcdir)/test/tcl_log.c -+ $(CC) $(CFLAGS) $(SHAREDFLAGS) $? -o $@ -+tcl_mpool.so: $(srcdir)/test/tcl_mpool.c -+ $(CC) $(CFLAGS) $(SHAREDFLAGS) $? -o $@ -+tcl_mutex.so: $(srcdir)/test/tcl_mutex.c -+ $(CC) $(CFLAGS) $(SHAREDFLAGS) $? -o $@ -+tcl_ndbm.so: $(srcdir)/test/tcl_ndbm.c -+ $(CC) $(CFLAGS) $(SHAREDFLAGS) $? -o $@ -+tcl_txn.so: $(srcdir)/test/tcl_txn.c -+ $(CC) $(CFLAGS) $(SHAREDFLAGS) $? -o $@ -+utils.so: $(srcdir)/test/utils.c -+ $(CC) $(CFLAGS) $(SHAREDFLAGS) $? -o $@ -+ -+# Replacement source files. -+err.so: $(srcdir)/clib/err.c -+ $(CC) $(CFLAGS) $(SHAREDFLAGS) $? -o $@ -+getcwd.so: $(srcdir)/clib/getcwd.c -+ $(CC) $(CFLAGS) $(SHAREDFLAGS) $? -o $@ -+getlong.so: $(srcdir)/clib/getlong.c -+ $(CC) $(CFLAGS) $(SHAREDFLAGS) $? -o $@ -+getopt.so: $(srcdir)/clib/getopt.c -+ $(CC) $(CFLAGS) $(SHAREDFLAGS) $? -o $@ -+memcmp.so: $(srcdir)/clib/memcmp.c -+ $(CC) $(CFLAGS) $(SHAREDFLAGS) $? -o $@ -+memcpy.so: $(srcdir)/clib/memmove.c -+ $(CC) -DMEMCOPY $(CFLAGS) $(SHAREDFLAGS) $? -o $@ -+memmove.so: $(srcdir)/clib/memmove.c -+ $(CC) -DMEMMOVE $(CFLAGS) $(SHAREDFLAGS) $? -o $@ -+raise.so: $(srcdir)/clib/raise.c -+ $(CC) $(CFLAGS) $(SHAREDFLAGS) $? -o $@ -+snprintf.so: $(srcdir)/clib/snprintf.c -+ $(CC) $(CFLAGS) $(SHAREDFLAGS) $? -o $@ -+strerror.so: $(srcdir)/clib/strerror.c -+ $(CC) $(CFLAGS) $(SHAREDFLAGS) $? -o $@ -+strsep.so: $(srcdir)/clib/strsep.c -+ $(CC) $(CFLAGS) $(SHAREDFLAGS) $? -o $@ -+vsnprintf.so: $(srcdir)/clib/vsnprintf.c -+ $(CC) $(CFLAGS) $(SHAREDFLAGS) $? -o $@ diff --git a/databases/db44/pkg-comment b/databases/db44/pkg-comment deleted file mode 100644 index 39a54a240320..000000000000 --- a/databases/db44/pkg-comment +++ /dev/null @@ -1 +0,0 @@ -The Berkeley DB package, revision 2 diff --git a/databases/db44/pkg-descr b/databases/db44/pkg-descr deleted file mode 100644 index b9ed34ee6d81..000000000000 --- a/databases/db44/pkg-descr +++ /dev/null @@ -1,13 +0,0 @@ -Revesion 2 of the Berkeley DB library. This version uses an incompatible -underlying database format than revision 1 and a different standard API. -Utilities are included in the distribution to convert v1.85 databases to v2 -databases, and a backwards compatible API is provided to maintain -compatibility with programs using the v1.85 interface. - -There are minor interface changes in this release which may require that DB -applications be modified and recompiled. For a complete discussion of -interface changes, see: - -http://www.sleepycat.com/update/ - -WWW: http://www.sleepycat.com diff --git a/databases/db44/pkg-plist b/databases/db44/pkg-plist deleted file mode 100644 index 961bc047a6e4..000000000000 --- a/databases/db44/pkg-plist +++ /dev/null @@ -1,564 +0,0 @@ -include/db2/db.h -include/db2/db_cxx.h -include/db2/db_185.h -lib/libdb2.a -lib/libdb2.so -lib/libdb2.so.0 -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 -share/doc/db2/api_c/Db/close.html -share/doc/db2/api_c/Db/cursor.html -share/doc/db2/api_c/Db/del.html -share/doc/db2/api_c/Db/fd.html -share/doc/db2/api_c/Db/get.html -share/doc/db2/api_c/Db/join.html -share/doc/db2/api_c/Db/open.html -share/doc/db2/api_c/Db/put.html -share/doc/db2/api_c/Db/stat.html -share/doc/db2/api_c/Db/sync.html -share/doc/db2/api_c/DbEnv/appexit.html -share/doc/db2/api_c/DbEnv/appinit.html -share/doc/db2/api_c/DbEnv/env.html -share/doc/db2/api_c/DbEnv/version.html -share/doc/db2/api_c/DbInfo/info.html -share/doc/db2/api_c/DbLock/put.html -share/doc/db2/api_c/DbLockTab/close.html -share/doc/db2/api_c/DbLockTab/detect.html -share/doc/db2/api_c/DbLockTab/get.html -share/doc/db2/api_c/DbLockTab/id.html -share/doc/db2/api_c/DbLockTab/open.html -share/doc/db2/api_c/DbLockTab/stat.html -share/doc/db2/api_c/DbLockTab/unlink.html -share/doc/db2/api_c/DbLockTab/vec.html -share/doc/db2/api_c/DbLog/archive.html -share/doc/db2/api_c/DbLog/close.html -share/doc/db2/api_c/DbLog/compare.html -share/doc/db2/api_c/DbLog/db_register.html -share/doc/db2/api_c/DbLog/db_unregister.html -share/doc/db2/api_c/DbLog/file.html -share/doc/db2/api_c/DbLog/flush.html -share/doc/db2/api_c/DbLog/get.html -share/doc/db2/api_c/DbLog/lsn.html -share/doc/db2/api_c/DbLog/open.html -share/doc/db2/api_c/DbLog/put.html -share/doc/db2/api_c/DbLog/stat.html -share/doc/db2/api_c/DbLog/unlink.html -share/doc/db2/api_c/DbMpool/close.html -share/doc/db2/api_c/DbMpool/db_register.html -share/doc/db2/api_c/DbMpool/open.html -share/doc/db2/api_c/DbMpool/stat.html -share/doc/db2/api_c/DbMpool/sync.html -share/doc/db2/api_c/DbMpool/trickle.html -share/doc/db2/api_c/DbMpool/unlink.html -share/doc/db2/api_c/DbMpoolFile/close.html -share/doc/db2/api_c/DbMpoolFile/get.html -share/doc/db2/api_c/DbMpoolFile/open.html -share/doc/db2/api_c/DbMpoolFile/put.html -share/doc/db2/api_c/DbMpoolFile/set.html -share/doc/db2/api_c/DbMpoolFile/sync.html -share/doc/db2/api_c/DbTxn/abort.html -share/doc/db2/api_c/DbTxn/commit.html -share/doc/db2/api_c/DbTxn/id.html -share/doc/db2/api_c/DbTxn/prepare.html -share/doc/db2/api_c/DbTxnMgr/begin.html -share/doc/db2/api_c/DbTxnMgr/checkpoint.html -share/doc/db2/api_c/DbTxnMgr/close.html -share/doc/db2/api_c/DbTxnMgr/open.html -share/doc/db2/api_c/DbTxnMgr/stat.html -share/doc/db2/api_c/DbTxnMgr/unlink.html -share/doc/db2/api_c/Dbc/close.html -share/doc/db2/api_c/Dbc/del.html -share/doc/db2/api_c/Dbc/get.html -share/doc/db2/api_c/Dbc/put.html -share/doc/db2/api_c/Dbt/dbt.html -share/doc/db2/api_c/historic/dbm.html -share/doc/db2/api_c/historic/hsearch.html -share/doc/db2/api_c/index/flags.html -share/doc/db2/api_c/index/function.html -share/doc/db2/api_c/index/structure.html -share/doc/db2/api_c/internal/db_jump_set.html -share/doc/db2/api_c/internal/db_value_set.html -share/doc/db2/api_cxx/Db/class.html -share/doc/db2/api_cxx/Db/close.html -share/doc/db2/api_cxx/Db/cursor.html -share/doc/db2/api_cxx/Db/del.html -share/doc/db2/api_cxx/Db/fd.html -share/doc/db2/api_cxx/Db/get.html -share/doc/db2/api_cxx/Db/get_byteswapped.html -share/doc/db2/api_cxx/Db/get_type.html -share/doc/db2/api_cxx/Db/join.html -share/doc/db2/api_cxx/Db/open.html -share/doc/db2/api_cxx/Db/put.html -share/doc/db2/api_cxx/Db/stat.html -share/doc/db2/api_cxx/Db/sync.html -share/doc/db2/api_cxx/DbEnv/appexit.html -share/doc/db2/api_cxx/DbEnv/appinit.html -share/doc/db2/api_cxx/DbEnv/class.html -share/doc/db2/api_cxx/DbEnv/get_lg_info.html -share/doc/db2/api_cxx/DbEnv/get_lk_info.html -share/doc/db2/api_cxx/DbEnv/get_mp_info.html -share/doc/db2/api_cxx/DbEnv/get_tx_info.html -share/doc/db2/api_cxx/DbEnv/set_errcall.html -share/doc/db2/api_cxx/DbEnv/set_errfile.html -share/doc/db2/api_cxx/DbEnv/set_error_model.html -share/doc/db2/api_cxx/DbEnv/set_error_stream.html -share/doc/db2/api_cxx/DbEnv/set_errpfx.html -share/doc/db2/api_cxx/DbEnv/set_lg_max.html -share/doc/db2/api_cxx/DbEnv/set_lk_conflicts.html -share/doc/db2/api_cxx/DbEnv/set_lk_detect.html -share/doc/db2/api_cxx/DbEnv/set_lk_max.html -share/doc/db2/api_cxx/DbEnv/set_lk_modes.html -share/doc/db2/api_cxx/DbEnv/set_lorder.html -share/doc/db2/api_cxx/DbEnv/set_mp_mmapsize.html -share/doc/db2/api_cxx/DbEnv/set_mp_size.html -share/doc/db2/api_cxx/DbEnv/set_tx_max.html -share/doc/db2/api_cxx/DbEnv/set_tx_recover.html -share/doc/db2/api_cxx/DbEnv/set_verbose.html -share/doc/db2/api_cxx/DbEnv/version.html -share/doc/db2/api_cxx/DbException/class.html -share/doc/db2/api_cxx/DbException/get_errno.html -share/doc/db2/api_cxx/DbException/what.html -share/doc/db2/api_cxx/DbInfo/class.html -share/doc/db2/api_cxx/DbInfo/set_bt_compare.html -share/doc/db2/api_cxx/DbInfo/set_bt_maxkey.html -share/doc/db2/api_cxx/DbInfo/set_bt_minkey.html -share/doc/db2/api_cxx/DbInfo/set_bt_prefix.html -share/doc/db2/api_cxx/DbInfo/set_cachesize.html -share/doc/db2/api_cxx/DbInfo/set_compare.html -share/doc/db2/api_cxx/DbInfo/set_flags.html -share/doc/db2/api_cxx/DbInfo/set_h_ffactor.html -share/doc/db2/api_cxx/DbInfo/set_h_hash.html -share/doc/db2/api_cxx/DbInfo/set_h_nelem.html -share/doc/db2/api_cxx/DbInfo/set_lorder.html -share/doc/db2/api_cxx/DbInfo/set_malloc.html -share/doc/db2/api_cxx/DbInfo/set_pagesize.html -share/doc/db2/api_cxx/DbInfo/set_re_delim.html -share/doc/db2/api_cxx/DbInfo/set_re_len.html -share/doc/db2/api_cxx/DbInfo/set_re_pad.html -share/doc/db2/api_cxx/DbInfo/set_re_source.html -share/doc/db2/api_cxx/DbLock/class.html -share/doc/db2/api_cxx/DbLock/put.html -share/doc/db2/api_cxx/DbLockTab/class.html -share/doc/db2/api_cxx/DbLockTab/close.html -share/doc/db2/api_cxx/DbLockTab/detect.html -share/doc/db2/api_cxx/DbLockTab/get.html -share/doc/db2/api_cxx/DbLockTab/id.html -share/doc/db2/api_cxx/DbLockTab/open.html -share/doc/db2/api_cxx/DbLockTab/stat.html -share/doc/db2/api_cxx/DbLockTab/unlink.html -share/doc/db2/api_cxx/DbLockTab/vec.html -share/doc/db2/api_cxx/DbLog/archive.html -share/doc/db2/api_cxx/DbLog/class.html -share/doc/db2/api_cxx/DbLog/close.html -share/doc/db2/api_cxx/DbLog/compare.html -share/doc/db2/api_cxx/DbLog/db_register.html -share/doc/db2/api_cxx/DbLog/db_unregister.html -share/doc/db2/api_cxx/DbLog/file.html -share/doc/db2/api_cxx/DbLog/flush.html -share/doc/db2/api_cxx/DbLog/get.html -share/doc/db2/api_cxx/DbLog/open.html -share/doc/db2/api_cxx/DbLog/put.html -share/doc/db2/api_cxx/DbLog/stat.html -share/doc/db2/api_cxx/DbLog/unlink.html -share/doc/db2/api_cxx/DbLsn/class.html -share/doc/db2/api_cxx/DbMpool/class.html -share/doc/db2/api_cxx/DbMpool/close.html -share/doc/db2/api_cxx/DbMpool/db_register.html -share/doc/db2/api_cxx/DbMpool/open.html -share/doc/db2/api_cxx/DbMpool/stat.html -share/doc/db2/api_cxx/DbMpool/sync.html -share/doc/db2/api_cxx/DbMpool/trickle.html -share/doc/db2/api_cxx/DbMpool/unlink.html -share/doc/db2/api_cxx/DbMpoolFile/class.html -share/doc/db2/api_cxx/DbMpoolFile/close.html -share/doc/db2/api_cxx/DbMpoolFile/get.html -share/doc/db2/api_cxx/DbMpoolFile/open.html -share/doc/db2/api_cxx/DbMpoolFile/put.html -share/doc/db2/api_cxx/DbMpoolFile/set.html -share/doc/db2/api_cxx/DbMpoolFile/sync.html -share/doc/db2/api_cxx/DbTxn/abort.html -share/doc/db2/api_cxx/DbTxn/class.html -share/doc/db2/api_cxx/DbTxn/commit.html -share/doc/db2/api_cxx/DbTxn/id.html -share/doc/db2/api_cxx/DbTxn/prepare.html -share/doc/db2/api_cxx/DbTxnMgr/begin.html -share/doc/db2/api_cxx/DbTxnMgr/checkpoint.html -share/doc/db2/api_cxx/DbTxnMgr/class.html -share/doc/db2/api_cxx/DbTxnMgr/close.html -share/doc/db2/api_cxx/DbTxnMgr/open.html -share/doc/db2/api_cxx/DbTxnMgr/stat.html -share/doc/db2/api_cxx/DbTxnMgr/unlink.html -share/doc/db2/api_cxx/Dbc/class.html -share/doc/db2/api_cxx/Dbc/close.html -share/doc/db2/api_cxx/Dbc/del.html -share/doc/db2/api_cxx/Dbc/get.html -share/doc/db2/api_cxx/Dbc/put.html -share/doc/db2/api_cxx/Dbt/class.html -share/doc/db2/api_cxx/index/class.html -share/doc/db2/api_java/Db/class.html -share/doc/db2/api_java/Db/close.html -share/doc/db2/api_java/Db/cursor.html -share/doc/db2/api_java/Db/del.html -share/doc/db2/api_java/Db/fd.html -share/doc/db2/api_java/Db/get.html -share/doc/db2/api_java/Db/get_byteswapped.html -share/doc/db2/api_java/Db/get_type.html -share/doc/db2/api_java/Db/join.html -share/doc/db2/api_java/Db/open.html -share/doc/db2/api_java/Db/put.html -share/doc/db2/api_java/Db/stat.html -share/doc/db2/api_java/Db/sync.html -share/doc/db2/api_java/DbEnv/appexit.html -share/doc/db2/api_java/DbEnv/appinit.html -share/doc/db2/api_java/DbEnv/class.html -share/doc/db2/api_java/DbEnv/get_lg_info.html -share/doc/db2/api_java/DbEnv/get_lk_info.html -share/doc/db2/api_java/DbEnv/get_mp_info.html -share/doc/db2/api_java/DbEnv/get_tx_info.html -share/doc/db2/api_java/DbEnv/set_errcall.html -share/doc/db2/api_java/DbEnv/set_error_stream.html -share/doc/db2/api_java/DbEnv/set_errpfx.html -share/doc/db2/api_java/DbEnv/set_lg_max.html -share/doc/db2/api_java/DbEnv/set_lk_conflicts.html -share/doc/db2/api_java/DbEnv/set_lk_detect.html -share/doc/db2/api_java/DbEnv/set_lk_max.html -share/doc/db2/api_java/DbEnv/set_lk_modes.html -share/doc/db2/api_java/DbEnv/set_lorder.html -share/doc/db2/api_java/DbEnv/set_mp_mmapsize.html -share/doc/db2/api_java/DbEnv/set_mp_size.html -share/doc/db2/api_java/DbEnv/set_tx_max.html -share/doc/db2/api_java/DbEnv/set_verbose.html -share/doc/db2/api_java/DbEnv/version.html -share/doc/db2/api_java/DbException/class.html -share/doc/db2/api_java/DbException/get_errno.html -share/doc/db2/api_java/DbInfo/class.html -share/doc/db2/api_java/DbInfo/set_bt_compare.html -share/doc/db2/api_java/DbInfo/set_bt_maxkey.html -share/doc/db2/api_java/DbInfo/set_bt_minkey.html -share/doc/db2/api_java/DbInfo/set_bt_prefix.html -share/doc/db2/api_java/DbInfo/set_cachesize.html -share/doc/db2/api_java/DbInfo/set_compare.html -share/doc/db2/api_java/DbInfo/set_flags.html -share/doc/db2/api_java/DbInfo/set_h_ffactor.html -share/doc/db2/api_java/DbInfo/set_h_hash.html -share/doc/db2/api_java/DbInfo/set_h_nelem.html -share/doc/db2/api_java/DbInfo/set_lorder.html -share/doc/db2/api_java/DbInfo/set_malloc.html -share/doc/db2/api_java/DbInfo/set_pagesize.html -share/doc/db2/api_java/DbInfo/set_re_delim.html -share/doc/db2/api_java/DbInfo/set_re_len.html -share/doc/db2/api_java/DbInfo/set_re_pad.html -share/doc/db2/api_java/DbInfo/set_re_source.html -share/doc/db2/api_java/DbLock/class.html -share/doc/db2/api_java/DbLock/put.html -share/doc/db2/api_java/DbLockTab/class.html -share/doc/db2/api_java/DbLockTab/close.html -share/doc/db2/api_java/DbLockTab/detect.html -share/doc/db2/api_java/DbLockTab/get.html -share/doc/db2/api_java/DbLockTab/id.html -share/doc/db2/api_java/DbLockTab/open.html -share/doc/db2/api_java/DbLockTab/stat.html -share/doc/db2/api_java/DbLockTab/unlink.html -share/doc/db2/api_java/DbLockTab/vec.html -share/doc/db2/api_java/DbLog/archive.html -share/doc/db2/api_java/DbLog/class.html -share/doc/db2/api_java/DbLog/close.html -share/doc/db2/api_java/DbLog/compare.html -share/doc/db2/api_java/DbLog/db_register.html -share/doc/db2/api_java/DbLog/db_unregister.html -share/doc/db2/api_java/DbLog/file.html -share/doc/db2/api_java/DbLog/flush.html -share/doc/db2/api_java/DbLog/get.html -share/doc/db2/api_java/DbLog/open.html -share/doc/db2/api_java/DbLog/put.html -share/doc/db2/api_java/DbLog/stat.html -share/doc/db2/api_java/DbLog/unlink.html -share/doc/db2/api_java/DbLsn/class.html -share/doc/db2/api_java/DbMpool/class.html -share/doc/db2/api_java/DbMpool/close.html -share/doc/db2/api_java/DbMpool/db_register.html -share/doc/db2/api_java/DbMpool/open.html -share/doc/db2/api_java/DbMpool/stat.html -share/doc/db2/api_java/DbMpool/sync.html -share/doc/db2/api_java/DbMpool/trickle.html -share/doc/db2/api_java/DbMpool/unlink.html -share/doc/db2/api_java/DbMpoolFile/class.html -share/doc/db2/api_java/DbMpoolFile/close.html -share/doc/db2/api_java/DbMpoolFile/get.html -share/doc/db2/api_java/DbMpoolFile/open.html -share/doc/db2/api_java/DbMpoolFile/put.html -share/doc/db2/api_java/DbMpoolFile/set.html -share/doc/db2/api_java/DbMpoolFile/sync.html -share/doc/db2/api_java/DbRunRecoveryException/class.html -share/doc/db2/api_java/DbTxn/abort.html -share/doc/db2/api_java/DbTxn/class.html -share/doc/db2/api_java/DbTxn/commit.html -share/doc/db2/api_java/DbTxn/id.html -share/doc/db2/api_java/DbTxn/prepare.html -share/doc/db2/api_java/DbTxnMgr/begin.html -share/doc/db2/api_java/DbTxnMgr/checkpoint.html -share/doc/db2/api_java/DbTxnMgr/class.html -share/doc/db2/api_java/DbTxnMgr/close.html -share/doc/db2/api_java/DbTxnMgr/open.html -share/doc/db2/api_java/DbTxnMgr/stat.html -share/doc/db2/api_java/DbTxnMgr/unlink.html -share/doc/db2/api_java/Dbc/class.html -share/doc/db2/api_java/Dbc/close.html -share/doc/db2/api_java/Dbc/del.html -share/doc/db2/api_java/Dbc/get.html -share/doc/db2/api_java/Dbc/put.html -share/doc/db2/api_java/Dbt/class.html -share/doc/db2/api_java/index/class.html -share/doc/db2/build/java.html -share/doc/db2/build/shared.html -share/doc/db2/build/shared_gcc.html -share/doc/db2/build/shared_hp.html -share/doc/db2/build/unix.html -share/doc/db2/build/unix_faq.html -share/doc/db2/build/win16.html -share/doc/db2/build/win32.html -share/doc/db2/build/win_faq.html -share/doc/db2/distrib/layout.html -share/doc/db2/images/folder.gif -share/doc/db2/images/folder_open.gif -share/doc/db2/images/next.gif -share/doc/db2/images/prev.gif -share/doc/db2/images/ps.gif -share/doc/db2/images/sleepycat.gif -share/doc/db2/images/toc.gif -share/doc/db2/index.html -share/doc/db2/packages/hash_usenix.ps -share/doc/db2/packages/index.html -share/doc/db2/packages/libtp_usenix.ps -share/doc/db2/packages/witold.html -share/doc/db2/ref/am/bt_compare.html -share/doc/db2/ref/am/bt_dup.html -share/doc/db2/ref/am/bt_maxkey.html -share/doc/db2/ref/am/bt_minkey.html -share/doc/db2/ref/am/bt_prefix.html -share/doc/db2/ref/am/bt_recnum.html -share/doc/db2/ref/am/byteorder.html -share/doc/db2/ref/am/cachesize.html -share/doc/db2/ref/am/close.html -share/doc/db2/ref/am/compare.html -share/doc/db2/ref/am/curclose.html -share/doc/db2/ref/am/curdel.html -share/doc/db2/ref/am/curget.html -share/doc/db2/ref/am/curput.html -share/doc/db2/ref/am/cursor.html -share/doc/db2/ref/am/delete.html -share/doc/db2/ref/am/get.html -share/doc/db2/ref/am/h_dup.html -share/doc/db2/ref/am/h_ffactor.html -share/doc/db2/ref/am/h_hash.html -share/doc/db2/ref/am/h_nelem.html -share/doc/db2/ref/am/intro.html -share/doc/db2/ref/am/join.html -share/doc/db2/ref/am/logrec.html -share/doc/db2/ref/am/malloc.html -share/doc/db2/ref/am/ops.html -share/doc/db2/ref/am/pagesize.html -share/doc/db2/ref/am/partial.html -share/doc/db2/ref/am/put.html -share/doc/db2/ref/am/re_delim.html -share/doc/db2/ref/am/re_len.html -share/doc/db2/ref/am/re_pad.html -share/doc/db2/ref/am/re_source.html -share/doc/db2/ref/am/renumber.html -share/doc/db2/ref/am/select.html -share/doc/db2/ref/am/stat.html -share/doc/db2/ref/am/sync.html -share/doc/db2/ref/arch/apis.html -share/doc/db2/ref/arch/bigpic.gif -share/doc/db2/ref/arch/bigpic.html -share/doc/db2/ref/arch/env.html -share/doc/db2/ref/arch/extending.html -share/doc/db2/ref/arch/progmodel.html -share/doc/db2/ref/arch/script.html -share/doc/db2/ref/arch/smallpic.gif -share/doc/db2/ref/arch/subsystem.html -share/doc/db2/ref/arch/utilities.html -share/doc/db2/ref/cam/intro.html -share/doc/db2/ref/debug/runtime.html -share/doc/db2/ref/dumpload/format.html -share/doc/db2/ref/dumpload/text.html -share/doc/db2/ref/dumpload/utility.html -share/doc/db2/ref/env/create.html -share/doc/db2/ref/env/naming.html -share/doc/db2/ref/env/open.html -share/doc/db2/ref/env/region.html -share/doc/db2/ref/env/security.html -share/doc/db2/ref/install/file.html -share/doc/db2/ref/install/magic.s5.be.txt -share/doc/db2/ref/install/magic.s5.le.txt -share/doc/db2/ref/install/magic.txt -share/doc/db2/ref/intro/distrib.html -share/doc/db2/ref/intro/do.html -share/doc/db2/ref/intro/what.html -share/doc/db2/ref/intro/where.html -share/doc/db2/ref/lock/stdmode.html -share/doc/db2/ref/log/config.html -share/doc/db2/ref/log/intro.html -share/doc/db2/ref/log/limits.html -share/doc/db2/ref/mp/config.html -share/doc/db2/ref/mp/intro.html -share/doc/db2/ref/perl/intro.html -share/doc/db2/ref/program/appsignals.html -share/doc/db2/ref/program/byteorder.html -share/doc/db2/ref/program/compatible.html -share/doc/db2/ref/program/convert.html -share/doc/db2/ref/program/dbsizes.html -share/doc/db2/ref/program/environ.html -share/doc/db2/ref/program/errorret.html -share/doc/db2/ref/program/java.html -share/doc/db2/ref/program/runtime.html -share/doc/db2/ref/program/solaris.txt -share/doc/db2/ref/program/thread.html -share/doc/db2/ref/program/version.html -share/doc/db2/ref/sendmail/intro.html -share/doc/db2/ref/simple_tut/close.html -share/doc/db2/ref/simple_tut/del.html -share/doc/db2/ref/simple_tut/errors.html -share/doc/db2/ref/simple_tut/example.txt -share/doc/db2/ref/simple_tut/get.html -share/doc/db2/ref/simple_tut/intro.html -share/doc/db2/ref/simple_tut/keydata.html -share/doc/db2/ref/simple_tut/open.html -share/doc/db2/ref/simple_tut/put.html -share/doc/db2/ref/toc.html -share/doc/db2/ref/transapp/admin.html -share/doc/db2/ref/transapp/apps.html -share/doc/db2/ref/transapp/archival.html -share/doc/db2/ref/transapp/checkpoint.html -share/doc/db2/ref/transapp/deadlock.html -share/doc/db2/ref/transapp/filesys.html -share/doc/db2/ref/transapp/intro.html -share/doc/db2/ref/transapp/recovery.html -share/doc/db2/ref/transapp/throughput.html -share/doc/db2/ref/transapp/writetest.txt -share/doc/db2/ref/txn/config.html -share/doc/db2/ref/txn/limits.html -share/doc/db2/ref/txn/other.html -share/doc/db2/ref/txn/stability.html -share/doc/db2/sleepycat/contact.html -share/doc/db2/sleepycat/products.html -share/doc/db2/test/build.html -share/doc/db2/test/build_faq.html -share/doc/db2/test/debug.html -share/doc/db2/test/run.html -share/doc/db2/utility/db_archive.html -share/doc/db2/utility/db_checkpoint.html -share/doc/db2/utility/db_deadlock.html -share/doc/db2/utility/db_dump.html -share/doc/db2/utility/db_load.html -share/doc/db2/utility/db_recover.html -share/doc/db2/utility/db_stat.html -share/doc/db2/utility/index.html -share/examples/db2/examples/README -share/examples/db2/examples/ex_access.c -share/examples/db2/examples/ex_appinit.c -share/examples/db2/examples/ex_btrec.c -share/examples/db2/examples/ex_lock.c -share/examples/db2/examples/ex_mpool.c -share/examples/db2/examples/ex_thread.c -share/examples/db2/examples/ex_tpcb.c -share/examples/db2/examples/ex_tpcb.h -share/examples/db2/examples_cxx/AccessExample.cpp -share/examples/db2/examples_cxx/AppinitExample.cpp -share/examples/db2/examples_cxx/LockExample.cpp -share/examples/db2/examples_cxx/MpoolExample.cpp -share/examples/db2/examples_cxx/TpcbExample.cpp -share/examples/db2/examples_java/AccessExample.java -share/examples/db2/examples_java/AppinitExample.java -share/examples/db2/examples_java/LockExample.java -share/examples/db2/examples_java/TpcbExample.java -@dirrm include/db2 -@dirrm share/examples/db2/examples -@dirrm share/examples/db2/examples_cxx -@dirrm share/examples/db2/examples_java -@dirrm share/examples/db2 -@dirrm share/doc/db2/api_c/DbTxn -@dirrm share/doc/db2/api_c/DbEnv -@dirrm share/doc/db2/api_c/DbInfo -@dirrm share/doc/db2/api_c/DbLock -@dirrm share/doc/db2/api_c/DbLockTab -@dirrm share/doc/db2/api_c/DbLog -@dirrm share/doc/db2/api_c/DbMpool -@dirrm share/doc/db2/api_c/DbMpoolFile -@dirrm share/doc/db2/api_c/Db -@dirrm share/doc/db2/api_c/DbTxnMgr -@dirrm share/doc/db2/api_c/Dbc -@dirrm share/doc/db2/api_c/Dbt -@dirrm share/doc/db2/api_c/historic -@dirrm share/doc/db2/api_c/index -@dirrm share/doc/db2/api_c/internal -@dirrm share/doc/db2/api_c/special -@dirrm share/doc/db2/api_c -@dirrm share/doc/db2/test -@dirrm share/doc/db2/sleepycat -@dirrm share/doc/db2/ref/txn -@dirrm share/doc/db2/ref/am -@dirrm share/doc/db2/ref/arch -@dirrm share/doc/db2/ref/cam -@dirrm share/doc/db2/ref/debug -@dirrm share/doc/db2/ref/dumpload -@dirrm share/doc/db2/ref/env -@dirrm share/doc/db2/ref/intro -@dirrm share/doc/db2/ref/install -@dirrm share/doc/db2/ref/lock -@dirrm share/doc/db2/ref/log -@dirrm share/doc/db2/ref/mp -@dirrm share/doc/db2/ref/perl -@dirrm share/doc/db2/ref/program -@dirrm share/doc/db2/ref/sendmail -@dirrm share/doc/db2/ref/simple_tut -@dirrm share/doc/db2/ref/transapp -@dirrm share/doc/db2/ref -@dirrm share/doc/db2/packages -@dirrm share/doc/db2/api_cxx/DbLsn -@dirrm share/doc/db2/api_cxx/Dbc -@dirrm share/doc/db2/api_cxx/DbEnv -@dirrm share/doc/db2/api_cxx/DbException -@dirrm share/doc/db2/api_cxx/DbInfo -@dirrm share/doc/db2/api_cxx/DbLock -@dirrm share/doc/db2/api_cxx/DbLockTab -@dirrm share/doc/db2/api_cxx/DbLog -@dirrm share/doc/db2/api_cxx/Db -@dirrm share/doc/db2/api_cxx/DbMpool -@dirrm share/doc/db2/api_cxx/DbMpoolFile -@dirrm share/doc/db2/api_cxx/DbTxn -@dirrm share/doc/db2/api_cxx/DbTxnMgr -@dirrm share/doc/db2/api_cxx/Dbt -@dirrm share/doc/db2/api_cxx/index -@dirrm share/doc/db2/api_cxx/special -@dirrm share/doc/db2/api_cxx -@dirrm share/doc/db2/utility -@dirrm share/doc/db2/distrib -@dirrm share/doc/db2/build -@dirrm share/doc/db2/api_java/DbMpool -@dirrm share/doc/db2/api_java/DbEnv -@dirrm share/doc/db2/api_java/DbException -@dirrm share/doc/db2/api_java/DbInfo -@dirrm share/doc/db2/api_java/DbLock -@dirrm share/doc/db2/api_java/DbLockTab -@dirrm share/doc/db2/api_java/DbLog -@dirrm share/doc/db2/api_java/DbLsn -@dirrm share/doc/db2/api_java/Db -@dirrm share/doc/db2/api_java/DbMpoolFile -@dirrm share/doc/db2/api_java/DbRunRecoveryException -@dirrm share/doc/db2/api_java/DbTxn -@dirrm share/doc/db2/api_java/DbTxnMgr -@dirrm share/doc/db2/api_java/Dbc -@dirrm share/doc/db2/api_java/Dbt -@dirrm share/doc/db2/api_java/index -@dirrm share/doc/db2/api_java/special -@dirrm share/doc/db2/api_java -@dirrm share/doc/db2/images -@dirrm share/doc/db2 diff --git a/databases/db45/Makefile b/databases/db45/Makefile deleted file mode 100644 index 9b1fe8a00a1e..000000000000 --- a/databases/db45/Makefile +++ /dev/null @@ -1,41 +0,0 @@ -# ports collection makefile for: Berkeley DB -# Date created: 26 Jan 1998 -# Whom: Josh Tiefenbach <josh@ican.net> -# -# $FreeBSD$ -# - -PORTNAME= db -PORTVERSION= 2.7.7 -CATEGORIES= databases -MASTER_SITES= http://www.sleepycat.com/update/${PORTVERSION}/ - -MAINTAINER= josh@ican.net - -Y2K= http://www.sleepycat.com/faq.html#A8 - -MANUAL_PACKAGE_BUILD= incompatible with libc internal db calls -WRKSRC= ${WRKDIR}/${DISTNAME}/build_unix - -INSTALLS_SHLIB= yes -GNU_CONFIGURE= yes -CONFIGURE_SCRIPT= ../dist/configure -CONFIGURE_ARGS= --enable-compat185 \ - --enable-dump185 --enable-cxx - -post-install: - ${MKDIR} ${PREFIX}/share/examples/db2 - cd ${WRKSRC}/..; \ - tar -cf - --exclude tags examples/ examples_cxx/ examples_java/ | \ - ( cd ${PREFIX}/share/examples/db2; tar xf - ) - @${ECHO_MSG} "" - @${ECHO_MSG} "Java support for ${PKGNAME} is *not* built by default, and requires that you" - @${ECHO_MSG} "have a working copy of the JDK (v1.1) installed." - @${ECHO_MSG} "" - @${ECHO_MSG} "To build java support, please read:" - @${ECHO_MSG} "" - @${ECHO_MSG} "${WRKDIR}/${DISTNAME}/java/README" - @${ECHO_MSG} "" - @${ECHO_MSG} "and follow the directions therein." - -.include <bsd.port.mk> diff --git a/databases/db45/distinfo b/databases/db45/distinfo deleted file mode 100644 index d761baf3bdff..000000000000 --- a/databases/db45/distinfo +++ /dev/null @@ -1 +0,0 @@ -MD5 (db-2.7.7.tar.gz) = 20256735091ee382c6601117d82d749a diff --git a/databases/db45/files/patch-aa b/databases/db45/files/patch-aa deleted file mode 100644 index db3d430758a2..000000000000 --- a/databases/db45/files/patch-aa +++ /dev/null @@ -1,506 +0,0 @@ ---- ../dist/Makefile.in.orig Mon Dec 7 21:05:59 1998 -+++ ../dist/Makefile.in Tue Jun 6 17:44:50 2000 -@@ -1,13 +1,16 @@ - # @(#)Makefile.in 10.62 (Sleepycat) 12/7/98 - -+SOVER?= 0 -+ - srcdir= @srcdir@/.. - CPPFLAGS=-I. -I$(srcdir)/include @CPPFLAGS@ -+SHAREDFLAGS= -fpic -DPIC - CFLAGS= -c @CFLAGS@ $(CPPFLAGS) - CC= @CC@ - CXXFLAGS=-c @CXXFLAGS@ $(CPPFLAGS) - CXX= @CXX@ --LDFLAGS=@LDFLAGS@ --LIBS= @LIBS@ -+LDFLAGS=@LDFLAGS@ -L. -+LIBS= @LIBS@ -ldb2 - - SHELL= @db_cv_path_sh@ - ar= @db_cv_path_ar@ cr -@@ -43,85 +46,91 @@ - LOBJS= @LIBOBJS@ - POBJS= err.o getlong.o - --libdb= libdb.a --all: $(libdb) $(PROGS) -+libdb= libdb2.a -+libdbso= libdb2.so.$(SOVER) -+all: $(libdb) $(libdbso) $(PROGS) - - $(libdb): db.h $(OBJS) $(LOBJS) - $(rm) -f $@ - $(ar) $@ $(OBJS) $(LOBJS) - test ! -f $(ranlib) || $(ranlib) $@ - -+$(libdbso): db.h $(OBJS:S/.o$/.so/g) $(LOBJS:S/.o$/.so/g) -+ $(rm) -f $@ -+ $(CXX) -shared -Wl,-x -Wl,-assert -Wl,pure-text -Wl,-soname,$@ -o $@ $(OBJS:S/.o$/.so/g) $(LOBJS:S/.o$/.so/g) -+ ln -sf $@ libdb2.so -+ - DBA= db_archive.o $(POBJS) --db_archive: $(DBA) $(libdb) -- $(CC) -o $@ $(LDFLAGS) $(DBA) $(libdb) $(LIBS) -+db_archive: $(DBA) $(libdbso) -+ $(CC) -o $@ $(LDFLAGS) $(DBA) $(LIBS) - - DBB= db_checkpoint.o $(POBJS) --db_checkpoint: $(DBB) $(libdb) -- $(CC) -o $@ $(LDFLAGS) $(DBB) $(libdb) $(LIBS) -+db_checkpoint: $(DBB) $(libdbso) -+ $(CC) -o $@ $(LDFLAGS) $(DBB) $(LIBS) - - DBC= db_deadlock.o $(POBJS) --db_deadlock: $(DBC) $(libdb) -- $(CC) -o $@ $(LDFLAGS) $(DBC) $(libdb) $(LIBS) -+db_deadlock: $(DBC) $(libdbso) -+ $(CC) -o $@ $(LDFLAGS) $(DBC) $(LIBS) - - DBD= db_dump.o $(POBJS) --db_dump: $(DBD) $(libdb) -- $(CC) -o $@ $(LDFLAGS) $(DBD) $(libdb) $(LIBS) -+db_dump: $(DBD) $(libdbso) -+ $(CC) -o $@ $(LDFLAGS) $(DBD) $(LIBS) - - DBE= db_dump185.o $(POBJS) - db_dump185: $(DBE) - $(CC) -o $@ $(LDFLAGS) $(DBE) $(LIBS) - - DBF= db_load.o $(POBJS) --db_load: $(DBF) $(libdb) -- $(CC) -o $@ $(LDFLAGS) $(DBF) $(libdb) $(LIBS) -+db_load: $(DBF) $(libdbso) -+ $(CC) -o $@ $(LDFLAGS) $(DBF) $(LIBS) - - DBG= db_printlog.o $(POBJS) --db_printlog: $(DBG) $(libdb) -- $(CC) -o $@ $(LDFLAGS) $(DBG) $(libdb) $(LIBS) -+db_printlog: $(DBG) $(libdbso) -+ $(CC) -o $@ $(LDFLAGS) $(DBG) $(LIBS) - - DBH= db_recover.o $(POBJS) --db_recover: $(DBH) $(libdb) -- $(CC) -o $@ $(LDFLAGS) $(DBH) $(libdb) $(LIBS) -+db_recover: $(DBH) $(libdbso) -+ $(CC) -o $@ $(LDFLAGS) $(DBH) $(LIBS) - - DBI= db_stat.o $(POBJS) --db_stat: $(DBI) $(libdb) -- $(CC) -o $@ $(LDFLAGS) $(DBI) $(libdb) $(LIBS) -+db_stat: $(DBI) $(libdbso) -+ $(CC) -o $@ $(LDFLAGS) $(DBI) $(LIBS) - - EPROGS= ex_access ex_appinit ex_btrec ex_lock ex_mpool ex_thread ex_tpcb - DBJ= ex_access.o --ex_access: $(DBJ) $(libdb) -- $(CC) -o $@ $(LDFLAGS) $(DBJ) $(libdb) $(LIBS) -+ex_access: $(DBJ) $(libdbso) -+ $(CC) -o $@ $(LDFLAGS) $(DBJ) $(LIBS) - - DBK= ex_appinit.o --ex_appinit: $(DBK) $(libdb) -- $(CC) -o $@ $(LDFLAGS) $(DBK) $(libdb) $(LIBS) -+ex_appinit: $(DBK) $(libdbso) -+ $(CC) -o $@ $(LDFLAGS) $(DBK) $(LIBS) - - DBL= ex_btrec.o --ex_btrec: $(DBL) $(libdb) -- $(CC) -o $@ $(LDFLAGS) $(DBL) $(libdb) $(LIBS) -+ex_btrec: $(DBL) $(libdbso) -+ $(CC) -o $@ $(LDFLAGS) $(DBL) $(LIBS) - - DBM= ex_lock.o $(POBJS) --ex_lock: $(DBM) $(libdb) -- $(CC) -o $@ $(LDFLAGS) $(DBM) $(libdb) $(LIBS) -+ex_lock: $(DBM) $(libdbso) -+ $(CC) -o $@ $(LDFLAGS) $(DBM) $(LIBS) - - DBN= ex_mpool.o --ex_mpool: $(DBN) $(libdb) -- $(CC) -o $@ $(LDFLAGS) $(DBN) $(libdb) $(LIBS) -+ex_mpool: $(DBN) $(libdbso) -+ $(CC) -o $@ $(LDFLAGS) $(DBN) $(LIBS) - - DBO= ex_thread.o --ex_thread: $(DBO) $(libdb) -- $(CC) -o $@ $(LDFLAGS) $(DBO) $(libdb) $(LIBS) -+ex_thread: $(DBO) $(libdbso) -+ $(CC) -o $@ $(LDFLAGS) $(DBO) $(LIBS) - - DBP= ex_tpcb.o $(POBJS) --ex_tpcb: $(DBP) $(libdb) -- $(CC) -o $@ $(LDFLAGS) $(DBP) $(libdb) $(LIBS) -+ex_tpcb: $(DBP) $(libdbso) -+ $(CC) -o $@ $(LDFLAGS) $(DBP) $(LIBS) - - DBT= tclAppInit.o tcl_dbm.o tcl_hsearch.o tcl_lock.o tcl_log.o tcl_mpool.o \ - tcl_mutex.o tcl_ndbm.o tcl_txn.o utils.o $(POBJS) - - dbtest: .dbtestrc --dbtest: $(DBT) $(libdb) -- $(CC) -o $@ $(LDFLAGS) $(DBT) $(libdb) $(LIBS) -+dbtest: $(DBT) $(libdbso) -+ $(CC) -o $@ $(LDFLAGS) $(DBT) $(LIBS) - - AOBJS= err.o getcwd.o getlong.o getopt.o memcmp.o memcpy.o memmove.o \ - raise.o snprintf.o strerror.o strsep.o vsnprintf.o -@@ -131,8 +140,8 @@ - $(rm) -f $(DBA) $(DBB) $(DBC) $(DBD) $(DBE) $(DBF) $(DBG) $(DBH) - $(rm) -f $(DBI) $(DBJ) $(DBK) $(DBL) $(DBM) $(DBN) $(DBO) $(DBP) - $(rm) -f $(DBT) -- $(rm) -f $(PROGS) $(EPROGS) $(POBJS) $(LOBJS) @build_test@ -- $(rm) -f core *.core .dbtestrc $(libdb) -+ $(rm) -f $(PROGS) $(EPROGS) $(POBJS) $(LOBJS) *.so @build_test@ -+ $(rm) -f core *.core .dbtestrc $(libdb) $(libdbso) - - depend obj: - -@@ -141,11 +150,11 @@ - $(rm) -f confdefs.h db.h db_int.h db_185.h include.tcl - - prefix= @prefix@ --bindir= $(prefix)/BerkeleyDB/bin --datadir=$(prefix)/BerkeleyDB/share --includedir=$(prefix)/BerkeleyDB/include --libdir= $(prefix)/BerkeleyDB/lib --mandir= $(prefix)/BerkeleyDB/docs -+bindir= $(prefix)/bin -+datadir=$(prefix)/share/db2 -+includedir=$(prefix)/include/db2 -+libdir= $(prefix)/lib -+mandir= $(prefix)/share/doc/db2 - - dmode= 755 - emode= 555 -@@ -170,6 +179,9 @@ - @cd $(libdir) && $(rm) -f $(libdb) - @$(cp) -p $(libdb) $(libdir) - @cd $(libdir) && $(chmod) $(fmode) $(libdb) -+ @$(cp) -p $(libdbso) $(libdir) -+ @cd $(libdir) && $(chmod) $(fmode) $(libdbso) -+ ln -sf $(libdbso) $(libdir)/libdb2.so - @echo "Installing DB utilities: $(bindir) ..." - @test -d $(bindir) || \ - ($(mkdir) -p $(bindir) && $(chmod) $(dmode) $(bindir)) -@@ -506,3 +518,320 @@ - $(CC) $(CFLAGS) $? - vsnprintf.o: $(srcdir)/clib/vsnprintf.c - $(CC) $(CFLAGS) $? -+ -+# Shared build -+# Programs. -+db_archive.so: $(srcdir)/db_archive/db_archive.c -+ $(CC) $(CFLAGS) $(SHAREDFLAGS) $? -o $@ -+db_checkpoint.so: $(srcdir)/db_checkpoint/db_checkpoint.c -+ $(CC) $(CFLAGS) $(SHAREDFLAGS) $? -o $@ -+db_deadlock.so: $(srcdir)/db_deadlock/db_deadlock.c -+ $(CC) $(CFLAGS) $(SHAREDFLAGS) $? -o $@ -+db_dump.so: $(srcdir)/db_dump/db_dump.c -+ $(CC) $(CFLAGS) $(SHAREDFLAGS) $? -o $@ -+db_dump185.so: $(srcdir)/db_dump185/db_dump185.c -+ $(CC) $(CFLAGS) $(SHAREDFLAGS) $? -o $@ -+db_load.so: $(srcdir)/db_load/db_load.c -+ $(CC) $(CFLAGS) $(SHAREDFLAGS) $? -o $@ -+db_printlog.so: $(srcdir)/db_printlog/db_printlog.c -+ $(CC) $(CFLAGS) $(SHAREDFLAGS) $? -o $@ -+db_recover.so: $(srcdir)/db_recover/db_recover.c -+ $(CC) $(CFLAGS) $(SHAREDFLAGS) $? -o $@ -+db_stat.so: $(srcdir)/db_stat/db_stat.c -+ $(CC) $(CFLAGS) $(SHAREDFLAGS) $? -o $@ -+ -+# Examples. -+ex_access.so: $(srcdir)/examples/ex_access.c -+ $(CC) $(CFLAGS) $(SHAREDFLAGS) $? -o $@ -+ex_appinit.so: $(srcdir)/examples/ex_appinit.c -+ $(CC) $(CFLAGS) $(SHAREDFLAGS) $? -o $@ -+ex_btrec.so: $(srcdir)/examples/ex_btrec.c -+ $(CC) $(CFLAGS) $(SHAREDFLAGS) $? -o $@ -+ex_lock.so: $(srcdir)/examples/ex_lock.c -+ $(CC) $(CFLAGS) $(SHAREDFLAGS) $? -o $@ -+ex_mpool.so: $(srcdir)/examples/ex_mpool.c -+ $(CC) $(CFLAGS) $(SHAREDFLAGS) $? -o $@ -+ex_thread.so: $(srcdir)/examples/ex_thread.c -+ $(CC) $(CFLAGS) $(SHAREDFLAGS) $? -o $@ -+ex_tpcb.so: $(srcdir)/examples/ex_tpcb.c -+ $(CC) $(CFLAGS) $(SHAREDFLAGS) $? -o $@ -+ -+# DB files. -+db.so: $(srcdir)/db/db.c -+ $(CC) $(CFLAGS) $(SHAREDFLAGS) $? -o $@ -+db_am.so: $(srcdir)/db/db_am.c -+ $(CC) $(CFLAGS) $(SHAREDFLAGS) $? -o $@ -+db_auto.so: $(srcdir)/db/db_auto.c -+ $(CC) $(CFLAGS) $(SHAREDFLAGS) $? -o $@ -+db_conv.so: $(srcdir)/db/db_conv.c -+ $(CC) $(CFLAGS) $(SHAREDFLAGS) $? -o $@ -+db_dispatch.so: $(srcdir)/db/db_dispatch.c -+ $(CC) $(CFLAGS) $(SHAREDFLAGS) $? -o $@ -+db_dup.so: $(srcdir)/db/db_dup.c -+ $(CC) $(CFLAGS) $(SHAREDFLAGS) $? -o $@ -+db_iface.so: $(srcdir)/db/db_iface.c -+ $(CC) $(CFLAGS) $(SHAREDFLAGS) $? -o $@ -+db_join.so: $(srcdir)/db/db_join.c -+ $(CC) $(CFLAGS) $(SHAREDFLAGS) $? -o $@ -+db_overflow.so: $(srcdir)/db/db_overflow.c -+ $(CC) $(CFLAGS) $(SHAREDFLAGS) $? -o $@ -+db_pr.so: $(srcdir)/db/db_pr.c -+ $(CC) $(CFLAGS) $(SHAREDFLAGS) $? -o $@ -+db_rec.so: $(srcdir)/db/db_rec.c -+ $(CC) $(CFLAGS) $(SHAREDFLAGS) $? -o $@ -+db_ret.so: $(srcdir)/db/db_ret.c -+ $(CC) $(CFLAGS) $(SHAREDFLAGS) $? -o $@ -+ -+# Btree source files. -+bt_compare.so: $(srcdir)/btree/bt_compare.c -+ $(CC) $(CFLAGS) $(SHAREDFLAGS) $? -o $@ -+bt_conv.so: $(srcdir)/btree/bt_conv.c -+ $(CC) $(CFLAGS) $(SHAREDFLAGS) $? -o $@ -+bt_curadj.so: $(srcdir)/btree/bt_curadj.c -+ $(CC) $(CFLAGS) $(SHAREDFLAGS) $? -o $@ -+bt_cursor.so: $(srcdir)/btree/bt_cursor.c -+ $(CC) $(CFLAGS) $(SHAREDFLAGS) $? -o $@ -+bt_delete.so: $(srcdir)/btree/bt_delete.c -+ $(CC) $(CFLAGS) $(SHAREDFLAGS) $? -o $@ -+bt_open.so: $(srcdir)/btree/bt_open.c -+ $(CC) $(CFLAGS) $(SHAREDFLAGS) $? -o $@ -+bt_page.so: $(srcdir)/btree/bt_page.c -+ $(CC) $(CFLAGS) $(SHAREDFLAGS) $? -o $@ -+bt_put.so: $(srcdir)/btree/bt_put.c -+ $(CC) $(CFLAGS) $(SHAREDFLAGS) $? -o $@ -+bt_rec.so: $(srcdir)/btree/bt_rec.c -+ $(CC) $(CFLAGS) $(SHAREDFLAGS) $? -o $@ -+bt_recno.so: $(srcdir)/btree/bt_recno.c -+ $(CC) $(CFLAGS) $(SHAREDFLAGS) $? -o $@ -+bt_rsearch.so: $(srcdir)/btree/bt_rsearch.c -+ $(CC) $(CFLAGS) $(SHAREDFLAGS) $? -o $@ -+bt_search.so: $(srcdir)/btree/bt_search.c -+ $(CC) $(CFLAGS) $(SHAREDFLAGS) $? -o $@ -+bt_split.so: $(srcdir)/btree/bt_split.c -+ $(CC) $(CFLAGS) $(SHAREDFLAGS) $? -o $@ -+bt_stack.so: $(srcdir)/btree/bt_stack.c -+ $(CC) $(CFLAGS) $(SHAREDFLAGS) $? -o $@ -+bt_stat.so: $(srcdir)/btree/bt_stat.c -+ $(CC) $(CFLAGS) $(SHAREDFLAGS) $? -o $@ -+btree_auto.so: $(srcdir)/btree/btree_auto.c -+ $(CC) $(CFLAGS) $(SHAREDFLAGS) $? -o $@ -+ -+# C++ interface files. -+cxx_app.so: $(srcdir)/cxx/cxx_app.cpp -+ $(CXX) $(CXXFLAGS) $(SHAREDFLAGS) $? -o $@ -+cxx_except.so: $(srcdir)/cxx/cxx_except.cpp -+ $(CXX) $(CXXFLAGS) $(SHAREDFLAGS) $? -o $@ -+cxx_lock.so: $(srcdir)/cxx/cxx_lock.cpp -+ $(CXX) $(CXXFLAGS) $(SHAREDFLAGS) $? -o $@ -+cxx_log.so: $(srcdir)/cxx/cxx_log.cpp -+ $(CXX) $(CXXFLAGS) $(SHAREDFLAGS) $? -o $@ -+cxx_mpool.so: $(srcdir)/cxx/cxx_mpool.cpp -+ $(CXX) $(CXXFLAGS) $(SHAREDFLAGS) $? -o $@ -+cxx_table.so: $(srcdir)/cxx/cxx_table.cpp -+ $(CXX) $(CXXFLAGS) $(SHAREDFLAGS) $? -o $@ -+cxx_txn.so: $(srcdir)/cxx/cxx_txn.cpp -+ $(CXX) $(CXXFLAGS) $(SHAREDFLAGS) $? -o $@ -+ -+# Hash source files. -+hash_auto.so: $(srcdir)/hash/hash_auto.c -+ $(CC) $(CFLAGS) $(SHAREDFLAGS) $? -o $@ -+hash.so: $(srcdir)/hash/hash.c -+ $(CC) $(CFLAGS) $(SHAREDFLAGS) $? -o $@ -+hash_conv.so: $(srcdir)/hash/hash_conv.c -+ $(CC) $(CFLAGS) $(SHAREDFLAGS) $? -o $@ -+hash_dup.so: $(srcdir)/hash/hash_dup.c -+ $(CC) $(CFLAGS) $(SHAREDFLAGS) $? -o $@ -+hash_func.so: $(srcdir)/hash/hash_func.c -+ $(CC) $(CFLAGS) $(SHAREDFLAGS) $? -o $@ -+hash_page.so: $(srcdir)/hash/hash_page.c -+ $(CC) $(CFLAGS) $(SHAREDFLAGS) $? -o $@ -+hash_rec.so: $(srcdir)/hash/hash_rec.c -+ $(CC) $(CFLAGS) $(SHAREDFLAGS) $? -o $@ -+hash_stat.so: $(srcdir)/hash/hash_stat.c -+ $(CC) $(CFLAGS) $(SHAREDFLAGS) $? -o $@ -+ -+# Lock source files. -+lock.so: $(srcdir)/lock/lock.c -+ $(CC) $(CFLAGS) $(SHAREDFLAGS) $? -o $@ -+lock_conflict.so:$(srcdir)/lock/lock_conflict.c -+ $(CC) $(CFLAGS) $(SHAREDFLAGS) $? -o $@ -+lock_deadlock.so:$(srcdir)/lock/lock_deadlock.c -+ $(CC) $(CFLAGS) $(SHAREDFLAGS) $? -o $@ -+lock_region.so:$(srcdir)/lock/lock_region.c -+ $(CC) $(CFLAGS) $(SHAREDFLAGS) $? -o $@ -+lock_util.so:$(srcdir)/lock/lock_util.c -+ $(CC) $(CFLAGS) $(SHAREDFLAGS) $? -o $@ -+ -+# Log source files. -+log.so: $(srcdir)/log/log.c -+ $(CC) $(CFLAGS) $(SHAREDFLAGS) $? -o $@ -+log_archive.so: $(srcdir)/log/log_archive.c -+ $(CC) $(CFLAGS) $(SHAREDFLAGS) $? -o $@ -+log_auto.so: $(srcdir)/log/log_auto.c -+ $(CC) $(CFLAGS) $(SHAREDFLAGS) $? -o $@ -+log_compare.so: $(srcdir)/log/log_compare.c -+ $(CC) $(CFLAGS) $(SHAREDFLAGS) $? -o $@ -+log_findckp.so: $(srcdir)/log/log_findckp.c -+ $(CC) $(CFLAGS) $(SHAREDFLAGS) $? -o $@ -+log_get.so: $(srcdir)/log/log_get.c -+ $(CC) $(CFLAGS) $(SHAREDFLAGS) $? -o $@ -+log_put.so: $(srcdir)/log/log_put.c -+ $(CC) $(CFLAGS) $(SHAREDFLAGS) $? -o $@ -+log_rec.so: $(srcdir)/log/log_rec.c -+ $(CC) $(CFLAGS) $(SHAREDFLAGS) $? -o $@ -+log_register.so: $(srcdir)/log/log_register.c -+ $(CC) $(CFLAGS) $(SHAREDFLAGS) $? -o $@ -+ -+# Mpool source files. -+mp_bh.so: $(srcdir)/mp/mp_bh.c -+ $(CC) $(CFLAGS) $(SHAREDFLAGS) $? -o $@ -+mp_fget.so: $(srcdir)/mp/mp_fget.c -+ $(CC) $(CFLAGS) $(SHAREDFLAGS) $? -o $@ -+mp_fopen.so: $(srcdir)/mp/mp_fopen.c -+ $(CC) $(CFLAGS) $(SHAREDFLAGS) $? -o $@ -+mp_fput.so: $(srcdir)/mp/mp_fput.c -+ $(CC) $(CFLAGS) $(SHAREDFLAGS) $? -o $@ -+mp_fset.so: $(srcdir)/mp/mp_fset.c -+ $(CC) $(CFLAGS) $(SHAREDFLAGS) $? -o $@ -+mp_open.so: $(srcdir)/mp/mp_open.c -+ $(CC) $(CFLAGS) $(SHAREDFLAGS) $? -o $@ -+mp_pr.so: $(srcdir)/mp/mp_pr.c -+ $(CC) $(CFLAGS) $(SHAREDFLAGS) $? -o $@ -+mp_region.so: $(srcdir)/mp/mp_region.c -+ $(CC) $(CFLAGS) $(SHAREDFLAGS) $? -o $@ -+mp_sync.so: $(srcdir)/mp/mp_sync.c -+ $(CC) $(CFLAGS) $(SHAREDFLAGS) $? -o $@ -+ -+# Mutex source files. -+mutex.so: $(srcdir)/mutex/mutex.c -+ $(CC) $(CFLAGS) $(SHAREDFLAGS) $? -o $@ -+# XXX -+# UTS4 spinlocks -+uts4_cc.so: $(srcdir)/mutex/uts4_cc.s -+ $(AS) $(ASFLAGS) $(SHAREDFLAGS) -o $@ $? -o $@ -+ -+# Transaction source files. -+txn.so: $(srcdir)/txn/txn.c -+ $(CC) $(CFLAGS) $(SHAREDFLAGS) $? -o $@ -+txn_auto.so: $(srcdir)/txn/txn_auto.c -+ $(CC) $(CFLAGS) $(SHAREDFLAGS) $? -o $@ -+txn_rec.so: $(srcdir)/txn/txn_rec.c -+ $(CC) $(CFLAGS) $(SHAREDFLAGS) $? -o $@ -+ -+# XA source files. -+xa.so: $(srcdir)/xa/xa.c -+ $(CC) $(CFLAGS) $(SHAREDFLAGS) $? -o $@ -+xa_db.so: $(srcdir)/xa/xa_db.c -+ $(CC) $(CFLAGS) $(SHAREDFLAGS) $? -o $@ -+xa_map.so: $(srcdir)/xa/xa_map.c -+ $(CC) $(CFLAGS) $(SHAREDFLAGS) $? -o $@ -+ -+# Historic interfaces. -+hsearch.so: $(srcdir)/hsearch/hsearch.c -+ $(CC) $(CFLAGS) $(SHAREDFLAGS) $? -o $@ -+dbm.so: $(srcdir)/dbm/dbm.c -+ $(CC) $(CFLAGS) $(SHAREDFLAGS) $? -o $@ -+db185.so: $(srcdir)/db185/db185.c -+ $(CC) $(CFLAGS) $(SHAREDFLAGS) $? -o $@ -+ -+# Common source files. -+db_appinit.so: $(srcdir)/common/db_appinit.c -+ $(CC) $(CFLAGS) $(SHAREDFLAGS) $? -o $@ -+db_apprec.so: $(srcdir)/common/db_apprec.c -+ $(CC) $(CFLAGS) $(SHAREDFLAGS) $? -o $@ -+db_byteorder.so: $(srcdir)/common/db_byteorder.c -+ $(CC) $(CFLAGS) $(SHAREDFLAGS) $? -o $@ -+db_err.so: $(srcdir)/common/db_err.c -+ $(CC) $(CFLAGS) $(SHAREDFLAGS) $? -o $@ -+db_log2.so: $(srcdir)/common/db_log2.c -+ $(CC) $(CFLAGS) $(SHAREDFLAGS) $? -o $@ -+db_region.so: $(srcdir)/common/db_region.c -+ $(CC) $(CFLAGS) $(SHAREDFLAGS) $? -o $@ -+db_salloc.so: $(srcdir)/common/db_salloc.c -+ $(CC) $(CFLAGS) $(SHAREDFLAGS) $? -o $@ -+db_shash.so: $(srcdir)/common/db_shash.c -+ $(CC) $(CFLAGS) $(SHAREDFLAGS) $? -o $@ -+ -+# OS specific source files. -+os_abs.so: $(srcdir)/os/os_abs.c -+ $(CC) $(CFLAGS) $(SHAREDFLAGS) $? -o $@ -+os_alloc.so: $(srcdir)/os/os_alloc.c -+ $(CC) $(CFLAGS) $(SHAREDFLAGS) $? -o $@ -+os_config.so: $(srcdir)/os/os_config.c -+ $(CC) $(CFLAGS) $(SHAREDFLAGS) $? -o $@ -+os_dir.so: $(srcdir)/os/os_dir.c -+ $(CC) $(CFLAGS) $(SHAREDFLAGS) $? -o $@ -+os_fid.so: $(srcdir)/os/os_fid.c -+ $(CC) $(CFLAGS) $(SHAREDFLAGS) $? -o $@ -+os_fsync.so: $(srcdir)/os/os_fsync.c -+ $(CC) $(CFLAGS) $(SHAREDFLAGS) $? -o $@ -+os_map.so: $(srcdir)/os/os_map.c -+ $(CC) $(CFLAGS) $(SHAREDFLAGS) $? -o $@ -+os_oflags.so: $(srcdir)/os/os_oflags.c -+ $(CC) $(CFLAGS) $(SHAREDFLAGS) $? -o $@ -+os_open.so: $(srcdir)/os/os_open.c -+ $(CC) $(CFLAGS) $(SHAREDFLAGS) $? -o $@ -+os_rpath.so: $(srcdir)/os/os_rpath.c -+ $(CC) $(CFLAGS) $(SHAREDFLAGS) $? -o $@ -+os_rw.so: $(srcdir)/os/os_rw.c -+ $(CC) $(CFLAGS) $(SHAREDFLAGS) $? -o $@ -+os_seek.so: $(srcdir)/os/os_seek.c -+ $(CC) $(CFLAGS) $(SHAREDFLAGS) $? -o $@ -+os_sleep.so: $(srcdir)/os/os_sleep.c -+ $(CC) $(CFLAGS) $(SHAREDFLAGS) $? -o $@ -+os_spin.so: $(srcdir)/os/os_spin.c -+ $(CC) $(CFLAGS) $(SHAREDFLAGS) $? -o $@ -+os_stat.so: $(srcdir)/os/os_stat.c -+ $(CC) $(CFLAGS) $(SHAREDFLAGS) $? -o $@ -+os_tmpdir.so: $(srcdir)/os/os_tmpdir.c -+ $(CC) $(CFLAGS) $(SHAREDFLAGS) $? -o $@ -+os_unlink.so: $(srcdir)/os/os_unlink.c -+ $(CC) $(CFLAGS) $(SHAREDFLAGS) $? -o $@ -+ -+# Test programs. -+tclAppInit.so: $(srcdir)/test/tclAppInit.c -+ $(CC) $(CFLAGS) $(SHAREDFLAGS) $? -o $@ -+tcl_dbm.so: $(srcdir)/test/tcl_dbm.c -+ $(CC) $(CFLAGS) $(SHAREDFLAGS) $? -o $@ -+tcl_hsearch.so: $(srcdir)/test/tcl_hsearch.c -+ $(CC) $(CFLAGS) $(SHAREDFLAGS) $? -o $@ -+tcl_lock.so: $(srcdir)/test/tcl_lock.c -+ $(CC) $(CFLAGS) $(SHAREDFLAGS) $? -o $@ -+tcl_log.so: $(srcdir)/test/tcl_log.c -+ $(CC) $(CFLAGS) $(SHAREDFLAGS) $? -o $@ -+tcl_mpool.so: $(srcdir)/test/tcl_mpool.c -+ $(CC) $(CFLAGS) $(SHAREDFLAGS) $? -o $@ -+tcl_mutex.so: $(srcdir)/test/tcl_mutex.c -+ $(CC) $(CFLAGS) $(SHAREDFLAGS) $? -o $@ -+tcl_ndbm.so: $(srcdir)/test/tcl_ndbm.c -+ $(CC) $(CFLAGS) $(SHAREDFLAGS) $? -o $@ -+tcl_txn.so: $(srcdir)/test/tcl_txn.c -+ $(CC) $(CFLAGS) $(SHAREDFLAGS) $? -o $@ -+utils.so: $(srcdir)/test/utils.c -+ $(CC) $(CFLAGS) $(SHAREDFLAGS) $? -o $@ -+ -+# Replacement source files. -+err.so: $(srcdir)/clib/err.c -+ $(CC) $(CFLAGS) $(SHAREDFLAGS) $? -o $@ -+getcwd.so: $(srcdir)/clib/getcwd.c -+ $(CC) $(CFLAGS) $(SHAREDFLAGS) $? -o $@ -+getlong.so: $(srcdir)/clib/getlong.c -+ $(CC) $(CFLAGS) $(SHAREDFLAGS) $? -o $@ -+getopt.so: $(srcdir)/clib/getopt.c -+ $(CC) $(CFLAGS) $(SHAREDFLAGS) $? -o $@ -+memcmp.so: $(srcdir)/clib/memcmp.c -+ $(CC) $(CFLAGS) $(SHAREDFLAGS) $? -o $@ -+memcpy.so: $(srcdir)/clib/memmove.c -+ $(CC) -DMEMCOPY $(CFLAGS) $(SHAREDFLAGS) $? -o $@ -+memmove.so: $(srcdir)/clib/memmove.c -+ $(CC) -DMEMMOVE $(CFLAGS) $(SHAREDFLAGS) $? -o $@ -+raise.so: $(srcdir)/clib/raise.c -+ $(CC) $(CFLAGS) $(SHAREDFLAGS) $? -o $@ -+snprintf.so: $(srcdir)/clib/snprintf.c -+ $(CC) $(CFLAGS) $(SHAREDFLAGS) $? -o $@ -+strerror.so: $(srcdir)/clib/strerror.c -+ $(CC) $(CFLAGS) $(SHAREDFLAGS) $? -o $@ -+strsep.so: $(srcdir)/clib/strsep.c -+ $(CC) $(CFLAGS) $(SHAREDFLAGS) $? -o $@ -+vsnprintf.so: $(srcdir)/clib/vsnprintf.c -+ $(CC) $(CFLAGS) $(SHAREDFLAGS) $? -o $@ diff --git a/databases/db45/pkg-comment b/databases/db45/pkg-comment deleted file mode 100644 index 39a54a240320..000000000000 --- a/databases/db45/pkg-comment +++ /dev/null @@ -1 +0,0 @@ -The Berkeley DB package, revision 2 diff --git a/databases/db45/pkg-descr b/databases/db45/pkg-descr deleted file mode 100644 index b9ed34ee6d81..000000000000 --- a/databases/db45/pkg-descr +++ /dev/null @@ -1,13 +0,0 @@ -Revesion 2 of the Berkeley DB library. This version uses an incompatible -underlying database format than revision 1 and a different standard API. -Utilities are included in the distribution to convert v1.85 databases to v2 -databases, and a backwards compatible API is provided to maintain -compatibility with programs using the v1.85 interface. - -There are minor interface changes in this release which may require that DB -applications be modified and recompiled. For a complete discussion of -interface changes, see: - -http://www.sleepycat.com/update/ - -WWW: http://www.sleepycat.com diff --git a/databases/db45/pkg-plist b/databases/db45/pkg-plist deleted file mode 100644 index 961bc047a6e4..000000000000 --- a/databases/db45/pkg-plist +++ /dev/null @@ -1,564 +0,0 @@ -include/db2/db.h -include/db2/db_cxx.h -include/db2/db_185.h -lib/libdb2.a -lib/libdb2.so -lib/libdb2.so.0 -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 -share/doc/db2/api_c/Db/close.html -share/doc/db2/api_c/Db/cursor.html -share/doc/db2/api_c/Db/del.html -share/doc/db2/api_c/Db/fd.html -share/doc/db2/api_c/Db/get.html -share/doc/db2/api_c/Db/join.html -share/doc/db2/api_c/Db/open.html -share/doc/db2/api_c/Db/put.html -share/doc/db2/api_c/Db/stat.html -share/doc/db2/api_c/Db/sync.html -share/doc/db2/api_c/DbEnv/appexit.html -share/doc/db2/api_c/DbEnv/appinit.html -share/doc/db2/api_c/DbEnv/env.html -share/doc/db2/api_c/DbEnv/version.html -share/doc/db2/api_c/DbInfo/info.html -share/doc/db2/api_c/DbLock/put.html -share/doc/db2/api_c/DbLockTab/close.html -share/doc/db2/api_c/DbLockTab/detect.html -share/doc/db2/api_c/DbLockTab/get.html -share/doc/db2/api_c/DbLockTab/id.html -share/doc/db2/api_c/DbLockTab/open.html -share/doc/db2/api_c/DbLockTab/stat.html -share/doc/db2/api_c/DbLockTab/unlink.html -share/doc/db2/api_c/DbLockTab/vec.html -share/doc/db2/api_c/DbLog/archive.html -share/doc/db2/api_c/DbLog/close.html -share/doc/db2/api_c/DbLog/compare.html -share/doc/db2/api_c/DbLog/db_register.html -share/doc/db2/api_c/DbLog/db_unregister.html -share/doc/db2/api_c/DbLog/file.html -share/doc/db2/api_c/DbLog/flush.html -share/doc/db2/api_c/DbLog/get.html -share/doc/db2/api_c/DbLog/lsn.html -share/doc/db2/api_c/DbLog/open.html -share/doc/db2/api_c/DbLog/put.html -share/doc/db2/api_c/DbLog/stat.html -share/doc/db2/api_c/DbLog/unlink.html -share/doc/db2/api_c/DbMpool/close.html -share/doc/db2/api_c/DbMpool/db_register.html -share/doc/db2/api_c/DbMpool/open.html -share/doc/db2/api_c/DbMpool/stat.html -share/doc/db2/api_c/DbMpool/sync.html -share/doc/db2/api_c/DbMpool/trickle.html -share/doc/db2/api_c/DbMpool/unlink.html -share/doc/db2/api_c/DbMpoolFile/close.html -share/doc/db2/api_c/DbMpoolFile/get.html -share/doc/db2/api_c/DbMpoolFile/open.html -share/doc/db2/api_c/DbMpoolFile/put.html -share/doc/db2/api_c/DbMpoolFile/set.html -share/doc/db2/api_c/DbMpoolFile/sync.html -share/doc/db2/api_c/DbTxn/abort.html -share/doc/db2/api_c/DbTxn/commit.html -share/doc/db2/api_c/DbTxn/id.html -share/doc/db2/api_c/DbTxn/prepare.html -share/doc/db2/api_c/DbTxnMgr/begin.html -share/doc/db2/api_c/DbTxnMgr/checkpoint.html -share/doc/db2/api_c/DbTxnMgr/close.html -share/doc/db2/api_c/DbTxnMgr/open.html -share/doc/db2/api_c/DbTxnMgr/stat.html -share/doc/db2/api_c/DbTxnMgr/unlink.html -share/doc/db2/api_c/Dbc/close.html -share/doc/db2/api_c/Dbc/del.html -share/doc/db2/api_c/Dbc/get.html -share/doc/db2/api_c/Dbc/put.html -share/doc/db2/api_c/Dbt/dbt.html -share/doc/db2/api_c/historic/dbm.html -share/doc/db2/api_c/historic/hsearch.html -share/doc/db2/api_c/index/flags.html -share/doc/db2/api_c/index/function.html -share/doc/db2/api_c/index/structure.html -share/doc/db2/api_c/internal/db_jump_set.html -share/doc/db2/api_c/internal/db_value_set.html -share/doc/db2/api_cxx/Db/class.html -share/doc/db2/api_cxx/Db/close.html -share/doc/db2/api_cxx/Db/cursor.html -share/doc/db2/api_cxx/Db/del.html -share/doc/db2/api_cxx/Db/fd.html -share/doc/db2/api_cxx/Db/get.html -share/doc/db2/api_cxx/Db/get_byteswapped.html -share/doc/db2/api_cxx/Db/get_type.html -share/doc/db2/api_cxx/Db/join.html -share/doc/db2/api_cxx/Db/open.html -share/doc/db2/api_cxx/Db/put.html -share/doc/db2/api_cxx/Db/stat.html -share/doc/db2/api_cxx/Db/sync.html -share/doc/db2/api_cxx/DbEnv/appexit.html -share/doc/db2/api_cxx/DbEnv/appinit.html -share/doc/db2/api_cxx/DbEnv/class.html -share/doc/db2/api_cxx/DbEnv/get_lg_info.html -share/doc/db2/api_cxx/DbEnv/get_lk_info.html -share/doc/db2/api_cxx/DbEnv/get_mp_info.html -share/doc/db2/api_cxx/DbEnv/get_tx_info.html -share/doc/db2/api_cxx/DbEnv/set_errcall.html -share/doc/db2/api_cxx/DbEnv/set_errfile.html -share/doc/db2/api_cxx/DbEnv/set_error_model.html -share/doc/db2/api_cxx/DbEnv/set_error_stream.html -share/doc/db2/api_cxx/DbEnv/set_errpfx.html -share/doc/db2/api_cxx/DbEnv/set_lg_max.html -share/doc/db2/api_cxx/DbEnv/set_lk_conflicts.html -share/doc/db2/api_cxx/DbEnv/set_lk_detect.html -share/doc/db2/api_cxx/DbEnv/set_lk_max.html -share/doc/db2/api_cxx/DbEnv/set_lk_modes.html -share/doc/db2/api_cxx/DbEnv/set_lorder.html -share/doc/db2/api_cxx/DbEnv/set_mp_mmapsize.html -share/doc/db2/api_cxx/DbEnv/set_mp_size.html -share/doc/db2/api_cxx/DbEnv/set_tx_max.html -share/doc/db2/api_cxx/DbEnv/set_tx_recover.html -share/doc/db2/api_cxx/DbEnv/set_verbose.html -share/doc/db2/api_cxx/DbEnv/version.html -share/doc/db2/api_cxx/DbException/class.html -share/doc/db2/api_cxx/DbException/get_errno.html -share/doc/db2/api_cxx/DbException/what.html -share/doc/db2/api_cxx/DbInfo/class.html -share/doc/db2/api_cxx/DbInfo/set_bt_compare.html -share/doc/db2/api_cxx/DbInfo/set_bt_maxkey.html -share/doc/db2/api_cxx/DbInfo/set_bt_minkey.html -share/doc/db2/api_cxx/DbInfo/set_bt_prefix.html -share/doc/db2/api_cxx/DbInfo/set_cachesize.html -share/doc/db2/api_cxx/DbInfo/set_compare.html -share/doc/db2/api_cxx/DbInfo/set_flags.html -share/doc/db2/api_cxx/DbInfo/set_h_ffactor.html -share/doc/db2/api_cxx/DbInfo/set_h_hash.html -share/doc/db2/api_cxx/DbInfo/set_h_nelem.html -share/doc/db2/api_cxx/DbInfo/set_lorder.html -share/doc/db2/api_cxx/DbInfo/set_malloc.html -share/doc/db2/api_cxx/DbInfo/set_pagesize.html -share/doc/db2/api_cxx/DbInfo/set_re_delim.html -share/doc/db2/api_cxx/DbInfo/set_re_len.html -share/doc/db2/api_cxx/DbInfo/set_re_pad.html -share/doc/db2/api_cxx/DbInfo/set_re_source.html -share/doc/db2/api_cxx/DbLock/class.html -share/doc/db2/api_cxx/DbLock/put.html -share/doc/db2/api_cxx/DbLockTab/class.html -share/doc/db2/api_cxx/DbLockTab/close.html -share/doc/db2/api_cxx/DbLockTab/detect.html -share/doc/db2/api_cxx/DbLockTab/get.html -share/doc/db2/api_cxx/DbLockTab/id.html -share/doc/db2/api_cxx/DbLockTab/open.html -share/doc/db2/api_cxx/DbLockTab/stat.html -share/doc/db2/api_cxx/DbLockTab/unlink.html -share/doc/db2/api_cxx/DbLockTab/vec.html -share/doc/db2/api_cxx/DbLog/archive.html -share/doc/db2/api_cxx/DbLog/class.html -share/doc/db2/api_cxx/DbLog/close.html -share/doc/db2/api_cxx/DbLog/compare.html -share/doc/db2/api_cxx/DbLog/db_register.html -share/doc/db2/api_cxx/DbLog/db_unregister.html -share/doc/db2/api_cxx/DbLog/file.html -share/doc/db2/api_cxx/DbLog/flush.html -share/doc/db2/api_cxx/DbLog/get.html -share/doc/db2/api_cxx/DbLog/open.html -share/doc/db2/api_cxx/DbLog/put.html -share/doc/db2/api_cxx/DbLog/stat.html -share/doc/db2/api_cxx/DbLog/unlink.html -share/doc/db2/api_cxx/DbLsn/class.html -share/doc/db2/api_cxx/DbMpool/class.html -share/doc/db2/api_cxx/DbMpool/close.html -share/doc/db2/api_cxx/DbMpool/db_register.html -share/doc/db2/api_cxx/DbMpool/open.html -share/doc/db2/api_cxx/DbMpool/stat.html -share/doc/db2/api_cxx/DbMpool/sync.html -share/doc/db2/api_cxx/DbMpool/trickle.html -share/doc/db2/api_cxx/DbMpool/unlink.html -share/doc/db2/api_cxx/DbMpoolFile/class.html -share/doc/db2/api_cxx/DbMpoolFile/close.html -share/doc/db2/api_cxx/DbMpoolFile/get.html -share/doc/db2/api_cxx/DbMpoolFile/open.html -share/doc/db2/api_cxx/DbMpoolFile/put.html -share/doc/db2/api_cxx/DbMpoolFile/set.html -share/doc/db2/api_cxx/DbMpoolFile/sync.html -share/doc/db2/api_cxx/DbTxn/abort.html -share/doc/db2/api_cxx/DbTxn/class.html -share/doc/db2/api_cxx/DbTxn/commit.html -share/doc/db2/api_cxx/DbTxn/id.html -share/doc/db2/api_cxx/DbTxn/prepare.html -share/doc/db2/api_cxx/DbTxnMgr/begin.html -share/doc/db2/api_cxx/DbTxnMgr/checkpoint.html -share/doc/db2/api_cxx/DbTxnMgr/class.html -share/doc/db2/api_cxx/DbTxnMgr/close.html -share/doc/db2/api_cxx/DbTxnMgr/open.html -share/doc/db2/api_cxx/DbTxnMgr/stat.html -share/doc/db2/api_cxx/DbTxnMgr/unlink.html -share/doc/db2/api_cxx/Dbc/class.html -share/doc/db2/api_cxx/Dbc/close.html -share/doc/db2/api_cxx/Dbc/del.html -share/doc/db2/api_cxx/Dbc/get.html -share/doc/db2/api_cxx/Dbc/put.html -share/doc/db2/api_cxx/Dbt/class.html -share/doc/db2/api_cxx/index/class.html -share/doc/db2/api_java/Db/class.html -share/doc/db2/api_java/Db/close.html -share/doc/db2/api_java/Db/cursor.html -share/doc/db2/api_java/Db/del.html -share/doc/db2/api_java/Db/fd.html -share/doc/db2/api_java/Db/get.html -share/doc/db2/api_java/Db/get_byteswapped.html -share/doc/db2/api_java/Db/get_type.html -share/doc/db2/api_java/Db/join.html -share/doc/db2/api_java/Db/open.html -share/doc/db2/api_java/Db/put.html -share/doc/db2/api_java/Db/stat.html -share/doc/db2/api_java/Db/sync.html -share/doc/db2/api_java/DbEnv/appexit.html -share/doc/db2/api_java/DbEnv/appinit.html -share/doc/db2/api_java/DbEnv/class.html -share/doc/db2/api_java/DbEnv/get_lg_info.html -share/doc/db2/api_java/DbEnv/get_lk_info.html -share/doc/db2/api_java/DbEnv/get_mp_info.html -share/doc/db2/api_java/DbEnv/get_tx_info.html -share/doc/db2/api_java/DbEnv/set_errcall.html -share/doc/db2/api_java/DbEnv/set_error_stream.html -share/doc/db2/api_java/DbEnv/set_errpfx.html -share/doc/db2/api_java/DbEnv/set_lg_max.html -share/doc/db2/api_java/DbEnv/set_lk_conflicts.html -share/doc/db2/api_java/DbEnv/set_lk_detect.html -share/doc/db2/api_java/DbEnv/set_lk_max.html -share/doc/db2/api_java/DbEnv/set_lk_modes.html -share/doc/db2/api_java/DbEnv/set_lorder.html -share/doc/db2/api_java/DbEnv/set_mp_mmapsize.html -share/doc/db2/api_java/DbEnv/set_mp_size.html -share/doc/db2/api_java/DbEnv/set_tx_max.html -share/doc/db2/api_java/DbEnv/set_verbose.html -share/doc/db2/api_java/DbEnv/version.html -share/doc/db2/api_java/DbException/class.html -share/doc/db2/api_java/DbException/get_errno.html -share/doc/db2/api_java/DbInfo/class.html -share/doc/db2/api_java/DbInfo/set_bt_compare.html -share/doc/db2/api_java/DbInfo/set_bt_maxkey.html -share/doc/db2/api_java/DbInfo/set_bt_minkey.html -share/doc/db2/api_java/DbInfo/set_bt_prefix.html -share/doc/db2/api_java/DbInfo/set_cachesize.html -share/doc/db2/api_java/DbInfo/set_compare.html -share/doc/db2/api_java/DbInfo/set_flags.html -share/doc/db2/api_java/DbInfo/set_h_ffactor.html -share/doc/db2/api_java/DbInfo/set_h_hash.html -share/doc/db2/api_java/DbInfo/set_h_nelem.html -share/doc/db2/api_java/DbInfo/set_lorder.html -share/doc/db2/api_java/DbInfo/set_malloc.html -share/doc/db2/api_java/DbInfo/set_pagesize.html -share/doc/db2/api_java/DbInfo/set_re_delim.html -share/doc/db2/api_java/DbInfo/set_re_len.html -share/doc/db2/api_java/DbInfo/set_re_pad.html -share/doc/db2/api_java/DbInfo/set_re_source.html -share/doc/db2/api_java/DbLock/class.html -share/doc/db2/api_java/DbLock/put.html -share/doc/db2/api_java/DbLockTab/class.html -share/doc/db2/api_java/DbLockTab/close.html -share/doc/db2/api_java/DbLockTab/detect.html -share/doc/db2/api_java/DbLockTab/get.html -share/doc/db2/api_java/DbLockTab/id.html -share/doc/db2/api_java/DbLockTab/open.html -share/doc/db2/api_java/DbLockTab/stat.html -share/doc/db2/api_java/DbLockTab/unlink.html -share/doc/db2/api_java/DbLockTab/vec.html -share/doc/db2/api_java/DbLog/archive.html -share/doc/db2/api_java/DbLog/class.html -share/doc/db2/api_java/DbLog/close.html -share/doc/db2/api_java/DbLog/compare.html -share/doc/db2/api_java/DbLog/db_register.html -share/doc/db2/api_java/DbLog/db_unregister.html -share/doc/db2/api_java/DbLog/file.html -share/doc/db2/api_java/DbLog/flush.html -share/doc/db2/api_java/DbLog/get.html -share/doc/db2/api_java/DbLog/open.html -share/doc/db2/api_java/DbLog/put.html -share/doc/db2/api_java/DbLog/stat.html -share/doc/db2/api_java/DbLog/unlink.html -share/doc/db2/api_java/DbLsn/class.html -share/doc/db2/api_java/DbMpool/class.html -share/doc/db2/api_java/DbMpool/close.html -share/doc/db2/api_java/DbMpool/db_register.html -share/doc/db2/api_java/DbMpool/open.html -share/doc/db2/api_java/DbMpool/stat.html -share/doc/db2/api_java/DbMpool/sync.html -share/doc/db2/api_java/DbMpool/trickle.html -share/doc/db2/api_java/DbMpool/unlink.html -share/doc/db2/api_java/DbMpoolFile/class.html -share/doc/db2/api_java/DbMpoolFile/close.html -share/doc/db2/api_java/DbMpoolFile/get.html -share/doc/db2/api_java/DbMpoolFile/open.html -share/doc/db2/api_java/DbMpoolFile/put.html -share/doc/db2/api_java/DbMpoolFile/set.html -share/doc/db2/api_java/DbMpoolFile/sync.html -share/doc/db2/api_java/DbRunRecoveryException/class.html -share/doc/db2/api_java/DbTxn/abort.html -share/doc/db2/api_java/DbTxn/class.html -share/doc/db2/api_java/DbTxn/commit.html -share/doc/db2/api_java/DbTxn/id.html -share/doc/db2/api_java/DbTxn/prepare.html -share/doc/db2/api_java/DbTxnMgr/begin.html -share/doc/db2/api_java/DbTxnMgr/checkpoint.html -share/doc/db2/api_java/DbTxnMgr/class.html -share/doc/db2/api_java/DbTxnMgr/close.html -share/doc/db2/api_java/DbTxnMgr/open.html -share/doc/db2/api_java/DbTxnMgr/stat.html -share/doc/db2/api_java/DbTxnMgr/unlink.html -share/doc/db2/api_java/Dbc/class.html -share/doc/db2/api_java/Dbc/close.html -share/doc/db2/api_java/Dbc/del.html -share/doc/db2/api_java/Dbc/get.html -share/doc/db2/api_java/Dbc/put.html -share/doc/db2/api_java/Dbt/class.html -share/doc/db2/api_java/index/class.html -share/doc/db2/build/java.html -share/doc/db2/build/shared.html -share/doc/db2/build/shared_gcc.html -share/doc/db2/build/shared_hp.html -share/doc/db2/build/unix.html -share/doc/db2/build/unix_faq.html -share/doc/db2/build/win16.html -share/doc/db2/build/win32.html -share/doc/db2/build/win_faq.html -share/doc/db2/distrib/layout.html -share/doc/db2/images/folder.gif -share/doc/db2/images/folder_open.gif -share/doc/db2/images/next.gif -share/doc/db2/images/prev.gif -share/doc/db2/images/ps.gif -share/doc/db2/images/sleepycat.gif -share/doc/db2/images/toc.gif -share/doc/db2/index.html -share/doc/db2/packages/hash_usenix.ps -share/doc/db2/packages/index.html -share/doc/db2/packages/libtp_usenix.ps -share/doc/db2/packages/witold.html -share/doc/db2/ref/am/bt_compare.html -share/doc/db2/ref/am/bt_dup.html -share/doc/db2/ref/am/bt_maxkey.html -share/doc/db2/ref/am/bt_minkey.html -share/doc/db2/ref/am/bt_prefix.html -share/doc/db2/ref/am/bt_recnum.html -share/doc/db2/ref/am/byteorder.html -share/doc/db2/ref/am/cachesize.html -share/doc/db2/ref/am/close.html -share/doc/db2/ref/am/compare.html -share/doc/db2/ref/am/curclose.html -share/doc/db2/ref/am/curdel.html -share/doc/db2/ref/am/curget.html -share/doc/db2/ref/am/curput.html -share/doc/db2/ref/am/cursor.html -share/doc/db2/ref/am/delete.html -share/doc/db2/ref/am/get.html -share/doc/db2/ref/am/h_dup.html -share/doc/db2/ref/am/h_ffactor.html -share/doc/db2/ref/am/h_hash.html -share/doc/db2/ref/am/h_nelem.html -share/doc/db2/ref/am/intro.html -share/doc/db2/ref/am/join.html -share/doc/db2/ref/am/logrec.html -share/doc/db2/ref/am/malloc.html -share/doc/db2/ref/am/ops.html -share/doc/db2/ref/am/pagesize.html -share/doc/db2/ref/am/partial.html -share/doc/db2/ref/am/put.html -share/doc/db2/ref/am/re_delim.html -share/doc/db2/ref/am/re_len.html -share/doc/db2/ref/am/re_pad.html -share/doc/db2/ref/am/re_source.html -share/doc/db2/ref/am/renumber.html -share/doc/db2/ref/am/select.html -share/doc/db2/ref/am/stat.html -share/doc/db2/ref/am/sync.html -share/doc/db2/ref/arch/apis.html -share/doc/db2/ref/arch/bigpic.gif -share/doc/db2/ref/arch/bigpic.html -share/doc/db2/ref/arch/env.html -share/doc/db2/ref/arch/extending.html -share/doc/db2/ref/arch/progmodel.html -share/doc/db2/ref/arch/script.html -share/doc/db2/ref/arch/smallpic.gif -share/doc/db2/ref/arch/subsystem.html -share/doc/db2/ref/arch/utilities.html -share/doc/db2/ref/cam/intro.html -share/doc/db2/ref/debug/runtime.html -share/doc/db2/ref/dumpload/format.html -share/doc/db2/ref/dumpload/text.html -share/doc/db2/ref/dumpload/utility.html -share/doc/db2/ref/env/create.html -share/doc/db2/ref/env/naming.html -share/doc/db2/ref/env/open.html -share/doc/db2/ref/env/region.html -share/doc/db2/ref/env/security.html -share/doc/db2/ref/install/file.html -share/doc/db2/ref/install/magic.s5.be.txt -share/doc/db2/ref/install/magic.s5.le.txt -share/doc/db2/ref/install/magic.txt -share/doc/db2/ref/intro/distrib.html -share/doc/db2/ref/intro/do.html -share/doc/db2/ref/intro/what.html -share/doc/db2/ref/intro/where.html -share/doc/db2/ref/lock/stdmode.html -share/doc/db2/ref/log/config.html -share/doc/db2/ref/log/intro.html -share/doc/db2/ref/log/limits.html -share/doc/db2/ref/mp/config.html -share/doc/db2/ref/mp/intro.html -share/doc/db2/ref/perl/intro.html -share/doc/db2/ref/program/appsignals.html -share/doc/db2/ref/program/byteorder.html -share/doc/db2/ref/program/compatible.html -share/doc/db2/ref/program/convert.html -share/doc/db2/ref/program/dbsizes.html -share/doc/db2/ref/program/environ.html -share/doc/db2/ref/program/errorret.html -share/doc/db2/ref/program/java.html -share/doc/db2/ref/program/runtime.html -share/doc/db2/ref/program/solaris.txt -share/doc/db2/ref/program/thread.html -share/doc/db2/ref/program/version.html -share/doc/db2/ref/sendmail/intro.html -share/doc/db2/ref/simple_tut/close.html -share/doc/db2/ref/simple_tut/del.html -share/doc/db2/ref/simple_tut/errors.html -share/doc/db2/ref/simple_tut/example.txt -share/doc/db2/ref/simple_tut/get.html -share/doc/db2/ref/simple_tut/intro.html -share/doc/db2/ref/simple_tut/keydata.html -share/doc/db2/ref/simple_tut/open.html -share/doc/db2/ref/simple_tut/put.html -share/doc/db2/ref/toc.html -share/doc/db2/ref/transapp/admin.html -share/doc/db2/ref/transapp/apps.html -share/doc/db2/ref/transapp/archival.html -share/doc/db2/ref/transapp/checkpoint.html -share/doc/db2/ref/transapp/deadlock.html -share/doc/db2/ref/transapp/filesys.html -share/doc/db2/ref/transapp/intro.html -share/doc/db2/ref/transapp/recovery.html -share/doc/db2/ref/transapp/throughput.html -share/doc/db2/ref/transapp/writetest.txt -share/doc/db2/ref/txn/config.html -share/doc/db2/ref/txn/limits.html -share/doc/db2/ref/txn/other.html -share/doc/db2/ref/txn/stability.html -share/doc/db2/sleepycat/contact.html -share/doc/db2/sleepycat/products.html -share/doc/db2/test/build.html -share/doc/db2/test/build_faq.html -share/doc/db2/test/debug.html -share/doc/db2/test/run.html -share/doc/db2/utility/db_archive.html -share/doc/db2/utility/db_checkpoint.html -share/doc/db2/utility/db_deadlock.html -share/doc/db2/utility/db_dump.html -share/doc/db2/utility/db_load.html -share/doc/db2/utility/db_recover.html -share/doc/db2/utility/db_stat.html -share/doc/db2/utility/index.html -share/examples/db2/examples/README -share/examples/db2/examples/ex_access.c -share/examples/db2/examples/ex_appinit.c -share/examples/db2/examples/ex_btrec.c -share/examples/db2/examples/ex_lock.c -share/examples/db2/examples/ex_mpool.c -share/examples/db2/examples/ex_thread.c -share/examples/db2/examples/ex_tpcb.c -share/examples/db2/examples/ex_tpcb.h -share/examples/db2/examples_cxx/AccessExample.cpp -share/examples/db2/examples_cxx/AppinitExample.cpp -share/examples/db2/examples_cxx/LockExample.cpp -share/examples/db2/examples_cxx/MpoolExample.cpp -share/examples/db2/examples_cxx/TpcbExample.cpp -share/examples/db2/examples_java/AccessExample.java -share/examples/db2/examples_java/AppinitExample.java -share/examples/db2/examples_java/LockExample.java -share/examples/db2/examples_java/TpcbExample.java -@dirrm include/db2 -@dirrm share/examples/db2/examples -@dirrm share/examples/db2/examples_cxx -@dirrm share/examples/db2/examples_java -@dirrm share/examples/db2 -@dirrm share/doc/db2/api_c/DbTxn -@dirrm share/doc/db2/api_c/DbEnv -@dirrm share/doc/db2/api_c/DbInfo -@dirrm share/doc/db2/api_c/DbLock -@dirrm share/doc/db2/api_c/DbLockTab -@dirrm share/doc/db2/api_c/DbLog -@dirrm share/doc/db2/api_c/DbMpool -@dirrm share/doc/db2/api_c/DbMpoolFile -@dirrm share/doc/db2/api_c/Db -@dirrm share/doc/db2/api_c/DbTxnMgr -@dirrm share/doc/db2/api_c/Dbc -@dirrm share/doc/db2/api_c/Dbt -@dirrm share/doc/db2/api_c/historic -@dirrm share/doc/db2/api_c/index -@dirrm share/doc/db2/api_c/internal -@dirrm share/doc/db2/api_c/special -@dirrm share/doc/db2/api_c -@dirrm share/doc/db2/test -@dirrm share/doc/db2/sleepycat -@dirrm share/doc/db2/ref/txn -@dirrm share/doc/db2/ref/am -@dirrm share/doc/db2/ref/arch -@dirrm share/doc/db2/ref/cam -@dirrm share/doc/db2/ref/debug -@dirrm share/doc/db2/ref/dumpload -@dirrm share/doc/db2/ref/env -@dirrm share/doc/db2/ref/intro -@dirrm share/doc/db2/ref/install -@dirrm share/doc/db2/ref/lock -@dirrm share/doc/db2/ref/log -@dirrm share/doc/db2/ref/mp -@dirrm share/doc/db2/ref/perl -@dirrm share/doc/db2/ref/program -@dirrm share/doc/db2/ref/sendmail -@dirrm share/doc/db2/ref/simple_tut -@dirrm share/doc/db2/ref/transapp -@dirrm share/doc/db2/ref -@dirrm share/doc/db2/packages -@dirrm share/doc/db2/api_cxx/DbLsn -@dirrm share/doc/db2/api_cxx/Dbc -@dirrm share/doc/db2/api_cxx/DbEnv -@dirrm share/doc/db2/api_cxx/DbException -@dirrm share/doc/db2/api_cxx/DbInfo -@dirrm share/doc/db2/api_cxx/DbLock -@dirrm share/doc/db2/api_cxx/DbLockTab -@dirrm share/doc/db2/api_cxx/DbLog -@dirrm share/doc/db2/api_cxx/Db -@dirrm share/doc/db2/api_cxx/DbMpool -@dirrm share/doc/db2/api_cxx/DbMpoolFile -@dirrm share/doc/db2/api_cxx/DbTxn -@dirrm share/doc/db2/api_cxx/DbTxnMgr -@dirrm share/doc/db2/api_cxx/Dbt -@dirrm share/doc/db2/api_cxx/index -@dirrm share/doc/db2/api_cxx/special -@dirrm share/doc/db2/api_cxx -@dirrm share/doc/db2/utility -@dirrm share/doc/db2/distrib -@dirrm share/doc/db2/build -@dirrm share/doc/db2/api_java/DbMpool -@dirrm share/doc/db2/api_java/DbEnv -@dirrm share/doc/db2/api_java/DbException -@dirrm share/doc/db2/api_java/DbInfo -@dirrm share/doc/db2/api_java/DbLock -@dirrm share/doc/db2/api_java/DbLockTab -@dirrm share/doc/db2/api_java/DbLog -@dirrm share/doc/db2/api_java/DbLsn -@dirrm share/doc/db2/api_java/Db -@dirrm share/doc/db2/api_java/DbMpoolFile -@dirrm share/doc/db2/api_java/DbRunRecoveryException -@dirrm share/doc/db2/api_java/DbTxn -@dirrm share/doc/db2/api_java/DbTxnMgr -@dirrm share/doc/db2/api_java/Dbc -@dirrm share/doc/db2/api_java/Dbt -@dirrm share/doc/db2/api_java/index -@dirrm share/doc/db2/api_java/special -@dirrm share/doc/db2/api_java -@dirrm share/doc/db2/images -@dirrm share/doc/db2 diff --git a/databases/db46/Makefile b/databases/db46/Makefile deleted file mode 100644 index 9b1fe8a00a1e..000000000000 --- a/databases/db46/Makefile +++ /dev/null @@ -1,41 +0,0 @@ -# ports collection makefile for: Berkeley DB -# Date created: 26 Jan 1998 -# Whom: Josh Tiefenbach <josh@ican.net> -# -# $FreeBSD$ -# - -PORTNAME= db -PORTVERSION= 2.7.7 -CATEGORIES= databases -MASTER_SITES= http://www.sleepycat.com/update/${PORTVERSION}/ - -MAINTAINER= josh@ican.net - -Y2K= http://www.sleepycat.com/faq.html#A8 - -MANUAL_PACKAGE_BUILD= incompatible with libc internal db calls -WRKSRC= ${WRKDIR}/${DISTNAME}/build_unix - -INSTALLS_SHLIB= yes -GNU_CONFIGURE= yes -CONFIGURE_SCRIPT= ../dist/configure -CONFIGURE_ARGS= --enable-compat185 \ - --enable-dump185 --enable-cxx - -post-install: - ${MKDIR} ${PREFIX}/share/examples/db2 - cd ${WRKSRC}/..; \ - tar -cf - --exclude tags examples/ examples_cxx/ examples_java/ | \ - ( cd ${PREFIX}/share/examples/db2; tar xf - ) - @${ECHO_MSG} "" - @${ECHO_MSG} "Java support for ${PKGNAME} is *not* built by default, and requires that you" - @${ECHO_MSG} "have a working copy of the JDK (v1.1) installed." - @${ECHO_MSG} "" - @${ECHO_MSG} "To build java support, please read:" - @${ECHO_MSG} "" - @${ECHO_MSG} "${WRKDIR}/${DISTNAME}/java/README" - @${ECHO_MSG} "" - @${ECHO_MSG} "and follow the directions therein." - -.include <bsd.port.mk> diff --git a/databases/db46/distinfo b/databases/db46/distinfo deleted file mode 100644 index d761baf3bdff..000000000000 --- a/databases/db46/distinfo +++ /dev/null @@ -1 +0,0 @@ -MD5 (db-2.7.7.tar.gz) = 20256735091ee382c6601117d82d749a diff --git a/databases/db46/files/patch-aa b/databases/db46/files/patch-aa deleted file mode 100644 index db3d430758a2..000000000000 --- a/databases/db46/files/patch-aa +++ /dev/null @@ -1,506 +0,0 @@ ---- ../dist/Makefile.in.orig Mon Dec 7 21:05:59 1998 -+++ ../dist/Makefile.in Tue Jun 6 17:44:50 2000 -@@ -1,13 +1,16 @@ - # @(#)Makefile.in 10.62 (Sleepycat) 12/7/98 - -+SOVER?= 0 -+ - srcdir= @srcdir@/.. - CPPFLAGS=-I. -I$(srcdir)/include @CPPFLAGS@ -+SHAREDFLAGS= -fpic -DPIC - CFLAGS= -c @CFLAGS@ $(CPPFLAGS) - CC= @CC@ - CXXFLAGS=-c @CXXFLAGS@ $(CPPFLAGS) - CXX= @CXX@ --LDFLAGS=@LDFLAGS@ --LIBS= @LIBS@ -+LDFLAGS=@LDFLAGS@ -L. -+LIBS= @LIBS@ -ldb2 - - SHELL= @db_cv_path_sh@ - ar= @db_cv_path_ar@ cr -@@ -43,85 +46,91 @@ - LOBJS= @LIBOBJS@ - POBJS= err.o getlong.o - --libdb= libdb.a --all: $(libdb) $(PROGS) -+libdb= libdb2.a -+libdbso= libdb2.so.$(SOVER) -+all: $(libdb) $(libdbso) $(PROGS) - - $(libdb): db.h $(OBJS) $(LOBJS) - $(rm) -f $@ - $(ar) $@ $(OBJS) $(LOBJS) - test ! -f $(ranlib) || $(ranlib) $@ - -+$(libdbso): db.h $(OBJS:S/.o$/.so/g) $(LOBJS:S/.o$/.so/g) -+ $(rm) -f $@ -+ $(CXX) -shared -Wl,-x -Wl,-assert -Wl,pure-text -Wl,-soname,$@ -o $@ $(OBJS:S/.o$/.so/g) $(LOBJS:S/.o$/.so/g) -+ ln -sf $@ libdb2.so -+ - DBA= db_archive.o $(POBJS) --db_archive: $(DBA) $(libdb) -- $(CC) -o $@ $(LDFLAGS) $(DBA) $(libdb) $(LIBS) -+db_archive: $(DBA) $(libdbso) -+ $(CC) -o $@ $(LDFLAGS) $(DBA) $(LIBS) - - DBB= db_checkpoint.o $(POBJS) --db_checkpoint: $(DBB) $(libdb) -- $(CC) -o $@ $(LDFLAGS) $(DBB) $(libdb) $(LIBS) -+db_checkpoint: $(DBB) $(libdbso) -+ $(CC) -o $@ $(LDFLAGS) $(DBB) $(LIBS) - - DBC= db_deadlock.o $(POBJS) --db_deadlock: $(DBC) $(libdb) -- $(CC) -o $@ $(LDFLAGS) $(DBC) $(libdb) $(LIBS) -+db_deadlock: $(DBC) $(libdbso) -+ $(CC) -o $@ $(LDFLAGS) $(DBC) $(LIBS) - - DBD= db_dump.o $(POBJS) --db_dump: $(DBD) $(libdb) -- $(CC) -o $@ $(LDFLAGS) $(DBD) $(libdb) $(LIBS) -+db_dump: $(DBD) $(libdbso) -+ $(CC) -o $@ $(LDFLAGS) $(DBD) $(LIBS) - - DBE= db_dump185.o $(POBJS) - db_dump185: $(DBE) - $(CC) -o $@ $(LDFLAGS) $(DBE) $(LIBS) - - DBF= db_load.o $(POBJS) --db_load: $(DBF) $(libdb) -- $(CC) -o $@ $(LDFLAGS) $(DBF) $(libdb) $(LIBS) -+db_load: $(DBF) $(libdbso) -+ $(CC) -o $@ $(LDFLAGS) $(DBF) $(LIBS) - - DBG= db_printlog.o $(POBJS) --db_printlog: $(DBG) $(libdb) -- $(CC) -o $@ $(LDFLAGS) $(DBG) $(libdb) $(LIBS) -+db_printlog: $(DBG) $(libdbso) -+ $(CC) -o $@ $(LDFLAGS) $(DBG) $(LIBS) - - DBH= db_recover.o $(POBJS) --db_recover: $(DBH) $(libdb) -- $(CC) -o $@ $(LDFLAGS) $(DBH) $(libdb) $(LIBS) -+db_recover: $(DBH) $(libdbso) -+ $(CC) -o $@ $(LDFLAGS) $(DBH) $(LIBS) - - DBI= db_stat.o $(POBJS) --db_stat: $(DBI) $(libdb) -- $(CC) -o $@ $(LDFLAGS) $(DBI) $(libdb) $(LIBS) -+db_stat: $(DBI) $(libdbso) -+ $(CC) -o $@ $(LDFLAGS) $(DBI) $(LIBS) - - EPROGS= ex_access ex_appinit ex_btrec ex_lock ex_mpool ex_thread ex_tpcb - DBJ= ex_access.o --ex_access: $(DBJ) $(libdb) -- $(CC) -o $@ $(LDFLAGS) $(DBJ) $(libdb) $(LIBS) -+ex_access: $(DBJ) $(libdbso) -+ $(CC) -o $@ $(LDFLAGS) $(DBJ) $(LIBS) - - DBK= ex_appinit.o --ex_appinit: $(DBK) $(libdb) -- $(CC) -o $@ $(LDFLAGS) $(DBK) $(libdb) $(LIBS) -+ex_appinit: $(DBK) $(libdbso) -+ $(CC) -o $@ $(LDFLAGS) $(DBK) $(LIBS) - - DBL= ex_btrec.o --ex_btrec: $(DBL) $(libdb) -- $(CC) -o $@ $(LDFLAGS) $(DBL) $(libdb) $(LIBS) -+ex_btrec: $(DBL) $(libdbso) -+ $(CC) -o $@ $(LDFLAGS) $(DBL) $(LIBS) - - DBM= ex_lock.o $(POBJS) --ex_lock: $(DBM) $(libdb) -- $(CC) -o $@ $(LDFLAGS) $(DBM) $(libdb) $(LIBS) -+ex_lock: $(DBM) $(libdbso) -+ $(CC) -o $@ $(LDFLAGS) $(DBM) $(LIBS) - - DBN= ex_mpool.o --ex_mpool: $(DBN) $(libdb) -- $(CC) -o $@ $(LDFLAGS) $(DBN) $(libdb) $(LIBS) -+ex_mpool: $(DBN) $(libdbso) -+ $(CC) -o $@ $(LDFLAGS) $(DBN) $(LIBS) - - DBO= ex_thread.o --ex_thread: $(DBO) $(libdb) -- $(CC) -o $@ $(LDFLAGS) $(DBO) $(libdb) $(LIBS) -+ex_thread: $(DBO) $(libdbso) -+ $(CC) -o $@ $(LDFLAGS) $(DBO) $(LIBS) - - DBP= ex_tpcb.o $(POBJS) --ex_tpcb: $(DBP) $(libdb) -- $(CC) -o $@ $(LDFLAGS) $(DBP) $(libdb) $(LIBS) -+ex_tpcb: $(DBP) $(libdbso) -+ $(CC) -o $@ $(LDFLAGS) $(DBP) $(LIBS) - - DBT= tclAppInit.o tcl_dbm.o tcl_hsearch.o tcl_lock.o tcl_log.o tcl_mpool.o \ - tcl_mutex.o tcl_ndbm.o tcl_txn.o utils.o $(POBJS) - - dbtest: .dbtestrc --dbtest: $(DBT) $(libdb) -- $(CC) -o $@ $(LDFLAGS) $(DBT) $(libdb) $(LIBS) -+dbtest: $(DBT) $(libdbso) -+ $(CC) -o $@ $(LDFLAGS) $(DBT) $(LIBS) - - AOBJS= err.o getcwd.o getlong.o getopt.o memcmp.o memcpy.o memmove.o \ - raise.o snprintf.o strerror.o strsep.o vsnprintf.o -@@ -131,8 +140,8 @@ - $(rm) -f $(DBA) $(DBB) $(DBC) $(DBD) $(DBE) $(DBF) $(DBG) $(DBH) - $(rm) -f $(DBI) $(DBJ) $(DBK) $(DBL) $(DBM) $(DBN) $(DBO) $(DBP) - $(rm) -f $(DBT) -- $(rm) -f $(PROGS) $(EPROGS) $(POBJS) $(LOBJS) @build_test@ -- $(rm) -f core *.core .dbtestrc $(libdb) -+ $(rm) -f $(PROGS) $(EPROGS) $(POBJS) $(LOBJS) *.so @build_test@ -+ $(rm) -f core *.core .dbtestrc $(libdb) $(libdbso) - - depend obj: - -@@ -141,11 +150,11 @@ - $(rm) -f confdefs.h db.h db_int.h db_185.h include.tcl - - prefix= @prefix@ --bindir= $(prefix)/BerkeleyDB/bin --datadir=$(prefix)/BerkeleyDB/share --includedir=$(prefix)/BerkeleyDB/include --libdir= $(prefix)/BerkeleyDB/lib --mandir= $(prefix)/BerkeleyDB/docs -+bindir= $(prefix)/bin -+datadir=$(prefix)/share/db2 -+includedir=$(prefix)/include/db2 -+libdir= $(prefix)/lib -+mandir= $(prefix)/share/doc/db2 - - dmode= 755 - emode= 555 -@@ -170,6 +179,9 @@ - @cd $(libdir) && $(rm) -f $(libdb) - @$(cp) -p $(libdb) $(libdir) - @cd $(libdir) && $(chmod) $(fmode) $(libdb) -+ @$(cp) -p $(libdbso) $(libdir) -+ @cd $(libdir) && $(chmod) $(fmode) $(libdbso) -+ ln -sf $(libdbso) $(libdir)/libdb2.so - @echo "Installing DB utilities: $(bindir) ..." - @test -d $(bindir) || \ - ($(mkdir) -p $(bindir) && $(chmod) $(dmode) $(bindir)) -@@ -506,3 +518,320 @@ - $(CC) $(CFLAGS) $? - vsnprintf.o: $(srcdir)/clib/vsnprintf.c - $(CC) $(CFLAGS) $? -+ -+# Shared build -+# Programs. -+db_archive.so: $(srcdir)/db_archive/db_archive.c -+ $(CC) $(CFLAGS) $(SHAREDFLAGS) $? -o $@ -+db_checkpoint.so: $(srcdir)/db_checkpoint/db_checkpoint.c -+ $(CC) $(CFLAGS) $(SHAREDFLAGS) $? -o $@ -+db_deadlock.so: $(srcdir)/db_deadlock/db_deadlock.c -+ $(CC) $(CFLAGS) $(SHAREDFLAGS) $? -o $@ -+db_dump.so: $(srcdir)/db_dump/db_dump.c -+ $(CC) $(CFLAGS) $(SHAREDFLAGS) $? -o $@ -+db_dump185.so: $(srcdir)/db_dump185/db_dump185.c -+ $(CC) $(CFLAGS) $(SHAREDFLAGS) $? -o $@ -+db_load.so: $(srcdir)/db_load/db_load.c -+ $(CC) $(CFLAGS) $(SHAREDFLAGS) $? -o $@ -+db_printlog.so: $(srcdir)/db_printlog/db_printlog.c -+ $(CC) $(CFLAGS) $(SHAREDFLAGS) $? -o $@ -+db_recover.so: $(srcdir)/db_recover/db_recover.c -+ $(CC) $(CFLAGS) $(SHAREDFLAGS) $? -o $@ -+db_stat.so: $(srcdir)/db_stat/db_stat.c -+ $(CC) $(CFLAGS) $(SHAREDFLAGS) $? -o $@ -+ -+# Examples. -+ex_access.so: $(srcdir)/examples/ex_access.c -+ $(CC) $(CFLAGS) $(SHAREDFLAGS) $? -o $@ -+ex_appinit.so: $(srcdir)/examples/ex_appinit.c -+ $(CC) $(CFLAGS) $(SHAREDFLAGS) $? -o $@ -+ex_btrec.so: $(srcdir)/examples/ex_btrec.c -+ $(CC) $(CFLAGS) $(SHAREDFLAGS) $? -o $@ -+ex_lock.so: $(srcdir)/examples/ex_lock.c -+ $(CC) $(CFLAGS) $(SHAREDFLAGS) $? -o $@ -+ex_mpool.so: $(srcdir)/examples/ex_mpool.c -+ $(CC) $(CFLAGS) $(SHAREDFLAGS) $? -o $@ -+ex_thread.so: $(srcdir)/examples/ex_thread.c -+ $(CC) $(CFLAGS) $(SHAREDFLAGS) $? -o $@ -+ex_tpcb.so: $(srcdir)/examples/ex_tpcb.c -+ $(CC) $(CFLAGS) $(SHAREDFLAGS) $? -o $@ -+ -+# DB files. -+db.so: $(srcdir)/db/db.c -+ $(CC) $(CFLAGS) $(SHAREDFLAGS) $? -o $@ -+db_am.so: $(srcdir)/db/db_am.c -+ $(CC) $(CFLAGS) $(SHAREDFLAGS) $? -o $@ -+db_auto.so: $(srcdir)/db/db_auto.c -+ $(CC) $(CFLAGS) $(SHAREDFLAGS) $? -o $@ -+db_conv.so: $(srcdir)/db/db_conv.c -+ $(CC) $(CFLAGS) $(SHAREDFLAGS) $? -o $@ -+db_dispatch.so: $(srcdir)/db/db_dispatch.c -+ $(CC) $(CFLAGS) $(SHAREDFLAGS) $? -o $@ -+db_dup.so: $(srcdir)/db/db_dup.c -+ $(CC) $(CFLAGS) $(SHAREDFLAGS) $? -o $@ -+db_iface.so: $(srcdir)/db/db_iface.c -+ $(CC) $(CFLAGS) $(SHAREDFLAGS) $? -o $@ -+db_join.so: $(srcdir)/db/db_join.c -+ $(CC) $(CFLAGS) $(SHAREDFLAGS) $? -o $@ -+db_overflow.so: $(srcdir)/db/db_overflow.c -+ $(CC) $(CFLAGS) $(SHAREDFLAGS) $? -o $@ -+db_pr.so: $(srcdir)/db/db_pr.c -+ $(CC) $(CFLAGS) $(SHAREDFLAGS) $? -o $@ -+db_rec.so: $(srcdir)/db/db_rec.c -+ $(CC) $(CFLAGS) $(SHAREDFLAGS) $? -o $@ -+db_ret.so: $(srcdir)/db/db_ret.c -+ $(CC) $(CFLAGS) $(SHAREDFLAGS) $? -o $@ -+ -+# Btree source files. -+bt_compare.so: $(srcdir)/btree/bt_compare.c -+ $(CC) $(CFLAGS) $(SHAREDFLAGS) $? -o $@ -+bt_conv.so: $(srcdir)/btree/bt_conv.c -+ $(CC) $(CFLAGS) $(SHAREDFLAGS) $? -o $@ -+bt_curadj.so: $(srcdir)/btree/bt_curadj.c -+ $(CC) $(CFLAGS) $(SHAREDFLAGS) $? -o $@ -+bt_cursor.so: $(srcdir)/btree/bt_cursor.c -+ $(CC) $(CFLAGS) $(SHAREDFLAGS) $? -o $@ -+bt_delete.so: $(srcdir)/btree/bt_delete.c -+ $(CC) $(CFLAGS) $(SHAREDFLAGS) $? -o $@ -+bt_open.so: $(srcdir)/btree/bt_open.c -+ $(CC) $(CFLAGS) $(SHAREDFLAGS) $? -o $@ -+bt_page.so: $(srcdir)/btree/bt_page.c -+ $(CC) $(CFLAGS) $(SHAREDFLAGS) $? -o $@ -+bt_put.so: $(srcdir)/btree/bt_put.c -+ $(CC) $(CFLAGS) $(SHAREDFLAGS) $? -o $@ -+bt_rec.so: $(srcdir)/btree/bt_rec.c -+ $(CC) $(CFLAGS) $(SHAREDFLAGS) $? -o $@ -+bt_recno.so: $(srcdir)/btree/bt_recno.c -+ $(CC) $(CFLAGS) $(SHAREDFLAGS) $? -o $@ -+bt_rsearch.so: $(srcdir)/btree/bt_rsearch.c -+ $(CC) $(CFLAGS) $(SHAREDFLAGS) $? -o $@ -+bt_search.so: $(srcdir)/btree/bt_search.c -+ $(CC) $(CFLAGS) $(SHAREDFLAGS) $? -o $@ -+bt_split.so: $(srcdir)/btree/bt_split.c -+ $(CC) $(CFLAGS) $(SHAREDFLAGS) $? -o $@ -+bt_stack.so: $(srcdir)/btree/bt_stack.c -+ $(CC) $(CFLAGS) $(SHAREDFLAGS) $? -o $@ -+bt_stat.so: $(srcdir)/btree/bt_stat.c -+ $(CC) $(CFLAGS) $(SHAREDFLAGS) $? -o $@ -+btree_auto.so: $(srcdir)/btree/btree_auto.c -+ $(CC) $(CFLAGS) $(SHAREDFLAGS) $? -o $@ -+ -+# C++ interface files. -+cxx_app.so: $(srcdir)/cxx/cxx_app.cpp -+ $(CXX) $(CXXFLAGS) $(SHAREDFLAGS) $? -o $@ -+cxx_except.so: $(srcdir)/cxx/cxx_except.cpp -+ $(CXX) $(CXXFLAGS) $(SHAREDFLAGS) $? -o $@ -+cxx_lock.so: $(srcdir)/cxx/cxx_lock.cpp -+ $(CXX) $(CXXFLAGS) $(SHAREDFLAGS) $? -o $@ -+cxx_log.so: $(srcdir)/cxx/cxx_log.cpp -+ $(CXX) $(CXXFLAGS) $(SHAREDFLAGS) $? -o $@ -+cxx_mpool.so: $(srcdir)/cxx/cxx_mpool.cpp -+ $(CXX) $(CXXFLAGS) $(SHAREDFLAGS) $? -o $@ -+cxx_table.so: $(srcdir)/cxx/cxx_table.cpp -+ $(CXX) $(CXXFLAGS) $(SHAREDFLAGS) $? -o $@ -+cxx_txn.so: $(srcdir)/cxx/cxx_txn.cpp -+ $(CXX) $(CXXFLAGS) $(SHAREDFLAGS) $? -o $@ -+ -+# Hash source files. -+hash_auto.so: $(srcdir)/hash/hash_auto.c -+ $(CC) $(CFLAGS) $(SHAREDFLAGS) $? -o $@ -+hash.so: $(srcdir)/hash/hash.c -+ $(CC) $(CFLAGS) $(SHAREDFLAGS) $? -o $@ -+hash_conv.so: $(srcdir)/hash/hash_conv.c -+ $(CC) $(CFLAGS) $(SHAREDFLAGS) $? -o $@ -+hash_dup.so: $(srcdir)/hash/hash_dup.c -+ $(CC) $(CFLAGS) $(SHAREDFLAGS) $? -o $@ -+hash_func.so: $(srcdir)/hash/hash_func.c -+ $(CC) $(CFLAGS) $(SHAREDFLAGS) $? -o $@ -+hash_page.so: $(srcdir)/hash/hash_page.c -+ $(CC) $(CFLAGS) $(SHAREDFLAGS) $? -o $@ -+hash_rec.so: $(srcdir)/hash/hash_rec.c -+ $(CC) $(CFLAGS) $(SHAREDFLAGS) $? -o $@ -+hash_stat.so: $(srcdir)/hash/hash_stat.c -+ $(CC) $(CFLAGS) $(SHAREDFLAGS) $? -o $@ -+ -+# Lock source files. -+lock.so: $(srcdir)/lock/lock.c -+ $(CC) $(CFLAGS) $(SHAREDFLAGS) $? -o $@ -+lock_conflict.so:$(srcdir)/lock/lock_conflict.c -+ $(CC) $(CFLAGS) $(SHAREDFLAGS) $? -o $@ -+lock_deadlock.so:$(srcdir)/lock/lock_deadlock.c -+ $(CC) $(CFLAGS) $(SHAREDFLAGS) $? -o $@ -+lock_region.so:$(srcdir)/lock/lock_region.c -+ $(CC) $(CFLAGS) $(SHAREDFLAGS) $? -o $@ -+lock_util.so:$(srcdir)/lock/lock_util.c -+ $(CC) $(CFLAGS) $(SHAREDFLAGS) $? -o $@ -+ -+# Log source files. -+log.so: $(srcdir)/log/log.c -+ $(CC) $(CFLAGS) $(SHAREDFLAGS) $? -o $@ -+log_archive.so: $(srcdir)/log/log_archive.c -+ $(CC) $(CFLAGS) $(SHAREDFLAGS) $? -o $@ -+log_auto.so: $(srcdir)/log/log_auto.c -+ $(CC) $(CFLAGS) $(SHAREDFLAGS) $? -o $@ -+log_compare.so: $(srcdir)/log/log_compare.c -+ $(CC) $(CFLAGS) $(SHAREDFLAGS) $? -o $@ -+log_findckp.so: $(srcdir)/log/log_findckp.c -+ $(CC) $(CFLAGS) $(SHAREDFLAGS) $? -o $@ -+log_get.so: $(srcdir)/log/log_get.c -+ $(CC) $(CFLAGS) $(SHAREDFLAGS) $? -o $@ -+log_put.so: $(srcdir)/log/log_put.c -+ $(CC) $(CFLAGS) $(SHAREDFLAGS) $? -o $@ -+log_rec.so: $(srcdir)/log/log_rec.c -+ $(CC) $(CFLAGS) $(SHAREDFLAGS) $? -o $@ -+log_register.so: $(srcdir)/log/log_register.c -+ $(CC) $(CFLAGS) $(SHAREDFLAGS) $? -o $@ -+ -+# Mpool source files. -+mp_bh.so: $(srcdir)/mp/mp_bh.c -+ $(CC) $(CFLAGS) $(SHAREDFLAGS) $? -o $@ -+mp_fget.so: $(srcdir)/mp/mp_fget.c -+ $(CC) $(CFLAGS) $(SHAREDFLAGS) $? -o $@ -+mp_fopen.so: $(srcdir)/mp/mp_fopen.c -+ $(CC) $(CFLAGS) $(SHAREDFLAGS) $? -o $@ -+mp_fput.so: $(srcdir)/mp/mp_fput.c -+ $(CC) $(CFLAGS) $(SHAREDFLAGS) $? -o $@ -+mp_fset.so: $(srcdir)/mp/mp_fset.c -+ $(CC) $(CFLAGS) $(SHAREDFLAGS) $? -o $@ -+mp_open.so: $(srcdir)/mp/mp_open.c -+ $(CC) $(CFLAGS) $(SHAREDFLAGS) $? -o $@ -+mp_pr.so: $(srcdir)/mp/mp_pr.c -+ $(CC) $(CFLAGS) $(SHAREDFLAGS) $? -o $@ -+mp_region.so: $(srcdir)/mp/mp_region.c -+ $(CC) $(CFLAGS) $(SHAREDFLAGS) $? -o $@ -+mp_sync.so: $(srcdir)/mp/mp_sync.c -+ $(CC) $(CFLAGS) $(SHAREDFLAGS) $? -o $@ -+ -+# Mutex source files. -+mutex.so: $(srcdir)/mutex/mutex.c -+ $(CC) $(CFLAGS) $(SHAREDFLAGS) $? -o $@ -+# XXX -+# UTS4 spinlocks -+uts4_cc.so: $(srcdir)/mutex/uts4_cc.s -+ $(AS) $(ASFLAGS) $(SHAREDFLAGS) -o $@ $? -o $@ -+ -+# Transaction source files. -+txn.so: $(srcdir)/txn/txn.c -+ $(CC) $(CFLAGS) $(SHAREDFLAGS) $? -o $@ -+txn_auto.so: $(srcdir)/txn/txn_auto.c -+ $(CC) $(CFLAGS) $(SHAREDFLAGS) $? -o $@ -+txn_rec.so: $(srcdir)/txn/txn_rec.c -+ $(CC) $(CFLAGS) $(SHAREDFLAGS) $? -o $@ -+ -+# XA source files. -+xa.so: $(srcdir)/xa/xa.c -+ $(CC) $(CFLAGS) $(SHAREDFLAGS) $? -o $@ -+xa_db.so: $(srcdir)/xa/xa_db.c -+ $(CC) $(CFLAGS) $(SHAREDFLAGS) $? -o $@ -+xa_map.so: $(srcdir)/xa/xa_map.c -+ $(CC) $(CFLAGS) $(SHAREDFLAGS) $? -o $@ -+ -+# Historic interfaces. -+hsearch.so: $(srcdir)/hsearch/hsearch.c -+ $(CC) $(CFLAGS) $(SHAREDFLAGS) $? -o $@ -+dbm.so: $(srcdir)/dbm/dbm.c -+ $(CC) $(CFLAGS) $(SHAREDFLAGS) $? -o $@ -+db185.so: $(srcdir)/db185/db185.c -+ $(CC) $(CFLAGS) $(SHAREDFLAGS) $? -o $@ -+ -+# Common source files. -+db_appinit.so: $(srcdir)/common/db_appinit.c -+ $(CC) $(CFLAGS) $(SHAREDFLAGS) $? -o $@ -+db_apprec.so: $(srcdir)/common/db_apprec.c -+ $(CC) $(CFLAGS) $(SHAREDFLAGS) $? -o $@ -+db_byteorder.so: $(srcdir)/common/db_byteorder.c -+ $(CC) $(CFLAGS) $(SHAREDFLAGS) $? -o $@ -+db_err.so: $(srcdir)/common/db_err.c -+ $(CC) $(CFLAGS) $(SHAREDFLAGS) $? -o $@ -+db_log2.so: $(srcdir)/common/db_log2.c -+ $(CC) $(CFLAGS) $(SHAREDFLAGS) $? -o $@ -+db_region.so: $(srcdir)/common/db_region.c -+ $(CC) $(CFLAGS) $(SHAREDFLAGS) $? -o $@ -+db_salloc.so: $(srcdir)/common/db_salloc.c -+ $(CC) $(CFLAGS) $(SHAREDFLAGS) $? -o $@ -+db_shash.so: $(srcdir)/common/db_shash.c -+ $(CC) $(CFLAGS) $(SHAREDFLAGS) $? -o $@ -+ -+# OS specific source files. -+os_abs.so: $(srcdir)/os/os_abs.c -+ $(CC) $(CFLAGS) $(SHAREDFLAGS) $? -o $@ -+os_alloc.so: $(srcdir)/os/os_alloc.c -+ $(CC) $(CFLAGS) $(SHAREDFLAGS) $? -o $@ -+os_config.so: $(srcdir)/os/os_config.c -+ $(CC) $(CFLAGS) $(SHAREDFLAGS) $? -o $@ -+os_dir.so: $(srcdir)/os/os_dir.c -+ $(CC) $(CFLAGS) $(SHAREDFLAGS) $? -o $@ -+os_fid.so: $(srcdir)/os/os_fid.c -+ $(CC) $(CFLAGS) $(SHAREDFLAGS) $? -o $@ -+os_fsync.so: $(srcdir)/os/os_fsync.c -+ $(CC) $(CFLAGS) $(SHAREDFLAGS) $? -o $@ -+os_map.so: $(srcdir)/os/os_map.c -+ $(CC) $(CFLAGS) $(SHAREDFLAGS) $? -o $@ -+os_oflags.so: $(srcdir)/os/os_oflags.c -+ $(CC) $(CFLAGS) $(SHAREDFLAGS) $? -o $@ -+os_open.so: $(srcdir)/os/os_open.c -+ $(CC) $(CFLAGS) $(SHAREDFLAGS) $? -o $@ -+os_rpath.so: $(srcdir)/os/os_rpath.c -+ $(CC) $(CFLAGS) $(SHAREDFLAGS) $? -o $@ -+os_rw.so: $(srcdir)/os/os_rw.c -+ $(CC) $(CFLAGS) $(SHAREDFLAGS) $? -o $@ -+os_seek.so: $(srcdir)/os/os_seek.c -+ $(CC) $(CFLAGS) $(SHAREDFLAGS) $? -o $@ -+os_sleep.so: $(srcdir)/os/os_sleep.c -+ $(CC) $(CFLAGS) $(SHAREDFLAGS) $? -o $@ -+os_spin.so: $(srcdir)/os/os_spin.c -+ $(CC) $(CFLAGS) $(SHAREDFLAGS) $? -o $@ -+os_stat.so: $(srcdir)/os/os_stat.c -+ $(CC) $(CFLAGS) $(SHAREDFLAGS) $? -o $@ -+os_tmpdir.so: $(srcdir)/os/os_tmpdir.c -+ $(CC) $(CFLAGS) $(SHAREDFLAGS) $? -o $@ -+os_unlink.so: $(srcdir)/os/os_unlink.c -+ $(CC) $(CFLAGS) $(SHAREDFLAGS) $? -o $@ -+ -+# Test programs. -+tclAppInit.so: $(srcdir)/test/tclAppInit.c -+ $(CC) $(CFLAGS) $(SHAREDFLAGS) $? -o $@ -+tcl_dbm.so: $(srcdir)/test/tcl_dbm.c -+ $(CC) $(CFLAGS) $(SHAREDFLAGS) $? -o $@ -+tcl_hsearch.so: $(srcdir)/test/tcl_hsearch.c -+ $(CC) $(CFLAGS) $(SHAREDFLAGS) $? -o $@ -+tcl_lock.so: $(srcdir)/test/tcl_lock.c -+ $(CC) $(CFLAGS) $(SHAREDFLAGS) $? -o $@ -+tcl_log.so: $(srcdir)/test/tcl_log.c -+ $(CC) $(CFLAGS) $(SHAREDFLAGS) $? -o $@ -+tcl_mpool.so: $(srcdir)/test/tcl_mpool.c -+ $(CC) $(CFLAGS) $(SHAREDFLAGS) $? -o $@ -+tcl_mutex.so: $(srcdir)/test/tcl_mutex.c -+ $(CC) $(CFLAGS) $(SHAREDFLAGS) $? -o $@ -+tcl_ndbm.so: $(srcdir)/test/tcl_ndbm.c -+ $(CC) $(CFLAGS) $(SHAREDFLAGS) $? -o $@ -+tcl_txn.so: $(srcdir)/test/tcl_txn.c -+ $(CC) $(CFLAGS) $(SHAREDFLAGS) $? -o $@ -+utils.so: $(srcdir)/test/utils.c -+ $(CC) $(CFLAGS) $(SHAREDFLAGS) $? -o $@ -+ -+# Replacement source files. -+err.so: $(srcdir)/clib/err.c -+ $(CC) $(CFLAGS) $(SHAREDFLAGS) $? -o $@ -+getcwd.so: $(srcdir)/clib/getcwd.c -+ $(CC) $(CFLAGS) $(SHAREDFLAGS) $? -o $@ -+getlong.so: $(srcdir)/clib/getlong.c -+ $(CC) $(CFLAGS) $(SHAREDFLAGS) $? -o $@ -+getopt.so: $(srcdir)/clib/getopt.c -+ $(CC) $(CFLAGS) $(SHAREDFLAGS) $? -o $@ -+memcmp.so: $(srcdir)/clib/memcmp.c -+ $(CC) $(CFLAGS) $(SHAREDFLAGS) $? -o $@ -+memcpy.so: $(srcdir)/clib/memmove.c -+ $(CC) -DMEMCOPY $(CFLAGS) $(SHAREDFLAGS) $? -o $@ -+memmove.so: $(srcdir)/clib/memmove.c -+ $(CC) -DMEMMOVE $(CFLAGS) $(SHAREDFLAGS) $? -o $@ -+raise.so: $(srcdir)/clib/raise.c -+ $(CC) $(CFLAGS) $(SHAREDFLAGS) $? -o $@ -+snprintf.so: $(srcdir)/clib/snprintf.c -+ $(CC) $(CFLAGS) $(SHAREDFLAGS) $? -o $@ -+strerror.so: $(srcdir)/clib/strerror.c -+ $(CC) $(CFLAGS) $(SHAREDFLAGS) $? -o $@ -+strsep.so: $(srcdir)/clib/strsep.c -+ $(CC) $(CFLAGS) $(SHAREDFLAGS) $? -o $@ -+vsnprintf.so: $(srcdir)/clib/vsnprintf.c -+ $(CC) $(CFLAGS) $(SHAREDFLAGS) $? -o $@ diff --git a/databases/db46/pkg-comment b/databases/db46/pkg-comment deleted file mode 100644 index 39a54a240320..000000000000 --- a/databases/db46/pkg-comment +++ /dev/null @@ -1 +0,0 @@ -The Berkeley DB package, revision 2 diff --git a/databases/db46/pkg-descr b/databases/db46/pkg-descr deleted file mode 100644 index b9ed34ee6d81..000000000000 --- a/databases/db46/pkg-descr +++ /dev/null @@ -1,13 +0,0 @@ -Revesion 2 of the Berkeley DB library. This version uses an incompatible -underlying database format than revision 1 and a different standard API. -Utilities are included in the distribution to convert v1.85 databases to v2 -databases, and a backwards compatible API is provided to maintain -compatibility with programs using the v1.85 interface. - -There are minor interface changes in this release which may require that DB -applications be modified and recompiled. For a complete discussion of -interface changes, see: - -http://www.sleepycat.com/update/ - -WWW: http://www.sleepycat.com diff --git a/databases/db46/pkg-plist b/databases/db46/pkg-plist deleted file mode 100644 index 961bc047a6e4..000000000000 --- a/databases/db46/pkg-plist +++ /dev/null @@ -1,564 +0,0 @@ -include/db2/db.h -include/db2/db_cxx.h -include/db2/db_185.h -lib/libdb2.a -lib/libdb2.so -lib/libdb2.so.0 -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 -share/doc/db2/api_c/Db/close.html -share/doc/db2/api_c/Db/cursor.html -share/doc/db2/api_c/Db/del.html -share/doc/db2/api_c/Db/fd.html -share/doc/db2/api_c/Db/get.html -share/doc/db2/api_c/Db/join.html -share/doc/db2/api_c/Db/open.html -share/doc/db2/api_c/Db/put.html -share/doc/db2/api_c/Db/stat.html -share/doc/db2/api_c/Db/sync.html -share/doc/db2/api_c/DbEnv/appexit.html -share/doc/db2/api_c/DbEnv/appinit.html -share/doc/db2/api_c/DbEnv/env.html -share/doc/db2/api_c/DbEnv/version.html -share/doc/db2/api_c/DbInfo/info.html -share/doc/db2/api_c/DbLock/put.html -share/doc/db2/api_c/DbLockTab/close.html -share/doc/db2/api_c/DbLockTab/detect.html -share/doc/db2/api_c/DbLockTab/get.html -share/doc/db2/api_c/DbLockTab/id.html -share/doc/db2/api_c/DbLockTab/open.html -share/doc/db2/api_c/DbLockTab/stat.html -share/doc/db2/api_c/DbLockTab/unlink.html -share/doc/db2/api_c/DbLockTab/vec.html -share/doc/db2/api_c/DbLog/archive.html -share/doc/db2/api_c/DbLog/close.html -share/doc/db2/api_c/DbLog/compare.html -share/doc/db2/api_c/DbLog/db_register.html -share/doc/db2/api_c/DbLog/db_unregister.html -share/doc/db2/api_c/DbLog/file.html -share/doc/db2/api_c/DbLog/flush.html -share/doc/db2/api_c/DbLog/get.html -share/doc/db2/api_c/DbLog/lsn.html -share/doc/db2/api_c/DbLog/open.html -share/doc/db2/api_c/DbLog/put.html -share/doc/db2/api_c/DbLog/stat.html -share/doc/db2/api_c/DbLog/unlink.html -share/doc/db2/api_c/DbMpool/close.html -share/doc/db2/api_c/DbMpool/db_register.html -share/doc/db2/api_c/DbMpool/open.html -share/doc/db2/api_c/DbMpool/stat.html -share/doc/db2/api_c/DbMpool/sync.html -share/doc/db2/api_c/DbMpool/trickle.html -share/doc/db2/api_c/DbMpool/unlink.html -share/doc/db2/api_c/DbMpoolFile/close.html -share/doc/db2/api_c/DbMpoolFile/get.html -share/doc/db2/api_c/DbMpoolFile/open.html -share/doc/db2/api_c/DbMpoolFile/put.html -share/doc/db2/api_c/DbMpoolFile/set.html -share/doc/db2/api_c/DbMpoolFile/sync.html -share/doc/db2/api_c/DbTxn/abort.html -share/doc/db2/api_c/DbTxn/commit.html -share/doc/db2/api_c/DbTxn/id.html -share/doc/db2/api_c/DbTxn/prepare.html -share/doc/db2/api_c/DbTxnMgr/begin.html -share/doc/db2/api_c/DbTxnMgr/checkpoint.html -share/doc/db2/api_c/DbTxnMgr/close.html -share/doc/db2/api_c/DbTxnMgr/open.html -share/doc/db2/api_c/DbTxnMgr/stat.html -share/doc/db2/api_c/DbTxnMgr/unlink.html -share/doc/db2/api_c/Dbc/close.html -share/doc/db2/api_c/Dbc/del.html -share/doc/db2/api_c/Dbc/get.html -share/doc/db2/api_c/Dbc/put.html -share/doc/db2/api_c/Dbt/dbt.html -share/doc/db2/api_c/historic/dbm.html -share/doc/db2/api_c/historic/hsearch.html -share/doc/db2/api_c/index/flags.html -share/doc/db2/api_c/index/function.html -share/doc/db2/api_c/index/structure.html -share/doc/db2/api_c/internal/db_jump_set.html -share/doc/db2/api_c/internal/db_value_set.html -share/doc/db2/api_cxx/Db/class.html -share/doc/db2/api_cxx/Db/close.html -share/doc/db2/api_cxx/Db/cursor.html -share/doc/db2/api_cxx/Db/del.html -share/doc/db2/api_cxx/Db/fd.html -share/doc/db2/api_cxx/Db/get.html -share/doc/db2/api_cxx/Db/get_byteswapped.html -share/doc/db2/api_cxx/Db/get_type.html -share/doc/db2/api_cxx/Db/join.html -share/doc/db2/api_cxx/Db/open.html -share/doc/db2/api_cxx/Db/put.html -share/doc/db2/api_cxx/Db/stat.html -share/doc/db2/api_cxx/Db/sync.html -share/doc/db2/api_cxx/DbEnv/appexit.html -share/doc/db2/api_cxx/DbEnv/appinit.html -share/doc/db2/api_cxx/DbEnv/class.html -share/doc/db2/api_cxx/DbEnv/get_lg_info.html -share/doc/db2/api_cxx/DbEnv/get_lk_info.html -share/doc/db2/api_cxx/DbEnv/get_mp_info.html -share/doc/db2/api_cxx/DbEnv/get_tx_info.html -share/doc/db2/api_cxx/DbEnv/set_errcall.html -share/doc/db2/api_cxx/DbEnv/set_errfile.html -share/doc/db2/api_cxx/DbEnv/set_error_model.html -share/doc/db2/api_cxx/DbEnv/set_error_stream.html -share/doc/db2/api_cxx/DbEnv/set_errpfx.html -share/doc/db2/api_cxx/DbEnv/set_lg_max.html -share/doc/db2/api_cxx/DbEnv/set_lk_conflicts.html -share/doc/db2/api_cxx/DbEnv/set_lk_detect.html -share/doc/db2/api_cxx/DbEnv/set_lk_max.html -share/doc/db2/api_cxx/DbEnv/set_lk_modes.html -share/doc/db2/api_cxx/DbEnv/set_lorder.html -share/doc/db2/api_cxx/DbEnv/set_mp_mmapsize.html -share/doc/db2/api_cxx/DbEnv/set_mp_size.html -share/doc/db2/api_cxx/DbEnv/set_tx_max.html -share/doc/db2/api_cxx/DbEnv/set_tx_recover.html -share/doc/db2/api_cxx/DbEnv/set_verbose.html -share/doc/db2/api_cxx/DbEnv/version.html -share/doc/db2/api_cxx/DbException/class.html -share/doc/db2/api_cxx/DbException/get_errno.html -share/doc/db2/api_cxx/DbException/what.html -share/doc/db2/api_cxx/DbInfo/class.html -share/doc/db2/api_cxx/DbInfo/set_bt_compare.html -share/doc/db2/api_cxx/DbInfo/set_bt_maxkey.html -share/doc/db2/api_cxx/DbInfo/set_bt_minkey.html -share/doc/db2/api_cxx/DbInfo/set_bt_prefix.html -share/doc/db2/api_cxx/DbInfo/set_cachesize.html -share/doc/db2/api_cxx/DbInfo/set_compare.html -share/doc/db2/api_cxx/DbInfo/set_flags.html -share/doc/db2/api_cxx/DbInfo/set_h_ffactor.html -share/doc/db2/api_cxx/DbInfo/set_h_hash.html -share/doc/db2/api_cxx/DbInfo/set_h_nelem.html -share/doc/db2/api_cxx/DbInfo/set_lorder.html -share/doc/db2/api_cxx/DbInfo/set_malloc.html -share/doc/db2/api_cxx/DbInfo/set_pagesize.html -share/doc/db2/api_cxx/DbInfo/set_re_delim.html -share/doc/db2/api_cxx/DbInfo/set_re_len.html -share/doc/db2/api_cxx/DbInfo/set_re_pad.html -share/doc/db2/api_cxx/DbInfo/set_re_source.html -share/doc/db2/api_cxx/DbLock/class.html -share/doc/db2/api_cxx/DbLock/put.html -share/doc/db2/api_cxx/DbLockTab/class.html -share/doc/db2/api_cxx/DbLockTab/close.html -share/doc/db2/api_cxx/DbLockTab/detect.html -share/doc/db2/api_cxx/DbLockTab/get.html -share/doc/db2/api_cxx/DbLockTab/id.html -share/doc/db2/api_cxx/DbLockTab/open.html -share/doc/db2/api_cxx/DbLockTab/stat.html -share/doc/db2/api_cxx/DbLockTab/unlink.html -share/doc/db2/api_cxx/DbLockTab/vec.html -share/doc/db2/api_cxx/DbLog/archive.html -share/doc/db2/api_cxx/DbLog/class.html -share/doc/db2/api_cxx/DbLog/close.html -share/doc/db2/api_cxx/DbLog/compare.html -share/doc/db2/api_cxx/DbLog/db_register.html -share/doc/db2/api_cxx/DbLog/db_unregister.html -share/doc/db2/api_cxx/DbLog/file.html -share/doc/db2/api_cxx/DbLog/flush.html -share/doc/db2/api_cxx/DbLog/get.html -share/doc/db2/api_cxx/DbLog/open.html -share/doc/db2/api_cxx/DbLog/put.html -share/doc/db2/api_cxx/DbLog/stat.html -share/doc/db2/api_cxx/DbLog/unlink.html -share/doc/db2/api_cxx/DbLsn/class.html -share/doc/db2/api_cxx/DbMpool/class.html -share/doc/db2/api_cxx/DbMpool/close.html -share/doc/db2/api_cxx/DbMpool/db_register.html -share/doc/db2/api_cxx/DbMpool/open.html -share/doc/db2/api_cxx/DbMpool/stat.html -share/doc/db2/api_cxx/DbMpool/sync.html -share/doc/db2/api_cxx/DbMpool/trickle.html -share/doc/db2/api_cxx/DbMpool/unlink.html -share/doc/db2/api_cxx/DbMpoolFile/class.html -share/doc/db2/api_cxx/DbMpoolFile/close.html -share/doc/db2/api_cxx/DbMpoolFile/get.html -share/doc/db2/api_cxx/DbMpoolFile/open.html -share/doc/db2/api_cxx/DbMpoolFile/put.html -share/doc/db2/api_cxx/DbMpoolFile/set.html -share/doc/db2/api_cxx/DbMpoolFile/sync.html -share/doc/db2/api_cxx/DbTxn/abort.html -share/doc/db2/api_cxx/DbTxn/class.html -share/doc/db2/api_cxx/DbTxn/commit.html -share/doc/db2/api_cxx/DbTxn/id.html -share/doc/db2/api_cxx/DbTxn/prepare.html -share/doc/db2/api_cxx/DbTxnMgr/begin.html -share/doc/db2/api_cxx/DbTxnMgr/checkpoint.html -share/doc/db2/api_cxx/DbTxnMgr/class.html -share/doc/db2/api_cxx/DbTxnMgr/close.html -share/doc/db2/api_cxx/DbTxnMgr/open.html -share/doc/db2/api_cxx/DbTxnMgr/stat.html -share/doc/db2/api_cxx/DbTxnMgr/unlink.html -share/doc/db2/api_cxx/Dbc/class.html -share/doc/db2/api_cxx/Dbc/close.html -share/doc/db2/api_cxx/Dbc/del.html -share/doc/db2/api_cxx/Dbc/get.html -share/doc/db2/api_cxx/Dbc/put.html -share/doc/db2/api_cxx/Dbt/class.html -share/doc/db2/api_cxx/index/class.html -share/doc/db2/api_java/Db/class.html -share/doc/db2/api_java/Db/close.html -share/doc/db2/api_java/Db/cursor.html -share/doc/db2/api_java/Db/del.html -share/doc/db2/api_java/Db/fd.html -share/doc/db2/api_java/Db/get.html -share/doc/db2/api_java/Db/get_byteswapped.html -share/doc/db2/api_java/Db/get_type.html -share/doc/db2/api_java/Db/join.html -share/doc/db2/api_java/Db/open.html -share/doc/db2/api_java/Db/put.html -share/doc/db2/api_java/Db/stat.html -share/doc/db2/api_java/Db/sync.html -share/doc/db2/api_java/DbEnv/appexit.html -share/doc/db2/api_java/DbEnv/appinit.html -share/doc/db2/api_java/DbEnv/class.html -share/doc/db2/api_java/DbEnv/get_lg_info.html -share/doc/db2/api_java/DbEnv/get_lk_info.html -share/doc/db2/api_java/DbEnv/get_mp_info.html -share/doc/db2/api_java/DbEnv/get_tx_info.html -share/doc/db2/api_java/DbEnv/set_errcall.html -share/doc/db2/api_java/DbEnv/set_error_stream.html -share/doc/db2/api_java/DbEnv/set_errpfx.html -share/doc/db2/api_java/DbEnv/set_lg_max.html -share/doc/db2/api_java/DbEnv/set_lk_conflicts.html -share/doc/db2/api_java/DbEnv/set_lk_detect.html -share/doc/db2/api_java/DbEnv/set_lk_max.html -share/doc/db2/api_java/DbEnv/set_lk_modes.html -share/doc/db2/api_java/DbEnv/set_lorder.html -share/doc/db2/api_java/DbEnv/set_mp_mmapsize.html -share/doc/db2/api_java/DbEnv/set_mp_size.html -share/doc/db2/api_java/DbEnv/set_tx_max.html -share/doc/db2/api_java/DbEnv/set_verbose.html -share/doc/db2/api_java/DbEnv/version.html -share/doc/db2/api_java/DbException/class.html -share/doc/db2/api_java/DbException/get_errno.html -share/doc/db2/api_java/DbInfo/class.html -share/doc/db2/api_java/DbInfo/set_bt_compare.html -share/doc/db2/api_java/DbInfo/set_bt_maxkey.html -share/doc/db2/api_java/DbInfo/set_bt_minkey.html -share/doc/db2/api_java/DbInfo/set_bt_prefix.html -share/doc/db2/api_java/DbInfo/set_cachesize.html -share/doc/db2/api_java/DbInfo/set_compare.html -share/doc/db2/api_java/DbInfo/set_flags.html -share/doc/db2/api_java/DbInfo/set_h_ffactor.html -share/doc/db2/api_java/DbInfo/set_h_hash.html -share/doc/db2/api_java/DbInfo/set_h_nelem.html -share/doc/db2/api_java/DbInfo/set_lorder.html -share/doc/db2/api_java/DbInfo/set_malloc.html -share/doc/db2/api_java/DbInfo/set_pagesize.html -share/doc/db2/api_java/DbInfo/set_re_delim.html -share/doc/db2/api_java/DbInfo/set_re_len.html -share/doc/db2/api_java/DbInfo/set_re_pad.html -share/doc/db2/api_java/DbInfo/set_re_source.html -share/doc/db2/api_java/DbLock/class.html -share/doc/db2/api_java/DbLock/put.html -share/doc/db2/api_java/DbLockTab/class.html -share/doc/db2/api_java/DbLockTab/close.html -share/doc/db2/api_java/DbLockTab/detect.html -share/doc/db2/api_java/DbLockTab/get.html -share/doc/db2/api_java/DbLockTab/id.html -share/doc/db2/api_java/DbLockTab/open.html -share/doc/db2/api_java/DbLockTab/stat.html -share/doc/db2/api_java/DbLockTab/unlink.html -share/doc/db2/api_java/DbLockTab/vec.html -share/doc/db2/api_java/DbLog/archive.html -share/doc/db2/api_java/DbLog/class.html -share/doc/db2/api_java/DbLog/close.html -share/doc/db2/api_java/DbLog/compare.html -share/doc/db2/api_java/DbLog/db_register.html -share/doc/db2/api_java/DbLog/db_unregister.html -share/doc/db2/api_java/DbLog/file.html -share/doc/db2/api_java/DbLog/flush.html -share/doc/db2/api_java/DbLog/get.html -share/doc/db2/api_java/DbLog/open.html -share/doc/db2/api_java/DbLog/put.html -share/doc/db2/api_java/DbLog/stat.html -share/doc/db2/api_java/DbLog/unlink.html -share/doc/db2/api_java/DbLsn/class.html -share/doc/db2/api_java/DbMpool/class.html -share/doc/db2/api_java/DbMpool/close.html -share/doc/db2/api_java/DbMpool/db_register.html -share/doc/db2/api_java/DbMpool/open.html -share/doc/db2/api_java/DbMpool/stat.html -share/doc/db2/api_java/DbMpool/sync.html -share/doc/db2/api_java/DbMpool/trickle.html -share/doc/db2/api_java/DbMpool/unlink.html -share/doc/db2/api_java/DbMpoolFile/class.html -share/doc/db2/api_java/DbMpoolFile/close.html -share/doc/db2/api_java/DbMpoolFile/get.html -share/doc/db2/api_java/DbMpoolFile/open.html -share/doc/db2/api_java/DbMpoolFile/put.html -share/doc/db2/api_java/DbMpoolFile/set.html -share/doc/db2/api_java/DbMpoolFile/sync.html -share/doc/db2/api_java/DbRunRecoveryException/class.html -share/doc/db2/api_java/DbTxn/abort.html -share/doc/db2/api_java/DbTxn/class.html -share/doc/db2/api_java/DbTxn/commit.html -share/doc/db2/api_java/DbTxn/id.html -share/doc/db2/api_java/DbTxn/prepare.html -share/doc/db2/api_java/DbTxnMgr/begin.html -share/doc/db2/api_java/DbTxnMgr/checkpoint.html -share/doc/db2/api_java/DbTxnMgr/class.html -share/doc/db2/api_java/DbTxnMgr/close.html -share/doc/db2/api_java/DbTxnMgr/open.html -share/doc/db2/api_java/DbTxnMgr/stat.html -share/doc/db2/api_java/DbTxnMgr/unlink.html -share/doc/db2/api_java/Dbc/class.html -share/doc/db2/api_java/Dbc/close.html -share/doc/db2/api_java/Dbc/del.html -share/doc/db2/api_java/Dbc/get.html -share/doc/db2/api_java/Dbc/put.html -share/doc/db2/api_java/Dbt/class.html -share/doc/db2/api_java/index/class.html -share/doc/db2/build/java.html -share/doc/db2/build/shared.html -share/doc/db2/build/shared_gcc.html -share/doc/db2/build/shared_hp.html -share/doc/db2/build/unix.html -share/doc/db2/build/unix_faq.html -share/doc/db2/build/win16.html -share/doc/db2/build/win32.html -share/doc/db2/build/win_faq.html -share/doc/db2/distrib/layout.html -share/doc/db2/images/folder.gif -share/doc/db2/images/folder_open.gif -share/doc/db2/images/next.gif -share/doc/db2/images/prev.gif -share/doc/db2/images/ps.gif -share/doc/db2/images/sleepycat.gif -share/doc/db2/images/toc.gif -share/doc/db2/index.html -share/doc/db2/packages/hash_usenix.ps -share/doc/db2/packages/index.html -share/doc/db2/packages/libtp_usenix.ps -share/doc/db2/packages/witold.html -share/doc/db2/ref/am/bt_compare.html -share/doc/db2/ref/am/bt_dup.html -share/doc/db2/ref/am/bt_maxkey.html -share/doc/db2/ref/am/bt_minkey.html -share/doc/db2/ref/am/bt_prefix.html -share/doc/db2/ref/am/bt_recnum.html -share/doc/db2/ref/am/byteorder.html -share/doc/db2/ref/am/cachesize.html -share/doc/db2/ref/am/close.html -share/doc/db2/ref/am/compare.html -share/doc/db2/ref/am/curclose.html -share/doc/db2/ref/am/curdel.html -share/doc/db2/ref/am/curget.html -share/doc/db2/ref/am/curput.html -share/doc/db2/ref/am/cursor.html -share/doc/db2/ref/am/delete.html -share/doc/db2/ref/am/get.html -share/doc/db2/ref/am/h_dup.html -share/doc/db2/ref/am/h_ffactor.html -share/doc/db2/ref/am/h_hash.html -share/doc/db2/ref/am/h_nelem.html -share/doc/db2/ref/am/intro.html -share/doc/db2/ref/am/join.html -share/doc/db2/ref/am/logrec.html -share/doc/db2/ref/am/malloc.html -share/doc/db2/ref/am/ops.html -share/doc/db2/ref/am/pagesize.html -share/doc/db2/ref/am/partial.html -share/doc/db2/ref/am/put.html -share/doc/db2/ref/am/re_delim.html -share/doc/db2/ref/am/re_len.html -share/doc/db2/ref/am/re_pad.html -share/doc/db2/ref/am/re_source.html -share/doc/db2/ref/am/renumber.html -share/doc/db2/ref/am/select.html -share/doc/db2/ref/am/stat.html -share/doc/db2/ref/am/sync.html -share/doc/db2/ref/arch/apis.html -share/doc/db2/ref/arch/bigpic.gif -share/doc/db2/ref/arch/bigpic.html -share/doc/db2/ref/arch/env.html -share/doc/db2/ref/arch/extending.html -share/doc/db2/ref/arch/progmodel.html -share/doc/db2/ref/arch/script.html -share/doc/db2/ref/arch/smallpic.gif -share/doc/db2/ref/arch/subsystem.html -share/doc/db2/ref/arch/utilities.html -share/doc/db2/ref/cam/intro.html -share/doc/db2/ref/debug/runtime.html -share/doc/db2/ref/dumpload/format.html -share/doc/db2/ref/dumpload/text.html -share/doc/db2/ref/dumpload/utility.html -share/doc/db2/ref/env/create.html -share/doc/db2/ref/env/naming.html -share/doc/db2/ref/env/open.html -share/doc/db2/ref/env/region.html -share/doc/db2/ref/env/security.html -share/doc/db2/ref/install/file.html -share/doc/db2/ref/install/magic.s5.be.txt -share/doc/db2/ref/install/magic.s5.le.txt -share/doc/db2/ref/install/magic.txt -share/doc/db2/ref/intro/distrib.html -share/doc/db2/ref/intro/do.html -share/doc/db2/ref/intro/what.html -share/doc/db2/ref/intro/where.html -share/doc/db2/ref/lock/stdmode.html -share/doc/db2/ref/log/config.html -share/doc/db2/ref/log/intro.html -share/doc/db2/ref/log/limits.html -share/doc/db2/ref/mp/config.html -share/doc/db2/ref/mp/intro.html -share/doc/db2/ref/perl/intro.html -share/doc/db2/ref/program/appsignals.html -share/doc/db2/ref/program/byteorder.html -share/doc/db2/ref/program/compatible.html -share/doc/db2/ref/program/convert.html -share/doc/db2/ref/program/dbsizes.html -share/doc/db2/ref/program/environ.html -share/doc/db2/ref/program/errorret.html -share/doc/db2/ref/program/java.html -share/doc/db2/ref/program/runtime.html -share/doc/db2/ref/program/solaris.txt -share/doc/db2/ref/program/thread.html -share/doc/db2/ref/program/version.html -share/doc/db2/ref/sendmail/intro.html -share/doc/db2/ref/simple_tut/close.html -share/doc/db2/ref/simple_tut/del.html -share/doc/db2/ref/simple_tut/errors.html -share/doc/db2/ref/simple_tut/example.txt -share/doc/db2/ref/simple_tut/get.html -share/doc/db2/ref/simple_tut/intro.html -share/doc/db2/ref/simple_tut/keydata.html -share/doc/db2/ref/simple_tut/open.html -share/doc/db2/ref/simple_tut/put.html -share/doc/db2/ref/toc.html -share/doc/db2/ref/transapp/admin.html -share/doc/db2/ref/transapp/apps.html -share/doc/db2/ref/transapp/archival.html -share/doc/db2/ref/transapp/checkpoint.html -share/doc/db2/ref/transapp/deadlock.html -share/doc/db2/ref/transapp/filesys.html -share/doc/db2/ref/transapp/intro.html -share/doc/db2/ref/transapp/recovery.html -share/doc/db2/ref/transapp/throughput.html -share/doc/db2/ref/transapp/writetest.txt -share/doc/db2/ref/txn/config.html -share/doc/db2/ref/txn/limits.html -share/doc/db2/ref/txn/other.html -share/doc/db2/ref/txn/stability.html -share/doc/db2/sleepycat/contact.html -share/doc/db2/sleepycat/products.html -share/doc/db2/test/build.html -share/doc/db2/test/build_faq.html -share/doc/db2/test/debug.html -share/doc/db2/test/run.html -share/doc/db2/utility/db_archive.html -share/doc/db2/utility/db_checkpoint.html -share/doc/db2/utility/db_deadlock.html -share/doc/db2/utility/db_dump.html -share/doc/db2/utility/db_load.html -share/doc/db2/utility/db_recover.html -share/doc/db2/utility/db_stat.html -share/doc/db2/utility/index.html -share/examples/db2/examples/README -share/examples/db2/examples/ex_access.c -share/examples/db2/examples/ex_appinit.c -share/examples/db2/examples/ex_btrec.c -share/examples/db2/examples/ex_lock.c -share/examples/db2/examples/ex_mpool.c -share/examples/db2/examples/ex_thread.c -share/examples/db2/examples/ex_tpcb.c -share/examples/db2/examples/ex_tpcb.h -share/examples/db2/examples_cxx/AccessExample.cpp -share/examples/db2/examples_cxx/AppinitExample.cpp -share/examples/db2/examples_cxx/LockExample.cpp -share/examples/db2/examples_cxx/MpoolExample.cpp -share/examples/db2/examples_cxx/TpcbExample.cpp -share/examples/db2/examples_java/AccessExample.java -share/examples/db2/examples_java/AppinitExample.java -share/examples/db2/examples_java/LockExample.java -share/examples/db2/examples_java/TpcbExample.java -@dirrm include/db2 -@dirrm share/examples/db2/examples -@dirrm share/examples/db2/examples_cxx -@dirrm share/examples/db2/examples_java -@dirrm share/examples/db2 -@dirrm share/doc/db2/api_c/DbTxn -@dirrm share/doc/db2/api_c/DbEnv -@dirrm share/doc/db2/api_c/DbInfo -@dirrm share/doc/db2/api_c/DbLock -@dirrm share/doc/db2/api_c/DbLockTab -@dirrm share/doc/db2/api_c/DbLog -@dirrm share/doc/db2/api_c/DbMpool -@dirrm share/doc/db2/api_c/DbMpoolFile -@dirrm share/doc/db2/api_c/Db -@dirrm share/doc/db2/api_c/DbTxnMgr -@dirrm share/doc/db2/api_c/Dbc -@dirrm share/doc/db2/api_c/Dbt -@dirrm share/doc/db2/api_c/historic -@dirrm share/doc/db2/api_c/index -@dirrm share/doc/db2/api_c/internal -@dirrm share/doc/db2/api_c/special -@dirrm share/doc/db2/api_c -@dirrm share/doc/db2/test -@dirrm share/doc/db2/sleepycat -@dirrm share/doc/db2/ref/txn -@dirrm share/doc/db2/ref/am -@dirrm share/doc/db2/ref/arch -@dirrm share/doc/db2/ref/cam -@dirrm share/doc/db2/ref/debug -@dirrm share/doc/db2/ref/dumpload -@dirrm share/doc/db2/ref/env -@dirrm share/doc/db2/ref/intro -@dirrm share/doc/db2/ref/install -@dirrm share/doc/db2/ref/lock -@dirrm share/doc/db2/ref/log -@dirrm share/doc/db2/ref/mp -@dirrm share/doc/db2/ref/perl -@dirrm share/doc/db2/ref/program -@dirrm share/doc/db2/ref/sendmail -@dirrm share/doc/db2/ref/simple_tut -@dirrm share/doc/db2/ref/transapp -@dirrm share/doc/db2/ref -@dirrm share/doc/db2/packages -@dirrm share/doc/db2/api_cxx/DbLsn -@dirrm share/doc/db2/api_cxx/Dbc -@dirrm share/doc/db2/api_cxx/DbEnv -@dirrm share/doc/db2/api_cxx/DbException -@dirrm share/doc/db2/api_cxx/DbInfo -@dirrm share/doc/db2/api_cxx/DbLock -@dirrm share/doc/db2/api_cxx/DbLockTab -@dirrm share/doc/db2/api_cxx/DbLog -@dirrm share/doc/db2/api_cxx/Db -@dirrm share/doc/db2/api_cxx/DbMpool -@dirrm share/doc/db2/api_cxx/DbMpoolFile -@dirrm share/doc/db2/api_cxx/DbTxn -@dirrm share/doc/db2/api_cxx/DbTxnMgr -@dirrm share/doc/db2/api_cxx/Dbt -@dirrm share/doc/db2/api_cxx/index -@dirrm share/doc/db2/api_cxx/special -@dirrm share/doc/db2/api_cxx -@dirrm share/doc/db2/utility -@dirrm share/doc/db2/distrib -@dirrm share/doc/db2/build -@dirrm share/doc/db2/api_java/DbMpool -@dirrm share/doc/db2/api_java/DbEnv -@dirrm share/doc/db2/api_java/DbException -@dirrm share/doc/db2/api_java/DbInfo -@dirrm share/doc/db2/api_java/DbLock -@dirrm share/doc/db2/api_java/DbLockTab -@dirrm share/doc/db2/api_java/DbLog -@dirrm share/doc/db2/api_java/DbLsn -@dirrm share/doc/db2/api_java/Db -@dirrm share/doc/db2/api_java/DbMpoolFile -@dirrm share/doc/db2/api_java/DbRunRecoveryException -@dirrm share/doc/db2/api_java/DbTxn -@dirrm share/doc/db2/api_java/DbTxnMgr -@dirrm share/doc/db2/api_java/Dbc -@dirrm share/doc/db2/api_java/Dbt -@dirrm share/doc/db2/api_java/index -@dirrm share/doc/db2/api_java/special -@dirrm share/doc/db2/api_java -@dirrm share/doc/db2/images -@dirrm share/doc/db2 diff --git a/databases/db47/Makefile b/databases/db47/Makefile deleted file mode 100644 index 9b1fe8a00a1e..000000000000 --- a/databases/db47/Makefile +++ /dev/null @@ -1,41 +0,0 @@ -# ports collection makefile for: Berkeley DB -# Date created: 26 Jan 1998 -# Whom: Josh Tiefenbach <josh@ican.net> -# -# $FreeBSD$ -# - -PORTNAME= db -PORTVERSION= 2.7.7 -CATEGORIES= databases -MASTER_SITES= http://www.sleepycat.com/update/${PORTVERSION}/ - -MAINTAINER= josh@ican.net - -Y2K= http://www.sleepycat.com/faq.html#A8 - -MANUAL_PACKAGE_BUILD= incompatible with libc internal db calls -WRKSRC= ${WRKDIR}/${DISTNAME}/build_unix - -INSTALLS_SHLIB= yes -GNU_CONFIGURE= yes -CONFIGURE_SCRIPT= ../dist/configure -CONFIGURE_ARGS= --enable-compat185 \ - --enable-dump185 --enable-cxx - -post-install: - ${MKDIR} ${PREFIX}/share/examples/db2 - cd ${WRKSRC}/..; \ - tar -cf - --exclude tags examples/ examples_cxx/ examples_java/ | \ - ( cd ${PREFIX}/share/examples/db2; tar xf - ) - @${ECHO_MSG} "" - @${ECHO_MSG} "Java support for ${PKGNAME} is *not* built by default, and requires that you" - @${ECHO_MSG} "have a working copy of the JDK (v1.1) installed." - @${ECHO_MSG} "" - @${ECHO_MSG} "To build java support, please read:" - @${ECHO_MSG} "" - @${ECHO_MSG} "${WRKDIR}/${DISTNAME}/java/README" - @${ECHO_MSG} "" - @${ECHO_MSG} "and follow the directions therein." - -.include <bsd.port.mk> diff --git a/databases/db47/distinfo b/databases/db47/distinfo deleted file mode 100644 index d761baf3bdff..000000000000 --- a/databases/db47/distinfo +++ /dev/null @@ -1 +0,0 @@ -MD5 (db-2.7.7.tar.gz) = 20256735091ee382c6601117d82d749a diff --git a/databases/db47/files/patch-aa b/databases/db47/files/patch-aa deleted file mode 100644 index db3d430758a2..000000000000 --- a/databases/db47/files/patch-aa +++ /dev/null @@ -1,506 +0,0 @@ ---- ../dist/Makefile.in.orig Mon Dec 7 21:05:59 1998 -+++ ../dist/Makefile.in Tue Jun 6 17:44:50 2000 -@@ -1,13 +1,16 @@ - # @(#)Makefile.in 10.62 (Sleepycat) 12/7/98 - -+SOVER?= 0 -+ - srcdir= @srcdir@/.. - CPPFLAGS=-I. -I$(srcdir)/include @CPPFLAGS@ -+SHAREDFLAGS= -fpic -DPIC - CFLAGS= -c @CFLAGS@ $(CPPFLAGS) - CC= @CC@ - CXXFLAGS=-c @CXXFLAGS@ $(CPPFLAGS) - CXX= @CXX@ --LDFLAGS=@LDFLAGS@ --LIBS= @LIBS@ -+LDFLAGS=@LDFLAGS@ -L. -+LIBS= @LIBS@ -ldb2 - - SHELL= @db_cv_path_sh@ - ar= @db_cv_path_ar@ cr -@@ -43,85 +46,91 @@ - LOBJS= @LIBOBJS@ - POBJS= err.o getlong.o - --libdb= libdb.a --all: $(libdb) $(PROGS) -+libdb= libdb2.a -+libdbso= libdb2.so.$(SOVER) -+all: $(libdb) $(libdbso) $(PROGS) - - $(libdb): db.h $(OBJS) $(LOBJS) - $(rm) -f $@ - $(ar) $@ $(OBJS) $(LOBJS) - test ! -f $(ranlib) || $(ranlib) $@ - -+$(libdbso): db.h $(OBJS:S/.o$/.so/g) $(LOBJS:S/.o$/.so/g) -+ $(rm) -f $@ -+ $(CXX) -shared -Wl,-x -Wl,-assert -Wl,pure-text -Wl,-soname,$@ -o $@ $(OBJS:S/.o$/.so/g) $(LOBJS:S/.o$/.so/g) -+ ln -sf $@ libdb2.so -+ - DBA= db_archive.o $(POBJS) --db_archive: $(DBA) $(libdb) -- $(CC) -o $@ $(LDFLAGS) $(DBA) $(libdb) $(LIBS) -+db_archive: $(DBA) $(libdbso) -+ $(CC) -o $@ $(LDFLAGS) $(DBA) $(LIBS) - - DBB= db_checkpoint.o $(POBJS) --db_checkpoint: $(DBB) $(libdb) -- $(CC) -o $@ $(LDFLAGS) $(DBB) $(libdb) $(LIBS) -+db_checkpoint: $(DBB) $(libdbso) -+ $(CC) -o $@ $(LDFLAGS) $(DBB) $(LIBS) - - DBC= db_deadlock.o $(POBJS) --db_deadlock: $(DBC) $(libdb) -- $(CC) -o $@ $(LDFLAGS) $(DBC) $(libdb) $(LIBS) -+db_deadlock: $(DBC) $(libdbso) -+ $(CC) -o $@ $(LDFLAGS) $(DBC) $(LIBS) - - DBD= db_dump.o $(POBJS) --db_dump: $(DBD) $(libdb) -- $(CC) -o $@ $(LDFLAGS) $(DBD) $(libdb) $(LIBS) -+db_dump: $(DBD) $(libdbso) -+ $(CC) -o $@ $(LDFLAGS) $(DBD) $(LIBS) - - DBE= db_dump185.o $(POBJS) - db_dump185: $(DBE) - $(CC) -o $@ $(LDFLAGS) $(DBE) $(LIBS) - - DBF= db_load.o $(POBJS) --db_load: $(DBF) $(libdb) -- $(CC) -o $@ $(LDFLAGS) $(DBF) $(libdb) $(LIBS) -+db_load: $(DBF) $(libdbso) -+ $(CC) -o $@ $(LDFLAGS) $(DBF) $(LIBS) - - DBG= db_printlog.o $(POBJS) --db_printlog: $(DBG) $(libdb) -- $(CC) -o $@ $(LDFLAGS) $(DBG) $(libdb) $(LIBS) -+db_printlog: $(DBG) $(libdbso) -+ $(CC) -o $@ $(LDFLAGS) $(DBG) $(LIBS) - - DBH= db_recover.o $(POBJS) --db_recover: $(DBH) $(libdb) -- $(CC) -o $@ $(LDFLAGS) $(DBH) $(libdb) $(LIBS) -+db_recover: $(DBH) $(libdbso) -+ $(CC) -o $@ $(LDFLAGS) $(DBH) $(LIBS) - - DBI= db_stat.o $(POBJS) --db_stat: $(DBI) $(libdb) -- $(CC) -o $@ $(LDFLAGS) $(DBI) $(libdb) $(LIBS) -+db_stat: $(DBI) $(libdbso) -+ $(CC) -o $@ $(LDFLAGS) $(DBI) $(LIBS) - - EPROGS= ex_access ex_appinit ex_btrec ex_lock ex_mpool ex_thread ex_tpcb - DBJ= ex_access.o --ex_access: $(DBJ) $(libdb) -- $(CC) -o $@ $(LDFLAGS) $(DBJ) $(libdb) $(LIBS) -+ex_access: $(DBJ) $(libdbso) -+ $(CC) -o $@ $(LDFLAGS) $(DBJ) $(LIBS) - - DBK= ex_appinit.o --ex_appinit: $(DBK) $(libdb) -- $(CC) -o $@ $(LDFLAGS) $(DBK) $(libdb) $(LIBS) -+ex_appinit: $(DBK) $(libdbso) -+ $(CC) -o $@ $(LDFLAGS) $(DBK) $(LIBS) - - DBL= ex_btrec.o --ex_btrec: $(DBL) $(libdb) -- $(CC) -o $@ $(LDFLAGS) $(DBL) $(libdb) $(LIBS) -+ex_btrec: $(DBL) $(libdbso) -+ $(CC) -o $@ $(LDFLAGS) $(DBL) $(LIBS) - - DBM= ex_lock.o $(POBJS) --ex_lock: $(DBM) $(libdb) -- $(CC) -o $@ $(LDFLAGS) $(DBM) $(libdb) $(LIBS) -+ex_lock: $(DBM) $(libdbso) -+ $(CC) -o $@ $(LDFLAGS) $(DBM) $(LIBS) - - DBN= ex_mpool.o --ex_mpool: $(DBN) $(libdb) -- $(CC) -o $@ $(LDFLAGS) $(DBN) $(libdb) $(LIBS) -+ex_mpool: $(DBN) $(libdbso) -+ $(CC) -o $@ $(LDFLAGS) $(DBN) $(LIBS) - - DBO= ex_thread.o --ex_thread: $(DBO) $(libdb) -- $(CC) -o $@ $(LDFLAGS) $(DBO) $(libdb) $(LIBS) -+ex_thread: $(DBO) $(libdbso) -+ $(CC) -o $@ $(LDFLAGS) $(DBO) $(LIBS) - - DBP= ex_tpcb.o $(POBJS) --ex_tpcb: $(DBP) $(libdb) -- $(CC) -o $@ $(LDFLAGS) $(DBP) $(libdb) $(LIBS) -+ex_tpcb: $(DBP) $(libdbso) -+ $(CC) -o $@ $(LDFLAGS) $(DBP) $(LIBS) - - DBT= tclAppInit.o tcl_dbm.o tcl_hsearch.o tcl_lock.o tcl_log.o tcl_mpool.o \ - tcl_mutex.o tcl_ndbm.o tcl_txn.o utils.o $(POBJS) - - dbtest: .dbtestrc --dbtest: $(DBT) $(libdb) -- $(CC) -o $@ $(LDFLAGS) $(DBT) $(libdb) $(LIBS) -+dbtest: $(DBT) $(libdbso) -+ $(CC) -o $@ $(LDFLAGS) $(DBT) $(LIBS) - - AOBJS= err.o getcwd.o getlong.o getopt.o memcmp.o memcpy.o memmove.o \ - raise.o snprintf.o strerror.o strsep.o vsnprintf.o -@@ -131,8 +140,8 @@ - $(rm) -f $(DBA) $(DBB) $(DBC) $(DBD) $(DBE) $(DBF) $(DBG) $(DBH) - $(rm) -f $(DBI) $(DBJ) $(DBK) $(DBL) $(DBM) $(DBN) $(DBO) $(DBP) - $(rm) -f $(DBT) -- $(rm) -f $(PROGS) $(EPROGS) $(POBJS) $(LOBJS) @build_test@ -- $(rm) -f core *.core .dbtestrc $(libdb) -+ $(rm) -f $(PROGS) $(EPROGS) $(POBJS) $(LOBJS) *.so @build_test@ -+ $(rm) -f core *.core .dbtestrc $(libdb) $(libdbso) - - depend obj: - -@@ -141,11 +150,11 @@ - $(rm) -f confdefs.h db.h db_int.h db_185.h include.tcl - - prefix= @prefix@ --bindir= $(prefix)/BerkeleyDB/bin --datadir=$(prefix)/BerkeleyDB/share --includedir=$(prefix)/BerkeleyDB/include --libdir= $(prefix)/BerkeleyDB/lib --mandir= $(prefix)/BerkeleyDB/docs -+bindir= $(prefix)/bin -+datadir=$(prefix)/share/db2 -+includedir=$(prefix)/include/db2 -+libdir= $(prefix)/lib -+mandir= $(prefix)/share/doc/db2 - - dmode= 755 - emode= 555 -@@ -170,6 +179,9 @@ - @cd $(libdir) && $(rm) -f $(libdb) - @$(cp) -p $(libdb) $(libdir) - @cd $(libdir) && $(chmod) $(fmode) $(libdb) -+ @$(cp) -p $(libdbso) $(libdir) -+ @cd $(libdir) && $(chmod) $(fmode) $(libdbso) -+ ln -sf $(libdbso) $(libdir)/libdb2.so - @echo "Installing DB utilities: $(bindir) ..." - @test -d $(bindir) || \ - ($(mkdir) -p $(bindir) && $(chmod) $(dmode) $(bindir)) -@@ -506,3 +518,320 @@ - $(CC) $(CFLAGS) $? - vsnprintf.o: $(srcdir)/clib/vsnprintf.c - $(CC) $(CFLAGS) $? -+ -+# Shared build -+# Programs. -+db_archive.so: $(srcdir)/db_archive/db_archive.c -+ $(CC) $(CFLAGS) $(SHAREDFLAGS) $? -o $@ -+db_checkpoint.so: $(srcdir)/db_checkpoint/db_checkpoint.c -+ $(CC) $(CFLAGS) $(SHAREDFLAGS) $? -o $@ -+db_deadlock.so: $(srcdir)/db_deadlock/db_deadlock.c -+ $(CC) $(CFLAGS) $(SHAREDFLAGS) $? -o $@ -+db_dump.so: $(srcdir)/db_dump/db_dump.c -+ $(CC) $(CFLAGS) $(SHAREDFLAGS) $? -o $@ -+db_dump185.so: $(srcdir)/db_dump185/db_dump185.c -+ $(CC) $(CFLAGS) $(SHAREDFLAGS) $? -o $@ -+db_load.so: $(srcdir)/db_load/db_load.c -+ $(CC) $(CFLAGS) $(SHAREDFLAGS) $? -o $@ -+db_printlog.so: $(srcdir)/db_printlog/db_printlog.c -+ $(CC) $(CFLAGS) $(SHAREDFLAGS) $? -o $@ -+db_recover.so: $(srcdir)/db_recover/db_recover.c -+ $(CC) $(CFLAGS) $(SHAREDFLAGS) $? -o $@ -+db_stat.so: $(srcdir)/db_stat/db_stat.c -+ $(CC) $(CFLAGS) $(SHAREDFLAGS) $? -o $@ -+ -+# Examples. -+ex_access.so: $(srcdir)/examples/ex_access.c -+ $(CC) $(CFLAGS) $(SHAREDFLAGS) $? -o $@ -+ex_appinit.so: $(srcdir)/examples/ex_appinit.c -+ $(CC) $(CFLAGS) $(SHAREDFLAGS) $? -o $@ -+ex_btrec.so: $(srcdir)/examples/ex_btrec.c -+ $(CC) $(CFLAGS) $(SHAREDFLAGS) $? -o $@ -+ex_lock.so: $(srcdir)/examples/ex_lock.c -+ $(CC) $(CFLAGS) $(SHAREDFLAGS) $? -o $@ -+ex_mpool.so: $(srcdir)/examples/ex_mpool.c -+ $(CC) $(CFLAGS) $(SHAREDFLAGS) $? -o $@ -+ex_thread.so: $(srcdir)/examples/ex_thread.c -+ $(CC) $(CFLAGS) $(SHAREDFLAGS) $? -o $@ -+ex_tpcb.so: $(srcdir)/examples/ex_tpcb.c -+ $(CC) $(CFLAGS) $(SHAREDFLAGS) $? -o $@ -+ -+# DB files. -+db.so: $(srcdir)/db/db.c -+ $(CC) $(CFLAGS) $(SHAREDFLAGS) $? -o $@ -+db_am.so: $(srcdir)/db/db_am.c -+ $(CC) $(CFLAGS) $(SHAREDFLAGS) $? -o $@ -+db_auto.so: $(srcdir)/db/db_auto.c -+ $(CC) $(CFLAGS) $(SHAREDFLAGS) $? -o $@ -+db_conv.so: $(srcdir)/db/db_conv.c -+ $(CC) $(CFLAGS) $(SHAREDFLAGS) $? -o $@ -+db_dispatch.so: $(srcdir)/db/db_dispatch.c -+ $(CC) $(CFLAGS) $(SHAREDFLAGS) $? -o $@ -+db_dup.so: $(srcdir)/db/db_dup.c -+ $(CC) $(CFLAGS) $(SHAREDFLAGS) $? -o $@ -+db_iface.so: $(srcdir)/db/db_iface.c -+ $(CC) $(CFLAGS) $(SHAREDFLAGS) $? -o $@ -+db_join.so: $(srcdir)/db/db_join.c -+ $(CC) $(CFLAGS) $(SHAREDFLAGS) $? -o $@ -+db_overflow.so: $(srcdir)/db/db_overflow.c -+ $(CC) $(CFLAGS) $(SHAREDFLAGS) $? -o $@ -+db_pr.so: $(srcdir)/db/db_pr.c -+ $(CC) $(CFLAGS) $(SHAREDFLAGS) $? -o $@ -+db_rec.so: $(srcdir)/db/db_rec.c -+ $(CC) $(CFLAGS) $(SHAREDFLAGS) $? -o $@ -+db_ret.so: $(srcdir)/db/db_ret.c -+ $(CC) $(CFLAGS) $(SHAREDFLAGS) $? -o $@ -+ -+# Btree source files. -+bt_compare.so: $(srcdir)/btree/bt_compare.c -+ $(CC) $(CFLAGS) $(SHAREDFLAGS) $? -o $@ -+bt_conv.so: $(srcdir)/btree/bt_conv.c -+ $(CC) $(CFLAGS) $(SHAREDFLAGS) $? -o $@ -+bt_curadj.so: $(srcdir)/btree/bt_curadj.c -+ $(CC) $(CFLAGS) $(SHAREDFLAGS) $? -o $@ -+bt_cursor.so: $(srcdir)/btree/bt_cursor.c -+ $(CC) $(CFLAGS) $(SHAREDFLAGS) $? -o $@ -+bt_delete.so: $(srcdir)/btree/bt_delete.c -+ $(CC) $(CFLAGS) $(SHAREDFLAGS) $? -o $@ -+bt_open.so: $(srcdir)/btree/bt_open.c -+ $(CC) $(CFLAGS) $(SHAREDFLAGS) $? -o $@ -+bt_page.so: $(srcdir)/btree/bt_page.c -+ $(CC) $(CFLAGS) $(SHAREDFLAGS) $? -o $@ -+bt_put.so: $(srcdir)/btree/bt_put.c -+ $(CC) $(CFLAGS) $(SHAREDFLAGS) $? -o $@ -+bt_rec.so: $(srcdir)/btree/bt_rec.c -+ $(CC) $(CFLAGS) $(SHAREDFLAGS) $? -o $@ -+bt_recno.so: $(srcdir)/btree/bt_recno.c -+ $(CC) $(CFLAGS) $(SHAREDFLAGS) $? -o $@ -+bt_rsearch.so: $(srcdir)/btree/bt_rsearch.c -+ $(CC) $(CFLAGS) $(SHAREDFLAGS) $? -o $@ -+bt_search.so: $(srcdir)/btree/bt_search.c -+ $(CC) $(CFLAGS) $(SHAREDFLAGS) $? -o $@ -+bt_split.so: $(srcdir)/btree/bt_split.c -+ $(CC) $(CFLAGS) $(SHAREDFLAGS) $? -o $@ -+bt_stack.so: $(srcdir)/btree/bt_stack.c -+ $(CC) $(CFLAGS) $(SHAREDFLAGS) $? -o $@ -+bt_stat.so: $(srcdir)/btree/bt_stat.c -+ $(CC) $(CFLAGS) $(SHAREDFLAGS) $? -o $@ -+btree_auto.so: $(srcdir)/btree/btree_auto.c -+ $(CC) $(CFLAGS) $(SHAREDFLAGS) $? -o $@ -+ -+# C++ interface files. -+cxx_app.so: $(srcdir)/cxx/cxx_app.cpp -+ $(CXX) $(CXXFLAGS) $(SHAREDFLAGS) $? -o $@ -+cxx_except.so: $(srcdir)/cxx/cxx_except.cpp -+ $(CXX) $(CXXFLAGS) $(SHAREDFLAGS) $? -o $@ -+cxx_lock.so: $(srcdir)/cxx/cxx_lock.cpp -+ $(CXX) $(CXXFLAGS) $(SHAREDFLAGS) $? -o $@ -+cxx_log.so: $(srcdir)/cxx/cxx_log.cpp -+ $(CXX) $(CXXFLAGS) $(SHAREDFLAGS) $? -o $@ -+cxx_mpool.so: $(srcdir)/cxx/cxx_mpool.cpp -+ $(CXX) $(CXXFLAGS) $(SHAREDFLAGS) $? -o $@ -+cxx_table.so: $(srcdir)/cxx/cxx_table.cpp -+ $(CXX) $(CXXFLAGS) $(SHAREDFLAGS) $? -o $@ -+cxx_txn.so: $(srcdir)/cxx/cxx_txn.cpp -+ $(CXX) $(CXXFLAGS) $(SHAREDFLAGS) $? -o $@ -+ -+# Hash source files. -+hash_auto.so: $(srcdir)/hash/hash_auto.c -+ $(CC) $(CFLAGS) $(SHAREDFLAGS) $? -o $@ -+hash.so: $(srcdir)/hash/hash.c -+ $(CC) $(CFLAGS) $(SHAREDFLAGS) $? -o $@ -+hash_conv.so: $(srcdir)/hash/hash_conv.c -+ $(CC) $(CFLAGS) $(SHAREDFLAGS) $? -o $@ -+hash_dup.so: $(srcdir)/hash/hash_dup.c -+ $(CC) $(CFLAGS) $(SHAREDFLAGS) $? -o $@ -+hash_func.so: $(srcdir)/hash/hash_func.c -+ $(CC) $(CFLAGS) $(SHAREDFLAGS) $? -o $@ -+hash_page.so: $(srcdir)/hash/hash_page.c -+ $(CC) $(CFLAGS) $(SHAREDFLAGS) $? -o $@ -+hash_rec.so: $(srcdir)/hash/hash_rec.c -+ $(CC) $(CFLAGS) $(SHAREDFLAGS) $? -o $@ -+hash_stat.so: $(srcdir)/hash/hash_stat.c -+ $(CC) $(CFLAGS) $(SHAREDFLAGS) $? -o $@ -+ -+# Lock source files. -+lock.so: $(srcdir)/lock/lock.c -+ $(CC) $(CFLAGS) $(SHAREDFLAGS) $? -o $@ -+lock_conflict.so:$(srcdir)/lock/lock_conflict.c -+ $(CC) $(CFLAGS) $(SHAREDFLAGS) $? -o $@ -+lock_deadlock.so:$(srcdir)/lock/lock_deadlock.c -+ $(CC) $(CFLAGS) $(SHAREDFLAGS) $? -o $@ -+lock_region.so:$(srcdir)/lock/lock_region.c -+ $(CC) $(CFLAGS) $(SHAREDFLAGS) $? -o $@ -+lock_util.so:$(srcdir)/lock/lock_util.c -+ $(CC) $(CFLAGS) $(SHAREDFLAGS) $? -o $@ -+ -+# Log source files. -+log.so: $(srcdir)/log/log.c -+ $(CC) $(CFLAGS) $(SHAREDFLAGS) $? -o $@ -+log_archive.so: $(srcdir)/log/log_archive.c -+ $(CC) $(CFLAGS) $(SHAREDFLAGS) $? -o $@ -+log_auto.so: $(srcdir)/log/log_auto.c -+ $(CC) $(CFLAGS) $(SHAREDFLAGS) $? -o $@ -+log_compare.so: $(srcdir)/log/log_compare.c -+ $(CC) $(CFLAGS) $(SHAREDFLAGS) $? -o $@ -+log_findckp.so: $(srcdir)/log/log_findckp.c -+ $(CC) $(CFLAGS) $(SHAREDFLAGS) $? -o $@ -+log_get.so: $(srcdir)/log/log_get.c -+ $(CC) $(CFLAGS) $(SHAREDFLAGS) $? -o $@ -+log_put.so: $(srcdir)/log/log_put.c -+ $(CC) $(CFLAGS) $(SHAREDFLAGS) $? -o $@ -+log_rec.so: $(srcdir)/log/log_rec.c -+ $(CC) $(CFLAGS) $(SHAREDFLAGS) $? -o $@ -+log_register.so: $(srcdir)/log/log_register.c -+ $(CC) $(CFLAGS) $(SHAREDFLAGS) $? -o $@ -+ -+# Mpool source files. -+mp_bh.so: $(srcdir)/mp/mp_bh.c -+ $(CC) $(CFLAGS) $(SHAREDFLAGS) $? -o $@ -+mp_fget.so: $(srcdir)/mp/mp_fget.c -+ $(CC) $(CFLAGS) $(SHAREDFLAGS) $? -o $@ -+mp_fopen.so: $(srcdir)/mp/mp_fopen.c -+ $(CC) $(CFLAGS) $(SHAREDFLAGS) $? -o $@ -+mp_fput.so: $(srcdir)/mp/mp_fput.c -+ $(CC) $(CFLAGS) $(SHAREDFLAGS) $? -o $@ -+mp_fset.so: $(srcdir)/mp/mp_fset.c -+ $(CC) $(CFLAGS) $(SHAREDFLAGS) $? -o $@ -+mp_open.so: $(srcdir)/mp/mp_open.c -+ $(CC) $(CFLAGS) $(SHAREDFLAGS) $? -o $@ -+mp_pr.so: $(srcdir)/mp/mp_pr.c -+ $(CC) $(CFLAGS) $(SHAREDFLAGS) $? -o $@ -+mp_region.so: $(srcdir)/mp/mp_region.c -+ $(CC) $(CFLAGS) $(SHAREDFLAGS) $? -o $@ -+mp_sync.so: $(srcdir)/mp/mp_sync.c -+ $(CC) $(CFLAGS) $(SHAREDFLAGS) $? -o $@ -+ -+# Mutex source files. -+mutex.so: $(srcdir)/mutex/mutex.c -+ $(CC) $(CFLAGS) $(SHAREDFLAGS) $? -o $@ -+# XXX -+# UTS4 spinlocks -+uts4_cc.so: $(srcdir)/mutex/uts4_cc.s -+ $(AS) $(ASFLAGS) $(SHAREDFLAGS) -o $@ $? -o $@ -+ -+# Transaction source files. -+txn.so: $(srcdir)/txn/txn.c -+ $(CC) $(CFLAGS) $(SHAREDFLAGS) $? -o $@ -+txn_auto.so: $(srcdir)/txn/txn_auto.c -+ $(CC) $(CFLAGS) $(SHAREDFLAGS) $? -o $@ -+txn_rec.so: $(srcdir)/txn/txn_rec.c -+ $(CC) $(CFLAGS) $(SHAREDFLAGS) $? -o $@ -+ -+# XA source files. -+xa.so: $(srcdir)/xa/xa.c -+ $(CC) $(CFLAGS) $(SHAREDFLAGS) $? -o $@ -+xa_db.so: $(srcdir)/xa/xa_db.c -+ $(CC) $(CFLAGS) $(SHAREDFLAGS) $? -o $@ -+xa_map.so: $(srcdir)/xa/xa_map.c -+ $(CC) $(CFLAGS) $(SHAREDFLAGS) $? -o $@ -+ -+# Historic interfaces. -+hsearch.so: $(srcdir)/hsearch/hsearch.c -+ $(CC) $(CFLAGS) $(SHAREDFLAGS) $? -o $@ -+dbm.so: $(srcdir)/dbm/dbm.c -+ $(CC) $(CFLAGS) $(SHAREDFLAGS) $? -o $@ -+db185.so: $(srcdir)/db185/db185.c -+ $(CC) $(CFLAGS) $(SHAREDFLAGS) $? -o $@ -+ -+# Common source files. -+db_appinit.so: $(srcdir)/common/db_appinit.c -+ $(CC) $(CFLAGS) $(SHAREDFLAGS) $? -o $@ -+db_apprec.so: $(srcdir)/common/db_apprec.c -+ $(CC) $(CFLAGS) $(SHAREDFLAGS) $? -o $@ -+db_byteorder.so: $(srcdir)/common/db_byteorder.c -+ $(CC) $(CFLAGS) $(SHAREDFLAGS) $? -o $@ -+db_err.so: $(srcdir)/common/db_err.c -+ $(CC) $(CFLAGS) $(SHAREDFLAGS) $? -o $@ -+db_log2.so: $(srcdir)/common/db_log2.c -+ $(CC) $(CFLAGS) $(SHAREDFLAGS) $? -o $@ -+db_region.so: $(srcdir)/common/db_region.c -+ $(CC) $(CFLAGS) $(SHAREDFLAGS) $? -o $@ -+db_salloc.so: $(srcdir)/common/db_salloc.c -+ $(CC) $(CFLAGS) $(SHAREDFLAGS) $? -o $@ -+db_shash.so: $(srcdir)/common/db_shash.c -+ $(CC) $(CFLAGS) $(SHAREDFLAGS) $? -o $@ -+ -+# OS specific source files. -+os_abs.so: $(srcdir)/os/os_abs.c -+ $(CC) $(CFLAGS) $(SHAREDFLAGS) $? -o $@ -+os_alloc.so: $(srcdir)/os/os_alloc.c -+ $(CC) $(CFLAGS) $(SHAREDFLAGS) $? -o $@ -+os_config.so: $(srcdir)/os/os_config.c -+ $(CC) $(CFLAGS) $(SHAREDFLAGS) $? -o $@ -+os_dir.so: $(srcdir)/os/os_dir.c -+ $(CC) $(CFLAGS) $(SHAREDFLAGS) $? -o $@ -+os_fid.so: $(srcdir)/os/os_fid.c -+ $(CC) $(CFLAGS) $(SHAREDFLAGS) $? -o $@ -+os_fsync.so: $(srcdir)/os/os_fsync.c -+ $(CC) $(CFLAGS) $(SHAREDFLAGS) $? -o $@ -+os_map.so: $(srcdir)/os/os_map.c -+ $(CC) $(CFLAGS) $(SHAREDFLAGS) $? -o $@ -+os_oflags.so: $(srcdir)/os/os_oflags.c -+ $(CC) $(CFLAGS) $(SHAREDFLAGS) $? -o $@ -+os_open.so: $(srcdir)/os/os_open.c -+ $(CC) $(CFLAGS) $(SHAREDFLAGS) $? -o $@ -+os_rpath.so: $(srcdir)/os/os_rpath.c -+ $(CC) $(CFLAGS) $(SHAREDFLAGS) $? -o $@ -+os_rw.so: $(srcdir)/os/os_rw.c -+ $(CC) $(CFLAGS) $(SHAREDFLAGS) $? -o $@ -+os_seek.so: $(srcdir)/os/os_seek.c -+ $(CC) $(CFLAGS) $(SHAREDFLAGS) $? -o $@ -+os_sleep.so: $(srcdir)/os/os_sleep.c -+ $(CC) $(CFLAGS) $(SHAREDFLAGS) $? -o $@ -+os_spin.so: $(srcdir)/os/os_spin.c -+ $(CC) $(CFLAGS) $(SHAREDFLAGS) $? -o $@ -+os_stat.so: $(srcdir)/os/os_stat.c -+ $(CC) $(CFLAGS) $(SHAREDFLAGS) $? -o $@ -+os_tmpdir.so: $(srcdir)/os/os_tmpdir.c -+ $(CC) $(CFLAGS) $(SHAREDFLAGS) $? -o $@ -+os_unlink.so: $(srcdir)/os/os_unlink.c -+ $(CC) $(CFLAGS) $(SHAREDFLAGS) $? -o $@ -+ -+# Test programs. -+tclAppInit.so: $(srcdir)/test/tclAppInit.c -+ $(CC) $(CFLAGS) $(SHAREDFLAGS) $? -o $@ -+tcl_dbm.so: $(srcdir)/test/tcl_dbm.c -+ $(CC) $(CFLAGS) $(SHAREDFLAGS) $? -o $@ -+tcl_hsearch.so: $(srcdir)/test/tcl_hsearch.c -+ $(CC) $(CFLAGS) $(SHAREDFLAGS) $? -o $@ -+tcl_lock.so: $(srcdir)/test/tcl_lock.c -+ $(CC) $(CFLAGS) $(SHAREDFLAGS) $? -o $@ -+tcl_log.so: $(srcdir)/test/tcl_log.c -+ $(CC) $(CFLAGS) $(SHAREDFLAGS) $? -o $@ -+tcl_mpool.so: $(srcdir)/test/tcl_mpool.c -+ $(CC) $(CFLAGS) $(SHAREDFLAGS) $? -o $@ -+tcl_mutex.so: $(srcdir)/test/tcl_mutex.c -+ $(CC) $(CFLAGS) $(SHAREDFLAGS) $? -o $@ -+tcl_ndbm.so: $(srcdir)/test/tcl_ndbm.c -+ $(CC) $(CFLAGS) $(SHAREDFLAGS) $? -o $@ -+tcl_txn.so: $(srcdir)/test/tcl_txn.c -+ $(CC) $(CFLAGS) $(SHAREDFLAGS) $? -o $@ -+utils.so: $(srcdir)/test/utils.c -+ $(CC) $(CFLAGS) $(SHAREDFLAGS) $? -o $@ -+ -+# Replacement source files. -+err.so: $(srcdir)/clib/err.c -+ $(CC) $(CFLAGS) $(SHAREDFLAGS) $? -o $@ -+getcwd.so: $(srcdir)/clib/getcwd.c -+ $(CC) $(CFLAGS) $(SHAREDFLAGS) $? -o $@ -+getlong.so: $(srcdir)/clib/getlong.c -+ $(CC) $(CFLAGS) $(SHAREDFLAGS) $? -o $@ -+getopt.so: $(srcdir)/clib/getopt.c -+ $(CC) $(CFLAGS) $(SHAREDFLAGS) $? -o $@ -+memcmp.so: $(srcdir)/clib/memcmp.c -+ $(CC) $(CFLAGS) $(SHAREDFLAGS) $? -o $@ -+memcpy.so: $(srcdir)/clib/memmove.c -+ $(CC) -DMEMCOPY $(CFLAGS) $(SHAREDFLAGS) $? -o $@ -+memmove.so: $(srcdir)/clib/memmove.c -+ $(CC) -DMEMMOVE $(CFLAGS) $(SHAREDFLAGS) $? -o $@ -+raise.so: $(srcdir)/clib/raise.c -+ $(CC) $(CFLAGS) $(SHAREDFLAGS) $? -o $@ -+snprintf.so: $(srcdir)/clib/snprintf.c -+ $(CC) $(CFLAGS) $(SHAREDFLAGS) $? -o $@ -+strerror.so: $(srcdir)/clib/strerror.c -+ $(CC) $(CFLAGS) $(SHAREDFLAGS) $? -o $@ -+strsep.so: $(srcdir)/clib/strsep.c -+ $(CC) $(CFLAGS) $(SHAREDFLAGS) $? -o $@ -+vsnprintf.so: $(srcdir)/clib/vsnprintf.c -+ $(CC) $(CFLAGS) $(SHAREDFLAGS) $? -o $@ diff --git a/databases/db47/pkg-comment b/databases/db47/pkg-comment deleted file mode 100644 index 39a54a240320..000000000000 --- a/databases/db47/pkg-comment +++ /dev/null @@ -1 +0,0 @@ -The Berkeley DB package, revision 2 diff --git a/databases/db47/pkg-descr b/databases/db47/pkg-descr deleted file mode 100644 index b9ed34ee6d81..000000000000 --- a/databases/db47/pkg-descr +++ /dev/null @@ -1,13 +0,0 @@ -Revesion 2 of the Berkeley DB library. This version uses an incompatible -underlying database format than revision 1 and a different standard API. -Utilities are included in the distribution to convert v1.85 databases to v2 -databases, and a backwards compatible API is provided to maintain -compatibility with programs using the v1.85 interface. - -There are minor interface changes in this release which may require that DB -applications be modified and recompiled. For a complete discussion of -interface changes, see: - -http://www.sleepycat.com/update/ - -WWW: http://www.sleepycat.com diff --git a/databases/db47/pkg-plist b/databases/db47/pkg-plist deleted file mode 100644 index 961bc047a6e4..000000000000 --- a/databases/db47/pkg-plist +++ /dev/null @@ -1,564 +0,0 @@ -include/db2/db.h -include/db2/db_cxx.h -include/db2/db_185.h -lib/libdb2.a -lib/libdb2.so -lib/libdb2.so.0 -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 -share/doc/db2/api_c/Db/close.html -share/doc/db2/api_c/Db/cursor.html -share/doc/db2/api_c/Db/del.html -share/doc/db2/api_c/Db/fd.html -share/doc/db2/api_c/Db/get.html -share/doc/db2/api_c/Db/join.html -share/doc/db2/api_c/Db/open.html -share/doc/db2/api_c/Db/put.html -share/doc/db2/api_c/Db/stat.html -share/doc/db2/api_c/Db/sync.html -share/doc/db2/api_c/DbEnv/appexit.html -share/doc/db2/api_c/DbEnv/appinit.html -share/doc/db2/api_c/DbEnv/env.html -share/doc/db2/api_c/DbEnv/version.html -share/doc/db2/api_c/DbInfo/info.html -share/doc/db2/api_c/DbLock/put.html -share/doc/db2/api_c/DbLockTab/close.html -share/doc/db2/api_c/DbLockTab/detect.html -share/doc/db2/api_c/DbLockTab/get.html -share/doc/db2/api_c/DbLockTab/id.html -share/doc/db2/api_c/DbLockTab/open.html -share/doc/db2/api_c/DbLockTab/stat.html -share/doc/db2/api_c/DbLockTab/unlink.html -share/doc/db2/api_c/DbLockTab/vec.html -share/doc/db2/api_c/DbLog/archive.html -share/doc/db2/api_c/DbLog/close.html -share/doc/db2/api_c/DbLog/compare.html -share/doc/db2/api_c/DbLog/db_register.html -share/doc/db2/api_c/DbLog/db_unregister.html -share/doc/db2/api_c/DbLog/file.html -share/doc/db2/api_c/DbLog/flush.html -share/doc/db2/api_c/DbLog/get.html -share/doc/db2/api_c/DbLog/lsn.html -share/doc/db2/api_c/DbLog/open.html -share/doc/db2/api_c/DbLog/put.html -share/doc/db2/api_c/DbLog/stat.html -share/doc/db2/api_c/DbLog/unlink.html -share/doc/db2/api_c/DbMpool/close.html -share/doc/db2/api_c/DbMpool/db_register.html -share/doc/db2/api_c/DbMpool/open.html -share/doc/db2/api_c/DbMpool/stat.html -share/doc/db2/api_c/DbMpool/sync.html -share/doc/db2/api_c/DbMpool/trickle.html -share/doc/db2/api_c/DbMpool/unlink.html -share/doc/db2/api_c/DbMpoolFile/close.html -share/doc/db2/api_c/DbMpoolFile/get.html -share/doc/db2/api_c/DbMpoolFile/open.html -share/doc/db2/api_c/DbMpoolFile/put.html -share/doc/db2/api_c/DbMpoolFile/set.html -share/doc/db2/api_c/DbMpoolFile/sync.html -share/doc/db2/api_c/DbTxn/abort.html -share/doc/db2/api_c/DbTxn/commit.html -share/doc/db2/api_c/DbTxn/id.html -share/doc/db2/api_c/DbTxn/prepare.html -share/doc/db2/api_c/DbTxnMgr/begin.html -share/doc/db2/api_c/DbTxnMgr/checkpoint.html -share/doc/db2/api_c/DbTxnMgr/close.html -share/doc/db2/api_c/DbTxnMgr/open.html -share/doc/db2/api_c/DbTxnMgr/stat.html -share/doc/db2/api_c/DbTxnMgr/unlink.html -share/doc/db2/api_c/Dbc/close.html -share/doc/db2/api_c/Dbc/del.html -share/doc/db2/api_c/Dbc/get.html -share/doc/db2/api_c/Dbc/put.html -share/doc/db2/api_c/Dbt/dbt.html -share/doc/db2/api_c/historic/dbm.html -share/doc/db2/api_c/historic/hsearch.html -share/doc/db2/api_c/index/flags.html -share/doc/db2/api_c/index/function.html -share/doc/db2/api_c/index/structure.html -share/doc/db2/api_c/internal/db_jump_set.html -share/doc/db2/api_c/internal/db_value_set.html -share/doc/db2/api_cxx/Db/class.html -share/doc/db2/api_cxx/Db/close.html -share/doc/db2/api_cxx/Db/cursor.html -share/doc/db2/api_cxx/Db/del.html -share/doc/db2/api_cxx/Db/fd.html -share/doc/db2/api_cxx/Db/get.html -share/doc/db2/api_cxx/Db/get_byteswapped.html -share/doc/db2/api_cxx/Db/get_type.html -share/doc/db2/api_cxx/Db/join.html -share/doc/db2/api_cxx/Db/open.html -share/doc/db2/api_cxx/Db/put.html -share/doc/db2/api_cxx/Db/stat.html -share/doc/db2/api_cxx/Db/sync.html -share/doc/db2/api_cxx/DbEnv/appexit.html -share/doc/db2/api_cxx/DbEnv/appinit.html -share/doc/db2/api_cxx/DbEnv/class.html -share/doc/db2/api_cxx/DbEnv/get_lg_info.html -share/doc/db2/api_cxx/DbEnv/get_lk_info.html -share/doc/db2/api_cxx/DbEnv/get_mp_info.html -share/doc/db2/api_cxx/DbEnv/get_tx_info.html -share/doc/db2/api_cxx/DbEnv/set_errcall.html -share/doc/db2/api_cxx/DbEnv/set_errfile.html -share/doc/db2/api_cxx/DbEnv/set_error_model.html -share/doc/db2/api_cxx/DbEnv/set_error_stream.html -share/doc/db2/api_cxx/DbEnv/set_errpfx.html -share/doc/db2/api_cxx/DbEnv/set_lg_max.html -share/doc/db2/api_cxx/DbEnv/set_lk_conflicts.html -share/doc/db2/api_cxx/DbEnv/set_lk_detect.html -share/doc/db2/api_cxx/DbEnv/set_lk_max.html -share/doc/db2/api_cxx/DbEnv/set_lk_modes.html -share/doc/db2/api_cxx/DbEnv/set_lorder.html -share/doc/db2/api_cxx/DbEnv/set_mp_mmapsize.html -share/doc/db2/api_cxx/DbEnv/set_mp_size.html -share/doc/db2/api_cxx/DbEnv/set_tx_max.html -share/doc/db2/api_cxx/DbEnv/set_tx_recover.html -share/doc/db2/api_cxx/DbEnv/set_verbose.html -share/doc/db2/api_cxx/DbEnv/version.html -share/doc/db2/api_cxx/DbException/class.html -share/doc/db2/api_cxx/DbException/get_errno.html -share/doc/db2/api_cxx/DbException/what.html -share/doc/db2/api_cxx/DbInfo/class.html -share/doc/db2/api_cxx/DbInfo/set_bt_compare.html -share/doc/db2/api_cxx/DbInfo/set_bt_maxkey.html -share/doc/db2/api_cxx/DbInfo/set_bt_minkey.html -share/doc/db2/api_cxx/DbInfo/set_bt_prefix.html -share/doc/db2/api_cxx/DbInfo/set_cachesize.html -share/doc/db2/api_cxx/DbInfo/set_compare.html -share/doc/db2/api_cxx/DbInfo/set_flags.html -share/doc/db2/api_cxx/DbInfo/set_h_ffactor.html -share/doc/db2/api_cxx/DbInfo/set_h_hash.html -share/doc/db2/api_cxx/DbInfo/set_h_nelem.html -share/doc/db2/api_cxx/DbInfo/set_lorder.html -share/doc/db2/api_cxx/DbInfo/set_malloc.html -share/doc/db2/api_cxx/DbInfo/set_pagesize.html -share/doc/db2/api_cxx/DbInfo/set_re_delim.html -share/doc/db2/api_cxx/DbInfo/set_re_len.html -share/doc/db2/api_cxx/DbInfo/set_re_pad.html -share/doc/db2/api_cxx/DbInfo/set_re_source.html -share/doc/db2/api_cxx/DbLock/class.html -share/doc/db2/api_cxx/DbLock/put.html -share/doc/db2/api_cxx/DbLockTab/class.html -share/doc/db2/api_cxx/DbLockTab/close.html -share/doc/db2/api_cxx/DbLockTab/detect.html -share/doc/db2/api_cxx/DbLockTab/get.html -share/doc/db2/api_cxx/DbLockTab/id.html -share/doc/db2/api_cxx/DbLockTab/open.html -share/doc/db2/api_cxx/DbLockTab/stat.html -share/doc/db2/api_cxx/DbLockTab/unlink.html -share/doc/db2/api_cxx/DbLockTab/vec.html -share/doc/db2/api_cxx/DbLog/archive.html -share/doc/db2/api_cxx/DbLog/class.html -share/doc/db2/api_cxx/DbLog/close.html -share/doc/db2/api_cxx/DbLog/compare.html -share/doc/db2/api_cxx/DbLog/db_register.html -share/doc/db2/api_cxx/DbLog/db_unregister.html -share/doc/db2/api_cxx/DbLog/file.html -share/doc/db2/api_cxx/DbLog/flush.html -share/doc/db2/api_cxx/DbLog/get.html -share/doc/db2/api_cxx/DbLog/open.html -share/doc/db2/api_cxx/DbLog/put.html -share/doc/db2/api_cxx/DbLog/stat.html -share/doc/db2/api_cxx/DbLog/unlink.html -share/doc/db2/api_cxx/DbLsn/class.html -share/doc/db2/api_cxx/DbMpool/class.html -share/doc/db2/api_cxx/DbMpool/close.html -share/doc/db2/api_cxx/DbMpool/db_register.html -share/doc/db2/api_cxx/DbMpool/open.html -share/doc/db2/api_cxx/DbMpool/stat.html -share/doc/db2/api_cxx/DbMpool/sync.html -share/doc/db2/api_cxx/DbMpool/trickle.html -share/doc/db2/api_cxx/DbMpool/unlink.html -share/doc/db2/api_cxx/DbMpoolFile/class.html -share/doc/db2/api_cxx/DbMpoolFile/close.html -share/doc/db2/api_cxx/DbMpoolFile/get.html -share/doc/db2/api_cxx/DbMpoolFile/open.html -share/doc/db2/api_cxx/DbMpoolFile/put.html -share/doc/db2/api_cxx/DbMpoolFile/set.html -share/doc/db2/api_cxx/DbMpoolFile/sync.html -share/doc/db2/api_cxx/DbTxn/abort.html -share/doc/db2/api_cxx/DbTxn/class.html -share/doc/db2/api_cxx/DbTxn/commit.html -share/doc/db2/api_cxx/DbTxn/id.html -share/doc/db2/api_cxx/DbTxn/prepare.html -share/doc/db2/api_cxx/DbTxnMgr/begin.html -share/doc/db2/api_cxx/DbTxnMgr/checkpoint.html -share/doc/db2/api_cxx/DbTxnMgr/class.html -share/doc/db2/api_cxx/DbTxnMgr/close.html -share/doc/db2/api_cxx/DbTxnMgr/open.html -share/doc/db2/api_cxx/DbTxnMgr/stat.html -share/doc/db2/api_cxx/DbTxnMgr/unlink.html -share/doc/db2/api_cxx/Dbc/class.html -share/doc/db2/api_cxx/Dbc/close.html -share/doc/db2/api_cxx/Dbc/del.html -share/doc/db2/api_cxx/Dbc/get.html -share/doc/db2/api_cxx/Dbc/put.html -share/doc/db2/api_cxx/Dbt/class.html -share/doc/db2/api_cxx/index/class.html -share/doc/db2/api_java/Db/class.html -share/doc/db2/api_java/Db/close.html -share/doc/db2/api_java/Db/cursor.html -share/doc/db2/api_java/Db/del.html -share/doc/db2/api_java/Db/fd.html -share/doc/db2/api_java/Db/get.html -share/doc/db2/api_java/Db/get_byteswapped.html -share/doc/db2/api_java/Db/get_type.html -share/doc/db2/api_java/Db/join.html -share/doc/db2/api_java/Db/open.html -share/doc/db2/api_java/Db/put.html -share/doc/db2/api_java/Db/stat.html -share/doc/db2/api_java/Db/sync.html -share/doc/db2/api_java/DbEnv/appexit.html -share/doc/db2/api_java/DbEnv/appinit.html -share/doc/db2/api_java/DbEnv/class.html -share/doc/db2/api_java/DbEnv/get_lg_info.html -share/doc/db2/api_java/DbEnv/get_lk_info.html -share/doc/db2/api_java/DbEnv/get_mp_info.html -share/doc/db2/api_java/DbEnv/get_tx_info.html -share/doc/db2/api_java/DbEnv/set_errcall.html -share/doc/db2/api_java/DbEnv/set_error_stream.html -share/doc/db2/api_java/DbEnv/set_errpfx.html -share/doc/db2/api_java/DbEnv/set_lg_max.html -share/doc/db2/api_java/DbEnv/set_lk_conflicts.html -share/doc/db2/api_java/DbEnv/set_lk_detect.html -share/doc/db2/api_java/DbEnv/set_lk_max.html -share/doc/db2/api_java/DbEnv/set_lk_modes.html -share/doc/db2/api_java/DbEnv/set_lorder.html -share/doc/db2/api_java/DbEnv/set_mp_mmapsize.html -share/doc/db2/api_java/DbEnv/set_mp_size.html -share/doc/db2/api_java/DbEnv/set_tx_max.html -share/doc/db2/api_java/DbEnv/set_verbose.html -share/doc/db2/api_java/DbEnv/version.html -share/doc/db2/api_java/DbException/class.html -share/doc/db2/api_java/DbException/get_errno.html -share/doc/db2/api_java/DbInfo/class.html -share/doc/db2/api_java/DbInfo/set_bt_compare.html -share/doc/db2/api_java/DbInfo/set_bt_maxkey.html -share/doc/db2/api_java/DbInfo/set_bt_minkey.html -share/doc/db2/api_java/DbInfo/set_bt_prefix.html -share/doc/db2/api_java/DbInfo/set_cachesize.html -share/doc/db2/api_java/DbInfo/set_compare.html -share/doc/db2/api_java/DbInfo/set_flags.html -share/doc/db2/api_java/DbInfo/set_h_ffactor.html -share/doc/db2/api_java/DbInfo/set_h_hash.html -share/doc/db2/api_java/DbInfo/set_h_nelem.html -share/doc/db2/api_java/DbInfo/set_lorder.html -share/doc/db2/api_java/DbInfo/set_malloc.html -share/doc/db2/api_java/DbInfo/set_pagesize.html -share/doc/db2/api_java/DbInfo/set_re_delim.html -share/doc/db2/api_java/DbInfo/set_re_len.html -share/doc/db2/api_java/DbInfo/set_re_pad.html -share/doc/db2/api_java/DbInfo/set_re_source.html -share/doc/db2/api_java/DbLock/class.html -share/doc/db2/api_java/DbLock/put.html -share/doc/db2/api_java/DbLockTab/class.html -share/doc/db2/api_java/DbLockTab/close.html -share/doc/db2/api_java/DbLockTab/detect.html -share/doc/db2/api_java/DbLockTab/get.html -share/doc/db2/api_java/DbLockTab/id.html -share/doc/db2/api_java/DbLockTab/open.html -share/doc/db2/api_java/DbLockTab/stat.html -share/doc/db2/api_java/DbLockTab/unlink.html -share/doc/db2/api_java/DbLockTab/vec.html -share/doc/db2/api_java/DbLog/archive.html -share/doc/db2/api_java/DbLog/class.html -share/doc/db2/api_java/DbLog/close.html -share/doc/db2/api_java/DbLog/compare.html -share/doc/db2/api_java/DbLog/db_register.html -share/doc/db2/api_java/DbLog/db_unregister.html -share/doc/db2/api_java/DbLog/file.html -share/doc/db2/api_java/DbLog/flush.html -share/doc/db2/api_java/DbLog/get.html -share/doc/db2/api_java/DbLog/open.html -share/doc/db2/api_java/DbLog/put.html -share/doc/db2/api_java/DbLog/stat.html -share/doc/db2/api_java/DbLog/unlink.html -share/doc/db2/api_java/DbLsn/class.html -share/doc/db2/api_java/DbMpool/class.html -share/doc/db2/api_java/DbMpool/close.html -share/doc/db2/api_java/DbMpool/db_register.html -share/doc/db2/api_java/DbMpool/open.html -share/doc/db2/api_java/DbMpool/stat.html -share/doc/db2/api_java/DbMpool/sync.html -share/doc/db2/api_java/DbMpool/trickle.html -share/doc/db2/api_java/DbMpool/unlink.html -share/doc/db2/api_java/DbMpoolFile/class.html -share/doc/db2/api_java/DbMpoolFile/close.html -share/doc/db2/api_java/DbMpoolFile/get.html -share/doc/db2/api_java/DbMpoolFile/open.html -share/doc/db2/api_java/DbMpoolFile/put.html -share/doc/db2/api_java/DbMpoolFile/set.html -share/doc/db2/api_java/DbMpoolFile/sync.html -share/doc/db2/api_java/DbRunRecoveryException/class.html -share/doc/db2/api_java/DbTxn/abort.html -share/doc/db2/api_java/DbTxn/class.html -share/doc/db2/api_java/DbTxn/commit.html -share/doc/db2/api_java/DbTxn/id.html -share/doc/db2/api_java/DbTxn/prepare.html -share/doc/db2/api_java/DbTxnMgr/begin.html -share/doc/db2/api_java/DbTxnMgr/checkpoint.html -share/doc/db2/api_java/DbTxnMgr/class.html -share/doc/db2/api_java/DbTxnMgr/close.html -share/doc/db2/api_java/DbTxnMgr/open.html -share/doc/db2/api_java/DbTxnMgr/stat.html -share/doc/db2/api_java/DbTxnMgr/unlink.html -share/doc/db2/api_java/Dbc/class.html -share/doc/db2/api_java/Dbc/close.html -share/doc/db2/api_java/Dbc/del.html -share/doc/db2/api_java/Dbc/get.html -share/doc/db2/api_java/Dbc/put.html -share/doc/db2/api_java/Dbt/class.html -share/doc/db2/api_java/index/class.html -share/doc/db2/build/java.html -share/doc/db2/build/shared.html -share/doc/db2/build/shared_gcc.html -share/doc/db2/build/shared_hp.html -share/doc/db2/build/unix.html -share/doc/db2/build/unix_faq.html -share/doc/db2/build/win16.html -share/doc/db2/build/win32.html -share/doc/db2/build/win_faq.html -share/doc/db2/distrib/layout.html -share/doc/db2/images/folder.gif -share/doc/db2/images/folder_open.gif -share/doc/db2/images/next.gif -share/doc/db2/images/prev.gif -share/doc/db2/images/ps.gif -share/doc/db2/images/sleepycat.gif -share/doc/db2/images/toc.gif -share/doc/db2/index.html -share/doc/db2/packages/hash_usenix.ps -share/doc/db2/packages/index.html -share/doc/db2/packages/libtp_usenix.ps -share/doc/db2/packages/witold.html -share/doc/db2/ref/am/bt_compare.html -share/doc/db2/ref/am/bt_dup.html -share/doc/db2/ref/am/bt_maxkey.html -share/doc/db2/ref/am/bt_minkey.html -share/doc/db2/ref/am/bt_prefix.html -share/doc/db2/ref/am/bt_recnum.html -share/doc/db2/ref/am/byteorder.html -share/doc/db2/ref/am/cachesize.html -share/doc/db2/ref/am/close.html -share/doc/db2/ref/am/compare.html -share/doc/db2/ref/am/curclose.html -share/doc/db2/ref/am/curdel.html -share/doc/db2/ref/am/curget.html -share/doc/db2/ref/am/curput.html -share/doc/db2/ref/am/cursor.html -share/doc/db2/ref/am/delete.html -share/doc/db2/ref/am/get.html -share/doc/db2/ref/am/h_dup.html -share/doc/db2/ref/am/h_ffactor.html -share/doc/db2/ref/am/h_hash.html -share/doc/db2/ref/am/h_nelem.html -share/doc/db2/ref/am/intro.html -share/doc/db2/ref/am/join.html -share/doc/db2/ref/am/logrec.html -share/doc/db2/ref/am/malloc.html -share/doc/db2/ref/am/ops.html -share/doc/db2/ref/am/pagesize.html -share/doc/db2/ref/am/partial.html -share/doc/db2/ref/am/put.html -share/doc/db2/ref/am/re_delim.html -share/doc/db2/ref/am/re_len.html -share/doc/db2/ref/am/re_pad.html -share/doc/db2/ref/am/re_source.html -share/doc/db2/ref/am/renumber.html -share/doc/db2/ref/am/select.html -share/doc/db2/ref/am/stat.html -share/doc/db2/ref/am/sync.html -share/doc/db2/ref/arch/apis.html -share/doc/db2/ref/arch/bigpic.gif -share/doc/db2/ref/arch/bigpic.html -share/doc/db2/ref/arch/env.html -share/doc/db2/ref/arch/extending.html -share/doc/db2/ref/arch/progmodel.html -share/doc/db2/ref/arch/script.html -share/doc/db2/ref/arch/smallpic.gif -share/doc/db2/ref/arch/subsystem.html -share/doc/db2/ref/arch/utilities.html -share/doc/db2/ref/cam/intro.html -share/doc/db2/ref/debug/runtime.html -share/doc/db2/ref/dumpload/format.html -share/doc/db2/ref/dumpload/text.html -share/doc/db2/ref/dumpload/utility.html -share/doc/db2/ref/env/create.html -share/doc/db2/ref/env/naming.html -share/doc/db2/ref/env/open.html -share/doc/db2/ref/env/region.html -share/doc/db2/ref/env/security.html -share/doc/db2/ref/install/file.html -share/doc/db2/ref/install/magic.s5.be.txt -share/doc/db2/ref/install/magic.s5.le.txt -share/doc/db2/ref/install/magic.txt -share/doc/db2/ref/intro/distrib.html -share/doc/db2/ref/intro/do.html -share/doc/db2/ref/intro/what.html -share/doc/db2/ref/intro/where.html -share/doc/db2/ref/lock/stdmode.html -share/doc/db2/ref/log/config.html -share/doc/db2/ref/log/intro.html -share/doc/db2/ref/log/limits.html -share/doc/db2/ref/mp/config.html -share/doc/db2/ref/mp/intro.html -share/doc/db2/ref/perl/intro.html -share/doc/db2/ref/program/appsignals.html -share/doc/db2/ref/program/byteorder.html -share/doc/db2/ref/program/compatible.html -share/doc/db2/ref/program/convert.html -share/doc/db2/ref/program/dbsizes.html -share/doc/db2/ref/program/environ.html -share/doc/db2/ref/program/errorret.html -share/doc/db2/ref/program/java.html -share/doc/db2/ref/program/runtime.html -share/doc/db2/ref/program/solaris.txt -share/doc/db2/ref/program/thread.html -share/doc/db2/ref/program/version.html -share/doc/db2/ref/sendmail/intro.html -share/doc/db2/ref/simple_tut/close.html -share/doc/db2/ref/simple_tut/del.html -share/doc/db2/ref/simple_tut/errors.html -share/doc/db2/ref/simple_tut/example.txt -share/doc/db2/ref/simple_tut/get.html -share/doc/db2/ref/simple_tut/intro.html -share/doc/db2/ref/simple_tut/keydata.html -share/doc/db2/ref/simple_tut/open.html -share/doc/db2/ref/simple_tut/put.html -share/doc/db2/ref/toc.html -share/doc/db2/ref/transapp/admin.html -share/doc/db2/ref/transapp/apps.html -share/doc/db2/ref/transapp/archival.html -share/doc/db2/ref/transapp/checkpoint.html -share/doc/db2/ref/transapp/deadlock.html -share/doc/db2/ref/transapp/filesys.html -share/doc/db2/ref/transapp/intro.html -share/doc/db2/ref/transapp/recovery.html -share/doc/db2/ref/transapp/throughput.html -share/doc/db2/ref/transapp/writetest.txt -share/doc/db2/ref/txn/config.html -share/doc/db2/ref/txn/limits.html -share/doc/db2/ref/txn/other.html -share/doc/db2/ref/txn/stability.html -share/doc/db2/sleepycat/contact.html -share/doc/db2/sleepycat/products.html -share/doc/db2/test/build.html -share/doc/db2/test/build_faq.html -share/doc/db2/test/debug.html -share/doc/db2/test/run.html -share/doc/db2/utility/db_archive.html -share/doc/db2/utility/db_checkpoint.html -share/doc/db2/utility/db_deadlock.html -share/doc/db2/utility/db_dump.html -share/doc/db2/utility/db_load.html -share/doc/db2/utility/db_recover.html -share/doc/db2/utility/db_stat.html -share/doc/db2/utility/index.html -share/examples/db2/examples/README -share/examples/db2/examples/ex_access.c -share/examples/db2/examples/ex_appinit.c -share/examples/db2/examples/ex_btrec.c -share/examples/db2/examples/ex_lock.c -share/examples/db2/examples/ex_mpool.c -share/examples/db2/examples/ex_thread.c -share/examples/db2/examples/ex_tpcb.c -share/examples/db2/examples/ex_tpcb.h -share/examples/db2/examples_cxx/AccessExample.cpp -share/examples/db2/examples_cxx/AppinitExample.cpp -share/examples/db2/examples_cxx/LockExample.cpp -share/examples/db2/examples_cxx/MpoolExample.cpp -share/examples/db2/examples_cxx/TpcbExample.cpp -share/examples/db2/examples_java/AccessExample.java -share/examples/db2/examples_java/AppinitExample.java -share/examples/db2/examples_java/LockExample.java -share/examples/db2/examples_java/TpcbExample.java -@dirrm include/db2 -@dirrm share/examples/db2/examples -@dirrm share/examples/db2/examples_cxx -@dirrm share/examples/db2/examples_java -@dirrm share/examples/db2 -@dirrm share/doc/db2/api_c/DbTxn -@dirrm share/doc/db2/api_c/DbEnv -@dirrm share/doc/db2/api_c/DbInfo -@dirrm share/doc/db2/api_c/DbLock -@dirrm share/doc/db2/api_c/DbLockTab -@dirrm share/doc/db2/api_c/DbLog -@dirrm share/doc/db2/api_c/DbMpool -@dirrm share/doc/db2/api_c/DbMpoolFile -@dirrm share/doc/db2/api_c/Db -@dirrm share/doc/db2/api_c/DbTxnMgr -@dirrm share/doc/db2/api_c/Dbc -@dirrm share/doc/db2/api_c/Dbt -@dirrm share/doc/db2/api_c/historic -@dirrm share/doc/db2/api_c/index -@dirrm share/doc/db2/api_c/internal -@dirrm share/doc/db2/api_c/special -@dirrm share/doc/db2/api_c -@dirrm share/doc/db2/test -@dirrm share/doc/db2/sleepycat -@dirrm share/doc/db2/ref/txn -@dirrm share/doc/db2/ref/am -@dirrm share/doc/db2/ref/arch -@dirrm share/doc/db2/ref/cam -@dirrm share/doc/db2/ref/debug -@dirrm share/doc/db2/ref/dumpload -@dirrm share/doc/db2/ref/env -@dirrm share/doc/db2/ref/intro -@dirrm share/doc/db2/ref/install -@dirrm share/doc/db2/ref/lock -@dirrm share/doc/db2/ref/log -@dirrm share/doc/db2/ref/mp -@dirrm share/doc/db2/ref/perl -@dirrm share/doc/db2/ref/program -@dirrm share/doc/db2/ref/sendmail -@dirrm share/doc/db2/ref/simple_tut -@dirrm share/doc/db2/ref/transapp -@dirrm share/doc/db2/ref -@dirrm share/doc/db2/packages -@dirrm share/doc/db2/api_cxx/DbLsn -@dirrm share/doc/db2/api_cxx/Dbc -@dirrm share/doc/db2/api_cxx/DbEnv -@dirrm share/doc/db2/api_cxx/DbException -@dirrm share/doc/db2/api_cxx/DbInfo -@dirrm share/doc/db2/api_cxx/DbLock -@dirrm share/doc/db2/api_cxx/DbLockTab -@dirrm share/doc/db2/api_cxx/DbLog -@dirrm share/doc/db2/api_cxx/Db -@dirrm share/doc/db2/api_cxx/DbMpool -@dirrm share/doc/db2/api_cxx/DbMpoolFile -@dirrm share/doc/db2/api_cxx/DbTxn -@dirrm share/doc/db2/api_cxx/DbTxnMgr -@dirrm share/doc/db2/api_cxx/Dbt -@dirrm share/doc/db2/api_cxx/index -@dirrm share/doc/db2/api_cxx/special -@dirrm share/doc/db2/api_cxx -@dirrm share/doc/db2/utility -@dirrm share/doc/db2/distrib -@dirrm share/doc/db2/build -@dirrm share/doc/db2/api_java/DbMpool -@dirrm share/doc/db2/api_java/DbEnv -@dirrm share/doc/db2/api_java/DbException -@dirrm share/doc/db2/api_java/DbInfo -@dirrm share/doc/db2/api_java/DbLock -@dirrm share/doc/db2/api_java/DbLockTab -@dirrm share/doc/db2/api_java/DbLog -@dirrm share/doc/db2/api_java/DbLsn -@dirrm share/doc/db2/api_java/Db -@dirrm share/doc/db2/api_java/DbMpoolFile -@dirrm share/doc/db2/api_java/DbRunRecoveryException -@dirrm share/doc/db2/api_java/DbTxn -@dirrm share/doc/db2/api_java/DbTxnMgr -@dirrm share/doc/db2/api_java/Dbc -@dirrm share/doc/db2/api_java/Dbt -@dirrm share/doc/db2/api_java/index -@dirrm share/doc/db2/api_java/special -@dirrm share/doc/db2/api_java -@dirrm share/doc/db2/images -@dirrm share/doc/db2 diff --git a/databases/freetds-devel/Makefile b/databases/freetds-devel/Makefile deleted file mode 100644 index f14b40bae009..000000000000 --- a/databases/freetds-devel/Makefile +++ /dev/null @@ -1,25 +0,0 @@ -# New ports collection makefile for: freetds -# Date created: 02 Nov 1999 -# Whom: Domas Mituzas <midom@dammit.lt> -# -# $FreeBSD$ - -PORTNAME= freetds -PORTVERSION= 0.50 -CATEGORIES= databases -MASTER_SITES= ${MASTER_SITE_SUNSITE} -MASTER_SITE_SUBDIR= ALPHA/freetds -EXTRACT_SUFX= .tgz - -MAINTAINER= midom@dammit.lt - -WRKSRC= ${WRKDIR}/freetds - -USE_LIBTOOL= yes -INSTALLS_SHLIB= yes -CONFIGURE_ARGS= --prefix=${PREFIX} \ - --with-tdsver=7.0 \ - --enable-dbmfix -USE_GMAKE= yes - -.include <bsd.port.mk> diff --git a/databases/freetds-devel/distinfo b/databases/freetds-devel/distinfo deleted file mode 100644 index e693a127a141..000000000000 --- a/databases/freetds-devel/distinfo +++ /dev/null @@ -1 +0,0 @@ -MD5 (freetds-0.50.tgz) = 06bfb775de2b903fd43163b102cbd16b diff --git a/databases/freetds-devel/files/patch-aa b/databases/freetds-devel/files/patch-aa deleted file mode 100644 index 4c85ae913973..000000000000 --- a/databases/freetds-devel/files/patch-aa +++ /dev/null @@ -1,11 +0,0 @@ ---- Makefile.in.orig Sun Dec 5 07:14:52 1999 -+++ Makefile.in Mon Dec 13 11:54:52 1999 -@@ -77,7 +77,7 @@ - EXTRA_DIST = interfaces src/tds/client.42_1 src/tds/client.42_2 - - --DEFDIR = $(prefix) -+DEFDIR = $(prefix)/etc/freetds - ACLOCAL_M4 = $(top_srcdir)/aclocal.m4 - mkinstalldirs = $(SHELL) $(top_srcdir)/mkinstalldirs - CONFIG_CLEAN_FILES = diff --git a/databases/freetds-devel/files/patch-ab b/databases/freetds-devel/files/patch-ab deleted file mode 100644 index 35fbc5bbf206..000000000000 --- a/databases/freetds-devel/files/patch-ab +++ /dev/null @@ -1,11 +0,0 @@ ---- src/tds/util.c.orig Thu Nov 11 19:15:05 1999 -+++ src/tds/util.c Thu Dec 23 09:54:13 1999 -@@ -267,7 +267,7 @@ - char *sybase = getenv("SYBASE"); - if (sybase!=NULL && sybase[0]!='\0') - { -- search_interface_file(sybase, "interfaces", server, ip_addr, ip_port); -+ search_interface_file(sybase, "etc/freetds/interfaces", server, ip_addr, ip_port); - } - } - diff --git a/databases/freetds-devel/files/patch-ac b/databases/freetds-devel/files/patch-ac deleted file mode 100644 index 717994fa4841..000000000000 --- a/databases/freetds-devel/files/patch-ac +++ /dev/null @@ -1,14 +0,0 @@ ---- include/sybdb.h.orig Mon Nov 8 06:10:27 1999 -+++ include/sybdb.h Wed Mar 1 20:45:55 2000 -@@ -286,6 +286,11 @@ - extern RETCODE DBSETLUSER(LOGINREC *login, char *username); - extern RETCODE DBSETLHOST(LOGINREC *login, char *hostname); - extern RETCODE DBSETLAPP(LOGINREC *login, char *application); -+ -+#ifndef DBMFIX -+#define DBMFIX -+#endif -+ - #ifdef DBMFIX - extern DBPROCESS *tdsdbopen(LOGINREC *login,char *server); - #else diff --git a/databases/freetds-devel/pkg-comment b/databases/freetds-devel/pkg-comment deleted file mode 100644 index 93cb6f96b6d3..000000000000 --- a/databases/freetds-devel/pkg-comment +++ /dev/null @@ -1 +0,0 @@ -Sybase/Microsoft TDS protocol library diff --git a/databases/freetds-devel/pkg-descr b/databases/freetds-devel/pkg-descr deleted file mode 100644 index d854c2a9e423..000000000000 --- a/databases/freetds-devel/pkg-descr +++ /dev/null @@ -1,3 +0,0 @@ -This is TDS protocol library (CTlib/DBlib) that is used to connect to -Microsoft and Sybase SQL servers. This can be used instead of native -libraries, that are shipped with commercial products. diff --git a/databases/freetds-devel/pkg-plist b/databases/freetds-devel/pkg-plist deleted file mode 100644 index d534371b5ec4..000000000000 --- a/databases/freetds-devel/pkg-plist +++ /dev/null @@ -1,23 +0,0 @@ -etc/freetds/interfaces -include/bkpublic.h -include/cspublic.h -include/cstypes.h -include/ctpublic.h -include/dblib.h -include/sqldb.h -include/sqlfront.h -include/sybdb.h -include/syberror.h -include/sybfront.h -include/tds.h -include/tdsutil.h -include/tdsver.h -lib/libct.a -lib/libct.so -lib/libct.so.0 -lib/libsybdb.a -lib/libsybdb.so -lib/libsybdb.so.0 -lib/libtds.a -lib/libtds.so -lib/libtds.so.0 diff --git a/databases/grass-i18n/Makefile b/databases/grass-i18n/Makefile deleted file mode 100644 index d7a7ff20c6bf..000000000000 --- a/databases/grass-i18n/Makefile +++ /dev/null @@ -1,53 +0,0 @@ -# New ports collection makefile for: grass -# Date created: 15 January 2000 -# Whom: reg -# -# $FreeBSD$ -# - -PORTNAME= grass -PORTVERSION= 5.0b5 -CATEGORIES= databases -MASTER_SITES= ftp://grass.baylor.edu/pub/grass/grass5.0beta/source/ \ - http://www.geog.uni-hannover.de/grass/grass5/source/ -DISTNAME= grass5.0beta5 - -MAINTAINER= reg@FreeBSD.org - -LIB_DEPENDS= tiff.4:${PORTSDIR}/graphics/tiff -BUILD_DEPENDS= wish8.0:${PORTSDIR}/x11-toolkits/tk80 -RUN_DEPENDS= wish8.0:${PORTSDIR}/x11-toolkits/tk80 - -HAS_CONFIGURE= yes -CONFIGURE_ARGS+= --with-tiff-includes=${LOCALBASE}/include \ - --with-tiff-libs=${LOCALBASE}/lib \ - --prefix=${WRKDIR}/grass5 \ - --with-bindir=${WRKDIR}/grass5/bin - -WRKSRC= ${WRKDIR}/grass5.0beta - -ALL_TARGET= install - -SED_FILES= \ - bin/gmake5 \ - bin/gmakelinks5 \ - bin/grass5.0beta5 \ - dev/create_fifos.sh \ - etc/paint/driver.rsh \ - etc/monitorcap \ - scripts/create_fifos.sh - -pre-configure: - @${MKDIR} ${WRKDIR}/grass5/bin - -do-install: - ${MKDIR} ${PREFIX}/grass5 - ${CHMOD} 755 ${PREFIX}/grass5 - cd ${WRKDIR}/grass5 && ${TAR} -cf - * | \ - ${TAR} -xpf - -C ${PREFIX}/grass5 -.for F in ${SED_FILES} - ${SED} -e "s^${WRKDIR}^${PREFIX}^g" \ - ${WRKDIR}/grass5/$F > ${PREFIX}/grass5/$F -.endfor - -.include <bsd.port.mk> diff --git a/databases/grass-i18n/distinfo b/databases/grass-i18n/distinfo deleted file mode 100644 index bb5cdc2467e2..000000000000 --- a/databases/grass-i18n/distinfo +++ /dev/null @@ -1 +0,0 @@ -MD5 (grass5.0beta5.tar.gz) = 41e429604f9ac43fb649a2c58eb89c31 diff --git a/databases/grass-i18n/pkg-comment b/databases/grass-i18n/pkg-comment deleted file mode 100644 index 7bb9d1c7cce6..000000000000 --- a/databases/grass-i18n/pkg-comment +++ /dev/null @@ -1 +0,0 @@ -A public domain geographic information system (GIS) diff --git a/databases/grass-i18n/pkg-descr b/databases/grass-i18n/pkg-descr deleted file mode 100644 index b9ffcf02a0ab..000000000000 --- a/databases/grass-i18n/pkg-descr +++ /dev/null @@ -1,16 +0,0 @@ - Geographical Resources Analysis Support System - (GRASS) - -A public domain, image processing and geographic information system (GIS) -originally developed by researchers in the Environmental Division of the US -Army Construction Engineering Research Laboratories in Champaign, Illinois, -with enhancements and support now performed by the GRASS Research Group at -Baylor University. - -The GRASS system is used to input, manipulate, analyze, and output -geographic data by users in both military and nonmilitary, public and -private agencies based in North America, Europe, and other parts of the -world. - -WWW: http://www.baylor.edu/~grass/ - diff --git a/databases/grass-i18n/pkg-plist b/databases/grass-i18n/pkg-plist deleted file mode 100644 index 413ee63bfa76..000000000000 --- a/databases/grass-i18n/pkg-plist +++ /dev/null @@ -1,2883 +0,0 @@ -grass5/bin/Mlulc.USGS -grass5/bin/Mlulc.read -grass5/bin/d.3d -grass5/bin/d.area -grass5/bin/d.ask -grass5/bin/d.barscale -grass5/bin/d.colormode -grass5/bin/d.colors -grass5/bin/d.colortable -grass5/bin/d.display -grass5/bin/d.erase -grass5/bin/d.fix.ortho -grass5/bin/d.font -grass5/bin/d.frame -grass5/bin/d.geodesic -grass5/bin/d.graph -grass5/bin/d.grid -grass5/bin/d.his -grass5/bin/d.histogram -grass5/bin/d.icons -grass5/bin/d.label -grass5/bin/d.labels -grass5/bin/d.leg.thin -grass5/bin/d.legend -grass5/bin/d.linegraph -grass5/bin/d.mapgraph -grass5/bin/d.measure -grass5/bin/d.menu -grass5/bin/d.mon -grass5/bin/d.paint.labels -grass5/bin/d.pan -grass5/bin/d.points -grass5/bin/d.profile -grass5/bin/d.rast -grass5/bin/d.rast.arrow -grass5/bin/d.rast.edit -grass5/bin/d.rast.num -grass5/bin/d.rast.zoom -grass5/bin/d.rgb -grass5/bin/d.rhumbline -grass5/bin/d.save -grass5/bin/d.scale -grass5/bin/d.site.labels -grass5/bin/d.sites -grass5/bin/d.sites.label -grass5/bin/d.sites.qual -grass5/bin/d.text -grass5/bin/d.title -grass5/bin/d.vect -grass5/bin/d.vect.cats -grass5/bin/d.vect.zoom -grass5/bin/d.what.rast -grass5/bin/d.what.sites -grass5/bin/d.what.vect -grass5/bin/d.where -grass5/bin/d.zoom -grass5/bin/e00b2a -grass5/bin/g.access -grass5/bin/g.ask -grass5/bin/g.copy -grass5/bin/g.filename -grass5/bin/g.findfile -grass5/bin/g.gisenv -grass5/bin/g.help -grass5/bin/g.list -grass5/bin/g.manual -grass5/bin/g.mapsets -grass5/bin/g.region -grass5/bin/g.remove -grass5/bin/g.rename -grass5/bin/g.setproj -grass5/bin/g.tempfile -grass5/bin/g.version -grass5/bin/gmake5 -grass5/bin/gmakelinks5 -grass5/bin/grass5.0beta5 -grass5/bin/i.cca -grass5/bin/i.class -grass5/bin/i.cluster -grass5/bin/i.colors -grass5/bin/i.composite -grass5/bin/i.fft -grass5/bin/i.gensig -grass5/bin/i.gensigset -grass5/bin/i.grey.scale -grass5/bin/i.group -grass5/bin/i.his.rgb -grass5/bin/i.ifft -grass5/bin/i.in.erdas -grass5/bin/i.in.gtc -grass5/bin/i.in.pri -grass5/bin/i.maxlik -grass5/bin/i.ortho.photo -grass5/bin/i.pca -grass5/bin/i.points -grass5/bin/i.quantize -grass5/bin/i.rectify -grass5/bin/i.rectify2 -grass5/bin/i.rgb.his -grass5/bin/i.shape -grass5/bin/i.smap -grass5/bin/i.tape.mss -grass5/bin/i.tape.mss.h -grass5/bin/i.tape.other -grass5/bin/i.tape.slc -grass5/bin/i.tape.spot -grass5/bin/i.tape.tm -grass5/bin/i.tape.tm.fast -grass5/bin/i.target -grass5/bin/i.texture -grass5/bin/i.vpoints -grass5/bin/i.zc -grass5/bin/m.bsplit -grass5/bin/m.dem.examine -grass5/bin/m.dem.extract -grass5/bin/m.dmaUSGSread -grass5/bin/m.dted.examine -grass5/bin/m.dted.extract -grass5/bin/m.examine.tape -grass5/bin/m.flip -grass5/bin/m.futil -grass5/bin/m.gc2ll -grass5/bin/m.in.e00 -grass5/bin/m.in.pl94.db3 -grass5/bin/m.in.stf1.db3 -grass5/bin/m.in.stf1.tape -grass5/bin/m.ll2gc -grass5/bin/m.ll2u -grass5/bin/m.lulc.USGS -grass5/bin/m.lulc.read -grass5/bin/m.proj -grass5/bin/m.qcalc -grass5/bin/m.region.ll -grass5/bin/m.rot90 -grass5/bin/m.strip99s -grass5/bin/m.tiger.region -grass5/bin/m.u2ll -grass5/bin/p.chart -grass5/bin/p.colors -grass5/bin/p.icons -grass5/bin/p.labels -grass5/bin/p.map -grass5/bin/p.map.new -grass5/bin/p.ppm -grass5/bin/p.select -grass5/bin/ps.icon -grass5/bin/ps.map -grass5/bin/ps.select -grass5/bin/r.average -grass5/bin/r.basins.fill -grass5/bin/r.bilinear -grass5/bin/r.binfer -grass5/bin/r.buffer -grass5/bin/r.cats -grass5/bin/r.circle -grass5/bin/r.clump -grass5/bin/r.coin -grass5/bin/r.colors -grass5/bin/r.colors.paint -grass5/bin/r.combine -grass5/bin/r.compress -grass5/bin/r.contour -grass5/bin/r.cost -grass5/bin/r.covar -grass5/bin/r.cross -grass5/bin/r.describe -grass5/bin/r.digit -grass5/bin/r.distance -grass5/bin/r.drain -grass5/bin/r.flow -grass5/bin/r.gdbase -grass5/bin/r.grow -grass5/bin/r.hydro.CASC2D -grass5/bin/r.in.arc -grass5/bin/r.in.ascii -grass5/bin/r.in.bin -grass5/bin/r.in.dted -grass5/bin/r.in.elas -grass5/bin/r.in.gif -grass5/bin/r.in.ll -grass5/bin/r.in.miads -grass5/bin/r.in.poly -grass5/bin/r.in.ppm -grass5/bin/r.in.sunrast -grass5/bin/r.in.tang -grass5/bin/r.in.tiff -grass5/bin/r.in.utm -grass5/bin/r.infer -grass5/bin/r.info -grass5/bin/r.line -grass5/bin/r.los -grass5/bin/r.mapcalc -grass5/bin/r.mask -grass5/bin/r.mask.points -grass5/bin/r.median -grass5/bin/r.mfilter -grass5/bin/r.mode -grass5/bin/r.neighbors -grass5/bin/r.null -grass5/bin/r.out.arc -grass5/bin/r.out.ascii -grass5/bin/r.out.elas -grass5/bin/r.out.mpeg -grass5/bin/r.out.ppm -grass5/bin/r.out.tga -grass5/bin/r.out.tiff -grass5/bin/r.out.xyz -grass5/bin/r.patch -grass5/bin/r.poly -grass5/bin/r.profile -grass5/bin/r.proj -grass5/bin/r.quant -grass5/bin/r.random -grass5/bin/r.reclass -grass5/bin/r.reclass.scs -grass5/bin/r.recode -grass5/bin/r.report -grass5/bin/r.resamp.rst -grass5/bin/r.resample -grass5/bin/r.rescale -grass5/bin/r.rescale.eq -grass5/bin/r.slope.aspect -grass5/bin/r.statistics -grass5/bin/r.stats -grass5/bin/r.sum -grass5/bin/r.sun -grass5/bin/r.support -grass5/bin/r.surf.area -grass5/bin/r.surf.contour -grass5/bin/r.surf.fractal -grass5/bin/r.surf.gauss -grass5/bin/r.surf.idw -grass5/bin/r.surf.idw2 -grass5/bin/r.surf.random -grass5/bin/r.thin -grass5/bin/r.timestamp -grass5/bin/r.to.rlc -grass5/bin/r.to.sites -grass5/bin/r.transect -grass5/bin/r.volume -grass5/bin/r.water.fea -grass5/bin/r.watershed -grass5/bin/r.weight -grass5/bin/r.weight.new -grass5/bin/r.what -grass5/bin/s.delaunay -grass5/bin/s.gdbase -grass5/bin/s.in.ascii -grass5/bin/s.info -grass5/bin/s.kcv -grass5/bin/s.medp -grass5/bin/s.menu -grass5/bin/s.normal -grass5/bin/s.out.ascii -grass5/bin/s.perturb -grass5/bin/s.probplt -grass5/bin/s.qcount -grass5/bin/s.rand -grass5/bin/s.reclass -grass5/bin/s.sample -grass5/bin/s.surf.idw -grass5/bin/s.surf.krig -grass5/bin/s.surf.rst -grass5/bin/s.surf.tps -grass5/bin/s.sv -grass5/bin/s.territory -grass5/bin/s.to.rast -grass5/bin/s.to.vect -grass5/bin/s.univar -grass5/bin/s.voronoi -grass5/bin/tcltkgrass -grass5/bin/v.alabel -grass5/bin/v.apply.census -grass5/bin/v.area -grass5/bin/v.autocorr -grass5/bin/v.cadlabel -grass5/bin/v.circle -grass5/bin/v.clean -grass5/bin/v.cutter -grass5/bin/v.digit -grass5/bin/v.dump -grass5/bin/v.export -grass5/bin/v.extract -grass5/bin/v.gdbase -grass5/bin/v.geom -grass5/bin/v.import -grass5/bin/v.in.arc -grass5/bin/v.in.ascii -grass5/bin/v.in.dlg -grass5/bin/v.in.dlg.scs -grass5/bin/v.in.dxf -grass5/bin/v.in.poly -grass5/bin/v.in.shape -grass5/bin/v.in.tig.basic -grass5/bin/v.in.tig.lndmk -grass5/bin/v.in.transects -grass5/bin/v.info -grass5/bin/v.make.subj -grass5/bin/v.merge -grass5/bin/v.mk_stats -grass5/bin/v.mkgrid -grass5/bin/v.mkquads -grass5/bin/v.out.arc -grass5/bin/v.out.ascii -grass5/bin/v.out.dlg -grass5/bin/v.out.dxf -grass5/bin/v.out.moss -grass5/bin/v.patch -grass5/bin/v.patch.scs -grass5/bin/v.proj -grass5/bin/v.prune -grass5/bin/v.random -grass5/bin/v.reclass -grass5/bin/v.report -grass5/bin/v.rmedge -grass5/bin/v.scale.random -grass5/bin/v.spag -grass5/bin/v.stats -grass5/bin/v.support -grass5/bin/v.surf.rst -grass5/bin/v.to.rast -grass5/bin/v.to.sites -grass5/bin/v.transform -grass5/bin/v.trim -grass5/dev/create_fifos.sh -grass5/driver/CELL -grass5/driver/XDRIVER -grass5/etc/FIPS.code -grass5/etc/GIS.sh -grass5/etc/Gcolortab/preview/blue8 -grass5/etc/Gcolortab/preview/ht10c -grass5/etc/Gcolortab/shinko635/cs4b -grass5/etc/Gcolortab/shinko635/cs4gn -grass5/etc/Gcolortab/shinko635/cs4gy -grass5/etc/Gcolortab/shinko635/cs4ps -grass5/etc/Gcolortab/shinko635/cs4r -grass5/etc/Gcolortab/shinko635/cs5b -grass5/etc/Gcolortab/shinko635/cs5gn -grass5/etc/Gcolortab/shinko635/cs5gy -grass5/etc/Gcolortab/shinko635/cs5ps -grass5/etc/Gcolortab/shinko635/cs5r -grass5/etc/Gcolortab/shinko635/cs6b -grass5/etc/Gcolortab/shinko635/cs6ps -grass5/etc/Gcolortab/shinko635/hs10c -grass5/etc/Gcolortab/shinko635/hs6c -grass5/etc/Gcolortab/shinko635/hs7c -grass5/etc/Gcolortab/shinko635/hs8c -grass5/etc/Gcolortab/shinko635/hs9c -grass5/etc/Gcolortab/shinko635/is4b -grass5/etc/Gcolortab/shinko635/is4gn -grass5/etc/Gcolortab/shinko635/is4gy -grass5/etc/Gcolortab/shinko635/is4ps -grass5/etc/Gcolortab/shinko635/is4r -grass5/etc/Gcolortab/shinko635/is5b -grass5/etc/Gcolortab/shinko635/is5gn -grass5/etc/Gcolortab/shinko635/is5gy -grass5/etc/Gcolortab/shinko635/is5ps -grass5/etc/Gcolortab/shinko635/is5r -grass5/etc/Gcolortab/shinko635/is6b -grass5/etc/Gcolortab/shinko635/is6ps -grass5/etc/Gcolortab/tek4695/blue8 -grass5/etc/Gcolortab/tek4695/ct4b -grass5/etc/Gcolortab/tek4695/ct4gn -grass5/etc/Gcolortab/tek4695/ct4gy -grass5/etc/Gcolortab/tek4695/ct4ps -grass5/etc/Gcolortab/tek4695/ct5b -grass5/etc/Gcolortab/tek4695/ct5gn -grass5/etc/Gcolortab/tek4695/ct5gy -grass5/etc/Gcolortab/tek4695/ct5ps -grass5/etc/Gcolortab/tek4695/ct6b -grass5/etc/Gcolortab/tek4695/ct6gn -grass5/etc/Gcolortab/tek4695/ct6ps -grass5/etc/Gcolortab/tek4695/ct7ps -grass5/etc/Gcolortab/tek4695/ht10c -grass5/etc/Gcolortab/tek4695/ht6c -grass5/etc/Gcolortab/tek4695/ht6g1 -grass5/etc/Gcolortab/tek4695/ht6g2 -grass5/etc/Gcolortab/tek4695/ht7c -grass5/etc/Gcolortab/tek4695/ht8c -grass5/etc/Gcolortab/tek4695/ht9c -grass5/etc/Gcolortab/tek4695/it4b -grass5/etc/Gcolortab/tek4695/it4gn -grass5/etc/Gcolortab/tek4695/it4gy -grass5/etc/Gcolortab/tek4695/it4ps -grass5/etc/Gcolortab/tek4695/it5b -grass5/etc/Gcolortab/tek4695/it5gn -grass5/etc/Gcolortab/tek4695/it5gy -grass5/etc/Gcolortab/tek4695/it5ps -grass5/etc/Gcolortab/tek4695/it6b -grass5/etc/Gcolortab/tek4695/it6gn -grass5/etc/Gcolortab/tek4695/it6ps -grass5/etc/Gcolortab/tek4695/it7b -grass5/etc/Gcolortab/tek4695/it7gn -grass5/etc/Gcolortab/tek4695/it7ps -grass5/etc/b.a.plus -grass5/etc/bin/contrib/cmd/Mlulc.read -grass5/etc/bin/contrib/cmd/d.area -grass5/etc/bin/contrib/cmd/d.barscale -grass5/etc/bin/contrib/cmd/d.fix.ortho -grass5/etc/bin/contrib/cmd/d.linegraph -grass5/etc/bin/contrib/cmd/d.pan -grass5/etc/bin/contrib/cmd/d.site.labels -grass5/etc/bin/contrib/cmd/d.sites.qual -grass5/etc/bin/contrib/cmd/d.text -grass5/etc/bin/contrib/cmd/d.vect.cats -grass5/etc/bin/contrib/cmd/d.vect.zoom -grass5/etc/bin/contrib/cmd/d.what.sites -grass5/etc/bin/contrib/cmd/i.shape -grass5/etc/bin/contrib/cmd/i.texture -grass5/etc/bin/contrib/cmd/m.bsplit -grass5/etc/bin/contrib/cmd/m.in.e00 -grass5/etc/bin/contrib/cmd/m.qcalc -grass5/etc/bin/contrib/cmd/m.strip99s -grass5/etc/bin/contrib/cmd/r.bilinear -grass5/etc/bin/contrib/cmd/r.circle -grass5/etc/bin/contrib/cmd/r.colors.paint -grass5/etc/bin/contrib/cmd/r.distance -grass5/etc/bin/contrib/cmd/r.hydro.CASC2D -grass5/etc/bin/contrib/cmd/r.in.arc -grass5/etc/bin/contrib/cmd/r.in.dted -grass5/etc/bin/contrib/cmd/r.in.gif -grass5/etc/bin/contrib/cmd/r.in.miads -grass5/etc/bin/contrib/cmd/r.in.ppm -grass5/etc/bin/contrib/cmd/r.in.tang -grass5/etc/bin/contrib/cmd/r.in.tiff -grass5/etc/bin/contrib/cmd/r.in.utm -grass5/etc/bin/contrib/cmd/r.out.mpeg -grass5/etc/bin/contrib/cmd/r.out.ppm -grass5/etc/bin/contrib/cmd/r.out.tiff -grass5/etc/bin/contrib/cmd/r.out.xyz -grass5/etc/bin/contrib/cmd/r.proj -grass5/etc/bin/contrib/cmd/r.resamp.rst -grass5/etc/bin/contrib/cmd/r.statistics -grass5/etc/bin/contrib/cmd/r.sum -grass5/etc/bin/contrib/cmd/r.sun -grass5/etc/bin/contrib/cmd/r.surf.area -grass5/etc/bin/contrib/cmd/r.surf.fractal -grass5/etc/bin/contrib/cmd/r.surf.gauss -grass5/etc/bin/contrib/cmd/r.surf.random -grass5/etc/bin/contrib/cmd/r.to.rlc -grass5/etc/bin/contrib/cmd/r.to.sites -grass5/etc/bin/contrib/cmd/s.info -grass5/etc/bin/contrib/cmd/s.kcv -grass5/etc/bin/contrib/cmd/s.medp -grass5/etc/bin/contrib/cmd/s.normal -grass5/etc/bin/contrib/cmd/s.perturb -grass5/etc/bin/contrib/cmd/s.probplt -grass5/etc/bin/contrib/cmd/s.qcount -grass5/etc/bin/contrib/cmd/s.rand -grass5/etc/bin/contrib/cmd/s.sample -grass5/etc/bin/contrib/cmd/s.surf.krig -grass5/etc/bin/contrib/cmd/s.surf.rst -grass5/etc/bin/contrib/cmd/s.sv -grass5/etc/bin/contrib/cmd/s.territory -grass5/etc/bin/contrib/cmd/s.to.vect -grass5/etc/bin/contrib/cmd/s.univar -grass5/etc/bin/contrib/cmd/v.autocorr -grass5/etc/bin/contrib/cmd/v.dump -grass5/etc/bin/contrib/cmd/v.extract -grass5/etc/bin/contrib/cmd/v.geom -grass5/etc/bin/contrib/cmd/v.in.dlg.scs -grass5/etc/bin/contrib/cmd/v.in.poly -grass5/etc/bin/contrib/cmd/v.in.shape -grass5/etc/bin/contrib/cmd/v.make.subj -grass5/etc/bin/contrib/cmd/v.merge -grass5/etc/bin/contrib/cmd/v.mk_stats -grass5/etc/bin/contrib/cmd/v.mkquads -grass5/etc/bin/contrib/cmd/v.random -grass5/etc/bin/contrib/cmd/v.report -grass5/etc/bin/contrib/cmd/v.rmedge -grass5/etc/bin/contrib/cmd/v.scale.random -grass5/etc/bin/contrib/cmd/v.surf.rst -grass5/etc/bin/contrib/inter/Mlulc.USGS -grass5/etc/bin/contrib/inter/m.futil -grass5/etc/bin/contrib/inter/r.reclass.scs -grass5/etc/bin/contrib/inter/r.water.fea -grass5/etc/bin/contrib/inter/v.export -grass5/etc/bin/contrib/inter/v.extract -grass5/etc/bin/contrib/inter/v.patch.scs -grass5/etc/bin/contrib/inter/v.report -grass5/etc/bin/main/cmd/d.3d -grass5/etc/bin/main/cmd/d.ask -grass5/etc/bin/main/cmd/d.colormode -grass5/etc/bin/main/cmd/d.colors -grass5/etc/bin/main/cmd/d.colortable -grass5/etc/bin/main/cmd/d.erase -grass5/etc/bin/main/cmd/d.font -grass5/etc/bin/main/cmd/d.frame -grass5/etc/bin/main/cmd/d.geodesic -grass5/etc/bin/main/cmd/d.graph -grass5/etc/bin/main/cmd/d.grid -grass5/etc/bin/main/cmd/d.his -grass5/etc/bin/main/cmd/d.histogram -grass5/etc/bin/main/cmd/d.icons -grass5/etc/bin/main/cmd/d.label -grass5/etc/bin/main/cmd/d.leg.thin -grass5/etc/bin/main/cmd/d.legend -grass5/etc/bin/main/cmd/d.mapgraph -grass5/etc/bin/main/cmd/d.measure -grass5/etc/bin/main/cmd/d.menu -grass5/etc/bin/main/cmd/d.mon -grass5/etc/bin/main/cmd/d.paint.labels -grass5/etc/bin/main/cmd/d.points -grass5/etc/bin/main/cmd/d.profile -grass5/etc/bin/main/cmd/d.rast -grass5/etc/bin/main/cmd/d.rast.arrow -grass5/etc/bin/main/cmd/d.rast.edit -grass5/etc/bin/main/cmd/d.rast.num -grass5/etc/bin/main/cmd/d.rgb -grass5/etc/bin/main/cmd/d.rhumbline -grass5/etc/bin/main/cmd/d.save -grass5/etc/bin/main/cmd/d.scale -grass5/etc/bin/main/cmd/d.sites -grass5/etc/bin/main/cmd/d.sites.label -grass5/etc/bin/main/cmd/d.text -grass5/etc/bin/main/cmd/d.title -grass5/etc/bin/main/cmd/d.vect -grass5/etc/bin/main/cmd/d.what.rast -grass5/etc/bin/main/cmd/d.what.vect -grass5/etc/bin/main/cmd/d.where -grass5/etc/bin/main/cmd/d.zoom -grass5/etc/bin/main/cmd/g.ask -grass5/etc/bin/main/cmd/g.copy -grass5/etc/bin/main/cmd/g.filename -grass5/etc/bin/main/cmd/g.findfile -grass5/etc/bin/main/cmd/g.gisenv -grass5/etc/bin/main/cmd/g.help -grass5/etc/bin/main/cmd/g.list -grass5/etc/bin/main/cmd/g.manual -grass5/etc/bin/main/cmd/g.mapsets -grass5/etc/bin/main/cmd/g.region -grass5/etc/bin/main/cmd/g.remove -grass5/etc/bin/main/cmd/g.rename -grass5/etc/bin/main/cmd/g.setproj -grass5/etc/bin/main/cmd/g.tempfile -grass5/etc/bin/main/cmd/i.cca -grass5/etc/bin/main/cmd/i.cluster -grass5/etc/bin/main/cmd/i.fft -grass5/etc/bin/main/cmd/i.gensig -grass5/etc/bin/main/cmd/i.gensigset -grass5/etc/bin/main/cmd/i.grey.scale -grass5/etc/bin/main/cmd/i.his.rgb -grass5/etc/bin/main/cmd/i.ifft -grass5/etc/bin/main/cmd/i.in.erdas -grass5/etc/bin/main/cmd/i.maxlik -grass5/etc/bin/main/cmd/i.pca -grass5/etc/bin/main/cmd/i.rgb.his -grass5/etc/bin/main/cmd/i.smap -grass5/etc/bin/main/cmd/i.tape.mss.h -grass5/etc/bin/main/cmd/i.tape.tm.fast -grass5/etc/bin/main/cmd/i.zc -grass5/etc/bin/main/cmd/m.dem.examine -grass5/etc/bin/main/cmd/m.dem.extract -grass5/etc/bin/main/cmd/m.dmaUSGSread -grass5/etc/bin/main/cmd/m.dted.examine -grass5/etc/bin/main/cmd/m.dted.extract -grass5/etc/bin/main/cmd/m.examine.tape -grass5/etc/bin/main/cmd/m.flip -grass5/etc/bin/main/cmd/m.gc2ll -grass5/etc/bin/main/cmd/m.in.pl94.db3 -grass5/etc/bin/main/cmd/m.in.stf1.db3 -grass5/etc/bin/main/cmd/m.in.stf1.tape -grass5/etc/bin/main/cmd/m.ll2gc -grass5/etc/bin/main/cmd/m.ll2u -grass5/etc/bin/main/cmd/m.lulc.USGS -grass5/etc/bin/main/cmd/m.lulc.read -grass5/etc/bin/main/cmd/m.region.ll -grass5/etc/bin/main/cmd/m.rot90 -grass5/etc/bin/main/cmd/m.tiger.region -grass5/etc/bin/main/cmd/m.u2ll -grass5/etc/bin/main/cmd/p.map -grass5/etc/bin/main/cmd/p.map.new -grass5/etc/bin/main/cmd/p.ppm -grass5/etc/bin/main/cmd/p.select -grass5/etc/bin/main/cmd/ps.icon -grass5/etc/bin/main/cmd/ps.map -grass5/etc/bin/main/cmd/ps.select -grass5/etc/bin/main/cmd/r.average -grass5/etc/bin/main/cmd/r.basins.fill -grass5/etc/bin/main/cmd/r.binfer -grass5/etc/bin/main/cmd/r.buffer -grass5/etc/bin/main/cmd/r.cats -grass5/etc/bin/main/cmd/r.clump -grass5/etc/bin/main/cmd/r.coin -grass5/etc/bin/main/cmd/r.colors -grass5/etc/bin/main/cmd/r.colors.paint -grass5/etc/bin/main/cmd/r.combine -grass5/etc/bin/main/cmd/r.compress -grass5/etc/bin/main/cmd/r.contour -grass5/etc/bin/main/cmd/r.cost -grass5/etc/bin/main/cmd/r.covar -grass5/etc/bin/main/cmd/r.cross -grass5/etc/bin/main/cmd/r.describe -grass5/etc/bin/main/cmd/r.drain -grass5/etc/bin/main/cmd/r.flow -grass5/etc/bin/main/cmd/r.grow -grass5/etc/bin/main/cmd/r.in.ascii -grass5/etc/bin/main/cmd/r.in.bin -grass5/etc/bin/main/cmd/r.in.elas -grass5/etc/bin/main/cmd/r.in.ll -grass5/etc/bin/main/cmd/r.in.poly -grass5/etc/bin/main/cmd/r.in.sunrast -grass5/etc/bin/main/cmd/r.infer -grass5/etc/bin/main/cmd/r.info -grass5/etc/bin/main/cmd/r.line -grass5/etc/bin/main/cmd/r.los -grass5/etc/bin/main/cmd/r.mapcalc -grass5/etc/bin/main/cmd/r.mask.points -grass5/etc/bin/main/cmd/r.median -grass5/etc/bin/main/cmd/r.mfilter -grass5/etc/bin/main/cmd/r.mode -grass5/etc/bin/main/cmd/r.neighbors -grass5/etc/bin/main/cmd/r.null -grass5/etc/bin/main/cmd/r.out.arc -grass5/etc/bin/main/cmd/r.out.ascii -grass5/etc/bin/main/cmd/r.out.elas -grass5/etc/bin/main/cmd/r.out.tga -grass5/etc/bin/main/cmd/r.patch -grass5/etc/bin/main/cmd/r.poly -grass5/etc/bin/main/cmd/r.profile -grass5/etc/bin/main/cmd/r.quant -grass5/etc/bin/main/cmd/r.random -grass5/etc/bin/main/cmd/r.reclass -grass5/etc/bin/main/cmd/r.recode -grass5/etc/bin/main/cmd/r.report -grass5/etc/bin/main/cmd/r.resample -grass5/etc/bin/main/cmd/r.rescale -grass5/etc/bin/main/cmd/r.rescale.eq -grass5/etc/bin/main/cmd/r.slope.aspect -grass5/etc/bin/main/cmd/r.stats -grass5/etc/bin/main/cmd/r.surf.contour -grass5/etc/bin/main/cmd/r.surf.idw -grass5/etc/bin/main/cmd/r.surf.idw2 -grass5/etc/bin/main/cmd/r.thin -grass5/etc/bin/main/cmd/r.timestamp -grass5/etc/bin/main/cmd/r.transect -grass5/etc/bin/main/cmd/r.volume -grass5/etc/bin/main/cmd/r.watershed -grass5/etc/bin/main/cmd/r.weight.new -grass5/etc/bin/main/cmd/r.what -grass5/etc/bin/main/cmd/s.delaunay -grass5/etc/bin/main/cmd/s.in.ascii -grass5/etc/bin/main/cmd/s.out.ascii -grass5/etc/bin/main/cmd/s.surf.idw -grass5/etc/bin/main/cmd/s.surf.tps -grass5/etc/bin/main/cmd/s.to.rast -grass5/etc/bin/main/cmd/s.voronoi -grass5/etc/bin/main/cmd/v.alabel -grass5/etc/bin/main/cmd/v.apply.census -grass5/etc/bin/main/cmd/v.area -grass5/etc/bin/main/cmd/v.cadlabel -grass5/etc/bin/main/cmd/v.circle -grass5/etc/bin/main/cmd/v.clean -grass5/etc/bin/main/cmd/v.cutter -grass5/etc/bin/main/cmd/v.in.arc -grass5/etc/bin/main/cmd/v.in.ascii -grass5/etc/bin/main/cmd/v.in.dlg -grass5/etc/bin/main/cmd/v.in.dxf -grass5/etc/bin/main/cmd/v.in.tig.basic -grass5/etc/bin/main/cmd/v.in.tig.lndmk -grass5/etc/bin/main/cmd/v.in.transects -grass5/etc/bin/main/cmd/v.info -grass5/etc/bin/main/cmd/v.mkgrid -grass5/etc/bin/main/cmd/v.out.arc -grass5/etc/bin/main/cmd/v.out.ascii -grass5/etc/bin/main/cmd/v.out.dlg -grass5/etc/bin/main/cmd/v.out.dxf -grass5/etc/bin/main/cmd/v.patch -grass5/etc/bin/main/cmd/v.proj -grass5/etc/bin/main/cmd/v.prune -grass5/etc/bin/main/cmd/v.reclass -grass5/etc/bin/main/cmd/v.spag -grass5/etc/bin/main/cmd/v.stats -grass5/etc/bin/main/cmd/v.support -grass5/etc/bin/main/cmd/v.to.rast -grass5/etc/bin/main/cmd/v.to.sites -grass5/etc/bin/main/cmd/v.transform -grass5/etc/bin/main/cmd/v.trim -grass5/etc/bin/main/inter/d.3d -grass5/etc/bin/main/inter/d.display -grass5/etc/bin/main/inter/d.labels -grass5/etc/bin/main/inter/d.measure -grass5/etc/bin/main/inter/d.mon -grass5/etc/bin/main/inter/d.rast.zoom -grass5/etc/bin/main/inter/g.access -grass5/etc/bin/main/inter/g.copy -grass5/etc/bin/main/inter/g.list -grass5/etc/bin/main/inter/g.manual -grass5/etc/bin/main/inter/g.mapsets -grass5/etc/bin/main/inter/g.region -grass5/etc/bin/main/inter/g.remove -grass5/etc/bin/main/inter/g.rename -grass5/etc/bin/main/inter/g.version -grass5/etc/bin/main/inter/i.class -grass5/etc/bin/main/inter/i.cluster -grass5/etc/bin/main/inter/i.colors -grass5/etc/bin/main/inter/i.composite -grass5/etc/bin/main/inter/i.gensig -grass5/etc/bin/main/inter/i.gensigset -grass5/etc/bin/main/inter/i.group -grass5/etc/bin/main/inter/i.in.gtc -grass5/etc/bin/main/inter/i.in.pri -grass5/etc/bin/main/inter/i.maxlik -grass5/etc/bin/main/inter/i.ortho.photo -grass5/etc/bin/main/inter/i.points -grass5/etc/bin/main/inter/i.quantize -grass5/etc/bin/main/inter/i.rectify -grass5/etc/bin/main/inter/i.rectify2 -grass5/etc/bin/main/inter/i.smap -grass5/etc/bin/main/inter/i.tape.mss -grass5/etc/bin/main/inter/i.tape.other -grass5/etc/bin/main/inter/i.tape.slc -grass5/etc/bin/main/inter/i.tape.spot -grass5/etc/bin/main/inter/i.tape.tm -grass5/etc/bin/main/inter/i.tape.tm.fast -grass5/etc/bin/main/inter/i.target -grass5/etc/bin/main/inter/i.vpoints -grass5/etc/bin/main/inter/m.proj -grass5/etc/bin/main/inter/p.chart -grass5/etc/bin/main/inter/p.colors -grass5/etc/bin/main/inter/p.icons -grass5/etc/bin/main/inter/p.labels -grass5/etc/bin/main/inter/p.map -grass5/etc/bin/main/inter/p.select -grass5/etc/bin/main/inter/ps.map -grass5/etc/bin/main/inter/r.average -grass5/etc/bin/main/inter/r.buffer -grass5/etc/bin/main/inter/r.compress -grass5/etc/bin/main/inter/r.digit -grass5/etc/bin/main/inter/r.grow -grass5/etc/bin/main/inter/r.in.elas -grass5/etc/bin/main/inter/r.info -grass5/etc/bin/main/inter/r.mask -grass5/etc/bin/main/inter/r.median -grass5/etc/bin/main/inter/r.mode -grass5/etc/bin/main/inter/r.neighbors -grass5/etc/bin/main/inter/r.random -grass5/etc/bin/main/inter/r.reclass -grass5/etc/bin/main/inter/r.report -grass5/etc/bin/main/inter/r.rescale -grass5/etc/bin/main/inter/r.support -grass5/etc/bin/main/inter/r.watershed -grass5/etc/bin/main/inter/r.weight -grass5/etc/bin/main/inter/s.menu -grass5/etc/bin/main/inter/v.circle -grass5/etc/bin/main/inter/v.digit -grass5/etc/bin/main/inter/v.import -grass5/etc/bin/main/inter/v.in.arc -grass5/etc/bin/main/inter/v.mkgrid -grass5/etc/bin/main/inter/v.out.moss -grass5/etc/bin/main/inter/v.prune -grass5/etc/bin/main/inter/v.reclass -grass5/etc/census.docs/pl94_matrix -grass5/etc/census.docs/stf1_id -grass5/etc/census.docs/stf1_matrix -grass5/etc/census.docs/stf1_sumlev -grass5/etc/clean_temp -grass5/etc/copy -grass5/etc/digcap -grass5/etc/digcap.sample -grass5/etc/digitizers/al30f3_16 -grass5/etc/digitizers/al30f5_16 -grass5/etc/digitizers/al30f8_16 -grass5/etc/digitizers/al40f8_16 -grass5/etc/digitizers/cc95f12_16 -grass5/etc/digitizers/cc95f23_16 -grass5/etc/digitizers/cc95f26_16 -grass5/etc/digitizers/cc95f27_16 -grass5/etc/digitizers/cc95f30_16 -grass5/etc/digitizers/cc95f4_16 -grass5/etc/digitizers/cc95f5_0 -grass5/etc/digitizers/cc95f5_16 -grass5/etc/digitizers/cc95f6_16 -grass5/etc/digitizers/gtslf00_16 -grass5/etc/digitizers/gtslf01_16 -grass5/etc/digitizers/kus3f02_16 -grass5/etc/digitizers/kus3f05_16 -grass5/etc/echo -grass5/etc/element_list -grass5/etc/ellipse.table -grass5/etc/frame.create -grass5/etc/frame.dumper -grass5/etc/frame.select -grass5/etc/front.end -grass5/etc/gdbase/error -grass5/etc/gdbase/gdb.display -grass5/etc/gdbase/gdb.reclass -grass5/etc/gdbase/gdb.unique -grass5/etc/gdbase/gdbase.cmd -grass5/etc/gdbase/query.tk -grass5/etc/gdbase/r.usage -grass5/etc/gdbase/s.usage -grass5/etc/gdbase/setup.tk -grass5/etc/gdbase/unique -grass5/etc/gdbase/v.usage -grass5/etc/geo.point -grass5/etc/geo.quest -grass5/etc/geo.reg -grass5/etc/geo.unlock -grass5/etc/gis_intro -grass5/etc/gis_set -grass5/etc/help/01.instruc/01.01.help -grass5/etc/help/01.instruc/01.02.help -grass5/etc/help/02.db.setup/02.01.1.tree -grass5/etc/help/02.db.setup/02.01.2.dir.r -grass5/etc/help/02.db.setup/02.01.3.dir.v -grass5/etc/help/02.db.setup/02.01.4.dir.s -grass5/etc/help/02.db.setup/02.01.5.files -grass5/etc/help/02.db.setup/02.01.dbstruc -grass5/etc/help/02.db.setup/02.02.1.grmenu -grass5/etc/help/02.db.setup/02.02.bkup -grass5/etc/help/02.db.setup/02.02.setuploc -grass5/etc/help/02.db.setup/02.03.1.fmt.r -grass5/etc/help/02.db.setup/02.03.2.fmt.v -grass5/etc/help/02.db.setup/02.03.3.fmt.s -grass5/etc/help/02.db.setup/02.03.r.v -grass5/etc/help/02.db.setup/02.04.bkup -grass5/etc/help/02.db.setup/02.04.region -grass5/etc/help/02.db.setup/02.05.patch -grass5/etc/help/02.db.setup/02.06.bkup -grass5/etc/help/02.db.setup/02.06.proj -grass5/etc/help/02.db.setup/02.07.1.sample -grass5/etc/help/02.db.setup/02.07.res -grass5/etc/help/02.db.setup/02.08.bkup -grass5/etc/help/02.db.setup/02.08.srces -grass5/etc/help/02.db.setup/02.09.input -grass5/etc/help/02.db.setup/02.menu -grass5/etc/help/03.db.mgmt/03.intro -grass5/etc/help/03.db.mgmt/03.menu -grass5/etc/help/04.wind.mgmt/04.01.intro -grass5/etc/help/04.wind.mgmt/04.02.mng.frm -grass5/etc/help/04.wind.mgmt/04.03.mng.reg -grass5/etc/help/04.wind.mgmt/04.04.bkup -grass5/etc/help/04.wind.mgmt/04.04.def.win -grass5/etc/help/04.wind.mgmt/04.05.xtract -grass5/etc/help/04.wind.mgmt/04.06.digit -grass5/etc/help/04.wind.mgmt/04.07.display -grass5/etc/help/04.wind.mgmt/04.menu -grass5/etc/help/05.tape.ex/05.01.intro -grass5/etc/help/05.tape.ex/05.02.1.dma -grass5/etc/help/05.tape.ex/05.02.1a.dma -grass5/etc/help/05.tape.ex/05.02.1b.dma -grass5/etc/help/05.tape.ex/05.02.1c.dma -grass5/etc/help/05.tape.ex/05.02.1d.dma -grass5/etc/help/05.tape.ex/05.02.2.usgs -grass5/etc/help/05.tape.ex/05.02.2a.usgs -grass5/etc/help/05.tape.ex/05.02.2b.usgs -grass5/etc/help/05.tape.ex/05.02.2c.usgs -grass5/etc/help/05.tape.ex/05.02.2d.usgs -grass5/etc/help/05.tape.ex/05.02.3.priv -grass5/etc/help/05.tape.ex/05.02.3c.priv -grass5/etc/help/05.tape.ex/05.02.3d.priv -grass5/etc/help/05.tape.ex/05.02.elev -grass5/etc/help/05.tape.ex/05.03.imagery -grass5/etc/help/05.tape.ex/05.04.other -grass5/etc/help/05.tape.ex/05.05.01.dma -grass5/etc/help/05.tape.ex/05.05.02.eosat -grass5/etc/help/05.tape.ex/05.05.03.epa -grass5/etc/help/05.tape.ex/05.05.04.ncdc -grass5/etc/help/05.tape.ex/05.05.05.ncic -grass5/etc/help/05.tape.ex/05.05.06.ngdc -grass5/etc/help/05.tape.ex/05.05.07.ngic -grass5/etc/help/05.tape.ex/05.05.08.nodc -grass5/etc/help/05.tape.ex/05.05.09.ntis -grass5/etc/help/05.tape.ex/05.05.10.ornl -grass5/etc/help/05.tape.ex/05.05.11.scs -grass5/etc/help/05.tape.ex/05.05.12.spot -grass5/etc/help/05.tape.ex/05.05.13.storet -grass5/etc/help/05.tape.ex/05.05.13.stort -grass5/etc/help/05.tape.ex/05.05.14.usbc -grass5/etc/help/05.tape.ex/05.05.15.usgs1 -grass5/etc/help/05.tape.ex/05.05.16.usgs2 -grass5/etc/help/05.tape.ex/05.05.17.usgs3 -grass5/etc/help/05.tape.ex/05.05.18.usgs4 -grass5/etc/help/05.tape.ex/05.05.19.vx -grass5/etc/help/05.tape.ex/05.05.20.wx -grass5/etc/help/05.tape.ex/05.05.srces -grass5/etc/help/05.tape.ex/05.06.tapefmt -grass5/etc/help/05.tape.ex/05.07.1.corr -grass5/etc/help/05.tape.ex/05.07.2.area -grass5/etc/help/05.tape.ex/05.07.3.max -grass5/etc/help/05.tape.ex/05.07.4.yr -grass5/etc/help/05.tape.ex/05.07.5.img -grass5/etc/help/05.tape.ex/05.07.6.tf -grass5/etc/help/05.tape.ex/05.07.bkup -grass5/etc/help/05.tape.ex/05.07.proj -grass5/etc/help/05.tape.ex/05.08.media -grass5/etc/help/05.tape.ex/05.09.unix -grass5/etc/help/05.tape.ex/05.menu -grass5/etc/help/06.export/06.01.intro -grass5/etc/help/06.export/06.02.asc.bin -grass5/etc/help/06.export/06.03.r.v.s -grass5/etc/help/06.export/06.04.other -grass5/etc/help/06.export/06.05.coord -grass5/etc/help/06.export/06.menu -grass5/etc/help/07.interfaces/07.intro -grass5/etc/help/07.interfaces/07.menu -grass5/etc/help/08.mapdev/08.01.intro -grass5/etc/help/08.mapdev/08.02.digit -grass5/etc/help/08.mapdev/08.03.patch -grass5/etc/help/08.mapdev/08.04.spt -grass5/etc/help/08.mapdev/08.05.im.ex -grass5/etc/help/08.mapdev/08.06.scan -grass5/etc/help/08.mapdev/08.07.r.v.s -grass5/etc/help/08.mapdev/08.08.res -grass5/etc/help/08.mapdev/08.09.prep -grass5/etc/help/08.mapdev/08.10.1.digthr -grass5/etc/help/08.mapdev/08.10.2.mapthr -grass5/etc/help/08.mapdev/08.10.3a.snapt -grass5/etc/help/08.mapdev/08.10.3b.snapt -grass5/etc/help/08.mapdev/08.10.3c.snapt -grass5/etc/help/08.mapdev/08.10.thrsh -grass5/etc/help/08.mapdev/08.12.1.altek -grass5/etc/help/08.mapdev/08.12.2.calc -grass5/etc/help/08.mapdev/08.12.3.kurta -grass5/etc/help/08.mapdev/08.12.dig.ex -grass5/etc/help/08.mapdev/08.14.1.altek -grass5/etc/help/08.mapdev/08.14.2.calc -grass5/etc/help/08.mapdev/08.14.3.kur -grass5/etc/help/08.mapdev/08.14.4.geo -grass5/etc/help/08.mapdev/08.14.5.hit -grass5/etc/help/08.mapdev/08.14.6.numon -grass5/etc/help/08.mapdev/08.14.7.none -grass5/etc/help/08.mapdev/08.14.bkup -grass5/etc/help/08.mapdev/08.14.digset -grass5/etc/help/08.mapdev/08.menu -grass5/etc/help/09.imagery/09.01.intro -grass5/etc/help/09.imagery/09.02.extract -grass5/etc/help/09.imagery/09.03.filemgt -grass5/etc/help/09.imagery/09.04.class -grass5/etc/help/09.imagery/09.05.rect -grass5/etc/help/09.imagery/09.06.cortn -grass5/etc/help/09.imagery/09.07.enhmt -grass5/etc/help/09.imagery/09.08.filters -grass5/etc/help/09.imagery/09.menu -grass5/etc/help/10.data.analy/10.01.intro -grass5/etc/help/10.data.analy/10.02.site -grass5/etc/help/10.data.analy/10.03.vect -grass5/etc/help/10.data.analy/10.04.rast -grass5/etc/help/10.data.analy/10.05.3d -grass5/etc/help/10.data.analy/10.06.1cell -grass5/etc/help/10.data.analy/10.07.coin -grass5/etc/help/10.data.analy/10.08.nbhd -grass5/etc/help/10.data.analy/10.09.regl -grass5/etc/help/10.data.analy/10.10.prox -grass5/etc/help/10.data.analy/10.11.bool -grass5/etc/help/10.data.analy/10.12.terr -grass5/etc/help/10.data.analy/10.13.region -grass5/etc/help/10.data.analy/10.14.qs -grass5/etc/help/10.data.analy/10.menu -grass5/etc/help/11.map.design/11.menu -grass5/etc/help/12.map.display/12.01.intro -grass5/etc/help/12.map.display/12.02.1.mon -grass5/etc/help/12.map.display/12.02.2.mon -grass5/etc/help/12.map.display/12.02.3.mon -grass5/etc/help/12.map.display/12.02.4.mon -grass5/etc/help/12.map.display/12.02.d.mon -grass5/etc/help/12.map.display/12.03.d.frame -grass5/etc/help/12.map.display/12.04.d.rpt -grass5/etc/help/12.map.display/12.05.d.dis -grass5/etc/help/12.map.display/12.06.reqs -grass5/etc/help/12.map.display/12.07.dev.ex -grass5/etc/help/12.map.display/12.08.dev.nw -grass5/etc/help/12.map.display/12.menu -grass5/etc/help/13.map.print/13.01.intro -grass5/etc/help/13.map.print/13.02.design -grass5/etc/help/13.map.print/13.03.select -grass5/etc/help/13.map.print/13.04.print -grass5/etc/help/13.map.print/13.05.dev.ex -grass5/etc/help/13.map.print/13.06.dev.nw -grass5/etc/help/13.map.print/13.07.reqs -grass5/etc/help/13.map.print/13.08.devset -grass5/etc/help/13.map.print/13.menu -grass5/etc/help/13.map.print/epson.txt -grass5/etc/help/13.map.print/shinko.txt -grass5/etc/help/13.map.print/tek.txt -grass5/etc/help/14.reports/14.01.intro -grass5/etc/help/14.reports/14.02.single -grass5/etc/help/14.reports/14.03.mult -grass5/etc/help/14.reports/14.04.custom -grass5/etc/help/14.reports/14.menu -grass5/etc/help/15.macros/15.intro -grass5/etc/help/15.macros/15.menu -grass5/etc/help/16.glossary/16.menu -grass5/etc/help/16.glossary/arc.def -grass5/etc/help/16.glossary/arcnode.def -grass5/etc/help/16.glossary/area.def -grass5/etc/help/16.glossary/aspect.def -grass5/etc/help/16.glossary/attribu.def -grass5/etc/help/16.glossary/band.def -grass5/etc/help/16.glossary/bandfil.def -grass5/etc/help/16.glossary/boolean.def -grass5/etc/help/16.glossary/cartcoord.def -grass5/etc/help/16.glossary/cat.def -grass5/etc/help/16.glossary/catlab.def -grass5/etc/help/16.glossary/catval.def -grass5/etc/help/16.glossary/cell.def -grass5/etc/help/16.glossary/cellfile.def -grass5/etc/help/16.glossary/cellmap.def -grass5/etc/help/16.glossary/centroid.def -grass5/etc/help/16.glossary/class.def -grass5/etc/help/16.glossary/classify.def -grass5/etc/help/16.glossary/controlpts.def -grass5/etc/help/16.glossary/crt.def -grass5/etc/help/16.glossary/database.def -grass5/etc/help/16.glossary/dbelement.def -grass5/etc/help/16.glossary/dbms.def -grass5/etc/help/16.glossary/dem.def -grass5/etc/help/16.glossary/digdata.def -grass5/etc/help/16.glossary/digfile.def -grass5/etc/help/16.glossary/digimg.def -grass5/etc/help/16.glossary/digitize.def -grass5/etc/help/16.glossary/digitizer.def -grass5/etc/help/16.glossary/digthresh.def -grass5/etc/help/16.glossary/dlg.def -grass5/etc/help/16.glossary/dma.def -grass5/etc/help/16.glossary/driver.def -grass5/etc/help/16.glossary/dsplycoors.def -grass5/etc/help/16.glossary/dted.def -grass5/etc/help/16.glossary/easting.def -grass5/etc/help/16.glossary/editing.def -grass5/etc/help/16.glossary/element.def -grass5/etc/help/16.glossary/file.def -grass5/etc/help/16.glossary/geocoding.def -grass5/etc/help/16.glossary/georeg.def -grass5/etc/help/16.glossary/geowin.def -grass5/etc/help/16.glossary/gis.def -grass5/etc/help/16.glossary/graphframe.def -grass5/etc/help/16.glossary/graphmon.def -grass5/etc/help/16.glossary/gridformat.def -grass5/etc/help/16.glossary/gridmap.def -grass5/etc/help/16.glossary/grouping.def -grass5/etc/help/16.glossary/hardcopy.def -grass5/etc/help/16.glossary/igroup.def -grass5/etc/help/16.glossary/img.def -grass5/etc/help/16.glossary/imgpro.def -grass5/etc/help/16.glossary/import.def -grass5/etc/help/16.glossary/interactve.def -grass5/etc/help/16.glossary/island.def -grass5/etc/help/16.glossary/join.def -grass5/etc/help/16.glossary/label.def -grass5/etc/help/16.glossary/landsat.def -grass5/etc/help/16.glossary/layer.def -grass5/etc/help/16.glossary/legend.def -grass5/etc/help/16.glossary/line.def -grass5/etc/help/16.glossary/loc.def -grass5/etc/help/16.glossary/mapcoord.def -grass5/etc/help/16.glossary/mapdbase.def -grass5/etc/help/16.glossary/mapfeat.def -grass5/etc/help/16.glossary/mapgen.def -grass5/etc/help/16.glossary/maplayer.def -grass5/etc/help/16.glossary/mapset.def -grass5/etc/help/16.glossary/mapthresh.def -grass5/etc/help/16.glossary/mask.def -grass5/etc/help/16.glossary/menu.def -grass5/etc/help/16.glossary/monitor.def -grass5/etc/help/16.glossary/mouse.def -grass5/etc/help/16.glossary/mss.def -grass5/etc/help/16.glossary/neihdanal.def -grass5/etc/help/16.glossary/nodatacat.def -grass5/etc/help/16.glossary/node.def -grass5/etc/help/16.glossary/northing.def -grass5/etc/help/16.glossary/nullcat.def -grass5/etc/help/16.glossary/overlay.def -grass5/etc/help/16.glossary/plncoord.def -grass5/etc/help/16.glossary/point.def -grass5/etc/help/16.glossary/polygon.def -grass5/etc/help/16.glossary/projtn.def -grass5/etc/help/16.glossary/pruning.def -grass5/etc/help/16.glossary/ptgdev.def -grass5/etc/help/16.glossary/rast2vect.def -grass5/etc/help/16.glossary/rastdata.def -grass5/etc/help/16.glossary/rastfile.def -grass5/etc/help/16.glossary/rastmap.def -grass5/etc/help/16.glossary/reclass.def -grass5/etc/help/16.glossary/rectify.def -grass5/etc/help/16.glossary/registratn.def -grass5/etc/help/16.glossary/remsens.def -grass5/etc/help/16.glossary/res.def -grass5/etc/help/16.glossary/residual.def -grass5/etc/help/16.glossary/scale.def -grass5/etc/help/16.glossary/scan.def -grass5/etc/help/16.glossary/scrncoord.def -grass5/etc/help/16.glossary/site.def -grass5/etc/help/16.glossary/sitemap.def -grass5/etc/help/16.glossary/snap.def -grass5/etc/help/16.glossary/snapthrsh.def -grass5/etc/help/16.glossary/spot.def -grass5/etc/help/16.glossary/srchpth.def -grass5/etc/help/16.glossary/stplnsys.def -grass5/etc/help/16.glossary/subgroup.def -grass5/etc/help/16.glossary/supportfle.def -grass5/etc/help/16.glossary/tablet.def -grass5/etc/help/16.glossary/target.def -grass5/etc/help/16.glossary/threshold.def -grass5/etc/help/16.glossary/tm.def -grass5/etc/help/16.glossary/topology.def -grass5/etc/help/16.glossary/topomap.def -grass5/etc/help/16.glossary/transform.def -grass5/etc/help/16.glossary/unix.def -grass5/etc/help/16.glossary/utm.def -grass5/etc/help/16.glossary/utmzone.def -grass5/etc/help/16.glossary/vecdata.def -grass5/etc/help/16.glossary/vecfile.def -grass5/etc/help/16.glossary/vecmaps.def -grass5/etc/help/16.glossary/vector.def -grass5/etc/help/16.glossary/vi.def -grass5/etc/help/16.glossary/window.def -grass5/etc/help/16.glossary/workstn.def -grass5/etc/help/16.glossary/zone.def -grass5/etc/help/16.glossary/zoom.def -grass5/etc/help/17.manual/17.1h.display -grass5/etc/help/17.manual/17.1m.display -grass5/etc/help/17.manual/17.2h.general -grass5/etc/help/17.manual/17.2m.general -grass5/etc/help/17.manual/17.3h.imagery -grass5/etc/help/17.manual/17.3m.imagery -grass5/etc/help/17.manual/17.4h.mport -grass5/etc/help/17.manual/17.4m.mport -grass5/etc/help/17.manual/17.5h.print -grass5/etc/help/17.manual/17.5m.print -grass5/etc/help/17.manual/17.6h.raster -grass5/etc/help/17.manual/17.6m.raster -grass5/etc/help/17.manual/17.7h.sites -grass5/etc/help/17.manual/17.7m.sites -grass5/etc/help/17.manual/17.8h.vector -grass5/etc/help/17.manual/17.8m.vector -grass5/etc/help/17.manual/17.menu -grass5/etc/help/17.manual/Help.pages/3d.view.sh -grass5/etc/help/17.manual/Help.pages/Gen.Maps -grass5/etc/help/17.manual/Help.pages/Gen.tractmap -grass5/etc/help/17.manual/Help.pages/blend.sh -grass5/etc/help/17.manual/Help.pages/bug.report.sh -grass5/etc/help/17.manual/Help.pages/curcsh40 -grass5/etc/help/17.manual/Help.pages/d.3d -grass5/etc/help/17.manual/Help.pages/d.ask -grass5/etc/help/17.manual/Help.pages/d.colormode -grass5/etc/help/17.manual/Help.pages/d.colors -grass5/etc/help/17.manual/Help.pages/d.colortable -grass5/etc/help/17.manual/Help.pages/d.display -grass5/etc/help/17.manual/Help.pages/d.erase -grass5/etc/help/17.manual/Help.pages/d.font -grass5/etc/help/17.manual/Help.pages/d.frame -grass5/etc/help/17.manual/Help.pages/d.geodesic -grass5/etc/help/17.manual/Help.pages/d.graph -grass5/etc/help/17.manual/Help.pages/d.grid -grass5/etc/help/17.manual/Help.pages/d.his -grass5/etc/help/17.manual/Help.pages/d.histogram -grass5/etc/help/17.manual/Help.pages/d.icons -grass5/etc/help/17.manual/Help.pages/d.igraph -grass5/etc/help/17.manual/Help.pages/d.label -grass5/etc/help/17.manual/Help.pages/d.labels -grass5/etc/help/17.manual/Help.pages/d.legend -grass5/etc/help/17.manual/Help.pages/d.mapgraph -grass5/etc/help/17.manual/Help.pages/d.measure -grass5/etc/help/17.manual/Help.pages/d.measure.old -grass5/etc/help/17.manual/Help.pages/d.menu -grass5/etc/help/17.manual/Help.pages/d.mon -grass5/etc/help/17.manual/Help.pages/d.p.labels -grass5/etc/help/17.manual/Help.pages/d.paint.labels -grass5/etc/help/17.manual/Help.pages/d.points -grass5/etc/help/17.manual/Help.pages/d.profile -grass5/etc/help/17.manual/Help.pages/d.rast -grass5/etc/help/17.manual/Help.pages/d.rast.arrow -grass5/etc/help/17.manual/Help.pages/d.rast.edit -grass5/etc/help/17.manual/Help.pages/d.rast.num -grass5/etc/help/17.manual/Help.pages/d.rast.zoom -grass5/etc/help/17.manual/Help.pages/d.rgb -grass5/etc/help/17.manual/Help.pages/d.rhumbline -grass5/etc/help/17.manual/Help.pages/d.save -grass5/etc/help/17.manual/Help.pages/d.savescreen -grass5/etc/help/17.manual/Help.pages/d.scale -grass5/etc/help/17.manual/Help.pages/d.scale2 -grass5/etc/help/17.manual/Help.pages/d.sites -grass5/etc/help/17.manual/Help.pages/d.text -grass5/etc/help/17.manual/Help.pages/d.title -grass5/etc/help/17.manual/Help.pages/d.vect -grass5/etc/help/17.manual/Help.pages/d.vect.dlg -grass5/etc/help/17.manual/Help.pages/d.what.rast -grass5/etc/help/17.manual/Help.pages/d.what.vect -grass5/etc/help/17.manual/Help.pages/d.where -grass5/etc/help/17.manual/Help.pages/d.zoom -grass5/etc/help/17.manual/Help.pages/dcorrelate.sh -grass5/etc/help/17.manual/Help.pages/demo.sh -grass5/etc/help/17.manual/Help.pages/exit -grass5/etc/help/17.manual/Help.pages/g.access -grass5/etc/help/17.manual/Help.pages/g.ask -grass5/etc/help/17.manual/Help.pages/g.copy -grass5/etc/help/17.manual/Help.pages/g.filename -grass5/etc/help/17.manual/Help.pages/g.findfile -grass5/etc/help/17.manual/Help.pages/g.gisenv -grass5/etc/help/17.manual/Help.pages/g.help -grass5/etc/help/17.manual/Help.pages/g.list -grass5/etc/help/17.manual/Help.pages/g.manual -grass5/etc/help/17.manual/Help.pages/g.mapsets -grass5/etc/help/17.manual/Help.pages/g.region -grass5/etc/help/17.manual/Help.pages/g.remove -grass5/etc/help/17.manual/Help.pages/g.rename -grass5/etc/help/17.manual/Help.pages/g.setproj -grass5/etc/help/17.manual/Help.pages/g.tempfile -grass5/etc/help/17.manual/Help.pages/g.version -grass5/etc/help/17.manual/Help.pages/gcorrelate.sh -grass5/etc/help/17.manual/Help.pages/grass.logo.sh -grass5/etc/help/17.manual/Help.pages/hsv.rgb.sh -grass5/etc/help/17.manual/Help.pages/i.build.blk -grass5/etc/help/17.manual/Help.pages/i.camera -grass5/etc/help/17.manual/Help.pages/i.cca -grass5/etc/help/17.manual/Help.pages/i.class -grass5/etc/help/17.manual/Help.pages/i.cluster -grass5/etc/help/17.manual/Help.pages/i.colors -grass5/etc/help/17.manual/Help.pages/i.composite -grass5/etc/help/17.manual/Help.pages/i.fft -grass5/etc/help/17.manual/Help.pages/i.gensig -grass5/etc/help/17.manual/Help.pages/i.grey.scale -grass5/etc/help/17.manual/Help.pages/i.group -grass5/etc/help/17.manual/Help.pages/i.his.rgb -grass5/etc/help/17.manual/Help.pages/i.ifft -grass5/etc/help/17.manual/Help.pages/i.maxlik -grass5/etc/help/17.manual/Help.pages/i.median -grass5/etc/help/17.manual/Help.pages/i.mod.camera -grass5/etc/help/17.manual/Help.pages/i.ortho.photo -grass5/etc/help/17.manual/Help.pages/i.pca -grass5/etc/help/17.manual/Help.pages/i.points -grass5/etc/help/17.manual/Help.pages/i.quantize -grass5/etc/help/17.manual/Help.pages/i.rectify -grass5/etc/help/17.manual/Help.pages/i.rectify.blk -grass5/etc/help/17.manual/Help.pages/i.rgb.his -grass5/etc/help/17.manual/Help.pages/i.tape.mss -grass5/etc/help/17.manual/Help.pages/i.tape.mss.h -grass5/etc/help/17.manual/Help.pages/i.tape.other -grass5/etc/help/17.manual/Help.pages/i.tape.spot -grass5/etc/help/17.manual/Help.pages/i.tape.tm -grass5/etc/help/17.manual/Help.pages/i.tape.tm.fast -grass5/etc/help/17.manual/Help.pages/i.target -grass5/etc/help/17.manual/Help.pages/i.zc -grass5/etc/help/17.manual/Help.pages/m.datum.shift -grass5/etc/help/17.manual/Help.pages/m.dem.examine -grass5/etc/help/17.manual/Help.pages/m.dem.extract -grass5/etc/help/17.manual/Help.pages/m.dem.extract2 -grass5/etc/help/17.manual/Help.pages/m.dmaUSGSread -grass5/etc/help/17.manual/Help.pages/m.dted.examine -grass5/etc/help/17.manual/Help.pages/m.dted.extract -grass5/etc/help/17.manual/Help.pages/m.eigensystem -grass5/etc/help/17.manual/Help.pages/m.examine.tape -grass5/etc/help/17.manual/Help.pages/m.flip -grass5/etc/help/17.manual/Help.pages/m.gc2ll -grass5/etc/help/17.manual/Help.pages/m.ll2gc -grass5/etc/help/17.manual/Help.pages/m.ll2u -grass5/etc/help/17.manual/Help.pages/m.lulc.USGS -grass5/etc/help/17.manual/Help.pages/m.lulc.read -grass5/etc/help/17.manual/Help.pages/m.proj -grass5/etc/help/17.manual/Help.pages/m.region.ll -grass5/etc/help/17.manual/Help.pages/m.rot90 -grass5/etc/help/17.manual/Help.pages/m.tiger.region -grass5/etc/help/17.manual/Help.pages/m.u2ll -grass5/etc/help/17.manual/Help.pages/old.cmd.sh -grass5/etc/help/17.manual/Help.pages/p.chart -grass5/etc/help/17.manual/Help.pages/p.colors -grass5/etc/help/17.manual/Help.pages/p.icons -grass5/etc/help/17.manual/Help.pages/p.labels -grass5/etc/help/17.manual/Help.pages/p.map -grass5/etc/help/17.manual/Help.pages/p.ppm -grass5/etc/help/17.manual/Help.pages/p.screen -grass5/etc/help/17.manual/Help.pages/p.select -grass5/etc/help/17.manual/Help.pages/parser -grass5/etc/help/17.manual/Help.pages/r.average -grass5/etc/help/17.manual/Help.pages/r.basins.fill -grass5/etc/help/17.manual/Help.pages/r.binfer -grass5/etc/help/17.manual/Help.pages/r.buffer -grass5/etc/help/17.manual/Help.pages/r.cats -grass5/etc/help/17.manual/Help.pages/r.cca -grass5/etc/help/17.manual/Help.pages/r.clump -grass5/etc/help/17.manual/Help.pages/r.coin -grass5/etc/help/17.manual/Help.pages/r.colors -grass5/etc/help/17.manual/Help.pages/r.combine -grass5/etc/help/17.manual/Help.pages/r.compress -grass5/etc/help/17.manual/Help.pages/r.contour -grass5/etc/help/17.manual/Help.pages/r.cost -grass5/etc/help/17.manual/Help.pages/r.covar -grass5/etc/help/17.manual/Help.pages/r.cross -grass5/etc/help/17.manual/Help.pages/r.describe -grass5/etc/help/17.manual/Help.pages/r.digit -grass5/etc/help/17.manual/Help.pages/r.drain -grass5/etc/help/17.manual/Help.pages/r.fft -grass5/etc/help/17.manual/Help.pages/r.grow -grass5/etc/help/17.manual/Help.pages/r.his.rgb -grass5/etc/help/17.manual/Help.pages/r.ifft -grass5/etc/help/17.manual/Help.pages/r.in.ascii -grass5/etc/help/17.manual/Help.pages/r.in.ll -grass5/etc/help/17.manual/Help.pages/r.in.poly -grass5/etc/help/17.manual/Help.pages/r.in.sunrast -grass5/etc/help/17.manual/Help.pages/r.infer -grass5/etc/help/17.manual/Help.pages/r.info -grass5/etc/help/17.manual/Help.pages/r.line -grass5/etc/help/17.manual/Help.pages/r.los -grass5/etc/help/17.manual/Help.pages/r.mapcalc -grass5/etc/help/17.manual/Help.pages/r.mapmask -grass5/etc/help/17.manual/Help.pages/r.mask -grass5/etc/help/17.manual/Help.pages/r.mask.points -grass5/etc/help/17.manual/Help.pages/r.median -grass5/etc/help/17.manual/Help.pages/r.mfilter -grass5/etc/help/17.manual/Help.pages/r.neighbors -grass5/etc/help/17.manual/Help.pages/r.out.ascii -grass5/etc/help/17.manual/Help.pages/r.out.tga -grass5/etc/help/17.manual/Help.pages/r.pat.place -grass5/etc/help/17.manual/Help.pages/r.patch -grass5/etc/help/17.manual/Help.pages/r.pca -grass5/etc/help/17.manual/Help.pages/r.poly -grass5/etc/help/17.manual/Help.pages/r.profile -grass5/etc/help/17.manual/Help.pages/r.random -grass5/etc/help/17.manual/Help.pages/r.reclass -grass5/etc/help/17.manual/Help.pages/r.report -grass5/etc/help/17.manual/Help.pages/r.resample -grass5/etc/help/17.manual/Help.pages/r.rescale -grass5/etc/help/17.manual/Help.pages/r.rgb.his -grass5/etc/help/17.manual/Help.pages/r.slope.aspect -grass5/etc/help/17.manual/Help.pages/r.stats -grass5/etc/help/17.manual/Help.pages/r.support -grass5/etc/help/17.manual/Help.pages/r.surf.contour -grass5/etc/help/17.manual/Help.pages/r.surf.idw -grass5/etc/help/17.manual/Help.pages/r.surf.idw2 -grass5/etc/help/17.manual/Help.pages/r.surface -grass5/etc/help/17.manual/Help.pages/r.thin -grass5/etc/help/17.manual/Help.pages/r.traj -grass5/etc/help/17.manual/Help.pages/r.traj.data -grass5/etc/help/17.manual/Help.pages/r.transect -grass5/etc/help/17.manual/Help.pages/r.volume -grass5/etc/help/17.manual/Help.pages/r.water.outlet -grass5/etc/help/17.manual/Help.pages/r.watershed -grass5/etc/help/17.manual/Help.pages/r.weight -grass5/etc/help/17.manual/Help.pages/r.weight.new -grass5/etc/help/17.manual/Help.pages/r.weight2 -grass5/etc/help/17.manual/Help.pages/r.what -grass5/etc/help/17.manual/Help.pages/r.zc -grass5/etc/help/17.manual/Help.pages/rgb.hsv.sh -grass5/etc/help/17.manual/Help.pages/s.db.rim -grass5/etc/help/17.manual/Help.pages/s.in.ascii -grass5/etc/help/17.manual/Help.pages/s.menu -grass5/etc/help/17.manual/Help.pages/s.out.ascii -grass5/etc/help/17.manual/Help.pages/s.surf.idw -grass5/etc/help/17.manual/Help.pages/s.surf.tps -grass5/etc/help/17.manual/Help.pages/shade.rel.sh -grass5/etc/help/17.manual/Help.pages/show.color.sh -grass5/etc/help/17.manual/Help.pages/show.fonts.sh -grass5/etc/help/17.manual/Help.pages/slide.show.sh -grass5/etc/help/17.manual/Help.pages/split.sh -grass5/etc/help/17.manual/Help.pages/start.man.sh -grass5/etc/help/17.manual/Help.pages/tig.rim.sh -grass5/etc/help/17.manual/Help.pages/tiger.info.sh -grass5/etc/help/17.manual/Help.pages/v.alabel -grass5/etc/help/17.manual/Help.pages/v.area -grass5/etc/help/17.manual/Help.pages/v.cadlabel -grass5/etc/help/17.manual/Help.pages/v.clean -grass5/etc/help/17.manual/Help.pages/v.cutter -grass5/etc/help/17.manual/Help.pages/v.db.rim -grass5/etc/help/17.manual/Help.pages/v.digit -grass5/etc/help/17.manual/Help.pages/v.digit2 -grass5/etc/help/17.manual/Help.pages/v.import -grass5/etc/help/17.manual/Help.pages/v.in.arc -grass5/etc/help/17.manual/Help.pages/v.in.ascii -grass5/etc/help/17.manual/Help.pages/v.in.dlg -grass5/etc/help/17.manual/Help.pages/v.in.dlg2 -grass5/etc/help/17.manual/Help.pages/v.in.dxf -grass5/etc/help/17.manual/Help.pages/v.in.tig.rim -grass5/etc/help/17.manual/Help.pages/v.in.tiger -grass5/etc/help/17.manual/Help.pages/v.in.transects -grass5/etc/help/17.manual/Help.pages/v.mkcontour -grass5/etc/help/17.manual/Help.pages/v.mkgrid -grass5/etc/help/17.manual/Help.pages/v.mkquads -grass5/etc/help/17.manual/Help.pages/v.out.arc -grass5/etc/help/17.manual/Help.pages/v.out.ascii -grass5/etc/help/17.manual/Help.pages/v.out.dlg -grass5/etc/help/17.manual/Help.pages/v.out.dxf -grass5/etc/help/17.manual/Help.pages/v.out.moss -grass5/etc/help/17.manual/Help.pages/v.patch -grass5/etc/help/17.manual/Help.pages/v.prune -grass5/etc/help/17.manual/Help.pages/v.spag -grass5/etc/help/17.manual/Help.pages/v.stats -grass5/etc/help/17.manual/Help.pages/v.support -grass5/etc/help/17.manual/Help.pages/v.to.rast -grass5/etc/help/17.manual/Help.pages/v.to.sites -grass5/etc/help/17.manual/Help.pages/v.transform -grass5/etc/help/17.manual/Help.pages/v.trim -grass5/etc/help/17.manual/Help.pages/z.parser -grass5/etc/help/17.manual/manual.1 -grass5/etc/help/18.biblio/adp.n-87.22 -grass5/etc/help/18.biblio/adp.n-89.14 -grass5/etc/help/18.biblio/adp.n-89.15 -grass5/etc/help/18.biblio/adp.n-89.21 -grass5/etc/help/18.biblio/adp.n-89.22 -grass5/etc/help/18.biblio/arda.9.83 -grass5/etc/help/18.biblio/burrough -grass5/etc/help/18.biblio/clip.87.1.1 -grass5/etc/help/18.biblio/clip.88.2.1 -grass5/etc/help/18.biblio/clip.88.2.2 -grass5/etc/help/18.biblio/clip.88.2.3 -grass5/etc/help/18.biblio/clip.89.3.1 -grass5/etc/help/18.biblio/clip.89.3.2 -grass5/etc/help/18.biblio/clip.89.3.3 -grass5/etc/help/18.biblio/clip.90.4.1 -grass5/etc/help/18.biblio/clip.90.4.2 -grass5/etc/help/18.biblio/clip.90.4.3 -grass5/etc/help/18.biblio/clip.all -grass5/etc/help/18.biblio/coe.sw.10.84 -grass5/etc/help/18.biblio/eosat.205-5 -grass5/etc/help/18.biblio/fs.en-13 -grass5/etc/help/18.biblio/fs.en-41 -grass5/etc/help/18.biblio/fs.en-48 -grass5/etc/help/18.biblio/glusic.61 -grass5/etc/help/18.biblio/info.ctr -grass5/etc/help/18.biblio/navocean -grass5/etc/help/18.biblio/ncdc.gde -grass5/etc/help/18.biblio/ngci.prodcs -grass5/etc/help/18.biblio/ngdc.pubs -grass5/etc/help/18.biblio/nodc.gde -grass5/etc/help/18.biblio/ornl.geo -grass5/etc/help/18.biblio/range.02.88 -grass5/etc/help/18.biblio/scs.pubs -grass5/etc/help/18.biblio/seppelin -grass5/etc/help/18.biblio/snyder -grass5/etc/help/18.biblio/sr.n-90.02 -grass5/etc/help/18.biblio/sr.n-90.16 -grass5/etc/help/18.biblio/storet.pubs -grass5/etc/help/18.biblio/tm.n-89.18 -grass5/etc/help/18.biblio/tm.n-89.20 -grass5/etc/help/18.biblio/tm.n-89.23 -grass5/etc/help/18.biblio/tm.n-89.24 -grass5/etc/help/18.biblio/tm.n-89.25 -grass5/etc/help/18.biblio/tr.n-68 -grass5/etc/help/18.biblio/tr.n-86.12 -grass5/etc/help/18.biblio/tr.n-87.02 -grass5/etc/help/18.biblio/tr.n-88.01 -grass5/etc/help/18.biblio/unix -grass5/etc/help/18.biblio/unpub.rmap.90 -grass5/etc/help/18.biblio/usgs.gde.5 -grass5/etc/help/18.biblio/usgs.pubs -grass5/etc/help/Commands.def/3dviewsh.def -grass5/etc/help/Commands.def/blendsh.def -grass5/etc/help/Commands.def/d3d.def -grass5/etc/help/Commands.def/dask.def -grass5/etc/help/Commands.def/dclrmd.def -grass5/etc/help/Commands.def/dclrtb.def -grass5/etc/help/Commands.def/dcolors.def -grass5/etc/help/Commands.def/dcorr.def -grass5/etc/help/Commands.def/ddisplay.def -grass5/etc/help/Commands.def/derase.def -grass5/etc/help/Commands.def/dfont.def -grass5/etc/help/Commands.def/dframe.def -grass5/etc/help/Commands.def/dgeo.def -grass5/etc/help/Commands.def/dgraph.def -grass5/etc/help/Commands.def/dgrid.def -grass5/etc/help/Commands.def/dhis.def -grass5/etc/help/Commands.def/dhisto.def -grass5/etc/help/Commands.def/dicons.def -grass5/etc/help/Commands.def/digraph.def -grass5/etc/help/Commands.def/dlabel.def -grass5/etc/help/Commands.def/dlabels.def -grass5/etc/help/Commands.def/dlegend.def -grass5/etc/help/Commands.def/dmapgraph.def -grass5/etc/help/Commands.def/dmeas.def -grass5/etc/help/Commands.def/dmeasureold.def -grass5/etc/help/Commands.def/dmenu.def -grass5/etc/help/Commands.def/dplabels.def -grass5/etc/help/Commands.def/dprof.def -grass5/etc/help/Commands.def/dptlab.def -grass5/etc/help/Commands.def/dpts.def -grass5/etc/help/Commands.def/drast.def -grass5/etc/help/Commands.def/drgb.def -grass5/etc/help/Commands.def/drhline.def -grass5/etc/help/Commands.def/dsave.def -grass5/etc/help/Commands.def/dscale.def -grass5/etc/help/Commands.def/dsites.def -grass5/etc/help/Commands.def/dsvscrn.def -grass5/etc/help/Commands.def/dtext.def -grass5/etc/help/Commands.def/dtitle.def -grass5/etc/help/Commands.def/dvect.def -grass5/etc/help/Commands.def/dvectdlg.def -grass5/etc/help/Commands.def/dwhat.def -grass5/etc/help/Commands.def/dwhere.def -grass5/etc/help/Commands.def/dwrast.def -grass5/etc/help/Commands.def/dwvect.def -grass5/etc/help/Commands.def/exit.def -grass5/etc/help/Commands.def/gaccess.def -grass5/etc/help/Commands.def/gask.def -grass5/etc/help/Commands.def/gcopy.def -grass5/etc/help/Commands.def/gcorr.def -grass5/etc/help/Commands.def/gfilename.def -grass5/etc/help/Commands.def/gfindfile.def -grass5/etc/help/Commands.def/ggisenv.def -grass5/etc/help/Commands.def/ghelp.def -grass5/etc/help/Commands.def/glist.def -grass5/etc/help/Commands.def/gmanual.def -grass5/etc/help/Commands.def/gmapsets.def -grass5/etc/help/Commands.def/gregion.def -grass5/etc/help/Commands.def/gremove.def -grass5/etc/help/Commands.def/grename.def -grass5/etc/help/Commands.def/grlogo.def -grass5/etc/help/Commands.def/gsetproj.def -grass5/etc/help/Commands.def/gversion.def -grass5/etc/help/Commands.def/hsvrgb.def -grass5/etc/help/Commands.def/ibldblk.def -grass5/etc/help/Commands.def/icca.def -grass5/etc/help/Commands.def/iclass.def -grass5/etc/help/Commands.def/iclrs.def -grass5/etc/help/Commands.def/iclust.def -grass5/etc/help/Commands.def/icomp.def -grass5/etc/help/Commands.def/ifft.def -grass5/etc/help/Commands.def/igensig.def -grass5/etc/help/Commands.def/igroup.def -grass5/etc/help/Commands.def/igryscl.def -grass5/etc/help/Commands.def/ihrgb.def -grass5/etc/help/Commands.def/iifft.def -grass5/etc/help/Commands.def/imaxlik.def -grass5/etc/help/Commands.def/imaxlikorig.def -grass5/etc/help/Commands.def/imedian.def -grass5/etc/help/Commands.def/iorthophoto.def -grass5/etc/help/Commands.def/ipca.def -grass5/etc/help/Commands.def/ipts.def -grass5/etc/help/Commands.def/iquantize.def -grass5/etc/help/Commands.def/irecblk.def -grass5/etc/help/Commands.def/irect.def -grass5/etc/help/Commands.def/irhis.def -grass5/etc/help/Commands.def/irmfilt.def -grass5/etc/help/Commands.def/irmpcalc.def -grass5/etc/help/Commands.def/irneigh.def -grass5/etc/help/Commands.def/itapespot.def -grass5/etc/help/Commands.def/itapetmfast.def -grass5/etc/help/Commands.def/itarget.def -grass5/etc/help/Commands.def/itmss.def -grass5/etc/help/Commands.def/itmssh.def -grass5/etc/help/Commands.def/itother.def -grass5/etc/help/Commands.def/ittm.def -grass5/etc/help/Commands.def/izc.def -grass5/etc/help/Commands.def/mdemx.def -grass5/etc/help/Commands.def/mdemxt.def -grass5/etc/help/Commands.def/mdmausgs.def -grass5/etc/help/Commands.def/mdtedx.def -grass5/etc/help/Commands.def/mdtedxt.def -grass5/etc/help/Commands.def/mextape.def -grass5/etc/help/Commands.def/mll2u.def -grass5/etc/help/Commands.def/mlulc.def -grass5/etc/help/Commands.def/mproj.def -grass5/etc/help/Commands.def/mregll.def -grass5/etc/help/Commands.def/mrot90.def -grass5/etc/help/Commands.def/mu2ll.def -grass5/etc/help/Commands.def/oldcmd.def -grass5/etc/help/Commands.def/pchart.def -grass5/etc/help/Commands.def/pcolor.def -grass5/etc/help/Commands.def/picon.def -grass5/etc/help/Commands.def/plabel.def -grass5/etc/help/Commands.def/pmap.def -grass5/etc/help/Commands.def/pscreen.def -grass5/etc/help/Commands.def/psel.def -grass5/etc/help/Commands.def/ravg.def -grass5/etc/help/Commands.def/rbasfill.def -grass5/etc/help/Commands.def/rbuffer.def -grass5/etc/help/Commands.def/rcats.def -grass5/etc/help/Commands.def/rclump.def -grass5/etc/help/Commands.def/rcoin.def -grass5/etc/help/Commands.def/rcombine.def -grass5/etc/help/Commands.def/rcontour.def -grass5/etc/help/Commands.def/rcost.def -grass5/etc/help/Commands.def/rcovar.def -grass5/etc/help/Commands.def/rcross.def -grass5/etc/help/Commands.def/rdesc.def -grass5/etc/help/Commands.def/rdigit.def -grass5/etc/help/Commands.def/rdrain.def -grass5/etc/help/Commands.def/rgbhsv.def -grass5/etc/help/Commands.def/rgrow.def -grass5/etc/help/Commands.def/rh20shed.def -grass5/etc/help/Commands.def/rinasc.def -grass5/etc/help/Commands.def/rinfer.def -grass5/etc/help/Commands.def/rinfo.def -grass5/etc/help/Commands.def/rinll.def -grass5/etc/help/Commands.def/rinpoly.def -grass5/etc/help/Commands.def/rline.def -grass5/etc/help/Commands.def/rlos.def -grass5/etc/help/Commands.def/rmapcalc.def -grass5/etc/help/Commands.def/rmaskpoints.def -grass5/etc/help/Commands.def/rmedian.def -grass5/etc/help/Commands.def/rneigh.def -grass5/etc/help/Commands.def/routasc.def -grass5/etc/help/Commands.def/rpatch.def -grass5/etc/help/Commands.def/rpoly.def -grass5/etc/help/Commands.def/rprof.def -grass5/etc/help/Commands.def/rrand.def -grass5/etc/help/Commands.def/rreclass.def -grass5/etc/help/Commands.def/rrpt.def -grass5/etc/help/Commands.def/rslasp.def -grass5/etc/help/Commands.def/rstats.def -grass5/etc/help/Commands.def/rsupport.def -grass5/etc/help/Commands.def/rsurfidw.def -grass5/etc/help/Commands.def/rthin.def -grass5/etc/help/Commands.def/rtraj.def -grass5/etc/help/Commands.def/rvol.def -grass5/etc/help/Commands.def/rwateroutlet.def -grass5/etc/help/Commands.def/rweight.def -grass5/etc/help/Commands.def/rweight2.def -grass5/etc/help/Commands.def/rwhat.def -grass5/etc/help/Commands.def/sdb.def -grass5/etc/help/Commands.def/sdrelsh.def -grass5/etc/help/Commands.def/shclr.def -grass5/etc/help/Commands.def/shfts.def -grass5/etc/help/Commands.def/sinascii.def -grass5/etc/help/Commands.def/slshow.def -grass5/etc/help/Commands.def/smenu.def -grass5/etc/help/Commands.def/soutascii.def -grass5/etc/help/Commands.def/splitsh.def -grass5/etc/help/Commands.def/ssurfidw.def -grass5/etc/help/Commands.def/ssurftps.def -grass5/etc/help/Commands.def/tigerinfosh.def -grass5/etc/help/Commands.def/tigrimsh.def -grass5/etc/help/Commands.def/v2rast.def -grass5/etc/help/Commands.def/v2sites.def -grass5/etc/help/Commands.def/valabel.def -grass5/etc/help/Commands.def/vcutter.def -grass5/etc/help/Commands.def/vdb.def -grass5/etc/help/Commands.def/vdigit.def -grass5/etc/help/Commands.def/vdigit2.def -grass5/etc/help/Commands.def/vimport.def -grass5/etc/help/Commands.def/vinarc.def -grass5/etc/help/Commands.def/vinasc.def -grass5/etc/help/Commands.def/vindlg.def -grass5/etc/help/Commands.def/vindlg2.def -grass5/etc/help/Commands.def/vindxf.def -grass5/etc/help/Commands.def/vintigrim.def -grass5/etc/help/Commands.def/vintransects.def -grass5/etc/help/Commands.def/vmkcont.def -grass5/etc/help/Commands.def/vmkgrd.def -grass5/etc/help/Commands.def/vmkqds.def -grass5/etc/help/Commands.def/voutarc.def -grass5/etc/help/Commands.def/voutasc.def -grass5/etc/help/Commands.def/voutdlg.def -grass5/etc/help/Commands.def/voutdxf.def -grass5/etc/help/Commands.def/voutmos.def -grass5/etc/help/Commands.def/vpatch.def -grass5/etc/help/Commands.def/vprune.def -grass5/etc/help/Commands.def/vspag.def -grass5/etc/help/Commands.def/vstats.def -grass5/etc/help/Commands.def/vsupport.def -grass5/etc/help/Commands.def/vtrans.def -grass5/etc/help/INDEX -grass5/etc/help/LOOKUP -grass5/etc/help/VERBOSE -grass5/etc/help/def.list -grass5/etc/i.ask -grass5/etc/i.find -grass5/etc/i.oif/i.oifcalc -grass5/etc/i.oif/m.cutmatrix -grass5/etc/i.oif/r.stddev -grass5/etc/imagery/colors -grass5/etc/imagery/editgroup -grass5/etc/imagery/photo.2image -grass5/etc/imagery/photo.2target -grass5/etc/imagery/photo.camera -grass5/etc/imagery/photo.elev -grass5/etc/imagery/photo.init -grass5/etc/imagery/photo.rectify -grass5/etc/imagery/photo.target -grass5/etc/imagery/subgroup -grass5/etc/imagery/title -grass5/etc/lister/cell -grass5/etc/lock -grass5/etc/modcats -grass5/etc/modcolr -grass5/etc/modhead -grass5/etc/modhist -grass5/etc/mon.list -grass5/etc/mon.release -grass5/etc/mon.select -grass5/etc/mon.start -grass5/etc/mon.status -grass5/etc/mon.stop -grass5/etc/mon.which -grass5/etc/monitorcap -grass5/etc/paint/char.test -grass5/etc/paint/driver.rsh -grass5/etc/paint/driver.sh/preview -grass5/etc/paint/driver.sh/preview2 -grass5/etc/paint/driver.shell -grass5/etc/paint/driver/preview -grass5/etc/paint/driver/preview2 -grass5/etc/paint/header -grass5/etc/paint/hres.test -grass5/etc/paint/patcc -grass5/etc/paint/patterns -grass5/etc/paint/patterns.index -grass5/etc/paint/pixel.test -grass5/etc/paint/vres.test -grass5/etc/polish -grass5/etc/projections -grass5/etc/r.combine -grass5/etc/r.fea/cfeapro.bd -grass5/etc/r.fea/datafea -grass5/etc/r.fea/feapro.bd -grass5/etc/r.fea/querydata -grass5/etc/r.fea/select_basins -grass5/etc/r.fea/show.sh -grass5/etc/r.weight -grass5/etc/run -grass5/etc/s.sweep -grass5/etc/sites/char_rpt -grass5/etc/sites/driver -grass5/etc/sites/meta_report -grass5/etc/sites/meta_to_S -grass5/etc/sites/occur_rpt -grass5/etc/sites/put_gis_sl -grass5/etc/sites/site_mask -grass5/etc/sites/site_reports -grass5/etc/sites/sites_in_cell -grass5/etc/sites/sites_to_cell -grass5/etc/sroff -grass5/etc/state27 -grass5/etc/state83 -grass5/etc/v.build -grass5/etc/v.from.3 -grass5/etc/water/ram -grass5/etc/water/seg -grass5/fonts/cyrilc -grass5/fonts/gothgbt -grass5/fonts/gothgrt -grass5/fonts/gothitt -grass5/fonts/greekc -grass5/fonts/greekcs -grass5/fonts/greekp -grass5/fonts/greeks -grass5/fonts/italicc -grass5/fonts/italiccs -grass5/fonts/italict -grass5/fonts/romanc -grass5/fonts/romancs -grass5/fonts/romand -grass5/fonts/romans -grass5/fonts/romant -grass5/fonts/scriptc -grass5/fonts/scripts -grass5/man/1/.class-title -grass5/man/1/d.3d -grass5/man/1/d.ask -grass5/man/1/d.colormode -grass5/man/1/d.colors -grass5/man/1/d.colortable -grass5/man/1/d.display -grass5/man/1/d.erase -grass5/man/1/d.font -grass5/man/1/d.frame -grass5/man/1/d.geodesic -grass5/man/1/d.graph -grass5/man/1/d.grid -grass5/man/1/d.his -grass5/man/1/d.histogram -grass5/man/1/d.icons -grass5/man/1/d.label -grass5/man/1/d.leg.thin -grass5/man/1/d.legend -grass5/man/1/d.mapgraph -grass5/man/1/d.measure -grass5/man/1/d.menu -grass5/man/1/d.mon -grass5/man/1/d.paint.labels -grass5/man/1/d.points -grass5/man/1/d.profile -grass5/man/1/d.rast -grass5/man/1/d.rgb -grass5/man/1/d.rhumbline -grass5/man/1/d.save -grass5/man/1/d.scale -grass5/man/1/d.siter -grass5/man/1/d.sites -grass5/man/1/d.sites.qual -grass5/man/1/d.text -grass5/man/1/d.title -grass5/man/1/d.vect -grass5/man/1/d.what.rast -grass5/man/1/d.what.vect -grass5/man/1/d.where -grass5/man/1/d.zoom -grass5/man/1/exit -grass5/man/1/g.access -grass5/man/1/g.ask -grass5/man/1/g.copy -grass5/man/1/g.filename -grass5/man/1/g.findfile -grass5/man/1/g.gisenv -grass5/man/1/g.help -grass5/man/1/g.list -grass5/man/1/g.manual -grass5/man/1/g.mapsets -grass5/man/1/g.region -grass5/man/1/g.remove -grass5/man/1/g.rename -grass5/man/1/g.setproj -grass5/man/1/g.tempfile -grass5/man/1/g.version -grass5/man/1/i.cca -grass5/man/1/i.class -grass5/man/1/i.colors -grass5/man/1/i.composite -grass5/man/1/i.fft -grass5/man/1/i.grey.scale -grass5/man/1/i.group -grass5/man/1/i.his.rgb -grass5/man/1/i.ifft -grass5/man/1/i.maxlik -grass5/man/1/i.pca -grass5/man/1/i.points -grass5/man/1/i.points3 -grass5/man/1/i.rectify -grass5/man/1/i.rectify3 -grass5/man/1/i.rgb.his -grass5/man/1/i.tape.mss -grass5/man/1/i.tape.mss.h -grass5/man/1/i.tape.other -grass5/man/1/i.tape.tm -grass5/man/1/i.tape.tm3 -grass5/man/1/i.target -grass5/man/1/i.zc -grass5/man/1/m.clump -grass5/man/1/m.datum.shift -grass5/man/1/m.dem.examine -grass5/man/1/m.dmaUSGSread -grass5/man/1/m.dted.examine -grass5/man/1/m.dted.extract -grass5/man/1/m.examine.tape -grass5/man/1/m.gc2ll -grass5/man/1/m.in.e00 -grass5/man/1/m.in.stf1.db3 -grass5/man/1/m.ll2gc -grass5/man/1/m.ll2u -grass5/man/1/m.region.ll -grass5/man/1/m.rot90 -grass5/man/1/m.u2ll -grass5/man/1/nviz2.2 -grass5/man/1/p.chart -grass5/man/1/p.colors -grass5/man/1/p.icons -grass5/man/1/p.labels -grass5/man/1/p.map -grass5/man/1/p.ppm -grass5/man/1/p.select -grass5/man/1/p.vrml -grass5/man/1/parser -grass5/man/1/r.average -grass5/man/1/r.basins.fill -grass5/man/1/r.bilinear -grass5/man/1/r.binfer -grass5/man/1/r.buffer -grass5/man/1/r.cats -grass5/man/1/r.circle -grass5/man/1/r.clump -grass5/man/1/r.coin -grass5/man/1/r.colors -grass5/man/1/r.combine -grass5/man/1/r.compress -grass5/man/1/r.cost -grass5/man/1/r.covar -grass5/man/1/r.cross -grass5/man/1/r.describe -grass5/man/1/r.drain -grass5/man/1/r.grow -grass5/man/1/r.in.arc -grass5/man/1/r.in.ascii -grass5/man/1/r.in.gif -grass5/man/1/r.in.hdf -grass5/man/1/r.in.ll -grass5/man/1/r.in.pbm -grass5/man/1/r.in.ppm -grass5/man/1/r.infer -grass5/man/1/r.info -grass5/man/1/r.le.dist -grass5/man/1/r.le.null -grass5/man/1/r.le.patch -grass5/man/1/r.le.pixel -grass5/man/1/r.le.rename -grass5/man/1/r.le.setup -grass5/man/1/r.le.trace -grass5/man/1/r.los -grass5/man/1/r.mapcalc -grass5/man/1/r.mask -grass5/man/1/r.mfilter -grass5/man/1/r.neighbors -grass5/man/1/r.null -grass5/man/1/r.out.agnps -grass5/man/1/r.out.arc -grass5/man/1/r.out.ascii -grass5/man/1/r.out.mpeg -grass5/man/1/r.out.ppm -grass5/man/1/r.out.tiff -grass5/man/1/r.patch -grass5/man/1/r.plane -grass5/man/1/r.poly -grass5/man/1/r.profile -grass5/man/1/r.proj -grass5/man/1/r.quant -grass5/man/1/r.random -grass5/man/1/r.rational.regression -grass5/man/1/r.reclass -grass5/man/1/r.report -grass5/man/1/r.resample -grass5/man/1/r.rescale -grass5/man/1/r.slope.aspect -grass5/man/1/r.spreadpath -grass5/man/1/r.stage3 -grass5/man/1/r.stats -grass5/man/1/r.sun -grass5/man/1/r.support -grass5/man/1/r.surf.fractal -grass5/man/1/r.surf.gauss -grass5/man/1/r.surf.idw -grass5/man/1/r.surf.idw2 -grass5/man/1/r.surf.random -grass5/man/1/r.surf.xy -grass5/man/1/r.timestamp -grass5/man/1/r.traj.data -grass5/man/1/r.transect -grass5/man/1/r.tribs -grass5/man/1/r.volume -grass5/man/1/r.watershed -grass5/man/1/r.weight -grass5/man/1/r.what -grass5/man/1/s.in.ascii -grass5/man/1/s.info -grass5/man/1/s.menu -grass5/man/1/s.out.ascii -grass5/man/1/s.surf.idw -grass5/man/1/s.surf.rst -grass5/man/1/s.to.rast -grass5/man/1/v.area -grass5/man/1/v.autocorr -grass5/man/1/v.cadlabel -grass5/man/1/v.clean -grass5/man/1/v.digit -grass5/man/1/v.import -grass5/man/1/v.in.ascii -grass5/man/1/v.in.dlg -grass5/man/1/v.in.dlg2 -grass5/man/1/v.in.dxf -grass5/man/1/v.mkgrid -grass5/man/1/v.mkquads -grass5/man/1/v.out.ascii -grass5/man/1/v.out.dlg -grass5/man/1/v.out.dxf -grass5/man/1/v.patch -grass5/man/1/v.prune -grass5/man/1/v.spag -grass5/man/1/v.stats -grass5/man/1/v.support -grass5/man/1/v.to.rast -grass5/man/1/v.transform -grass5/man/1/v.trim -grass5/man/2/.class-title -grass5/man/2/Mlulc.USGS -grass5/man/2/Mlulc.read -grass5/man/2/d.labels -grass5/man/2/d.rast.arrow -grass5/man/2/d.rast.edit -grass5/man/2/d.rast.num -grass5/man/2/d.rast.zoom -grass5/man/2/i.cluster -grass5/man/2/i.gensig -grass5/man/2/i.gensigset -grass5/man/2/i.in.erdas -grass5/man/2/i.ortho.photo -grass5/man/2/i.quantize -grass5/man/2/i.rectify2 -grass5/man/2/i.smap -grass5/man/2/i.tape.spot -grass5/man/2/i.tape.tm.fast -grass5/man/2/i.vpoints -grass5/man/2/m.clump -grass5/man/2/m.dem.extract -grass5/man/2/m.flip -grass5/man/2/m.in.pl94.db3 -grass5/man/2/m.in.stf1.db3 -grass5/man/2/m.in.stf1.tape -grass5/man/2/m.kappa -grass5/man/2/m.lulc.USGS -grass5/man/2/m.lulc.read -grass5/man/2/m.proj -grass5/man/2/m.tiger.region -grass5/man/2/p.map.new -grass5/man/2/photo.2image -grass5/man/2/photo.2target -grass5/man/2/photo.camera -grass5/man/2/photo.init -grass5/man/2/photo.rectify -grass5/man/2/ps.icon -grass5/man/2/ps.map -grass5/man/2/ps.select -grass5/man/2/r.contour -grass5/man/2/r.cost -grass5/man/2/r.digit -grass5/man/2/r.flow -grass5/man/2/r.in.poly -grass5/man/2/r.in.sunrast -grass5/man/2/r.kappa -grass5/man/2/r.line -grass5/man/2/r.mask.points -grass5/man/2/r.median -grass5/man/2/r.mode -grass5/man/2/r.surf.contour -grass5/man/2/r.thin -grass5/man/2/r.weight2 -grass5/man/2/s.surf.tps -grass5/man/2/v.alabel -grass5/man/2/v.apply.census -grass5/man/2/v.cutter -grass5/man/2/v.in.arc -grass5/man/2/v.in.tig.basic -grass5/man/2/v.in.tig.lndmk -grass5/man/2/v.in.tig.rim -grass5/man/2/v.in.transects -grass5/man/2/v.out.arc -grass5/man/2/v.out.moss -grass5/man/2/v.proj -grass5/man/2/v.reclass -grass5/man/2/v.to.sites -grass5/man/3/.class-title -grass5/man/3/3d.view.sh -grass5/man/3/blend.sh -grass5/man/3/bug.report.sh -grass5/man/3/dcorrelate.sh -grass5/man/3/grass.logo.sh -grass5/man/3/hsv.rgb.sh -grass5/man/3/i.oif -grass5/man/3/old.cmd.sh -grass5/man/3/rgb.hsv.sh -grass5/man/3/shade.rel.sh -grass5/man/3/show.color.sh -grass5/man/3/show.fonts.sh -grass5/man/3/slide.show.sh -grass5/man/3/split.sh -grass5/man/3/start.man.sh -grass5/man/3/tig.rim.sh -grass5/man/3/tiger.info.sh -grass5/man/4/.class-title -grass5/man/4/DOS.delete -grass5/man/4/DOS.list -grass5/man/4/DOS.save -grass5/man/4/DOS.show -grass5/man/4/ISMann2dig -grass5/man/4/ISMcell2grd -grass5/man/4/ISMcell2scat -grass5/man/4/ISMcont2dig -grass5/man/4/ISMdig2ann -grass5/man/4/ISMgrd2cell -grass5/man/4/d.6386.delete -grass5/man/4/d.6386.save -grass5/man/4/d.6386.show -grass5/man/4/d.igraph -grass5/man/4/d.to.sites -grass5/man/4/g.man2html -grass5/man/4/g.nroff -grass5/man/4/m.bsplit -grass5/man/4/m.eigensystem -grass5/man/4/m.geo -grass5/man/4/m.get.fips -grass5/man/4/m.get.stp -grass5/man/4/m.ipf -grass5/man/4/m.qcalc -grass5/man/4/m.sdts.read -grass5/man/4/m.setproj -grass5/man/4/m.stp.proj -grass5/man/4/m.svfit -grass5/man/4/r.answers -grass5/man/4/r.in.erdas -grass5/man/4/r.in.miads -grass5/man/4/r.out.mpeg -grass5/man/4/r.reclass.scs -grass5/man/4/r.rescale.inf -grass5/man/4/r.statistics -grass5/man/4/r.to.gnuplot -grass5/man/4/r.traj -grass5/man/4/s.db.rim -grass5/man/4/s.db.rim.old -grass5/man/4/s.geom -grass5/man/4/s.in.grid -grass5/man/4/s.kcv -grass5/man/4/s.normal -grass5/man/4/s.perturb -grass5/man/4/s.probplt -grass5/man/4/s.qcount -grass5/man/4/s.rand -grass5/man/4/s.sample -grass5/man/4/s.sv -grass5/man/4/s.to.vect -grass5/man/4/s.univar -grass5/man/4/s.univar.SG -grass5/man/4/v.db.rim -grass5/man/4/v.db.rim.old -grass5/man/4/v.export -grass5/man/4/v.extract -grass5/man/4/v.geom -grass5/man/4/v.import -grass5/man/4/v.in.dlg.scs -grass5/man/4/v.in.poly -grass5/man/4/v.in.scsgef -grass5/man/4/v.in.sdts -grass5/man/4/v.in.tiger.scs -grass5/man/4/v.llabel -grass5/man/4/v.make.subj -grass5/man/4/v.merge -grass5/man/4/v.out.dlg.scs -grass5/man/4/v.out.scsgef -grass5/man/4/v.out.sdts -grass5/man/4/v.proj.old -grass5/man/4/v.psu -grass5/man/4/v.psu.subj -grass5/man/4/v.random -grass5/man/4/v.reclass -grass5/man/4/v.reclass.inf -grass5/man/4/v.report -grass5/man/4/v.rmedge -grass5/man/4/v.scale.random -grass5/man/4/v.sdts.dq.cp -grass5/man/4/v.sdts.meta -grass5/man/4/v.sdts.meta.cp -grass5/man/4/v.to.gnuplot -grass5/man/4/v.what -grass5/man/4/xganim -grass5/man/4/xganim.man -grass5/man/5/.class-title -grass5/man/5/imagery -grass5/man/5/monitorcap -grass5/man/5/paint -grass5/man/5/sites.S -grass5/man/5/sites.format -grass5/man/5/sites.occur -grass5/man/5/sites.report -grass5/man/help/3d.view.sh -grass5/man/help/Gen.tractmap -grass5/man/help/SG3d -grass5/man/help/blend.sh -grass5/man/help/bug.report.sh -grass5/man/help/d.3d -grass5/man/help/d.ask -grass5/man/help/d.colormode -grass5/man/help/d.colors -grass5/man/help/d.colortable -grass5/man/help/d.display -grass5/man/help/d.erase -grass5/man/help/d.font -grass5/man/help/d.frame -grass5/man/help/d.geodesic -grass5/man/help/d.graph -grass5/man/help/d.grid -grass5/man/help/d.his -grass5/man/help/d.histogram -grass5/man/help/d.icons -grass5/man/help/d.igraph -grass5/man/help/d.label -grass5/man/help/d.labels -grass5/man/help/d.legend -grass5/man/help/d.mapgraph -grass5/man/help/d.measure -grass5/man/help/d.menu -grass5/man/help/d.mon -grass5/man/help/d.paint.labels -grass5/man/help/d.points -grass5/man/help/d.profile -grass5/man/help/d.rast -grass5/man/help/d.rast.arrow -grass5/man/help/d.rast.edit -grass5/man/help/d.rast.num -grass5/man/help/d.rast.zoom -grass5/man/help/d.rgb -grass5/man/help/d.rhumbline -grass5/man/help/d.save -grass5/man/help/d.scale -grass5/man/help/d.scale2 -grass5/man/help/d.sites -grass5/man/help/d.text -grass5/man/help/d.title -grass5/man/help/d.vect -grass5/man/help/d.what.rast -grass5/man/help/d.what.vect -grass5/man/help/d.where -grass5/man/help/d.zoom -grass5/man/help/dcorrelate.sh -grass5/man/help/demo.sh -grass5/man/help/exit -grass5/man/help/g.access -grass5/man/help/g.ask -grass5/man/help/g.copy -grass5/man/help/g.filename -grass5/man/help/g.findfile -grass5/man/help/g.gisenv -grass5/man/help/g.help -grass5/man/help/g.list -grass5/man/help/g.manual -grass5/man/help/g.mapsets -grass5/man/help/g.region -grass5/man/help/g.remove -grass5/man/help/g.rename -grass5/man/help/g.tempfile -grass5/man/help/g.version -grass5/man/help/grass.logo.sh -grass5/man/help/hsv.rgb.sh -grass5/man/help/i.cca -grass5/man/help/i.class -grass5/man/help/i.cluster -grass5/man/help/i.colors -grass5/man/help/i.composite -grass5/man/help/i.fft -grass5/man/help/i.gensig -grass5/man/help/i.grey.scale -grass5/man/help/i.group -grass5/man/help/i.his.rgb -grass5/man/help/i.ifft -grass5/man/help/i.maxlik -grass5/man/help/i.median -grass5/man/help/i.ortho.rectify -grass5/man/help/i.pca -grass5/man/help/i.points -grass5/man/help/i.rectify -grass5/man/help/i.rgb.his -grass5/man/help/i.tape.mss -grass5/man/help/i.tape.mss.h -grass5/man/help/i.tape.other -grass5/man/help/i.tape.spot -grass5/man/help/i.tape.tm -grass5/man/help/i.tape.tm.fast -grass5/man/help/i.target -grass5/man/help/i.zc -grass5/man/help/m.datum.shift -grass5/man/help/m.dem.examine -grass5/man/help/m.dem.extract -grass5/man/help/m.dem.extract2 -grass5/man/help/m.dmaUSGSread -grass5/man/help/m.dted.examine -grass5/man/help/m.dted.extract -grass5/man/help/m.eigensystem -grass5/man/help/m.examine.tape -grass5/man/help/m.flip -grass5/man/help/m.gc2ll -grass5/man/help/m.ll2gc -grass5/man/help/m.ll2u -grass5/man/help/m.lulc.USGS -grass5/man/help/m.lulc.read -grass5/man/help/m.proj -grass5/man/help/m.region.ll -grass5/man/help/m.rot90 -grass5/man/help/m.tiger.region -grass5/man/help/m.u2ll -grass5/man/help/old.cmd.sh -grass5/man/help/p.chart -grass5/man/help/p.colors -grass5/man/help/p.icons -grass5/man/help/p.labels -grass5/man/help/p.map -grass5/man/help/p.ppm -grass5/man/help/p.select -grass5/man/help/parser -grass5/man/help/ps.icons -grass5/man/help/ps.map -grass5/man/help/ps.select -grass5/man/help/r.average -grass5/man/help/r.basins.fill -grass5/man/help/r.binfer -grass5/man/help/r.buffer -grass5/man/help/r.cats -grass5/man/help/r.clump -grass5/man/help/r.coin -grass5/man/help/r.colors -grass5/man/help/r.combine -grass5/man/help/r.compress -grass5/man/help/r.contour -grass5/man/help/r.cost -grass5/man/help/r.covar -grass5/man/help/r.cross -grass5/man/help/r.describe -grass5/man/help/r.digit -grass5/man/help/r.drain -grass5/man/help/r.grow -grass5/man/help/r.in.ascii -grass5/man/help/r.in.ll -grass5/man/help/r.in.poly -grass5/man/help/r.in.sunrast -grass5/man/help/r.infer -grass5/man/help/r.info -grass5/man/help/r.line -grass5/man/help/r.los -grass5/man/help/r.mapcalc -grass5/man/help/r.mapmask -grass5/man/help/r.mask -grass5/man/help/r.mask.points -grass5/man/help/r.median -grass5/man/help/r.mfilter -grass5/man/help/r.mode -grass5/man/help/r.neighbors -grass5/man/help/r.out.ascii -grass5/man/help/r.out.tga -grass5/man/help/r.pat.place -grass5/man/help/r.patch -grass5/man/help/r.poly -grass5/man/help/r.profile -grass5/man/help/r.random -grass5/man/help/r.reclass -grass5/man/help/r.report -grass5/man/help/r.resample -grass5/man/help/r.rescale -grass5/man/help/r.slope.aspect -grass5/man/help/r.stats -grass5/man/help/r.support -grass5/man/help/r.surf.contour -grass5/man/help/r.surf.idw -grass5/man/help/r.surf.idw2 -grass5/man/help/r.surface -grass5/man/help/r.thin -grass5/man/help/r.traj -grass5/man/help/r.traj.data -grass5/man/help/r.transect -grass5/man/help/r.volume -grass5/man/help/r.water.outlet -grass5/man/help/r.watershed -grass5/man/help/r.weight -grass5/man/help/r.weight.new -grass5/man/help/r.what -grass5/man/help/rgb.hsv.sh -grass5/man/help/s.db.rim -grass5/man/help/s.in.ascii -grass5/man/help/s.menu -grass5/man/help/s.out.ascii -grass5/man/help/s.surf.idw -grass5/man/help/shade.rel.sh -grass5/man/help/show.color.sh -grass5/man/help/show.fonts.sh -grass5/man/help/slide.show.sh -grass5/man/help/split.sh -grass5/man/help/start.man.sh -grass5/man/help/tig.rim.sh -grass5/man/help/v.alabel -grass5/man/help/v.area -grass5/man/help/v.cadlabel -grass5/man/help/v.clean -grass5/man/help/v.db.rim -grass5/man/help/v.digit -grass5/man/help/v.import -grass5/man/help/v.in.arc -grass5/man/help/v.in.ascii -grass5/man/help/v.in.dlg -grass5/man/help/v.in.dxf -grass5/man/help/v.in.tig.rim -grass5/man/help/v.in.transects -grass5/man/help/v.mkgrid -grass5/man/help/v.mkquads -grass5/man/help/v.out.arc -grass5/man/help/v.out.ascii -grass5/man/help/v.out.dlg -grass5/man/help/v.out.dxf -grass5/man/help/v.out.moss -grass5/man/help/v.patch -grass5/man/help/v.prune -grass5/man/help/v.spag -grass5/man/help/v.stats -grass5/man/help/v.support -grass5/man/help/v.to.rast -grass5/man/help/v.to.sites -grass5/man/help/v.transform -grass5/man/help/v.trim -grass5/scripts/3d.view.sh -grass5/scripts/README.html -grass5/scripts/blend.sh -grass5/scripts/bug.report.sh -grass5/scripts/create_fifos.sh -grass5/scripts/d.rast.leg -grass5/scripts/d.rast.rescale -grass5/scripts/d.siter -grass5/scripts/dcorrelate.sh -grass5/scripts/demo.scripts/1 -grass5/scripts/demo.scripts/1.1 -grass5/scripts/demo.scripts/1.2 -grass5/scripts/demo.scripts/1.3 -grass5/scripts/demo.scripts/2 -grass5/scripts/demo.scripts/2.1 -grass5/scripts/demo.scripts/2.2 -grass5/scripts/demo.scripts/3 -grass5/scripts/demo.scripts/3.1 -grass5/scripts/demo.scripts/3.2 -grass5/scripts/demo.scripts/3.3 -grass5/scripts/demo.scripts/3.4 -grass5/scripts/demo.scripts/3.5 -grass5/scripts/demo.scripts/4 -grass5/scripts/demo.scripts/4.1 -grass5/scripts/demo.scripts/4.1.1 -grass5/scripts/demo.scripts/4.1.2 -grass5/scripts/demo.scripts/4.1.3 -grass5/scripts/demo.scripts/4.1.4 -grass5/scripts/demo.scripts/4.1.5 -grass5/scripts/demo.scripts/4.1.6 -grass5/scripts/demo.scripts/4.1.7 -grass5/scripts/demo.scripts/4.2 -grass5/scripts/demo.scripts/4.3 -grass5/scripts/demo.scripts/continue -grass5/scripts/demo.scripts/continue.yes -grass5/scripts/demo.scripts/not-available -grass5/scripts/demo.scripts/outline -grass5/scripts/demo.sh -grass5/scripts/fig2grass -grass5/scripts/g.html2man -grass5/scripts/grass.logo.sh -grass5/scripts/grass2fig -grass5/scripts/hsv.rgb.sh -grass5/scripts/i.image.mosaic -grass5/scripts/i.oif -grass5/scripts/i.spectral -grass5/scripts/i.tasscap.tm4 -grass5/scripts/i.tasscap.tm5 -grass5/scripts/intens.sh -grass5/scripts/ps.add.pagesize -grass5/scripts/ps.map.barscale -grass5/scripts/r.edge.dig -grass5/scripts/r.in.arctiff -grass5/scripts/r.out.arctiff -grass5/scripts/r.out.bil -grass5/scripts/r.out.geotiff -grass5/scripts/r.plane -grass5/scripts/r.reclass.area -grass5/scripts/r.regression.line -grass5/scripts/r.univar -grass5/scripts/rgb.hsv.sh -grass5/scripts/s.in.gps -grass5/scripts/s.in.grid -grass5/scripts/s.out.gps -grass5/scripts/s.reclass -grass5/scripts/shade.clr.sh -grass5/scripts/shade.rel.sh -grass5/scripts/show.color.sh -grass5/scripts/show.fonts.sh -grass5/scripts/slide.show.sh -grass5/scripts/split.sh -grass5/scripts/start.man.sh -grass5/scripts/tclsiter -grass5/scripts/v.cutter.attr -grass5/scripts/v.in.gps -grass5/scripts/v.line2area -grass5/scripts/v.out.xfig -grass5/scripts/v.plant -grass5/tcltkgrass/bitmap/arrow -grass5/tcltkgrass/bitmap/arrow.xbm -grass5/tcltkgrass/bitmap/arrow_down.xbm -grass5/tcltkgrass/bitmap/arrow_left.xbm -grass5/tcltkgrass/bitmap/arrow_right.xbm -grass5/tcltkgrass/bitmap/arrow_up.xbm -grass5/tcltkgrass/bitmap/earth.xbm -grass5/tcltkgrass/bitmap/file.xbm -grass5/tcltkgrass/bitmap/layer.xbm -grass5/tcltkgrass/bitmap/magnify_hand.xbm -grass5/tcltkgrass/bitmap/magnify_in.xbm -grass5/tcltkgrass/bitmap/magnify_out.xbm -grass5/tcltkgrass/bitmap/magnify_plus.xbm -grass5/tcltkgrass/bitmap/magnify_zoomin.xbm -grass5/tcltkgrass/bitmap/magnify_zoomout.xbm -grass5/tcltkgrass/docs/HISTORY.html -grass5/tcltkgrass/docs/Programming_intro.html -grass5/tcltkgrass/docs/Programming_intro.txt -grass5/tcltkgrass/main/about.tcl -grass5/tcltkgrass/main/balloon.tcl -grass5/tcltkgrass/main/gui.tcl -grass5/tcltkgrass/main/help.tcl -grass5/tcltkgrass/main/install.tcl -grass5/tcltkgrass/main/menu.tcl -grass5/tcltkgrass/main/pause -grass5/tcltkgrass/main/tcltkgrass.start -grass5/tcltkgrass/main/tcltkgrass.tcl -grass5/tcltkgrass/main/unused/gis_set.tcl -grass5/tcltkgrass/main/unused/tcltkgrass_start_with_superview -grass5/tcltkgrass/module/NOT_yet_implemented/PQquery.tcl -grass5/tcltkgrass/module/NOT_yet_implemented/d.rast.pg -grass5/tcltkgrass/module/NOT_yet_implemented/d.what.r.pg -grass5/tcltkgrass/module/NOT_yet_implemented/file_listbox.tcl -grass5/tcltkgrass/module/NOT_yet_implemented/g.column.pg -grass5/tcltkgrass/module/NOT_yet_implemented/g.select.pg -grass5/tcltkgrass/module/NOT_yet_implemented/g.table.pg -grass5/tcltkgrass/module/NOT_yet_implemented/r.calibrate -grass5/tcltkgrass/module/NOT_yet_implemented/r.random.xclip!! -grass5/tcltkgrass/module/NOT_yet_implemented/r.robust -grass5/tcltkgrass/module/NOT_yet_implemented/v.b.a.dlg -grass5/tcltkgrass/module/d.3d -grass5/tcltkgrass/module/d.area -grass5/tcltkgrass/module/d.barscale -grass5/tcltkgrass/module/d.colormode -grass5/tcltkgrass/module/d.colors -grass5/tcltkgrass/module/d.colortable -grass5/tcltkgrass/module/d.erase -grass5/tcltkgrass/module/d.font -grass5/tcltkgrass/module/d.frame -grass5/tcltkgrass/module/d.geodesic -grass5/tcltkgrass/module/d.graph -grass5/tcltkgrass/module/d.grid -grass5/tcltkgrass/module/d.his -grass5/tcltkgrass/module/d.histogram -grass5/tcltkgrass/module/d.icons -grass5/tcltkgrass/module/d.label -grass5/tcltkgrass/module/d.legend -grass5/tcltkgrass/module/d.mapgraph -grass5/tcltkgrass/module/d.mon -grass5/tcltkgrass/module/d.paint.labels -grass5/tcltkgrass/module/d.pan.sh -grass5/tcltkgrass/module/d.points -grass5/tcltkgrass/module/d.profile -grass5/tcltkgrass/module/d.rast -grass5/tcltkgrass/module/d.rgb -grass5/tcltkgrass/module/d.rhumbline -grass5/tcltkgrass/module/d.save -grass5/tcltkgrass/module/d.shadedmap -grass5/tcltkgrass/module/d.site.labels -grass5/tcltkgrass/module/d.sites -grass5/tcltkgrass/module/d.text -grass5/tcltkgrass/module/d.title -grass5/tcltkgrass/module/d.vect -grass5/tcltkgrass/module/d.what.rast -grass5/tcltkgrass/module/d.what.sites -grass5/tcltkgrass/module/d.what.vect -grass5/tcltkgrass/module/d.where -grass5/tcltkgrass/module/d.zoom.sh -grass5/tcltkgrass/module/g.copy -grass5/tcltkgrass/module/g.list -grass5/tcltkgrass/module/g.manual -grass5/tcltkgrass/module/g.mapsets -grass5/tcltkgrass/module/g.region.sh -grass5/tcltkgrass/module/g.remove -grass5/tcltkgrass/module/g.rename -grass5/tcltkgrass/module/i.cca -grass5/tcltkgrass/module/i.cluster -grass5/tcltkgrass/module/i.fft -grass5/tcltkgrass/module/i.gensig -grass5/tcltkgrass/module/i.gensigset -grass5/tcltkgrass/module/i.his.rgb -grass5/tcltkgrass/module/i.ifft -grass5/tcltkgrass/module/i.in.erdas -grass5/tcltkgrass/module/i.maxlik -grass5/tcltkgrass/module/i.pca -grass5/tcltkgrass/module/i.rgb.his -grass5/tcltkgrass/module/i.smap -grass5/tcltkgrass/module/i.tape.mss.h -grass5/tcltkgrass/module/i.zc -grass5/tcltkgrass/module/m.datum.shift -grass5/tcltkgrass/module/m.dem.examine -grass5/tcltkgrass/module/m.dem.extract -grass5/tcltkgrass/module/m.dted.examine -grass5/tcltkgrass/module/m.dted.extract -grass5/tcltkgrass/module/m.flip -grass5/tcltkgrass/module/m.gc2ll -grass5/tcltkgrass/module/m.ll2gc -grass5/tcltkgrass/module/m.ll2u -grass5/tcltkgrass/module/m.lulc.USGS -grass5/tcltkgrass/module/m.region.ll -grass5/tcltkgrass/module/m.rot90 -grass5/tcltkgrass/module/m.tiger.region -grass5/tcltkgrass/module/m.u2ll -grass5/tcltkgrass/module/mapset.remove -grass5/tcltkgrass/module/p.map.new -grass5/tcltkgrass/module/p.select -grass5/tcltkgrass/module/ps.icon -grass5/tcltkgrass/module/ps.map -grass5/tcltkgrass/module/ps.select -grass5/tcltkgrass/module/r.average -grass5/tcltkgrass/module/r.basins.fill -grass5/tcltkgrass/module/r.binfer -grass5/tcltkgrass/module/r.buffer -grass5/tcltkgrass/module/r.cats -grass5/tcltkgrass/module/r.clump -grass5/tcltkgrass/module/r.coin -grass5/tcltkgrass/module/r.colors -grass5/tcltkgrass/module/r.combine -grass5/tcltkgrass/module/r.compress -grass5/tcltkgrass/module/r.contour -grass5/tcltkgrass/module/r.cost -grass5/tcltkgrass/module/r.covar -grass5/tcltkgrass/module/r.cross -grass5/tcltkgrass/module/r.describe -grass5/tcltkgrass/module/r.drain -grass5/tcltkgrass/module/r.flow -grass5/tcltkgrass/module/r.grow -grass5/tcltkgrass/module/r.in.ascii -grass5/tcltkgrass/module/r.in.bin -grass5/tcltkgrass/module/r.in.gif -grass5/tcltkgrass/module/r.in.hdf -grass5/tcltkgrass/module/r.in.ll -grass5/tcltkgrass/module/r.in.ppm -grass5/tcltkgrass/module/r.in.tiff -grass5/tcltkgrass/module/r.infer -grass5/tcltkgrass/module/r.info -grass5/tcltkgrass/module/r.line -grass5/tcltkgrass/module/r.los -grass5/tcltkgrass/module/r.mfilter -grass5/tcltkgrass/module/r.neighbors -grass5/tcltkgrass/module/r.out.ascii -grass5/tcltkgrass/module/r.out.hdf -grass5/tcltkgrass/module/r.out.ppm -grass5/tcltkgrass/module/r.out.tiff -grass5/tcltkgrass/module/r.patch -grass5/tcltkgrass/module/r.poly -grass5/tcltkgrass/module/r.profile -grass5/tcltkgrass/module/r.random -grass5/tcltkgrass/module/r.reclass -grass5/tcltkgrass/module/r.report -grass5/tcltkgrass/module/r.resample -grass5/tcltkgrass/module/r.rescale -grass5/tcltkgrass/module/r.slope.aspect -grass5/tcltkgrass/module/r.statistics -grass5/tcltkgrass/module/r.stats -grass5/tcltkgrass/module/r.surf.contour -grass5/tcltkgrass/module/r.surf.idw -grass5/tcltkgrass/module/r.surf.idw2 -grass5/tcltkgrass/module/r.thin -grass5/tcltkgrass/module/r.transect -grass5/tcltkgrass/module/r.volume -grass5/tcltkgrass/module/r.watershed -grass5/tcltkgrass/module/r.what -grass5/tcltkgrass/module/s.geom -grass5/tcltkgrass/module/s.in.ascii -grass5/tcltkgrass/module/s.in.ascii.dem -grass5/tcltkgrass/module/s.out.ascii -grass5/tcltkgrass/module/s.surf.idw -grass5/tcltkgrass/module/s.surf.krig -grass5/tcltkgrass/module/s.surf.tps -grass5/tcltkgrass/module/unused/i.group -grass5/tcltkgrass/module/unused/i.ortho.photo -grass5/tcltkgrass/module/unused/i.points -grass5/tcltkgrass/module/unused/i.rectify -grass5/tcltkgrass/module/unused/i.rectify2 -grass5/tcltkgrass/module/unused/i.target -grass5/tcltkgrass/module/unused/p.icons -grass5/tcltkgrass/module/unused/r.digit -grass5/tcltkgrass/module/unused/r.mapcalc -grass5/tcltkgrass/module/unused/r.mask -grass5/tcltkgrass/module/unused/r.support -grass5/tcltkgrass/module/unused/r.weight -grass5/tcltkgrass/module/unused/s.menu -grass5/tcltkgrass/module/unused/v.digit -grass5/tcltkgrass/module/unused/v.import -grass5/tcltkgrass/module/v.area -grass5/tcltkgrass/module/v.ascii.spag -grass5/tcltkgrass/module/v.cadlabel -grass5/tcltkgrass/module/v.clean -grass5/tcltkgrass/module/v.cutter -grass5/tcltkgrass/module/v.geom -grass5/tcltkgrass/module/v.in.arc -grass5/tcltkgrass/module/v.in.ascii -grass5/tcltkgrass/module/v.info -grass5/tcltkgrass/module/v.mkgrid -grass5/tcltkgrass/module/v.out.arc -grass5/tcltkgrass/module/v.out.ascii -grass5/tcltkgrass/module/v.patch -grass5/tcltkgrass/module/v.proj -grass5/tcltkgrass/module/v.prune -grass5/tcltkgrass/module/v.report -grass5/tcltkgrass/module/v.spag -grass5/tcltkgrass/module/v.stats -grass5/tcltkgrass/module/v.support_option=build -grass5/tcltkgrass/module/v.support_option=edit -grass5/tcltkgrass/module/v.surf.spline -grass5/tcltkgrass/module/v.to.rast -grass5/tcltkgrass/module/v.to.sites -grass5/tcltkgrass/module/v.transform -grass5/tcltkgrass/module/v.trim -grass5/tcltkgrass/module/v.what -grass5/tcltkgrass/script/d.pan.sh -grass5/tcltkgrass/script/d.shadedmap -grass5/tcltkgrass/script/d.zoom.sh -grass5/tcltkgrass/script/g.region.sh -grass5/tcltkgrass/script/mapset.remove -grass5/txt/COMBINE/AND -grass5/txt/COMBINE/BYE -grass5/txt/COMBINE/CATS -grass5/txt/COMBINE/COV -grass5/txt/COMBINE/ERA -grass5/txt/COMBINE/EXPR -grass5/txt/COMBINE/GRP -grass5/txt/COMBINE/HLP -grass5/txt/COMBINE/HST -grass5/txt/COMBINE/LESS_THAN -grass5/txt/COMBINE/MAP_NAME -grass5/txt/COMBINE/NAM -grass5/txt/COMBINE/NOT -grass5/txt/COMBINE/OR -grass5/txt/COMBINE/OVR -grass5/txt/COMBINE/RNG -grass5/txt/COMBINE/WIN -grass5/txt/COMBINE/example1 -grass5/txt/COMBINE/example2 -grass5/txt/COMBINE/gen_help -grass5/txt/COMBINE/syntax -grass5/txt/DIGIT/Customize -grass5/txt/DIGIT/Customize._B -grass5/txt/DIGIT/Customize._C -grass5/txt/DIGIT/Customize._D -grass5/txt/DIGIT/Customize._O -grass5/txt/DIGIT/Customize._b -grass5/txt/DIGIT/Customize._d -grass5/txt/DIGIT/Customize._p -grass5/txt/DIGIT/Customize._q -grass5/txt/DIGIT/Customize._r -grass5/txt/DIGIT/Customize._s -grass5/txt/DIGIT/Customize._w -grass5/txt/DIGIT/Customize._z -grass5/txt/DIGIT/Digit._q -grass5/txt/DIGIT/Digitize -grass5/txt/DIGIT/Digitize.__ -grass5/txt/DIGIT/Digitize._l -grass5/txt/DIGIT/Digitize._m -grass5/txt/DIGIT/Digitize._t -grass5/txt/DIGIT/Edit -grass5/txt/DIGIT/Edit._R -grass5/txt/DIGIT/Edit._b -grass5/txt/DIGIT/Edit._d -grass5/txt/DIGIT/Edit._i -grass5/txt/DIGIT/Edit._m -grass5/txt/DIGIT/Edit._q -grass5/txt/DIGIT/Edit._r -grass5/txt/DIGIT/Edit._s -grass5/txt/DIGIT/Edit._t -grass5/txt/DIGIT/Global -grass5/txt/DIGIT/Global._! -grass5/txt/DIGIT/Global._- -grass5/txt/DIGIT/Global._@ -grass5/txt/DIGIT/Global._C -grass5/txt/DIGIT/Global._D -grass5/txt/DIGIT/Global._E -grass5/txt/DIGIT/Global._H -grass5/txt/DIGIT/Global._L -grass5/txt/DIGIT/Global._Q -grass5/txt/DIGIT/Global._T -grass5/txt/DIGIT/Global._W -grass5/txt/DIGIT/Global._Z -grass5/txt/DIGIT/Global._^ -grass5/txt/DIGIT/Label -grass5/txt/DIGIT/Label._A -grass5/txt/DIGIT/Label._B -grass5/txt/DIGIT/Label._L -grass5/txt/DIGIT/Label._M -grass5/txt/DIGIT/Label._S -grass5/txt/DIGIT/Label._a -grass5/txt/DIGIT/Label._c -grass5/txt/DIGIT/Label._d -grass5/txt/DIGIT/Label._h -grass5/txt/DIGIT/Label._i -grass5/txt/DIGIT/Label._l -grass5/txt/DIGIT/Label._m -grass5/txt/DIGIT/Label._q -grass5/txt/DIGIT/Label._s -grass5/txt/DIGIT/Label.c -grass5/txt/DIGIT/Label.h -grass5/txt/DIGIT/Main -grass5/txt/DIGIT/Toolbox -grass5/txt/DIGIT/Toolbox._N -grass5/txt/DIGIT/Toolbox._R -grass5/txt/DIGIT/Toolbox._d -grass5/txt/DIGIT/Toolbox._i -grass5/txt/DIGIT/Toolbox._n -grass5/txt/DIGIT/Toolbox._o -grass5/txt/DIGIT/Toolbox._q -grass5/txt/DIGIT/Toolbox._u -grass5/txt/DIGIT/Toolbox._w -grass5/txt/DIGIT/Window -grass5/txt/DIGIT/Window._A -grass5/txt/DIGIT/Window._B -grass5/txt/DIGIT/Window._C -grass5/txt/DIGIT/Window._L -grass5/txt/DIGIT/Window._O -grass5/txt/DIGIT/Window._S -grass5/txt/DIGIT/Window._W -grass5/txt/DIGIT/Window._a -grass5/txt/DIGIT/Window._c -grass5/txt/DIGIT/Window._i -grass5/txt/DIGIT/Window._l -grass5/txt/DIGIT/Window._n -grass5/txt/DIGIT/Window._q -grass5/txt/DIGIT/Window._s -grass5/txt/DIGIT/Window._w -grass5/txt/DIGIT/Window.c -grass5/txt/WEIGHT/ADD_MULT -grass5/txt/WEIGHT/ANAL -grass5/txt/WEIGHT/ASG -grass5/txt/WEIGHT/CATS -grass5/txt/WEIGHT/CHOS -grass5/txt/WEIGHT/COLR -grass5/txt/WEIGHT/EXEC -grass5/txt/WEIGHT/HELP -grass5/txt/WEIGHT/LST -grass5/txt/WEIGHT/MAP -grass5/txt/WEIGHT/PRT -grass5/txt/WEIGHT/QUIT -grass5/txt/WEIGHT/REC -grass5/txt/WEIGHT/SAV -grass5/txt/WEIGHT/UNCH -grass5/txt/WEIGHT/dir -grass5/txt/WEIGHT/general -grass5/txt/WEIGHT/intro -grass5/txt/WEIGHT/syntax -@exec mkdir -p %D/grass5/txt/MONITOR -@exec mkdir -p %D/grass5/txt/DIGIT2 -@exec mkdir -p %D/grass5/locks -@exec mkdir -p %D/grass5/locks/`uname -n` -@exec chmod -R 1777 %D/grass5/locks -@exec mkdir -p %D/grass5/garden/etc -@exec mkdir -p %D/grass5/garden/bin -@exec mkdir -p %D/grass5/garden -@exec mkdir -p %D/grass5/etc/paint/driver.uninst -@exec mkdir -p %D/grass5/etc/dig_drivers -@exec sh < %D/grass5/dev/create_fifos.sh -@unexec rm -rf %D/grass5/locks 2>/dev/null || true -@unexec rm -rf %D/grass5/dev 2>/dev/null || true -@dirrm grass5/txt/WEIGHT -@dirrm grass5/txt/MONITOR -@dirrm grass5/txt/DIGIT2 -@dirrm grass5/txt/DIGIT -@dirrm grass5/txt/COMBINE -@dirrm grass5/txt -@dirrm grass5/tcltkgrass/script -@dirrm grass5/tcltkgrass/module/unused -@dirrm grass5/tcltkgrass/module/NOT_yet_implemented -@dirrm grass5/tcltkgrass/module -@dirrm grass5/tcltkgrass/main/unused -@dirrm grass5/tcltkgrass/main -@dirrm grass5/tcltkgrass/docs -@dirrm grass5/tcltkgrass/bitmap -@dirrm grass5/tcltkgrass -@dirrm grass5/scripts/demo.scripts -@dirrm grass5/scripts -@dirrm grass5/man/help -@dirrm grass5/man/5 -@dirrm grass5/man/4 -@dirrm grass5/man/3 -@dirrm grass5/man/2 -@dirrm grass5/man/1 -@dirrm grass5/man -@dirrm grass5/garden/etc -@dirrm grass5/garden/bin -@dirrm grass5/garden -@dirrm grass5/fonts -@dirrm grass5/etc/water -@dirrm grass5/etc/sites -@dirrm grass5/etc/r.fea -@dirrm grass5/etc/paint/driver.uninst -@dirrm grass5/etc/paint/driver.sh -@dirrm grass5/etc/paint/driver -@dirrm grass5/etc/paint -@dirrm grass5/etc/lister -@dirrm grass5/etc/imagery -@dirrm grass5/etc/i.oif -@dirrm grass5/etc/help/Commands.def -@dirrm grass5/etc/help/18.biblio -@dirrm grass5/etc/help/17.manual/Help.pages -@dirrm grass5/etc/help/17.manual -@dirrm grass5/etc/help/16.glossary -@dirrm grass5/etc/help/15.macros -@dirrm grass5/etc/help/14.reports -@dirrm grass5/etc/help/13.map.print -@dirrm grass5/etc/help/12.map.display -@dirrm grass5/etc/help/11.map.design -@dirrm grass5/etc/help/10.data.analy -@dirrm grass5/etc/help/09.imagery -@dirrm grass5/etc/help/08.mapdev -@dirrm grass5/etc/help/07.interfaces -@dirrm grass5/etc/help/06.export -@dirrm grass5/etc/help/05.tape.ex -@dirrm grass5/etc/help/04.wind.mgmt -@dirrm grass5/etc/help/03.db.mgmt -@dirrm grass5/etc/help/02.db.setup -@dirrm grass5/etc/help/01.instruc -@dirrm grass5/etc/help -@dirrm grass5/etc/gdbase -@dirrm grass5/etc/digitizers -@dirrm grass5/etc/dig_drivers -@dirrm grass5/etc/census.docs -@dirrm grass5/etc/bin/main/inter -@dirrm grass5/etc/bin/main/cmd -@dirrm grass5/etc/bin/main -@dirrm grass5/etc/bin/contrib/inter -@dirrm grass5/etc/bin/contrib/cmd -@dirrm grass5/etc/bin/contrib -@dirrm grass5/etc/bin -@dirrm grass5/etc/Gcolortab/tek4695 -@dirrm grass5/etc/Gcolortab/shinko635 -@dirrm grass5/etc/Gcolortab/preview -@dirrm grass5/etc/Gcolortab -@dirrm grass5/etc -@dirrm grass5/driver -@dirrm grass5/bin -@dirrm grass5 diff --git a/databases/msql3/Makefile b/databases/msql3/Makefile deleted file mode 100644 index 03b9d8a503e3..000000000000 --- a/databases/msql3/Makefile +++ /dev/null @@ -1,60 +0,0 @@ -# New ports collection makefile for: msql2 -# Date created: December 17th 1996 -# Whom: jfitz -# -# $FreeBSD$ -# - -PORTNAME= msql -PORTVERSION= 2.0.4.1 -CATEGORIES= databases - -MAINTAINER= jfitz@FreeBSD.org - -# Not free for commercial use. Must create a user on the local system -NO_PACKAGE= YES -RESTRICTED= "restrictive copyright (no commercial use)" - -MAKE_ENV+= WRKSRC=${WRKSRC} - -# Uncomment this if you're upgrading from <= b4 to >= b5 and have already -# dumped your databases (or just build with -DOVERWRITE_DB) -#OVERWRITE_DB= YES - -do-configure: - cd ${WRKSRC}; make target - cd ${WRKSRC}/targets/freebsd; ${SETENV} ${MAKE_ENV} ./setup - @${SETENV} ${MAKE_ENV} /usr/bin/perl ${SCRIPTDIR}/customize_scripts - -pre-install: - @${SETENV} ${MAKE_ENV} /usr/bin/perl ${SCRIPTDIR}/check_old_version - @${SETENV} ${MAKE_ENV} /usr/bin/perl ${SCRIPTDIR}/createuser - -post-install: - @${INSTALL_SCRIPT} ${WRKSRC}/scripts/run_daemon ${PREFIX}/bin - @${INSTALL_DATA} ${FILESDIR}/post-install-notes ${PREFIX}/share/doc/msql - @for file in msql2d msqladmin msqlimport msqlexport; do\ - /usr/bin/chgrp msql ${PREFIX}/bin/$$file; \ - done - @for file in RELEASE_NOTES MSQL_BOOK INSTALL; do \ - ${INSTALL_DATA} ${WRKSRC}/$$file ${PREFIX}/share/doc/msql; \ - done - @${CHMOD} 751 ${PREFIX}/etc/msql2/ - @${CHOWN} -R msql.msql ${PREFIX}/etc/msql2/ - @${MKDIR} ${PREFIX}/etc/rc.d - @if [ ! -f ${PREFIX}/etc/rc.d/msql2.sh ]; then \ - ${ECHO} "Installing ${PREFIX}/etc/rc.d/msql2.sh startup file."; \ - ${INSTALL_SCRIPT} -m 751 ${FILESDIR}/msql2d.sh \ - ${PREFIX}/etc/rc.d/msql2d.sh; \ - fi -.if !defined(BATCH) - @ /usr/bin/more -e ${FILESDIR}/post-install-notes -.endif - -.include <bsd.port.pre.mk> - -.if !exists(${DISTDIR}/${DISTNAME}${EXTRACT_SUFX}) -IGNORE="- You must manually obtain ${DISTFILES} from 'http://www.Hughes.com.au' and place it in ${DISTDIR}. The distribution requires registration prior to use" -.endif - -.include <bsd.port.post.mk> diff --git a/databases/msql3/distinfo b/databases/msql3/distinfo deleted file mode 100644 index 0b1c1e5cf67f..000000000000 --- a/databases/msql3/distinfo +++ /dev/null @@ -1 +0,0 @@ -MD5 (msql-2.0.4.1.tar.gz) = d715775b36d3488432b7abb785090251 diff --git a/databases/msql3/files/msql2.sh b/databases/msql3/files/msql2.sh deleted file mode 100644 index 4f9ff5c87c16..000000000000 --- a/databases/msql3/files/msql2.sh +++ /dev/null @@ -1,20 +0,0 @@ -#!/bin/sh - -if ! PREFIX=$(expr $0 : "\(/.*\)/etc/rc\.d/$(basename $0)\$"); then - echo "$0: Cannot determine the PREFIX" >&2 - exit 1 -fi - -case "$1" in -start) - [ -x ${PREFIX}/bin/msql2d ] && su -l msql -c 'exec ${PREFIX}/bin/msql2d' > /dev/null 2>&1 & && echo -n ' msql2' - ;; -stop) - killall msql2d && echo -n ' msql2d' - ;; -*) - echo "Usage: `basename $0` {start|stop}" >&2 - ;; -esac - -exit 0 diff --git a/databases/msql3/files/patch-aa b/databases/msql3/files/patch-aa deleted file mode 100644 index d8250563197f..000000000000 --- a/databases/msql3/files/patch-aa +++ /dev/null @@ -1,24 +0,0 @@ ---- Makefile.orig Tue Dec 17 11:12:16 1996 -+++ Makefile Tue Dec 17 11:13:26 1996 -@@ -18,14 +18,16 @@ - SHELL=/bin/sh - - all: -- @ echo ""; echo "You have not read the installation procedures.";\ -- echo "Please read the README file for build instructions.";\ -- echo -+ cd targets/freebsd ;\ -+ make all -+ -+install: -+ cd targets/freebsd ;\ -+ make install - - target: - @ scripts/make-target -- -- -+ @ ( ARCH=`scripts/sys-arch`; cd targets; ln -s $$ARCH freebsd) - - dist: - @ echo; echo -n "Full Distribution - Enter archive file name : " ;\ diff --git a/databases/msql3/files/patch-ab b/databases/msql3/files/patch-ab deleted file mode 100644 index d2604d398599..000000000000 --- a/databases/msql3/files/patch-ab +++ /dev/null @@ -1,43 +0,0 @@ ---- scripts/run_daemon.orig Mon Dec 16 03:44:22 1996 -+++ scripts/run_daemon Sun Dec 22 15:54:18 1996 -@@ -9,23 +9,25 @@ - # - # bambi@Bond.edu.au - --INST_DIR=/usr/local/Minerva --ADMIN="you@some.machine" -+umask 077 -+ -+INST_DIR=%%PREFIX%% -+ADMIN="root@%%HOSTNAME%%" - PROG=$1 - --if test ! -d "${INST_DIR}/debug" -+if test ! -d "/tmp/debug" - then -- mkdir ${INST_DIR}/debug -+ mkdir /tmp/debug - fi - --if test ! -d "${INST_DIR}/debug/${PROG}" -+if test ! -d "/tmp/debug/${PROG}" - then -- mkdir ${INST_DIR}/debug/${PROG} -+ mkdir /tmp/debug/${PROG} - fi - - while : - do -- cd ${INST_DIR}/debug/${PROG} -+ cd /tmp/debug/${PROG} - ${INST_DIR}/bin/${PROG} > output 2>&1 - echo "Program : ${PROG} - Time : `date` -@@ -34,6 +36,6 @@ - - " > mail.tmp - cat output >> mail.tmp -- /usr/ucb/mail -s "Minerva Daemon Crash Report" ${ADMIN} < mail.tmp -+ /usr/bin/mail -s "Minerva Daemon Crash Report" ${ADMIN} < mail.tmp - sleep 15 - done diff --git a/databases/msql3/files/patch-ac b/databases/msql3/files/patch-ac deleted file mode 100644 index 81b33b652da2..000000000000 --- a/databases/msql3/files/patch-ac +++ /dev/null @@ -1,26 +0,0 @@ ---- src/conf/site.mm.in.orig Fri May 29 19:21:51 1998 -+++ src/conf/site.mm.in Fri Aug 28 16:24:37 1998 -@@ -3,8 +3,8 @@ - # - - --COMPILER= @CC@ --INST_DIR= /usr/local/Hughes -+COMPILER:= $(CC) -+INST_DIR:= $(PREFIX) - HAVE_DYNAMIC= -DHAVE_DYNAMIC - CC_ONLY_FLAGS= - LINK_ONLY_FLAGS= -@@ -34,10 +34,10 @@ - EXTRA_LIB= @LIBS@ - - # Any other CFlags required --EXTRA_CFLAGS= @DEFS@ $(SSIZE_T) $(U_INT) $(BITTYPES) -+EXTRA_CFLAGS= @DEFS@ $(SSIZE_T) $(U_INT) $(BITTYPES) -fpic - - # Directory for pid file - PID_DIR= @PID_DIR@ - --CFLAGS= -O -I$(TOP)/ $(EXTRA_CFLAGS) -+CFLAGS+= -I$(TOP)/ $(EXTRA_CFLAGS) - LDLIBS= -L$(TOP)/lib $(EXTRA_LIB) diff --git a/databases/msql3/files/patch-ad b/databases/msql3/files/patch-ad deleted file mode 100644 index 3c3e6e2123cf..000000000000 --- a/databases/msql3/files/patch-ad +++ /dev/null @@ -1,28 +0,0 @@ ---- scripts/make-install.orig Sat Jan 18 08:53:09 1997 -+++ scripts/make-install Thu Jul 10 14:08:57 1997 -@@ -1,16 +1,15 @@ - #!/bin/sh - --INST_DIR=$1 -+INST_DIR=$PREFIX - --scripts/mkinstalldirs 0755 $INST_DIR/bin --scripts/mkinstalldirs 0755 $INST_DIR/include - scripts/mkinstalldirs 0755 $INST_DIR/include/common --scripts/mkinstalldirs 0755 $INST_DIR/lib --scripts/mkinstalldirs 0755 $INST_DIR/msqldb --scripts/mkinstalldirs 0755 $INST_DIR/msqldb/.tmp --scripts/mkinstalldirs 0755 $INST_DIR/doc --scripts/mkinstalldirs 0755 $INST_DIR/www --scripts/mkinstalldirs 0755 $INST_DIR/misc --scripts/mkinstalldirs 0755 $INST_DIR/makegen -+scripts/mkinstalldirs 0755 $INST_DIR/etc/msql2 -+scripts/mkinstalldirs 0700 /var/db/msqldb -+scripts/mkinstalldirs 0700 /var/db/msqldb/.tmp -+scripts/mkinstalldirs 0755 $INST_DIR/share/doc/msql -+scripts/mkinstalldirs 0755 $INST_DIR/share/msql/misc -+scripts/mkinstalldirs 0755 $INST_DIR/share/msql/www -+scripts/mkinstalldirs 0755 $INST_DIR/share/msql/makegen -+/usr/sbin/chown -R msql.msql /var/db/msqldb - scripts/mkinstalldirs 0755 $INST_DIR/modules - diff --git a/databases/msql3/files/patch-ae b/databases/msql3/files/patch-ae deleted file mode 100644 index 52771f4ca9d6..000000000000 --- a/databases/msql3/files/patch-ae +++ /dev/null @@ -1,33 +0,0 @@ ---- src/Makefile.tmpl.orig Tue Jul 8 03:06:49 1997 -+++ src/Makefile.tmpl Thu Jul 10 13:46:24 1997 -@@ -31,19 +31,19 @@ - echo - - install :: -- @cp -r ../../doc/* $(INST_DIR)/doc; \\ -- cp -r ../../demos/w3-msql/* $(INST_DIR)/www; \\ -- cp -r ../../misc/setup_* $(INST_DIR)/misc; \\ -- cp ../../README* $(INST_DIR);\\ -- cp makegen/* $(INST_DIR)/makegen;\\ -- chmod 755 $(INST_DIR)/makegen/*;\\ -- cp site.mm $(INST_DIR)/makegen;\\ -- if test -f $(INST_DIR)/msql.conf;\ -+ @cp -r ../../doc/* $(INST_DIR)/share/doc/msql; \\ -+ cp -r ../../demos/w3-msql/* $(INST_DIR)/share/msql/www; \\ -+ cp -r ../../misc/setup_* $(INST_DIR)/share/msql/misc; \\ -+ cp ../../README* $(INST_DIR)/share/doc/msql;\\ -+ cp makegen/* $(INST_DIR)/share/msql/makegen;\\ -+ chmod 755 $(INST_DIR)/share/msql/makegen/*;\\ -+ cp site.mm $(INST_DIR)/share/msql/makegen;\\ -+ if test -f $(INST_DIR)/etc/msql2/msql.conf;\ - then\ -- rm -f $(INST_DIR)/msql.conf.old;\ -- mv $(INST_DIR)/msql.conf $(INST_DIR)/msql.conf.old;\ -+ rm -f $(INST_DIR)/etc/msql2/msql.conf.old;\ -+ mv $(INST_DIR)/etc/msql2/msql.conf $(INST_DIR)/etc/msql2/msql.conf.old;\ - fi;\ -- sed "s,_INST_,$(INST_DIR),"< ../../misc/msql.conf >$(INST_DIR)/msql.conf;\\ -+ sed "s,_INST_,$(INST_DIR),"< ../../misc/msql.conf >$(INST_DIR)/etc/msql2/msql.conf;\\ - echo ;\\ - echo ;\\ - echo ;\\ diff --git a/databases/msql3/files/patch-af b/databases/msql3/files/patch-af deleted file mode 100644 index 0d247f5ce08e..000000000000 --- a/databases/msql3/files/patch-af +++ /dev/null @@ -1,11 +0,0 @@ ---- src/msql/Makefile.tmpl.orig Mon Jan 13 10:15:48 1997 -+++ src/msql/Makefile.tmpl Sun Jan 19 14:47:28 1997 -@@ -78,7 +78,7 @@ - !install msqldump $(INST_DIR)/bin/msqldump 0755 $(ROOT) - !libinstall libmsql.a $(INST_DIR)/lib/libmsql.a 744 $(ROOT) - !install msql.h $(INST_DIR)/include/msql.h 744 $(ROOT) --!install sample.acl $(INST_DIR)/msql.acl.sample 700 $(ROOT) -+!install sample.acl $(INST_DIR)/etc/msql2/msql.acl.sample 700 $(ROOT) - - lextest :: msql_lex.c - $(CC) $(CC_FLAGS) -DDEBUG msql_lex.c -o lextest diff --git a/databases/msql3/files/patch-ag b/databases/msql3/files/patch-ag deleted file mode 100644 index 3ec810f95f4f..000000000000 --- a/databases/msql3/files/patch-ag +++ /dev/null @@ -1,25 +0,0 @@ ---- src/msql/config.c.orig Fri May 29 19:21:56 1998 -+++ src/msql/config.c Fri Aug 28 17:14:21 1998 -@@ -306,11 +306,11 @@ - msqlConfigLoaded = 1; - if (file) - { -- snprintf(buf,sizeof(buf),"%s/%s", INST_DIR, file); -+ snprintf(buf,sizeof(buf),"%s/etc/msql2/%s", INST_DIR, file); - fp = fopen(buf,"r"); - if (!fp) - { -- snprintf(buf,sizeof(buf),"%s/%s.conf",INST_DIR,file); -+ snprintf(buf,sizeof(buf),"%s/etc/msql2/%s.conf",INST_DIR,file); - fp = fopen(buf,"r"); - } - if (!fp) -@@ -325,7 +325,7 @@ - } - else - { -- snprintf(buf,sizeof(buf),"%s/msql.conf", INST_DIR); -+ snprintf(buf,sizeof(buf),"%s/etc/msql2/msql.conf", INST_DIR); - fp = fopen(buf,"r"); - } - if (!fp) diff --git a/databases/msql3/files/patch-ah b/databases/msql3/files/patch-ah deleted file mode 100644 index 252fb5fdec3a..000000000000 --- a/databases/msql3/files/patch-ah +++ /dev/null @@ -1,11 +0,0 @@ ---- src/msql/msqladmin.c.orig Mon Jan 13 10:16:02 1997 -+++ src/msql/msqladmin.c Sun Jan 19 14:05:53 1997 -@@ -257,7 +257,7 @@ - printf("\tTarget platform \t%s\n\n",TARGET); - - printf("Configuration Details :-\n\n"); -- printf("\tDefault config file\t%s/msql.conf\n",INST_DIR); -+ printf("\tDefault config file\t%s/etc/msql2/msql.conf\n",INST_DIR); - printf("\tTCP socket \t%d\n", - msqlGetIntConf("tcp_port")); - printf("\tUNIX socket \t%s\n", diff --git a/databases/msql3/files/patch-ai b/databases/msql3/files/patch-ai deleted file mode 100644 index dcf168a1f723..000000000000 --- a/databases/msql3/files/patch-ai +++ /dev/null @@ -1,21 +0,0 @@ ---- src/msql/msqld.c.orig Mon Jul 7 01:27:28 1997 -+++ src/msql/msqld.c Thu Jul 10 13:48:05 1997 -@@ -593,7 +593,7 @@ - - if (*confFile == 0) - { -- snprintf(confFile,sizeof(confFile),"%s/msql.conf", INST_DIR); -+ snprintf(confFile,sizeof(confFile),"%s/etc/msql2/msql.conf", INST_DIR); - } - printf("\tLoading configuration from '%s'.\n",confFile); - msqlLoadConfigFile(confFile); -@@ -687,8 +687,7 @@ - /* - ** Ensure that the correct user owns the database files - */ -- snprintf(path,MAXPATHLEN, "%s/msqldb", -- (char *)msqlGetCharConf("general","inst_dir")); -+ strcpy(path, "/var/db/msqldb"); - if (stat(path,&sbuf) < 0) - { - printf("\nError! Can't stat '%s'\n\n",path); diff --git a/databases/msql3/files/patch-aj b/databases/msql3/files/patch-aj deleted file mode 100644 index 9769dc5953e4..000000000000 --- a/databases/msql3/files/patch-aj +++ /dev/null @@ -1,14 +0,0 @@ ---- misc/msql.conf.orig Mon Jul 7 01:44:29 1997 -+++ misc/msql.conf Thu Jul 10 13:49:56 1997 -@@ -20,9 +20,9 @@ - Inst_Dir = _INST_ - mSQL_User = msql - Admin_User = root --Pid_File = %I/msql2d.pid -+Pid_File = %I/etc/msql2/msql2d.pid - TCP_Port = 1114 --UNIX_Port = %I/msql2.sock -+UNIX_Port = %I/etc/msql2/msql2.sock - - [system] - diff --git a/databases/msql3/files/patch-ak b/databases/msql3/files/patch-ak deleted file mode 100644 index ead616de559e..000000000000 --- a/databases/msql3/files/patch-ak +++ /dev/null @@ -1,22 +0,0 @@ ---- src/msql/index.c Fri Feb 7 10:06:42 1997 -+++ src/msql/index.c Fri Feb 7 10:17:04 1997 -@@ -105,8 +105,7 @@ - fd; - - msqlTrace(TRACE_IN,"loadIndices()"); -- (void)snprintf(path,MAXPATHLEN,"%s/msqldb/%s/%s.idx", -- msqlHomeDir,db,table); -+ (void)snprintf(path,MAXPATHLEN,"/var/db/msqldb/%s/%s.idx",db,table); - #ifdef OS2 - fd = _sopen(path ,O_RDONLY | O_BINARY, SH_DENYNO, S_IREAD | S_IWRITE); - #else -@@ -163,8 +163,8 @@ - curIndex->next = NULL; - } - } -- snprintf(path,MAXPATHLEN,"%s/msqldb/%s/%s.idx-%s", -- msqlHomeDir,db,table, curIndex->name); -+ snprintf(path,MAXPATHLEN,"/var/db/msqldb/%s/%s.idx-%s", -+ db,table, curIndex->name); - curIndex->tree = avlOpen(path); - curIndex->buf = (char *)malloc(curIndex->length + 1); diff --git a/databases/msql3/files/patch-al b/databases/msql3/files/patch-al deleted file mode 100644 index 6e64dbc12862..000000000000 --- a/databases/msql3/files/patch-al +++ /dev/null @@ -1,11 +0,0 @@ ---- src/msql/acl.c.orig Sat Jun 14 20:42:23 1997 -+++ src/msql/acl.c Thu Jul 10 13:51:07 1997 -@@ -114,7 +114,7 @@ - /* - ** Open the acl file - */ -- (void)snprintf(path,MAXPATHLEN,"%s/msql.acl", -+ (void)snprintf(path,MAXPATHLEN,"%s/etc/msql2/msql.acl", - (char *)msqlGetCharConf("general", "inst_dir")); - fp = fopen(path,"r"); - if (!fp) diff --git a/databases/msql3/files/patch-am b/databases/msql3/files/patch-am deleted file mode 100644 index a10e4099d0b1..000000000000 --- a/databases/msql3/files/patch-am +++ /dev/null @@ -1,171 +0,0 @@ ---- src/msql/msqldb.c.orig Fri Aug 28 14:57:51 1998 -+++ src/msql/msqldb.c Fri Aug 28 15:04:11 1998 -@@ -136,7 +136,7 @@ - #endif - - msqlTrace(TRACE_IN,"msqlListDBs()"); -- (void)snprintf(path, MAXPATHLEN, "%s/msqldb",msqlHomeDir); -+ (void)snprintf(path, MAXPATHLEN, "var/db/msqldb"); - dirp = opendir(path); - if (!dirp) - { -@@ -199,7 +199,7 @@ - #endif - - msqlTrace(TRACE_IN,"msqlListTables()"); -- (void)snprintf(path,MAXPATHLEN,"%s/msqldb/%s",msqlHomeDir,db); -+ (void)snprintf(path,MAXPATHLEN,"/var/db/msqldb/%s"); - dirp = opendir(path); - if (!dirp) - { -@@ -1441,7 +1441,7 @@ - struct stat buf; - - msqlTrace(TRACE_IN,"msqlInit()"); -- (void)snprintf(path, MAXPATHLEN, "%s/msqldb/%s",msqlHomeDir,db); -+ (void)snprintf(path, MAXPATHLEN, "/var/db/msqldb/%s",db); - if (stat(path,&buf) < 0) - { - snprintf(errMsg, MAX_ERR_MSG, BAD_DB_ERROR,db); -@@ -1479,8 +1479,8 @@ - /* - ** Write the catalog entry - */ -- (void)snprintf(defPath, MAXPATHLEN, "%s/msqldb/%s/%s.def", -- msqlHomeDir,db,table); -+ (void)snprintf(defPath, MAXPATHLEN, "/var/db/msqldb/%s/%s.def", -+ db,table); - if (stat(defPath, &sbuf) >= 0) - { - snprintf(errMsg,MAX_ERR_MSG,TABLE_EXISTS_ERROR,table); -@@ -1531,8 +1531,8 @@ - ** Create an empty table - */ - -- (void)snprintf(datPath,MAXPATHLEN, "%s/msqldb/%s/%s.dat", -- msqlHomeDir,db,table); -+ (void)snprintf(datPath,MAXPATHLEN, "/var/db/msqldb/%s/%s.dat", -+ db,table); - #ifdef OS2 - fd = _sopen(datPath,O_CREAT | O_WRONLY | O_BINARY, SH_DENYNO, - S_IREAD | S_IWRITE); -@@ -1577,8 +1577,8 @@ - ** - ** Create an empty overflow file - */ -- (void)snprintf(oflPath,MAXPATHLEN,"%s/msqldb/%s/%s.ofl", -- msqlHomeDir,db,table); -+ (void)snprintf(oflPath,MAXPATHLEN,"/var/db/msqldb/%s/%s.ofl", -+ db,table); - #ifdef OS2 - fd = _sopen(oflPath,O_CREAT | O_WRONLY | O_BINARY, SH_DENYNO, - S_IREAD | S_IWRITE); -@@ -1745,11 +1745,11 @@ - /* - ** Can't clash with another index either - */ -- (void)snprintf(defPath,MAXPATHLEN,"%s/msqldb/%s/%s.idx",msqlHomeDir, -+ (void)snprintf(defPath,MAXPATHLEN,"/var/db/msqldb/%s/%s.idx", - db, index->table); - -- (void)snprintf(idxPath,MAXPATHLEN,"%s/msqldb/%s/%s.idx-%s", -- msqlHomeDir,db, index->table, index->name); -+ (void)snprintf(idxPath,MAXPATHLEN,"/var/db/msqldb/%s/%s.idx-%s", -+ db, index->table, index->name); - - #ifdef OS2 - fd = _sopen(defPath,O_RDWR | O_CREAT | O_BINARY, SH_DENYNO, -@@ -1989,7 +1989,7 @@ - /* - ** Now blow away the table files - */ -- (void)snprintf(path,MAXPATHLEN,"%s/msqldb/%s/%s.def",msqlHomeDir, -+ (void)snprintf(path,MAXPATHLEN,"/var/db/msqldb/%s/%s.def", - db,table); - cp = (char *)rindex(path,'.'); - #ifdef OS2 -@@ -2072,7 +2072,7 @@ - return(-1); - } - -- (void)snprintf(defPath,MAXPATHLEN,"%s/msqldb/%s/%s.idx",msqlHomeDir, -+ (void)snprintf(defPath,MAXPATHLEN,"/var/db/msqldb/%s/%s.idx", - db, index->table); - #ifdef OS2 - in = _sopen(defPath,O_RDONLY | O_BINARY, SH_DENYNO, S_IREAD | S_IWRITE); -@@ -2086,8 +2086,8 @@ - msqlTrace(TRACE_OUT,"msqlDropIndex()"); - return(-1); - } -- (void)snprintf(tmpPath,MAXPATHLEN,"%s/msqldb/%s/%s.idx-tmp", -- msqlHomeDir,db, index->table); -+ (void)snprintf(tmpPath,MAXPATHLEN,"/var/db/msqldb/%s/%s.idx-tmp", -+ db, index->table); - #ifdef OS2 - out = _sopen(tmpPath,O_RDWR | O_CREAT | O_BINARY, SH_DENYNO, - S_IREAD | S_IWRITE); -@@ -2137,7 +2137,7 @@ - */ - unlink(defPath); - rename(tmpPath,defPath); -- snprintf(tmpPath,MAXPATHLEN,"%s/msqldb/%s/%s.idx-%s",msqlHomeDir,db, -+ snprintf(tmpPath,MAXPATHLEN,"/var/db/msqldb/%s/%s.idx-%s",db, - index->table, index->name); - unlink(tmpPath); - -@@ -2757,7 +2757,7 @@ - ** See if the directory exists - */ - -- (void)snprintf(path,MAXPATHLEN,"%s/msqldb/%s", msqlHomeDir, db); -+ (void)snprintf(path,MAXPATHLEN,"/var/db/msqldb/%s", db); - dirp = opendir(path); - if (dirp) - { -@@ -2807,7 +2807,7 @@ - ** See if the "to" directory exists - */ - -- (void)snprintf(toPath,MAXPATHLEN,"%s/msqldb/%s", msqlHomeDir, toDB); -+ (void)snprintf(toPath,MAXPATHLEN,"/var/db/msqldb/%s", toDB); - dirp = opendir(toPath); - if (dirp) - { -@@ -2822,8 +2822,7 @@ - ** See if the "from" directory exists - */ - -- (void)snprintf(fromPath,MAXPATHLEN, "%s/msqldb/%s", msqlHomeDir, -- fromDB); -+ (void)snprintf(fromPath,MAXPATHLEN, "/var/db/msqldb/%s", fromDB); - dirp = opendir(fromPath); - if (!dirp) - { -@@ -2886,7 +2885,7 @@ - ** See if the "to" directory exists - */ - -- (void)snprintf(toPath,MAXPATHLEN,"%s/msqldb/%s", msqlHomeDir, toDB); -+ (void)snprintf(toPath,MAXPATHLEN,"/var/db/msqldb/%s", toDB); - dirp = opendir(toPath); - if (dirp) - { -@@ -2901,8 +2900,7 @@ - ** See if the "from" directory exists - */ - -- (void)snprintf(fromPath,MAXPATHLEN,"%s/msqldb/%s", msqlHomeDir, -- fromDB); -+ (void)snprintf(fromPath,MAXPATHLEN,"/var/db/msqldb/%s", fromDB); - dirp = opendir(fromPath); - if (!dirp) - { -@@ -2948,7 +2946,7 @@ - ** See if the directory exists - */ - -- (void)snprintf(path,MAXPATHLEN,"%s/msqldb/%s", msqlHomeDir, db); -+ (void)snprintf(path,MAXPATHLEN,"/var/db/msqldb/%s", db); - dirp = opendir(path); - if (!dirp) - { diff --git a/databases/msql3/files/patch-an b/databases/msql3/files/patch-an deleted file mode 100644 index ce08707d13fb..000000000000 --- a/databases/msql3/files/patch-an +++ /dev/null @@ -1,71 +0,0 @@ ---- src/msql/table.c Fri Feb 7 10:06:42 1997 -+++ src/msql/table.c Fri Feb 7 10:16:35 1997 -@@ -100,8 +100,7 @@ - { - char path[MAXPATHLEN]; - -- (void)snprintf(path, MAXPATHLEN, "%s/msqldb/%s/%s.dat",msqlHomeDir,db, -- table); -+ (void)snprintf(path, MAXPATHLEN, "/var/db/msqldb/%s/%s.dat",db,table); - #ifdef OS2 - return(_sopen(path, MAXPATHLEN, O_RDWR | O_BINARY, SH_DENYNO, S_IREAD | S_IWRITE)); - #else -@@ -115,8 +115,7 @@ - { - char path[MAXPATHLEN]; - -- (void)snprintf(path, MAXPATHLEN,"%s/msqldb/%s/%s.ofl",msqlHomeDir,db, -- table); -+ (void)snprintf(path, MAXPATHLEN, "/var/db/msqldb/%s/%s.ofl",db,table); - #ifdef OS2 - return(_sopen(path, MAXPATHLEN, O_RDWR | O_BINARY, SH_DENYNO, S_IREAD | S_IWRITE)); - #else -@@ -300,8 +300,7 @@ - static char buf[MAX_FIELDS * sizeof(field_t)]; - - msqlTrace(TRACE_IN,"readTableDef()"); -- (void)snprintf(path, MAXPATHLEN, "%s/msqldb/%s/%s.def",msqlHomeDir, -- db,table); -+ (void)snprintf(path, MAXPATHLEN, "/var/db/msqldb/%s/%s.def",db,table); - #ifdef OS2 - fd = _sopen(path, MAXPATHLEN, O_RDONLY | O_BINARY, SH_DENYNO, S_IREAD | S_IWRITE); - #else -@@ -367,7 +367,7 @@ - DIR *dirp; - char path[MAXPATHLEN]; - -- (void)snprintf(path,MAXPATHLEN,"%s/msqldb/.tmp",msqlHomeDir); -+ (void)strcpy(path, "/var/db/msqldb/.tmp"); - dirp = opendir(path); - if (!dirp) - { -@@ -387,7 +387,7 @@ - cur = readdir(dirp); - continue; - } -- (void)snprintf(path,MAXPATHLEN,"%s/msqldb/.tmp/%s",msqlHomeDir, -+ (void)snprintf(path, MAXPATHLEN, "/var/db/msqldb/.tmp/%s", - cur->d_name); - unlink(path); - cur = readdir(dirp); -@@ -434,8 +434,7 @@ - { - tmpfile = cp+1; - } -- (void)snprintf(path,MAXPATHLEN,"%s/msqldb/.tmp/%s.dat",msqlHomeDir, -- tmpfile); -+ (void)snprintf(path, MAXPATHLEN, "/var/db/msqldb/.tmp/%s.dat",tmpfile); - - - /* -@@ -642,8 +642,8 @@ - char path[MAXPATHLEN]; - - msqlTrace(TRACE_IN,"freeTmpTable()"); -- (void)snprintf(path,MAXPATHLEN, "%s/msqldb/.tmp/%s.dat",msqlHomeDir, -- entry->table); -+ (void)snprintf(path, MAXPATHLEN, "/var/db/msqldb/.tmp/%s.dat", -+ entry->table); - freeTableDef(entry->def); - entry->def = NULL; - *(entry->db) = 0; diff --git a/databases/msql3/files/patch-ao b/databases/msql3/files/patch-ao deleted file mode 100644 index 5e8b8e9d683e..000000000000 --- a/databases/msql3/files/patch-ao +++ /dev/null @@ -1,20 +0,0 @@ ---- src/msql/sort.c.orig Fri Aug 28 17:20:10 1998 -+++ src/msql/sort.c Fri Aug 28 17:18:42 1998 -@@ -280,7 +280,7 @@ - /* - ** Create the dummy output table - */ -- snprintf(dataPath,MAXPATHLEN,"%s/msqldb/.tmp/%s.tmp",INST_DIR, -+ snprintf(dataPath,MAXPATHLEN,"/var/db/msqldb/.tmp/%s.tmp", - entry->table); - tmp.dataFD = open(dataPath, O_CREAT|O_RDWR, 0600); - bzero(&sblock, sizeof(sblock)); -@@ -328,7 +328,7 @@ - /* - ** Swap the new table into place - */ -- snprintf(oldPath,MAXPATHLEN,"%s/msqldb/.tmp/%s.dat",INST_DIR, -+ snprintf(oldPath,MAXPATHLEN,"/var/db/msqldb/.tmp/%s.dat", - entry->table); - munmap(entry->dataMap, entry->size); - close(entry->dataFD); diff --git a/databases/msql3/files/post-install-notes b/databases/msql3/files/post-install-notes deleted file mode 100644 index 71ae6e0c0e3a..000000000000 --- a/databases/msql3/files/post-install-notes +++ /dev/null @@ -1,55 +0,0 @@ - README for Mini SQL Version 2.0 -------------------------------------------------------------------------------- - -Welcome to the production release of Mini SQL 2.0! The 2.0 code has -been undergoing Beta testing for many months now and has proven to be -stable enough for a production release. Development and bug fixing will -continue as problems are identified so please check our web site -regularly for upates at http://www.Hughes.com.au/ - -As the software has now officially left the Beta test stage, it is being -released as a commercial package. The software may be evaluated for 14 -days before a license fee is due. If you continue to use the software -after 14 days you are required to pay a licnese fee. To license your -copy of mSQL 2.0, simply print out the invoice form located in the doc/ -directory of this distribution and return it with payment to us either -via postal mail or via fax. Our fax number and postal address has -changed since the 1.x release so please check the details before sending -your payment. - - -FreeBSD-specific port notes ---------------------------- - -The port of mSQL 1.x lived in it's own tree, /usr/local/Minerva. At the -time, mSQL was a part of a larger project called Minerva, to which other -tools would be added. These other tools would also live in -/usr/local/Minerva. - -As of the 2.x release of mSQL, the author of mSQL has put many of these -tools into the base mSQL distribution, and so it is no longer feasible to -have the program live in it's own directory. - -So, in keeping with the BSD directory tree structure, you will find the -following changes between the "official" mSQL 2.x distribution and the -FreeBSD port : - - -Documentation states: Port uses: -===================== ========================== -/usr/local/Hughes /usr/local -/usr/local/Hughes/msqldb /var/db/msqldb -/usr/local/Hughes/msql2.sock /usr/local/etc/msql2/msql2.sock -/usr/local/Hughes/msql2.pid /usr/local/etc/msql2/msql2.pid -/usr/local/Hughes/msql.conf /usr/local/etc/msql2/msql.conf -/usr/local/Hughes/msql.acl /usr/local/etc/msql2/msql.acl - -To start the daemon, run /usr/local/etc/rc.d/msql2.sh as root. This will -start the daemon as the 'msql' user to make sure that the access permissions -are correct. This script will be executed upon system startup. - -Remember that mSQL is not free for use. Please see -/usr/local/share/doc/msql/License for details. - --- -j. diff --git a/databases/msql3/pkg-comment b/databases/msql3/pkg-comment deleted file mode 100644 index 943abba03f75..000000000000 --- a/databases/msql3/pkg-comment +++ /dev/null @@ -1 +0,0 @@ -The Mini SQL server, version 2 diff --git a/databases/msql3/pkg-descr b/databases/msql3/pkg-descr deleted file mode 100644 index bd5dd7ef045a..000000000000 --- a/databases/msql3/pkg-descr +++ /dev/null @@ -1,46 +0,0 @@ - README for Mini SQL Version 2.0 Beta 1 -------------------------------------------------------------------------------- - -Welcome to Mini SQL 2! It's been a long time coming but we hope the -wait has been worth it. As the development of mSQL 2 continues, further -funtionality will be made available. This release concentrates on -adding the underlying performance and data handling features to mSQL. - -The software has changed quite a lot since the 1.x version of mSQL. -Some of the new features are greatly improved support for indexing your -data, much better performance for complex queries and large data sets, -the addition of variable length TEXT fields, support for server managed -numeric sequences, better regular expression handling, and easier -control over the configuration of the server. - - -FreeBSD-specific port notes ---------------------------- - -The ports of mSQL 1.x lived in it's own tree, /usr/local/Minerva. At the -time, mSQL was a part of a larger project called Minerva, to which other -tools would be added. These other tools would also live in -/usr/local/Minerva. - -As of the 2.x release of mSQL, the author of mSQL has put many of these -tools into the base mSQL distribution, and so it is no longer feasible to -have the program live in it's own directory. - -So, in keeping with the BSD directory tree structure, you will find the -following changes between the "official" mSQL 2.x distribution and the -FreeBSD port : - - -Documentation states: Port uses: -===================== ========================== -/usr/local/Hughes /usr/local -/usr/local/Hughes/msqldb /var/db/msqldb -/usr/local/Hughes/msql2.sock /usr/local/etc/msql2/msql2.sock -/usr/local/Hughes/msql2.pid /usr/local/etc/msql2/msql2.pid -/usr/local/Hughes/msql.conf /usr/local/etc/msql2/msql.conf -/usr/local/Hughes/msql.acl /usr/local/etc/msql2/msql.acl - --- -j. - -WWW: http://www.hughes.com.au diff --git a/databases/msql3/pkg-plist b/databases/msql3/pkg-plist deleted file mode 100644 index ce459cf0bea3..000000000000 --- a/databases/msql3/pkg-plist +++ /dev/null @@ -1,103 +0,0 @@ -bin/lite -bin/msql -bin/msql2d -bin/msqladmin -bin/msqldump -bin/msqlexport -bin/msqlimport -bin/relshow -bin/run_daemon -bin/w3-auth -bin/w3-msql -etc/msql2/msql.acl.sample -etc/msql2/msql.conf -etc/rc.d/msql2.sh -include/common/config.h -include/common/portability.h -include/lite.h -include/mod_msql.h -include/mod_std.h -include/msql.h -include/regexp.h -lib/liblite.a -lib/libmsql.a -lib/libregexp.a -lib/lite_lex.o -lib/mod_lite.o -lib/mod_msql.o -lib/mod_std.o -share/doc/msql/HISTORY -share/doc/msql/INSTALL -share/doc/msql/License -share/doc/msql/MSQL_BOOK -share/doc/msql/README -share/doc/msql/README.sco -share/doc/msql/RELEASE_NOTES -share/doc/msql/invoice.ps.gz -share/doc/msql/invoice.txt -share/doc/msql/manual-html/Image1.gif -share/doc/msql/manual-html/Image2.gif -share/doc/msql/manual-html/Image3.gif -share/doc/msql/manual-html/Image4.gif -share/doc/msql/manual-html/Image5.gif -share/doc/msql/manual-html/Image6.gif -share/doc/msql/manual-html/deer.gif -share/doc/msql/manual-html/manual.html -share/doc/msql/manual.ps.gz -share/doc/msql/post-install-notes -share/msql/makegen/directory.mm -share/msql/makegen/install.mm -share/msql/makegen/lex.mm -share/msql/makegen/libinstall.mm -share/msql/makegen/library.mm -share/msql/makegen/makegen -share/msql/makegen/makegen.cf -share/msql/makegen/makegen.cf.in -share/msql/makegen/object.mm -share/msql/makegen/program.mm -share/msql/makegen/site.mm -share/msql/makegen/touch.mm -share/msql/makegen/yacc.mm -share/msql/misc/setup_w3auth -share/msql/www/bookmarks/README -share/msql/www/bookmarks/Welcome.html -share/msql/www/bookmarks/add.html -share/msql/www/bookmarks/back.gif -share/msql/www/bookmarks/book.gif -share/msql/www/bookmarks/bookmarks.html -share/msql/www/bookmarks/create.gif -share/msql/www/bookmarks/create.html -share/msql/www/bookmarks/delete.gif -share/msql/www/bookmarks/delete.html -share/msql/www/bookmarks/dump.msql -share/msql/www/bookmarks/home.gif -share/msql/www/bookmarks/folder.gif -share/msql/www/bookmarks/mark-big.gif -share/msql/www/bookmarks/remove.html -share/msql/www/bookmarks/search.gif -share/msql/www/bookmarks/search.html -share/msql/www/bookmarks/search_result.html -share/msql/www/bookmarks/wood.gif -share/msql/www/bookmarks/setup_bookmark -share/msql/www/graphics/add.gif -share/msql/www/graphics/area.gif -share/msql/www/graphics/banner.gif -share/msql/www/graphics/blank.gif -share/msql/www/graphics/delete.gif -share/msql/www/graphics/edit.gif -share/msql/www/graphics/group.gif -share/msql/www/graphics/hughes.gif -share/msql/www/graphics/logout.gif -share/msql/www/graphics/priv.gif -share/msql/www/graphics/user.gif -share/msql/www/graphics/view.gif -@dirrm etc/msql2 -@dirrm include/common -@dirrm share/doc/msql/manual-html -@dirrm share/doc/msql -@dirrm share/msql/makegen -@dirrm share/msql/misc -@dirrm share/msql/www/bookmarks -@dirrm share/msql/www/graphics -@dirrm share/msql/www -@dirrm share/msql diff --git a/databases/msql3/scripts/check_old_version b/databases/msql3/scripts/check_old_version deleted file mode 100644 index a87d343af800..000000000000 --- a/databases/msql3/scripts/check_old_version +++ /dev/null @@ -1,32 +0,0 @@ -#!/usr/bin/perl -# -# $FreeBSD$ -# - -if( -d "/var/db/msqldb" ) { - chdir( "/var/db/pkg" ); - opendir( DIR, "." ); - @oldmsql = grep( /^msql-2.0b[1234]$/, readdir( DIR ) ); - closedir( DIR ); - if( @oldmsql ) { - if( ! $ENV{OVERWRITE_DB} ) { - print <<END; - -mSQL v2.0 beta 5 and above make changes to the AVL index format of your -databases. In order to preserve your existing data, you must: - - use msqldump to dump all your databases - - install beta 5 or above - - use msqladmin to drop and then create each of your databases - - use msql to reload your data - -If you understand the consequences of this upgrade, please re-build this -port with the environment variable OVERWRITE_DB defined. - -END - exit 1; - } - } -} - -# -# EOF diff --git a/databases/msql3/scripts/createuser b/databases/msql3/scripts/createuser deleted file mode 100644 index 67928eedf9eb..000000000000 --- a/databases/msql3/scripts/createuser +++ /dev/null @@ -1,50 +0,0 @@ -#!/usr/bin/perl -# - -eval '(exit $?0)' && eval 'exec /usr/bin/perl -S $0 ${1+"$@"}' -& eval 'exec /usr/bin/perl -S $0 $argv:q' -if 0; - -if( $> ) { - print "\nYou must be root to run this step!\n\n"; - exit 1; -} - -if( getpwnam( "msql" ) ) { - ( $null, $null, $msqlUID ) = getpwnam( "msql" ); -} else { - $msqlUID = 87; - while( getpwuid( $msqlUID ) ) { - $msqlUID++; - } -} - -if( getgrnam( "msql" ) ) { - ( $null, $null, $msqlGID ) = getgrnam( "msql" ); -} else { - $msqlGID = 87; - while( getgrgid( $msqlGID ) ) { - $msqlGID++; - } - &append_file( "/etc/group", "msql:*:$msqlGID:" ); -} - -print "msql user using uid $msqlUID\n"; -print "msql user using gid $msqlGID\n"; - -system( "/usr/bin/chpass -a \"msql:*:$msqlUID:$msqlGID\::0:0:mSQL-2 pseudo-user:/var/db/msqldb:/bin/sh\"" ); - -sub append_file { - local($file,@list) = @_; - local($LOCK_EX) = 2; - local($LOCK_NB) = 4; - local($LOCK_UN) = 8; - - open(F, ">> $file") || die "$file: $!\n"; - while( ! flock( F, $LOCK_EX | $LOCK_NB ) ) { - exit 1; - } - print F join( "\n", @list) . "\n"; - close F; - flock( F, $LOCK_UN ); -} diff --git a/databases/msql3/scripts/customize_scripts b/databases/msql3/scripts/customize_scripts deleted file mode 100644 index 7b981a2b958f..000000000000 --- a/databases/msql3/scripts/customize_scripts +++ /dev/null @@ -1,7 +0,0 @@ -#!/usr/bin/perl -# - -chop( $HOSTNAME=`hostname` ); - -system( "/usr/bin/perl -pi -e 's|%%PREFIX%%|$ENV{'PREFIX'}|' $ENV{'WRKSRC'}/scripts/run_daemon $ENV{'WRKSRC'}/misc/msql.conf" ); -system( "/usr/bin/perl -pi -e 's|%%HOSTNAME%%|$HOSTNAME|' $ENV{'WRKSRC'}/scripts/run_daemon" ); diff --git a/databases/mysql-connector-java/Makefile b/databases/mysql-connector-java/Makefile deleted file mode 100644 index e66bb8cd3cb0..000000000000 --- a/databases/mysql-connector-java/Makefile +++ /dev/null @@ -1,27 +0,0 @@ -# New ports collection makefile for: The mm MySql JDBC interface -# Date created: 2 January 2000 -# Whom: Dave Glowacki <dglo@ssec.wisc.edu> -# -# $FreeBSD$ -# - -PORTNAME= mysql-jdbc-mm -PORTVERSION= 1.2c -CATEGORIES= databases java -MASTER_SITES= http://www.worldserver.com/mm.mysql/dist/ -DISTNAME= mm.mysql.jdbc-${PORTVERSION} - -MAINTAINER= dglo@SSEC.WISC.EDU - -BUILD_DEPENDS= ${LOCALBASE}/jdk1.1.8/bin/javac:${PORTSDIR}/java/jdk -RUN_DEPENDS= ${LOCALBASE}/jdk1.1.8/bin/java:${PORTSDIR}/java/jdk - -MAKE_ENV+= JAVAC=${LOCALBASE}/jdk1.1.8/bin/javac - -ALL_TARGET= jar - -do-install: - @${MKDIR} ${PREFIX}/share/java/classes - @${INSTALL_DATA} ${WRKSRC}/mysql_comp.jar ${LOCALBASE}/share/java/classes - -.include <bsd.port.mk> diff --git a/databases/mysql-connector-java/distinfo b/databases/mysql-connector-java/distinfo deleted file mode 100644 index 50d1fb7e58c4..000000000000 --- a/databases/mysql-connector-java/distinfo +++ /dev/null @@ -1 +0,0 @@ -MD5 (mm.mysql.jdbc-1.2c.tar.gz) = b04aa7f3048c2ebb169ee88ce19a6a4c diff --git a/databases/mysql-connector-java/files/patch-aa b/databases/mysql-connector-java/files/patch-aa deleted file mode 100644 index d1439b25bff5..000000000000 --- a/databases/mysql-connector-java/files/patch-aa +++ /dev/null @@ -1,11 +0,0 @@ ---- Makefile.orig Mon Feb 21 23:43:51 2000 -+++ Makefile Sat Mar 4 09:34:31 2000 -@@ -3,7 +3,7 @@ - # $Id: Makefile,v 1.2 1998/08/25 04:02:25 mmatthew Exp $ - # - --JAVAC = /usr/local/jdk118/bin/javac -+JAVAC = javac - JAVAC_FLAGS =-O -g - - all: diff --git a/databases/mysql-connector-java/pkg-comment b/databases/mysql-connector-java/pkg-comment deleted file mode 100644 index f14901731c9b..000000000000 --- a/databases/mysql-connector-java/pkg-comment +++ /dev/null @@ -1 +0,0 @@ -The mm JDBC interface for MySQL diff --git a/databases/mysql-connector-java/pkg-descr b/databases/mysql-connector-java/pkg-descr deleted file mode 100644 index f2fcaa8d0934..000000000000 --- a/databases/mysql-connector-java/pkg-descr +++ /dev/null @@ -1,6 +0,0 @@ -This is a port of the mm JDBC driver which is used to access MySQL -databases using a database-independant API in Java. - -WWW: http://www.worldserver.com/mm.mysql/ - -dglo@ssec.wisc.edu diff --git a/databases/mysql-connector-java/pkg-plist b/databases/mysql-connector-java/pkg-plist deleted file mode 100644 index 588e250f4f52..000000000000 --- a/databases/mysql-connector-java/pkg-plist +++ /dev/null @@ -1 +0,0 @@ -share/java/classes/mysql_comp.jar diff --git a/databases/mysql-connector-java50/Makefile b/databases/mysql-connector-java50/Makefile deleted file mode 100644 index e66bb8cd3cb0..000000000000 --- a/databases/mysql-connector-java50/Makefile +++ /dev/null @@ -1,27 +0,0 @@ -# New ports collection makefile for: The mm MySql JDBC interface -# Date created: 2 January 2000 -# Whom: Dave Glowacki <dglo@ssec.wisc.edu> -# -# $FreeBSD$ -# - -PORTNAME= mysql-jdbc-mm -PORTVERSION= 1.2c -CATEGORIES= databases java -MASTER_SITES= http://www.worldserver.com/mm.mysql/dist/ -DISTNAME= mm.mysql.jdbc-${PORTVERSION} - -MAINTAINER= dglo@SSEC.WISC.EDU - -BUILD_DEPENDS= ${LOCALBASE}/jdk1.1.8/bin/javac:${PORTSDIR}/java/jdk -RUN_DEPENDS= ${LOCALBASE}/jdk1.1.8/bin/java:${PORTSDIR}/java/jdk - -MAKE_ENV+= JAVAC=${LOCALBASE}/jdk1.1.8/bin/javac - -ALL_TARGET= jar - -do-install: - @${MKDIR} ${PREFIX}/share/java/classes - @${INSTALL_DATA} ${WRKSRC}/mysql_comp.jar ${LOCALBASE}/share/java/classes - -.include <bsd.port.mk> diff --git a/databases/mysql-connector-java50/distinfo b/databases/mysql-connector-java50/distinfo deleted file mode 100644 index 50d1fb7e58c4..000000000000 --- a/databases/mysql-connector-java50/distinfo +++ /dev/null @@ -1 +0,0 @@ -MD5 (mm.mysql.jdbc-1.2c.tar.gz) = b04aa7f3048c2ebb169ee88ce19a6a4c diff --git a/databases/mysql-connector-java50/files/patch-aa b/databases/mysql-connector-java50/files/patch-aa deleted file mode 100644 index d1439b25bff5..000000000000 --- a/databases/mysql-connector-java50/files/patch-aa +++ /dev/null @@ -1,11 +0,0 @@ ---- Makefile.orig Mon Feb 21 23:43:51 2000 -+++ Makefile Sat Mar 4 09:34:31 2000 -@@ -3,7 +3,7 @@ - # $Id: Makefile,v 1.2 1998/08/25 04:02:25 mmatthew Exp $ - # - --JAVAC = /usr/local/jdk118/bin/javac -+JAVAC = javac - JAVAC_FLAGS =-O -g - - all: diff --git a/databases/mysql-connector-java50/pkg-comment b/databases/mysql-connector-java50/pkg-comment deleted file mode 100644 index f14901731c9b..000000000000 --- a/databases/mysql-connector-java50/pkg-comment +++ /dev/null @@ -1 +0,0 @@ -The mm JDBC interface for MySQL diff --git a/databases/mysql-connector-java50/pkg-descr b/databases/mysql-connector-java50/pkg-descr deleted file mode 100644 index f2fcaa8d0934..000000000000 --- a/databases/mysql-connector-java50/pkg-descr +++ /dev/null @@ -1,6 +0,0 @@ -This is a port of the mm JDBC driver which is used to access MySQL -databases using a database-independant API in Java. - -WWW: http://www.worldserver.com/mm.mysql/ - -dglo@ssec.wisc.edu diff --git a/databases/mysql-connector-java50/pkg-plist b/databases/mysql-connector-java50/pkg-plist deleted file mode 100644 index 588e250f4f52..000000000000 --- a/databases/mysql-connector-java50/pkg-plist +++ /dev/null @@ -1 +0,0 @@ -share/java/classes/mysql_comp.jar diff --git a/databases/mysql-connector-odbc/Makefile b/databases/mysql-connector-odbc/Makefile deleted file mode 100644 index 24bf1996a653..000000000000 --- a/databases/mysql-connector-odbc/Makefile +++ /dev/null @@ -1,23 +0,0 @@ -# New ports collection makefile for: MyODBC -# Date created: 24 Mar 2000 -# Whom: erikhb@bgnett.no -# -# $FreeBSD$ -# - -PORTNAME= MyODBC -PORTVERSION= 2.50.28 -CATEGORIES= databases -MASTER_SITES= ftp://ftp.sunet.se/pub/unix/databases/relational/mysql/Downloads/MyODBC/ - -MAINTAINER= erikhb@bgnett.no - -LIB_DEPENDS= iodbc.2:${PORTSDIR}/databases/libiodbc \ - mysqlclient.6:${PORTSDIR}/databases/mysql322-client - -USE_LIBTOOL= yes -CONFIGURE_ARGS= --with-mysql-libs=${PREFIX}/lib/mysql \ - --with-mysql-includes=${PREFIX}/include/mysql -USE_GMAKE= yes - -.include <bsd.port.mk> diff --git a/databases/mysql-connector-odbc/distinfo b/databases/mysql-connector-odbc/distinfo deleted file mode 100644 index 7eabdacb438c..000000000000 --- a/databases/mysql-connector-odbc/distinfo +++ /dev/null @@ -1 +0,0 @@ -MD5 (MyODBC-2.50.28.tar.gz) = 62588aeb5c653600a3aa9dac02a0d190 diff --git a/databases/mysql-connector-odbc/pkg-comment b/databases/mysql-connector-odbc/pkg-comment deleted file mode 100644 index 64dec6dcace1..000000000000 --- a/databases/mysql-connector-odbc/pkg-comment +++ /dev/null @@ -1 +0,0 @@ -ODBC driver for MySQL diff --git a/databases/mysql-connector-odbc/pkg-descr b/databases/mysql-connector-odbc/pkg-descr deleted file mode 100644 index d6138e54604c..000000000000 --- a/databases/mysql-connector-odbc/pkg-descr +++ /dev/null @@ -1,5 +0,0 @@ -MyODBC is an ODBC driver for interfacing to MySQL -databases - -- Erik H. Bakke -erikhb@bgnett.no diff --git a/databases/mysql-connector-odbc/pkg-plist b/databases/mysql-connector-odbc/pkg-plist deleted file mode 100644 index a60e9b08f8e4..000000000000 --- a/databases/mysql-connector-odbc/pkg-plist +++ /dev/null @@ -1,2 +0,0 @@ -lib/libmyodbc-2.50.28.so -lib/libmyodbc.so diff --git a/databases/mysql40-client/Makefile b/databases/mysql40-client/Makefile deleted file mode 100644 index 8284511ecb0e..000000000000 --- a/databases/mysql40-client/Makefile +++ /dev/null @@ -1,17 +0,0 @@ -# ports collection makefile for: MySQL-client -# Date created: Thu Jun 24 00:12:22 CEST 1999 -# Whom: Dirk Froemberg <dirk@FreeBSD.org> -# -# $FreeBSD$ -# - -PORTNAME= ${MASTERPORTNAME:S/-server/-client/g} - -MASTERDIR= ${.CURDIR}/../mysql322-server -COMMENT= ${PKGDIR}/COMMENT.client -PKGINSTALL= mustnotexist -PLIST= ${PKGDIR}/PLIST.client - -CLIENT_ONLY= yes - -.include "${MASTERDIR}/Makefile" diff --git a/databases/mysql40-server/Makefile b/databases/mysql40-server/Makefile deleted file mode 100644 index 9a6c2a590256..000000000000 --- a/databases/mysql40-server/Makefile +++ /dev/null @@ -1,154 +0,0 @@ -# ports collection makefile for: MySQL-server -# Date created: 26 Jan 1998 -# Whom: Josh Tiefenbach <josh@ican.net> -# -# $FreeBSD$ -# - -PORTNAME?= ${MASTERPORTNAME} -PORTVERSION= 3.22.32 -CATEGORIES= databases -MASTER_SITES= http://www.fh-wolfenbuettel.de/ftp/pub/database/mysql/Downloads/MySQL-3.22/ \ - ftp://ftp.digex.net/pub/packages/database/mysql/Downloads/MySQL-3.22/ \ - ftp://ftp.plig.net/pub/mysql/Downloads/MySQL-3.22/ \ - ftp://ftp.sunet.se/pub/unix/databases/relational/mysql/Downloads/MySQL-3.22/ -DISTNAME= mysql-${PORTVERSION} - -MAINTAINER= dirk@FreeBSD.org - -Y2K= http://www.tcx.se/Manual_chapter/manual_Introduction.html#Year_2000_compliance - -SLAVEDIRS= databases/mysql322-client -MASTERPORTNAME= mysql-server -DB_DIR?= /var/db/mysql -USE_PERL5= yes -USE_LIBTOOL= yes -CONFIGURE_ARGS= --localstatedir=${DB_DIR} \ - --without-perl \ - --without-debug \ - --without-readline \ - --without-bench -.if ${MACHINE_ARCH} == "i386" -CONFIGURE_ARGS+=--enable-assembler -.endif -CONFIGURE_ENV+= PERL=${PERL} \ - PERL5=${PERL} \ - INSTALL_SCRIPT="${INSTALL_SCRIPT}" \ - CONFIGURE_ARGS="${CONFIGURE_ARGS}" - -# MySQL-Server part -.if !defined(CLIENT_ONLY) -RUN_DEPENDS= mysql:${PORTSDIR}/databases/mysql322-client - -.include <bsd.port.pre.mk> - -.if ${OSVERSION} >= 320000 -.if defined(MIT_PTHREADS) -CONFIGURE_ARGS+= --with-mit-threads=yes - -pre-fetch: - @${ECHO} - @${ECHO} "Using supplied mit-pthreads." - @${ECHO} -.else -CONFIGURE_ARGS+= --with-mit-threads=no - -pre-fetch: - @${ECHO} - @${ECHO} "Using native FreeBSD threads (libc_r)." - @${ECHO} - @${ECHO} "You may set MIT_PTHREADS (make MIT_PTHREADS=yes)" - @${ECHO} "to compile mysql with the supplied mit-pthreads." - @${ECHO} "(You don't want to set this unless you have a good reason)." - @${ECHO} -.endif -.elif ${OSVERSION} >= 300000 -.if defined(NATIVE_THREADS) -CONFIGURE_ARGS+= --with-mit-threads=no - -pre-fetch: - @${ECHO} - @${ECHO} "Using native FreeBSD threads (libc_r)." - @${ECHO} -.else -CONFIGURE_ARGS+= --with-mit-threads=yes - -pre-fetch: - @${ECHO} - @${ECHO} "Using supplied mit-pthreads." - @${ECHO} - @${ECHO} "You may set NATIVE_THREADS (make NATIVE_THREADS=yes)" - @${ECHO} "to compile mysql with the native FreeBSD threads (libc_r)." - @${ECHO} "Warning: There are some bugs in libc_r which prevent" - @${ECHO} " 'mysqladmin shutdown' from working properly and" - @${ECHO} " killing mysqld might not work." - @${ECHO} -.endif -.else -CONFIGURE_ARGS+= --with-mit-threads=yes - -pre-fetch: - @${ECHO} - @${ECHO} "Using supplied mit-pthreads." - @${ECHO} -.endif - -post-patch: - ${MV} ${WRKSRC}/strings/strings-x86.s ${WRKSRC}/strings/strings-x86.S - ${MV} ${WRKSRC}/strings/longlong2str-x86.s ${WRKSRC}/strings/longlong2str-x86.S - -pre-install: -.if !defined(PACKAGE_BUILDING) && exists(${DB_DIR}) && !defined(OVERWRITE_DB) - @${ECHO} "You appear to already have a mysql database directory in ${DB_DIR}." - @${ECHO} "" - @${ECHO} "In order to preserve your existing data, you should:" - @${ECHO} " - dump all your databases" - @${ECHO} " - kill mysql if it is running" - @${ECHO} " - delete the ${DB_DIR} directory" - @${ECHO} " - run 'make install'" - @${ECHO} " - start up mysql" - @${ECHO} " - re-create all of your database" - @${ECHO} " - re-load your data" - @${ECHO} "" - @${ECHO} "If you understand the consequences of this upgrade, please re-build this" - @${ECHO} "port with the environment variable OVERWRITE_DB defined." - @${FALSE} -.endif - -post-install: -.if !defined(PACKAGE_BUILDING) - ${PREFIX}/bin/mysql_install_db - @${SETENV} DB_DIR=${DB_DIR} ${SH} ${PKGINSTALL} ${PKGNAME} POST-INSTALL -.endif - @${SED} "s|%%PREFIX%%|${PREFIX}|g" < ${FILESDIR}/mysql-server.sh > ${PREFIX}/etc/rc.d/mysql-server.sh - @${CHMOD} 750 ${PREFIX}/etc/rc.d/mysql-server.sh - -.if !defined(NOPORTDOCS) - ${MKDIR} ${PREFIX}/share/doc/mysql/Img -.for doc in manual.html manual.ps manual_toc.html manual.txt manual.texi include.texi - ${INSTALL_DATA} ${WRKSRC}/Docs/${doc} ${PREFIX}/share/doc/mysql -.endfor - ${INSTALL_DATA} ${WRKSRC}/Docs/Img/*.gif ${PREFIX}/share/doc/mysql/Img - ${INSTALL_DATA} ${WRKSRC}/Docs/mysql.info ${PREFIX}/info - @install-info ${PREFIX}/info/mysql.info ${PREFIX}/info/dir -.endif - -.include <bsd.port.post.mk> - -# MySQL-Client part -.else -MAN1= mysql.1 - -CONFIGURE_ARGS+=--without-server -MAKE_ENV= CLIENT_ONLY="${CLIENT_ONLY}" - -post-install: - @${ECHO} "#!/bin/sh" > ${PREFIX}/etc/rc.d/mysql-client.sh - @${ECHO} "" >> ${PREFIX}/etc/rc.d/mysql-client.sh - @${ECHO} "${LDCONFIG} -m ${PREFIX}/lib/mysql" >> ${PREFIX}/etc/rc.d/mysql-client.sh - @${CHMOD} 750 ${PREFIX}/etc/rc.d/mysql-client.sh - - ${SETENV} OBJFORMAT=${PORTOBJFORMAT} ${LDCONFIG} -m ${PREFIX}/lib/mysql - -.include <bsd.port.mk> -.endif diff --git a/databases/mysql40-server/distinfo b/databases/mysql40-server/distinfo deleted file mode 100644 index edfe7eb2ff4a..000000000000 --- a/databases/mysql40-server/distinfo +++ /dev/null @@ -1 +0,0 @@ -MD5 (mysql-3.22.32.tar.gz) = 244e08d9a1f4b2ad799aa40ad3cc897a diff --git a/databases/mysql40-server/files/mysql-server.sh b/databases/mysql40-server/files/mysql-server.sh deleted file mode 100644 index 0ff5374c48f7..000000000000 --- a/databases/mysql40-server/files/mysql-server.sh +++ /dev/null @@ -1,18 +0,0 @@ -#!/bin/sh - -case "$1" in - start) - if [ -x %%PREFIX%%/bin/safe_mysqld ]; then - %%PREFIX%%/bin/safe_mysqld --user=mysql > /dev/null & && echo -n ' mysqld' - fi - ;; - stop) - /usr/bin/killall mysqld > /dev/null 2>&1 && echo -n ' mysqld' - ;; - *) - echo "" - echo "Usage: `basename $0` { start | stop }" - echo "" - exit 64 - ;; -esac diff --git a/databases/mysql40-server/files/patch-Makefile.in b/databases/mysql40-server/files/patch-Makefile.in deleted file mode 100644 index 00190736f765..000000000000 --- a/databases/mysql40-server/files/patch-Makefile.in +++ /dev/null @@ -1,15 +0,0 @@ ---- Makefile.in.orig Sat Jan 1 17:59:38 2000 -+++ Makefile.in Mon Jan 3 17:19:23 2000 -@@ -144,7 +144,11 @@ - # These are built from source in the Docs directory - EXTRA_DIST = INSTALL-SOURCE-GENERIC README PUBLIC INSTALL-SOURCE MIRRORS - --SUBDIRS = include @docs_dirs@ @readline_dir@ client @sql_server_dirs@ scripts tests man @bench_dirs@ support-files -+.if defined(CLIENT_ONLY) -+SUBDIRS = include @readline_dir@ client tests man -+.else -+SUBDIRS = include @docs_dirs@ @sql_server_dirs@ scripts @bench_dirs@ support-files -+.endif - - - # Relink after clean diff --git a/databases/mysql40-server/files/patch-ab b/databases/mysql40-server/files/patch-ab deleted file mode 100644 index 1fd66bbe0cad..000000000000 --- a/databases/mysql40-server/files/patch-ab +++ /dev/null @@ -1,33 +0,0 @@ ---- scripts/mysql_install_db.sh.orig Wed Jan 12 21:06:30 2000 -+++ scripts/mysql_install_db.sh Sun Mar 26 23:20:27 2000 -@@ -15,8 +15,6 @@ - force=0 - IN_RPM=0 - --# Are we doing an rpm install? --if test "$1" = "-IN-RPM"; then IN_RPM=1; shift; fi - if test "$1" = "--force"; then force=1; shift; fi - - # Get mysqld/safe_mysqld options from /etc/my.cnf or ~/.my.cnf -@@ -60,8 +58,6 @@ - fi - fi - --# On IRIX hostname is in /usr/bsd so add this to the path --PATH=$PATH:/usr/bsd - hostname=`hostname` # Install this too in the user table - - # Check if hostname is valid -@@ -255,12 +251,6 @@ - END_OF_DATA - then - echo "" -- if test "$IN_RPM" -eq 0 -- then -- echo "To start mysqld at boot time you have to copy support-files/mysql.server" -- echo "to the right place for your system" -- echo -- fi - echo "PLEASE REMEMBER TO SET A PASSWORD FOR THE MySQL root USER !" - echo "This is done with:" - echo "$bindir/mysqladmin -u root password 'new-password'" diff --git a/databases/mysql40-server/files/patch-af b/databases/mysql40-server/files/patch-af deleted file mode 100644 index 2593da4d1c64..000000000000 --- a/databases/mysql40-server/files/patch-af +++ /dev/null @@ -1,73 +0,0 @@ ---- scripts/safe_mysqld.sh.orig Fri May 14 11:11:46 1999 -+++ scripts/safe_mysqld.sh Tue Jun 8 11:14:02 1999 -@@ -12,33 +12,9 @@ - - trap '' 1 2 3 15 # we shouldn't let anyone kill us - --# Check if we are starting this relative (for the binary release) --if test -d ./data/mysql -a -f ./share/mysql/english/errmsg.sys -a \ -- -x ./bin/mysqld --then -- MY_BASEDIR_VERSION=`pwd` # Where bin, share and data are -- DATADIR=$MY_BASEDIR_VERSION/data # Where the databases are -- ledir=$MY_BASEDIR_VERSION/bin # Where mysqld is --# Check if this is a 'moved install directory' --elif test -f ./var/mysql/db.frm -a -f ./share/mysql/english/errmsg.sys -a \ -- -x ./libexec/mysqld --then -- MY_BASEDIR_VERSION=`pwd` # Where libexec, share and var are -- DATADIR=$MY_BASEDIR_VERSION/var # Where the databases are -- ledir=$MY_BASEDIR_VERSION/libexec # Where mysqld is --else -- MY_BASEDIR_VERSION=@prefix@ -- DATADIR=@localstatedir@ -- ledir=@libexecdir@ -- if test ! -x $ledir/mysqld -- then -- echo "The file $ledir/mysqld doesn't exist or is not executable" -- echo "Please do a cd to the mysql installation directory and restart" -- echo "this script from there as follows:" -- echo "./bin/safe_mysqld". -- exit 1; -- fi --fi -+MY_BASEDIR_VERSION=@prefix@ -+DATADIR=@localstatedir@ -+ledir=@libexecdir@ - - pid_file=$DATADIR/`@HOSTNAME@`.pid - log=$DATADIR/`@HOSTNAME@`.log -@@ -114,33 +90,6 @@ - if test ! -f $pid_file # This is removed if normal shutdown - then - break; -- fi -- if @IS_LINUX@ -- then -- # Test if one process was hanging. -- # This is only a fix for Linux (running as base 3 mysqld processes) -- # but should work for the rest of the servers. -- # The only thing is ps x => redhat 5 gives warnings when using ps -x. -- # kill -9 is used or the process won't react on the kill. -- numofproces=`ps x | grep -v "grep" | grep -c $ledir/mysqld` -- echo -e "\nNumber of processes running now: $numofproces" | tee -a $err_log -- I=1 -- while test "$I" -le "$numofproces" -- do -- PROC=`ps x | grep $ledir/mysqld | grep -v "grep" | tail -1` -- for T in $PROC -- do -- break -- done -- # echo "TEST $I - $T **" -- if kill -9 $T -- then -- echo "mysqld process hanging, pid $T - killed" | tee -a $err_log -- else -- break -- fi -- I=`expr $I + 1` -- done - fi - echo "mysqld restarted on " `date` | tee -a $err_log - done diff --git a/databases/mysql40-server/files/patch-ap b/databases/mysql40-server/files/patch-ap deleted file mode 100644 index 097b449a181a..000000000000 --- a/databases/mysql40-server/files/patch-ap +++ /dev/null @@ -1,11 +0,0 @@ ---- strings/Makefile.in.orig Sat Jan 1 18:00:30 2000 -+++ strings/Makefile.in Mon Jan 3 17:21:19 2000 -@@ -145,7 +145,7 @@ - INCLUDES = @MT_INCLUDES@ -I$(srcdir)/../include -I../include - pkglib_LIBRARIES = libmystrings.a - #no assembler --@ASSEMBLER_x86_TRUE@ASRCS = strings-x86.s longlong2str-x86.s -+@ASSEMBLER_x86_TRUE@ASRCS = strings-x86.S longlong2str-x86.S - @ASSEMBLER_x86_FALSE@@ASSEMBLER_sparc_TRUE@ASRCS = bmove_upp-sparc.s strappend-sparc.s strend-sparc.s strinstr-sparc.s strmake-sparc.s strmov-sparc.s strnmov-sparc.s strstr-sparc.s strxmov-sparc.s - @ASSEMBLER_x86_FALSE@@ASSEMBLER_sparc_FALSE@ASRCS = - # These file MUST all be on the same line!! Otherwise automake diff --git a/databases/mysql40-server/files/patch-aq b/databases/mysql40-server/files/patch-aq deleted file mode 100644 index 573324175921..000000000000 --- a/databases/mysql40-server/files/patch-aq +++ /dev/null @@ -1,13 +0,0 @@ ---- sql/Makefile.in.orig Sat Jan 1 18:01:13 2000 -+++ sql/Makefile.in Wed Jan 5 20:28:17 2000 -@@ -317,6 +317,10 @@ - else :; fi - sql_yacc.hh: sql_yacc.cc - -+# gcc takes a lot of memory and cpu time if it compiles sql_yacc.cc with -O -+sql_yacc.o: sql_yacc.cc -+ $(CXXCOMPILE) -O0 -c $< -+ - - # This directory's subdirectories are mostly independent; you can cd - # into them and run `make' without going through this Makefile. diff --git a/databases/mysql40-server/files/patch-as b/databases/mysql40-server/files/patch-as deleted file mode 100644 index 903bc9950a28..000000000000 --- a/databases/mysql40-server/files/patch-as +++ /dev/null @@ -1,16 +0,0 @@ ---- sql/mysqld.cc.orig Sun Feb 13 02:40:18 2000 -+++ sql/mysqld.cc Mon Feb 21 21:24:51 2000 -@@ -63,8 +63,11 @@ - inline void reset_floating_point_exceptions() - { - /* Don't fall for overflow, underflow,divide-by-zero or loss of precision */ -- fpsetmask(~(FP_X_INV | FP_X_DNML | FP_X_OFL | FP_X_UFL | -- FP_X_DZ | FP_X_IMP)); -+#if defined(__i386__) -+ fpsetmask(~(FP_X_INV | FP_X_DNML | FP_X_OFL | FP_X_UFL | FP_X_DZ | FP_X_IMP)); -+#else -+ fpsetmask(~(FP_X_INV | FP_X_OFL | FP_X_UFL | FP_X_DZ | FP_X_IMP)); -+#endif - } - #else - #define reset_floating_point_exceptions() diff --git a/databases/mysql40-server/files/patch-configure b/databases/mysql40-server/files/patch-configure deleted file mode 100644 index 133bd4200860..000000000000 --- a/databases/mysql40-server/files/patch-configure +++ /dev/null @@ -1,132 +0,0 @@ ---- configure.orig Sun Feb 13 03:46:09 2000 -+++ configure Wed May 3 12:20:25 2000 -@@ -2743,7 +2743,7 @@ - ;; - esac - fi --HOSTNAME="$ac_cv_path_HOSTNAME" -+HOSTNAME="$ac_cv_path_HOSTNAME -s" - if test -n "$HOSTNAME"; then - echo "$ac_t""$HOSTNAME" 1>&6 - else -@@ -2871,30 +2871,7 @@ - echo $ac_n "checking "how to check if pid exists"""... $ac_c" 1>&6 - echo "configure:2873: checking "how to check if pid exists"" >&5 - PS=$ac_cv_path_PS --# Linux style --if $PS p $$ 2> /dev/null | grep $0 > /dev/null --then -- FIND_PROC="$PS p \$\$PID | grep mysqld > /dev/null" --# Solaris --elif $PS -p $$ 2> /dev/null | grep $0 > /dev/null --then -- FIND_PROC="$PS -p \$\$PID | grep mysqld > /dev/null" --# BSD style --elif $PS -uaxww 2> /dev/null | grep $0 > /dev/null --then -- FIND_PROC="$PS -uaxww | grep mysqld | grep \" \$\$PID \" > /dev/null" --# SysV style --elif $PS -ef 2> /dev/null | grep $0 > /dev/null --then -- FIND_PROC="$PS -ef | grep mysqld | grep \" \$\$PID \" > /dev/null" --# Do anybody use this? --elif $PS $$ 2> /dev/null | grep $0 > /dev/null --then -- FIND_PROC="$PS \$\$PID | grep mysqld > /dev/null" --else -- { echo "configure: error: Could not find the right ps switches. Which OS is this ?. See the Installation chapter in the Reference Manual." 1>&2; exit 1; } --fi -- -+FIND_PROC="$PS -uaxww | grep mysqld | grep \" \$\$PID \" > /dev/null" - echo "$ac_t"""$FIND_PROC"" 1>&6 - - # Check if a pid is valid -@@ -4646,8 +4623,6 @@ - #define $ac_tr_lib 1 - EOF - -- LIBS="-lc_r $LIBS" -- - else - echo "$ac_t""no" 1>&6 - fi -@@ -4881,28 +4856,6 @@ - fi - - --# Build optimized or debug version ? --# First check for gcc and g++ --if test "$ac_cv_prog_gcc" = "yes" --then -- DEBUG_CFLAGS="-g" -- DEBUG_OPTIMIZE_CC="-O" -- OPTIMIZE_CFLAGS="-O6" --else -- DEBUG_CFLAGS="-g" -- DEBUG_OPTIMIZE_CC="" -- OPTIMIZE_CFLAGS="-O" --fi --if test "$ac_cv_prog_cxx_g" = "yes" --then -- DEBUG_CXXFLAGS="-g" -- DEBUG_OPTIMIZE_CXX="-O" -- OPTIMIZE_CXXFLAGS="-O3" --else -- DEBUG_CXXFLAGS="-g" -- DEBUG_OPTIMIZE_CXX="" -- OPTIMIZE_CXXFLAGS="-O" --fi - # Check whether --with-debug or --without-debug was given. - if test "${with_debug+set}" = set; then - withval="$with_debug" -@@ -5615,10 +5568,6 @@ - ac_link='${CXX-g++} -o conftest${ac_exeext} $CXXFLAGS $CPPFLAGS $LDFLAGS conftest.$ac_ext $LIBS 1>&5' - cross_compiling=$ac_cv_prog_cxx_cross - --if test "$ac_cv_prog_gxx" = "yes" --then -- CXXFLAGS="$CXXFLAGS -Werror" --fi - mysql_cv_btype_last_arg_accept=none - cat > conftest.$ac_ext <<EOF - #line 5625 "configure" -@@ -7655,10 +7604,6 @@ - ac_link='${CXX-g++} -o conftest${ac_exeext} $CXXFLAGS $CPPFLAGS $LDFLAGS conftest.$ac_ext $LIBS 1>&5' - cross_compiling=$ac_cv_prog_cxx_cross - --if test "$ac_cv_prog_gxx" = "yes" --then -- CXXFLAGS="$CXXFLAGS -Werror" --fi - cat > conftest.$ac_ext <<EOF - #line 7664 "configure" - #include "confdefs.h" -@@ -7721,10 +7666,6 @@ - ac_link='${CXX-g++} -o conftest${ac_exeext} $CXXFLAGS $CPPFLAGS $LDFLAGS conftest.$ac_ext $LIBS 1>&5' - cross_compiling=$ac_cv_prog_cxx_cross - --if test "$ac_cv_prog_gxx" = "yes" --then -- CXXFLAGS="$CXXFLAGS -Werror" --fi - cat > conftest.$ac_ext <<EOF - #line 7730 "configure" - #include "confdefs.h" -@@ -8005,7 +7946,7 @@ - #include <pthread.h> - int main() { - pthread_attr_t thr_attr; --pthread_attr_setscope(&thr_attr,0); -+XXXpthread_attr_setscope(&thr_attr,0); - ; return 0; } - EOF - if { (eval echo configure:8012: \"$ac_link\") 1>&5; (eval $ac_link) 2>&5; } && test -s conftest${ac_exeext}; then -@@ -8210,7 +8151,7 @@ - echo "" - echo "Configuring MIT Pthreads" - # We will never install so installation paths are not needed. -- (cd mit-pthreads; sh ./configure) -+ (cd mit-pthreads; sh ./configure ${CONFIGURE_ARGS}) - echo "End of MIT Pthreads configuration" - echo "" - fi diff --git a/databases/mysql40-server/files/patch-include::Makefile.in b/databases/mysql40-server/files/patch-include::Makefile.in deleted file mode 100644 index ed7654838e66..000000000000 --- a/databases/mysql40-server/files/patch-include::Makefile.in +++ /dev/null @@ -1,14 +0,0 @@ ---- include/Makefile.in.orig Sat Jan 1 17:59:41 2000 -+++ include/Makefile.in Wed Jan 5 21:04:23 2000 -@@ -259,7 +259,11 @@ - - install-am: all-am - @$(MAKE) $(AM_MAKEFLAGS) install-exec-am install-data-am -+.if defined(CLIENT_ONLY) - install: install-am -+.else -+install: -+.endif - uninstall-am: uninstall-pkgincludeHEADERS - uninstall: uninstall-am - all-am: Makefile $(HEADERS) all-local diff --git a/databases/mysql40-server/pkg-comment b/databases/mysql40-server/pkg-comment deleted file mode 100644 index 2e29c8d2b15b..000000000000 --- a/databases/mysql40-server/pkg-comment +++ /dev/null @@ -1 +0,0 @@ -Multithreaded SQL database (server) diff --git a/databases/mysql40-server/pkg-comment.client b/databases/mysql40-server/pkg-comment.client deleted file mode 100644 index cd0c61571cfb..000000000000 --- a/databases/mysql40-server/pkg-comment.client +++ /dev/null @@ -1 +0,0 @@ -Multithreaded SQL database (client) diff --git a/databases/mysql40-server/pkg-descr b/databases/mysql40-server/pkg-descr deleted file mode 100644 index e21208271cdb..000000000000 --- a/databases/mysql40-server/pkg-descr +++ /dev/null @@ -1,10 +0,0 @@ -mySQL is a multithreaded (using MIT pthreads) SQL database with a command -syntax very similar to mSQL. For more information see http://www.tcx.se - -Note: This port does *not* build the perl5 module. To do so, refer to the -file ${WRKSRC}/INSTALL-SOURCE, in particular, the notes on FreeBSD systems. - -josh -josh@ican.net - -WWW: http://www.mysql.com/ diff --git a/databases/mysql40-server/pkg-install b/databases/mysql40-server/pkg-install deleted file mode 100644 index 3e925021ede1..000000000000 --- a/databases/mysql40-server/pkg-install +++ /dev/null @@ -1,41 +0,0 @@ -#!/bin/sh - -PATH=/bin:/usr/sbin -if [ -z "${DB_DIR}" ]; then - DB_DIR=/var/db/mysql -fi - -case $2 in -POST-INSTALL) - USER=mysql - GROUP=${USER} - UID=88 - GID=${UID} - - if pw group show "${GROUP}" 2>/dev/null; then - echo "You already have a group \"${GROUP}\", so I will use it." - else - if pw groupadd ${GROUP} -g ${GID}; then - echo "Added group \"${GROUP}\"." - else - echo "Adding group \"${GROUP}\" failed..." - exit 1 - fi - fi - - if pw user show "${USER}" 2>/dev/null; then - echo "You already have a user \"${USER}\", so I will use it." - else - if pw useradd ${USER} -u ${UID} -g ${GROUP} -h - \ - -d ${DB_DIR} -s /sbin/nologin -c "MySQL Daemon" - then - echo "Added user \"${USER}\"." - else - echo "Adding user \"${USER}\" failed..." - exit 1 - fi - fi - - chown -R ${USER}.${GROUP} ${DB_DIR} - ;; -esac diff --git a/databases/mysql40-server/pkg-plist b/databases/mysql40-server/pkg-plist deleted file mode 100644 index 7c89ce913312..000000000000 --- a/databases/mysql40-server/pkg-plist +++ /dev/null @@ -1,148 +0,0 @@ -bin/comp_err -bin/isamchk -bin/isamlog -bin/msql2mysql -bin/mysql_find_rows -bin/mysql_fix_privilege_tables -bin/mysql_install_db -bin/mysql_setpermission -bin/mysql_zap -bin/mysqlaccess -bin/mysqlbug -bin/mysqlhotcopy -bin/perror -bin/print_defaults -bin/replace -bin/resolveip -bin/safe_mysqld -etc/rc.d/mysql-server.sh -@unexec install-info --delete %D/info/mysql.info %D/info/dir -info/mysql.info -@exec install-info %D/info/mysql.info %D/info/dir -lib/mysql/libdbug.a -lib/mysql/libheap.a -lib/mysql/libmerge.a -lib/mysql/libmystrings.a -lib/mysql/libmysys.a -lib/mysql/libnisam.a -libexec/mysqld -share/doc/mysql/Img/australia.gif -share/doc/mysql/Img/austria.gif -share/doc/mysql/Img/brazil.gif -share/doc/mysql/Img/bulgaria.gif -share/doc/mysql/Img/canada.gif -share/doc/mysql/Img/chile.gif -share/doc/mysql/Img/china.gif -share/doc/mysql/Img/croatia.gif -share/doc/mysql/Img/czech-republic.gif -share/doc/mysql/Img/denmark.gif -share/doc/mysql/Img/estonia.gif -share/doc/mysql/Img/finland.gif -share/doc/mysql/Img/france.gif -share/doc/mysql/Img/germany.gif -share/doc/mysql/Img/great-britain.gif -share/doc/mysql/Img/greece.gif -share/doc/mysql/Img/html-fs.gif -share/doc/mysql/Img/hungary.gif -share/doc/mysql/Img/iceland.gif -share/doc/mysql/Img/ireland.gif -share/doc/mysql/Img/island.gif -share/doc/mysql/Img/israel.gif -share/doc/mysql/Img/italy.gif -share/doc/mysql/Img/japan.gif -share/doc/mysql/Img/kroatia.gif -share/doc/mysql/Img/mysql-logo.gif -share/doc/mysql/Img/mysql5.gif -share/doc/mysql/Img/netherlands.gif -share/doc/mysql/Img/poland.gif -share/doc/mysql/Img/portugal.gif -share/doc/mysql/Img/romania.gif -share/doc/mysql/Img/russia.gif -share/doc/mysql/Img/singapore.gif -share/doc/mysql/Img/south-africa.gif -share/doc/mysql/Img/south-africa1.gif -share/doc/mysql/Img/south-korea.gif -share/doc/mysql/Img/spain.gif -share/doc/mysql/Img/sweden.gif -share/doc/mysql/Img/switzerland.gif -share/doc/mysql/Img/taiwan.gif -share/doc/mysql/Img/tcxlogo3.gif -share/doc/mysql/Img/ukraine.gif -share/doc/mysql/Img/usa.gif -share/doc/mysql/include.texi -share/doc/mysql/manual.html -share/doc/mysql/manual.ps -share/doc/mysql/manual.texi -share/doc/mysql/manual.txt -share/doc/mysql/manual_toc.html -share/mysql/binary-configure -share/mysql/czech/errmsg.sys -share/mysql/czech/errmsg.txt -share/mysql/danish/errmsg.sys -share/mysql/danish/errmsg.txt -share/mysql/dutch/errmsg.sys -share/mysql/dutch/errmsg.txt -share/mysql/english/errmsg.sys -share/mysql/english/errmsg.txt -share/mysql/estonia/errmsg.sys -share/mysql/estonia/errmsg.txt -share/mysql/french/errmsg.sys -share/mysql/french/errmsg.txt -share/mysql/german/errmsg.sys -share/mysql/german/errmsg.txt -share/mysql/greek/errmsg.sys -share/mysql/greek/errmsg.txt -share/mysql/hungarian/errmsg.sys -share/mysql/hungarian/errmsg.txt -share/mysql/italian/errmsg.sys -share/mysql/italian/errmsg.txt -share/mysql/japanese/errmsg.sys -share/mysql/japanese/errmsg.txt -share/mysql/korean/errmsg.sys -share/mysql/korean/errmsg.txt -share/mysql/make_binary_distribution -share/mysql/my-example.cnf -share/mysql/mysql-3.22.32.spec -share/mysql/mysql-log-rotate -share/mysql/mysql.server -share/mysql/norwegian-ny/errmsg.sys -share/mysql/norwegian-ny/errmsg.txt -share/mysql/norwegian/errmsg.sys -share/mysql/norwegian/errmsg.txt -share/mysql/polish/errmsg.sys -share/mysql/polish/errmsg.txt -share/mysql/portuguese/errmsg.sys -share/mysql/portuguese/errmsg.txt -share/mysql/russian/errmsg.sys -share/mysql/russian/errmsg.txt -share/mysql/slovak/errmsg.sys -share/mysql/slovak/errmsg.txt -share/mysql/spanish/errmsg.sys -share/mysql/spanish/errmsg.txt -share/mysql/swedish/errmsg.sys -share/mysql/swedish/errmsg.txt -@dirrm share/doc/mysql/Img -@dirrm share/doc/mysql -@dirrm share/mysql/czech -@dirrm share/mysql/danish -@dirrm share/mysql/dutch -@dirrm share/mysql/english -@dirrm share/mysql/estonia -@dirrm share/mysql/french -@dirrm share/mysql/german -@dirrm share/mysql/greek -@dirrm share/mysql/hungarian -@dirrm share/mysql/italian -@dirrm share/mysql/japanese -@dirrm share/mysql/korean -@dirrm share/mysql/norwegian -@dirrm share/mysql/norwegian-ny -@dirrm share/mysql/polish -@dirrm share/mysql/portuguese -@dirrm share/mysql/russian -@dirrm share/mysql/slovak -@dirrm share/mysql/spanish -@dirrm share/mysql/swedish -@dirrm share/mysql -@exec %D/bin/mysql_install_db -@exec /usr/bin/killall mysqld diff --git a/databases/mysql40-server/pkg-plist.client b/databases/mysql40-server/pkg-plist.client deleted file mode 100644 index 9eb893b7dd12..000000000000 --- a/databases/mysql40-server/pkg-plist.client +++ /dev/null @@ -1,32 +0,0 @@ -bin/mysql -bin/mysqladmin -bin/mysqldump -bin/mysqlimport -bin/mysqlshow -etc/rc.d/mysql-client.sh -include/mysql/dbug.h -include/mysql/errmsg.h -include/mysql/m_ctype.h -include/mysql/m_string.h -include/mysql/my_config.h -include/mysql/my_global.h -include/mysql/my_list.h -include/mysql/my_net.h -include/mysql/my_pthread.h -include/mysql/my_sys.h -include/mysql/mysql.h -include/mysql/mysql_com.h -include/mysql/mysql_version.h -include/mysql/mysqld_error.h -include/mysql/raid.h -include/mysql/sslopt-case.h -include/mysql/sslopt-longopts.h -include/mysql/sslopt-usage.h -include/mysql/sslopt-vars.h -lib/mysql/libmysqlclient.a -lib/mysql/libmysqlclient.so -lib/mysql/libmysqlclient.so.6 -@dirrm include/mysql -@dirrm lib/mysql -@exec /usr/bin/env OBJFORMAT=%%PORTOBJFORMAT%% /sbin/ldconfig -m %D/lib/mysql -@unexec /usr/bin/env OBJFORMAT=%%PORTOBJFORMAT%% /sbin/ldconfig -R diff --git a/databases/mysql41-client/Makefile b/databases/mysql41-client/Makefile deleted file mode 100644 index 8284511ecb0e..000000000000 --- a/databases/mysql41-client/Makefile +++ /dev/null @@ -1,17 +0,0 @@ -# ports collection makefile for: MySQL-client -# Date created: Thu Jun 24 00:12:22 CEST 1999 -# Whom: Dirk Froemberg <dirk@FreeBSD.org> -# -# $FreeBSD$ -# - -PORTNAME= ${MASTERPORTNAME:S/-server/-client/g} - -MASTERDIR= ${.CURDIR}/../mysql322-server -COMMENT= ${PKGDIR}/COMMENT.client -PKGINSTALL= mustnotexist -PLIST= ${PKGDIR}/PLIST.client - -CLIENT_ONLY= yes - -.include "${MASTERDIR}/Makefile" diff --git a/databases/mysql41-server/Makefile b/databases/mysql41-server/Makefile deleted file mode 100644 index 9a6c2a590256..000000000000 --- a/databases/mysql41-server/Makefile +++ /dev/null @@ -1,154 +0,0 @@ -# ports collection makefile for: MySQL-server -# Date created: 26 Jan 1998 -# Whom: Josh Tiefenbach <josh@ican.net> -# -# $FreeBSD$ -# - -PORTNAME?= ${MASTERPORTNAME} -PORTVERSION= 3.22.32 -CATEGORIES= databases -MASTER_SITES= http://www.fh-wolfenbuettel.de/ftp/pub/database/mysql/Downloads/MySQL-3.22/ \ - ftp://ftp.digex.net/pub/packages/database/mysql/Downloads/MySQL-3.22/ \ - ftp://ftp.plig.net/pub/mysql/Downloads/MySQL-3.22/ \ - ftp://ftp.sunet.se/pub/unix/databases/relational/mysql/Downloads/MySQL-3.22/ -DISTNAME= mysql-${PORTVERSION} - -MAINTAINER= dirk@FreeBSD.org - -Y2K= http://www.tcx.se/Manual_chapter/manual_Introduction.html#Year_2000_compliance - -SLAVEDIRS= databases/mysql322-client -MASTERPORTNAME= mysql-server -DB_DIR?= /var/db/mysql -USE_PERL5= yes -USE_LIBTOOL= yes -CONFIGURE_ARGS= --localstatedir=${DB_DIR} \ - --without-perl \ - --without-debug \ - --without-readline \ - --without-bench -.if ${MACHINE_ARCH} == "i386" -CONFIGURE_ARGS+=--enable-assembler -.endif -CONFIGURE_ENV+= PERL=${PERL} \ - PERL5=${PERL} \ - INSTALL_SCRIPT="${INSTALL_SCRIPT}" \ - CONFIGURE_ARGS="${CONFIGURE_ARGS}" - -# MySQL-Server part -.if !defined(CLIENT_ONLY) -RUN_DEPENDS= mysql:${PORTSDIR}/databases/mysql322-client - -.include <bsd.port.pre.mk> - -.if ${OSVERSION} >= 320000 -.if defined(MIT_PTHREADS) -CONFIGURE_ARGS+= --with-mit-threads=yes - -pre-fetch: - @${ECHO} - @${ECHO} "Using supplied mit-pthreads." - @${ECHO} -.else -CONFIGURE_ARGS+= --with-mit-threads=no - -pre-fetch: - @${ECHO} - @${ECHO} "Using native FreeBSD threads (libc_r)." - @${ECHO} - @${ECHO} "You may set MIT_PTHREADS (make MIT_PTHREADS=yes)" - @${ECHO} "to compile mysql with the supplied mit-pthreads." - @${ECHO} "(You don't want to set this unless you have a good reason)." - @${ECHO} -.endif -.elif ${OSVERSION} >= 300000 -.if defined(NATIVE_THREADS) -CONFIGURE_ARGS+= --with-mit-threads=no - -pre-fetch: - @${ECHO} - @${ECHO} "Using native FreeBSD threads (libc_r)." - @${ECHO} -.else -CONFIGURE_ARGS+= --with-mit-threads=yes - -pre-fetch: - @${ECHO} - @${ECHO} "Using supplied mit-pthreads." - @${ECHO} - @${ECHO} "You may set NATIVE_THREADS (make NATIVE_THREADS=yes)" - @${ECHO} "to compile mysql with the native FreeBSD threads (libc_r)." - @${ECHO} "Warning: There are some bugs in libc_r which prevent" - @${ECHO} " 'mysqladmin shutdown' from working properly and" - @${ECHO} " killing mysqld might not work." - @${ECHO} -.endif -.else -CONFIGURE_ARGS+= --with-mit-threads=yes - -pre-fetch: - @${ECHO} - @${ECHO} "Using supplied mit-pthreads." - @${ECHO} -.endif - -post-patch: - ${MV} ${WRKSRC}/strings/strings-x86.s ${WRKSRC}/strings/strings-x86.S - ${MV} ${WRKSRC}/strings/longlong2str-x86.s ${WRKSRC}/strings/longlong2str-x86.S - -pre-install: -.if !defined(PACKAGE_BUILDING) && exists(${DB_DIR}) && !defined(OVERWRITE_DB) - @${ECHO} "You appear to already have a mysql database directory in ${DB_DIR}." - @${ECHO} "" - @${ECHO} "In order to preserve your existing data, you should:" - @${ECHO} " - dump all your databases" - @${ECHO} " - kill mysql if it is running" - @${ECHO} " - delete the ${DB_DIR} directory" - @${ECHO} " - run 'make install'" - @${ECHO} " - start up mysql" - @${ECHO} " - re-create all of your database" - @${ECHO} " - re-load your data" - @${ECHO} "" - @${ECHO} "If you understand the consequences of this upgrade, please re-build this" - @${ECHO} "port with the environment variable OVERWRITE_DB defined." - @${FALSE} -.endif - -post-install: -.if !defined(PACKAGE_BUILDING) - ${PREFIX}/bin/mysql_install_db - @${SETENV} DB_DIR=${DB_DIR} ${SH} ${PKGINSTALL} ${PKGNAME} POST-INSTALL -.endif - @${SED} "s|%%PREFIX%%|${PREFIX}|g" < ${FILESDIR}/mysql-server.sh > ${PREFIX}/etc/rc.d/mysql-server.sh - @${CHMOD} 750 ${PREFIX}/etc/rc.d/mysql-server.sh - -.if !defined(NOPORTDOCS) - ${MKDIR} ${PREFIX}/share/doc/mysql/Img -.for doc in manual.html manual.ps manual_toc.html manual.txt manual.texi include.texi - ${INSTALL_DATA} ${WRKSRC}/Docs/${doc} ${PREFIX}/share/doc/mysql -.endfor - ${INSTALL_DATA} ${WRKSRC}/Docs/Img/*.gif ${PREFIX}/share/doc/mysql/Img - ${INSTALL_DATA} ${WRKSRC}/Docs/mysql.info ${PREFIX}/info - @install-info ${PREFIX}/info/mysql.info ${PREFIX}/info/dir -.endif - -.include <bsd.port.post.mk> - -# MySQL-Client part -.else -MAN1= mysql.1 - -CONFIGURE_ARGS+=--without-server -MAKE_ENV= CLIENT_ONLY="${CLIENT_ONLY}" - -post-install: - @${ECHO} "#!/bin/sh" > ${PREFIX}/etc/rc.d/mysql-client.sh - @${ECHO} "" >> ${PREFIX}/etc/rc.d/mysql-client.sh - @${ECHO} "${LDCONFIG} -m ${PREFIX}/lib/mysql" >> ${PREFIX}/etc/rc.d/mysql-client.sh - @${CHMOD} 750 ${PREFIX}/etc/rc.d/mysql-client.sh - - ${SETENV} OBJFORMAT=${PORTOBJFORMAT} ${LDCONFIG} -m ${PREFIX}/lib/mysql - -.include <bsd.port.mk> -.endif diff --git a/databases/mysql41-server/distinfo b/databases/mysql41-server/distinfo deleted file mode 100644 index edfe7eb2ff4a..000000000000 --- a/databases/mysql41-server/distinfo +++ /dev/null @@ -1 +0,0 @@ -MD5 (mysql-3.22.32.tar.gz) = 244e08d9a1f4b2ad799aa40ad3cc897a diff --git a/databases/mysql41-server/files/mysql-server.sh b/databases/mysql41-server/files/mysql-server.sh deleted file mode 100644 index 0ff5374c48f7..000000000000 --- a/databases/mysql41-server/files/mysql-server.sh +++ /dev/null @@ -1,18 +0,0 @@ -#!/bin/sh - -case "$1" in - start) - if [ -x %%PREFIX%%/bin/safe_mysqld ]; then - %%PREFIX%%/bin/safe_mysqld --user=mysql > /dev/null & && echo -n ' mysqld' - fi - ;; - stop) - /usr/bin/killall mysqld > /dev/null 2>&1 && echo -n ' mysqld' - ;; - *) - echo "" - echo "Usage: `basename $0` { start | stop }" - echo "" - exit 64 - ;; -esac diff --git a/databases/mysql41-server/files/patch-Makefile.in b/databases/mysql41-server/files/patch-Makefile.in deleted file mode 100644 index 00190736f765..000000000000 --- a/databases/mysql41-server/files/patch-Makefile.in +++ /dev/null @@ -1,15 +0,0 @@ ---- Makefile.in.orig Sat Jan 1 17:59:38 2000 -+++ Makefile.in Mon Jan 3 17:19:23 2000 -@@ -144,7 +144,11 @@ - # These are built from source in the Docs directory - EXTRA_DIST = INSTALL-SOURCE-GENERIC README PUBLIC INSTALL-SOURCE MIRRORS - --SUBDIRS = include @docs_dirs@ @readline_dir@ client @sql_server_dirs@ scripts tests man @bench_dirs@ support-files -+.if defined(CLIENT_ONLY) -+SUBDIRS = include @readline_dir@ client tests man -+.else -+SUBDIRS = include @docs_dirs@ @sql_server_dirs@ scripts @bench_dirs@ support-files -+.endif - - - # Relink after clean diff --git a/databases/mysql41-server/files/patch-ab b/databases/mysql41-server/files/patch-ab deleted file mode 100644 index 1fd66bbe0cad..000000000000 --- a/databases/mysql41-server/files/patch-ab +++ /dev/null @@ -1,33 +0,0 @@ ---- scripts/mysql_install_db.sh.orig Wed Jan 12 21:06:30 2000 -+++ scripts/mysql_install_db.sh Sun Mar 26 23:20:27 2000 -@@ -15,8 +15,6 @@ - force=0 - IN_RPM=0 - --# Are we doing an rpm install? --if test "$1" = "-IN-RPM"; then IN_RPM=1; shift; fi - if test "$1" = "--force"; then force=1; shift; fi - - # Get mysqld/safe_mysqld options from /etc/my.cnf or ~/.my.cnf -@@ -60,8 +58,6 @@ - fi - fi - --# On IRIX hostname is in /usr/bsd so add this to the path --PATH=$PATH:/usr/bsd - hostname=`hostname` # Install this too in the user table - - # Check if hostname is valid -@@ -255,12 +251,6 @@ - END_OF_DATA - then - echo "" -- if test "$IN_RPM" -eq 0 -- then -- echo "To start mysqld at boot time you have to copy support-files/mysql.server" -- echo "to the right place for your system" -- echo -- fi - echo "PLEASE REMEMBER TO SET A PASSWORD FOR THE MySQL root USER !" - echo "This is done with:" - echo "$bindir/mysqladmin -u root password 'new-password'" diff --git a/databases/mysql41-server/files/patch-af b/databases/mysql41-server/files/patch-af deleted file mode 100644 index 2593da4d1c64..000000000000 --- a/databases/mysql41-server/files/patch-af +++ /dev/null @@ -1,73 +0,0 @@ ---- scripts/safe_mysqld.sh.orig Fri May 14 11:11:46 1999 -+++ scripts/safe_mysqld.sh Tue Jun 8 11:14:02 1999 -@@ -12,33 +12,9 @@ - - trap '' 1 2 3 15 # we shouldn't let anyone kill us - --# Check if we are starting this relative (for the binary release) --if test -d ./data/mysql -a -f ./share/mysql/english/errmsg.sys -a \ -- -x ./bin/mysqld --then -- MY_BASEDIR_VERSION=`pwd` # Where bin, share and data are -- DATADIR=$MY_BASEDIR_VERSION/data # Where the databases are -- ledir=$MY_BASEDIR_VERSION/bin # Where mysqld is --# Check if this is a 'moved install directory' --elif test -f ./var/mysql/db.frm -a -f ./share/mysql/english/errmsg.sys -a \ -- -x ./libexec/mysqld --then -- MY_BASEDIR_VERSION=`pwd` # Where libexec, share and var are -- DATADIR=$MY_BASEDIR_VERSION/var # Where the databases are -- ledir=$MY_BASEDIR_VERSION/libexec # Where mysqld is --else -- MY_BASEDIR_VERSION=@prefix@ -- DATADIR=@localstatedir@ -- ledir=@libexecdir@ -- if test ! -x $ledir/mysqld -- then -- echo "The file $ledir/mysqld doesn't exist or is not executable" -- echo "Please do a cd to the mysql installation directory and restart" -- echo "this script from there as follows:" -- echo "./bin/safe_mysqld". -- exit 1; -- fi --fi -+MY_BASEDIR_VERSION=@prefix@ -+DATADIR=@localstatedir@ -+ledir=@libexecdir@ - - pid_file=$DATADIR/`@HOSTNAME@`.pid - log=$DATADIR/`@HOSTNAME@`.log -@@ -114,33 +90,6 @@ - if test ! -f $pid_file # This is removed if normal shutdown - then - break; -- fi -- if @IS_LINUX@ -- then -- # Test if one process was hanging. -- # This is only a fix for Linux (running as base 3 mysqld processes) -- # but should work for the rest of the servers. -- # The only thing is ps x => redhat 5 gives warnings when using ps -x. -- # kill -9 is used or the process won't react on the kill. -- numofproces=`ps x | grep -v "grep" | grep -c $ledir/mysqld` -- echo -e "\nNumber of processes running now: $numofproces" | tee -a $err_log -- I=1 -- while test "$I" -le "$numofproces" -- do -- PROC=`ps x | grep $ledir/mysqld | grep -v "grep" | tail -1` -- for T in $PROC -- do -- break -- done -- # echo "TEST $I - $T **" -- if kill -9 $T -- then -- echo "mysqld process hanging, pid $T - killed" | tee -a $err_log -- else -- break -- fi -- I=`expr $I + 1` -- done - fi - echo "mysqld restarted on " `date` | tee -a $err_log - done diff --git a/databases/mysql41-server/files/patch-ap b/databases/mysql41-server/files/patch-ap deleted file mode 100644 index 097b449a181a..000000000000 --- a/databases/mysql41-server/files/patch-ap +++ /dev/null @@ -1,11 +0,0 @@ ---- strings/Makefile.in.orig Sat Jan 1 18:00:30 2000 -+++ strings/Makefile.in Mon Jan 3 17:21:19 2000 -@@ -145,7 +145,7 @@ - INCLUDES = @MT_INCLUDES@ -I$(srcdir)/../include -I../include - pkglib_LIBRARIES = libmystrings.a - #no assembler --@ASSEMBLER_x86_TRUE@ASRCS = strings-x86.s longlong2str-x86.s -+@ASSEMBLER_x86_TRUE@ASRCS = strings-x86.S longlong2str-x86.S - @ASSEMBLER_x86_FALSE@@ASSEMBLER_sparc_TRUE@ASRCS = bmove_upp-sparc.s strappend-sparc.s strend-sparc.s strinstr-sparc.s strmake-sparc.s strmov-sparc.s strnmov-sparc.s strstr-sparc.s strxmov-sparc.s - @ASSEMBLER_x86_FALSE@@ASSEMBLER_sparc_FALSE@ASRCS = - # These file MUST all be on the same line!! Otherwise automake diff --git a/databases/mysql41-server/files/patch-aq b/databases/mysql41-server/files/patch-aq deleted file mode 100644 index 573324175921..000000000000 --- a/databases/mysql41-server/files/patch-aq +++ /dev/null @@ -1,13 +0,0 @@ ---- sql/Makefile.in.orig Sat Jan 1 18:01:13 2000 -+++ sql/Makefile.in Wed Jan 5 20:28:17 2000 -@@ -317,6 +317,10 @@ - else :; fi - sql_yacc.hh: sql_yacc.cc - -+# gcc takes a lot of memory and cpu time if it compiles sql_yacc.cc with -O -+sql_yacc.o: sql_yacc.cc -+ $(CXXCOMPILE) -O0 -c $< -+ - - # This directory's subdirectories are mostly independent; you can cd - # into them and run `make' without going through this Makefile. diff --git a/databases/mysql41-server/files/patch-as b/databases/mysql41-server/files/patch-as deleted file mode 100644 index 903bc9950a28..000000000000 --- a/databases/mysql41-server/files/patch-as +++ /dev/null @@ -1,16 +0,0 @@ ---- sql/mysqld.cc.orig Sun Feb 13 02:40:18 2000 -+++ sql/mysqld.cc Mon Feb 21 21:24:51 2000 -@@ -63,8 +63,11 @@ - inline void reset_floating_point_exceptions() - { - /* Don't fall for overflow, underflow,divide-by-zero or loss of precision */ -- fpsetmask(~(FP_X_INV | FP_X_DNML | FP_X_OFL | FP_X_UFL | -- FP_X_DZ | FP_X_IMP)); -+#if defined(__i386__) -+ fpsetmask(~(FP_X_INV | FP_X_DNML | FP_X_OFL | FP_X_UFL | FP_X_DZ | FP_X_IMP)); -+#else -+ fpsetmask(~(FP_X_INV | FP_X_OFL | FP_X_UFL | FP_X_DZ | FP_X_IMP)); -+#endif - } - #else - #define reset_floating_point_exceptions() diff --git a/databases/mysql41-server/files/patch-configure b/databases/mysql41-server/files/patch-configure deleted file mode 100644 index 133bd4200860..000000000000 --- a/databases/mysql41-server/files/patch-configure +++ /dev/null @@ -1,132 +0,0 @@ ---- configure.orig Sun Feb 13 03:46:09 2000 -+++ configure Wed May 3 12:20:25 2000 -@@ -2743,7 +2743,7 @@ - ;; - esac - fi --HOSTNAME="$ac_cv_path_HOSTNAME" -+HOSTNAME="$ac_cv_path_HOSTNAME -s" - if test -n "$HOSTNAME"; then - echo "$ac_t""$HOSTNAME" 1>&6 - else -@@ -2871,30 +2871,7 @@ - echo $ac_n "checking "how to check if pid exists"""... $ac_c" 1>&6 - echo "configure:2873: checking "how to check if pid exists"" >&5 - PS=$ac_cv_path_PS --# Linux style --if $PS p $$ 2> /dev/null | grep $0 > /dev/null --then -- FIND_PROC="$PS p \$\$PID | grep mysqld > /dev/null" --# Solaris --elif $PS -p $$ 2> /dev/null | grep $0 > /dev/null --then -- FIND_PROC="$PS -p \$\$PID | grep mysqld > /dev/null" --# BSD style --elif $PS -uaxww 2> /dev/null | grep $0 > /dev/null --then -- FIND_PROC="$PS -uaxww | grep mysqld | grep \" \$\$PID \" > /dev/null" --# SysV style --elif $PS -ef 2> /dev/null | grep $0 > /dev/null --then -- FIND_PROC="$PS -ef | grep mysqld | grep \" \$\$PID \" > /dev/null" --# Do anybody use this? --elif $PS $$ 2> /dev/null | grep $0 > /dev/null --then -- FIND_PROC="$PS \$\$PID | grep mysqld > /dev/null" --else -- { echo "configure: error: Could not find the right ps switches. Which OS is this ?. See the Installation chapter in the Reference Manual." 1>&2; exit 1; } --fi -- -+FIND_PROC="$PS -uaxww | grep mysqld | grep \" \$\$PID \" > /dev/null" - echo "$ac_t"""$FIND_PROC"" 1>&6 - - # Check if a pid is valid -@@ -4646,8 +4623,6 @@ - #define $ac_tr_lib 1 - EOF - -- LIBS="-lc_r $LIBS" -- - else - echo "$ac_t""no" 1>&6 - fi -@@ -4881,28 +4856,6 @@ - fi - - --# Build optimized or debug version ? --# First check for gcc and g++ --if test "$ac_cv_prog_gcc" = "yes" --then -- DEBUG_CFLAGS="-g" -- DEBUG_OPTIMIZE_CC="-O" -- OPTIMIZE_CFLAGS="-O6" --else -- DEBUG_CFLAGS="-g" -- DEBUG_OPTIMIZE_CC="" -- OPTIMIZE_CFLAGS="-O" --fi --if test "$ac_cv_prog_cxx_g" = "yes" --then -- DEBUG_CXXFLAGS="-g" -- DEBUG_OPTIMIZE_CXX="-O" -- OPTIMIZE_CXXFLAGS="-O3" --else -- DEBUG_CXXFLAGS="-g" -- DEBUG_OPTIMIZE_CXX="" -- OPTIMIZE_CXXFLAGS="-O" --fi - # Check whether --with-debug or --without-debug was given. - if test "${with_debug+set}" = set; then - withval="$with_debug" -@@ -5615,10 +5568,6 @@ - ac_link='${CXX-g++} -o conftest${ac_exeext} $CXXFLAGS $CPPFLAGS $LDFLAGS conftest.$ac_ext $LIBS 1>&5' - cross_compiling=$ac_cv_prog_cxx_cross - --if test "$ac_cv_prog_gxx" = "yes" --then -- CXXFLAGS="$CXXFLAGS -Werror" --fi - mysql_cv_btype_last_arg_accept=none - cat > conftest.$ac_ext <<EOF - #line 5625 "configure" -@@ -7655,10 +7604,6 @@ - ac_link='${CXX-g++} -o conftest${ac_exeext} $CXXFLAGS $CPPFLAGS $LDFLAGS conftest.$ac_ext $LIBS 1>&5' - cross_compiling=$ac_cv_prog_cxx_cross - --if test "$ac_cv_prog_gxx" = "yes" --then -- CXXFLAGS="$CXXFLAGS -Werror" --fi - cat > conftest.$ac_ext <<EOF - #line 7664 "configure" - #include "confdefs.h" -@@ -7721,10 +7666,6 @@ - ac_link='${CXX-g++} -o conftest${ac_exeext} $CXXFLAGS $CPPFLAGS $LDFLAGS conftest.$ac_ext $LIBS 1>&5' - cross_compiling=$ac_cv_prog_cxx_cross - --if test "$ac_cv_prog_gxx" = "yes" --then -- CXXFLAGS="$CXXFLAGS -Werror" --fi - cat > conftest.$ac_ext <<EOF - #line 7730 "configure" - #include "confdefs.h" -@@ -8005,7 +7946,7 @@ - #include <pthread.h> - int main() { - pthread_attr_t thr_attr; --pthread_attr_setscope(&thr_attr,0); -+XXXpthread_attr_setscope(&thr_attr,0); - ; return 0; } - EOF - if { (eval echo configure:8012: \"$ac_link\") 1>&5; (eval $ac_link) 2>&5; } && test -s conftest${ac_exeext}; then -@@ -8210,7 +8151,7 @@ - echo "" - echo "Configuring MIT Pthreads" - # We will never install so installation paths are not needed. -- (cd mit-pthreads; sh ./configure) -+ (cd mit-pthreads; sh ./configure ${CONFIGURE_ARGS}) - echo "End of MIT Pthreads configuration" - echo "" - fi diff --git a/databases/mysql41-server/files/patch-include::Makefile.in b/databases/mysql41-server/files/patch-include::Makefile.in deleted file mode 100644 index ed7654838e66..000000000000 --- a/databases/mysql41-server/files/patch-include::Makefile.in +++ /dev/null @@ -1,14 +0,0 @@ ---- include/Makefile.in.orig Sat Jan 1 17:59:41 2000 -+++ include/Makefile.in Wed Jan 5 21:04:23 2000 -@@ -259,7 +259,11 @@ - - install-am: all-am - @$(MAKE) $(AM_MAKEFLAGS) install-exec-am install-data-am -+.if defined(CLIENT_ONLY) - install: install-am -+.else -+install: -+.endif - uninstall-am: uninstall-pkgincludeHEADERS - uninstall: uninstall-am - all-am: Makefile $(HEADERS) all-local diff --git a/databases/mysql41-server/pkg-comment b/databases/mysql41-server/pkg-comment deleted file mode 100644 index 2e29c8d2b15b..000000000000 --- a/databases/mysql41-server/pkg-comment +++ /dev/null @@ -1 +0,0 @@ -Multithreaded SQL database (server) diff --git a/databases/mysql41-server/pkg-comment.client b/databases/mysql41-server/pkg-comment.client deleted file mode 100644 index cd0c61571cfb..000000000000 --- a/databases/mysql41-server/pkg-comment.client +++ /dev/null @@ -1 +0,0 @@ -Multithreaded SQL database (client) diff --git a/databases/mysql41-server/pkg-descr b/databases/mysql41-server/pkg-descr deleted file mode 100644 index e21208271cdb..000000000000 --- a/databases/mysql41-server/pkg-descr +++ /dev/null @@ -1,10 +0,0 @@ -mySQL is a multithreaded (using MIT pthreads) SQL database with a command -syntax very similar to mSQL. For more information see http://www.tcx.se - -Note: This port does *not* build the perl5 module. To do so, refer to the -file ${WRKSRC}/INSTALL-SOURCE, in particular, the notes on FreeBSD systems. - -josh -josh@ican.net - -WWW: http://www.mysql.com/ diff --git a/databases/mysql41-server/pkg-install b/databases/mysql41-server/pkg-install deleted file mode 100644 index 3e925021ede1..000000000000 --- a/databases/mysql41-server/pkg-install +++ /dev/null @@ -1,41 +0,0 @@ -#!/bin/sh - -PATH=/bin:/usr/sbin -if [ -z "${DB_DIR}" ]; then - DB_DIR=/var/db/mysql -fi - -case $2 in -POST-INSTALL) - USER=mysql - GROUP=${USER} - UID=88 - GID=${UID} - - if pw group show "${GROUP}" 2>/dev/null; then - echo "You already have a group \"${GROUP}\", so I will use it." - else - if pw groupadd ${GROUP} -g ${GID}; then - echo "Added group \"${GROUP}\"." - else - echo "Adding group \"${GROUP}\" failed..." - exit 1 - fi - fi - - if pw user show "${USER}" 2>/dev/null; then - echo "You already have a user \"${USER}\", so I will use it." - else - if pw useradd ${USER} -u ${UID} -g ${GROUP} -h - \ - -d ${DB_DIR} -s /sbin/nologin -c "MySQL Daemon" - then - echo "Added user \"${USER}\"." - else - echo "Adding user \"${USER}\" failed..." - exit 1 - fi - fi - - chown -R ${USER}.${GROUP} ${DB_DIR} - ;; -esac diff --git a/databases/mysql41-server/pkg-plist b/databases/mysql41-server/pkg-plist deleted file mode 100644 index 7c89ce913312..000000000000 --- a/databases/mysql41-server/pkg-plist +++ /dev/null @@ -1,148 +0,0 @@ -bin/comp_err -bin/isamchk -bin/isamlog -bin/msql2mysql -bin/mysql_find_rows -bin/mysql_fix_privilege_tables -bin/mysql_install_db -bin/mysql_setpermission -bin/mysql_zap -bin/mysqlaccess -bin/mysqlbug -bin/mysqlhotcopy -bin/perror -bin/print_defaults -bin/replace -bin/resolveip -bin/safe_mysqld -etc/rc.d/mysql-server.sh -@unexec install-info --delete %D/info/mysql.info %D/info/dir -info/mysql.info -@exec install-info %D/info/mysql.info %D/info/dir -lib/mysql/libdbug.a -lib/mysql/libheap.a -lib/mysql/libmerge.a -lib/mysql/libmystrings.a -lib/mysql/libmysys.a -lib/mysql/libnisam.a -libexec/mysqld -share/doc/mysql/Img/australia.gif -share/doc/mysql/Img/austria.gif -share/doc/mysql/Img/brazil.gif -share/doc/mysql/Img/bulgaria.gif -share/doc/mysql/Img/canada.gif -share/doc/mysql/Img/chile.gif -share/doc/mysql/Img/china.gif -share/doc/mysql/Img/croatia.gif -share/doc/mysql/Img/czech-republic.gif -share/doc/mysql/Img/denmark.gif -share/doc/mysql/Img/estonia.gif -share/doc/mysql/Img/finland.gif -share/doc/mysql/Img/france.gif -share/doc/mysql/Img/germany.gif -share/doc/mysql/Img/great-britain.gif -share/doc/mysql/Img/greece.gif -share/doc/mysql/Img/html-fs.gif -share/doc/mysql/Img/hungary.gif -share/doc/mysql/Img/iceland.gif -share/doc/mysql/Img/ireland.gif -share/doc/mysql/Img/island.gif -share/doc/mysql/Img/israel.gif -share/doc/mysql/Img/italy.gif -share/doc/mysql/Img/japan.gif -share/doc/mysql/Img/kroatia.gif -share/doc/mysql/Img/mysql-logo.gif -share/doc/mysql/Img/mysql5.gif -share/doc/mysql/Img/netherlands.gif -share/doc/mysql/Img/poland.gif -share/doc/mysql/Img/portugal.gif -share/doc/mysql/Img/romania.gif -share/doc/mysql/Img/russia.gif -share/doc/mysql/Img/singapore.gif -share/doc/mysql/Img/south-africa.gif -share/doc/mysql/Img/south-africa1.gif -share/doc/mysql/Img/south-korea.gif -share/doc/mysql/Img/spain.gif -share/doc/mysql/Img/sweden.gif -share/doc/mysql/Img/switzerland.gif -share/doc/mysql/Img/taiwan.gif -share/doc/mysql/Img/tcxlogo3.gif -share/doc/mysql/Img/ukraine.gif -share/doc/mysql/Img/usa.gif -share/doc/mysql/include.texi -share/doc/mysql/manual.html -share/doc/mysql/manual.ps -share/doc/mysql/manual.texi -share/doc/mysql/manual.txt -share/doc/mysql/manual_toc.html -share/mysql/binary-configure -share/mysql/czech/errmsg.sys -share/mysql/czech/errmsg.txt -share/mysql/danish/errmsg.sys -share/mysql/danish/errmsg.txt -share/mysql/dutch/errmsg.sys -share/mysql/dutch/errmsg.txt -share/mysql/english/errmsg.sys -share/mysql/english/errmsg.txt -share/mysql/estonia/errmsg.sys -share/mysql/estonia/errmsg.txt -share/mysql/french/errmsg.sys -share/mysql/french/errmsg.txt -share/mysql/german/errmsg.sys -share/mysql/german/errmsg.txt -share/mysql/greek/errmsg.sys -share/mysql/greek/errmsg.txt -share/mysql/hungarian/errmsg.sys -share/mysql/hungarian/errmsg.txt -share/mysql/italian/errmsg.sys -share/mysql/italian/errmsg.txt -share/mysql/japanese/errmsg.sys -share/mysql/japanese/errmsg.txt -share/mysql/korean/errmsg.sys -share/mysql/korean/errmsg.txt -share/mysql/make_binary_distribution -share/mysql/my-example.cnf -share/mysql/mysql-3.22.32.spec -share/mysql/mysql-log-rotate -share/mysql/mysql.server -share/mysql/norwegian-ny/errmsg.sys -share/mysql/norwegian-ny/errmsg.txt -share/mysql/norwegian/errmsg.sys -share/mysql/norwegian/errmsg.txt -share/mysql/polish/errmsg.sys -share/mysql/polish/errmsg.txt -share/mysql/portuguese/errmsg.sys -share/mysql/portuguese/errmsg.txt -share/mysql/russian/errmsg.sys -share/mysql/russian/errmsg.txt -share/mysql/slovak/errmsg.sys -share/mysql/slovak/errmsg.txt -share/mysql/spanish/errmsg.sys -share/mysql/spanish/errmsg.txt -share/mysql/swedish/errmsg.sys -share/mysql/swedish/errmsg.txt -@dirrm share/doc/mysql/Img -@dirrm share/doc/mysql -@dirrm share/mysql/czech -@dirrm share/mysql/danish -@dirrm share/mysql/dutch -@dirrm share/mysql/english -@dirrm share/mysql/estonia -@dirrm share/mysql/french -@dirrm share/mysql/german -@dirrm share/mysql/greek -@dirrm share/mysql/hungarian -@dirrm share/mysql/italian -@dirrm share/mysql/japanese -@dirrm share/mysql/korean -@dirrm share/mysql/norwegian -@dirrm share/mysql/norwegian-ny -@dirrm share/mysql/polish -@dirrm share/mysql/portuguese -@dirrm share/mysql/russian -@dirrm share/mysql/slovak -@dirrm share/mysql/spanish -@dirrm share/mysql/swedish -@dirrm share/mysql -@exec %D/bin/mysql_install_db -@exec /usr/bin/killall mysqld diff --git a/databases/mysql41-server/pkg-plist.client b/databases/mysql41-server/pkg-plist.client deleted file mode 100644 index 9eb893b7dd12..000000000000 --- a/databases/mysql41-server/pkg-plist.client +++ /dev/null @@ -1,32 +0,0 @@ -bin/mysql -bin/mysqladmin -bin/mysqldump -bin/mysqlimport -bin/mysqlshow -etc/rc.d/mysql-client.sh -include/mysql/dbug.h -include/mysql/errmsg.h -include/mysql/m_ctype.h -include/mysql/m_string.h -include/mysql/my_config.h -include/mysql/my_global.h -include/mysql/my_list.h -include/mysql/my_net.h -include/mysql/my_pthread.h -include/mysql/my_sys.h -include/mysql/mysql.h -include/mysql/mysql_com.h -include/mysql/mysql_version.h -include/mysql/mysqld_error.h -include/mysql/raid.h -include/mysql/sslopt-case.h -include/mysql/sslopt-longopts.h -include/mysql/sslopt-usage.h -include/mysql/sslopt-vars.h -lib/mysql/libmysqlclient.a -lib/mysql/libmysqlclient.so -lib/mysql/libmysqlclient.so.6 -@dirrm include/mysql -@dirrm lib/mysql -@exec /usr/bin/env OBJFORMAT=%%PORTOBJFORMAT%% /sbin/ldconfig -m %D/lib/mysql -@unexec /usr/bin/env OBJFORMAT=%%PORTOBJFORMAT%% /sbin/ldconfig -R diff --git a/databases/mysql50-client/Makefile b/databases/mysql50-client/Makefile deleted file mode 100644 index 8284511ecb0e..000000000000 --- a/databases/mysql50-client/Makefile +++ /dev/null @@ -1,17 +0,0 @@ -# ports collection makefile for: MySQL-client -# Date created: Thu Jun 24 00:12:22 CEST 1999 -# Whom: Dirk Froemberg <dirk@FreeBSD.org> -# -# $FreeBSD$ -# - -PORTNAME= ${MASTERPORTNAME:S/-server/-client/g} - -MASTERDIR= ${.CURDIR}/../mysql322-server -COMMENT= ${PKGDIR}/COMMENT.client -PKGINSTALL= mustnotexist -PLIST= ${PKGDIR}/PLIST.client - -CLIENT_ONLY= yes - -.include "${MASTERDIR}/Makefile" diff --git a/databases/mysql50-server/Makefile b/databases/mysql50-server/Makefile deleted file mode 100644 index 9a6c2a590256..000000000000 --- a/databases/mysql50-server/Makefile +++ /dev/null @@ -1,154 +0,0 @@ -# ports collection makefile for: MySQL-server -# Date created: 26 Jan 1998 -# Whom: Josh Tiefenbach <josh@ican.net> -# -# $FreeBSD$ -# - -PORTNAME?= ${MASTERPORTNAME} -PORTVERSION= 3.22.32 -CATEGORIES= databases -MASTER_SITES= http://www.fh-wolfenbuettel.de/ftp/pub/database/mysql/Downloads/MySQL-3.22/ \ - ftp://ftp.digex.net/pub/packages/database/mysql/Downloads/MySQL-3.22/ \ - ftp://ftp.plig.net/pub/mysql/Downloads/MySQL-3.22/ \ - ftp://ftp.sunet.se/pub/unix/databases/relational/mysql/Downloads/MySQL-3.22/ -DISTNAME= mysql-${PORTVERSION} - -MAINTAINER= dirk@FreeBSD.org - -Y2K= http://www.tcx.se/Manual_chapter/manual_Introduction.html#Year_2000_compliance - -SLAVEDIRS= databases/mysql322-client -MASTERPORTNAME= mysql-server -DB_DIR?= /var/db/mysql -USE_PERL5= yes -USE_LIBTOOL= yes -CONFIGURE_ARGS= --localstatedir=${DB_DIR} \ - --without-perl \ - --without-debug \ - --without-readline \ - --without-bench -.if ${MACHINE_ARCH} == "i386" -CONFIGURE_ARGS+=--enable-assembler -.endif -CONFIGURE_ENV+= PERL=${PERL} \ - PERL5=${PERL} \ - INSTALL_SCRIPT="${INSTALL_SCRIPT}" \ - CONFIGURE_ARGS="${CONFIGURE_ARGS}" - -# MySQL-Server part -.if !defined(CLIENT_ONLY) -RUN_DEPENDS= mysql:${PORTSDIR}/databases/mysql322-client - -.include <bsd.port.pre.mk> - -.if ${OSVERSION} >= 320000 -.if defined(MIT_PTHREADS) -CONFIGURE_ARGS+= --with-mit-threads=yes - -pre-fetch: - @${ECHO} - @${ECHO} "Using supplied mit-pthreads." - @${ECHO} -.else -CONFIGURE_ARGS+= --with-mit-threads=no - -pre-fetch: - @${ECHO} - @${ECHO} "Using native FreeBSD threads (libc_r)." - @${ECHO} - @${ECHO} "You may set MIT_PTHREADS (make MIT_PTHREADS=yes)" - @${ECHO} "to compile mysql with the supplied mit-pthreads." - @${ECHO} "(You don't want to set this unless you have a good reason)." - @${ECHO} -.endif -.elif ${OSVERSION} >= 300000 -.if defined(NATIVE_THREADS) -CONFIGURE_ARGS+= --with-mit-threads=no - -pre-fetch: - @${ECHO} - @${ECHO} "Using native FreeBSD threads (libc_r)." - @${ECHO} -.else -CONFIGURE_ARGS+= --with-mit-threads=yes - -pre-fetch: - @${ECHO} - @${ECHO} "Using supplied mit-pthreads." - @${ECHO} - @${ECHO} "You may set NATIVE_THREADS (make NATIVE_THREADS=yes)" - @${ECHO} "to compile mysql with the native FreeBSD threads (libc_r)." - @${ECHO} "Warning: There are some bugs in libc_r which prevent" - @${ECHO} " 'mysqladmin shutdown' from working properly and" - @${ECHO} " killing mysqld might not work." - @${ECHO} -.endif -.else -CONFIGURE_ARGS+= --with-mit-threads=yes - -pre-fetch: - @${ECHO} - @${ECHO} "Using supplied mit-pthreads." - @${ECHO} -.endif - -post-patch: - ${MV} ${WRKSRC}/strings/strings-x86.s ${WRKSRC}/strings/strings-x86.S - ${MV} ${WRKSRC}/strings/longlong2str-x86.s ${WRKSRC}/strings/longlong2str-x86.S - -pre-install: -.if !defined(PACKAGE_BUILDING) && exists(${DB_DIR}) && !defined(OVERWRITE_DB) - @${ECHO} "You appear to already have a mysql database directory in ${DB_DIR}." - @${ECHO} "" - @${ECHO} "In order to preserve your existing data, you should:" - @${ECHO} " - dump all your databases" - @${ECHO} " - kill mysql if it is running" - @${ECHO} " - delete the ${DB_DIR} directory" - @${ECHO} " - run 'make install'" - @${ECHO} " - start up mysql" - @${ECHO} " - re-create all of your database" - @${ECHO} " - re-load your data" - @${ECHO} "" - @${ECHO} "If you understand the consequences of this upgrade, please re-build this" - @${ECHO} "port with the environment variable OVERWRITE_DB defined." - @${FALSE} -.endif - -post-install: -.if !defined(PACKAGE_BUILDING) - ${PREFIX}/bin/mysql_install_db - @${SETENV} DB_DIR=${DB_DIR} ${SH} ${PKGINSTALL} ${PKGNAME} POST-INSTALL -.endif - @${SED} "s|%%PREFIX%%|${PREFIX}|g" < ${FILESDIR}/mysql-server.sh > ${PREFIX}/etc/rc.d/mysql-server.sh - @${CHMOD} 750 ${PREFIX}/etc/rc.d/mysql-server.sh - -.if !defined(NOPORTDOCS) - ${MKDIR} ${PREFIX}/share/doc/mysql/Img -.for doc in manual.html manual.ps manual_toc.html manual.txt manual.texi include.texi - ${INSTALL_DATA} ${WRKSRC}/Docs/${doc} ${PREFIX}/share/doc/mysql -.endfor - ${INSTALL_DATA} ${WRKSRC}/Docs/Img/*.gif ${PREFIX}/share/doc/mysql/Img - ${INSTALL_DATA} ${WRKSRC}/Docs/mysql.info ${PREFIX}/info - @install-info ${PREFIX}/info/mysql.info ${PREFIX}/info/dir -.endif - -.include <bsd.port.post.mk> - -# MySQL-Client part -.else -MAN1= mysql.1 - -CONFIGURE_ARGS+=--without-server -MAKE_ENV= CLIENT_ONLY="${CLIENT_ONLY}" - -post-install: - @${ECHO} "#!/bin/sh" > ${PREFIX}/etc/rc.d/mysql-client.sh - @${ECHO} "" >> ${PREFIX}/etc/rc.d/mysql-client.sh - @${ECHO} "${LDCONFIG} -m ${PREFIX}/lib/mysql" >> ${PREFIX}/etc/rc.d/mysql-client.sh - @${CHMOD} 750 ${PREFIX}/etc/rc.d/mysql-client.sh - - ${SETENV} OBJFORMAT=${PORTOBJFORMAT} ${LDCONFIG} -m ${PREFIX}/lib/mysql - -.include <bsd.port.mk> -.endif diff --git a/databases/mysql50-server/distinfo b/databases/mysql50-server/distinfo deleted file mode 100644 index edfe7eb2ff4a..000000000000 --- a/databases/mysql50-server/distinfo +++ /dev/null @@ -1 +0,0 @@ -MD5 (mysql-3.22.32.tar.gz) = 244e08d9a1f4b2ad799aa40ad3cc897a diff --git a/databases/mysql50-server/files/mysql-server.sh b/databases/mysql50-server/files/mysql-server.sh deleted file mode 100644 index 0ff5374c48f7..000000000000 --- a/databases/mysql50-server/files/mysql-server.sh +++ /dev/null @@ -1,18 +0,0 @@ -#!/bin/sh - -case "$1" in - start) - if [ -x %%PREFIX%%/bin/safe_mysqld ]; then - %%PREFIX%%/bin/safe_mysqld --user=mysql > /dev/null & && echo -n ' mysqld' - fi - ;; - stop) - /usr/bin/killall mysqld > /dev/null 2>&1 && echo -n ' mysqld' - ;; - *) - echo "" - echo "Usage: `basename $0` { start | stop }" - echo "" - exit 64 - ;; -esac diff --git a/databases/mysql50-server/files/patch-Makefile.in b/databases/mysql50-server/files/patch-Makefile.in deleted file mode 100644 index 00190736f765..000000000000 --- a/databases/mysql50-server/files/patch-Makefile.in +++ /dev/null @@ -1,15 +0,0 @@ ---- Makefile.in.orig Sat Jan 1 17:59:38 2000 -+++ Makefile.in Mon Jan 3 17:19:23 2000 -@@ -144,7 +144,11 @@ - # These are built from source in the Docs directory - EXTRA_DIST = INSTALL-SOURCE-GENERIC README PUBLIC INSTALL-SOURCE MIRRORS - --SUBDIRS = include @docs_dirs@ @readline_dir@ client @sql_server_dirs@ scripts tests man @bench_dirs@ support-files -+.if defined(CLIENT_ONLY) -+SUBDIRS = include @readline_dir@ client tests man -+.else -+SUBDIRS = include @docs_dirs@ @sql_server_dirs@ scripts @bench_dirs@ support-files -+.endif - - - # Relink after clean diff --git a/databases/mysql50-server/files/patch-ab b/databases/mysql50-server/files/patch-ab deleted file mode 100644 index 1fd66bbe0cad..000000000000 --- a/databases/mysql50-server/files/patch-ab +++ /dev/null @@ -1,33 +0,0 @@ ---- scripts/mysql_install_db.sh.orig Wed Jan 12 21:06:30 2000 -+++ scripts/mysql_install_db.sh Sun Mar 26 23:20:27 2000 -@@ -15,8 +15,6 @@ - force=0 - IN_RPM=0 - --# Are we doing an rpm install? --if test "$1" = "-IN-RPM"; then IN_RPM=1; shift; fi - if test "$1" = "--force"; then force=1; shift; fi - - # Get mysqld/safe_mysqld options from /etc/my.cnf or ~/.my.cnf -@@ -60,8 +58,6 @@ - fi - fi - --# On IRIX hostname is in /usr/bsd so add this to the path --PATH=$PATH:/usr/bsd - hostname=`hostname` # Install this too in the user table - - # Check if hostname is valid -@@ -255,12 +251,6 @@ - END_OF_DATA - then - echo "" -- if test "$IN_RPM" -eq 0 -- then -- echo "To start mysqld at boot time you have to copy support-files/mysql.server" -- echo "to the right place for your system" -- echo -- fi - echo "PLEASE REMEMBER TO SET A PASSWORD FOR THE MySQL root USER !" - echo "This is done with:" - echo "$bindir/mysqladmin -u root password 'new-password'" diff --git a/databases/mysql50-server/files/patch-af b/databases/mysql50-server/files/patch-af deleted file mode 100644 index 2593da4d1c64..000000000000 --- a/databases/mysql50-server/files/patch-af +++ /dev/null @@ -1,73 +0,0 @@ ---- scripts/safe_mysqld.sh.orig Fri May 14 11:11:46 1999 -+++ scripts/safe_mysqld.sh Tue Jun 8 11:14:02 1999 -@@ -12,33 +12,9 @@ - - trap '' 1 2 3 15 # we shouldn't let anyone kill us - --# Check if we are starting this relative (for the binary release) --if test -d ./data/mysql -a -f ./share/mysql/english/errmsg.sys -a \ -- -x ./bin/mysqld --then -- MY_BASEDIR_VERSION=`pwd` # Where bin, share and data are -- DATADIR=$MY_BASEDIR_VERSION/data # Where the databases are -- ledir=$MY_BASEDIR_VERSION/bin # Where mysqld is --# Check if this is a 'moved install directory' --elif test -f ./var/mysql/db.frm -a -f ./share/mysql/english/errmsg.sys -a \ -- -x ./libexec/mysqld --then -- MY_BASEDIR_VERSION=`pwd` # Where libexec, share and var are -- DATADIR=$MY_BASEDIR_VERSION/var # Where the databases are -- ledir=$MY_BASEDIR_VERSION/libexec # Where mysqld is --else -- MY_BASEDIR_VERSION=@prefix@ -- DATADIR=@localstatedir@ -- ledir=@libexecdir@ -- if test ! -x $ledir/mysqld -- then -- echo "The file $ledir/mysqld doesn't exist or is not executable" -- echo "Please do a cd to the mysql installation directory and restart" -- echo "this script from there as follows:" -- echo "./bin/safe_mysqld". -- exit 1; -- fi --fi -+MY_BASEDIR_VERSION=@prefix@ -+DATADIR=@localstatedir@ -+ledir=@libexecdir@ - - pid_file=$DATADIR/`@HOSTNAME@`.pid - log=$DATADIR/`@HOSTNAME@`.log -@@ -114,33 +90,6 @@ - if test ! -f $pid_file # This is removed if normal shutdown - then - break; -- fi -- if @IS_LINUX@ -- then -- # Test if one process was hanging. -- # This is only a fix for Linux (running as base 3 mysqld processes) -- # but should work for the rest of the servers. -- # The only thing is ps x => redhat 5 gives warnings when using ps -x. -- # kill -9 is used or the process won't react on the kill. -- numofproces=`ps x | grep -v "grep" | grep -c $ledir/mysqld` -- echo -e "\nNumber of processes running now: $numofproces" | tee -a $err_log -- I=1 -- while test "$I" -le "$numofproces" -- do -- PROC=`ps x | grep $ledir/mysqld | grep -v "grep" | tail -1` -- for T in $PROC -- do -- break -- done -- # echo "TEST $I - $T **" -- if kill -9 $T -- then -- echo "mysqld process hanging, pid $T - killed" | tee -a $err_log -- else -- break -- fi -- I=`expr $I + 1` -- done - fi - echo "mysqld restarted on " `date` | tee -a $err_log - done diff --git a/databases/mysql50-server/files/patch-ap b/databases/mysql50-server/files/patch-ap deleted file mode 100644 index 097b449a181a..000000000000 --- a/databases/mysql50-server/files/patch-ap +++ /dev/null @@ -1,11 +0,0 @@ ---- strings/Makefile.in.orig Sat Jan 1 18:00:30 2000 -+++ strings/Makefile.in Mon Jan 3 17:21:19 2000 -@@ -145,7 +145,7 @@ - INCLUDES = @MT_INCLUDES@ -I$(srcdir)/../include -I../include - pkglib_LIBRARIES = libmystrings.a - #no assembler --@ASSEMBLER_x86_TRUE@ASRCS = strings-x86.s longlong2str-x86.s -+@ASSEMBLER_x86_TRUE@ASRCS = strings-x86.S longlong2str-x86.S - @ASSEMBLER_x86_FALSE@@ASSEMBLER_sparc_TRUE@ASRCS = bmove_upp-sparc.s strappend-sparc.s strend-sparc.s strinstr-sparc.s strmake-sparc.s strmov-sparc.s strnmov-sparc.s strstr-sparc.s strxmov-sparc.s - @ASSEMBLER_x86_FALSE@@ASSEMBLER_sparc_FALSE@ASRCS = - # These file MUST all be on the same line!! Otherwise automake diff --git a/databases/mysql50-server/files/patch-aq b/databases/mysql50-server/files/patch-aq deleted file mode 100644 index 573324175921..000000000000 --- a/databases/mysql50-server/files/patch-aq +++ /dev/null @@ -1,13 +0,0 @@ ---- sql/Makefile.in.orig Sat Jan 1 18:01:13 2000 -+++ sql/Makefile.in Wed Jan 5 20:28:17 2000 -@@ -317,6 +317,10 @@ - else :; fi - sql_yacc.hh: sql_yacc.cc - -+# gcc takes a lot of memory and cpu time if it compiles sql_yacc.cc with -O -+sql_yacc.o: sql_yacc.cc -+ $(CXXCOMPILE) -O0 -c $< -+ - - # This directory's subdirectories are mostly independent; you can cd - # into them and run `make' without going through this Makefile. diff --git a/databases/mysql50-server/files/patch-as b/databases/mysql50-server/files/patch-as deleted file mode 100644 index 903bc9950a28..000000000000 --- a/databases/mysql50-server/files/patch-as +++ /dev/null @@ -1,16 +0,0 @@ ---- sql/mysqld.cc.orig Sun Feb 13 02:40:18 2000 -+++ sql/mysqld.cc Mon Feb 21 21:24:51 2000 -@@ -63,8 +63,11 @@ - inline void reset_floating_point_exceptions() - { - /* Don't fall for overflow, underflow,divide-by-zero or loss of precision */ -- fpsetmask(~(FP_X_INV | FP_X_DNML | FP_X_OFL | FP_X_UFL | -- FP_X_DZ | FP_X_IMP)); -+#if defined(__i386__) -+ fpsetmask(~(FP_X_INV | FP_X_DNML | FP_X_OFL | FP_X_UFL | FP_X_DZ | FP_X_IMP)); -+#else -+ fpsetmask(~(FP_X_INV | FP_X_OFL | FP_X_UFL | FP_X_DZ | FP_X_IMP)); -+#endif - } - #else - #define reset_floating_point_exceptions() diff --git a/databases/mysql50-server/files/patch-configure b/databases/mysql50-server/files/patch-configure deleted file mode 100644 index 133bd4200860..000000000000 --- a/databases/mysql50-server/files/patch-configure +++ /dev/null @@ -1,132 +0,0 @@ ---- configure.orig Sun Feb 13 03:46:09 2000 -+++ configure Wed May 3 12:20:25 2000 -@@ -2743,7 +2743,7 @@ - ;; - esac - fi --HOSTNAME="$ac_cv_path_HOSTNAME" -+HOSTNAME="$ac_cv_path_HOSTNAME -s" - if test -n "$HOSTNAME"; then - echo "$ac_t""$HOSTNAME" 1>&6 - else -@@ -2871,30 +2871,7 @@ - echo $ac_n "checking "how to check if pid exists"""... $ac_c" 1>&6 - echo "configure:2873: checking "how to check if pid exists"" >&5 - PS=$ac_cv_path_PS --# Linux style --if $PS p $$ 2> /dev/null | grep $0 > /dev/null --then -- FIND_PROC="$PS p \$\$PID | grep mysqld > /dev/null" --# Solaris --elif $PS -p $$ 2> /dev/null | grep $0 > /dev/null --then -- FIND_PROC="$PS -p \$\$PID | grep mysqld > /dev/null" --# BSD style --elif $PS -uaxww 2> /dev/null | grep $0 > /dev/null --then -- FIND_PROC="$PS -uaxww | grep mysqld | grep \" \$\$PID \" > /dev/null" --# SysV style --elif $PS -ef 2> /dev/null | grep $0 > /dev/null --then -- FIND_PROC="$PS -ef | grep mysqld | grep \" \$\$PID \" > /dev/null" --# Do anybody use this? --elif $PS $$ 2> /dev/null | grep $0 > /dev/null --then -- FIND_PROC="$PS \$\$PID | grep mysqld > /dev/null" --else -- { echo "configure: error: Could not find the right ps switches. Which OS is this ?. See the Installation chapter in the Reference Manual." 1>&2; exit 1; } --fi -- -+FIND_PROC="$PS -uaxww | grep mysqld | grep \" \$\$PID \" > /dev/null" - echo "$ac_t"""$FIND_PROC"" 1>&6 - - # Check if a pid is valid -@@ -4646,8 +4623,6 @@ - #define $ac_tr_lib 1 - EOF - -- LIBS="-lc_r $LIBS" -- - else - echo "$ac_t""no" 1>&6 - fi -@@ -4881,28 +4856,6 @@ - fi - - --# Build optimized or debug version ? --# First check for gcc and g++ --if test "$ac_cv_prog_gcc" = "yes" --then -- DEBUG_CFLAGS="-g" -- DEBUG_OPTIMIZE_CC="-O" -- OPTIMIZE_CFLAGS="-O6" --else -- DEBUG_CFLAGS="-g" -- DEBUG_OPTIMIZE_CC="" -- OPTIMIZE_CFLAGS="-O" --fi --if test "$ac_cv_prog_cxx_g" = "yes" --then -- DEBUG_CXXFLAGS="-g" -- DEBUG_OPTIMIZE_CXX="-O" -- OPTIMIZE_CXXFLAGS="-O3" --else -- DEBUG_CXXFLAGS="-g" -- DEBUG_OPTIMIZE_CXX="" -- OPTIMIZE_CXXFLAGS="-O" --fi - # Check whether --with-debug or --without-debug was given. - if test "${with_debug+set}" = set; then - withval="$with_debug" -@@ -5615,10 +5568,6 @@ - ac_link='${CXX-g++} -o conftest${ac_exeext} $CXXFLAGS $CPPFLAGS $LDFLAGS conftest.$ac_ext $LIBS 1>&5' - cross_compiling=$ac_cv_prog_cxx_cross - --if test "$ac_cv_prog_gxx" = "yes" --then -- CXXFLAGS="$CXXFLAGS -Werror" --fi - mysql_cv_btype_last_arg_accept=none - cat > conftest.$ac_ext <<EOF - #line 5625 "configure" -@@ -7655,10 +7604,6 @@ - ac_link='${CXX-g++} -o conftest${ac_exeext} $CXXFLAGS $CPPFLAGS $LDFLAGS conftest.$ac_ext $LIBS 1>&5' - cross_compiling=$ac_cv_prog_cxx_cross - --if test "$ac_cv_prog_gxx" = "yes" --then -- CXXFLAGS="$CXXFLAGS -Werror" --fi - cat > conftest.$ac_ext <<EOF - #line 7664 "configure" - #include "confdefs.h" -@@ -7721,10 +7666,6 @@ - ac_link='${CXX-g++} -o conftest${ac_exeext} $CXXFLAGS $CPPFLAGS $LDFLAGS conftest.$ac_ext $LIBS 1>&5' - cross_compiling=$ac_cv_prog_cxx_cross - --if test "$ac_cv_prog_gxx" = "yes" --then -- CXXFLAGS="$CXXFLAGS -Werror" --fi - cat > conftest.$ac_ext <<EOF - #line 7730 "configure" - #include "confdefs.h" -@@ -8005,7 +7946,7 @@ - #include <pthread.h> - int main() { - pthread_attr_t thr_attr; --pthread_attr_setscope(&thr_attr,0); -+XXXpthread_attr_setscope(&thr_attr,0); - ; return 0; } - EOF - if { (eval echo configure:8012: \"$ac_link\") 1>&5; (eval $ac_link) 2>&5; } && test -s conftest${ac_exeext}; then -@@ -8210,7 +8151,7 @@ - echo "" - echo "Configuring MIT Pthreads" - # We will never install so installation paths are not needed. -- (cd mit-pthreads; sh ./configure) -+ (cd mit-pthreads; sh ./configure ${CONFIGURE_ARGS}) - echo "End of MIT Pthreads configuration" - echo "" - fi diff --git a/databases/mysql50-server/files/patch-include::Makefile.in b/databases/mysql50-server/files/patch-include::Makefile.in deleted file mode 100644 index ed7654838e66..000000000000 --- a/databases/mysql50-server/files/patch-include::Makefile.in +++ /dev/null @@ -1,14 +0,0 @@ ---- include/Makefile.in.orig Sat Jan 1 17:59:41 2000 -+++ include/Makefile.in Wed Jan 5 21:04:23 2000 -@@ -259,7 +259,11 @@ - - install-am: all-am - @$(MAKE) $(AM_MAKEFLAGS) install-exec-am install-data-am -+.if defined(CLIENT_ONLY) - install: install-am -+.else -+install: -+.endif - uninstall-am: uninstall-pkgincludeHEADERS - uninstall: uninstall-am - all-am: Makefile $(HEADERS) all-local diff --git a/databases/mysql50-server/pkg-comment b/databases/mysql50-server/pkg-comment deleted file mode 100644 index 2e29c8d2b15b..000000000000 --- a/databases/mysql50-server/pkg-comment +++ /dev/null @@ -1 +0,0 @@ -Multithreaded SQL database (server) diff --git a/databases/mysql50-server/pkg-comment.client b/databases/mysql50-server/pkg-comment.client deleted file mode 100644 index cd0c61571cfb..000000000000 --- a/databases/mysql50-server/pkg-comment.client +++ /dev/null @@ -1 +0,0 @@ -Multithreaded SQL database (client) diff --git a/databases/mysql50-server/pkg-descr b/databases/mysql50-server/pkg-descr deleted file mode 100644 index e21208271cdb..000000000000 --- a/databases/mysql50-server/pkg-descr +++ /dev/null @@ -1,10 +0,0 @@ -mySQL is a multithreaded (using MIT pthreads) SQL database with a command -syntax very similar to mSQL. For more information see http://www.tcx.se - -Note: This port does *not* build the perl5 module. To do so, refer to the -file ${WRKSRC}/INSTALL-SOURCE, in particular, the notes on FreeBSD systems. - -josh -josh@ican.net - -WWW: http://www.mysql.com/ diff --git a/databases/mysql50-server/pkg-install b/databases/mysql50-server/pkg-install deleted file mode 100644 index 3e925021ede1..000000000000 --- a/databases/mysql50-server/pkg-install +++ /dev/null @@ -1,41 +0,0 @@ -#!/bin/sh - -PATH=/bin:/usr/sbin -if [ -z "${DB_DIR}" ]; then - DB_DIR=/var/db/mysql -fi - -case $2 in -POST-INSTALL) - USER=mysql - GROUP=${USER} - UID=88 - GID=${UID} - - if pw group show "${GROUP}" 2>/dev/null; then - echo "You already have a group \"${GROUP}\", so I will use it." - else - if pw groupadd ${GROUP} -g ${GID}; then - echo "Added group \"${GROUP}\"." - else - echo "Adding group \"${GROUP}\" failed..." - exit 1 - fi - fi - - if pw user show "${USER}" 2>/dev/null; then - echo "You already have a user \"${USER}\", so I will use it." - else - if pw useradd ${USER} -u ${UID} -g ${GROUP} -h - \ - -d ${DB_DIR} -s /sbin/nologin -c "MySQL Daemon" - then - echo "Added user \"${USER}\"." - else - echo "Adding user \"${USER}\" failed..." - exit 1 - fi - fi - - chown -R ${USER}.${GROUP} ${DB_DIR} - ;; -esac diff --git a/databases/mysql50-server/pkg-plist b/databases/mysql50-server/pkg-plist deleted file mode 100644 index 7c89ce913312..000000000000 --- a/databases/mysql50-server/pkg-plist +++ /dev/null @@ -1,148 +0,0 @@ -bin/comp_err -bin/isamchk -bin/isamlog -bin/msql2mysql -bin/mysql_find_rows -bin/mysql_fix_privilege_tables -bin/mysql_install_db -bin/mysql_setpermission -bin/mysql_zap -bin/mysqlaccess -bin/mysqlbug -bin/mysqlhotcopy -bin/perror -bin/print_defaults -bin/replace -bin/resolveip -bin/safe_mysqld -etc/rc.d/mysql-server.sh -@unexec install-info --delete %D/info/mysql.info %D/info/dir -info/mysql.info -@exec install-info %D/info/mysql.info %D/info/dir -lib/mysql/libdbug.a -lib/mysql/libheap.a -lib/mysql/libmerge.a -lib/mysql/libmystrings.a -lib/mysql/libmysys.a -lib/mysql/libnisam.a -libexec/mysqld -share/doc/mysql/Img/australia.gif -share/doc/mysql/Img/austria.gif -share/doc/mysql/Img/brazil.gif -share/doc/mysql/Img/bulgaria.gif -share/doc/mysql/Img/canada.gif -share/doc/mysql/Img/chile.gif -share/doc/mysql/Img/china.gif -share/doc/mysql/Img/croatia.gif -share/doc/mysql/Img/czech-republic.gif -share/doc/mysql/Img/denmark.gif -share/doc/mysql/Img/estonia.gif -share/doc/mysql/Img/finland.gif -share/doc/mysql/Img/france.gif -share/doc/mysql/Img/germany.gif -share/doc/mysql/Img/great-britain.gif -share/doc/mysql/Img/greece.gif -share/doc/mysql/Img/html-fs.gif -share/doc/mysql/Img/hungary.gif -share/doc/mysql/Img/iceland.gif -share/doc/mysql/Img/ireland.gif -share/doc/mysql/Img/island.gif -share/doc/mysql/Img/israel.gif -share/doc/mysql/Img/italy.gif -share/doc/mysql/Img/japan.gif -share/doc/mysql/Img/kroatia.gif -share/doc/mysql/Img/mysql-logo.gif -share/doc/mysql/Img/mysql5.gif -share/doc/mysql/Img/netherlands.gif -share/doc/mysql/Img/poland.gif -share/doc/mysql/Img/portugal.gif -share/doc/mysql/Img/romania.gif -share/doc/mysql/Img/russia.gif -share/doc/mysql/Img/singapore.gif -share/doc/mysql/Img/south-africa.gif -share/doc/mysql/Img/south-africa1.gif -share/doc/mysql/Img/south-korea.gif -share/doc/mysql/Img/spain.gif -share/doc/mysql/Img/sweden.gif -share/doc/mysql/Img/switzerland.gif -share/doc/mysql/Img/taiwan.gif -share/doc/mysql/Img/tcxlogo3.gif -share/doc/mysql/Img/ukraine.gif -share/doc/mysql/Img/usa.gif -share/doc/mysql/include.texi -share/doc/mysql/manual.html -share/doc/mysql/manual.ps -share/doc/mysql/manual.texi -share/doc/mysql/manual.txt -share/doc/mysql/manual_toc.html -share/mysql/binary-configure -share/mysql/czech/errmsg.sys -share/mysql/czech/errmsg.txt -share/mysql/danish/errmsg.sys -share/mysql/danish/errmsg.txt -share/mysql/dutch/errmsg.sys -share/mysql/dutch/errmsg.txt -share/mysql/english/errmsg.sys -share/mysql/english/errmsg.txt -share/mysql/estonia/errmsg.sys -share/mysql/estonia/errmsg.txt -share/mysql/french/errmsg.sys -share/mysql/french/errmsg.txt -share/mysql/german/errmsg.sys -share/mysql/german/errmsg.txt -share/mysql/greek/errmsg.sys -share/mysql/greek/errmsg.txt -share/mysql/hungarian/errmsg.sys -share/mysql/hungarian/errmsg.txt -share/mysql/italian/errmsg.sys -share/mysql/italian/errmsg.txt -share/mysql/japanese/errmsg.sys -share/mysql/japanese/errmsg.txt -share/mysql/korean/errmsg.sys -share/mysql/korean/errmsg.txt -share/mysql/make_binary_distribution -share/mysql/my-example.cnf -share/mysql/mysql-3.22.32.spec -share/mysql/mysql-log-rotate -share/mysql/mysql.server -share/mysql/norwegian-ny/errmsg.sys -share/mysql/norwegian-ny/errmsg.txt -share/mysql/norwegian/errmsg.sys -share/mysql/norwegian/errmsg.txt -share/mysql/polish/errmsg.sys -share/mysql/polish/errmsg.txt -share/mysql/portuguese/errmsg.sys -share/mysql/portuguese/errmsg.txt -share/mysql/russian/errmsg.sys -share/mysql/russian/errmsg.txt -share/mysql/slovak/errmsg.sys -share/mysql/slovak/errmsg.txt -share/mysql/spanish/errmsg.sys -share/mysql/spanish/errmsg.txt -share/mysql/swedish/errmsg.sys -share/mysql/swedish/errmsg.txt -@dirrm share/doc/mysql/Img -@dirrm share/doc/mysql -@dirrm share/mysql/czech -@dirrm share/mysql/danish -@dirrm share/mysql/dutch -@dirrm share/mysql/english -@dirrm share/mysql/estonia -@dirrm share/mysql/french -@dirrm share/mysql/german -@dirrm share/mysql/greek -@dirrm share/mysql/hungarian -@dirrm share/mysql/italian -@dirrm share/mysql/japanese -@dirrm share/mysql/korean -@dirrm share/mysql/norwegian -@dirrm share/mysql/norwegian-ny -@dirrm share/mysql/polish -@dirrm share/mysql/portuguese -@dirrm share/mysql/russian -@dirrm share/mysql/slovak -@dirrm share/mysql/spanish -@dirrm share/mysql/swedish -@dirrm share/mysql -@exec %D/bin/mysql_install_db -@exec /usr/bin/killall mysqld diff --git a/databases/mysql50-server/pkg-plist.client b/databases/mysql50-server/pkg-plist.client deleted file mode 100644 index 9eb893b7dd12..000000000000 --- a/databases/mysql50-server/pkg-plist.client +++ /dev/null @@ -1,32 +0,0 @@ -bin/mysql -bin/mysqladmin -bin/mysqldump -bin/mysqlimport -bin/mysqlshow -etc/rc.d/mysql-client.sh -include/mysql/dbug.h -include/mysql/errmsg.h -include/mysql/m_ctype.h -include/mysql/m_string.h -include/mysql/my_config.h -include/mysql/my_global.h -include/mysql/my_list.h -include/mysql/my_net.h -include/mysql/my_pthread.h -include/mysql/my_sys.h -include/mysql/mysql.h -include/mysql/mysql_com.h -include/mysql/mysql_version.h -include/mysql/mysqld_error.h -include/mysql/raid.h -include/mysql/sslopt-case.h -include/mysql/sslopt-longopts.h -include/mysql/sslopt-usage.h -include/mysql/sslopt-vars.h -lib/mysql/libmysqlclient.a -lib/mysql/libmysqlclient.so -lib/mysql/libmysqlclient.so.6 -@dirrm include/mysql -@dirrm lib/mysql -@exec /usr/bin/env OBJFORMAT=%%PORTOBJFORMAT%% /sbin/ldconfig -m %D/lib/mysql -@unexec /usr/bin/env OBJFORMAT=%%PORTOBJFORMAT%% /sbin/ldconfig -R diff --git a/databases/mysql51-client/Makefile b/databases/mysql51-client/Makefile deleted file mode 100644 index 8284511ecb0e..000000000000 --- a/databases/mysql51-client/Makefile +++ /dev/null @@ -1,17 +0,0 @@ -# ports collection makefile for: MySQL-client -# Date created: Thu Jun 24 00:12:22 CEST 1999 -# Whom: Dirk Froemberg <dirk@FreeBSD.org> -# -# $FreeBSD$ -# - -PORTNAME= ${MASTERPORTNAME:S/-server/-client/g} - -MASTERDIR= ${.CURDIR}/../mysql322-server -COMMENT= ${PKGDIR}/COMMENT.client -PKGINSTALL= mustnotexist -PLIST= ${PKGDIR}/PLIST.client - -CLIENT_ONLY= yes - -.include "${MASTERDIR}/Makefile" diff --git a/databases/mysql51-server/Makefile b/databases/mysql51-server/Makefile deleted file mode 100644 index 9a6c2a590256..000000000000 --- a/databases/mysql51-server/Makefile +++ /dev/null @@ -1,154 +0,0 @@ -# ports collection makefile for: MySQL-server -# Date created: 26 Jan 1998 -# Whom: Josh Tiefenbach <josh@ican.net> -# -# $FreeBSD$ -# - -PORTNAME?= ${MASTERPORTNAME} -PORTVERSION= 3.22.32 -CATEGORIES= databases -MASTER_SITES= http://www.fh-wolfenbuettel.de/ftp/pub/database/mysql/Downloads/MySQL-3.22/ \ - ftp://ftp.digex.net/pub/packages/database/mysql/Downloads/MySQL-3.22/ \ - ftp://ftp.plig.net/pub/mysql/Downloads/MySQL-3.22/ \ - ftp://ftp.sunet.se/pub/unix/databases/relational/mysql/Downloads/MySQL-3.22/ -DISTNAME= mysql-${PORTVERSION} - -MAINTAINER= dirk@FreeBSD.org - -Y2K= http://www.tcx.se/Manual_chapter/manual_Introduction.html#Year_2000_compliance - -SLAVEDIRS= databases/mysql322-client -MASTERPORTNAME= mysql-server -DB_DIR?= /var/db/mysql -USE_PERL5= yes -USE_LIBTOOL= yes -CONFIGURE_ARGS= --localstatedir=${DB_DIR} \ - --without-perl \ - --without-debug \ - --without-readline \ - --without-bench -.if ${MACHINE_ARCH} == "i386" -CONFIGURE_ARGS+=--enable-assembler -.endif -CONFIGURE_ENV+= PERL=${PERL} \ - PERL5=${PERL} \ - INSTALL_SCRIPT="${INSTALL_SCRIPT}" \ - CONFIGURE_ARGS="${CONFIGURE_ARGS}" - -# MySQL-Server part -.if !defined(CLIENT_ONLY) -RUN_DEPENDS= mysql:${PORTSDIR}/databases/mysql322-client - -.include <bsd.port.pre.mk> - -.if ${OSVERSION} >= 320000 -.if defined(MIT_PTHREADS) -CONFIGURE_ARGS+= --with-mit-threads=yes - -pre-fetch: - @${ECHO} - @${ECHO} "Using supplied mit-pthreads." - @${ECHO} -.else -CONFIGURE_ARGS+= --with-mit-threads=no - -pre-fetch: - @${ECHO} - @${ECHO} "Using native FreeBSD threads (libc_r)." - @${ECHO} - @${ECHO} "You may set MIT_PTHREADS (make MIT_PTHREADS=yes)" - @${ECHO} "to compile mysql with the supplied mit-pthreads." - @${ECHO} "(You don't want to set this unless you have a good reason)." - @${ECHO} -.endif -.elif ${OSVERSION} >= 300000 -.if defined(NATIVE_THREADS) -CONFIGURE_ARGS+= --with-mit-threads=no - -pre-fetch: - @${ECHO} - @${ECHO} "Using native FreeBSD threads (libc_r)." - @${ECHO} -.else -CONFIGURE_ARGS+= --with-mit-threads=yes - -pre-fetch: - @${ECHO} - @${ECHO} "Using supplied mit-pthreads." - @${ECHO} - @${ECHO} "You may set NATIVE_THREADS (make NATIVE_THREADS=yes)" - @${ECHO} "to compile mysql with the native FreeBSD threads (libc_r)." - @${ECHO} "Warning: There are some bugs in libc_r which prevent" - @${ECHO} " 'mysqladmin shutdown' from working properly and" - @${ECHO} " killing mysqld might not work." - @${ECHO} -.endif -.else -CONFIGURE_ARGS+= --with-mit-threads=yes - -pre-fetch: - @${ECHO} - @${ECHO} "Using supplied mit-pthreads." - @${ECHO} -.endif - -post-patch: - ${MV} ${WRKSRC}/strings/strings-x86.s ${WRKSRC}/strings/strings-x86.S - ${MV} ${WRKSRC}/strings/longlong2str-x86.s ${WRKSRC}/strings/longlong2str-x86.S - -pre-install: -.if !defined(PACKAGE_BUILDING) && exists(${DB_DIR}) && !defined(OVERWRITE_DB) - @${ECHO} "You appear to already have a mysql database directory in ${DB_DIR}." - @${ECHO} "" - @${ECHO} "In order to preserve your existing data, you should:" - @${ECHO} " - dump all your databases" - @${ECHO} " - kill mysql if it is running" - @${ECHO} " - delete the ${DB_DIR} directory" - @${ECHO} " - run 'make install'" - @${ECHO} " - start up mysql" - @${ECHO} " - re-create all of your database" - @${ECHO} " - re-load your data" - @${ECHO} "" - @${ECHO} "If you understand the consequences of this upgrade, please re-build this" - @${ECHO} "port with the environment variable OVERWRITE_DB defined." - @${FALSE} -.endif - -post-install: -.if !defined(PACKAGE_BUILDING) - ${PREFIX}/bin/mysql_install_db - @${SETENV} DB_DIR=${DB_DIR} ${SH} ${PKGINSTALL} ${PKGNAME} POST-INSTALL -.endif - @${SED} "s|%%PREFIX%%|${PREFIX}|g" < ${FILESDIR}/mysql-server.sh > ${PREFIX}/etc/rc.d/mysql-server.sh - @${CHMOD} 750 ${PREFIX}/etc/rc.d/mysql-server.sh - -.if !defined(NOPORTDOCS) - ${MKDIR} ${PREFIX}/share/doc/mysql/Img -.for doc in manual.html manual.ps manual_toc.html manual.txt manual.texi include.texi - ${INSTALL_DATA} ${WRKSRC}/Docs/${doc} ${PREFIX}/share/doc/mysql -.endfor - ${INSTALL_DATA} ${WRKSRC}/Docs/Img/*.gif ${PREFIX}/share/doc/mysql/Img - ${INSTALL_DATA} ${WRKSRC}/Docs/mysql.info ${PREFIX}/info - @install-info ${PREFIX}/info/mysql.info ${PREFIX}/info/dir -.endif - -.include <bsd.port.post.mk> - -# MySQL-Client part -.else -MAN1= mysql.1 - -CONFIGURE_ARGS+=--without-server -MAKE_ENV= CLIENT_ONLY="${CLIENT_ONLY}" - -post-install: - @${ECHO} "#!/bin/sh" > ${PREFIX}/etc/rc.d/mysql-client.sh - @${ECHO} "" >> ${PREFIX}/etc/rc.d/mysql-client.sh - @${ECHO} "${LDCONFIG} -m ${PREFIX}/lib/mysql" >> ${PREFIX}/etc/rc.d/mysql-client.sh - @${CHMOD} 750 ${PREFIX}/etc/rc.d/mysql-client.sh - - ${SETENV} OBJFORMAT=${PORTOBJFORMAT} ${LDCONFIG} -m ${PREFIX}/lib/mysql - -.include <bsd.port.mk> -.endif diff --git a/databases/mysql51-server/distinfo b/databases/mysql51-server/distinfo deleted file mode 100644 index edfe7eb2ff4a..000000000000 --- a/databases/mysql51-server/distinfo +++ /dev/null @@ -1 +0,0 @@ -MD5 (mysql-3.22.32.tar.gz) = 244e08d9a1f4b2ad799aa40ad3cc897a diff --git a/databases/mysql51-server/files/mysql-server.sh b/databases/mysql51-server/files/mysql-server.sh deleted file mode 100644 index 0ff5374c48f7..000000000000 --- a/databases/mysql51-server/files/mysql-server.sh +++ /dev/null @@ -1,18 +0,0 @@ -#!/bin/sh - -case "$1" in - start) - if [ -x %%PREFIX%%/bin/safe_mysqld ]; then - %%PREFIX%%/bin/safe_mysqld --user=mysql > /dev/null & && echo -n ' mysqld' - fi - ;; - stop) - /usr/bin/killall mysqld > /dev/null 2>&1 && echo -n ' mysqld' - ;; - *) - echo "" - echo "Usage: `basename $0` { start | stop }" - echo "" - exit 64 - ;; -esac diff --git a/databases/mysql51-server/files/patch-Makefile.in b/databases/mysql51-server/files/patch-Makefile.in deleted file mode 100644 index 00190736f765..000000000000 --- a/databases/mysql51-server/files/patch-Makefile.in +++ /dev/null @@ -1,15 +0,0 @@ ---- Makefile.in.orig Sat Jan 1 17:59:38 2000 -+++ Makefile.in Mon Jan 3 17:19:23 2000 -@@ -144,7 +144,11 @@ - # These are built from source in the Docs directory - EXTRA_DIST = INSTALL-SOURCE-GENERIC README PUBLIC INSTALL-SOURCE MIRRORS - --SUBDIRS = include @docs_dirs@ @readline_dir@ client @sql_server_dirs@ scripts tests man @bench_dirs@ support-files -+.if defined(CLIENT_ONLY) -+SUBDIRS = include @readline_dir@ client tests man -+.else -+SUBDIRS = include @docs_dirs@ @sql_server_dirs@ scripts @bench_dirs@ support-files -+.endif - - - # Relink after clean diff --git a/databases/mysql51-server/files/patch-ab b/databases/mysql51-server/files/patch-ab deleted file mode 100644 index 1fd66bbe0cad..000000000000 --- a/databases/mysql51-server/files/patch-ab +++ /dev/null @@ -1,33 +0,0 @@ ---- scripts/mysql_install_db.sh.orig Wed Jan 12 21:06:30 2000 -+++ scripts/mysql_install_db.sh Sun Mar 26 23:20:27 2000 -@@ -15,8 +15,6 @@ - force=0 - IN_RPM=0 - --# Are we doing an rpm install? --if test "$1" = "-IN-RPM"; then IN_RPM=1; shift; fi - if test "$1" = "--force"; then force=1; shift; fi - - # Get mysqld/safe_mysqld options from /etc/my.cnf or ~/.my.cnf -@@ -60,8 +58,6 @@ - fi - fi - --# On IRIX hostname is in /usr/bsd so add this to the path --PATH=$PATH:/usr/bsd - hostname=`hostname` # Install this too in the user table - - # Check if hostname is valid -@@ -255,12 +251,6 @@ - END_OF_DATA - then - echo "" -- if test "$IN_RPM" -eq 0 -- then -- echo "To start mysqld at boot time you have to copy support-files/mysql.server" -- echo "to the right place for your system" -- echo -- fi - echo "PLEASE REMEMBER TO SET A PASSWORD FOR THE MySQL root USER !" - echo "This is done with:" - echo "$bindir/mysqladmin -u root password 'new-password'" diff --git a/databases/mysql51-server/files/patch-af b/databases/mysql51-server/files/patch-af deleted file mode 100644 index 2593da4d1c64..000000000000 --- a/databases/mysql51-server/files/patch-af +++ /dev/null @@ -1,73 +0,0 @@ ---- scripts/safe_mysqld.sh.orig Fri May 14 11:11:46 1999 -+++ scripts/safe_mysqld.sh Tue Jun 8 11:14:02 1999 -@@ -12,33 +12,9 @@ - - trap '' 1 2 3 15 # we shouldn't let anyone kill us - --# Check if we are starting this relative (for the binary release) --if test -d ./data/mysql -a -f ./share/mysql/english/errmsg.sys -a \ -- -x ./bin/mysqld --then -- MY_BASEDIR_VERSION=`pwd` # Where bin, share and data are -- DATADIR=$MY_BASEDIR_VERSION/data # Where the databases are -- ledir=$MY_BASEDIR_VERSION/bin # Where mysqld is --# Check if this is a 'moved install directory' --elif test -f ./var/mysql/db.frm -a -f ./share/mysql/english/errmsg.sys -a \ -- -x ./libexec/mysqld --then -- MY_BASEDIR_VERSION=`pwd` # Where libexec, share and var are -- DATADIR=$MY_BASEDIR_VERSION/var # Where the databases are -- ledir=$MY_BASEDIR_VERSION/libexec # Where mysqld is --else -- MY_BASEDIR_VERSION=@prefix@ -- DATADIR=@localstatedir@ -- ledir=@libexecdir@ -- if test ! -x $ledir/mysqld -- then -- echo "The file $ledir/mysqld doesn't exist or is not executable" -- echo "Please do a cd to the mysql installation directory and restart" -- echo "this script from there as follows:" -- echo "./bin/safe_mysqld". -- exit 1; -- fi --fi -+MY_BASEDIR_VERSION=@prefix@ -+DATADIR=@localstatedir@ -+ledir=@libexecdir@ - - pid_file=$DATADIR/`@HOSTNAME@`.pid - log=$DATADIR/`@HOSTNAME@`.log -@@ -114,33 +90,6 @@ - if test ! -f $pid_file # This is removed if normal shutdown - then - break; -- fi -- if @IS_LINUX@ -- then -- # Test if one process was hanging. -- # This is only a fix for Linux (running as base 3 mysqld processes) -- # but should work for the rest of the servers. -- # The only thing is ps x => redhat 5 gives warnings when using ps -x. -- # kill -9 is used or the process won't react on the kill. -- numofproces=`ps x | grep -v "grep" | grep -c $ledir/mysqld` -- echo -e "\nNumber of processes running now: $numofproces" | tee -a $err_log -- I=1 -- while test "$I" -le "$numofproces" -- do -- PROC=`ps x | grep $ledir/mysqld | grep -v "grep" | tail -1` -- for T in $PROC -- do -- break -- done -- # echo "TEST $I - $T **" -- if kill -9 $T -- then -- echo "mysqld process hanging, pid $T - killed" | tee -a $err_log -- else -- break -- fi -- I=`expr $I + 1` -- done - fi - echo "mysqld restarted on " `date` | tee -a $err_log - done diff --git a/databases/mysql51-server/files/patch-ap b/databases/mysql51-server/files/patch-ap deleted file mode 100644 index 097b449a181a..000000000000 --- a/databases/mysql51-server/files/patch-ap +++ /dev/null @@ -1,11 +0,0 @@ ---- strings/Makefile.in.orig Sat Jan 1 18:00:30 2000 -+++ strings/Makefile.in Mon Jan 3 17:21:19 2000 -@@ -145,7 +145,7 @@ - INCLUDES = @MT_INCLUDES@ -I$(srcdir)/../include -I../include - pkglib_LIBRARIES = libmystrings.a - #no assembler --@ASSEMBLER_x86_TRUE@ASRCS = strings-x86.s longlong2str-x86.s -+@ASSEMBLER_x86_TRUE@ASRCS = strings-x86.S longlong2str-x86.S - @ASSEMBLER_x86_FALSE@@ASSEMBLER_sparc_TRUE@ASRCS = bmove_upp-sparc.s strappend-sparc.s strend-sparc.s strinstr-sparc.s strmake-sparc.s strmov-sparc.s strnmov-sparc.s strstr-sparc.s strxmov-sparc.s - @ASSEMBLER_x86_FALSE@@ASSEMBLER_sparc_FALSE@ASRCS = - # These file MUST all be on the same line!! Otherwise automake diff --git a/databases/mysql51-server/files/patch-aq b/databases/mysql51-server/files/patch-aq deleted file mode 100644 index 573324175921..000000000000 --- a/databases/mysql51-server/files/patch-aq +++ /dev/null @@ -1,13 +0,0 @@ ---- sql/Makefile.in.orig Sat Jan 1 18:01:13 2000 -+++ sql/Makefile.in Wed Jan 5 20:28:17 2000 -@@ -317,6 +317,10 @@ - else :; fi - sql_yacc.hh: sql_yacc.cc - -+# gcc takes a lot of memory and cpu time if it compiles sql_yacc.cc with -O -+sql_yacc.o: sql_yacc.cc -+ $(CXXCOMPILE) -O0 -c $< -+ - - # This directory's subdirectories are mostly independent; you can cd - # into them and run `make' without going through this Makefile. diff --git a/databases/mysql51-server/files/patch-as b/databases/mysql51-server/files/patch-as deleted file mode 100644 index 903bc9950a28..000000000000 --- a/databases/mysql51-server/files/patch-as +++ /dev/null @@ -1,16 +0,0 @@ ---- sql/mysqld.cc.orig Sun Feb 13 02:40:18 2000 -+++ sql/mysqld.cc Mon Feb 21 21:24:51 2000 -@@ -63,8 +63,11 @@ - inline void reset_floating_point_exceptions() - { - /* Don't fall for overflow, underflow,divide-by-zero or loss of precision */ -- fpsetmask(~(FP_X_INV | FP_X_DNML | FP_X_OFL | FP_X_UFL | -- FP_X_DZ | FP_X_IMP)); -+#if defined(__i386__) -+ fpsetmask(~(FP_X_INV | FP_X_DNML | FP_X_OFL | FP_X_UFL | FP_X_DZ | FP_X_IMP)); -+#else -+ fpsetmask(~(FP_X_INV | FP_X_OFL | FP_X_UFL | FP_X_DZ | FP_X_IMP)); -+#endif - } - #else - #define reset_floating_point_exceptions() diff --git a/databases/mysql51-server/files/patch-configure b/databases/mysql51-server/files/patch-configure deleted file mode 100644 index 133bd4200860..000000000000 --- a/databases/mysql51-server/files/patch-configure +++ /dev/null @@ -1,132 +0,0 @@ ---- configure.orig Sun Feb 13 03:46:09 2000 -+++ configure Wed May 3 12:20:25 2000 -@@ -2743,7 +2743,7 @@ - ;; - esac - fi --HOSTNAME="$ac_cv_path_HOSTNAME" -+HOSTNAME="$ac_cv_path_HOSTNAME -s" - if test -n "$HOSTNAME"; then - echo "$ac_t""$HOSTNAME" 1>&6 - else -@@ -2871,30 +2871,7 @@ - echo $ac_n "checking "how to check if pid exists"""... $ac_c" 1>&6 - echo "configure:2873: checking "how to check if pid exists"" >&5 - PS=$ac_cv_path_PS --# Linux style --if $PS p $$ 2> /dev/null | grep $0 > /dev/null --then -- FIND_PROC="$PS p \$\$PID | grep mysqld > /dev/null" --# Solaris --elif $PS -p $$ 2> /dev/null | grep $0 > /dev/null --then -- FIND_PROC="$PS -p \$\$PID | grep mysqld > /dev/null" --# BSD style --elif $PS -uaxww 2> /dev/null | grep $0 > /dev/null --then -- FIND_PROC="$PS -uaxww | grep mysqld | grep \" \$\$PID \" > /dev/null" --# SysV style --elif $PS -ef 2> /dev/null | grep $0 > /dev/null --then -- FIND_PROC="$PS -ef | grep mysqld | grep \" \$\$PID \" > /dev/null" --# Do anybody use this? --elif $PS $$ 2> /dev/null | grep $0 > /dev/null --then -- FIND_PROC="$PS \$\$PID | grep mysqld > /dev/null" --else -- { echo "configure: error: Could not find the right ps switches. Which OS is this ?. See the Installation chapter in the Reference Manual." 1>&2; exit 1; } --fi -- -+FIND_PROC="$PS -uaxww | grep mysqld | grep \" \$\$PID \" > /dev/null" - echo "$ac_t"""$FIND_PROC"" 1>&6 - - # Check if a pid is valid -@@ -4646,8 +4623,6 @@ - #define $ac_tr_lib 1 - EOF - -- LIBS="-lc_r $LIBS" -- - else - echo "$ac_t""no" 1>&6 - fi -@@ -4881,28 +4856,6 @@ - fi - - --# Build optimized or debug version ? --# First check for gcc and g++ --if test "$ac_cv_prog_gcc" = "yes" --then -- DEBUG_CFLAGS="-g" -- DEBUG_OPTIMIZE_CC="-O" -- OPTIMIZE_CFLAGS="-O6" --else -- DEBUG_CFLAGS="-g" -- DEBUG_OPTIMIZE_CC="" -- OPTIMIZE_CFLAGS="-O" --fi --if test "$ac_cv_prog_cxx_g" = "yes" --then -- DEBUG_CXXFLAGS="-g" -- DEBUG_OPTIMIZE_CXX="-O" -- OPTIMIZE_CXXFLAGS="-O3" --else -- DEBUG_CXXFLAGS="-g" -- DEBUG_OPTIMIZE_CXX="" -- OPTIMIZE_CXXFLAGS="-O" --fi - # Check whether --with-debug or --without-debug was given. - if test "${with_debug+set}" = set; then - withval="$with_debug" -@@ -5615,10 +5568,6 @@ - ac_link='${CXX-g++} -o conftest${ac_exeext} $CXXFLAGS $CPPFLAGS $LDFLAGS conftest.$ac_ext $LIBS 1>&5' - cross_compiling=$ac_cv_prog_cxx_cross - --if test "$ac_cv_prog_gxx" = "yes" --then -- CXXFLAGS="$CXXFLAGS -Werror" --fi - mysql_cv_btype_last_arg_accept=none - cat > conftest.$ac_ext <<EOF - #line 5625 "configure" -@@ -7655,10 +7604,6 @@ - ac_link='${CXX-g++} -o conftest${ac_exeext} $CXXFLAGS $CPPFLAGS $LDFLAGS conftest.$ac_ext $LIBS 1>&5' - cross_compiling=$ac_cv_prog_cxx_cross - --if test "$ac_cv_prog_gxx" = "yes" --then -- CXXFLAGS="$CXXFLAGS -Werror" --fi - cat > conftest.$ac_ext <<EOF - #line 7664 "configure" - #include "confdefs.h" -@@ -7721,10 +7666,6 @@ - ac_link='${CXX-g++} -o conftest${ac_exeext} $CXXFLAGS $CPPFLAGS $LDFLAGS conftest.$ac_ext $LIBS 1>&5' - cross_compiling=$ac_cv_prog_cxx_cross - --if test "$ac_cv_prog_gxx" = "yes" --then -- CXXFLAGS="$CXXFLAGS -Werror" --fi - cat > conftest.$ac_ext <<EOF - #line 7730 "configure" - #include "confdefs.h" -@@ -8005,7 +7946,7 @@ - #include <pthread.h> - int main() { - pthread_attr_t thr_attr; --pthread_attr_setscope(&thr_attr,0); -+XXXpthread_attr_setscope(&thr_attr,0); - ; return 0; } - EOF - if { (eval echo configure:8012: \"$ac_link\") 1>&5; (eval $ac_link) 2>&5; } && test -s conftest${ac_exeext}; then -@@ -8210,7 +8151,7 @@ - echo "" - echo "Configuring MIT Pthreads" - # We will never install so installation paths are not needed. -- (cd mit-pthreads; sh ./configure) -+ (cd mit-pthreads; sh ./configure ${CONFIGURE_ARGS}) - echo "End of MIT Pthreads configuration" - echo "" - fi diff --git a/databases/mysql51-server/files/patch-include::Makefile.in b/databases/mysql51-server/files/patch-include::Makefile.in deleted file mode 100644 index ed7654838e66..000000000000 --- a/databases/mysql51-server/files/patch-include::Makefile.in +++ /dev/null @@ -1,14 +0,0 @@ ---- include/Makefile.in.orig Sat Jan 1 17:59:41 2000 -+++ include/Makefile.in Wed Jan 5 21:04:23 2000 -@@ -259,7 +259,11 @@ - - install-am: all-am - @$(MAKE) $(AM_MAKEFLAGS) install-exec-am install-data-am -+.if defined(CLIENT_ONLY) - install: install-am -+.else -+install: -+.endif - uninstall-am: uninstall-pkgincludeHEADERS - uninstall: uninstall-am - all-am: Makefile $(HEADERS) all-local diff --git a/databases/mysql51-server/pkg-comment b/databases/mysql51-server/pkg-comment deleted file mode 100644 index 2e29c8d2b15b..000000000000 --- a/databases/mysql51-server/pkg-comment +++ /dev/null @@ -1 +0,0 @@ -Multithreaded SQL database (server) diff --git a/databases/mysql51-server/pkg-comment.client b/databases/mysql51-server/pkg-comment.client deleted file mode 100644 index cd0c61571cfb..000000000000 --- a/databases/mysql51-server/pkg-comment.client +++ /dev/null @@ -1 +0,0 @@ -Multithreaded SQL database (client) diff --git a/databases/mysql51-server/pkg-descr b/databases/mysql51-server/pkg-descr deleted file mode 100644 index e21208271cdb..000000000000 --- a/databases/mysql51-server/pkg-descr +++ /dev/null @@ -1,10 +0,0 @@ -mySQL is a multithreaded (using MIT pthreads) SQL database with a command -syntax very similar to mSQL. For more information see http://www.tcx.se - -Note: This port does *not* build the perl5 module. To do so, refer to the -file ${WRKSRC}/INSTALL-SOURCE, in particular, the notes on FreeBSD systems. - -josh -josh@ican.net - -WWW: http://www.mysql.com/ diff --git a/databases/mysql51-server/pkg-install b/databases/mysql51-server/pkg-install deleted file mode 100644 index 3e925021ede1..000000000000 --- a/databases/mysql51-server/pkg-install +++ /dev/null @@ -1,41 +0,0 @@ -#!/bin/sh - -PATH=/bin:/usr/sbin -if [ -z "${DB_DIR}" ]; then - DB_DIR=/var/db/mysql -fi - -case $2 in -POST-INSTALL) - USER=mysql - GROUP=${USER} - UID=88 - GID=${UID} - - if pw group show "${GROUP}" 2>/dev/null; then - echo "You already have a group \"${GROUP}\", so I will use it." - else - if pw groupadd ${GROUP} -g ${GID}; then - echo "Added group \"${GROUP}\"." - else - echo "Adding group \"${GROUP}\" failed..." - exit 1 - fi - fi - - if pw user show "${USER}" 2>/dev/null; then - echo "You already have a user \"${USER}\", so I will use it." - else - if pw useradd ${USER} -u ${UID} -g ${GROUP} -h - \ - -d ${DB_DIR} -s /sbin/nologin -c "MySQL Daemon" - then - echo "Added user \"${USER}\"." - else - echo "Adding user \"${USER}\" failed..." - exit 1 - fi - fi - - chown -R ${USER}.${GROUP} ${DB_DIR} - ;; -esac diff --git a/databases/mysql51-server/pkg-plist b/databases/mysql51-server/pkg-plist deleted file mode 100644 index 7c89ce913312..000000000000 --- a/databases/mysql51-server/pkg-plist +++ /dev/null @@ -1,148 +0,0 @@ -bin/comp_err -bin/isamchk -bin/isamlog -bin/msql2mysql -bin/mysql_find_rows -bin/mysql_fix_privilege_tables -bin/mysql_install_db -bin/mysql_setpermission -bin/mysql_zap -bin/mysqlaccess -bin/mysqlbug -bin/mysqlhotcopy -bin/perror -bin/print_defaults -bin/replace -bin/resolveip -bin/safe_mysqld -etc/rc.d/mysql-server.sh -@unexec install-info --delete %D/info/mysql.info %D/info/dir -info/mysql.info -@exec install-info %D/info/mysql.info %D/info/dir -lib/mysql/libdbug.a -lib/mysql/libheap.a -lib/mysql/libmerge.a -lib/mysql/libmystrings.a -lib/mysql/libmysys.a -lib/mysql/libnisam.a -libexec/mysqld -share/doc/mysql/Img/australia.gif -share/doc/mysql/Img/austria.gif -share/doc/mysql/Img/brazil.gif -share/doc/mysql/Img/bulgaria.gif -share/doc/mysql/Img/canada.gif -share/doc/mysql/Img/chile.gif -share/doc/mysql/Img/china.gif -share/doc/mysql/Img/croatia.gif -share/doc/mysql/Img/czech-republic.gif -share/doc/mysql/Img/denmark.gif -share/doc/mysql/Img/estonia.gif -share/doc/mysql/Img/finland.gif -share/doc/mysql/Img/france.gif -share/doc/mysql/Img/germany.gif -share/doc/mysql/Img/great-britain.gif -share/doc/mysql/Img/greece.gif -share/doc/mysql/Img/html-fs.gif -share/doc/mysql/Img/hungary.gif -share/doc/mysql/Img/iceland.gif -share/doc/mysql/Img/ireland.gif -share/doc/mysql/Img/island.gif -share/doc/mysql/Img/israel.gif -share/doc/mysql/Img/italy.gif -share/doc/mysql/Img/japan.gif -share/doc/mysql/Img/kroatia.gif -share/doc/mysql/Img/mysql-logo.gif -share/doc/mysql/Img/mysql5.gif -share/doc/mysql/Img/netherlands.gif -share/doc/mysql/Img/poland.gif -share/doc/mysql/Img/portugal.gif -share/doc/mysql/Img/romania.gif -share/doc/mysql/Img/russia.gif -share/doc/mysql/Img/singapore.gif -share/doc/mysql/Img/south-africa.gif -share/doc/mysql/Img/south-africa1.gif -share/doc/mysql/Img/south-korea.gif -share/doc/mysql/Img/spain.gif -share/doc/mysql/Img/sweden.gif -share/doc/mysql/Img/switzerland.gif -share/doc/mysql/Img/taiwan.gif -share/doc/mysql/Img/tcxlogo3.gif -share/doc/mysql/Img/ukraine.gif -share/doc/mysql/Img/usa.gif -share/doc/mysql/include.texi -share/doc/mysql/manual.html -share/doc/mysql/manual.ps -share/doc/mysql/manual.texi -share/doc/mysql/manual.txt -share/doc/mysql/manual_toc.html -share/mysql/binary-configure -share/mysql/czech/errmsg.sys -share/mysql/czech/errmsg.txt -share/mysql/danish/errmsg.sys -share/mysql/danish/errmsg.txt -share/mysql/dutch/errmsg.sys -share/mysql/dutch/errmsg.txt -share/mysql/english/errmsg.sys -share/mysql/english/errmsg.txt -share/mysql/estonia/errmsg.sys -share/mysql/estonia/errmsg.txt -share/mysql/french/errmsg.sys -share/mysql/french/errmsg.txt -share/mysql/german/errmsg.sys -share/mysql/german/errmsg.txt -share/mysql/greek/errmsg.sys -share/mysql/greek/errmsg.txt -share/mysql/hungarian/errmsg.sys -share/mysql/hungarian/errmsg.txt -share/mysql/italian/errmsg.sys -share/mysql/italian/errmsg.txt -share/mysql/japanese/errmsg.sys -share/mysql/japanese/errmsg.txt -share/mysql/korean/errmsg.sys -share/mysql/korean/errmsg.txt -share/mysql/make_binary_distribution -share/mysql/my-example.cnf -share/mysql/mysql-3.22.32.spec -share/mysql/mysql-log-rotate -share/mysql/mysql.server -share/mysql/norwegian-ny/errmsg.sys -share/mysql/norwegian-ny/errmsg.txt -share/mysql/norwegian/errmsg.sys -share/mysql/norwegian/errmsg.txt -share/mysql/polish/errmsg.sys -share/mysql/polish/errmsg.txt -share/mysql/portuguese/errmsg.sys -share/mysql/portuguese/errmsg.txt -share/mysql/russian/errmsg.sys -share/mysql/russian/errmsg.txt -share/mysql/slovak/errmsg.sys -share/mysql/slovak/errmsg.txt -share/mysql/spanish/errmsg.sys -share/mysql/spanish/errmsg.txt -share/mysql/swedish/errmsg.sys -share/mysql/swedish/errmsg.txt -@dirrm share/doc/mysql/Img -@dirrm share/doc/mysql -@dirrm share/mysql/czech -@dirrm share/mysql/danish -@dirrm share/mysql/dutch -@dirrm share/mysql/english -@dirrm share/mysql/estonia -@dirrm share/mysql/french -@dirrm share/mysql/german -@dirrm share/mysql/greek -@dirrm share/mysql/hungarian -@dirrm share/mysql/italian -@dirrm share/mysql/japanese -@dirrm share/mysql/korean -@dirrm share/mysql/norwegian -@dirrm share/mysql/norwegian-ny -@dirrm share/mysql/polish -@dirrm share/mysql/portuguese -@dirrm share/mysql/russian -@dirrm share/mysql/slovak -@dirrm share/mysql/spanish -@dirrm share/mysql/swedish -@dirrm share/mysql -@exec %D/bin/mysql_install_db -@exec /usr/bin/killall mysqld diff --git a/databases/mysql51-server/pkg-plist.client b/databases/mysql51-server/pkg-plist.client deleted file mode 100644 index 9eb893b7dd12..000000000000 --- a/databases/mysql51-server/pkg-plist.client +++ /dev/null @@ -1,32 +0,0 @@ -bin/mysql -bin/mysqladmin -bin/mysqldump -bin/mysqlimport -bin/mysqlshow -etc/rc.d/mysql-client.sh -include/mysql/dbug.h -include/mysql/errmsg.h -include/mysql/m_ctype.h -include/mysql/m_string.h -include/mysql/my_config.h -include/mysql/my_global.h -include/mysql/my_list.h -include/mysql/my_net.h -include/mysql/my_pthread.h -include/mysql/my_sys.h -include/mysql/mysql.h -include/mysql/mysql_com.h -include/mysql/mysql_version.h -include/mysql/mysqld_error.h -include/mysql/raid.h -include/mysql/sslopt-case.h -include/mysql/sslopt-longopts.h -include/mysql/sslopt-usage.h -include/mysql/sslopt-vars.h -lib/mysql/libmysqlclient.a -lib/mysql/libmysqlclient.so -lib/mysql/libmysqlclient.so.6 -@dirrm include/mysql -@dirrm lib/mysql -@exec /usr/bin/env OBJFORMAT=%%PORTOBJFORMAT%% /sbin/ldconfig -m %D/lib/mysql -@unexec /usr/bin/env OBJFORMAT=%%PORTOBJFORMAT%% /sbin/ldconfig -R diff --git a/databases/mysql54-client/Makefile b/databases/mysql54-client/Makefile deleted file mode 100644 index 8284511ecb0e..000000000000 --- a/databases/mysql54-client/Makefile +++ /dev/null @@ -1,17 +0,0 @@ -# ports collection makefile for: MySQL-client -# Date created: Thu Jun 24 00:12:22 CEST 1999 -# Whom: Dirk Froemberg <dirk@FreeBSD.org> -# -# $FreeBSD$ -# - -PORTNAME= ${MASTERPORTNAME:S/-server/-client/g} - -MASTERDIR= ${.CURDIR}/../mysql322-server -COMMENT= ${PKGDIR}/COMMENT.client -PKGINSTALL= mustnotexist -PLIST= ${PKGDIR}/PLIST.client - -CLIENT_ONLY= yes - -.include "${MASTERDIR}/Makefile" diff --git a/databases/mysql54-server/Makefile b/databases/mysql54-server/Makefile deleted file mode 100644 index 9a6c2a590256..000000000000 --- a/databases/mysql54-server/Makefile +++ /dev/null @@ -1,154 +0,0 @@ -# ports collection makefile for: MySQL-server -# Date created: 26 Jan 1998 -# Whom: Josh Tiefenbach <josh@ican.net> -# -# $FreeBSD$ -# - -PORTNAME?= ${MASTERPORTNAME} -PORTVERSION= 3.22.32 -CATEGORIES= databases -MASTER_SITES= http://www.fh-wolfenbuettel.de/ftp/pub/database/mysql/Downloads/MySQL-3.22/ \ - ftp://ftp.digex.net/pub/packages/database/mysql/Downloads/MySQL-3.22/ \ - ftp://ftp.plig.net/pub/mysql/Downloads/MySQL-3.22/ \ - ftp://ftp.sunet.se/pub/unix/databases/relational/mysql/Downloads/MySQL-3.22/ -DISTNAME= mysql-${PORTVERSION} - -MAINTAINER= dirk@FreeBSD.org - -Y2K= http://www.tcx.se/Manual_chapter/manual_Introduction.html#Year_2000_compliance - -SLAVEDIRS= databases/mysql322-client -MASTERPORTNAME= mysql-server -DB_DIR?= /var/db/mysql -USE_PERL5= yes -USE_LIBTOOL= yes -CONFIGURE_ARGS= --localstatedir=${DB_DIR} \ - --without-perl \ - --without-debug \ - --without-readline \ - --without-bench -.if ${MACHINE_ARCH} == "i386" -CONFIGURE_ARGS+=--enable-assembler -.endif -CONFIGURE_ENV+= PERL=${PERL} \ - PERL5=${PERL} \ - INSTALL_SCRIPT="${INSTALL_SCRIPT}" \ - CONFIGURE_ARGS="${CONFIGURE_ARGS}" - -# MySQL-Server part -.if !defined(CLIENT_ONLY) -RUN_DEPENDS= mysql:${PORTSDIR}/databases/mysql322-client - -.include <bsd.port.pre.mk> - -.if ${OSVERSION} >= 320000 -.if defined(MIT_PTHREADS) -CONFIGURE_ARGS+= --with-mit-threads=yes - -pre-fetch: - @${ECHO} - @${ECHO} "Using supplied mit-pthreads." - @${ECHO} -.else -CONFIGURE_ARGS+= --with-mit-threads=no - -pre-fetch: - @${ECHO} - @${ECHO} "Using native FreeBSD threads (libc_r)." - @${ECHO} - @${ECHO} "You may set MIT_PTHREADS (make MIT_PTHREADS=yes)" - @${ECHO} "to compile mysql with the supplied mit-pthreads." - @${ECHO} "(You don't want to set this unless you have a good reason)." - @${ECHO} -.endif -.elif ${OSVERSION} >= 300000 -.if defined(NATIVE_THREADS) -CONFIGURE_ARGS+= --with-mit-threads=no - -pre-fetch: - @${ECHO} - @${ECHO} "Using native FreeBSD threads (libc_r)." - @${ECHO} -.else -CONFIGURE_ARGS+= --with-mit-threads=yes - -pre-fetch: - @${ECHO} - @${ECHO} "Using supplied mit-pthreads." - @${ECHO} - @${ECHO} "You may set NATIVE_THREADS (make NATIVE_THREADS=yes)" - @${ECHO} "to compile mysql with the native FreeBSD threads (libc_r)." - @${ECHO} "Warning: There are some bugs in libc_r which prevent" - @${ECHO} " 'mysqladmin shutdown' from working properly and" - @${ECHO} " killing mysqld might not work." - @${ECHO} -.endif -.else -CONFIGURE_ARGS+= --with-mit-threads=yes - -pre-fetch: - @${ECHO} - @${ECHO} "Using supplied mit-pthreads." - @${ECHO} -.endif - -post-patch: - ${MV} ${WRKSRC}/strings/strings-x86.s ${WRKSRC}/strings/strings-x86.S - ${MV} ${WRKSRC}/strings/longlong2str-x86.s ${WRKSRC}/strings/longlong2str-x86.S - -pre-install: -.if !defined(PACKAGE_BUILDING) && exists(${DB_DIR}) && !defined(OVERWRITE_DB) - @${ECHO} "You appear to already have a mysql database directory in ${DB_DIR}." - @${ECHO} "" - @${ECHO} "In order to preserve your existing data, you should:" - @${ECHO} " - dump all your databases" - @${ECHO} " - kill mysql if it is running" - @${ECHO} " - delete the ${DB_DIR} directory" - @${ECHO} " - run 'make install'" - @${ECHO} " - start up mysql" - @${ECHO} " - re-create all of your database" - @${ECHO} " - re-load your data" - @${ECHO} "" - @${ECHO} "If you understand the consequences of this upgrade, please re-build this" - @${ECHO} "port with the environment variable OVERWRITE_DB defined." - @${FALSE} -.endif - -post-install: -.if !defined(PACKAGE_BUILDING) - ${PREFIX}/bin/mysql_install_db - @${SETENV} DB_DIR=${DB_DIR} ${SH} ${PKGINSTALL} ${PKGNAME} POST-INSTALL -.endif - @${SED} "s|%%PREFIX%%|${PREFIX}|g" < ${FILESDIR}/mysql-server.sh > ${PREFIX}/etc/rc.d/mysql-server.sh - @${CHMOD} 750 ${PREFIX}/etc/rc.d/mysql-server.sh - -.if !defined(NOPORTDOCS) - ${MKDIR} ${PREFIX}/share/doc/mysql/Img -.for doc in manual.html manual.ps manual_toc.html manual.txt manual.texi include.texi - ${INSTALL_DATA} ${WRKSRC}/Docs/${doc} ${PREFIX}/share/doc/mysql -.endfor - ${INSTALL_DATA} ${WRKSRC}/Docs/Img/*.gif ${PREFIX}/share/doc/mysql/Img - ${INSTALL_DATA} ${WRKSRC}/Docs/mysql.info ${PREFIX}/info - @install-info ${PREFIX}/info/mysql.info ${PREFIX}/info/dir -.endif - -.include <bsd.port.post.mk> - -# MySQL-Client part -.else -MAN1= mysql.1 - -CONFIGURE_ARGS+=--without-server -MAKE_ENV= CLIENT_ONLY="${CLIENT_ONLY}" - -post-install: - @${ECHO} "#!/bin/sh" > ${PREFIX}/etc/rc.d/mysql-client.sh - @${ECHO} "" >> ${PREFIX}/etc/rc.d/mysql-client.sh - @${ECHO} "${LDCONFIG} -m ${PREFIX}/lib/mysql" >> ${PREFIX}/etc/rc.d/mysql-client.sh - @${CHMOD} 750 ${PREFIX}/etc/rc.d/mysql-client.sh - - ${SETENV} OBJFORMAT=${PORTOBJFORMAT} ${LDCONFIG} -m ${PREFIX}/lib/mysql - -.include <bsd.port.mk> -.endif diff --git a/databases/mysql54-server/distinfo b/databases/mysql54-server/distinfo deleted file mode 100644 index edfe7eb2ff4a..000000000000 --- a/databases/mysql54-server/distinfo +++ /dev/null @@ -1 +0,0 @@ -MD5 (mysql-3.22.32.tar.gz) = 244e08d9a1f4b2ad799aa40ad3cc897a diff --git a/databases/mysql54-server/files/mysql-server.sh b/databases/mysql54-server/files/mysql-server.sh deleted file mode 100644 index 0ff5374c48f7..000000000000 --- a/databases/mysql54-server/files/mysql-server.sh +++ /dev/null @@ -1,18 +0,0 @@ -#!/bin/sh - -case "$1" in - start) - if [ -x %%PREFIX%%/bin/safe_mysqld ]; then - %%PREFIX%%/bin/safe_mysqld --user=mysql > /dev/null & && echo -n ' mysqld' - fi - ;; - stop) - /usr/bin/killall mysqld > /dev/null 2>&1 && echo -n ' mysqld' - ;; - *) - echo "" - echo "Usage: `basename $0` { start | stop }" - echo "" - exit 64 - ;; -esac diff --git a/databases/mysql54-server/files/patch-Makefile.in b/databases/mysql54-server/files/patch-Makefile.in deleted file mode 100644 index 00190736f765..000000000000 --- a/databases/mysql54-server/files/patch-Makefile.in +++ /dev/null @@ -1,15 +0,0 @@ ---- Makefile.in.orig Sat Jan 1 17:59:38 2000 -+++ Makefile.in Mon Jan 3 17:19:23 2000 -@@ -144,7 +144,11 @@ - # These are built from source in the Docs directory - EXTRA_DIST = INSTALL-SOURCE-GENERIC README PUBLIC INSTALL-SOURCE MIRRORS - --SUBDIRS = include @docs_dirs@ @readline_dir@ client @sql_server_dirs@ scripts tests man @bench_dirs@ support-files -+.if defined(CLIENT_ONLY) -+SUBDIRS = include @readline_dir@ client tests man -+.else -+SUBDIRS = include @docs_dirs@ @sql_server_dirs@ scripts @bench_dirs@ support-files -+.endif - - - # Relink after clean diff --git a/databases/mysql54-server/files/patch-ab b/databases/mysql54-server/files/patch-ab deleted file mode 100644 index 1fd66bbe0cad..000000000000 --- a/databases/mysql54-server/files/patch-ab +++ /dev/null @@ -1,33 +0,0 @@ ---- scripts/mysql_install_db.sh.orig Wed Jan 12 21:06:30 2000 -+++ scripts/mysql_install_db.sh Sun Mar 26 23:20:27 2000 -@@ -15,8 +15,6 @@ - force=0 - IN_RPM=0 - --# Are we doing an rpm install? --if test "$1" = "-IN-RPM"; then IN_RPM=1; shift; fi - if test "$1" = "--force"; then force=1; shift; fi - - # Get mysqld/safe_mysqld options from /etc/my.cnf or ~/.my.cnf -@@ -60,8 +58,6 @@ - fi - fi - --# On IRIX hostname is in /usr/bsd so add this to the path --PATH=$PATH:/usr/bsd - hostname=`hostname` # Install this too in the user table - - # Check if hostname is valid -@@ -255,12 +251,6 @@ - END_OF_DATA - then - echo "" -- if test "$IN_RPM" -eq 0 -- then -- echo "To start mysqld at boot time you have to copy support-files/mysql.server" -- echo "to the right place for your system" -- echo -- fi - echo "PLEASE REMEMBER TO SET A PASSWORD FOR THE MySQL root USER !" - echo "This is done with:" - echo "$bindir/mysqladmin -u root password 'new-password'" diff --git a/databases/mysql54-server/files/patch-af b/databases/mysql54-server/files/patch-af deleted file mode 100644 index 2593da4d1c64..000000000000 --- a/databases/mysql54-server/files/patch-af +++ /dev/null @@ -1,73 +0,0 @@ ---- scripts/safe_mysqld.sh.orig Fri May 14 11:11:46 1999 -+++ scripts/safe_mysqld.sh Tue Jun 8 11:14:02 1999 -@@ -12,33 +12,9 @@ - - trap '' 1 2 3 15 # we shouldn't let anyone kill us - --# Check if we are starting this relative (for the binary release) --if test -d ./data/mysql -a -f ./share/mysql/english/errmsg.sys -a \ -- -x ./bin/mysqld --then -- MY_BASEDIR_VERSION=`pwd` # Where bin, share and data are -- DATADIR=$MY_BASEDIR_VERSION/data # Where the databases are -- ledir=$MY_BASEDIR_VERSION/bin # Where mysqld is --# Check if this is a 'moved install directory' --elif test -f ./var/mysql/db.frm -a -f ./share/mysql/english/errmsg.sys -a \ -- -x ./libexec/mysqld --then -- MY_BASEDIR_VERSION=`pwd` # Where libexec, share and var are -- DATADIR=$MY_BASEDIR_VERSION/var # Where the databases are -- ledir=$MY_BASEDIR_VERSION/libexec # Where mysqld is --else -- MY_BASEDIR_VERSION=@prefix@ -- DATADIR=@localstatedir@ -- ledir=@libexecdir@ -- if test ! -x $ledir/mysqld -- then -- echo "The file $ledir/mysqld doesn't exist or is not executable" -- echo "Please do a cd to the mysql installation directory and restart" -- echo "this script from there as follows:" -- echo "./bin/safe_mysqld". -- exit 1; -- fi --fi -+MY_BASEDIR_VERSION=@prefix@ -+DATADIR=@localstatedir@ -+ledir=@libexecdir@ - - pid_file=$DATADIR/`@HOSTNAME@`.pid - log=$DATADIR/`@HOSTNAME@`.log -@@ -114,33 +90,6 @@ - if test ! -f $pid_file # This is removed if normal shutdown - then - break; -- fi -- if @IS_LINUX@ -- then -- # Test if one process was hanging. -- # This is only a fix for Linux (running as base 3 mysqld processes) -- # but should work for the rest of the servers. -- # The only thing is ps x => redhat 5 gives warnings when using ps -x. -- # kill -9 is used or the process won't react on the kill. -- numofproces=`ps x | grep -v "grep" | grep -c $ledir/mysqld` -- echo -e "\nNumber of processes running now: $numofproces" | tee -a $err_log -- I=1 -- while test "$I" -le "$numofproces" -- do -- PROC=`ps x | grep $ledir/mysqld | grep -v "grep" | tail -1` -- for T in $PROC -- do -- break -- done -- # echo "TEST $I - $T **" -- if kill -9 $T -- then -- echo "mysqld process hanging, pid $T - killed" | tee -a $err_log -- else -- break -- fi -- I=`expr $I + 1` -- done - fi - echo "mysqld restarted on " `date` | tee -a $err_log - done diff --git a/databases/mysql54-server/files/patch-ap b/databases/mysql54-server/files/patch-ap deleted file mode 100644 index 097b449a181a..000000000000 --- a/databases/mysql54-server/files/patch-ap +++ /dev/null @@ -1,11 +0,0 @@ ---- strings/Makefile.in.orig Sat Jan 1 18:00:30 2000 -+++ strings/Makefile.in Mon Jan 3 17:21:19 2000 -@@ -145,7 +145,7 @@ - INCLUDES = @MT_INCLUDES@ -I$(srcdir)/../include -I../include - pkglib_LIBRARIES = libmystrings.a - #no assembler --@ASSEMBLER_x86_TRUE@ASRCS = strings-x86.s longlong2str-x86.s -+@ASSEMBLER_x86_TRUE@ASRCS = strings-x86.S longlong2str-x86.S - @ASSEMBLER_x86_FALSE@@ASSEMBLER_sparc_TRUE@ASRCS = bmove_upp-sparc.s strappend-sparc.s strend-sparc.s strinstr-sparc.s strmake-sparc.s strmov-sparc.s strnmov-sparc.s strstr-sparc.s strxmov-sparc.s - @ASSEMBLER_x86_FALSE@@ASSEMBLER_sparc_FALSE@ASRCS = - # These file MUST all be on the same line!! Otherwise automake diff --git a/databases/mysql54-server/files/patch-aq b/databases/mysql54-server/files/patch-aq deleted file mode 100644 index 573324175921..000000000000 --- a/databases/mysql54-server/files/patch-aq +++ /dev/null @@ -1,13 +0,0 @@ ---- sql/Makefile.in.orig Sat Jan 1 18:01:13 2000 -+++ sql/Makefile.in Wed Jan 5 20:28:17 2000 -@@ -317,6 +317,10 @@ - else :; fi - sql_yacc.hh: sql_yacc.cc - -+# gcc takes a lot of memory and cpu time if it compiles sql_yacc.cc with -O -+sql_yacc.o: sql_yacc.cc -+ $(CXXCOMPILE) -O0 -c $< -+ - - # This directory's subdirectories are mostly independent; you can cd - # into them and run `make' without going through this Makefile. diff --git a/databases/mysql54-server/files/patch-as b/databases/mysql54-server/files/patch-as deleted file mode 100644 index 903bc9950a28..000000000000 --- a/databases/mysql54-server/files/patch-as +++ /dev/null @@ -1,16 +0,0 @@ ---- sql/mysqld.cc.orig Sun Feb 13 02:40:18 2000 -+++ sql/mysqld.cc Mon Feb 21 21:24:51 2000 -@@ -63,8 +63,11 @@ - inline void reset_floating_point_exceptions() - { - /* Don't fall for overflow, underflow,divide-by-zero or loss of precision */ -- fpsetmask(~(FP_X_INV | FP_X_DNML | FP_X_OFL | FP_X_UFL | -- FP_X_DZ | FP_X_IMP)); -+#if defined(__i386__) -+ fpsetmask(~(FP_X_INV | FP_X_DNML | FP_X_OFL | FP_X_UFL | FP_X_DZ | FP_X_IMP)); -+#else -+ fpsetmask(~(FP_X_INV | FP_X_OFL | FP_X_UFL | FP_X_DZ | FP_X_IMP)); -+#endif - } - #else - #define reset_floating_point_exceptions() diff --git a/databases/mysql54-server/files/patch-configure b/databases/mysql54-server/files/patch-configure deleted file mode 100644 index 133bd4200860..000000000000 --- a/databases/mysql54-server/files/patch-configure +++ /dev/null @@ -1,132 +0,0 @@ ---- configure.orig Sun Feb 13 03:46:09 2000 -+++ configure Wed May 3 12:20:25 2000 -@@ -2743,7 +2743,7 @@ - ;; - esac - fi --HOSTNAME="$ac_cv_path_HOSTNAME" -+HOSTNAME="$ac_cv_path_HOSTNAME -s" - if test -n "$HOSTNAME"; then - echo "$ac_t""$HOSTNAME" 1>&6 - else -@@ -2871,30 +2871,7 @@ - echo $ac_n "checking "how to check if pid exists"""... $ac_c" 1>&6 - echo "configure:2873: checking "how to check if pid exists"" >&5 - PS=$ac_cv_path_PS --# Linux style --if $PS p $$ 2> /dev/null | grep $0 > /dev/null --then -- FIND_PROC="$PS p \$\$PID | grep mysqld > /dev/null" --# Solaris --elif $PS -p $$ 2> /dev/null | grep $0 > /dev/null --then -- FIND_PROC="$PS -p \$\$PID | grep mysqld > /dev/null" --# BSD style --elif $PS -uaxww 2> /dev/null | grep $0 > /dev/null --then -- FIND_PROC="$PS -uaxww | grep mysqld | grep \" \$\$PID \" > /dev/null" --# SysV style --elif $PS -ef 2> /dev/null | grep $0 > /dev/null --then -- FIND_PROC="$PS -ef | grep mysqld | grep \" \$\$PID \" > /dev/null" --# Do anybody use this? --elif $PS $$ 2> /dev/null | grep $0 > /dev/null --then -- FIND_PROC="$PS \$\$PID | grep mysqld > /dev/null" --else -- { echo "configure: error: Could not find the right ps switches. Which OS is this ?. See the Installation chapter in the Reference Manual." 1>&2; exit 1; } --fi -- -+FIND_PROC="$PS -uaxww | grep mysqld | grep \" \$\$PID \" > /dev/null" - echo "$ac_t"""$FIND_PROC"" 1>&6 - - # Check if a pid is valid -@@ -4646,8 +4623,6 @@ - #define $ac_tr_lib 1 - EOF - -- LIBS="-lc_r $LIBS" -- - else - echo "$ac_t""no" 1>&6 - fi -@@ -4881,28 +4856,6 @@ - fi - - --# Build optimized or debug version ? --# First check for gcc and g++ --if test "$ac_cv_prog_gcc" = "yes" --then -- DEBUG_CFLAGS="-g" -- DEBUG_OPTIMIZE_CC="-O" -- OPTIMIZE_CFLAGS="-O6" --else -- DEBUG_CFLAGS="-g" -- DEBUG_OPTIMIZE_CC="" -- OPTIMIZE_CFLAGS="-O" --fi --if test "$ac_cv_prog_cxx_g" = "yes" --then -- DEBUG_CXXFLAGS="-g" -- DEBUG_OPTIMIZE_CXX="-O" -- OPTIMIZE_CXXFLAGS="-O3" --else -- DEBUG_CXXFLAGS="-g" -- DEBUG_OPTIMIZE_CXX="" -- OPTIMIZE_CXXFLAGS="-O" --fi - # Check whether --with-debug or --without-debug was given. - if test "${with_debug+set}" = set; then - withval="$with_debug" -@@ -5615,10 +5568,6 @@ - ac_link='${CXX-g++} -o conftest${ac_exeext} $CXXFLAGS $CPPFLAGS $LDFLAGS conftest.$ac_ext $LIBS 1>&5' - cross_compiling=$ac_cv_prog_cxx_cross - --if test "$ac_cv_prog_gxx" = "yes" --then -- CXXFLAGS="$CXXFLAGS -Werror" --fi - mysql_cv_btype_last_arg_accept=none - cat > conftest.$ac_ext <<EOF - #line 5625 "configure" -@@ -7655,10 +7604,6 @@ - ac_link='${CXX-g++} -o conftest${ac_exeext} $CXXFLAGS $CPPFLAGS $LDFLAGS conftest.$ac_ext $LIBS 1>&5' - cross_compiling=$ac_cv_prog_cxx_cross - --if test "$ac_cv_prog_gxx" = "yes" --then -- CXXFLAGS="$CXXFLAGS -Werror" --fi - cat > conftest.$ac_ext <<EOF - #line 7664 "configure" - #include "confdefs.h" -@@ -7721,10 +7666,6 @@ - ac_link='${CXX-g++} -o conftest${ac_exeext} $CXXFLAGS $CPPFLAGS $LDFLAGS conftest.$ac_ext $LIBS 1>&5' - cross_compiling=$ac_cv_prog_cxx_cross - --if test "$ac_cv_prog_gxx" = "yes" --then -- CXXFLAGS="$CXXFLAGS -Werror" --fi - cat > conftest.$ac_ext <<EOF - #line 7730 "configure" - #include "confdefs.h" -@@ -8005,7 +7946,7 @@ - #include <pthread.h> - int main() { - pthread_attr_t thr_attr; --pthread_attr_setscope(&thr_attr,0); -+XXXpthread_attr_setscope(&thr_attr,0); - ; return 0; } - EOF - if { (eval echo configure:8012: \"$ac_link\") 1>&5; (eval $ac_link) 2>&5; } && test -s conftest${ac_exeext}; then -@@ -8210,7 +8151,7 @@ - echo "" - echo "Configuring MIT Pthreads" - # We will never install so installation paths are not needed. -- (cd mit-pthreads; sh ./configure) -+ (cd mit-pthreads; sh ./configure ${CONFIGURE_ARGS}) - echo "End of MIT Pthreads configuration" - echo "" - fi diff --git a/databases/mysql54-server/files/patch-include::Makefile.in b/databases/mysql54-server/files/patch-include::Makefile.in deleted file mode 100644 index ed7654838e66..000000000000 --- a/databases/mysql54-server/files/patch-include::Makefile.in +++ /dev/null @@ -1,14 +0,0 @@ ---- include/Makefile.in.orig Sat Jan 1 17:59:41 2000 -+++ include/Makefile.in Wed Jan 5 21:04:23 2000 -@@ -259,7 +259,11 @@ - - install-am: all-am - @$(MAKE) $(AM_MAKEFLAGS) install-exec-am install-data-am -+.if defined(CLIENT_ONLY) - install: install-am -+.else -+install: -+.endif - uninstall-am: uninstall-pkgincludeHEADERS - uninstall: uninstall-am - all-am: Makefile $(HEADERS) all-local diff --git a/databases/mysql54-server/pkg-comment b/databases/mysql54-server/pkg-comment deleted file mode 100644 index 2e29c8d2b15b..000000000000 --- a/databases/mysql54-server/pkg-comment +++ /dev/null @@ -1 +0,0 @@ -Multithreaded SQL database (server) diff --git a/databases/mysql54-server/pkg-comment.client b/databases/mysql54-server/pkg-comment.client deleted file mode 100644 index cd0c61571cfb..000000000000 --- a/databases/mysql54-server/pkg-comment.client +++ /dev/null @@ -1 +0,0 @@ -Multithreaded SQL database (client) diff --git a/databases/mysql54-server/pkg-descr b/databases/mysql54-server/pkg-descr deleted file mode 100644 index e21208271cdb..000000000000 --- a/databases/mysql54-server/pkg-descr +++ /dev/null @@ -1,10 +0,0 @@ -mySQL is a multithreaded (using MIT pthreads) SQL database with a command -syntax very similar to mSQL. For more information see http://www.tcx.se - -Note: This port does *not* build the perl5 module. To do so, refer to the -file ${WRKSRC}/INSTALL-SOURCE, in particular, the notes on FreeBSD systems. - -josh -josh@ican.net - -WWW: http://www.mysql.com/ diff --git a/databases/mysql54-server/pkg-install b/databases/mysql54-server/pkg-install deleted file mode 100644 index 3e925021ede1..000000000000 --- a/databases/mysql54-server/pkg-install +++ /dev/null @@ -1,41 +0,0 @@ -#!/bin/sh - -PATH=/bin:/usr/sbin -if [ -z "${DB_DIR}" ]; then - DB_DIR=/var/db/mysql -fi - -case $2 in -POST-INSTALL) - USER=mysql - GROUP=${USER} - UID=88 - GID=${UID} - - if pw group show "${GROUP}" 2>/dev/null; then - echo "You already have a group \"${GROUP}\", so I will use it." - else - if pw groupadd ${GROUP} -g ${GID}; then - echo "Added group \"${GROUP}\"." - else - echo "Adding group \"${GROUP}\" failed..." - exit 1 - fi - fi - - if pw user show "${USER}" 2>/dev/null; then - echo "You already have a user \"${USER}\", so I will use it." - else - if pw useradd ${USER} -u ${UID} -g ${GROUP} -h - \ - -d ${DB_DIR} -s /sbin/nologin -c "MySQL Daemon" - then - echo "Added user \"${USER}\"." - else - echo "Adding user \"${USER}\" failed..." - exit 1 - fi - fi - - chown -R ${USER}.${GROUP} ${DB_DIR} - ;; -esac diff --git a/databases/mysql54-server/pkg-plist b/databases/mysql54-server/pkg-plist deleted file mode 100644 index 7c89ce913312..000000000000 --- a/databases/mysql54-server/pkg-plist +++ /dev/null @@ -1,148 +0,0 @@ -bin/comp_err -bin/isamchk -bin/isamlog -bin/msql2mysql -bin/mysql_find_rows -bin/mysql_fix_privilege_tables -bin/mysql_install_db -bin/mysql_setpermission -bin/mysql_zap -bin/mysqlaccess -bin/mysqlbug -bin/mysqlhotcopy -bin/perror -bin/print_defaults -bin/replace -bin/resolveip -bin/safe_mysqld -etc/rc.d/mysql-server.sh -@unexec install-info --delete %D/info/mysql.info %D/info/dir -info/mysql.info -@exec install-info %D/info/mysql.info %D/info/dir -lib/mysql/libdbug.a -lib/mysql/libheap.a -lib/mysql/libmerge.a -lib/mysql/libmystrings.a -lib/mysql/libmysys.a -lib/mysql/libnisam.a -libexec/mysqld -share/doc/mysql/Img/australia.gif -share/doc/mysql/Img/austria.gif -share/doc/mysql/Img/brazil.gif -share/doc/mysql/Img/bulgaria.gif -share/doc/mysql/Img/canada.gif -share/doc/mysql/Img/chile.gif -share/doc/mysql/Img/china.gif -share/doc/mysql/Img/croatia.gif -share/doc/mysql/Img/czech-republic.gif -share/doc/mysql/Img/denmark.gif -share/doc/mysql/Img/estonia.gif -share/doc/mysql/Img/finland.gif -share/doc/mysql/Img/france.gif -share/doc/mysql/Img/germany.gif -share/doc/mysql/Img/great-britain.gif -share/doc/mysql/Img/greece.gif -share/doc/mysql/Img/html-fs.gif -share/doc/mysql/Img/hungary.gif -share/doc/mysql/Img/iceland.gif -share/doc/mysql/Img/ireland.gif -share/doc/mysql/Img/island.gif -share/doc/mysql/Img/israel.gif -share/doc/mysql/Img/italy.gif -share/doc/mysql/Img/japan.gif -share/doc/mysql/Img/kroatia.gif -share/doc/mysql/Img/mysql-logo.gif -share/doc/mysql/Img/mysql5.gif -share/doc/mysql/Img/netherlands.gif -share/doc/mysql/Img/poland.gif -share/doc/mysql/Img/portugal.gif -share/doc/mysql/Img/romania.gif -share/doc/mysql/Img/russia.gif -share/doc/mysql/Img/singapore.gif -share/doc/mysql/Img/south-africa.gif -share/doc/mysql/Img/south-africa1.gif -share/doc/mysql/Img/south-korea.gif -share/doc/mysql/Img/spain.gif -share/doc/mysql/Img/sweden.gif -share/doc/mysql/Img/switzerland.gif -share/doc/mysql/Img/taiwan.gif -share/doc/mysql/Img/tcxlogo3.gif -share/doc/mysql/Img/ukraine.gif -share/doc/mysql/Img/usa.gif -share/doc/mysql/include.texi -share/doc/mysql/manual.html -share/doc/mysql/manual.ps -share/doc/mysql/manual.texi -share/doc/mysql/manual.txt -share/doc/mysql/manual_toc.html -share/mysql/binary-configure -share/mysql/czech/errmsg.sys -share/mysql/czech/errmsg.txt -share/mysql/danish/errmsg.sys -share/mysql/danish/errmsg.txt -share/mysql/dutch/errmsg.sys -share/mysql/dutch/errmsg.txt -share/mysql/english/errmsg.sys -share/mysql/english/errmsg.txt -share/mysql/estonia/errmsg.sys -share/mysql/estonia/errmsg.txt -share/mysql/french/errmsg.sys -share/mysql/french/errmsg.txt -share/mysql/german/errmsg.sys -share/mysql/german/errmsg.txt -share/mysql/greek/errmsg.sys -share/mysql/greek/errmsg.txt -share/mysql/hungarian/errmsg.sys -share/mysql/hungarian/errmsg.txt -share/mysql/italian/errmsg.sys -share/mysql/italian/errmsg.txt -share/mysql/japanese/errmsg.sys -share/mysql/japanese/errmsg.txt -share/mysql/korean/errmsg.sys -share/mysql/korean/errmsg.txt -share/mysql/make_binary_distribution -share/mysql/my-example.cnf -share/mysql/mysql-3.22.32.spec -share/mysql/mysql-log-rotate -share/mysql/mysql.server -share/mysql/norwegian-ny/errmsg.sys -share/mysql/norwegian-ny/errmsg.txt -share/mysql/norwegian/errmsg.sys -share/mysql/norwegian/errmsg.txt -share/mysql/polish/errmsg.sys -share/mysql/polish/errmsg.txt -share/mysql/portuguese/errmsg.sys -share/mysql/portuguese/errmsg.txt -share/mysql/russian/errmsg.sys -share/mysql/russian/errmsg.txt -share/mysql/slovak/errmsg.sys -share/mysql/slovak/errmsg.txt -share/mysql/spanish/errmsg.sys -share/mysql/spanish/errmsg.txt -share/mysql/swedish/errmsg.sys -share/mysql/swedish/errmsg.txt -@dirrm share/doc/mysql/Img -@dirrm share/doc/mysql -@dirrm share/mysql/czech -@dirrm share/mysql/danish -@dirrm share/mysql/dutch -@dirrm share/mysql/english -@dirrm share/mysql/estonia -@dirrm share/mysql/french -@dirrm share/mysql/german -@dirrm share/mysql/greek -@dirrm share/mysql/hungarian -@dirrm share/mysql/italian -@dirrm share/mysql/japanese -@dirrm share/mysql/korean -@dirrm share/mysql/norwegian -@dirrm share/mysql/norwegian-ny -@dirrm share/mysql/polish -@dirrm share/mysql/portuguese -@dirrm share/mysql/russian -@dirrm share/mysql/slovak -@dirrm share/mysql/spanish -@dirrm share/mysql/swedish -@dirrm share/mysql -@exec %D/bin/mysql_install_db -@exec /usr/bin/killall mysqld diff --git a/databases/mysql54-server/pkg-plist.client b/databases/mysql54-server/pkg-plist.client deleted file mode 100644 index 9eb893b7dd12..000000000000 --- a/databases/mysql54-server/pkg-plist.client +++ /dev/null @@ -1,32 +0,0 @@ -bin/mysql -bin/mysqladmin -bin/mysqldump -bin/mysqlimport -bin/mysqlshow -etc/rc.d/mysql-client.sh -include/mysql/dbug.h -include/mysql/errmsg.h -include/mysql/m_ctype.h -include/mysql/m_string.h -include/mysql/my_config.h -include/mysql/my_global.h -include/mysql/my_list.h -include/mysql/my_net.h -include/mysql/my_pthread.h -include/mysql/my_sys.h -include/mysql/mysql.h -include/mysql/mysql_com.h -include/mysql/mysql_version.h -include/mysql/mysqld_error.h -include/mysql/raid.h -include/mysql/sslopt-case.h -include/mysql/sslopt-longopts.h -include/mysql/sslopt-usage.h -include/mysql/sslopt-vars.h -lib/mysql/libmysqlclient.a -lib/mysql/libmysqlclient.so -lib/mysql/libmysqlclient.so.6 -@dirrm include/mysql -@dirrm lib/mysql -@exec /usr/bin/env OBJFORMAT=%%PORTOBJFORMAT%% /sbin/ldconfig -m %D/lib/mysql -@unexec /usr/bin/env OBJFORMAT=%%PORTOBJFORMAT%% /sbin/ldconfig -R diff --git a/databases/mysql55-client/Makefile b/databases/mysql55-client/Makefile deleted file mode 100644 index 8284511ecb0e..000000000000 --- a/databases/mysql55-client/Makefile +++ /dev/null @@ -1,17 +0,0 @@ -# ports collection makefile for: MySQL-client -# Date created: Thu Jun 24 00:12:22 CEST 1999 -# Whom: Dirk Froemberg <dirk@FreeBSD.org> -# -# $FreeBSD$ -# - -PORTNAME= ${MASTERPORTNAME:S/-server/-client/g} - -MASTERDIR= ${.CURDIR}/../mysql322-server -COMMENT= ${PKGDIR}/COMMENT.client -PKGINSTALL= mustnotexist -PLIST= ${PKGDIR}/PLIST.client - -CLIENT_ONLY= yes - -.include "${MASTERDIR}/Makefile" diff --git a/databases/mysql55-server/Makefile b/databases/mysql55-server/Makefile deleted file mode 100644 index 9a6c2a590256..000000000000 --- a/databases/mysql55-server/Makefile +++ /dev/null @@ -1,154 +0,0 @@ -# ports collection makefile for: MySQL-server -# Date created: 26 Jan 1998 -# Whom: Josh Tiefenbach <josh@ican.net> -# -# $FreeBSD$ -# - -PORTNAME?= ${MASTERPORTNAME} -PORTVERSION= 3.22.32 -CATEGORIES= databases -MASTER_SITES= http://www.fh-wolfenbuettel.de/ftp/pub/database/mysql/Downloads/MySQL-3.22/ \ - ftp://ftp.digex.net/pub/packages/database/mysql/Downloads/MySQL-3.22/ \ - ftp://ftp.plig.net/pub/mysql/Downloads/MySQL-3.22/ \ - ftp://ftp.sunet.se/pub/unix/databases/relational/mysql/Downloads/MySQL-3.22/ -DISTNAME= mysql-${PORTVERSION} - -MAINTAINER= dirk@FreeBSD.org - -Y2K= http://www.tcx.se/Manual_chapter/manual_Introduction.html#Year_2000_compliance - -SLAVEDIRS= databases/mysql322-client -MASTERPORTNAME= mysql-server -DB_DIR?= /var/db/mysql -USE_PERL5= yes -USE_LIBTOOL= yes -CONFIGURE_ARGS= --localstatedir=${DB_DIR} \ - --without-perl \ - --without-debug \ - --without-readline \ - --without-bench -.if ${MACHINE_ARCH} == "i386" -CONFIGURE_ARGS+=--enable-assembler -.endif -CONFIGURE_ENV+= PERL=${PERL} \ - PERL5=${PERL} \ - INSTALL_SCRIPT="${INSTALL_SCRIPT}" \ - CONFIGURE_ARGS="${CONFIGURE_ARGS}" - -# MySQL-Server part -.if !defined(CLIENT_ONLY) -RUN_DEPENDS= mysql:${PORTSDIR}/databases/mysql322-client - -.include <bsd.port.pre.mk> - -.if ${OSVERSION} >= 320000 -.if defined(MIT_PTHREADS) -CONFIGURE_ARGS+= --with-mit-threads=yes - -pre-fetch: - @${ECHO} - @${ECHO} "Using supplied mit-pthreads." - @${ECHO} -.else -CONFIGURE_ARGS+= --with-mit-threads=no - -pre-fetch: - @${ECHO} - @${ECHO} "Using native FreeBSD threads (libc_r)." - @${ECHO} - @${ECHO} "You may set MIT_PTHREADS (make MIT_PTHREADS=yes)" - @${ECHO} "to compile mysql with the supplied mit-pthreads." - @${ECHO} "(You don't want to set this unless you have a good reason)." - @${ECHO} -.endif -.elif ${OSVERSION} >= 300000 -.if defined(NATIVE_THREADS) -CONFIGURE_ARGS+= --with-mit-threads=no - -pre-fetch: - @${ECHO} - @${ECHO} "Using native FreeBSD threads (libc_r)." - @${ECHO} -.else -CONFIGURE_ARGS+= --with-mit-threads=yes - -pre-fetch: - @${ECHO} - @${ECHO} "Using supplied mit-pthreads." - @${ECHO} - @${ECHO} "You may set NATIVE_THREADS (make NATIVE_THREADS=yes)" - @${ECHO} "to compile mysql with the native FreeBSD threads (libc_r)." - @${ECHO} "Warning: There are some bugs in libc_r which prevent" - @${ECHO} " 'mysqladmin shutdown' from working properly and" - @${ECHO} " killing mysqld might not work." - @${ECHO} -.endif -.else -CONFIGURE_ARGS+= --with-mit-threads=yes - -pre-fetch: - @${ECHO} - @${ECHO} "Using supplied mit-pthreads." - @${ECHO} -.endif - -post-patch: - ${MV} ${WRKSRC}/strings/strings-x86.s ${WRKSRC}/strings/strings-x86.S - ${MV} ${WRKSRC}/strings/longlong2str-x86.s ${WRKSRC}/strings/longlong2str-x86.S - -pre-install: -.if !defined(PACKAGE_BUILDING) && exists(${DB_DIR}) && !defined(OVERWRITE_DB) - @${ECHO} "You appear to already have a mysql database directory in ${DB_DIR}." - @${ECHO} "" - @${ECHO} "In order to preserve your existing data, you should:" - @${ECHO} " - dump all your databases" - @${ECHO} " - kill mysql if it is running" - @${ECHO} " - delete the ${DB_DIR} directory" - @${ECHO} " - run 'make install'" - @${ECHO} " - start up mysql" - @${ECHO} " - re-create all of your database" - @${ECHO} " - re-load your data" - @${ECHO} "" - @${ECHO} "If you understand the consequences of this upgrade, please re-build this" - @${ECHO} "port with the environment variable OVERWRITE_DB defined." - @${FALSE} -.endif - -post-install: -.if !defined(PACKAGE_BUILDING) - ${PREFIX}/bin/mysql_install_db - @${SETENV} DB_DIR=${DB_DIR} ${SH} ${PKGINSTALL} ${PKGNAME} POST-INSTALL -.endif - @${SED} "s|%%PREFIX%%|${PREFIX}|g" < ${FILESDIR}/mysql-server.sh > ${PREFIX}/etc/rc.d/mysql-server.sh - @${CHMOD} 750 ${PREFIX}/etc/rc.d/mysql-server.sh - -.if !defined(NOPORTDOCS) - ${MKDIR} ${PREFIX}/share/doc/mysql/Img -.for doc in manual.html manual.ps manual_toc.html manual.txt manual.texi include.texi - ${INSTALL_DATA} ${WRKSRC}/Docs/${doc} ${PREFIX}/share/doc/mysql -.endfor - ${INSTALL_DATA} ${WRKSRC}/Docs/Img/*.gif ${PREFIX}/share/doc/mysql/Img - ${INSTALL_DATA} ${WRKSRC}/Docs/mysql.info ${PREFIX}/info - @install-info ${PREFIX}/info/mysql.info ${PREFIX}/info/dir -.endif - -.include <bsd.port.post.mk> - -# MySQL-Client part -.else -MAN1= mysql.1 - -CONFIGURE_ARGS+=--without-server -MAKE_ENV= CLIENT_ONLY="${CLIENT_ONLY}" - -post-install: - @${ECHO} "#!/bin/sh" > ${PREFIX}/etc/rc.d/mysql-client.sh - @${ECHO} "" >> ${PREFIX}/etc/rc.d/mysql-client.sh - @${ECHO} "${LDCONFIG} -m ${PREFIX}/lib/mysql" >> ${PREFIX}/etc/rc.d/mysql-client.sh - @${CHMOD} 750 ${PREFIX}/etc/rc.d/mysql-client.sh - - ${SETENV} OBJFORMAT=${PORTOBJFORMAT} ${LDCONFIG} -m ${PREFIX}/lib/mysql - -.include <bsd.port.mk> -.endif diff --git a/databases/mysql55-server/distinfo b/databases/mysql55-server/distinfo deleted file mode 100644 index edfe7eb2ff4a..000000000000 --- a/databases/mysql55-server/distinfo +++ /dev/null @@ -1 +0,0 @@ -MD5 (mysql-3.22.32.tar.gz) = 244e08d9a1f4b2ad799aa40ad3cc897a diff --git a/databases/mysql55-server/files/mysql-server.sh b/databases/mysql55-server/files/mysql-server.sh deleted file mode 100644 index 0ff5374c48f7..000000000000 --- a/databases/mysql55-server/files/mysql-server.sh +++ /dev/null @@ -1,18 +0,0 @@ -#!/bin/sh - -case "$1" in - start) - if [ -x %%PREFIX%%/bin/safe_mysqld ]; then - %%PREFIX%%/bin/safe_mysqld --user=mysql > /dev/null & && echo -n ' mysqld' - fi - ;; - stop) - /usr/bin/killall mysqld > /dev/null 2>&1 && echo -n ' mysqld' - ;; - *) - echo "" - echo "Usage: `basename $0` { start | stop }" - echo "" - exit 64 - ;; -esac diff --git a/databases/mysql55-server/files/patch-Makefile.in b/databases/mysql55-server/files/patch-Makefile.in deleted file mode 100644 index 00190736f765..000000000000 --- a/databases/mysql55-server/files/patch-Makefile.in +++ /dev/null @@ -1,15 +0,0 @@ ---- Makefile.in.orig Sat Jan 1 17:59:38 2000 -+++ Makefile.in Mon Jan 3 17:19:23 2000 -@@ -144,7 +144,11 @@ - # These are built from source in the Docs directory - EXTRA_DIST = INSTALL-SOURCE-GENERIC README PUBLIC INSTALL-SOURCE MIRRORS - --SUBDIRS = include @docs_dirs@ @readline_dir@ client @sql_server_dirs@ scripts tests man @bench_dirs@ support-files -+.if defined(CLIENT_ONLY) -+SUBDIRS = include @readline_dir@ client tests man -+.else -+SUBDIRS = include @docs_dirs@ @sql_server_dirs@ scripts @bench_dirs@ support-files -+.endif - - - # Relink after clean diff --git a/databases/mysql55-server/files/patch-ab b/databases/mysql55-server/files/patch-ab deleted file mode 100644 index 1fd66bbe0cad..000000000000 --- a/databases/mysql55-server/files/patch-ab +++ /dev/null @@ -1,33 +0,0 @@ ---- scripts/mysql_install_db.sh.orig Wed Jan 12 21:06:30 2000 -+++ scripts/mysql_install_db.sh Sun Mar 26 23:20:27 2000 -@@ -15,8 +15,6 @@ - force=0 - IN_RPM=0 - --# Are we doing an rpm install? --if test "$1" = "-IN-RPM"; then IN_RPM=1; shift; fi - if test "$1" = "--force"; then force=1; shift; fi - - # Get mysqld/safe_mysqld options from /etc/my.cnf or ~/.my.cnf -@@ -60,8 +58,6 @@ - fi - fi - --# On IRIX hostname is in /usr/bsd so add this to the path --PATH=$PATH:/usr/bsd - hostname=`hostname` # Install this too in the user table - - # Check if hostname is valid -@@ -255,12 +251,6 @@ - END_OF_DATA - then - echo "" -- if test "$IN_RPM" -eq 0 -- then -- echo "To start mysqld at boot time you have to copy support-files/mysql.server" -- echo "to the right place for your system" -- echo -- fi - echo "PLEASE REMEMBER TO SET A PASSWORD FOR THE MySQL root USER !" - echo "This is done with:" - echo "$bindir/mysqladmin -u root password 'new-password'" diff --git a/databases/mysql55-server/files/patch-af b/databases/mysql55-server/files/patch-af deleted file mode 100644 index 2593da4d1c64..000000000000 --- a/databases/mysql55-server/files/patch-af +++ /dev/null @@ -1,73 +0,0 @@ ---- scripts/safe_mysqld.sh.orig Fri May 14 11:11:46 1999 -+++ scripts/safe_mysqld.sh Tue Jun 8 11:14:02 1999 -@@ -12,33 +12,9 @@ - - trap '' 1 2 3 15 # we shouldn't let anyone kill us - --# Check if we are starting this relative (for the binary release) --if test -d ./data/mysql -a -f ./share/mysql/english/errmsg.sys -a \ -- -x ./bin/mysqld --then -- MY_BASEDIR_VERSION=`pwd` # Where bin, share and data are -- DATADIR=$MY_BASEDIR_VERSION/data # Where the databases are -- ledir=$MY_BASEDIR_VERSION/bin # Where mysqld is --# Check if this is a 'moved install directory' --elif test -f ./var/mysql/db.frm -a -f ./share/mysql/english/errmsg.sys -a \ -- -x ./libexec/mysqld --then -- MY_BASEDIR_VERSION=`pwd` # Where libexec, share and var are -- DATADIR=$MY_BASEDIR_VERSION/var # Where the databases are -- ledir=$MY_BASEDIR_VERSION/libexec # Where mysqld is --else -- MY_BASEDIR_VERSION=@prefix@ -- DATADIR=@localstatedir@ -- ledir=@libexecdir@ -- if test ! -x $ledir/mysqld -- then -- echo "The file $ledir/mysqld doesn't exist or is not executable" -- echo "Please do a cd to the mysql installation directory and restart" -- echo "this script from there as follows:" -- echo "./bin/safe_mysqld". -- exit 1; -- fi --fi -+MY_BASEDIR_VERSION=@prefix@ -+DATADIR=@localstatedir@ -+ledir=@libexecdir@ - - pid_file=$DATADIR/`@HOSTNAME@`.pid - log=$DATADIR/`@HOSTNAME@`.log -@@ -114,33 +90,6 @@ - if test ! -f $pid_file # This is removed if normal shutdown - then - break; -- fi -- if @IS_LINUX@ -- then -- # Test if one process was hanging. -- # This is only a fix for Linux (running as base 3 mysqld processes) -- # but should work for the rest of the servers. -- # The only thing is ps x => redhat 5 gives warnings when using ps -x. -- # kill -9 is used or the process won't react on the kill. -- numofproces=`ps x | grep -v "grep" | grep -c $ledir/mysqld` -- echo -e "\nNumber of processes running now: $numofproces" | tee -a $err_log -- I=1 -- while test "$I" -le "$numofproces" -- do -- PROC=`ps x | grep $ledir/mysqld | grep -v "grep" | tail -1` -- for T in $PROC -- do -- break -- done -- # echo "TEST $I - $T **" -- if kill -9 $T -- then -- echo "mysqld process hanging, pid $T - killed" | tee -a $err_log -- else -- break -- fi -- I=`expr $I + 1` -- done - fi - echo "mysqld restarted on " `date` | tee -a $err_log - done diff --git a/databases/mysql55-server/files/patch-ap b/databases/mysql55-server/files/patch-ap deleted file mode 100644 index 097b449a181a..000000000000 --- a/databases/mysql55-server/files/patch-ap +++ /dev/null @@ -1,11 +0,0 @@ ---- strings/Makefile.in.orig Sat Jan 1 18:00:30 2000 -+++ strings/Makefile.in Mon Jan 3 17:21:19 2000 -@@ -145,7 +145,7 @@ - INCLUDES = @MT_INCLUDES@ -I$(srcdir)/../include -I../include - pkglib_LIBRARIES = libmystrings.a - #no assembler --@ASSEMBLER_x86_TRUE@ASRCS = strings-x86.s longlong2str-x86.s -+@ASSEMBLER_x86_TRUE@ASRCS = strings-x86.S longlong2str-x86.S - @ASSEMBLER_x86_FALSE@@ASSEMBLER_sparc_TRUE@ASRCS = bmove_upp-sparc.s strappend-sparc.s strend-sparc.s strinstr-sparc.s strmake-sparc.s strmov-sparc.s strnmov-sparc.s strstr-sparc.s strxmov-sparc.s - @ASSEMBLER_x86_FALSE@@ASSEMBLER_sparc_FALSE@ASRCS = - # These file MUST all be on the same line!! Otherwise automake diff --git a/databases/mysql55-server/files/patch-aq b/databases/mysql55-server/files/patch-aq deleted file mode 100644 index 573324175921..000000000000 --- a/databases/mysql55-server/files/patch-aq +++ /dev/null @@ -1,13 +0,0 @@ ---- sql/Makefile.in.orig Sat Jan 1 18:01:13 2000 -+++ sql/Makefile.in Wed Jan 5 20:28:17 2000 -@@ -317,6 +317,10 @@ - else :; fi - sql_yacc.hh: sql_yacc.cc - -+# gcc takes a lot of memory and cpu time if it compiles sql_yacc.cc with -O -+sql_yacc.o: sql_yacc.cc -+ $(CXXCOMPILE) -O0 -c $< -+ - - # This directory's subdirectories are mostly independent; you can cd - # into them and run `make' without going through this Makefile. diff --git a/databases/mysql55-server/files/patch-as b/databases/mysql55-server/files/patch-as deleted file mode 100644 index 903bc9950a28..000000000000 --- a/databases/mysql55-server/files/patch-as +++ /dev/null @@ -1,16 +0,0 @@ ---- sql/mysqld.cc.orig Sun Feb 13 02:40:18 2000 -+++ sql/mysqld.cc Mon Feb 21 21:24:51 2000 -@@ -63,8 +63,11 @@ - inline void reset_floating_point_exceptions() - { - /* Don't fall for overflow, underflow,divide-by-zero or loss of precision */ -- fpsetmask(~(FP_X_INV | FP_X_DNML | FP_X_OFL | FP_X_UFL | -- FP_X_DZ | FP_X_IMP)); -+#if defined(__i386__) -+ fpsetmask(~(FP_X_INV | FP_X_DNML | FP_X_OFL | FP_X_UFL | FP_X_DZ | FP_X_IMP)); -+#else -+ fpsetmask(~(FP_X_INV | FP_X_OFL | FP_X_UFL | FP_X_DZ | FP_X_IMP)); -+#endif - } - #else - #define reset_floating_point_exceptions() diff --git a/databases/mysql55-server/files/patch-configure b/databases/mysql55-server/files/patch-configure deleted file mode 100644 index 133bd4200860..000000000000 --- a/databases/mysql55-server/files/patch-configure +++ /dev/null @@ -1,132 +0,0 @@ ---- configure.orig Sun Feb 13 03:46:09 2000 -+++ configure Wed May 3 12:20:25 2000 -@@ -2743,7 +2743,7 @@ - ;; - esac - fi --HOSTNAME="$ac_cv_path_HOSTNAME" -+HOSTNAME="$ac_cv_path_HOSTNAME -s" - if test -n "$HOSTNAME"; then - echo "$ac_t""$HOSTNAME" 1>&6 - else -@@ -2871,30 +2871,7 @@ - echo $ac_n "checking "how to check if pid exists"""... $ac_c" 1>&6 - echo "configure:2873: checking "how to check if pid exists"" >&5 - PS=$ac_cv_path_PS --# Linux style --if $PS p $$ 2> /dev/null | grep $0 > /dev/null --then -- FIND_PROC="$PS p \$\$PID | grep mysqld > /dev/null" --# Solaris --elif $PS -p $$ 2> /dev/null | grep $0 > /dev/null --then -- FIND_PROC="$PS -p \$\$PID | grep mysqld > /dev/null" --# BSD style --elif $PS -uaxww 2> /dev/null | grep $0 > /dev/null --then -- FIND_PROC="$PS -uaxww | grep mysqld | grep \" \$\$PID \" > /dev/null" --# SysV style --elif $PS -ef 2> /dev/null | grep $0 > /dev/null --then -- FIND_PROC="$PS -ef | grep mysqld | grep \" \$\$PID \" > /dev/null" --# Do anybody use this? --elif $PS $$ 2> /dev/null | grep $0 > /dev/null --then -- FIND_PROC="$PS \$\$PID | grep mysqld > /dev/null" --else -- { echo "configure: error: Could not find the right ps switches. Which OS is this ?. See the Installation chapter in the Reference Manual." 1>&2; exit 1; } --fi -- -+FIND_PROC="$PS -uaxww | grep mysqld | grep \" \$\$PID \" > /dev/null" - echo "$ac_t"""$FIND_PROC"" 1>&6 - - # Check if a pid is valid -@@ -4646,8 +4623,6 @@ - #define $ac_tr_lib 1 - EOF - -- LIBS="-lc_r $LIBS" -- - else - echo "$ac_t""no" 1>&6 - fi -@@ -4881,28 +4856,6 @@ - fi - - --# Build optimized or debug version ? --# First check for gcc and g++ --if test "$ac_cv_prog_gcc" = "yes" --then -- DEBUG_CFLAGS="-g" -- DEBUG_OPTIMIZE_CC="-O" -- OPTIMIZE_CFLAGS="-O6" --else -- DEBUG_CFLAGS="-g" -- DEBUG_OPTIMIZE_CC="" -- OPTIMIZE_CFLAGS="-O" --fi --if test "$ac_cv_prog_cxx_g" = "yes" --then -- DEBUG_CXXFLAGS="-g" -- DEBUG_OPTIMIZE_CXX="-O" -- OPTIMIZE_CXXFLAGS="-O3" --else -- DEBUG_CXXFLAGS="-g" -- DEBUG_OPTIMIZE_CXX="" -- OPTIMIZE_CXXFLAGS="-O" --fi - # Check whether --with-debug or --without-debug was given. - if test "${with_debug+set}" = set; then - withval="$with_debug" -@@ -5615,10 +5568,6 @@ - ac_link='${CXX-g++} -o conftest${ac_exeext} $CXXFLAGS $CPPFLAGS $LDFLAGS conftest.$ac_ext $LIBS 1>&5' - cross_compiling=$ac_cv_prog_cxx_cross - --if test "$ac_cv_prog_gxx" = "yes" --then -- CXXFLAGS="$CXXFLAGS -Werror" --fi - mysql_cv_btype_last_arg_accept=none - cat > conftest.$ac_ext <<EOF - #line 5625 "configure" -@@ -7655,10 +7604,6 @@ - ac_link='${CXX-g++} -o conftest${ac_exeext} $CXXFLAGS $CPPFLAGS $LDFLAGS conftest.$ac_ext $LIBS 1>&5' - cross_compiling=$ac_cv_prog_cxx_cross - --if test "$ac_cv_prog_gxx" = "yes" --then -- CXXFLAGS="$CXXFLAGS -Werror" --fi - cat > conftest.$ac_ext <<EOF - #line 7664 "configure" - #include "confdefs.h" -@@ -7721,10 +7666,6 @@ - ac_link='${CXX-g++} -o conftest${ac_exeext} $CXXFLAGS $CPPFLAGS $LDFLAGS conftest.$ac_ext $LIBS 1>&5' - cross_compiling=$ac_cv_prog_cxx_cross - --if test "$ac_cv_prog_gxx" = "yes" --then -- CXXFLAGS="$CXXFLAGS -Werror" --fi - cat > conftest.$ac_ext <<EOF - #line 7730 "configure" - #include "confdefs.h" -@@ -8005,7 +7946,7 @@ - #include <pthread.h> - int main() { - pthread_attr_t thr_attr; --pthread_attr_setscope(&thr_attr,0); -+XXXpthread_attr_setscope(&thr_attr,0); - ; return 0; } - EOF - if { (eval echo configure:8012: \"$ac_link\") 1>&5; (eval $ac_link) 2>&5; } && test -s conftest${ac_exeext}; then -@@ -8210,7 +8151,7 @@ - echo "" - echo "Configuring MIT Pthreads" - # We will never install so installation paths are not needed. -- (cd mit-pthreads; sh ./configure) -+ (cd mit-pthreads; sh ./configure ${CONFIGURE_ARGS}) - echo "End of MIT Pthreads configuration" - echo "" - fi diff --git a/databases/mysql55-server/files/patch-include::Makefile.in b/databases/mysql55-server/files/patch-include::Makefile.in deleted file mode 100644 index ed7654838e66..000000000000 --- a/databases/mysql55-server/files/patch-include::Makefile.in +++ /dev/null @@ -1,14 +0,0 @@ ---- include/Makefile.in.orig Sat Jan 1 17:59:41 2000 -+++ include/Makefile.in Wed Jan 5 21:04:23 2000 -@@ -259,7 +259,11 @@ - - install-am: all-am - @$(MAKE) $(AM_MAKEFLAGS) install-exec-am install-data-am -+.if defined(CLIENT_ONLY) - install: install-am -+.else -+install: -+.endif - uninstall-am: uninstall-pkgincludeHEADERS - uninstall: uninstall-am - all-am: Makefile $(HEADERS) all-local diff --git a/databases/mysql55-server/pkg-comment b/databases/mysql55-server/pkg-comment deleted file mode 100644 index 2e29c8d2b15b..000000000000 --- a/databases/mysql55-server/pkg-comment +++ /dev/null @@ -1 +0,0 @@ -Multithreaded SQL database (server) diff --git a/databases/mysql55-server/pkg-comment.client b/databases/mysql55-server/pkg-comment.client deleted file mode 100644 index cd0c61571cfb..000000000000 --- a/databases/mysql55-server/pkg-comment.client +++ /dev/null @@ -1 +0,0 @@ -Multithreaded SQL database (client) diff --git a/databases/mysql55-server/pkg-descr b/databases/mysql55-server/pkg-descr deleted file mode 100644 index e21208271cdb..000000000000 --- a/databases/mysql55-server/pkg-descr +++ /dev/null @@ -1,10 +0,0 @@ -mySQL is a multithreaded (using MIT pthreads) SQL database with a command -syntax very similar to mSQL. For more information see http://www.tcx.se - -Note: This port does *not* build the perl5 module. To do so, refer to the -file ${WRKSRC}/INSTALL-SOURCE, in particular, the notes on FreeBSD systems. - -josh -josh@ican.net - -WWW: http://www.mysql.com/ diff --git a/databases/mysql55-server/pkg-install b/databases/mysql55-server/pkg-install deleted file mode 100644 index 3e925021ede1..000000000000 --- a/databases/mysql55-server/pkg-install +++ /dev/null @@ -1,41 +0,0 @@ -#!/bin/sh - -PATH=/bin:/usr/sbin -if [ -z "${DB_DIR}" ]; then - DB_DIR=/var/db/mysql -fi - -case $2 in -POST-INSTALL) - USER=mysql - GROUP=${USER} - UID=88 - GID=${UID} - - if pw group show "${GROUP}" 2>/dev/null; then - echo "You already have a group \"${GROUP}\", so I will use it." - else - if pw groupadd ${GROUP} -g ${GID}; then - echo "Added group \"${GROUP}\"." - else - echo "Adding group \"${GROUP}\" failed..." - exit 1 - fi - fi - - if pw user show "${USER}" 2>/dev/null; then - echo "You already have a user \"${USER}\", so I will use it." - else - if pw useradd ${USER} -u ${UID} -g ${GROUP} -h - \ - -d ${DB_DIR} -s /sbin/nologin -c "MySQL Daemon" - then - echo "Added user \"${USER}\"." - else - echo "Adding user \"${USER}\" failed..." - exit 1 - fi - fi - - chown -R ${USER}.${GROUP} ${DB_DIR} - ;; -esac diff --git a/databases/mysql55-server/pkg-plist b/databases/mysql55-server/pkg-plist deleted file mode 100644 index 7c89ce913312..000000000000 --- a/databases/mysql55-server/pkg-plist +++ /dev/null @@ -1,148 +0,0 @@ -bin/comp_err -bin/isamchk -bin/isamlog -bin/msql2mysql -bin/mysql_find_rows -bin/mysql_fix_privilege_tables -bin/mysql_install_db -bin/mysql_setpermission -bin/mysql_zap -bin/mysqlaccess -bin/mysqlbug -bin/mysqlhotcopy -bin/perror -bin/print_defaults -bin/replace -bin/resolveip -bin/safe_mysqld -etc/rc.d/mysql-server.sh -@unexec install-info --delete %D/info/mysql.info %D/info/dir -info/mysql.info -@exec install-info %D/info/mysql.info %D/info/dir -lib/mysql/libdbug.a -lib/mysql/libheap.a -lib/mysql/libmerge.a -lib/mysql/libmystrings.a -lib/mysql/libmysys.a -lib/mysql/libnisam.a -libexec/mysqld -share/doc/mysql/Img/australia.gif -share/doc/mysql/Img/austria.gif -share/doc/mysql/Img/brazil.gif -share/doc/mysql/Img/bulgaria.gif -share/doc/mysql/Img/canada.gif -share/doc/mysql/Img/chile.gif -share/doc/mysql/Img/china.gif -share/doc/mysql/Img/croatia.gif -share/doc/mysql/Img/czech-republic.gif -share/doc/mysql/Img/denmark.gif -share/doc/mysql/Img/estonia.gif -share/doc/mysql/Img/finland.gif -share/doc/mysql/Img/france.gif -share/doc/mysql/Img/germany.gif -share/doc/mysql/Img/great-britain.gif -share/doc/mysql/Img/greece.gif -share/doc/mysql/Img/html-fs.gif -share/doc/mysql/Img/hungary.gif -share/doc/mysql/Img/iceland.gif -share/doc/mysql/Img/ireland.gif -share/doc/mysql/Img/island.gif -share/doc/mysql/Img/israel.gif -share/doc/mysql/Img/italy.gif -share/doc/mysql/Img/japan.gif -share/doc/mysql/Img/kroatia.gif -share/doc/mysql/Img/mysql-logo.gif -share/doc/mysql/Img/mysql5.gif -share/doc/mysql/Img/netherlands.gif -share/doc/mysql/Img/poland.gif -share/doc/mysql/Img/portugal.gif -share/doc/mysql/Img/romania.gif -share/doc/mysql/Img/russia.gif -share/doc/mysql/Img/singapore.gif -share/doc/mysql/Img/south-africa.gif -share/doc/mysql/Img/south-africa1.gif -share/doc/mysql/Img/south-korea.gif -share/doc/mysql/Img/spain.gif -share/doc/mysql/Img/sweden.gif -share/doc/mysql/Img/switzerland.gif -share/doc/mysql/Img/taiwan.gif -share/doc/mysql/Img/tcxlogo3.gif -share/doc/mysql/Img/ukraine.gif -share/doc/mysql/Img/usa.gif -share/doc/mysql/include.texi -share/doc/mysql/manual.html -share/doc/mysql/manual.ps -share/doc/mysql/manual.texi -share/doc/mysql/manual.txt -share/doc/mysql/manual_toc.html -share/mysql/binary-configure -share/mysql/czech/errmsg.sys -share/mysql/czech/errmsg.txt -share/mysql/danish/errmsg.sys -share/mysql/danish/errmsg.txt -share/mysql/dutch/errmsg.sys -share/mysql/dutch/errmsg.txt -share/mysql/english/errmsg.sys -share/mysql/english/errmsg.txt -share/mysql/estonia/errmsg.sys -share/mysql/estonia/errmsg.txt -share/mysql/french/errmsg.sys -share/mysql/french/errmsg.txt -share/mysql/german/errmsg.sys -share/mysql/german/errmsg.txt -share/mysql/greek/errmsg.sys -share/mysql/greek/errmsg.txt -share/mysql/hungarian/errmsg.sys -share/mysql/hungarian/errmsg.txt -share/mysql/italian/errmsg.sys -share/mysql/italian/errmsg.txt -share/mysql/japanese/errmsg.sys -share/mysql/japanese/errmsg.txt -share/mysql/korean/errmsg.sys -share/mysql/korean/errmsg.txt -share/mysql/make_binary_distribution -share/mysql/my-example.cnf -share/mysql/mysql-3.22.32.spec -share/mysql/mysql-log-rotate -share/mysql/mysql.server -share/mysql/norwegian-ny/errmsg.sys -share/mysql/norwegian-ny/errmsg.txt -share/mysql/norwegian/errmsg.sys -share/mysql/norwegian/errmsg.txt -share/mysql/polish/errmsg.sys -share/mysql/polish/errmsg.txt -share/mysql/portuguese/errmsg.sys -share/mysql/portuguese/errmsg.txt -share/mysql/russian/errmsg.sys -share/mysql/russian/errmsg.txt -share/mysql/slovak/errmsg.sys -share/mysql/slovak/errmsg.txt -share/mysql/spanish/errmsg.sys -share/mysql/spanish/errmsg.txt -share/mysql/swedish/errmsg.sys -share/mysql/swedish/errmsg.txt -@dirrm share/doc/mysql/Img -@dirrm share/doc/mysql -@dirrm share/mysql/czech -@dirrm share/mysql/danish -@dirrm share/mysql/dutch -@dirrm share/mysql/english -@dirrm share/mysql/estonia -@dirrm share/mysql/french -@dirrm share/mysql/german -@dirrm share/mysql/greek -@dirrm share/mysql/hungarian -@dirrm share/mysql/italian -@dirrm share/mysql/japanese -@dirrm share/mysql/korean -@dirrm share/mysql/norwegian -@dirrm share/mysql/norwegian-ny -@dirrm share/mysql/polish -@dirrm share/mysql/portuguese -@dirrm share/mysql/russian -@dirrm share/mysql/slovak -@dirrm share/mysql/spanish -@dirrm share/mysql/swedish -@dirrm share/mysql -@exec %D/bin/mysql_install_db -@exec /usr/bin/killall mysqld diff --git a/databases/mysql55-server/pkg-plist.client b/databases/mysql55-server/pkg-plist.client deleted file mode 100644 index 9eb893b7dd12..000000000000 --- a/databases/mysql55-server/pkg-plist.client +++ /dev/null @@ -1,32 +0,0 @@ -bin/mysql -bin/mysqladmin -bin/mysqldump -bin/mysqlimport -bin/mysqlshow -etc/rc.d/mysql-client.sh -include/mysql/dbug.h -include/mysql/errmsg.h -include/mysql/m_ctype.h -include/mysql/m_string.h -include/mysql/my_config.h -include/mysql/my_global.h -include/mysql/my_list.h -include/mysql/my_net.h -include/mysql/my_pthread.h -include/mysql/my_sys.h -include/mysql/mysql.h -include/mysql/mysql_com.h -include/mysql/mysql_version.h -include/mysql/mysqld_error.h -include/mysql/raid.h -include/mysql/sslopt-case.h -include/mysql/sslopt-longopts.h -include/mysql/sslopt-usage.h -include/mysql/sslopt-vars.h -lib/mysql/libmysqlclient.a -lib/mysql/libmysqlclient.so -lib/mysql/libmysqlclient.so.6 -@dirrm include/mysql -@dirrm lib/mysql -@exec /usr/bin/env OBJFORMAT=%%PORTOBJFORMAT%% /sbin/ldconfig -m %D/lib/mysql -@unexec /usr/bin/env OBJFORMAT=%%PORTOBJFORMAT%% /sbin/ldconfig -R diff --git a/databases/mysql60-client/Makefile b/databases/mysql60-client/Makefile deleted file mode 100644 index 8284511ecb0e..000000000000 --- a/databases/mysql60-client/Makefile +++ /dev/null @@ -1,17 +0,0 @@ -# ports collection makefile for: MySQL-client -# Date created: Thu Jun 24 00:12:22 CEST 1999 -# Whom: Dirk Froemberg <dirk@FreeBSD.org> -# -# $FreeBSD$ -# - -PORTNAME= ${MASTERPORTNAME:S/-server/-client/g} - -MASTERDIR= ${.CURDIR}/../mysql322-server -COMMENT= ${PKGDIR}/COMMENT.client -PKGINSTALL= mustnotexist -PLIST= ${PKGDIR}/PLIST.client - -CLIENT_ONLY= yes - -.include "${MASTERDIR}/Makefile" diff --git a/databases/mysql60-server/Makefile b/databases/mysql60-server/Makefile deleted file mode 100644 index 9a6c2a590256..000000000000 --- a/databases/mysql60-server/Makefile +++ /dev/null @@ -1,154 +0,0 @@ -# ports collection makefile for: MySQL-server -# Date created: 26 Jan 1998 -# Whom: Josh Tiefenbach <josh@ican.net> -# -# $FreeBSD$ -# - -PORTNAME?= ${MASTERPORTNAME} -PORTVERSION= 3.22.32 -CATEGORIES= databases -MASTER_SITES= http://www.fh-wolfenbuettel.de/ftp/pub/database/mysql/Downloads/MySQL-3.22/ \ - ftp://ftp.digex.net/pub/packages/database/mysql/Downloads/MySQL-3.22/ \ - ftp://ftp.plig.net/pub/mysql/Downloads/MySQL-3.22/ \ - ftp://ftp.sunet.se/pub/unix/databases/relational/mysql/Downloads/MySQL-3.22/ -DISTNAME= mysql-${PORTVERSION} - -MAINTAINER= dirk@FreeBSD.org - -Y2K= http://www.tcx.se/Manual_chapter/manual_Introduction.html#Year_2000_compliance - -SLAVEDIRS= databases/mysql322-client -MASTERPORTNAME= mysql-server -DB_DIR?= /var/db/mysql -USE_PERL5= yes -USE_LIBTOOL= yes -CONFIGURE_ARGS= --localstatedir=${DB_DIR} \ - --without-perl \ - --without-debug \ - --without-readline \ - --without-bench -.if ${MACHINE_ARCH} == "i386" -CONFIGURE_ARGS+=--enable-assembler -.endif -CONFIGURE_ENV+= PERL=${PERL} \ - PERL5=${PERL} \ - INSTALL_SCRIPT="${INSTALL_SCRIPT}" \ - CONFIGURE_ARGS="${CONFIGURE_ARGS}" - -# MySQL-Server part -.if !defined(CLIENT_ONLY) -RUN_DEPENDS= mysql:${PORTSDIR}/databases/mysql322-client - -.include <bsd.port.pre.mk> - -.if ${OSVERSION} >= 320000 -.if defined(MIT_PTHREADS) -CONFIGURE_ARGS+= --with-mit-threads=yes - -pre-fetch: - @${ECHO} - @${ECHO} "Using supplied mit-pthreads." - @${ECHO} -.else -CONFIGURE_ARGS+= --with-mit-threads=no - -pre-fetch: - @${ECHO} - @${ECHO} "Using native FreeBSD threads (libc_r)." - @${ECHO} - @${ECHO} "You may set MIT_PTHREADS (make MIT_PTHREADS=yes)" - @${ECHO} "to compile mysql with the supplied mit-pthreads." - @${ECHO} "(You don't want to set this unless you have a good reason)." - @${ECHO} -.endif -.elif ${OSVERSION} >= 300000 -.if defined(NATIVE_THREADS) -CONFIGURE_ARGS+= --with-mit-threads=no - -pre-fetch: - @${ECHO} - @${ECHO} "Using native FreeBSD threads (libc_r)." - @${ECHO} -.else -CONFIGURE_ARGS+= --with-mit-threads=yes - -pre-fetch: - @${ECHO} - @${ECHO} "Using supplied mit-pthreads." - @${ECHO} - @${ECHO} "You may set NATIVE_THREADS (make NATIVE_THREADS=yes)" - @${ECHO} "to compile mysql with the native FreeBSD threads (libc_r)." - @${ECHO} "Warning: There are some bugs in libc_r which prevent" - @${ECHO} " 'mysqladmin shutdown' from working properly and" - @${ECHO} " killing mysqld might not work." - @${ECHO} -.endif -.else -CONFIGURE_ARGS+= --with-mit-threads=yes - -pre-fetch: - @${ECHO} - @${ECHO} "Using supplied mit-pthreads." - @${ECHO} -.endif - -post-patch: - ${MV} ${WRKSRC}/strings/strings-x86.s ${WRKSRC}/strings/strings-x86.S - ${MV} ${WRKSRC}/strings/longlong2str-x86.s ${WRKSRC}/strings/longlong2str-x86.S - -pre-install: -.if !defined(PACKAGE_BUILDING) && exists(${DB_DIR}) && !defined(OVERWRITE_DB) - @${ECHO} "You appear to already have a mysql database directory in ${DB_DIR}." - @${ECHO} "" - @${ECHO} "In order to preserve your existing data, you should:" - @${ECHO} " - dump all your databases" - @${ECHO} " - kill mysql if it is running" - @${ECHO} " - delete the ${DB_DIR} directory" - @${ECHO} " - run 'make install'" - @${ECHO} " - start up mysql" - @${ECHO} " - re-create all of your database" - @${ECHO} " - re-load your data" - @${ECHO} "" - @${ECHO} "If you understand the consequences of this upgrade, please re-build this" - @${ECHO} "port with the environment variable OVERWRITE_DB defined." - @${FALSE} -.endif - -post-install: -.if !defined(PACKAGE_BUILDING) - ${PREFIX}/bin/mysql_install_db - @${SETENV} DB_DIR=${DB_DIR} ${SH} ${PKGINSTALL} ${PKGNAME} POST-INSTALL -.endif - @${SED} "s|%%PREFIX%%|${PREFIX}|g" < ${FILESDIR}/mysql-server.sh > ${PREFIX}/etc/rc.d/mysql-server.sh - @${CHMOD} 750 ${PREFIX}/etc/rc.d/mysql-server.sh - -.if !defined(NOPORTDOCS) - ${MKDIR} ${PREFIX}/share/doc/mysql/Img -.for doc in manual.html manual.ps manual_toc.html manual.txt manual.texi include.texi - ${INSTALL_DATA} ${WRKSRC}/Docs/${doc} ${PREFIX}/share/doc/mysql -.endfor - ${INSTALL_DATA} ${WRKSRC}/Docs/Img/*.gif ${PREFIX}/share/doc/mysql/Img - ${INSTALL_DATA} ${WRKSRC}/Docs/mysql.info ${PREFIX}/info - @install-info ${PREFIX}/info/mysql.info ${PREFIX}/info/dir -.endif - -.include <bsd.port.post.mk> - -# MySQL-Client part -.else -MAN1= mysql.1 - -CONFIGURE_ARGS+=--without-server -MAKE_ENV= CLIENT_ONLY="${CLIENT_ONLY}" - -post-install: - @${ECHO} "#!/bin/sh" > ${PREFIX}/etc/rc.d/mysql-client.sh - @${ECHO} "" >> ${PREFIX}/etc/rc.d/mysql-client.sh - @${ECHO} "${LDCONFIG} -m ${PREFIX}/lib/mysql" >> ${PREFIX}/etc/rc.d/mysql-client.sh - @${CHMOD} 750 ${PREFIX}/etc/rc.d/mysql-client.sh - - ${SETENV} OBJFORMAT=${PORTOBJFORMAT} ${LDCONFIG} -m ${PREFIX}/lib/mysql - -.include <bsd.port.mk> -.endif diff --git a/databases/mysql60-server/distinfo b/databases/mysql60-server/distinfo deleted file mode 100644 index edfe7eb2ff4a..000000000000 --- a/databases/mysql60-server/distinfo +++ /dev/null @@ -1 +0,0 @@ -MD5 (mysql-3.22.32.tar.gz) = 244e08d9a1f4b2ad799aa40ad3cc897a diff --git a/databases/mysql60-server/files/mysql-server.sh b/databases/mysql60-server/files/mysql-server.sh deleted file mode 100644 index 0ff5374c48f7..000000000000 --- a/databases/mysql60-server/files/mysql-server.sh +++ /dev/null @@ -1,18 +0,0 @@ -#!/bin/sh - -case "$1" in - start) - if [ -x %%PREFIX%%/bin/safe_mysqld ]; then - %%PREFIX%%/bin/safe_mysqld --user=mysql > /dev/null & && echo -n ' mysqld' - fi - ;; - stop) - /usr/bin/killall mysqld > /dev/null 2>&1 && echo -n ' mysqld' - ;; - *) - echo "" - echo "Usage: `basename $0` { start | stop }" - echo "" - exit 64 - ;; -esac diff --git a/databases/mysql60-server/files/patch-Makefile.in b/databases/mysql60-server/files/patch-Makefile.in deleted file mode 100644 index 00190736f765..000000000000 --- a/databases/mysql60-server/files/patch-Makefile.in +++ /dev/null @@ -1,15 +0,0 @@ ---- Makefile.in.orig Sat Jan 1 17:59:38 2000 -+++ Makefile.in Mon Jan 3 17:19:23 2000 -@@ -144,7 +144,11 @@ - # These are built from source in the Docs directory - EXTRA_DIST = INSTALL-SOURCE-GENERIC README PUBLIC INSTALL-SOURCE MIRRORS - --SUBDIRS = include @docs_dirs@ @readline_dir@ client @sql_server_dirs@ scripts tests man @bench_dirs@ support-files -+.if defined(CLIENT_ONLY) -+SUBDIRS = include @readline_dir@ client tests man -+.else -+SUBDIRS = include @docs_dirs@ @sql_server_dirs@ scripts @bench_dirs@ support-files -+.endif - - - # Relink after clean diff --git a/databases/mysql60-server/files/patch-ab b/databases/mysql60-server/files/patch-ab deleted file mode 100644 index 1fd66bbe0cad..000000000000 --- a/databases/mysql60-server/files/patch-ab +++ /dev/null @@ -1,33 +0,0 @@ ---- scripts/mysql_install_db.sh.orig Wed Jan 12 21:06:30 2000 -+++ scripts/mysql_install_db.sh Sun Mar 26 23:20:27 2000 -@@ -15,8 +15,6 @@ - force=0 - IN_RPM=0 - --# Are we doing an rpm install? --if test "$1" = "-IN-RPM"; then IN_RPM=1; shift; fi - if test "$1" = "--force"; then force=1; shift; fi - - # Get mysqld/safe_mysqld options from /etc/my.cnf or ~/.my.cnf -@@ -60,8 +58,6 @@ - fi - fi - --# On IRIX hostname is in /usr/bsd so add this to the path --PATH=$PATH:/usr/bsd - hostname=`hostname` # Install this too in the user table - - # Check if hostname is valid -@@ -255,12 +251,6 @@ - END_OF_DATA - then - echo "" -- if test "$IN_RPM" -eq 0 -- then -- echo "To start mysqld at boot time you have to copy support-files/mysql.server" -- echo "to the right place for your system" -- echo -- fi - echo "PLEASE REMEMBER TO SET A PASSWORD FOR THE MySQL root USER !" - echo "This is done with:" - echo "$bindir/mysqladmin -u root password 'new-password'" diff --git a/databases/mysql60-server/files/patch-af b/databases/mysql60-server/files/patch-af deleted file mode 100644 index 2593da4d1c64..000000000000 --- a/databases/mysql60-server/files/patch-af +++ /dev/null @@ -1,73 +0,0 @@ ---- scripts/safe_mysqld.sh.orig Fri May 14 11:11:46 1999 -+++ scripts/safe_mysqld.sh Tue Jun 8 11:14:02 1999 -@@ -12,33 +12,9 @@ - - trap '' 1 2 3 15 # we shouldn't let anyone kill us - --# Check if we are starting this relative (for the binary release) --if test -d ./data/mysql -a -f ./share/mysql/english/errmsg.sys -a \ -- -x ./bin/mysqld --then -- MY_BASEDIR_VERSION=`pwd` # Where bin, share and data are -- DATADIR=$MY_BASEDIR_VERSION/data # Where the databases are -- ledir=$MY_BASEDIR_VERSION/bin # Where mysqld is --# Check if this is a 'moved install directory' --elif test -f ./var/mysql/db.frm -a -f ./share/mysql/english/errmsg.sys -a \ -- -x ./libexec/mysqld --then -- MY_BASEDIR_VERSION=`pwd` # Where libexec, share and var are -- DATADIR=$MY_BASEDIR_VERSION/var # Where the databases are -- ledir=$MY_BASEDIR_VERSION/libexec # Where mysqld is --else -- MY_BASEDIR_VERSION=@prefix@ -- DATADIR=@localstatedir@ -- ledir=@libexecdir@ -- if test ! -x $ledir/mysqld -- then -- echo "The file $ledir/mysqld doesn't exist or is not executable" -- echo "Please do a cd to the mysql installation directory and restart" -- echo "this script from there as follows:" -- echo "./bin/safe_mysqld". -- exit 1; -- fi --fi -+MY_BASEDIR_VERSION=@prefix@ -+DATADIR=@localstatedir@ -+ledir=@libexecdir@ - - pid_file=$DATADIR/`@HOSTNAME@`.pid - log=$DATADIR/`@HOSTNAME@`.log -@@ -114,33 +90,6 @@ - if test ! -f $pid_file # This is removed if normal shutdown - then - break; -- fi -- if @IS_LINUX@ -- then -- # Test if one process was hanging. -- # This is only a fix for Linux (running as base 3 mysqld processes) -- # but should work for the rest of the servers. -- # The only thing is ps x => redhat 5 gives warnings when using ps -x. -- # kill -9 is used or the process won't react on the kill. -- numofproces=`ps x | grep -v "grep" | grep -c $ledir/mysqld` -- echo -e "\nNumber of processes running now: $numofproces" | tee -a $err_log -- I=1 -- while test "$I" -le "$numofproces" -- do -- PROC=`ps x | grep $ledir/mysqld | grep -v "grep" | tail -1` -- for T in $PROC -- do -- break -- done -- # echo "TEST $I - $T **" -- if kill -9 $T -- then -- echo "mysqld process hanging, pid $T - killed" | tee -a $err_log -- else -- break -- fi -- I=`expr $I + 1` -- done - fi - echo "mysqld restarted on " `date` | tee -a $err_log - done diff --git a/databases/mysql60-server/files/patch-ap b/databases/mysql60-server/files/patch-ap deleted file mode 100644 index 097b449a181a..000000000000 --- a/databases/mysql60-server/files/patch-ap +++ /dev/null @@ -1,11 +0,0 @@ ---- strings/Makefile.in.orig Sat Jan 1 18:00:30 2000 -+++ strings/Makefile.in Mon Jan 3 17:21:19 2000 -@@ -145,7 +145,7 @@ - INCLUDES = @MT_INCLUDES@ -I$(srcdir)/../include -I../include - pkglib_LIBRARIES = libmystrings.a - #no assembler --@ASSEMBLER_x86_TRUE@ASRCS = strings-x86.s longlong2str-x86.s -+@ASSEMBLER_x86_TRUE@ASRCS = strings-x86.S longlong2str-x86.S - @ASSEMBLER_x86_FALSE@@ASSEMBLER_sparc_TRUE@ASRCS = bmove_upp-sparc.s strappend-sparc.s strend-sparc.s strinstr-sparc.s strmake-sparc.s strmov-sparc.s strnmov-sparc.s strstr-sparc.s strxmov-sparc.s - @ASSEMBLER_x86_FALSE@@ASSEMBLER_sparc_FALSE@ASRCS = - # These file MUST all be on the same line!! Otherwise automake diff --git a/databases/mysql60-server/files/patch-aq b/databases/mysql60-server/files/patch-aq deleted file mode 100644 index 573324175921..000000000000 --- a/databases/mysql60-server/files/patch-aq +++ /dev/null @@ -1,13 +0,0 @@ ---- sql/Makefile.in.orig Sat Jan 1 18:01:13 2000 -+++ sql/Makefile.in Wed Jan 5 20:28:17 2000 -@@ -317,6 +317,10 @@ - else :; fi - sql_yacc.hh: sql_yacc.cc - -+# gcc takes a lot of memory and cpu time if it compiles sql_yacc.cc with -O -+sql_yacc.o: sql_yacc.cc -+ $(CXXCOMPILE) -O0 -c $< -+ - - # This directory's subdirectories are mostly independent; you can cd - # into them and run `make' without going through this Makefile. diff --git a/databases/mysql60-server/files/patch-as b/databases/mysql60-server/files/patch-as deleted file mode 100644 index 903bc9950a28..000000000000 --- a/databases/mysql60-server/files/patch-as +++ /dev/null @@ -1,16 +0,0 @@ ---- sql/mysqld.cc.orig Sun Feb 13 02:40:18 2000 -+++ sql/mysqld.cc Mon Feb 21 21:24:51 2000 -@@ -63,8 +63,11 @@ - inline void reset_floating_point_exceptions() - { - /* Don't fall for overflow, underflow,divide-by-zero or loss of precision */ -- fpsetmask(~(FP_X_INV | FP_X_DNML | FP_X_OFL | FP_X_UFL | -- FP_X_DZ | FP_X_IMP)); -+#if defined(__i386__) -+ fpsetmask(~(FP_X_INV | FP_X_DNML | FP_X_OFL | FP_X_UFL | FP_X_DZ | FP_X_IMP)); -+#else -+ fpsetmask(~(FP_X_INV | FP_X_OFL | FP_X_UFL | FP_X_DZ | FP_X_IMP)); -+#endif - } - #else - #define reset_floating_point_exceptions() diff --git a/databases/mysql60-server/files/patch-configure b/databases/mysql60-server/files/patch-configure deleted file mode 100644 index 133bd4200860..000000000000 --- a/databases/mysql60-server/files/patch-configure +++ /dev/null @@ -1,132 +0,0 @@ ---- configure.orig Sun Feb 13 03:46:09 2000 -+++ configure Wed May 3 12:20:25 2000 -@@ -2743,7 +2743,7 @@ - ;; - esac - fi --HOSTNAME="$ac_cv_path_HOSTNAME" -+HOSTNAME="$ac_cv_path_HOSTNAME -s" - if test -n "$HOSTNAME"; then - echo "$ac_t""$HOSTNAME" 1>&6 - else -@@ -2871,30 +2871,7 @@ - echo $ac_n "checking "how to check if pid exists"""... $ac_c" 1>&6 - echo "configure:2873: checking "how to check if pid exists"" >&5 - PS=$ac_cv_path_PS --# Linux style --if $PS p $$ 2> /dev/null | grep $0 > /dev/null --then -- FIND_PROC="$PS p \$\$PID | grep mysqld > /dev/null" --# Solaris --elif $PS -p $$ 2> /dev/null | grep $0 > /dev/null --then -- FIND_PROC="$PS -p \$\$PID | grep mysqld > /dev/null" --# BSD style --elif $PS -uaxww 2> /dev/null | grep $0 > /dev/null --then -- FIND_PROC="$PS -uaxww | grep mysqld | grep \" \$\$PID \" > /dev/null" --# SysV style --elif $PS -ef 2> /dev/null | grep $0 > /dev/null --then -- FIND_PROC="$PS -ef | grep mysqld | grep \" \$\$PID \" > /dev/null" --# Do anybody use this? --elif $PS $$ 2> /dev/null | grep $0 > /dev/null --then -- FIND_PROC="$PS \$\$PID | grep mysqld > /dev/null" --else -- { echo "configure: error: Could not find the right ps switches. Which OS is this ?. See the Installation chapter in the Reference Manual." 1>&2; exit 1; } --fi -- -+FIND_PROC="$PS -uaxww | grep mysqld | grep \" \$\$PID \" > /dev/null" - echo "$ac_t"""$FIND_PROC"" 1>&6 - - # Check if a pid is valid -@@ -4646,8 +4623,6 @@ - #define $ac_tr_lib 1 - EOF - -- LIBS="-lc_r $LIBS" -- - else - echo "$ac_t""no" 1>&6 - fi -@@ -4881,28 +4856,6 @@ - fi - - --# Build optimized or debug version ? --# First check for gcc and g++ --if test "$ac_cv_prog_gcc" = "yes" --then -- DEBUG_CFLAGS="-g" -- DEBUG_OPTIMIZE_CC="-O" -- OPTIMIZE_CFLAGS="-O6" --else -- DEBUG_CFLAGS="-g" -- DEBUG_OPTIMIZE_CC="" -- OPTIMIZE_CFLAGS="-O" --fi --if test "$ac_cv_prog_cxx_g" = "yes" --then -- DEBUG_CXXFLAGS="-g" -- DEBUG_OPTIMIZE_CXX="-O" -- OPTIMIZE_CXXFLAGS="-O3" --else -- DEBUG_CXXFLAGS="-g" -- DEBUG_OPTIMIZE_CXX="" -- OPTIMIZE_CXXFLAGS="-O" --fi - # Check whether --with-debug or --without-debug was given. - if test "${with_debug+set}" = set; then - withval="$with_debug" -@@ -5615,10 +5568,6 @@ - ac_link='${CXX-g++} -o conftest${ac_exeext} $CXXFLAGS $CPPFLAGS $LDFLAGS conftest.$ac_ext $LIBS 1>&5' - cross_compiling=$ac_cv_prog_cxx_cross - --if test "$ac_cv_prog_gxx" = "yes" --then -- CXXFLAGS="$CXXFLAGS -Werror" --fi - mysql_cv_btype_last_arg_accept=none - cat > conftest.$ac_ext <<EOF - #line 5625 "configure" -@@ -7655,10 +7604,6 @@ - ac_link='${CXX-g++} -o conftest${ac_exeext} $CXXFLAGS $CPPFLAGS $LDFLAGS conftest.$ac_ext $LIBS 1>&5' - cross_compiling=$ac_cv_prog_cxx_cross - --if test "$ac_cv_prog_gxx" = "yes" --then -- CXXFLAGS="$CXXFLAGS -Werror" --fi - cat > conftest.$ac_ext <<EOF - #line 7664 "configure" - #include "confdefs.h" -@@ -7721,10 +7666,6 @@ - ac_link='${CXX-g++} -o conftest${ac_exeext} $CXXFLAGS $CPPFLAGS $LDFLAGS conftest.$ac_ext $LIBS 1>&5' - cross_compiling=$ac_cv_prog_cxx_cross - --if test "$ac_cv_prog_gxx" = "yes" --then -- CXXFLAGS="$CXXFLAGS -Werror" --fi - cat > conftest.$ac_ext <<EOF - #line 7730 "configure" - #include "confdefs.h" -@@ -8005,7 +7946,7 @@ - #include <pthread.h> - int main() { - pthread_attr_t thr_attr; --pthread_attr_setscope(&thr_attr,0); -+XXXpthread_attr_setscope(&thr_attr,0); - ; return 0; } - EOF - if { (eval echo configure:8012: \"$ac_link\") 1>&5; (eval $ac_link) 2>&5; } && test -s conftest${ac_exeext}; then -@@ -8210,7 +8151,7 @@ - echo "" - echo "Configuring MIT Pthreads" - # We will never install so installation paths are not needed. -- (cd mit-pthreads; sh ./configure) -+ (cd mit-pthreads; sh ./configure ${CONFIGURE_ARGS}) - echo "End of MIT Pthreads configuration" - echo "" - fi diff --git a/databases/mysql60-server/files/patch-include::Makefile.in b/databases/mysql60-server/files/patch-include::Makefile.in deleted file mode 100644 index ed7654838e66..000000000000 --- a/databases/mysql60-server/files/patch-include::Makefile.in +++ /dev/null @@ -1,14 +0,0 @@ ---- include/Makefile.in.orig Sat Jan 1 17:59:41 2000 -+++ include/Makefile.in Wed Jan 5 21:04:23 2000 -@@ -259,7 +259,11 @@ - - install-am: all-am - @$(MAKE) $(AM_MAKEFLAGS) install-exec-am install-data-am -+.if defined(CLIENT_ONLY) - install: install-am -+.else -+install: -+.endif - uninstall-am: uninstall-pkgincludeHEADERS - uninstall: uninstall-am - all-am: Makefile $(HEADERS) all-local diff --git a/databases/mysql60-server/pkg-comment b/databases/mysql60-server/pkg-comment deleted file mode 100644 index 2e29c8d2b15b..000000000000 --- a/databases/mysql60-server/pkg-comment +++ /dev/null @@ -1 +0,0 @@ -Multithreaded SQL database (server) diff --git a/databases/mysql60-server/pkg-comment.client b/databases/mysql60-server/pkg-comment.client deleted file mode 100644 index cd0c61571cfb..000000000000 --- a/databases/mysql60-server/pkg-comment.client +++ /dev/null @@ -1 +0,0 @@ -Multithreaded SQL database (client) diff --git a/databases/mysql60-server/pkg-descr b/databases/mysql60-server/pkg-descr deleted file mode 100644 index e21208271cdb..000000000000 --- a/databases/mysql60-server/pkg-descr +++ /dev/null @@ -1,10 +0,0 @@ -mySQL is a multithreaded (using MIT pthreads) SQL database with a command -syntax very similar to mSQL. For more information see http://www.tcx.se - -Note: This port does *not* build the perl5 module. To do so, refer to the -file ${WRKSRC}/INSTALL-SOURCE, in particular, the notes on FreeBSD systems. - -josh -josh@ican.net - -WWW: http://www.mysql.com/ diff --git a/databases/mysql60-server/pkg-install b/databases/mysql60-server/pkg-install deleted file mode 100644 index 3e925021ede1..000000000000 --- a/databases/mysql60-server/pkg-install +++ /dev/null @@ -1,41 +0,0 @@ -#!/bin/sh - -PATH=/bin:/usr/sbin -if [ -z "${DB_DIR}" ]; then - DB_DIR=/var/db/mysql -fi - -case $2 in -POST-INSTALL) - USER=mysql - GROUP=${USER} - UID=88 - GID=${UID} - - if pw group show "${GROUP}" 2>/dev/null; then - echo "You already have a group \"${GROUP}\", so I will use it." - else - if pw groupadd ${GROUP} -g ${GID}; then - echo "Added group \"${GROUP}\"." - else - echo "Adding group \"${GROUP}\" failed..." - exit 1 - fi - fi - - if pw user show "${USER}" 2>/dev/null; then - echo "You already have a user \"${USER}\", so I will use it." - else - if pw useradd ${USER} -u ${UID} -g ${GROUP} -h - \ - -d ${DB_DIR} -s /sbin/nologin -c "MySQL Daemon" - then - echo "Added user \"${USER}\"." - else - echo "Adding user \"${USER}\" failed..." - exit 1 - fi - fi - - chown -R ${USER}.${GROUP} ${DB_DIR} - ;; -esac diff --git a/databases/mysql60-server/pkg-plist b/databases/mysql60-server/pkg-plist deleted file mode 100644 index 7c89ce913312..000000000000 --- a/databases/mysql60-server/pkg-plist +++ /dev/null @@ -1,148 +0,0 @@ -bin/comp_err -bin/isamchk -bin/isamlog -bin/msql2mysql -bin/mysql_find_rows -bin/mysql_fix_privilege_tables -bin/mysql_install_db -bin/mysql_setpermission -bin/mysql_zap -bin/mysqlaccess -bin/mysqlbug -bin/mysqlhotcopy -bin/perror -bin/print_defaults -bin/replace -bin/resolveip -bin/safe_mysqld -etc/rc.d/mysql-server.sh -@unexec install-info --delete %D/info/mysql.info %D/info/dir -info/mysql.info -@exec install-info %D/info/mysql.info %D/info/dir -lib/mysql/libdbug.a -lib/mysql/libheap.a -lib/mysql/libmerge.a -lib/mysql/libmystrings.a -lib/mysql/libmysys.a -lib/mysql/libnisam.a -libexec/mysqld -share/doc/mysql/Img/australia.gif -share/doc/mysql/Img/austria.gif -share/doc/mysql/Img/brazil.gif -share/doc/mysql/Img/bulgaria.gif -share/doc/mysql/Img/canada.gif -share/doc/mysql/Img/chile.gif -share/doc/mysql/Img/china.gif -share/doc/mysql/Img/croatia.gif -share/doc/mysql/Img/czech-republic.gif -share/doc/mysql/Img/denmark.gif -share/doc/mysql/Img/estonia.gif -share/doc/mysql/Img/finland.gif -share/doc/mysql/Img/france.gif -share/doc/mysql/Img/germany.gif -share/doc/mysql/Img/great-britain.gif -share/doc/mysql/Img/greece.gif -share/doc/mysql/Img/html-fs.gif -share/doc/mysql/Img/hungary.gif -share/doc/mysql/Img/iceland.gif -share/doc/mysql/Img/ireland.gif -share/doc/mysql/Img/island.gif -share/doc/mysql/Img/israel.gif -share/doc/mysql/Img/italy.gif -share/doc/mysql/Img/japan.gif -share/doc/mysql/Img/kroatia.gif -share/doc/mysql/Img/mysql-logo.gif -share/doc/mysql/Img/mysql5.gif -share/doc/mysql/Img/netherlands.gif -share/doc/mysql/Img/poland.gif -share/doc/mysql/Img/portugal.gif -share/doc/mysql/Img/romania.gif -share/doc/mysql/Img/russia.gif -share/doc/mysql/Img/singapore.gif -share/doc/mysql/Img/south-africa.gif -share/doc/mysql/Img/south-africa1.gif -share/doc/mysql/Img/south-korea.gif -share/doc/mysql/Img/spain.gif -share/doc/mysql/Img/sweden.gif -share/doc/mysql/Img/switzerland.gif -share/doc/mysql/Img/taiwan.gif -share/doc/mysql/Img/tcxlogo3.gif -share/doc/mysql/Img/ukraine.gif -share/doc/mysql/Img/usa.gif -share/doc/mysql/include.texi -share/doc/mysql/manual.html -share/doc/mysql/manual.ps -share/doc/mysql/manual.texi -share/doc/mysql/manual.txt -share/doc/mysql/manual_toc.html -share/mysql/binary-configure -share/mysql/czech/errmsg.sys -share/mysql/czech/errmsg.txt -share/mysql/danish/errmsg.sys -share/mysql/danish/errmsg.txt -share/mysql/dutch/errmsg.sys -share/mysql/dutch/errmsg.txt -share/mysql/english/errmsg.sys -share/mysql/english/errmsg.txt -share/mysql/estonia/errmsg.sys -share/mysql/estonia/errmsg.txt -share/mysql/french/errmsg.sys -share/mysql/french/errmsg.txt -share/mysql/german/errmsg.sys -share/mysql/german/errmsg.txt -share/mysql/greek/errmsg.sys -share/mysql/greek/errmsg.txt -share/mysql/hungarian/errmsg.sys -share/mysql/hungarian/errmsg.txt -share/mysql/italian/errmsg.sys -share/mysql/italian/errmsg.txt -share/mysql/japanese/errmsg.sys -share/mysql/japanese/errmsg.txt -share/mysql/korean/errmsg.sys -share/mysql/korean/errmsg.txt -share/mysql/make_binary_distribution -share/mysql/my-example.cnf -share/mysql/mysql-3.22.32.spec -share/mysql/mysql-log-rotate -share/mysql/mysql.server -share/mysql/norwegian-ny/errmsg.sys -share/mysql/norwegian-ny/errmsg.txt -share/mysql/norwegian/errmsg.sys -share/mysql/norwegian/errmsg.txt -share/mysql/polish/errmsg.sys -share/mysql/polish/errmsg.txt -share/mysql/portuguese/errmsg.sys -share/mysql/portuguese/errmsg.txt -share/mysql/russian/errmsg.sys -share/mysql/russian/errmsg.txt -share/mysql/slovak/errmsg.sys -share/mysql/slovak/errmsg.txt -share/mysql/spanish/errmsg.sys -share/mysql/spanish/errmsg.txt -share/mysql/swedish/errmsg.sys -share/mysql/swedish/errmsg.txt -@dirrm share/doc/mysql/Img -@dirrm share/doc/mysql -@dirrm share/mysql/czech -@dirrm share/mysql/danish -@dirrm share/mysql/dutch -@dirrm share/mysql/english -@dirrm share/mysql/estonia -@dirrm share/mysql/french -@dirrm share/mysql/german -@dirrm share/mysql/greek -@dirrm share/mysql/hungarian -@dirrm share/mysql/italian -@dirrm share/mysql/japanese -@dirrm share/mysql/korean -@dirrm share/mysql/norwegian -@dirrm share/mysql/norwegian-ny -@dirrm share/mysql/polish -@dirrm share/mysql/portuguese -@dirrm share/mysql/russian -@dirrm share/mysql/slovak -@dirrm share/mysql/spanish -@dirrm share/mysql/swedish -@dirrm share/mysql -@exec %D/bin/mysql_install_db -@exec /usr/bin/killall mysqld diff --git a/databases/mysql60-server/pkg-plist.client b/databases/mysql60-server/pkg-plist.client deleted file mode 100644 index 9eb893b7dd12..000000000000 --- a/databases/mysql60-server/pkg-plist.client +++ /dev/null @@ -1,32 +0,0 @@ -bin/mysql -bin/mysqladmin -bin/mysqldump -bin/mysqlimport -bin/mysqlshow -etc/rc.d/mysql-client.sh -include/mysql/dbug.h -include/mysql/errmsg.h -include/mysql/m_ctype.h -include/mysql/m_string.h -include/mysql/my_config.h -include/mysql/my_global.h -include/mysql/my_list.h -include/mysql/my_net.h -include/mysql/my_pthread.h -include/mysql/my_sys.h -include/mysql/mysql.h -include/mysql/mysql_com.h -include/mysql/mysql_version.h -include/mysql/mysqld_error.h -include/mysql/raid.h -include/mysql/sslopt-case.h -include/mysql/sslopt-longopts.h -include/mysql/sslopt-usage.h -include/mysql/sslopt-vars.h -lib/mysql/libmysqlclient.a -lib/mysql/libmysqlclient.so -lib/mysql/libmysqlclient.so.6 -@dirrm include/mysql -@dirrm lib/mysql -@exec /usr/bin/env OBJFORMAT=%%PORTOBJFORMAT%% /sbin/ldconfig -m %D/lib/mysql -@unexec /usr/bin/env OBJFORMAT=%%PORTOBJFORMAT%% /sbin/ldconfig -R diff --git a/databases/namazu2/Makefile b/databases/namazu2/Makefile deleted file mode 100644 index 642143e05ecb..000000000000 --- a/databases/namazu2/Makefile +++ /dev/null @@ -1,36 +0,0 @@ -# New ports collection makefile for: namazu2 -# Date created: 25 February 2000 -# Whom: Akinori MUSHA aka knu <knu@idaemons.org> -# -# $FreeBSD$ -# - -PORTNAME= namazu2 -PORTVERSION= 2.0.4 -CATEGORIES= japanese textproc -MASTER_SITES= http://www.namazu.org/stable/ -DISTNAME= namazu-${PORTVERSION} - -MAINTAINER= knu@FreeBSD.org - -LIB_DEPENDS= intl.1:${PORTSDIR}/devel/gettext -BUILD_DEPENDS= ${PM_BASE}/File/MMagic.pm:${PORTSDIR}/devel/p5-File-MMagic \ - ${PM_BASE}/${PERL_ARCH}/Text/Kakasi.pm:${PORTSDIR}/japanese/p5-Text-Kakasi \ - ${PM_BASE}/${PERL_ARCH}/NKF.pm:${PORTSDIR}/japanese/p5-nkf -RUN_DEPENDS= ${PM_BASE}/File/MMagic.pm:${PORTSDIR}/devel/p5-File-MMagic \ - ${PM_BASE}/${PERL_ARCH}/Text/Kakasi.pm:${PORTSDIR}/japanese/p5-Text-Kakasi \ - ${PM_BASE}/${PERL_ARCH}/NKF.pm:${PORTSDIR}/japanese/p5-nkf \ - xlHtml:${PORTSDIR}/textproc/xlhtml - -PM_BASE= ${LOCALBASE}/lib/perl5/site_perl/${PERL_VER} - -USE_PERL5= yes -GNU_CONFIGURE= yes - -MAN1= namazu.1 mknmz.1 -INSTALLS_SHLIB= yes - -post-install: - ${LN} -sf ${PREFIX}/lib/libnmz.so.3 ${PREFIX}/lib/libnmz.so - -.include <bsd.port.mk> diff --git a/databases/namazu2/distinfo b/databases/namazu2/distinfo deleted file mode 100644 index 6d3d0ac85976..000000000000 --- a/databases/namazu2/distinfo +++ /dev/null @@ -1 +0,0 @@ -MD5 (namazu-2.0.4.tar.gz) = 87d6cf116985bf2d54087a84bc91f1ee diff --git a/databases/namazu2/pkg-comment b/databases/namazu2/pkg-comment deleted file mode 100644 index 499ef7ca2909..000000000000 --- a/databases/namazu2/pkg-comment +++ /dev/null @@ -1 +0,0 @@ -Full-text search system intended for easy use diff --git a/databases/namazu2/pkg-descr b/databases/namazu2/pkg-descr deleted file mode 100644 index 257eecc254b4..000000000000 --- a/databases/namazu2/pkg-descr +++ /dev/null @@ -1,7 +0,0 @@ -Namazu is a full-text search system intended for easy use. Not only it works -as a CGI program for a small or medium scale Web search engine, but also works -as a personal use search system for your pile of emails. - -(The Japanese word `Namazu' means `catfish' in English) - -WWW: http://www.namazu.org/ diff --git a/databases/namazu2/pkg-plist b/databases/namazu2/pkg-plist deleted file mode 100644 index 68f4147dfb5b..000000000000 --- a/databases/namazu2/pkg-plist +++ /dev/null @@ -1,101 +0,0 @@ -bin/bnamazu -bin/gcnmz -bin/kwnmz -bin/mailutime -bin/mknmz -bin/namazu -bin/nmz-config -bin/nmzgrep -bin/rfnmz -bin/vfnmz -etc/namazu/mknmzrc-sample -etc/namazu/namazurc-sample -@dirrm etc/namazu -include/namazu/codeconv.h -include/namazu/field.h -include/namazu/hlist.h -include/namazu/i18n.h -include/namazu/idxname.h -include/namazu/l10n-ja.h -include/namazu/libnamazu.h -include/namazu/parser.h -include/namazu/query.h -include/namazu/re.h -include/namazu/regex.h -include/namazu/search.h -include/namazu/util.h -include/namazu/var.h -include/namazu/wakati.h -@dirrm include/namazu -lib/libnmz.a -lib/libnmz.la -lib/libnmz.so -lib/libnmz.so.3 -libexec/namazu.cgi -share/locale/ja/LC_MESSAGES/namazu.mo -share/locale/ja_JP.SJIS/LC_MESSAGES/namazu.mo -share/namazu/doc/en/manual.html -share/namazu/doc/en/nmz.html -share/namazu/doc/en/tips.html -share/namazu/doc/en/tutorial.html -@dirrm share/namazu/doc/en -share/namazu/doc/ja/manual.html -share/namazu/doc/ja/nmz.html -share/namazu/doc/ja/tips.html -share/namazu/doc/ja/tutorial.html -@dirrm share/namazu/doc/ja -share/namazu/doc/namazu.css -@dirrm share/namazu/doc -share/namazu/etc/CREDITS -share/namazu/etc/ChangeLog.1 -share/namazu/etc/INSTALL-ja -share/namazu/etc/README-ja -share/namazu/etc/namazu.png -share/namazu/etc/namazu.spec -share/namazu/etc/namazu.spec.in -@dirrm share/namazu/etc -share/namazu/filter/bzip2.pl -share/namazu/filter/compress.pl -share/namazu/filter/excel.pl -share/namazu/filter/gfilter.pl -share/namazu/filter/gzip.pl -share/namazu/filter/hnf.pl -share/namazu/filter/html.pl -share/namazu/filter/mailnews.pl -share/namazu/filter/man.pl -share/namazu/filter/mhonarc.pl -share/namazu/filter/msword.pl -share/namazu/filter/pdf.pl -share/namazu/filter/powerpoint.pl -share/namazu/filter/rfc.pl -share/namazu/filter/taro.pl -share/namazu/filter/tex.pl -@dirrm share/namazu/filter -share/namazu/pl/codeconv.pl -share/namazu/pl/conf.pl -share/namazu/pl/gettext.pl -share/namazu/pl/htmlsplit.pl -share/namazu/pl/nmzidx.pl -share/namazu/pl/seed.pl -share/namazu/pl/usage.pl -share/namazu/pl/util.pl -share/namazu/pl/var.pl -share/namazu/pl/wakati.pl -@dirrm share/namazu/pl -share/namazu/template/NMZ.body -share/namazu/template/NMZ.body.ja -share/namazu/template/NMZ.foot -share/namazu/template/NMZ.foot.ja -share/namazu/template/NMZ.head -share/namazu/template/NMZ.head.ja -share/namazu/template/NMZ.result.normal -share/namazu/template/NMZ.result.normal.ja -share/namazu/template/NMZ.result.short -share/namazu/template/NMZ.result.short.ja -share/namazu/template/NMZ.tips -share/namazu/template/NMZ.tips.ja -@dirrm share/namazu/template -@dirrm share/namazu -@unexec rmdir %D/var/namazu/index 2>/dev/null || true -@unexec rmdir %D/var/namazu 2>/dev/null || true -@unexec rmdir %D/var 2>/dev/null || true diff --git a/databases/p5-DBD-Pg-13/Makefile b/databases/p5-DBD-Pg-13/Makefile deleted file mode 100644 index cbe362cf3ff7..000000000000 --- a/databases/p5-DBD-Pg-13/Makefile +++ /dev/null @@ -1,30 +0,0 @@ -# New ports collection makefile for: p5-DBD-Pg -# Date created: June 17th 1997 -# Whom: James FitzGibbon <jfitz@FreeBSD.org> -# -# $FreeBSD$ -# - -PORTNAME= DBD-Pg -PORTVERSION= 0.93 -CATEGORIES= databases perl5 -MASTER_SITES= ${MASTER_SITE_PERL_CPAN} -MASTER_SITE_SUBDIR= DBD -PKGNAMEPREFIX= p5- - -MAINTAINER= jfitz@FreeBSD.org - -BUILD_DEPENDS= ${LOCALBASE}/lib/perl5/site_perl/${PERL_VER}/${PERL_ARCH}/DBI.pm:${PORTSDIR}/databases/p5-DBI -LIB_DEPENDS= pq.2:${PORTSDIR}/databases/postgresql - -USE_PERL5= yes -MAKE_ENV= POSTGRES_INCLUDE=${PREFIX}/pgsql/include POSTGRES_LIB=${PREFIX}/pgsql/lib - -MANPREFIX= ${PREFIX}/lib/perl5/${PERL_VERSION} -MAN3= DBD::Pg.3 DBD::dbd-pg.3 - -do-configure: - @cd ${WRKSRC}; ${SETENV} ${MAKE_ENV} ${PERL5} Makefile.PL \ - CC="${CC}" CCFLAGS="${CFLAGS}" - -.include <bsd.port.mk> diff --git a/databases/p5-DBD-Pg-13/distinfo b/databases/p5-DBD-Pg-13/distinfo deleted file mode 100644 index 82630c5538bf..000000000000 --- a/databases/p5-DBD-Pg-13/distinfo +++ /dev/null @@ -1 +0,0 @@ -MD5 (DBD-Pg-0.93.tar.gz) = 4ba4751ce0edc4275760bdb9ed27c945 diff --git a/databases/p5-DBD-Pg-13/pkg-comment b/databases/p5-DBD-Pg-13/pkg-comment deleted file mode 100644 index cd10dc28f2eb..000000000000 --- a/databases/p5-DBD-Pg-13/pkg-comment +++ /dev/null @@ -1 +0,0 @@ -Provides access to PostgreSQL databases through the DBI diff --git a/databases/p5-DBD-Pg-13/pkg-descr b/databases/p5-DBD-Pg-13/pkg-descr deleted file mode 100644 index 3e8efc710401..000000000000 --- a/databases/p5-DBD-Pg-13/pkg-descr +++ /dev/null @@ -1,4 +0,0 @@ - DBD::Pg is an extension to Perl which allows access to - PostgreSQL databases. It is built on top of the standard - DBI extension and implements some of the methods that DBI - defines. diff --git a/databases/p5-DBD-Pg-13/pkg-plist b/databases/p5-DBD-Pg-13/pkg-plist deleted file mode 100644 index 5da046c0fc63..000000000000 --- a/databases/p5-DBD-Pg-13/pkg-plist +++ /dev/null @@ -1,7 +0,0 @@ -lib/perl5/site_perl/%%PERL_VER%%/%%PERL_ARCH%%/DBD/Pg.pm -lib/perl5/site_perl/%%PERL_VER%%/%%PERL_ARCH%%/DBD/dbd-pg.pod -lib/perl5/site_perl/%%PERL_VER%%/%%PERL_ARCH%%/auto/DBD/Pg/Pg.bs -lib/perl5/site_perl/%%PERL_VER%%/%%PERL_ARCH%%/auto/DBD/Pg/Pg.so -lib/perl5/site_perl/%%PERL_VER%%/%%PERL_ARCH%%/auto/DBD/Pg/.packlist -@dirrm lib/perl5/site_perl/%%PERL_VER%%/%%PERL_ARCH%%/auto/DBD/Pg -@unexec rmdir %D/lib/perl5/site_perl/%%PERL_VER%%/%%PERL_ARCH%%/auto/DBD 2>/dev/null || true diff --git a/databases/p5-DBD-mysql/Makefile b/databases/p5-DBD-mysql/Makefile deleted file mode 100644 index c3f0ea7135e0..000000000000 --- a/databases/p5-DBD-mysql/Makefile +++ /dev/null @@ -1,39 +0,0 @@ -# New ports collection makefile for: p5-Mysql-modules -# Date created: September 29th 1996 -# Whom: James FitzGibbon <jfitz@FreeBSD.org> -# -# $FreeBSD$ -# - -PORTNAME= Mysql-modules -PORTVERSION= 1.2213 -CATEGORIES= databases perl5 -MASTER_SITES= ${MASTER_SITE_PERL_CPAN} -MASTER_SITE_SUBDIR= DBD -DISTNAME= Msql-Mysql-modules-${PORTVERSION} -PKGNAMEPREFIX= p5- - -MAINTAINER= jedgar@FreeBSD.org - -BUILD_DEPENDS= ${LOCALBASE}/lib/perl5/site_perl/${PERL_VER}/Data/ShowTable.pm:${PORTSDIR}/devel/p5-Data-ShowTable \ - ${LOCALBASE}/lib/perl5/site_perl/${PERL_VER}/${PERL_ARCH}/DBI.pm:${PORTSDIR}/databases/p5-DBI -RUN_DEPENDS= ${BUILD_DEPENDS} -LIB_DEPENDS= mysqlclient.6:${PORTSDIR}/databases/mysql322-client - -Y2K= http://forteviot.symbolstone.org/technology/perl/DBI/doc/faq.html - -CONFIGURE_ARGS= PREFIX=${PREFIX} CC="${CC}" CCFLAGS="${CFLAGS}" \ - --noprompt --mysql-install --nomsql-install -CONFIGURE_ENV= MYSQL_HOME=${PREFIX} IN_MYSQL_DISTRIBUTION=1 -USE_PERL5= yes - -MAN1= dbimon.1 -MAN3= Bundle::DBD::mysql.3 \ - DBD::mysql.3 \ - Mysql.3 -MAN3PREFIX= ${PREFIX}/lib/perl5/${PERL_VERSION} - -do-configure: - @cd ${WRKSRC}; ${SETENV} ${CONFIGURE_ENV} ${PERL5} Makefile.PL ${CONFIGURE_ARGS} - -.include <bsd.port.mk> diff --git a/databases/p5-DBD-mysql/distinfo b/databases/p5-DBD-mysql/distinfo deleted file mode 100644 index ca95a67d8509..000000000000 --- a/databases/p5-DBD-mysql/distinfo +++ /dev/null @@ -1 +0,0 @@ -MD5 (Msql-Mysql-modules-1.2213.tar.gz) = cde76c75aeec693af7e16def40dd249a diff --git a/databases/p5-DBD-mysql/pkg-comment b/databases/p5-DBD-mysql/pkg-comment deleted file mode 100644 index a2e381f8ae1a..000000000000 --- a/databases/p5-DBD-mysql/pkg-comment +++ /dev/null @@ -1 +0,0 @@ -Perl5 modules for accessing MySQL databases diff --git a/databases/p5-DBD-mysql/pkg-descr b/databases/p5-DBD-mysql/pkg-descr deleted file mode 100644 index 97d8a690551c..000000000000 --- a/databases/p5-DBD-mysql/pkg-descr +++ /dev/null @@ -1,13 +0,0 @@ -Mysql.pm and DBD::mysql implement two different approaches to -communicate with an MySQL server. DBD::mysql is built upon the DBI, the -generic Perl Database Interface. It brings you an identical interface -to a broad variety of databases and is in this regard comparable to -ODBC. The advantage of the DBI approach is portability and -interoperability. Msql.pm is the elder species. It was written before -DBI was available but it was inspired by an early draft of the DBI -specification. As it has been circulating longer it is more mature and -pretty stable. It's also more complete than DBD::mysql. - -Some day in the future DBD::mysql will probably be the clearly superior -competitor in this package. Today you have to decide on your own about -the trade-offs. diff --git a/databases/p5-DBD-mysql/pkg-plist b/databases/p5-DBD-mysql/pkg-plist deleted file mode 100644 index cebf02907e5a..000000000000 --- a/databases/p5-DBD-mysql/pkg-plist +++ /dev/null @@ -1,14 +0,0 @@ -bin/dbimon -lib/perl5/site_perl/%%PERL_VER%%/%%PERL_ARCH%%/Mysql.pm -lib/perl5/site_perl/%%PERL_VER%%/%%PERL_ARCH%%/Bundle/DBD/mysql.pm -lib/perl5/site_perl/%%PERL_VER%%/%%PERL_ARCH%%/DBD/mysql.pm -lib/perl5/site_perl/%%PERL_VER%%/%%PERL_ARCH%%/Mysql/Statement.pm -lib/perl5/site_perl/%%PERL_VER%%/%%PERL_ARCH%%/auto/DBD/mysql/mysql.bs -lib/perl5/site_perl/%%PERL_VER%%/%%PERL_ARCH%%/auto/DBD/mysql/mysql.so -lib/perl5/site_perl/%%PERL_VER%%/%%PERL_ARCH%%/auto/Msql-Mysql-modules/.packlist -@dirrm lib/perl5/site_perl/%%PERL_VER%%/%%PERL_ARCH%%/auto/DBD/mysql -@dirrm lib/perl5/site_perl/%%PERL_VER%%/%%PERL_ARCH%%/auto/Msql-Mysql-modules -@dirrm lib/perl5/site_perl/%%PERL_VER%%/%%PERL_ARCH%%/Mysql -@dirrm lib/perl5/site_perl/%%PERL_VER%%/%%PERL_ARCH%%/Bundle/DBD -@unexec rmdir %D/lib/perl5/site_perl/%%PERL_VER%%/%%PERL_ARCH%%/Bundle 2>/dev/null || true -@unexec rmdir %D/lib/perl5/site_perl/%%PERL_VER%%/%%PERL_ARCH%%/auto/DBD 2>/dev/null || true diff --git a/databases/p5-DBI-137/Makefile b/databases/p5-DBI-137/Makefile deleted file mode 100644 index c687ab6ceb7d..000000000000 --- a/databases/p5-DBI-137/Makefile +++ /dev/null @@ -1,40 +0,0 @@ -# New ports collection makefile for: p5-DBI -# Date created: October 17th 1996 -# Whom: James FitzGibbon <jfitz@FreeBSD.org> -# -# $FreeBSD$ -# - -PORTNAME= DBI -PORTVERSION= 1.13 -CATEGORIES= databases perl5 -MASTER_SITES= ${MASTER_SITE_PERL_CPAN} -MASTER_SITE_SUBDIR= DBI -PKGNAMEPREFIX= p5- - -MAINTAINER= vanilla@FreeBSD.org - -BUILD_DEPENDS= ${LOCALBASE}/lib/perl5/site_perl/${PERL_VER}/RPC/PlServer.pm:${PORTSDIR}/net/p5-PlRPC - -USE_PERL5= yes - -MAN1= dbiproxy.1 \ - dbish.1 -MAN3= Bundle::DBI.3 \ - DBD::ADO.3 \ - DBD::Proxy.3 \ - DBI.3 \ - DBI::DBD.3 \ - DBI::FAQ.3 \ - DBI::Format.3 \ - DBI::ProxyServer.3 \ - DBI::Shell.3 \ - DBI::W32ODBC.3 \ - Win32::DBIODBC.3 -MAN3PREFIX= ${PREFIX}/lib/perl5/${PERL_VERSION} - -do-configure: - @cd ${WRKSRC}; ${SETENV} ${MAKE_ENV} ${PERL5} Makefile.PL \ - PREFIX="${PREFIX}" CC="${CC}" CCFLAGS="${CFLAGS}" - -.include <bsd.port.mk> diff --git a/databases/p5-DBI-137/distinfo b/databases/p5-DBI-137/distinfo deleted file mode 100644 index 1c33bef4540c..000000000000 --- a/databases/p5-DBI-137/distinfo +++ /dev/null @@ -1 +0,0 @@ -MD5 (DBI-1.13.tar.gz) = cef6c295a31b90deaff412346d33e021 diff --git a/databases/p5-DBI-137/pkg-comment b/databases/p5-DBI-137/pkg-comment deleted file mode 100644 index 0539ef8747be..000000000000 --- a/databases/p5-DBI-137/pkg-comment +++ /dev/null @@ -1 +0,0 @@ -The perl5 Database Interface. Required for DBD::* modules diff --git a/databases/p5-DBI-137/pkg-descr b/databases/p5-DBI-137/pkg-descr deleted file mode 100644 index 89dc0100a514..000000000000 --- a/databases/p5-DBI-137/pkg-descr +++ /dev/null @@ -1,13 +0,0 @@ -The DBI interface allows perl programs to use DBD (Database Definition) -drivers with a common set of routines. A program can then (theoretically) -change from using mSQL to Oracle (for example) without changing the entire -program around. - -This DBI interface is not yet fully specified. The current development -work is focused on writing drivers, such as DBD::Oracle, which also -implement emulations of old perl4 database interfaces, e.g., oraperl. -This strategy enables the DBI and drivers to serve a useful purpose -whilst allowing the real interface to evolve with experience behind the -emulation interface. - -WWW: http://forteviot.symbolstone.org/technology/perl/DBI/ diff --git a/databases/p5-DBI-137/pkg-plist b/databases/p5-DBI-137/pkg-plist deleted file mode 100644 index 1b2abb77df89..000000000000 --- a/databases/p5-DBI-137/pkg-plist +++ /dev/null @@ -1,28 +0,0 @@ -bin/dbiproxy -bin/dbish -lib/perl5/site_perl/%%PERL_VER%%/%%PERL_ARCH%%/DBI.pm -lib/perl5/site_perl/%%PERL_VER%%/%%PERL_ARCH%%/Bundle/DBI.pm -lib/perl5/site_perl/%%PERL_VER%%/%%PERL_ARCH%%/DBD/ADO.pm -lib/perl5/site_perl/%%PERL_VER%%/%%PERL_ARCH%%/DBD/ExampleP.pm -lib/perl5/site_perl/%%PERL_VER%%/%%PERL_ARCH%%/DBD/NullP.pm -lib/perl5/site_perl/%%PERL_VER%%/%%PERL_ARCH%%/DBD/Proxy.pm -lib/perl5/site_perl/%%PERL_VER%%/%%PERL_ARCH%%/DBD/Sponge.pm -lib/perl5/site_perl/%%PERL_VER%%/%%PERL_ARCH%%/DBI/DBD.pm -lib/perl5/site_perl/%%PERL_VER%%/%%PERL_ARCH%%/DBI/FAQ.pm -lib/perl5/site_perl/%%PERL_VER%%/%%PERL_ARCH%%/DBI/Format.pm -lib/perl5/site_perl/%%PERL_VER%%/%%PERL_ARCH%%/DBI/ProxyServer.pm -lib/perl5/site_perl/%%PERL_VER%%/%%PERL_ARCH%%/DBI/Shell.pm -lib/perl5/site_perl/%%PERL_VER%%/%%PERL_ARCH%%/DBI/W32ODBC.pm -lib/perl5/site_perl/%%PERL_VER%%/%%PERL_ARCH%%/Win32/DBIODBC.pm -lib/perl5/site_perl/%%PERL_VER%%/%%PERL_ARCH%%/auto/DBI/DBI.bs -lib/perl5/site_perl/%%PERL_VER%%/%%PERL_ARCH%%/auto/DBI/DBI.so -lib/perl5/site_perl/%%PERL_VER%%/%%PERL_ARCH%%/auto/DBI/DBIXS.h -lib/perl5/site_perl/%%PERL_VER%%/%%PERL_ARCH%%/auto/DBI/Driver.xst -lib/perl5/site_perl/%%PERL_VER%%/%%PERL_ARCH%%/auto/DBI/dbd_xsh.h -lib/perl5/site_perl/%%PERL_VER%%/%%PERL_ARCH%%/auto/DBI/dbi_sql.h -lib/perl5/site_perl/%%PERL_VER%%/%%PERL_ARCH%%/auto/DBI/.packlist -@dirrm lib/perl5/site_perl/%%PERL_VER%%/%%PERL_ARCH%%/auto/DBI -@dirrm lib/perl5/site_perl/%%PERL_VER%%/%%PERL_ARCH%%/DBD -@dirrm lib/perl5/site_perl/%%PERL_VER%%/%%PERL_ARCH%%/DBI -@unexec rmdir %D/lib/perl5/site_perl/%%PERL_VER%%/%%PERL_ARCH%%/Bundle 2>/dev/null || true -@unexec rmdir %D/lib/perl5/site_perl/%%PERL_VER%%/%%PERL_ARCH%%/Win32 2>/dev/null || true diff --git a/databases/percona55-client/Makefile b/databases/percona55-client/Makefile deleted file mode 100644 index 8284511ecb0e..000000000000 --- a/databases/percona55-client/Makefile +++ /dev/null @@ -1,17 +0,0 @@ -# ports collection makefile for: MySQL-client -# Date created: Thu Jun 24 00:12:22 CEST 1999 -# Whom: Dirk Froemberg <dirk@FreeBSD.org> -# -# $FreeBSD$ -# - -PORTNAME= ${MASTERPORTNAME:S/-server/-client/g} - -MASTERDIR= ${.CURDIR}/../mysql322-server -COMMENT= ${PKGDIR}/COMMENT.client -PKGINSTALL= mustnotexist -PLIST= ${PKGDIR}/PLIST.client - -CLIENT_ONLY= yes - -.include "${MASTERDIR}/Makefile" diff --git a/databases/percona55-server/Makefile b/databases/percona55-server/Makefile deleted file mode 100644 index 9a6c2a590256..000000000000 --- a/databases/percona55-server/Makefile +++ /dev/null @@ -1,154 +0,0 @@ -# ports collection makefile for: MySQL-server -# Date created: 26 Jan 1998 -# Whom: Josh Tiefenbach <josh@ican.net> -# -# $FreeBSD$ -# - -PORTNAME?= ${MASTERPORTNAME} -PORTVERSION= 3.22.32 -CATEGORIES= databases -MASTER_SITES= http://www.fh-wolfenbuettel.de/ftp/pub/database/mysql/Downloads/MySQL-3.22/ \ - ftp://ftp.digex.net/pub/packages/database/mysql/Downloads/MySQL-3.22/ \ - ftp://ftp.plig.net/pub/mysql/Downloads/MySQL-3.22/ \ - ftp://ftp.sunet.se/pub/unix/databases/relational/mysql/Downloads/MySQL-3.22/ -DISTNAME= mysql-${PORTVERSION} - -MAINTAINER= dirk@FreeBSD.org - -Y2K= http://www.tcx.se/Manual_chapter/manual_Introduction.html#Year_2000_compliance - -SLAVEDIRS= databases/mysql322-client -MASTERPORTNAME= mysql-server -DB_DIR?= /var/db/mysql -USE_PERL5= yes -USE_LIBTOOL= yes -CONFIGURE_ARGS= --localstatedir=${DB_DIR} \ - --without-perl \ - --without-debug \ - --without-readline \ - --without-bench -.if ${MACHINE_ARCH} == "i386" -CONFIGURE_ARGS+=--enable-assembler -.endif -CONFIGURE_ENV+= PERL=${PERL} \ - PERL5=${PERL} \ - INSTALL_SCRIPT="${INSTALL_SCRIPT}" \ - CONFIGURE_ARGS="${CONFIGURE_ARGS}" - -# MySQL-Server part -.if !defined(CLIENT_ONLY) -RUN_DEPENDS= mysql:${PORTSDIR}/databases/mysql322-client - -.include <bsd.port.pre.mk> - -.if ${OSVERSION} >= 320000 -.if defined(MIT_PTHREADS) -CONFIGURE_ARGS+= --with-mit-threads=yes - -pre-fetch: - @${ECHO} - @${ECHO} "Using supplied mit-pthreads." - @${ECHO} -.else -CONFIGURE_ARGS+= --with-mit-threads=no - -pre-fetch: - @${ECHO} - @${ECHO} "Using native FreeBSD threads (libc_r)." - @${ECHO} - @${ECHO} "You may set MIT_PTHREADS (make MIT_PTHREADS=yes)" - @${ECHO} "to compile mysql with the supplied mit-pthreads." - @${ECHO} "(You don't want to set this unless you have a good reason)." - @${ECHO} -.endif -.elif ${OSVERSION} >= 300000 -.if defined(NATIVE_THREADS) -CONFIGURE_ARGS+= --with-mit-threads=no - -pre-fetch: - @${ECHO} - @${ECHO} "Using native FreeBSD threads (libc_r)." - @${ECHO} -.else -CONFIGURE_ARGS+= --with-mit-threads=yes - -pre-fetch: - @${ECHO} - @${ECHO} "Using supplied mit-pthreads." - @${ECHO} - @${ECHO} "You may set NATIVE_THREADS (make NATIVE_THREADS=yes)" - @${ECHO} "to compile mysql with the native FreeBSD threads (libc_r)." - @${ECHO} "Warning: There are some bugs in libc_r which prevent" - @${ECHO} " 'mysqladmin shutdown' from working properly and" - @${ECHO} " killing mysqld might not work." - @${ECHO} -.endif -.else -CONFIGURE_ARGS+= --with-mit-threads=yes - -pre-fetch: - @${ECHO} - @${ECHO} "Using supplied mit-pthreads." - @${ECHO} -.endif - -post-patch: - ${MV} ${WRKSRC}/strings/strings-x86.s ${WRKSRC}/strings/strings-x86.S - ${MV} ${WRKSRC}/strings/longlong2str-x86.s ${WRKSRC}/strings/longlong2str-x86.S - -pre-install: -.if !defined(PACKAGE_BUILDING) && exists(${DB_DIR}) && !defined(OVERWRITE_DB) - @${ECHO} "You appear to already have a mysql database directory in ${DB_DIR}." - @${ECHO} "" - @${ECHO} "In order to preserve your existing data, you should:" - @${ECHO} " - dump all your databases" - @${ECHO} " - kill mysql if it is running" - @${ECHO} " - delete the ${DB_DIR} directory" - @${ECHO} " - run 'make install'" - @${ECHO} " - start up mysql" - @${ECHO} " - re-create all of your database" - @${ECHO} " - re-load your data" - @${ECHO} "" - @${ECHO} "If you understand the consequences of this upgrade, please re-build this" - @${ECHO} "port with the environment variable OVERWRITE_DB defined." - @${FALSE} -.endif - -post-install: -.if !defined(PACKAGE_BUILDING) - ${PREFIX}/bin/mysql_install_db - @${SETENV} DB_DIR=${DB_DIR} ${SH} ${PKGINSTALL} ${PKGNAME} POST-INSTALL -.endif - @${SED} "s|%%PREFIX%%|${PREFIX}|g" < ${FILESDIR}/mysql-server.sh > ${PREFIX}/etc/rc.d/mysql-server.sh - @${CHMOD} 750 ${PREFIX}/etc/rc.d/mysql-server.sh - -.if !defined(NOPORTDOCS) - ${MKDIR} ${PREFIX}/share/doc/mysql/Img -.for doc in manual.html manual.ps manual_toc.html manual.txt manual.texi include.texi - ${INSTALL_DATA} ${WRKSRC}/Docs/${doc} ${PREFIX}/share/doc/mysql -.endfor - ${INSTALL_DATA} ${WRKSRC}/Docs/Img/*.gif ${PREFIX}/share/doc/mysql/Img - ${INSTALL_DATA} ${WRKSRC}/Docs/mysql.info ${PREFIX}/info - @install-info ${PREFIX}/info/mysql.info ${PREFIX}/info/dir -.endif - -.include <bsd.port.post.mk> - -# MySQL-Client part -.else -MAN1= mysql.1 - -CONFIGURE_ARGS+=--without-server -MAKE_ENV= CLIENT_ONLY="${CLIENT_ONLY}" - -post-install: - @${ECHO} "#!/bin/sh" > ${PREFIX}/etc/rc.d/mysql-client.sh - @${ECHO} "" >> ${PREFIX}/etc/rc.d/mysql-client.sh - @${ECHO} "${LDCONFIG} -m ${PREFIX}/lib/mysql" >> ${PREFIX}/etc/rc.d/mysql-client.sh - @${CHMOD} 750 ${PREFIX}/etc/rc.d/mysql-client.sh - - ${SETENV} OBJFORMAT=${PORTOBJFORMAT} ${LDCONFIG} -m ${PREFIX}/lib/mysql - -.include <bsd.port.mk> -.endif diff --git a/databases/percona55-server/distinfo b/databases/percona55-server/distinfo deleted file mode 100644 index edfe7eb2ff4a..000000000000 --- a/databases/percona55-server/distinfo +++ /dev/null @@ -1 +0,0 @@ -MD5 (mysql-3.22.32.tar.gz) = 244e08d9a1f4b2ad799aa40ad3cc897a diff --git a/databases/percona55-server/files/mysql-server.sh b/databases/percona55-server/files/mysql-server.sh deleted file mode 100644 index 0ff5374c48f7..000000000000 --- a/databases/percona55-server/files/mysql-server.sh +++ /dev/null @@ -1,18 +0,0 @@ -#!/bin/sh - -case "$1" in - start) - if [ -x %%PREFIX%%/bin/safe_mysqld ]; then - %%PREFIX%%/bin/safe_mysqld --user=mysql > /dev/null & && echo -n ' mysqld' - fi - ;; - stop) - /usr/bin/killall mysqld > /dev/null 2>&1 && echo -n ' mysqld' - ;; - *) - echo "" - echo "Usage: `basename $0` { start | stop }" - echo "" - exit 64 - ;; -esac diff --git a/databases/percona55-server/files/patch-Makefile.in b/databases/percona55-server/files/patch-Makefile.in deleted file mode 100644 index 00190736f765..000000000000 --- a/databases/percona55-server/files/patch-Makefile.in +++ /dev/null @@ -1,15 +0,0 @@ ---- Makefile.in.orig Sat Jan 1 17:59:38 2000 -+++ Makefile.in Mon Jan 3 17:19:23 2000 -@@ -144,7 +144,11 @@ - # These are built from source in the Docs directory - EXTRA_DIST = INSTALL-SOURCE-GENERIC README PUBLIC INSTALL-SOURCE MIRRORS - --SUBDIRS = include @docs_dirs@ @readline_dir@ client @sql_server_dirs@ scripts tests man @bench_dirs@ support-files -+.if defined(CLIENT_ONLY) -+SUBDIRS = include @readline_dir@ client tests man -+.else -+SUBDIRS = include @docs_dirs@ @sql_server_dirs@ scripts @bench_dirs@ support-files -+.endif - - - # Relink after clean diff --git a/databases/percona55-server/files/patch-ab b/databases/percona55-server/files/patch-ab deleted file mode 100644 index 1fd66bbe0cad..000000000000 --- a/databases/percona55-server/files/patch-ab +++ /dev/null @@ -1,33 +0,0 @@ ---- scripts/mysql_install_db.sh.orig Wed Jan 12 21:06:30 2000 -+++ scripts/mysql_install_db.sh Sun Mar 26 23:20:27 2000 -@@ -15,8 +15,6 @@ - force=0 - IN_RPM=0 - --# Are we doing an rpm install? --if test "$1" = "-IN-RPM"; then IN_RPM=1; shift; fi - if test "$1" = "--force"; then force=1; shift; fi - - # Get mysqld/safe_mysqld options from /etc/my.cnf or ~/.my.cnf -@@ -60,8 +58,6 @@ - fi - fi - --# On IRIX hostname is in /usr/bsd so add this to the path --PATH=$PATH:/usr/bsd - hostname=`hostname` # Install this too in the user table - - # Check if hostname is valid -@@ -255,12 +251,6 @@ - END_OF_DATA - then - echo "" -- if test "$IN_RPM" -eq 0 -- then -- echo "To start mysqld at boot time you have to copy support-files/mysql.server" -- echo "to the right place for your system" -- echo -- fi - echo "PLEASE REMEMBER TO SET A PASSWORD FOR THE MySQL root USER !" - echo "This is done with:" - echo "$bindir/mysqladmin -u root password 'new-password'" diff --git a/databases/percona55-server/files/patch-af b/databases/percona55-server/files/patch-af deleted file mode 100644 index 2593da4d1c64..000000000000 --- a/databases/percona55-server/files/patch-af +++ /dev/null @@ -1,73 +0,0 @@ ---- scripts/safe_mysqld.sh.orig Fri May 14 11:11:46 1999 -+++ scripts/safe_mysqld.sh Tue Jun 8 11:14:02 1999 -@@ -12,33 +12,9 @@ - - trap '' 1 2 3 15 # we shouldn't let anyone kill us - --# Check if we are starting this relative (for the binary release) --if test -d ./data/mysql -a -f ./share/mysql/english/errmsg.sys -a \ -- -x ./bin/mysqld --then -- MY_BASEDIR_VERSION=`pwd` # Where bin, share and data are -- DATADIR=$MY_BASEDIR_VERSION/data # Where the databases are -- ledir=$MY_BASEDIR_VERSION/bin # Where mysqld is --# Check if this is a 'moved install directory' --elif test -f ./var/mysql/db.frm -a -f ./share/mysql/english/errmsg.sys -a \ -- -x ./libexec/mysqld --then -- MY_BASEDIR_VERSION=`pwd` # Where libexec, share and var are -- DATADIR=$MY_BASEDIR_VERSION/var # Where the databases are -- ledir=$MY_BASEDIR_VERSION/libexec # Where mysqld is --else -- MY_BASEDIR_VERSION=@prefix@ -- DATADIR=@localstatedir@ -- ledir=@libexecdir@ -- if test ! -x $ledir/mysqld -- then -- echo "The file $ledir/mysqld doesn't exist or is not executable" -- echo "Please do a cd to the mysql installation directory and restart" -- echo "this script from there as follows:" -- echo "./bin/safe_mysqld". -- exit 1; -- fi --fi -+MY_BASEDIR_VERSION=@prefix@ -+DATADIR=@localstatedir@ -+ledir=@libexecdir@ - - pid_file=$DATADIR/`@HOSTNAME@`.pid - log=$DATADIR/`@HOSTNAME@`.log -@@ -114,33 +90,6 @@ - if test ! -f $pid_file # This is removed if normal shutdown - then - break; -- fi -- if @IS_LINUX@ -- then -- # Test if one process was hanging. -- # This is only a fix for Linux (running as base 3 mysqld processes) -- # but should work for the rest of the servers. -- # The only thing is ps x => redhat 5 gives warnings when using ps -x. -- # kill -9 is used or the process won't react on the kill. -- numofproces=`ps x | grep -v "grep" | grep -c $ledir/mysqld` -- echo -e "\nNumber of processes running now: $numofproces" | tee -a $err_log -- I=1 -- while test "$I" -le "$numofproces" -- do -- PROC=`ps x | grep $ledir/mysqld | grep -v "grep" | tail -1` -- for T in $PROC -- do -- break -- done -- # echo "TEST $I - $T **" -- if kill -9 $T -- then -- echo "mysqld process hanging, pid $T - killed" | tee -a $err_log -- else -- break -- fi -- I=`expr $I + 1` -- done - fi - echo "mysqld restarted on " `date` | tee -a $err_log - done diff --git a/databases/percona55-server/files/patch-ap b/databases/percona55-server/files/patch-ap deleted file mode 100644 index 097b449a181a..000000000000 --- a/databases/percona55-server/files/patch-ap +++ /dev/null @@ -1,11 +0,0 @@ ---- strings/Makefile.in.orig Sat Jan 1 18:00:30 2000 -+++ strings/Makefile.in Mon Jan 3 17:21:19 2000 -@@ -145,7 +145,7 @@ - INCLUDES = @MT_INCLUDES@ -I$(srcdir)/../include -I../include - pkglib_LIBRARIES = libmystrings.a - #no assembler --@ASSEMBLER_x86_TRUE@ASRCS = strings-x86.s longlong2str-x86.s -+@ASSEMBLER_x86_TRUE@ASRCS = strings-x86.S longlong2str-x86.S - @ASSEMBLER_x86_FALSE@@ASSEMBLER_sparc_TRUE@ASRCS = bmove_upp-sparc.s strappend-sparc.s strend-sparc.s strinstr-sparc.s strmake-sparc.s strmov-sparc.s strnmov-sparc.s strstr-sparc.s strxmov-sparc.s - @ASSEMBLER_x86_FALSE@@ASSEMBLER_sparc_FALSE@ASRCS = - # These file MUST all be on the same line!! Otherwise automake diff --git a/databases/percona55-server/files/patch-aq b/databases/percona55-server/files/patch-aq deleted file mode 100644 index 573324175921..000000000000 --- a/databases/percona55-server/files/patch-aq +++ /dev/null @@ -1,13 +0,0 @@ ---- sql/Makefile.in.orig Sat Jan 1 18:01:13 2000 -+++ sql/Makefile.in Wed Jan 5 20:28:17 2000 -@@ -317,6 +317,10 @@ - else :; fi - sql_yacc.hh: sql_yacc.cc - -+# gcc takes a lot of memory and cpu time if it compiles sql_yacc.cc with -O -+sql_yacc.o: sql_yacc.cc -+ $(CXXCOMPILE) -O0 -c $< -+ - - # This directory's subdirectories are mostly independent; you can cd - # into them and run `make' without going through this Makefile. diff --git a/databases/percona55-server/files/patch-as b/databases/percona55-server/files/patch-as deleted file mode 100644 index 903bc9950a28..000000000000 --- a/databases/percona55-server/files/patch-as +++ /dev/null @@ -1,16 +0,0 @@ ---- sql/mysqld.cc.orig Sun Feb 13 02:40:18 2000 -+++ sql/mysqld.cc Mon Feb 21 21:24:51 2000 -@@ -63,8 +63,11 @@ - inline void reset_floating_point_exceptions() - { - /* Don't fall for overflow, underflow,divide-by-zero or loss of precision */ -- fpsetmask(~(FP_X_INV | FP_X_DNML | FP_X_OFL | FP_X_UFL | -- FP_X_DZ | FP_X_IMP)); -+#if defined(__i386__) -+ fpsetmask(~(FP_X_INV | FP_X_DNML | FP_X_OFL | FP_X_UFL | FP_X_DZ | FP_X_IMP)); -+#else -+ fpsetmask(~(FP_X_INV | FP_X_OFL | FP_X_UFL | FP_X_DZ | FP_X_IMP)); -+#endif - } - #else - #define reset_floating_point_exceptions() diff --git a/databases/percona55-server/files/patch-configure b/databases/percona55-server/files/patch-configure deleted file mode 100644 index 133bd4200860..000000000000 --- a/databases/percona55-server/files/patch-configure +++ /dev/null @@ -1,132 +0,0 @@ ---- configure.orig Sun Feb 13 03:46:09 2000 -+++ configure Wed May 3 12:20:25 2000 -@@ -2743,7 +2743,7 @@ - ;; - esac - fi --HOSTNAME="$ac_cv_path_HOSTNAME" -+HOSTNAME="$ac_cv_path_HOSTNAME -s" - if test -n "$HOSTNAME"; then - echo "$ac_t""$HOSTNAME" 1>&6 - else -@@ -2871,30 +2871,7 @@ - echo $ac_n "checking "how to check if pid exists"""... $ac_c" 1>&6 - echo "configure:2873: checking "how to check if pid exists"" >&5 - PS=$ac_cv_path_PS --# Linux style --if $PS p $$ 2> /dev/null | grep $0 > /dev/null --then -- FIND_PROC="$PS p \$\$PID | grep mysqld > /dev/null" --# Solaris --elif $PS -p $$ 2> /dev/null | grep $0 > /dev/null --then -- FIND_PROC="$PS -p \$\$PID | grep mysqld > /dev/null" --# BSD style --elif $PS -uaxww 2> /dev/null | grep $0 > /dev/null --then -- FIND_PROC="$PS -uaxww | grep mysqld | grep \" \$\$PID \" > /dev/null" --# SysV style --elif $PS -ef 2> /dev/null | grep $0 > /dev/null --then -- FIND_PROC="$PS -ef | grep mysqld | grep \" \$\$PID \" > /dev/null" --# Do anybody use this? --elif $PS $$ 2> /dev/null | grep $0 > /dev/null --then -- FIND_PROC="$PS \$\$PID | grep mysqld > /dev/null" --else -- { echo "configure: error: Could not find the right ps switches. Which OS is this ?. See the Installation chapter in the Reference Manual." 1>&2; exit 1; } --fi -- -+FIND_PROC="$PS -uaxww | grep mysqld | grep \" \$\$PID \" > /dev/null" - echo "$ac_t"""$FIND_PROC"" 1>&6 - - # Check if a pid is valid -@@ -4646,8 +4623,6 @@ - #define $ac_tr_lib 1 - EOF - -- LIBS="-lc_r $LIBS" -- - else - echo "$ac_t""no" 1>&6 - fi -@@ -4881,28 +4856,6 @@ - fi - - --# Build optimized or debug version ? --# First check for gcc and g++ --if test "$ac_cv_prog_gcc" = "yes" --then -- DEBUG_CFLAGS="-g" -- DEBUG_OPTIMIZE_CC="-O" -- OPTIMIZE_CFLAGS="-O6" --else -- DEBUG_CFLAGS="-g" -- DEBUG_OPTIMIZE_CC="" -- OPTIMIZE_CFLAGS="-O" --fi --if test "$ac_cv_prog_cxx_g" = "yes" --then -- DEBUG_CXXFLAGS="-g" -- DEBUG_OPTIMIZE_CXX="-O" -- OPTIMIZE_CXXFLAGS="-O3" --else -- DEBUG_CXXFLAGS="-g" -- DEBUG_OPTIMIZE_CXX="" -- OPTIMIZE_CXXFLAGS="-O" --fi - # Check whether --with-debug or --without-debug was given. - if test "${with_debug+set}" = set; then - withval="$with_debug" -@@ -5615,10 +5568,6 @@ - ac_link='${CXX-g++} -o conftest${ac_exeext} $CXXFLAGS $CPPFLAGS $LDFLAGS conftest.$ac_ext $LIBS 1>&5' - cross_compiling=$ac_cv_prog_cxx_cross - --if test "$ac_cv_prog_gxx" = "yes" --then -- CXXFLAGS="$CXXFLAGS -Werror" --fi - mysql_cv_btype_last_arg_accept=none - cat > conftest.$ac_ext <<EOF - #line 5625 "configure" -@@ -7655,10 +7604,6 @@ - ac_link='${CXX-g++} -o conftest${ac_exeext} $CXXFLAGS $CPPFLAGS $LDFLAGS conftest.$ac_ext $LIBS 1>&5' - cross_compiling=$ac_cv_prog_cxx_cross - --if test "$ac_cv_prog_gxx" = "yes" --then -- CXXFLAGS="$CXXFLAGS -Werror" --fi - cat > conftest.$ac_ext <<EOF - #line 7664 "configure" - #include "confdefs.h" -@@ -7721,10 +7666,6 @@ - ac_link='${CXX-g++} -o conftest${ac_exeext} $CXXFLAGS $CPPFLAGS $LDFLAGS conftest.$ac_ext $LIBS 1>&5' - cross_compiling=$ac_cv_prog_cxx_cross - --if test "$ac_cv_prog_gxx" = "yes" --then -- CXXFLAGS="$CXXFLAGS -Werror" --fi - cat > conftest.$ac_ext <<EOF - #line 7730 "configure" - #include "confdefs.h" -@@ -8005,7 +7946,7 @@ - #include <pthread.h> - int main() { - pthread_attr_t thr_attr; --pthread_attr_setscope(&thr_attr,0); -+XXXpthread_attr_setscope(&thr_attr,0); - ; return 0; } - EOF - if { (eval echo configure:8012: \"$ac_link\") 1>&5; (eval $ac_link) 2>&5; } && test -s conftest${ac_exeext}; then -@@ -8210,7 +8151,7 @@ - echo "" - echo "Configuring MIT Pthreads" - # We will never install so installation paths are not needed. -- (cd mit-pthreads; sh ./configure) -+ (cd mit-pthreads; sh ./configure ${CONFIGURE_ARGS}) - echo "End of MIT Pthreads configuration" - echo "" - fi diff --git a/databases/percona55-server/files/patch-include::Makefile.in b/databases/percona55-server/files/patch-include::Makefile.in deleted file mode 100644 index ed7654838e66..000000000000 --- a/databases/percona55-server/files/patch-include::Makefile.in +++ /dev/null @@ -1,14 +0,0 @@ ---- include/Makefile.in.orig Sat Jan 1 17:59:41 2000 -+++ include/Makefile.in Wed Jan 5 21:04:23 2000 -@@ -259,7 +259,11 @@ - - install-am: all-am - @$(MAKE) $(AM_MAKEFLAGS) install-exec-am install-data-am -+.if defined(CLIENT_ONLY) - install: install-am -+.else -+install: -+.endif - uninstall-am: uninstall-pkgincludeHEADERS - uninstall: uninstall-am - all-am: Makefile $(HEADERS) all-local diff --git a/databases/percona55-server/pkg-comment b/databases/percona55-server/pkg-comment deleted file mode 100644 index 2e29c8d2b15b..000000000000 --- a/databases/percona55-server/pkg-comment +++ /dev/null @@ -1 +0,0 @@ -Multithreaded SQL database (server) diff --git a/databases/percona55-server/pkg-comment.client b/databases/percona55-server/pkg-comment.client deleted file mode 100644 index cd0c61571cfb..000000000000 --- a/databases/percona55-server/pkg-comment.client +++ /dev/null @@ -1 +0,0 @@ -Multithreaded SQL database (client) diff --git a/databases/percona55-server/pkg-descr b/databases/percona55-server/pkg-descr deleted file mode 100644 index e21208271cdb..000000000000 --- a/databases/percona55-server/pkg-descr +++ /dev/null @@ -1,10 +0,0 @@ -mySQL is a multithreaded (using MIT pthreads) SQL database with a command -syntax very similar to mSQL. For more information see http://www.tcx.se - -Note: This port does *not* build the perl5 module. To do so, refer to the -file ${WRKSRC}/INSTALL-SOURCE, in particular, the notes on FreeBSD systems. - -josh -josh@ican.net - -WWW: http://www.mysql.com/ diff --git a/databases/percona55-server/pkg-install b/databases/percona55-server/pkg-install deleted file mode 100644 index 3e925021ede1..000000000000 --- a/databases/percona55-server/pkg-install +++ /dev/null @@ -1,41 +0,0 @@ -#!/bin/sh - -PATH=/bin:/usr/sbin -if [ -z "${DB_DIR}" ]; then - DB_DIR=/var/db/mysql -fi - -case $2 in -POST-INSTALL) - USER=mysql - GROUP=${USER} - UID=88 - GID=${UID} - - if pw group show "${GROUP}" 2>/dev/null; then - echo "You already have a group \"${GROUP}\", so I will use it." - else - if pw groupadd ${GROUP} -g ${GID}; then - echo "Added group \"${GROUP}\"." - else - echo "Adding group \"${GROUP}\" failed..." - exit 1 - fi - fi - - if pw user show "${USER}" 2>/dev/null; then - echo "You already have a user \"${USER}\", so I will use it." - else - if pw useradd ${USER} -u ${UID} -g ${GROUP} -h - \ - -d ${DB_DIR} -s /sbin/nologin -c "MySQL Daemon" - then - echo "Added user \"${USER}\"." - else - echo "Adding user \"${USER}\" failed..." - exit 1 - fi - fi - - chown -R ${USER}.${GROUP} ${DB_DIR} - ;; -esac diff --git a/databases/percona55-server/pkg-plist b/databases/percona55-server/pkg-plist deleted file mode 100644 index 7c89ce913312..000000000000 --- a/databases/percona55-server/pkg-plist +++ /dev/null @@ -1,148 +0,0 @@ -bin/comp_err -bin/isamchk -bin/isamlog -bin/msql2mysql -bin/mysql_find_rows -bin/mysql_fix_privilege_tables -bin/mysql_install_db -bin/mysql_setpermission -bin/mysql_zap -bin/mysqlaccess -bin/mysqlbug -bin/mysqlhotcopy -bin/perror -bin/print_defaults -bin/replace -bin/resolveip -bin/safe_mysqld -etc/rc.d/mysql-server.sh -@unexec install-info --delete %D/info/mysql.info %D/info/dir -info/mysql.info -@exec install-info %D/info/mysql.info %D/info/dir -lib/mysql/libdbug.a -lib/mysql/libheap.a -lib/mysql/libmerge.a -lib/mysql/libmystrings.a -lib/mysql/libmysys.a -lib/mysql/libnisam.a -libexec/mysqld -share/doc/mysql/Img/australia.gif -share/doc/mysql/Img/austria.gif -share/doc/mysql/Img/brazil.gif -share/doc/mysql/Img/bulgaria.gif -share/doc/mysql/Img/canada.gif -share/doc/mysql/Img/chile.gif -share/doc/mysql/Img/china.gif -share/doc/mysql/Img/croatia.gif -share/doc/mysql/Img/czech-republic.gif -share/doc/mysql/Img/denmark.gif -share/doc/mysql/Img/estonia.gif -share/doc/mysql/Img/finland.gif -share/doc/mysql/Img/france.gif -share/doc/mysql/Img/germany.gif -share/doc/mysql/Img/great-britain.gif -share/doc/mysql/Img/greece.gif -share/doc/mysql/Img/html-fs.gif -share/doc/mysql/Img/hungary.gif -share/doc/mysql/Img/iceland.gif -share/doc/mysql/Img/ireland.gif -share/doc/mysql/Img/island.gif -share/doc/mysql/Img/israel.gif -share/doc/mysql/Img/italy.gif -share/doc/mysql/Img/japan.gif -share/doc/mysql/Img/kroatia.gif -share/doc/mysql/Img/mysql-logo.gif -share/doc/mysql/Img/mysql5.gif -share/doc/mysql/Img/netherlands.gif -share/doc/mysql/Img/poland.gif -share/doc/mysql/Img/portugal.gif -share/doc/mysql/Img/romania.gif -share/doc/mysql/Img/russia.gif -share/doc/mysql/Img/singapore.gif -share/doc/mysql/Img/south-africa.gif -share/doc/mysql/Img/south-africa1.gif -share/doc/mysql/Img/south-korea.gif -share/doc/mysql/Img/spain.gif -share/doc/mysql/Img/sweden.gif -share/doc/mysql/Img/switzerland.gif -share/doc/mysql/Img/taiwan.gif -share/doc/mysql/Img/tcxlogo3.gif -share/doc/mysql/Img/ukraine.gif -share/doc/mysql/Img/usa.gif -share/doc/mysql/include.texi -share/doc/mysql/manual.html -share/doc/mysql/manual.ps -share/doc/mysql/manual.texi -share/doc/mysql/manual.txt -share/doc/mysql/manual_toc.html -share/mysql/binary-configure -share/mysql/czech/errmsg.sys -share/mysql/czech/errmsg.txt -share/mysql/danish/errmsg.sys -share/mysql/danish/errmsg.txt -share/mysql/dutch/errmsg.sys -share/mysql/dutch/errmsg.txt -share/mysql/english/errmsg.sys -share/mysql/english/errmsg.txt -share/mysql/estonia/errmsg.sys -share/mysql/estonia/errmsg.txt -share/mysql/french/errmsg.sys -share/mysql/french/errmsg.txt -share/mysql/german/errmsg.sys -share/mysql/german/errmsg.txt -share/mysql/greek/errmsg.sys -share/mysql/greek/errmsg.txt -share/mysql/hungarian/errmsg.sys -share/mysql/hungarian/errmsg.txt -share/mysql/italian/errmsg.sys -share/mysql/italian/errmsg.txt -share/mysql/japanese/errmsg.sys -share/mysql/japanese/errmsg.txt -share/mysql/korean/errmsg.sys -share/mysql/korean/errmsg.txt -share/mysql/make_binary_distribution -share/mysql/my-example.cnf -share/mysql/mysql-3.22.32.spec -share/mysql/mysql-log-rotate -share/mysql/mysql.server -share/mysql/norwegian-ny/errmsg.sys -share/mysql/norwegian-ny/errmsg.txt -share/mysql/norwegian/errmsg.sys -share/mysql/norwegian/errmsg.txt -share/mysql/polish/errmsg.sys -share/mysql/polish/errmsg.txt -share/mysql/portuguese/errmsg.sys -share/mysql/portuguese/errmsg.txt -share/mysql/russian/errmsg.sys -share/mysql/russian/errmsg.txt -share/mysql/slovak/errmsg.sys -share/mysql/slovak/errmsg.txt -share/mysql/spanish/errmsg.sys -share/mysql/spanish/errmsg.txt -share/mysql/swedish/errmsg.sys -share/mysql/swedish/errmsg.txt -@dirrm share/doc/mysql/Img -@dirrm share/doc/mysql -@dirrm share/mysql/czech -@dirrm share/mysql/danish -@dirrm share/mysql/dutch -@dirrm share/mysql/english -@dirrm share/mysql/estonia -@dirrm share/mysql/french -@dirrm share/mysql/german -@dirrm share/mysql/greek -@dirrm share/mysql/hungarian -@dirrm share/mysql/italian -@dirrm share/mysql/japanese -@dirrm share/mysql/korean -@dirrm share/mysql/norwegian -@dirrm share/mysql/norwegian-ny -@dirrm share/mysql/polish -@dirrm share/mysql/portuguese -@dirrm share/mysql/russian -@dirrm share/mysql/slovak -@dirrm share/mysql/spanish -@dirrm share/mysql/swedish -@dirrm share/mysql -@exec %D/bin/mysql_install_db -@exec /usr/bin/killall mysqld diff --git a/databases/percona55-server/pkg-plist.client b/databases/percona55-server/pkg-plist.client deleted file mode 100644 index 9eb893b7dd12..000000000000 --- a/databases/percona55-server/pkg-plist.client +++ /dev/null @@ -1,32 +0,0 @@ -bin/mysql -bin/mysqladmin -bin/mysqldump -bin/mysqlimport -bin/mysqlshow -etc/rc.d/mysql-client.sh -include/mysql/dbug.h -include/mysql/errmsg.h -include/mysql/m_ctype.h -include/mysql/m_string.h -include/mysql/my_config.h -include/mysql/my_global.h -include/mysql/my_list.h -include/mysql/my_net.h -include/mysql/my_pthread.h -include/mysql/my_sys.h -include/mysql/mysql.h -include/mysql/mysql_com.h -include/mysql/mysql_version.h -include/mysql/mysqld_error.h -include/mysql/raid.h -include/mysql/sslopt-case.h -include/mysql/sslopt-longopts.h -include/mysql/sslopt-usage.h -include/mysql/sslopt-vars.h -lib/mysql/libmysqlclient.a -lib/mysql/libmysqlclient.so -lib/mysql/libmysqlclient.so.6 -@dirrm include/mysql -@dirrm lib/mysql -@exec /usr/bin/env OBJFORMAT=%%PORTOBJFORMAT%% /sbin/ldconfig -m %D/lib/mysql -@unexec /usr/bin/env OBJFORMAT=%%PORTOBJFORMAT%% /sbin/ldconfig -R diff --git a/databases/postgresql-devel-server/Makefile b/databases/postgresql-devel-server/Makefile deleted file mode 100644 index 94aa22cad135..000000000000 --- a/databases/postgresql-devel-server/Makefile +++ /dev/null @@ -1,259 +0,0 @@ -# New ports collection makefile for: PostgreSQL -# Date created: November 13, 1998 -# Whom: Marc G. Fournier <scrappy@FreeBSD.org> -# -# $FreeBSD$ -# - -PORTNAME= postgresql -PORTVERSION= 7.0.2 -CATEGORIES= databases -MASTER_SITES= ftp://ftp.postgresql.org/pub/%SUBDIR%/ \ - ftp://ftp.de.postgresql.org/%SUBDIR%/ \ - ftp://ftp.iodynamics.com/pub/mirror/postgresql/%SUBDIR%/ \ - ftp://ftp.digex.net/pub/packages/database/postgresql/%SUBDIR%/ \ - ftp://ftp.sunet.se/pub/unix/databases/relational/postgresql/%SUBDIR%/ -MASTER_SITE_SUBDIR= source/v${PORTVERSION} -DISTFILES= ${PORTNAME}-${PORTVERSION}.base${EXTRACT_SUFX} \ - ${PORTNAME}-${PORTVERSION}.support${EXTRACT_SUFX} \ - ${PORTNAME}-${PORTVERSION}.docs${EXTRACT_SUFX} -# ${PORTNAME}-${PORTVERSION}.test${EXTRACT_SUFX} -DIST_SUBDIR= postgresql - -MAINTAINER= andreas@FreeBSD.org - -.if ${MACHINE_ARCH} == "alpha" -BROKEN= doesn\'t build on the alpha yet -.endif - -Y2K= http://www.postgresql.org/y2k.html - -INSTALLS_SHLIB= YES -LDCONFIG_DIRS= %%PREFIX%%/pgsql/lib - -# if you want to use the tcl/tk frontend pgaccess, then you need to build -# postgresql with tcl support by typing: make -DWITH_TCL -.if defined(WITH_TCL) -TCL_INCDIR= ${LOCALBASE}/include/tcl8.3 -TK_INCDIR= ${LOCALBASE}/include/tk8.3 -MAKE_ENV= TCL_INCDIR=${TCL_INCDIR} -CONFIGURE_ENV= WISH=${LOCALBASE}/bin/wish8.3 -LIB_DEPENDS= tcl83.1:${PORTSDIR}/lang/tcl83 \ - tk83.1:${PORTSDIR}/x11-toolkits/tk83 -CONFIGURE_TCL= --with-tcl --with-tclconfig="${LOCALBASE}/lib/tcl8.3 ${LOCALBASE}/lib/tk8.3" -.endif - -# if you want to disable the multibyte support, type: -# make -DWITHOUT_MULTIBYTE -# -# if you want to set the default encoding for the multibyte support, type: -# make DEFAULT_ENCODING=<encoding> -# where <encoding> is one of these: -# SQL_ASCII LATIN1 LATIN2 LATIN3 LATIN4 LATIN5 -# EUC_JP EUC_CN EUC_KR EUC_TW KOI8 -# UNICODE MULE_INTERNAL WIN ALT -.if defined(WITHOUT_MULTIBYTE) -CONFIGURE_MULTIBYTE= # none -.elif defined(DEFAULT_ENCODING) -CONFIGURE_MULTIBYTE= --enable-multibyte="${DEFAULT_ENCODING}" -.else -CONFIGURE_MULTIBYTE= --enable-multibyte -.endif - -# if you want jdbc, type make -DWITH_JDBC -# Honors JAVA_HOME if you have it set, and don't want the dependency. -.if defined(WITH_JDBC) -JAVA_HOME?= ${LOCALBASE}/jdk1.1.8 -BUILD_DEPENDS= ${JAVA_HOME}/bin/javac:${PORTSDIR}/java/jdk -SCRIPTS_ENV+= JAVA_HOME=${JAVA_HOME} -.endif - -WRKSRC= ${WRKDIR}/${DISTNAME}/src -DOCDIR= ${WRKDIR}/${DISTNAME}/doc - -USE_GMAKE= YES -MAKEFILE= GNUmakefile -HAS_CONFIGURE= YES -CONFIGURE_ARGS= --prefix=${PREFIX}/pgsql \ - --enable-locale \ - --with-template=`uname -s | ${TR} '[A-Z]' '[a-z]'` \ - --with-includes="${PREFIX}/include ${TCL_INCDIR} ${TK_INCDIR}" \ - ${CONFIGURE_TCL} \ - ${CONFIGURE_MULTIBYTE} \ - --with-libraries=${PREFIX}/lib - -MAN1= createdb.1 createlang.1 createuser.1 dropdb.1 droplang.1 \ - dropuser.1 ecpg.1 initdb.1 initlocation.1 ipcclean.1 pg_ctl.1 \ - pg_dump.1 pg_dumpall.1 pg_passwd.1 pg_upgrade.1 pgaccess.1 \ - pgadmin.1 pgtclsh.1 pgtksh.1 postgres.1 postmaster.1 psql.1 \ - vacuumdb.1 -MANL= abort.l alter_group.l alter_table.l alter_user.l \ - begin.l close.l cluster.l comment.l commit.l copy.l \ - create_aggregate.l create_constraint_trigger.l \ - create_database.l create_function.l create_group.l \ - create_index.l create_language.l create_operator.l \ - create_rule.l create_sequence.l create_table.l \ - create_table_as.l create_trigger.l create_type.l \ - create_user.l create_view.l declare.l delete.l \ - drop_aggregate.l drop_database.l drop_function.l \ - drop_group.l drop_index.l drop_language.l \ - drop_operator.l drop_rule.l drop_sequence.l \ - drop_table.l drop_trigger.l drop_type.l drop_user.l \ - drop_view.l end.l explain.l fetch.l grant.l insert.l \ - listen.l load.l lock.l move.l notify.l reindex.l \ - reset.l revoke.l rollback.l select.l select_into.l \ - set.l show.l truncate.l unlisten.l update.l vacuum.l - -MANPREFIX= ${PREFIX}/pgsql - -pre-fetch: - @${ECHO_MSG} "To install and run postgresql you need to compile kernel with:" - @${ECHO_MSG} " options \"SYSVSHM, SYSVSEM, SYSVMSG\"" -.if !defined(WITH_TCL) - @${ECHO_MSG} "To build the \"PostgreSQL to Tcl interface library\", libpgtcl, type:" - @${ECHO_MSG} " make -DWITH_TCL" -.else - @${ECHO_MSG} "Building PostgreSQL with \"libpgtcl\"." -.endif -.if !defined(WITHOUT_MULTIBYTE) - @${ECHO_MSG} "To disable multibyte support, type:" - @${ECHO_MSG} " make -DWITHOUT_MULTIBYTE" -.if !defined(DEFAULT_ENCODING) - @${ECHO_MSG} "To set the default encoding for the multibyte support, type:" - @${ECHO_MSG} " make DEFAULT_ENCODING=<encoding>" - @${ECHO_MSG} "where <encoding> is one of these:" - @${ECHO_MSG} " SQL_ASCII LATIN1 LATIN2 LATIN3 LATIN4 LATIN5" - @${ECHO_MSG} " EUC_JP EUC_CN EUC_KR EUC_TW KOI8" - @${ECHO_MSG} " UNICODE MULE_INTERNAL WIN ALT" -.else - @${ECHO_MSG} "The default encoding is '${DEFAULT_ENCODING}'." -.endif -.else - @${ECHO_MSG} "Building PostgreSQL without multibyte support." -.endif -.if !defined(WITH_JDBC) - @${ECHO_MSG} "To build Java (JDBC) support, type:" - @${ECHO_MSG} " make -DWITH_JDBC" -.else - @${ECHO_MSG} "Building PostgreSQL with \"postgresql.jar\"." -.endif - -post-patch: - @ ${MV} ${WRKSRC}/template/freebsd ${WRKSRC}/template/freebsd.orig - @ ${SED} -e 's#CFLAGS:-O2 -m486 -pipe#CFLAGS:${CFLAGS}#' \ - -e 's#USE_LOCALE:no#USE_LOCALE:yes#' \ - ${WRKSRC}/template/freebsd.orig >> ${WRKSRC}/template/freebsd - @ ${MV} ${WRKSRC}/Makefile.global.in ${WRKSRC}/Makefile.global.in.old - @ ${SED} -e 's=!!PREFIX!!=${PREFIX}=g' \ - ${WRKSRC}/Makefile.global.in.old \ - >> ${WRKSRC}/Makefile.global.in - -post-build: -.if defined(WITH_JDBC) - @ cd ${WRKSRC}/interfaces/jdbc && ${GMAKE} -.if !defined(NOPORTDOCS) - @ cd ${WRKSRC}/interfaces/jdbc && ${GMAKE} examples -.endif -.endif - @ ${ECHO} "------------------------------------------------------------" - @ ${ECHO} "Dump existing databases, before installing new db version !!" - @ ${ECHO} "Detailed instructions, see" - @ ${ECHO} "${WRKDIR}/${DISTNAME}/INSTALL" - @ ${ECHO} "------------------------------------------------------------" - -pre-install: -.if defined(PACKAGE_BUILDING) - ${RM} -rf ${PREFIX}/pgsql -.endif - @ ${MKDIR} ${PREFIX}/pgsql - @ ${SETENV} ${MAKE_ENV} perl ${SCRIPTDIR}/createuser - -post-install: -.if defined(NOPORTDOCS) - @ ( cd ${DOCDIR}; ${GMAKE} man ) -.else - @ ( cd ${DOCDIR}; ${GMAKE} install ) -.endif - @ if [ ! -f ${PREFIX}/pgsql/.profile ]; then \ - ${ECHO} "PATH=${PATH}:${PREFIX}/pgsql/bin" \ - > ${PREFIX}/pgsql/.profile; \ - ${ECHO} "MANPATH=${MANPATH}:${PREFIX}/pgsql/man" \ - >> ${PREFIX}/pgsql/.profile; \ - ${ECHO} "PGLIB=${PREFIX}/pgsql/lib" \ - >> ${PREFIX}/pgsql/.profile; \ - ${ECHO} "# note: PGDATA overwrites the -D startup option" \ - >> ${PREFIX}/pgsql/.profile; \ - ${ECHO} "PGDATA=${PREFIX}/pgsql/data" \ - >> ${PREFIX}/pgsql/.profile; \ - ${ECHO} "DISPLAY=:0" \ - >> ${PREFIX}/pgsql/.profile; \ - ${ECHO} "export PATH MANPATH PGLIB PGDATA DISPLAY" \ - >> ${PREFIX}/pgsql/.profile; \ - ${ECHO} "# if you want to make regression tests use this TZ" \ - >> ${PREFIX}/pgsql/.profile; \ - ${ECHO} "#TZ=PST8PDT" \ - >> ${PREFIX}/pgsql/.profile; \ - ${ECHO} "#export TZ" \ - >> ${PREFIX}/pgsql/.profile; \ - fi - @ ${CHOWN} -R pgsql:pgsql ${PREFIX}/pgsql - @ ${ECHO} 'Initializing PostgreSQL Databases - this may take a few minutes...' - @ ${SETENV} OBJFORMAT=${PORTOBJFORMAT} ${LDCONFIG} -m ${PREFIX}/pgsql/lib - @ su -l pgsql -c 'PATH=${PREFIX}/pgsql/bin:${PATH} LD_LIBRARY_PATH=${PREFIX}/pgsql/lib ${PREFIX}/pgsql/bin/initdb --pglib=${PREFIX}/pgsql/lib --pgdata=${PREFIX}/pgsql/data' - @ ${SED} -e "s=!!PREFIX!!=${PREFIX}=g" < ${FILESDIR}/pgsql.sh.tmpl \ - > ${PREFIX}/etc/rc.d/pgsql.sh - @ ${CHMOD} 554 ${PREFIX}/etc/rc.d/pgsql.sh - @ ${CHOWN} root.pgsql ${PREFIX}/etc/rc.d/pgsql.sh - @ ${INSTALL_DATA} ${FILESDIR}/post-install-notes ${PREFIX}/pgsql -.if defined(WITHOUT_MULTIBYTE) - @${CP} ${TMPPLIST} ${TMPPLIST}.nomulti - @${GREP} -v pgsql/bin/pg_encoding ${TMPPLIST}.nomulti > ${TMPPLIST} -.endif -.if defined(WITH_TCL) - @${CP} ${TMPPLIST} ${TMPPLIST}.notcl - @${CAT} ${PKGDIR}/PLIST.tcl ${TMPPLIST}.notcl > ${TMPPLIST} - @${RM} ${TMPPLIST}.notcl -.endif -.if defined(WITH_JDBC) - @ ${MKDIR} -m 0555 ${PREFIX}/share/java/classes - @ ${INSTALL_DATA} ${WRKSRC}/interfaces/jdbc/postgresql.jar \ - ${PREFIX}/share/java/classes/postgresql.jar - @ ${ECHO_MSG} "---------------------------------------------------------" - @ ${ECHO_MSG} "Putting postgresql.jar in" - @ ${ECHO_MSG} "${PREFIX}/share/java/classes/postgresql.jar" - @ ${ECHO_MSG} "Add this to your CLASSPATH!" - @ ${ECHO_MSG} "ALSO NOTE: path inside jar file modified from 6.5.x:" - @ ${ECHO_MSG} " 'postgresql.*' -> 'org.postgresql.*'!" - @ ${ECHO_MSG} "You will need to modify you applications' props files." - @ ${ECHO_MSG} "---------------------------------------------------------" - @ ${CAT} ${PKGDIR}/PLIST.jdbc >> ${TMPPLIST} -.if !defined(NOPORTDOCS) - @ ${MKDIR} -m 0555 ${PREFIX}/share/examples/pgsql/jdbc - @ ${INSTALL_DATA} ${WRKSRC}/interfaces/jdbc/example/*java \ - ${PREFIX}/share/examples/pgsql/jdbc - @ ${INSTALL_DATA} ${WRKSRC}/interfaces/jdbc/README* \ - ${PREFIX}/share/examples/pgsql/jdbc - @ ${ECHO_MSG} "---------------------------------------------------------" - @ ${ECHO_MSG} "Putting jdbc examples into ${PREFIX}/share/examples/pgsql" - @ ${ECHO_MSG} "---------------------------------------------------------" - @ ${CAT} ${PKGDIR}/PLIST.doc >> ${TMPPLIST} -.endif -.endif -.if !defined(NOPORTDOCS) - ${MKDIR} ${PREFIX}/share/doc/pgsql - @ ${GMAKE} -C ${WRKDIR}/${DISTNAME}/doc install - ${INSTALL_MAN} ${WRKDIR}/${DISTNAME}/doc/FAQ* ${PREFIX}/share/doc/pgsql - ${INSTALL_MAN} ${WRKDIR}/${DISTNAME}/doc/README* ${PREFIX}/share/doc/pgsql - ${INSTALL_MAN} ${WRKDIR}/${DISTNAME}/doc/TODO ${PREFIX}/share/doc/pgsql -# ${INSTALL_MAN} ${WRKDIR}/${DISTNAME}/doc/*ps.gz ${PREFIX}/share/doc/pgsql -.endif -.if !defined(BATCH) - @ more -e ${FILESDIR}/post-install-notes -.endif -.if !defined(DEBUG_FLAGS) -.for file in ecpg pg_dump pg_id pg_passwd pg_version postgres psql - @ strip ${PREFIX}/pgsql/bin/${file} -.endfor -.endif - -.include <bsd.port.mk> diff --git a/databases/postgresql-devel-server/distinfo b/databases/postgresql-devel-server/distinfo deleted file mode 100644 index 309ea1e11614..000000000000 --- a/databases/postgresql-devel-server/distinfo +++ /dev/null @@ -1,4 +0,0 @@ -MD5 (postgresql/postgresql-7.0.2.base.tar.gz) = 871d23b85d9a3599a7ed75dfc7da7ba7 -MD5 (postgresql/postgresql-7.0.2.support.tar.gz) = c21180a6485d85785c8e69f0cbff05dd -MD5 (postgresql/postgresql-7.0.2.docs.tar.gz) = efac1f87463f252e54d72b256885b883 -MD5 (postgresql/postgresql-7.0.2.test.tar.gz) = 3443b3d83194c396f20aee2adc6f93bf diff --git a/databases/postgresql-devel-server/files/patch-aj b/databases/postgresql-devel-server/files/patch-aj deleted file mode 100644 index 4231fc94ede9..000000000000 --- a/databases/postgresql-devel-server/files/patch-aj +++ /dev/null @@ -1,67 +0,0 @@ ---- bin/pg_passwd/pg_passwd.c.orig Mon Apr 17 05:45:18 2000 -+++ bin/pg_passwd/pg_passwd.c Sat May 20 17:54:59 2000 -@@ -18,11 +18,15 @@ - - #endif - -+#ifndef _POSIX_SOURCE -+# define _PASSWORD_LEN 128 /* max length, not containing NULL */ -+#endif -+ - char *comname; - static void usage(FILE *stream); - static void read_pwd_file(char *filename); - static void write_pwd_file(char *filename, char *bkname); --static void encrypt_pwd(char key[9], char salt[3], char passwd[14]); -+static void encrypt_pwd(char key[9], char salt[3], char passwd[_PASSWORD_LEN+1]); - static void prompt_for_username(char *username); - static void prompt_for_password(char *prompt, char *password); - -@@ -150,7 +154,7 @@ - - if (q != NULL) - *(q++) = '\0'; -- if (strlen(p) != 13) -+ if (strlen(p) > _PASSWORD_LEN) - { - fprintf(stderr, "WARNING: %s: line %d: illegal password length.\n", - filename, npwds + 1); -@@ -214,7 +218,7 @@ - } - - static void --encrypt_pwd(char key[9], char salt[3], char passwd[14]) -+encrypt_pwd(char key[9], char salt[3], char passwd[_PASSWORD_LEN+1]) - { - int n; - -@@ -246,9 +250,9 @@ - - #ifdef NOT_USED - static int --check_pwd(char key[9], char passwd[14]) -+check_pwd(char key[9], char passwd[_PASSWORD_LEN+1]) - { -- char shouldbe[14]; -+ char shouldbe[_PASSWORD_LEN+1]; - char salt[3]; - - salt[0] = passwd[0]; -@@ -256,7 +260,7 @@ - salt[2] = '\0'; - encrypt_pwd(key, salt, shouldbe); - -- return strncmp(shouldbe, passwd, 13) == 0 ? 1 : 0; -+ return strncmp(shouldbe, passwd, _PASSWORD_LEN) == 0 ? 1 : 0; - } - - #endif -@@ -332,7 +336,7 @@ - char salt[3]; - char key[9], - key2[9]; -- char e_passwd[14]; -+ char e_passwd[_PASSWORD_LEN+1]; - int i; - - comname = argv[0]; diff --git a/databases/postgresql-devel-server/files/patch-ar b/databases/postgresql-devel-server/files/patch-ar deleted file mode 100644 index c5c8096fc141..000000000000 --- a/databases/postgresql-devel-server/files/patch-ar +++ /dev/null @@ -1,11 +0,0 @@ ---- configure.orig Sun Oct 10 14:37:07 1999 -+++ configure Sun Oct 10 14:37:29 1999 -@@ -1429,7 +1429,7 @@ - ELF_SYS=true - else - rm -rf conftest* -- if test "X$elf" = "Xyes" -+ if test "X$PORTOBJFORMAT" = "Xelf" - then - ELF_SYS=true - else diff --git a/databases/postgresql-devel-server/files/patch-as b/databases/postgresql-devel-server/files/patch-as deleted file mode 100644 index 3282168c4aed..000000000000 --- a/databases/postgresql-devel-server/files/patch-as +++ /dev/null @@ -1,11 +0,0 @@ ---- Makefile.global.in.orig Sun Dec 6 00:08:56 1998 -+++ Makefile.global.in Sat Feb 27 04:23:12 1999 -@@ -79,7 +79,7 @@ - POSTMANDIR= $(POSTGRESDIR)/man - - # Where the formatted documents (e.g., the reference manual) get installed. --POSTDOCDIR= $(POSTGRESDIR)/doc -+POSTDOCDIR= !!PREFIX!!/share/doc/pgsql - - # Where the header files necessary to build frontend programs get installed. - HEADERDIR= $(POSTGRESDIR)/include diff --git a/databases/postgresql-devel-server/files/patch-at b/databases/postgresql-devel-server/files/patch-at deleted file mode 100644 index 93e68a708211..000000000000 --- a/databases/postgresql-devel-server/files/patch-at +++ /dev/null @@ -1,11 +0,0 @@ ---- ../doc/Makefile.orig Sun Nov 29 06:30:13 1998 -+++ ../doc/Makefile Mon Jun 21 17:00:13 1999 -@@ -12,7 +12,7 @@ - # - #---------------------------------------------------------------------------- - --PGDOCS= $(POSTGRESDIR)/doc -+PGDOCS= $(POSTDOCDIR) - SRCDIR= ../src - - TAR= tar diff --git a/databases/postgresql-devel-server/files/patch-ba b/databases/postgresql-devel-server/files/patch-ba deleted file mode 100644 index a3b679b882c5..000000000000 --- a/databases/postgresql-devel-server/files/patch-ba +++ /dev/null @@ -1,25 +0,0 @@ ---- interfaces/jdbc/Makefile.orig Tue Mar 14 16:55:17 2000 -+++ interfaces/jdbc/Makefile Sun Apr 16 21:16:43 2000 -@@ -10,10 +10,10 @@ - - FIND = find - IDL2JAVA = idltojava -fno-cpp -fno-tie --JAR = jar --JAVA = java --JAVAC = javac -g --JAVADOC = javadoc -+JAR = !!JAVA_HOME!!/bin/jar -+JAVA = !!JAVA_HOME!!/bin/java -+JAVAC = !!JAVA_HOME!!/bin/javac -+JAVADOC = !!JAVA_HOME!!/bin/javadoc - RM = rm -f - TOUCH = touch - -@@ -40,6 +40,7 @@ - @echo To compile, type: - @echo " $(MAKE) jdbc2" - @echo ------------------------------------------------------------ -+ $(MAKE) jdbc1 - - msg: - @echo ------------------------------------------------------------ diff --git a/databases/postgresql-devel-server/files/patch-bb b/databases/postgresql-devel-server/files/patch-bb deleted file mode 100644 index ea0f1732dcb0..000000000000 --- a/databases/postgresql-devel-server/files/patch-bb +++ /dev/null @@ -1,13 +0,0 @@ ---- pl/tcl/Makefile~ Sat Apr 29 19:45:42 2000 -+++ pl/tcl/Makefile Sat May 20 22:42:22 2000 -@@ -71,7 +71,9 @@ - CFLAGS+= $(TCL_SHLIB_CFLAGS) $(TCL_DEFS) - - CFLAGS+= -I$(SRCDIR)/include -I$(SRCDIR)/backend $(PGSQL_INCLUDES) -- -+ -+CFLAGS+= -I$(TCL_INCDIR) -+ - # - # Uncomment the following to enable the unknown command lookup - # on the first of all calls to the call handler. See the doc diff --git a/databases/postgresql-devel-server/files/patch-bc b/databases/postgresql-devel-server/files/patch-bc deleted file mode 100644 index ff747fb84a2f..000000000000 --- a/databases/postgresql-devel-server/files/patch-bc +++ /dev/null @@ -1,5 +0,0 @@ ---- bin/pg_ctl/postmaster.opts.default.sample~ Mon Apr 17 05:45:17 2000 -+++ bin/pg_ctl/postmaster.opts.default.sample Tue May 23 02:46:30 2000 -@@ -1 +1 @@ -- -+-i -o "-F" diff --git a/databases/postgresql-devel-server/files/pgsql.sh.tmpl b/databases/postgresql-devel-server/files/pgsql.sh.tmpl deleted file mode 100644 index e1673b4850c2..000000000000 --- a/databases/postgresql-devel-server/files/pgsql.sh.tmpl +++ /dev/null @@ -1,34 +0,0 @@ -#!/bin/sh - -# $FreeBSD$ -# -# For postmaster startup options, edit $PGDATA/postmaster.opts.default -# Preinstalled options are -i -o "-F" - -case $1 in -start) - [ -d !!PREFIX!!/pgsql/lib ] && /sbin/ldconfig -m !!PREFIX!!/pgsql/lib - [ -x !!PREFIX!!/pgsql/bin/pg_ctl ] && { - su -l pgsql -c \ - 'exec !!PREFIX!!/pgsql/bin/pg_ctl -w start > !!PREFIX!!/pgsql/errlog 2>&1' - echo -n ' pgsql' - } - ;; - -stop) - [ -x !!PREFIX!!/pgsql/bin/pg_ctl ] && { - su -l pgsql -c 'exec !!PREFIX!!/pgsql/bin/pg_ctl -w -m fast stop' - } - ;; - -status) - [ -x !!PREFIX!!/pgsql/bin/pg_ctl ] && { - su -l pgsql -c 'exec !!PREFIX!!/pgsql/bin/pg_ctl status' - } - ;; - -*) - echo "usage: `basename $0` {start|stop|status}" >&2 - exit 64 - ;; -esac diff --git a/databases/postgresql-devel-server/files/post-install-notes b/databases/postgresql-devel-server/files/post-install-notes deleted file mode 100644 index 289a7651109a..000000000000 --- a/databases/postgresql-devel-server/files/post-install-notes +++ /dev/null @@ -1,16 +0,0 @@ - -Now that PostgreSQL is installed, you should read the documentation and -implementation guides. These can be found at: - - http://www.PostgreSQL.org/docs - -You may wish to subscribe to the PostgreSQL user-support mailing list. -Send an e-mail to pgsql-questions-request@postgresql.org with the -text "subscribe" in the message body. - -If you built PostgreSQL with TCL support, you can install the port -"pgaccess" to get a TCL/TK based database frontend for database -operations. - -To start PostgreSQL, run the startup script: -$PREFIX/etc/rc.d/pgsql.sh start diff --git a/databases/postgresql-devel-server/pkg-comment b/databases/postgresql-devel-server/pkg-comment deleted file mode 100644 index 2125016b133c..000000000000 --- a/databases/postgresql-devel-server/pkg-comment +++ /dev/null @@ -1 +0,0 @@ -A robust, next generation, object-relational DBMS diff --git a/databases/postgresql-devel-server/pkg-descr b/databases/postgresql-devel-server/pkg-descr deleted file mode 100644 index f48a33337e55..000000000000 --- a/databases/postgresql-devel-server/pkg-descr +++ /dev/null @@ -1,24 +0,0 @@ -PostgreSQL is a robust, next-generation, Object-Relational DBMS (ORDBMS), -derived from the Berkeley Postgres database management system. While -PostgreSQL retains the powerful object-relational data model, rich data types -and easy extensibility of Postgres, it replaces the PostQuel query language -with an extended subset of SQL. - -The original Postgres code was the effort of many graduate students, -undergraduate students, and staff programmers working under the direction of -Professor Michael Stonebraker at the University of California, Berkeley. In -1995, Andrew Yu and Jolly Chen took on the task of converting the DBMS query -language to SQL and created a new database system which came to known as -Postgres95. Many others contributed to the porting, testing, debugging and -enhancement of the Postgres95 code. As the code improved, and 1995 faded into -memory, PostgreSQL was born. - -PostgreSQL development is presently being performed by a team of Internet -developers who are now responsible for all current and future development. The -development team coordinator is Marc G. Fournier (scrappy@PostgreSQL.ORG). -Support is available from the PostgreSQL developer/user community through the -support mailing list (questions@PostgreSQL.ORG). - -PostgreSQL is free and the complete source is available. - -WWW: http://www.postgresql.org diff --git a/databases/postgresql-devel-server/pkg-install b/databases/postgresql-devel-server/pkg-install deleted file mode 100644 index 7f3a090fe4b6..000000000000 --- a/databases/postgresql-devel-server/pkg-install +++ /dev/null @@ -1,44 +0,0 @@ -#! /bin/sh - -# $FreeBSD$ - -PATH=/bin:/usr/sbin - -if [ -z "${DB_DIR}" ]; then - DB_DIR=${PKG_PREFIX}/pgsql/data -fi - -case $2 in -POST-INSTALL) - USER=pgsql - GROUP=${USER} - UID=89 - GID=${UID} - - if pw group show "${GROUP}" 2>/dev/null; then - echo "You already have a group \"${GROUP}\", so I will use it." - else - if pw groupadd ${GROUP} -g ${GID}; then - echo "Added group \"${GROUP}\"." - else - echo "Adding group \"${GROUP}\" failed..." - exit 1 - fi - fi - - if pw user show "${USER}" 2>/dev/null; then - echo "You already have a user \"${USER}\", so I will use it." - else - if pw useradd ${USER} -u ${UID} -g ${GROUP} -h - \ - -d ${DB_DIR} -s /sbin/nologin -c "PostgreSQL Daemon" - then - echo "Added user \"${USER}\"." - else - echo "Adding user \"${USER}\" failed..." - exit 1 - fi - fi - - chown -R ${USER}.${GROUP} ${DB_DIR} - ;; -esac diff --git a/databases/postgresql-devel-server/pkg-plist b/databases/postgresql-devel-server/pkg-plist deleted file mode 100644 index 9992da1174ae..000000000000 --- a/databases/postgresql-devel-server/pkg-plist +++ /dev/null @@ -1,168 +0,0 @@ -etc/rc.d/pgsql.sh -pgsql/.profile -pgsql/bin/createdb -pgsql/bin/createlang -pgsql/bin/createuser -pgsql/bin/dropdb -pgsql/bin/droplang -pgsql/bin/dropuser -pgsql/bin/ecpg -pgsql/bin/initdb -pgsql/bin/initlocation -pgsql/bin/ipcclean -pgsql/bin/pg_ctl -pgsql/bin/pg_dump -pgsql/bin/pg_dumpall -pgsql/bin/pg_encoding -pgsql/bin/pg_id -pgsql/bin/pg_passwd -pgsql/bin/pg_upgrade -pgsql/bin/pg_version -pgsql/bin/postgres -pgsql/bin/postmaster -pgsql/bin/psql -pgsql/bin/vacuumdb -pgsql/data/PG_VERSION -pgsql/data/base/template1/PG_VERSION -pgsql/data/base/template1/pg_aggregate -pgsql/data/base/template1/pg_aggregate_name_type_index -pgsql/data/base/template1/pg_am -pgsql/data/base/template1/pg_am_name_index -pgsql/data/base/template1/pg_amop -pgsql/data/base/template1/pg_amop_opid_index -pgsql/data/base/template1/pg_amop_strategy_index -pgsql/data/base/template1/pg_amproc -pgsql/data/base/template1/pg_attrdef -pgsql/data/base/template1/pg_attrdef_adrelid_index -pgsql/data/base/template1/pg_attribute -pgsql/data/base/template1/pg_attribute_relid_attnam_index -pgsql/data/base/template1/pg_attribute_relid_attnum_index -pgsql/data/base/template1/pg_class -pgsql/data/base/template1/pg_class_oid_index -pgsql/data/base/template1/pg_class_relname_index -pgsql/data/base/template1/pg_description -pgsql/data/base/template1/pg_description_objoid_index -pgsql/data/base/template1/pg_index -pgsql/data/base/template1/pg_index_indexrelid_index -pgsql/data/base/template1/pg_indexes -pgsql/data/base/template1/pg_inheritproc -pgsql/data/base/template1/pg_inherits -pgsql/data/base/template1/pg_inherits_relid_seqno_index -pgsql/data/base/template1/pg_ipl -pgsql/data/base/template1/pg_language -pgsql/data/base/template1/pg_language_name_index -pgsql/data/base/template1/pg_language_oid_index -pgsql/data/base/template1/pg_listener -pgsql/data/base/template1/pg_listener_relname_pid_index -pgsql/data/base/template1/pg_opclass -pgsql/data/base/template1/pg_opclass_deftype_index -pgsql/data/base/template1/pg_opclass_name_index -pgsql/data/base/template1/pg_operator -pgsql/data/base/template1/pg_operator_oid_index -pgsql/data/base/template1/pg_operator_oprname_l_r_k_index -pgsql/data/base/template1/pg_proc -pgsql/data/base/template1/pg_proc_oid_index -pgsql/data/base/template1/pg_proc_proname_narg_type_index -pgsql/data/base/template1/pg_relcheck -pgsql/data/base/template1/pg_relcheck_rcrelid_index -pgsql/data/base/template1/pg_rewrite -pgsql/data/base/template1/pg_rewrite_oid_index -pgsql/data/base/template1/pg_rewrite_rulename_index -pgsql/data/base/template1/pg_rules -pgsql/data/base/template1/pg_statistic -pgsql/data/base/template1/pg_statistic_relid_att_index -pgsql/data/base/template1/pg_tables -pgsql/data/base/template1/pg_trigger -pgsql/data/base/template1/pg_trigger_tgconstrname_index -pgsql/data/base/template1/pg_trigger_tgconstrrelid_index -pgsql/data/base/template1/pg_trigger_tgrelid_index -pgsql/data/base/template1/pg_type -pgsql/data/base/template1/pg_type_oid_index -pgsql/data/base/template1/pg_type_typname_index -pgsql/data/base/template1/pg_user -pgsql/data/base/template1/pg_views -pgsql/data/pg_control -pgsql/data/pg_database -pgsql/data/pg_geqo.sample -pgsql/data/pg_group -pgsql/data/pg_group_name_index -pgsql/data/pg_group_sysid_index -pgsql/data/pg_hba.conf -pgsql/data/pg_log -pgsql/data/pg_shadow -pgsql/data/pg_variable -pgsql/data/postmaster.opts.default -pgsql/include/access/attnum.h -pgsql/include/c.h -pgsql/include/commands/trigger.h -pgsql/include/config.h -pgsql/include/ecpgerrno.h -pgsql/include/ecpglib.h -pgsql/include/ecpgtype.h -pgsql/include/executor/spi.h -pgsql/include/fmgr.h -pgsql/include/lib/dllist.h -pgsql/include/libpgeasy.h -pgsql/include/libpq/libpq-fs.h -pgsql/include/libpq/pqcomm.h -pgsql/include/libpq++/pgconnection.h -pgsql/include/libpq++/pgcursordb.h -pgsql/include/libpq++/pgdatabase.h -pgsql/include/libpq++/pglobject.h -pgsql/include/libpq++/pgtransdb.h -pgsql/include/libpq++.h -pgsql/include/libpq-fe.h -pgsql/include/libpq-int.h -pgsql/include/os.h -pgsql/include/postgres.h -pgsql/include/postgres_ext.h -pgsql/include/pqexpbuffer.h -pgsql/include/sql3types.h -pgsql/include/sqlca.h -pgsql/include/utils/elog.h -pgsql/include/utils/geo_decls.h -pgsql/include/utils/mcxt.h -pgsql/include/utils/palloc.h -pgsql/lib/global1.bki.source -pgsql/lib/global1.description -pgsql/lib/libecpg.a -pgsql/lib/libecpg.so -pgsql/lib/libecpg.so.3 -pgsql/lib/libpgeasy.a -pgsql/lib/libpgeasy.so -pgsql/lib/libpgeasy.so.2 -pgsql/lib/libpq++.a -pgsql/lib/libpq++.so -pgsql/lib/libpq++.so.3 -pgsql/lib/libpq.a -pgsql/lib/libpq.so -pgsql/lib/libpq.so.2 -pgsql/lib/local1_template1.bki.source -pgsql/lib/local1_template1.description -pgsql/lib/pg_geqo.sample -pgsql/lib/pg_hba.conf.sample -pgsql/lib/pg_ident.conf.sample -pgsql/lib/pg_options.sample -pgsql/lib/plpgsql.so -pgsql/lib/postmaster.opts.default.sample -pgsql/post-install-notes -@dirrm pgsql/bin -@dirrm pgsql/data/base/template1 -@dirrm pgsql/data/base -@dirrm pgsql/data/pg_xlog -@dirrm pgsql/data -@dirrm pgsql/include/access -@dirrm pgsql/include/commands -@dirrm pgsql/include/executor -@dirrm pgsql/include/lib -@dirrm pgsql/include/libpq -@dirrm pgsql/include/libpq++ -@dirrm pgsql/include/port/freebsd -@dirrm pgsql/include/port -@dirrm pgsql/include/utils -@dirrm pgsql/include -@dirrm pgsql/lib -@dirrm pgsql/man/man1 -@dirrm pgsql/man/manl -@dirrm pgsql/man -@dirrm pgsql diff --git a/databases/postgresql-devel-server/pkg-plist.doc b/databases/postgresql-devel-server/pkg-plist.doc deleted file mode 100644 index 06b7bd9ea116..000000000000 --- a/databases/postgresql-devel-server/pkg-plist.doc +++ /dev/null @@ -1,888 +0,0 @@ -share/doc/pgsql/FAQ -share/doc/pgsql/FAQ_AIX -share/doc/pgsql/FAQ_BSDI -share/doc/pgsql/FAQ_DEV -share/doc/pgsql/FAQ_DigitalUnix -share/doc/pgsql/FAQ_FreeBSD -share/doc/pgsql/FAQ_HPUX -share/doc/pgsql/FAQ_Irix -share/doc/pgsql/FAQ_Linux -share/doc/pgsql/FAQ_QNX4 -share/doc/pgsql/FAQ_SCO -share/doc/pgsql/FAQ_Solaris -share/doc/pgsql/README.Charsets -share/doc/pgsql/README.NT -share/doc/pgsql/README.fsync -share/doc/pgsql/README.inet -share/doc/pgsql/README.locale -share/doc/pgsql/README.mb -share/doc/pgsql/README.mb.jp -share/doc/pgsql/TODO -share/doc/pgsql/admin/admin.htm -share/doc/pgsql/admin/admin.html -share/doc/pgsql/admin/biblio.htm -share/doc/pgsql/admin/c573.htm -share/doc/pgsql/admin/c573602.htm -share/doc/pgsql/admin/c573680.htm -share/doc/pgsql/admin/c573717.htm -share/doc/pgsql/admin/copyright.htm -share/doc/pgsql/admin/disk.htm -share/doc/pgsql/admin/index.html -share/doc/pgsql/admin/install-win32.htm -share/doc/pgsql/admin/install-win321073.htm -share/doc/pgsql/admin/install-win321082.htm -share/doc/pgsql/admin/install.htm -share/doc/pgsql/admin/install855.htm -share/doc/pgsql/admin/intro-ag.htm -share/doc/pgsql/admin/intro-ag162.htm -share/doc/pgsql/admin/layout.gif -share/doc/pgsql/admin/layout.htm -share/doc/pgsql/admin/manage-ag.htm -share/doc/pgsql/admin/manage-ag1604.htm -share/doc/pgsql/admin/manage-ag1646.htm -share/doc/pgsql/admin/manage-ag1655.htm -share/doc/pgsql/admin/newuser.htm -share/doc/pgsql/admin/notation.htm -share/doc/pgsql/admin/pg-options.htm -share/doc/pgsql/admin/ports.htm -share/doc/pgsql/admin/ports481.htm -share/doc/pgsql/admin/postmaster.htm -share/doc/pgsql/admin/preface.htm -share/doc/pgsql/admin/recovery.htm -share/doc/pgsql/admin/regress.htm -share/doc/pgsql/admin/regress1861.htm -share/doc/pgsql/admin/regress1895.htm -share/doc/pgsql/admin/regress1941.htm -share/doc/pgsql/admin/release.htm -share/doc/pgsql/admin/release2009.htm -share/doc/pgsql/admin/release2020.htm -share/doc/pgsql/admin/release2031.htm -share/doc/pgsql/admin/release2042.htm -share/doc/pgsql/admin/release2124.htm -share/doc/pgsql/admin/release2135.htm -share/doc/pgsql/admin/release2146.htm -share/doc/pgsql/admin/release2187.htm -share/doc/pgsql/admin/release2203.htm -share/doc/pgsql/admin/release2222.htm -share/doc/pgsql/admin/release2266.htm -share/doc/pgsql/admin/release2288.htm -share/doc/pgsql/admin/release2303.htm -share/doc/pgsql/admin/release2312.htm -share/doc/pgsql/admin/release2335.htm -share/doc/pgsql/admin/release2349.htm -share/doc/pgsql/admin/release2352.htm -share/doc/pgsql/admin/release2377.htm -share/doc/pgsql/admin/release2414.htm -share/doc/pgsql/admin/release2421.htm -share/doc/pgsql/admin/release2428.htm -share/doc/pgsql/admin/release2435.htm -share/doc/pgsql/admin/release2439.htm -share/doc/pgsql/admin/runtime.htm -share/doc/pgsql/admin/security.htm -share/doc/pgsql/admin/security1450.htm -share/doc/pgsql/admin/security1485.htm -share/doc/pgsql/admin/security1509.htm -share/doc/pgsql/admin/security1530.htm -share/doc/pgsql/admin/terminology.htm -share/doc/pgsql/admin/trouble.htm -share/doc/pgsql/admin/trouble1721.htm -share/doc/pgsql/admin/trouble1738.htm -share/doc/pgsql/admin/y2k.htm -share/doc/pgsql/postgres/about.htm -share/doc/pgsql/postgres/advanced.htm -share/doc/pgsql/postgres/advanced27923.htm -share/doc/pgsql/postgres/advanced27945.htm -share/doc/pgsql/postgres/app-createdb.htm -share/doc/pgsql/postgres/app-createlang.htm -share/doc/pgsql/postgres/app-createuser.htm -share/doc/pgsql/postgres/app-dropdb.htm -share/doc/pgsql/postgres/app-droplang.htm -share/doc/pgsql/postgres/app-dropuser.htm -share/doc/pgsql/postgres/app-ecpg.htm -share/doc/pgsql/postgres/app-initdb.htm -share/doc/pgsql/postgres/app-initlocation.htm -share/doc/pgsql/postgres/app-ipcclean.htm -share/doc/pgsql/postgres/app-pg-passwd.htm -share/doc/pgsql/postgres/app-pg-upgrade.htm -share/doc/pgsql/postgres/app-pgaccess.htm -share/doc/pgsql/postgres/app-pgadmin.htm -share/doc/pgsql/postgres/app-pgctl.htm -share/doc/pgsql/postgres/app-pgdump.htm -share/doc/pgsql/postgres/app-pgdumpall.htm -share/doc/pgsql/postgres/app-pgtclsh.htm -share/doc/pgsql/postgres/app-pgtksh.htm -share/doc/pgsql/postgres/app-postgres.htm -share/doc/pgsql/postgres/app-postmaster.htm -share/doc/pgsql/postgres/app-psql.htm -share/doc/pgsql/postgres/app-vacuumdb.htm -share/doc/pgsql/postgres/applications.htm -share/doc/pgsql/postgres/arch-pg.htm -share/doc/pgsql/postgres/arch.htm -share/doc/pgsql/postgres/arrays.htm -share/doc/pgsql/postgres/biblio.htm -share/doc/pgsql/postgres/bki.htm -share/doc/pgsql/postgres/bki26573.htm -share/doc/pgsql/postgres/bki26657.htm -share/doc/pgsql/postgres/bki26681.htm -share/doc/pgsql/postgres/bki26742.htm -share/doc/pgsql/postgres/c16883.htm -share/doc/pgsql/postgres/c1688316912.htm -share/doc/pgsql/postgres/c1688316990.htm -share/doc/pgsql/postgres/c1688317027.htm -share/doc/pgsql/postgres/c19986.htm -share/doc/pgsql/postgres/c21722.htm -share/doc/pgsql/postgres/c2172221764.htm -share/doc/pgsql/postgres/c2172221782.htm -share/doc/pgsql/postgres/c2172221924.htm -share/doc/pgsql/postgres/c2172221936.htm -share/doc/pgsql/postgres/c2172221956.htm -share/doc/pgsql/postgres/c2172221961.htm -share/doc/pgsql/postgres/c25129.htm -share/doc/pgsql/postgres/c4091.htm -share/doc/pgsql/postgres/c40914117.htm -share/doc/pgsql/postgres/c40914344.htm -share/doc/pgsql/postgres/c4362.htm -share/doc/pgsql/postgres/c43624375.htm -share/doc/pgsql/postgres/c4888.htm -share/doc/pgsql/postgres/c4933.htm -share/doc/pgsql/postgres/c49334943.htm -share/doc/pgsql/postgres/c49334947.htm -share/doc/pgsql/postgres/catalogs.gif -share/doc/pgsql/postgres/clientserver.gif -share/doc/pgsql/postgres/compiler.htm -share/doc/pgsql/postgres/connections.gif -share/doc/pgsql/postgres/copyright.htm -share/doc/pgsql/postgres/cvs.htm -share/doc/pgsql/postgres/cvs28436.htm -share/doc/pgsql/postgres/cvs28492.htm -share/doc/pgsql/postgres/datatype.htm -share/doc/pgsql/postgres/datatype1038.htm -share/doc/pgsql/postgres/datatype1070.htm -share/doc/pgsql/postgres/datatype1134.htm -share/doc/pgsql/postgres/datatype1649.htm -share/doc/pgsql/postgres/datatype1681.htm -share/doc/pgsql/postgres/datatype1920.htm -share/doc/pgsql/postgres/datetime-appendix.htm -share/doc/pgsql/postgres/datetime-appendix28356.htm -share/doc/pgsql/postgres/dfunc.htm -share/doc/pgsql/postgres/dfunc20136.htm -share/doc/pgsql/postgres/dfunc20146.htm -share/doc/pgsql/postgres/disk.htm -share/doc/pgsql/postgres/docguide.htm -share/doc/pgsql/postgres/docguide28718.htm -share/doc/pgsql/postgres/docguide28749.htm -share/doc/pgsql/postgres/docguide28840.htm -share/doc/pgsql/postgres/docguide28861.htm -share/doc/pgsql/postgres/docguide28887.htm -share/doc/pgsql/postgres/docguide29024.htm -share/doc/pgsql/postgres/docguide29362.htm -share/doc/pgsql/postgres/environ.htm -share/doc/pgsql/postgres/extend.htm -share/doc/pgsql/postgres/extend18852.htm -share/doc/pgsql/postgres/extend18864.htm -share/doc/pgsql/postgres/func-ref.htm -share/doc/pgsql/postgres/functions.htm -share/doc/pgsql/postgres/functions2593.htm -share/doc/pgsql/postgres/functions2733.htm -share/doc/pgsql/postgres/functions2876.htm -share/doc/pgsql/postgres/functions2976.htm -share/doc/pgsql/postgres/functions3443.htm -share/doc/pgsql/postgres/functions3641.htm -share/doc/pgsql/postgres/geqo-biblio.htm -share/doc/pgsql/postgres/geqo.htm -share/doc/pgsql/postgres/geqo25594.htm -share/doc/pgsql/postgres/geqo25617.htm -share/doc/pgsql/postgres/geqo25655.htm -share/doc/pgsql/postgres/gist.htm -share/doc/pgsql/postgres/index.html -share/doc/pgsql/postgres/indices.htm -share/doc/pgsql/postgres/inherit.htm -share/doc/pgsql/postgres/install-win32.htm -share/doc/pgsql/postgres/install-win3217383.htm -share/doc/pgsql/postgres/install-win3217392.htm -share/doc/pgsql/postgres/install.htm -share/doc/pgsql/postgres/install17165.htm -share/doc/pgsql/postgres/intro.htm -share/doc/pgsql/postgres/intro176.htm -share/doc/pgsql/postgres/intro304.htm -share/doc/pgsql/postgres/intro60.htm -share/doc/pgsql/postgres/jdbc.htm -share/doc/pgsql/postgres/jdbc24909.htm -share/doc/pgsql/postgres/jdbc24921.htm -share/doc/pgsql/postgres/jdbc24927.htm -share/doc/pgsql/postgres/jdbc24935.htm -share/doc/pgsql/postgres/jdbc24953.htm -share/doc/pgsql/postgres/jdbc24990.htm -share/doc/pgsql/postgres/jdbc25021.htm -share/doc/pgsql/postgres/jdbc25026.htm -share/doc/pgsql/postgres/jdbc25030.htm -share/doc/pgsql/postgres/jdbc25056.htm -share/doc/pgsql/postgres/jdbc25086.htm -share/doc/pgsql/postgres/largeobjects.htm -share/doc/pgsql/postgres/largeobjects21625.htm -share/doc/pgsql/postgres/largeobjects21628.htm -share/doc/pgsql/postgres/largeobjects21707.htm -share/doc/pgsql/postgres/largeobjects21714.htm -share/doc/pgsql/postgres/largeobjects21718.htm -share/doc/pgsql/postgres/layout.gif -share/doc/pgsql/postgres/layout.htm -share/doc/pgsql/postgres/libpq-chapter.htm -share/doc/pgsql/postgres/libpq-chapter22422.htm -share/doc/pgsql/postgres/libpq-chapter22577.htm -share/doc/pgsql/postgres/libpq-chapter22724.htm -share/doc/pgsql/postgres/libpq-chapter22736.htm -share/doc/pgsql/postgres/libpq-chapter22774.htm -share/doc/pgsql/postgres/libpq-chapter22844.htm -share/doc/pgsql/postgres/libpq-chapter22857.htm -share/doc/pgsql/postgres/libpq-chapter22942.htm -share/doc/pgsql/postgres/libpq-envars.htm -share/doc/pgsql/postgres/libpq-threading.htm -share/doc/pgsql/postgres/libpqplusplus.htm -share/doc/pgsql/postgres/libpqplusplus23034.htm -share/doc/pgsql/postgres/libpqplusplus23044.htm -share/doc/pgsql/postgres/libpqplusplus23074.htm -share/doc/pgsql/postgres/libpqplusplus23179.htm -share/doc/pgsql/postgres/libpqplusplus23202.htm -share/doc/pgsql/postgres/lisp.htm -share/doc/pgsql/postgres/manage-ag.htm -share/doc/pgsql/postgres/manage-ag17914.htm -share/doc/pgsql/postgres/manage-ag17956.htm -share/doc/pgsql/postgres/manage-ag17965.htm -share/doc/pgsql/postgres/manage.htm -share/doc/pgsql/postgres/manage4814.htm -share/doc/pgsql/postgres/manage4838.htm -share/doc/pgsql/postgres/manage4880.htm -share/doc/pgsql/postgres/mvcc.htm -share/doc/pgsql/postgres/mvcc4568.htm -share/doc/pgsql/postgres/mvcc4621.htm -share/doc/pgsql/postgres/mvcc4633.htm -share/doc/pgsql/postgres/mvcc4646.htm -share/doc/pgsql/postgres/mvcc4723.htm -share/doc/pgsql/postgres/mvcc4744.htm -share/doc/pgsql/postgres/newuser.htm -share/doc/pgsql/postgres/notation.htm -share/doc/pgsql/postgres/odbc.htm -share/doc/pgsql/postgres/odbc24433.htm -share/doc/pgsql/postgres/odbc24471.htm -share/doc/pgsql/postgres/odbc24644.htm -share/doc/pgsql/postgres/odbc24666.htm -share/doc/pgsql/postgres/operators.htm -share/doc/pgsql/postgres/operators2127.htm -share/doc/pgsql/postgres/operators2198.htm -share/doc/pgsql/postgres/operators2267.htm -share/doc/pgsql/postgres/operators2377.htm -share/doc/pgsql/postgres/operators2436.htm -share/doc/pgsql/postgres/operators2490.htm -share/doc/pgsql/postgres/overview.htm -share/doc/pgsql/postgres/overview25194.htm -share/doc/pgsql/postgres/overview25219.htm -share/doc/pgsql/postgres/overview25347.htm -share/doc/pgsql/postgres/overview25403.htm -share/doc/pgsql/postgres/overview25457.htm -share/doc/pgsql/postgres/page.htm -share/doc/pgsql/postgres/page26805.htm -share/doc/pgsql/postgres/page26819.htm -share/doc/pgsql/postgres/part-admin.htm -share/doc/pgsql/postgres/part-appendix.htm -share/doc/pgsql/postgres/part-developer.htm -share/doc/pgsql/postgres/part-interfaces.htm -share/doc/pgsql/postgres/part-programmer.htm -share/doc/pgsql/postgres/part-tutorial.htm -share/doc/pgsql/postgres/part-user.htm -share/doc/pgsql/postgres/partial-index.htm -share/doc/pgsql/postgres/pg-options-dev.htm -share/doc/pgsql/postgres/pg-options.htm -share/doc/pgsql/postgres/pgeasy-chapter.htm -share/doc/pgsql/postgres/pgtcl-pgconndefaults.htm -share/doc/pgsql/postgres/pgtcl-pgconnect.htm -share/doc/pgsql/postgres/pgtcl-pgdisconnect.htm -share/doc/pgsql/postgres/pgtcl-pgexec.htm -share/doc/pgsql/postgres/pgtcl-pglisten.htm -share/doc/pgsql/postgres/pgtcl-pgloclose.htm -share/doc/pgsql/postgres/pgtcl-pglocreat.htm -share/doc/pgsql/postgres/pgtcl-pgloexport.htm -share/doc/pgsql/postgres/pgtcl-pgloimport.htm -share/doc/pgsql/postgres/pgtcl-pglolseek.htm -share/doc/pgsql/postgres/pgtcl-pgloopen.htm -share/doc/pgsql/postgres/pgtcl-pgloread.htm -share/doc/pgsql/postgres/pgtcl-pglotell.htm -share/doc/pgsql/postgres/pgtcl-pglounlink.htm -share/doc/pgsql/postgres/pgtcl-pglowrite.htm -share/doc/pgsql/postgres/pgtcl-pgresult.htm -share/doc/pgsql/postgres/pgtcl-pgselect.htm -share/doc/pgsql/postgres/pgtcl.htm -share/doc/pgsql/postgres/pgtcl23317.htm -share/doc/pgsql/postgres/pgtcl23321.htm -share/doc/pgsql/postgres/pl-perl.htm -share/doc/pgsql/postgres/pl-perl4533.htm -share/doc/pgsql/postgres/pl-perl4542.htm -share/doc/pgsql/postgres/ports.htm -share/doc/pgsql/postgres/ports16791.htm -share/doc/pgsql/postgres/postgres.htm -share/doc/pgsql/postgres/postgres.html -share/doc/pgsql/postgres/postmaster.htm -share/doc/pgsql/postgres/preface.htm -share/doc/pgsql/postgres/protocol.htm -share/doc/pgsql/postgres/protocol25770.htm -share/doc/pgsql/postgres/protocol25925.htm -share/doc/pgsql/postgres/protocol25962.htm -share/doc/pgsql/postgres/query.htm -share/doc/pgsql/postgres/query27752.htm -share/doc/pgsql/postgres/query27768.htm -share/doc/pgsql/postgres/query27790.htm -share/doc/pgsql/postgres/query27799.htm -share/doc/pgsql/postgres/query27817.htm -share/doc/pgsql/postgres/query27825.htm -share/doc/pgsql/postgres/query27844.htm -share/doc/pgsql/postgres/query27849.htm -share/doc/pgsql/postgres/query27856.htm -share/doc/pgsql/postgres/recovery.htm -share/doc/pgsql/postgres/regress.htm -share/doc/pgsql/postgres/regress18171.htm -share/doc/pgsql/postgres/regress18205.htm -share/doc/pgsql/postgres/regress18251.htm -share/doc/pgsql/postgres/release.htm -share/doc/pgsql/postgres/release18319.htm -share/doc/pgsql/postgres/release18330.htm -share/doc/pgsql/postgres/release18341.htm -share/doc/pgsql/postgres/release18352.htm -share/doc/pgsql/postgres/release18434.htm -share/doc/pgsql/postgres/release18445.htm -share/doc/pgsql/postgres/release18456.htm -share/doc/pgsql/postgres/release18497.htm -share/doc/pgsql/postgres/release18513.htm -share/doc/pgsql/postgres/release18532.htm -share/doc/pgsql/postgres/release18576.htm -share/doc/pgsql/postgres/release18598.htm -share/doc/pgsql/postgres/release18613.htm -share/doc/pgsql/postgres/release18622.htm -share/doc/pgsql/postgres/release18645.htm -share/doc/pgsql/postgres/release18659.htm -share/doc/pgsql/postgres/release18662.htm -share/doc/pgsql/postgres/release18687.htm -share/doc/pgsql/postgres/release18724.htm -share/doc/pgsql/postgres/release18731.htm -share/doc/pgsql/postgres/release18738.htm -share/doc/pgsql/postgres/release18745.htm -share/doc/pgsql/postgres/release18749.htm -share/doc/pgsql/postgres/rules.htm -share/doc/pgsql/postgres/rules19478.htm -share/doc/pgsql/postgres/rules19639.htm -share/doc/pgsql/postgres/rules19770.htm -share/doc/pgsql/postgres/rules19784.htm -share/doc/pgsql/postgres/runtime.htm -share/doc/pgsql/postgres/security.htm -share/doc/pgsql/postgres/security17760.htm -share/doc/pgsql/postgres/security17795.htm -share/doc/pgsql/postgres/security17819.htm -share/doc/pgsql/postgres/security17840.htm -share/doc/pgsql/postgres/signals.htm -share/doc/pgsql/postgres/spi-spiconnect.htm -share/doc/pgsql/postgres/spi-spicopytuple.htm -share/doc/pgsql/postgres/spi-spiexec.htm -share/doc/pgsql/postgres/spi-spiexecp.htm -share/doc/pgsql/postgres/spi-spifinish.htm -share/doc/pgsql/postgres/spi-spifname.htm -share/doc/pgsql/postgres/spi-spifnumber.htm -share/doc/pgsql/postgres/spi-spigetbinval.htm -share/doc/pgsql/postgres/spi-spigetrelname.htm -share/doc/pgsql/postgres/spi-spigettype.htm -share/doc/pgsql/postgres/spi-spigettypeid.htm -share/doc/pgsql/postgres/spi-spigetvalue.htm -share/doc/pgsql/postgres/spi-spimodifytuple.htm -share/doc/pgsql/postgres/spi-spipalloc.htm -share/doc/pgsql/postgres/spi-spipfree.htm -share/doc/pgsql/postgres/spi-spiprepare.htm -share/doc/pgsql/postgres/spi-spirepalloc.htm -share/doc/pgsql/postgres/spi-spisaveplan.htm -share/doc/pgsql/postgres/spi.htm -share/doc/pgsql/postgres/spi20808.htm -share/doc/pgsql/postgres/spi21521.htm -share/doc/pgsql/postgres/spi21543.htm -share/doc/pgsql/postgres/spi21548.htm -share/doc/pgsql/postgres/sql-abort.htm -share/doc/pgsql/postgres/sql-altergroup.htm -share/doc/pgsql/postgres/sql-altertable.htm -share/doc/pgsql/postgres/sql-alteruser.htm -share/doc/pgsql/postgres/sql-begin.htm -share/doc/pgsql/postgres/sql-close.htm -share/doc/pgsql/postgres/sql-cluster.htm -share/doc/pgsql/postgres/sql-commands.htm -share/doc/pgsql/postgres/sql-comment.htm -share/doc/pgsql/postgres/sql-commit.htm -share/doc/pgsql/postgres/sql-copy.htm -share/doc/pgsql/postgres/sql-createaggregate.htm -share/doc/pgsql/postgres/sql-createconstraint.htm -share/doc/pgsql/postgres/sql-createdatabase.htm -share/doc/pgsql/postgres/sql-createfunction.htm -share/doc/pgsql/postgres/sql-creategroup.htm -share/doc/pgsql/postgres/sql-createindex.htm -share/doc/pgsql/postgres/sql-createlanguage.htm -share/doc/pgsql/postgres/sql-createoperator.htm -share/doc/pgsql/postgres/sql-createrule.htm -share/doc/pgsql/postgres/sql-createsequence.htm -share/doc/pgsql/postgres/sql-createtable.htm -share/doc/pgsql/postgres/sql-createtableas.htm -share/doc/pgsql/postgres/sql-createtrigger.htm -share/doc/pgsql/postgres/sql-createtype.htm -share/doc/pgsql/postgres/sql-createuser.htm -share/doc/pgsql/postgres/sql-createview.htm -share/doc/pgsql/postgres/sql-declare.htm -share/doc/pgsql/postgres/sql-delete.htm -share/doc/pgsql/postgres/sql-dropaggregate.htm -share/doc/pgsql/postgres/sql-dropdatabase.htm -share/doc/pgsql/postgres/sql-dropfunction.htm -share/doc/pgsql/postgres/sql-dropgroup.htm -share/doc/pgsql/postgres/sql-dropindex.htm -share/doc/pgsql/postgres/sql-droplanguage.htm -share/doc/pgsql/postgres/sql-dropoperator.htm -share/doc/pgsql/postgres/sql-droprule.htm -share/doc/pgsql/postgres/sql-dropsequence.htm -share/doc/pgsql/postgres/sql-droptable.htm -share/doc/pgsql/postgres/sql-droptrigger.htm -share/doc/pgsql/postgres/sql-droptype.htm -share/doc/pgsql/postgres/sql-dropuser.htm -share/doc/pgsql/postgres/sql-dropview.htm -share/doc/pgsql/postgres/sql-end.htm -share/doc/pgsql/postgres/sql-explain.htm -share/doc/pgsql/postgres/sql-fetch.htm -share/doc/pgsql/postgres/sql-grant.htm -share/doc/pgsql/postgres/sql-insert.htm -share/doc/pgsql/postgres/sql-language.htm -share/doc/pgsql/postgres/sql-listen.htm -share/doc/pgsql/postgres/sql-load.htm -share/doc/pgsql/postgres/sql-lock.htm -share/doc/pgsql/postgres/sql-move.htm -share/doc/pgsql/postgres/sql-notify.htm -share/doc/pgsql/postgres/sql-reindex.htm -share/doc/pgsql/postgres/sql-reset.htm -share/doc/pgsql/postgres/sql-revoke.htm -share/doc/pgsql/postgres/sql-rollback.htm -share/doc/pgsql/postgres/sql-select.htm -share/doc/pgsql/postgres/sql-selectinto.htm -share/doc/pgsql/postgres/sql-set.htm -share/doc/pgsql/postgres/sql-show.htm -share/doc/pgsql/postgres/sql-truncate.htm -share/doc/pgsql/postgres/sql-unlisten.htm -share/doc/pgsql/postgres/sql-update.htm -share/doc/pgsql/postgres/sql-vacuum.htm -share/doc/pgsql/postgres/sql.htm -share/doc/pgsql/postgres/sql26902.htm -share/doc/pgsql/postgres/sql27020.htm -share/doc/pgsql/postgres/start.htm -share/doc/pgsql/postgres/start27628.htm -share/doc/pgsql/postgres/start27650.htm -share/doc/pgsql/postgres/storage.htm -share/doc/pgsql/postgres/syntax.htm -share/doc/pgsql/postgres/syntax519.htm -share/doc/pgsql/postgres/syntax525.htm -share/doc/pgsql/postgres/syntax543.htm -share/doc/pgsql/postgres/syntax608.htm -share/doc/pgsql/postgres/syntax653.htm -share/doc/pgsql/postgres/syntax658.htm -share/doc/pgsql/postgres/terminology.htm -share/doc/pgsql/postgres/triggers.htm -share/doc/pgsql/postgres/triggers20224.htm -share/doc/pgsql/postgres/triggers20281.htm -share/doc/pgsql/postgres/triggers20290.htm -share/doc/pgsql/postgres/trouble.htm -share/doc/pgsql/postgres/trouble18031.htm -share/doc/pgsql/postgres/trouble18048.htm -share/doc/pgsql/postgres/typeconv.htm -share/doc/pgsql/postgres/typeconv3759.htm -share/doc/pgsql/postgres/typeconv3822.htm -share/doc/pgsql/postgres/typeconv3875.htm -share/doc/pgsql/postgres/typeconv3895.htm -share/doc/pgsql/postgres/utilities.htm -share/doc/pgsql/postgres/xaggr.htm -share/doc/pgsql/postgres/xfunc.htm -share/doc/pgsql/postgres/xfunc19011.htm -share/doc/pgsql/postgres/xfunc19017.htm -share/doc/pgsql/postgres/xfunc19022.htm -share/doc/pgsql/postgres/xfunc19254.htm -share/doc/pgsql/postgres/xindex.htm -share/doc/pgsql/postgres/xoper.htm -share/doc/pgsql/postgres/xplang.htm -share/doc/pgsql/postgres/xtypes.htm -share/doc/pgsql/postgres/y2k.htm -share/doc/pgsql/programmer/arch-pg.htm -share/doc/pgsql/programmer/biblio.htm -share/doc/pgsql/programmer/bki.htm -share/doc/pgsql/programmer/bki8058.htm -share/doc/pgsql/programmer/bki8142.htm -share/doc/pgsql/programmer/bki8166.htm -share/doc/pgsql/programmer/bki8227.htm -share/doc/pgsql/programmer/c1486.htm -share/doc/pgsql/programmer/c5391.htm -share/doc/pgsql/programmer/c53915433.htm -share/doc/pgsql/programmer/c53915451.htm -share/doc/pgsql/programmer/c53915593.htm -share/doc/pgsql/programmer/c53915605.htm -share/doc/pgsql/programmer/c53915625.htm -share/doc/pgsql/programmer/c53915630.htm -share/doc/pgsql/programmer/c6614.htm -share/doc/pgsql/programmer/catalogs.gif -share/doc/pgsql/programmer/compiler.htm -share/doc/pgsql/programmer/connections.gif -share/doc/pgsql/programmer/copyright.htm -share/doc/pgsql/programmer/cvs.htm -share/doc/pgsql/programmer/cvs8365.htm -share/doc/pgsql/programmer/cvs8421.htm -share/doc/pgsql/programmer/dfunc.htm -share/doc/pgsql/programmer/dfunc1679.htm -share/doc/pgsql/programmer/dfunc1689.htm -share/doc/pgsql/programmer/docguide.htm -share/doc/pgsql/programmer/docguide8647.htm -share/doc/pgsql/programmer/docguide8678.htm -share/doc/pgsql/programmer/docguide8769.htm -share/doc/pgsql/programmer/docguide8790.htm -share/doc/pgsql/programmer/docguide8816.htm -share/doc/pgsql/programmer/docguide8953.htm -share/doc/pgsql/programmer/docguide9291.htm -share/doc/pgsql/programmer/extend.htm -share/doc/pgsql/programmer/extend352.htm -share/doc/pgsql/programmer/extend364.htm -share/doc/pgsql/programmer/geqo-biblio.htm -share/doc/pgsql/programmer/geqo.htm -share/doc/pgsql/programmer/geqo7079.htm -share/doc/pgsql/programmer/geqo7102.htm -share/doc/pgsql/programmer/geqo7140.htm -share/doc/pgsql/programmer/gist.htm -share/doc/pgsql/programmer/index.html -share/doc/pgsql/programmer/intro-pg.htm -share/doc/pgsql/programmer/intro-pg167.htm -share/doc/pgsql/programmer/jdbc.htm -share/doc/pgsql/programmer/jdbc6398.htm -share/doc/pgsql/programmer/jdbc6410.htm -share/doc/pgsql/programmer/jdbc6416.htm -share/doc/pgsql/programmer/jdbc6424.htm -share/doc/pgsql/programmer/jdbc6442.htm -share/doc/pgsql/programmer/jdbc6479.htm -share/doc/pgsql/programmer/jdbc6510.htm -share/doc/pgsql/programmer/jdbc6515.htm -share/doc/pgsql/programmer/jdbc6519.htm -share/doc/pgsql/programmer/jdbc6545.htm -share/doc/pgsql/programmer/jdbc6575.htm -share/doc/pgsql/programmer/largeobjects.htm -share/doc/pgsql/programmer/largeobjects3114.htm -share/doc/pgsql/programmer/largeobjects3117.htm -share/doc/pgsql/programmer/largeobjects3196.htm -share/doc/pgsql/programmer/largeobjects3203.htm -share/doc/pgsql/programmer/largeobjects3207.htm -share/doc/pgsql/programmer/libpq-chapter.htm -share/doc/pgsql/programmer/libpq-chapter3419.htm -share/doc/pgsql/programmer/libpq-chapter3574.htm -share/doc/pgsql/programmer/libpq-chapter3721.htm -share/doc/pgsql/programmer/libpq-chapter3733.htm -share/doc/pgsql/programmer/libpq-chapter3771.htm -share/doc/pgsql/programmer/libpq-chapter3841.htm -share/doc/pgsql/programmer/libpq-chapter3854.htm -share/doc/pgsql/programmer/libpq-chapter3939.htm -share/doc/pgsql/programmer/libpq-envars.htm -share/doc/pgsql/programmer/libpq-threading.htm -share/doc/pgsql/programmer/libpqplusplus.htm -share/doc/pgsql/programmer/libpqplusplus4031.htm -share/doc/pgsql/programmer/libpqplusplus4041.htm -share/doc/pgsql/programmer/libpqplusplus4071.htm -share/doc/pgsql/programmer/libpqplusplus4176.htm -share/doc/pgsql/programmer/libpqplusplus4199.htm -share/doc/pgsql/programmer/lisp.htm -share/doc/pgsql/programmer/notation.htm -share/doc/pgsql/programmer/odbc.htm -share/doc/pgsql/programmer/odbc5922.htm -share/doc/pgsql/programmer/odbc5960.htm -share/doc/pgsql/programmer/odbc6133.htm -share/doc/pgsql/programmer/odbc6155.htm -share/doc/pgsql/programmer/overview.htm -share/doc/pgsql/programmer/overview6679.htm -share/doc/pgsql/programmer/overview6704.htm -share/doc/pgsql/programmer/overview6832.htm -share/doc/pgsql/programmer/overview6888.htm -share/doc/pgsql/programmer/overview6942.htm -share/doc/pgsql/programmer/page.htm -share/doc/pgsql/programmer/page8290.htm -share/doc/pgsql/programmer/page8304.htm -share/doc/pgsql/programmer/pg-options-dev.htm -share/doc/pgsql/programmer/pgeasy-chapter.htm -share/doc/pgsql/programmer/pgtcl-pgconndefaults.htm -share/doc/pgsql/programmer/pgtcl-pgconnect.htm -share/doc/pgsql/programmer/pgtcl-pgdisconnect.htm -share/doc/pgsql/programmer/pgtcl-pgexec.htm -share/doc/pgsql/programmer/pgtcl-pglisten.htm -share/doc/pgsql/programmer/pgtcl-pgloclose.htm -share/doc/pgsql/programmer/pgtcl-pglocreat.htm -share/doc/pgsql/programmer/pgtcl-pgloexport.htm -share/doc/pgsql/programmer/pgtcl-pgloimport.htm -share/doc/pgsql/programmer/pgtcl-pglolseek.htm -share/doc/pgsql/programmer/pgtcl-pgloopen.htm -share/doc/pgsql/programmer/pgtcl-pgloread.htm -share/doc/pgsql/programmer/pgtcl-pglotell.htm -share/doc/pgsql/programmer/pgtcl-pglounlink.htm -share/doc/pgsql/programmer/pgtcl-pglowrite.htm -share/doc/pgsql/programmer/pgtcl-pgresult.htm -share/doc/pgsql/programmer/pgtcl-pgselect.htm -share/doc/pgsql/programmer/pgtcl.htm -share/doc/pgsql/programmer/pgtcl4314.htm -share/doc/pgsql/programmer/pgtcl4318.htm -share/doc/pgsql/programmer/preface.htm -share/doc/pgsql/programmer/programmer.htm -share/doc/pgsql/programmer/programmer.html -share/doc/pgsql/programmer/protocol.htm -share/doc/pgsql/programmer/protocol7255.htm -share/doc/pgsql/programmer/protocol7410.htm -share/doc/pgsql/programmer/protocol7447.htm -share/doc/pgsql/programmer/rules.htm -share/doc/pgsql/programmer/rules1139.htm -share/doc/pgsql/programmer/rules1270.htm -share/doc/pgsql/programmer/rules1284.htm -share/doc/pgsql/programmer/rules978.htm -share/doc/pgsql/programmer/signals.htm -share/doc/pgsql/programmer/spi-spiconnect.htm -share/doc/pgsql/programmer/spi-spicopytuple.htm -share/doc/pgsql/programmer/spi-spiexec.htm -share/doc/pgsql/programmer/spi-spiexecp.htm -share/doc/pgsql/programmer/spi-spifinish.htm -share/doc/pgsql/programmer/spi-spifname.htm -share/doc/pgsql/programmer/spi-spifnumber.htm -share/doc/pgsql/programmer/spi-spigetbinval.htm -share/doc/pgsql/programmer/spi-spigetrelname.htm -share/doc/pgsql/programmer/spi-spigettype.htm -share/doc/pgsql/programmer/spi-spigettypeid.htm -share/doc/pgsql/programmer/spi-spigetvalue.htm -share/doc/pgsql/programmer/spi-spimodifytuple.htm -share/doc/pgsql/programmer/spi-spipalloc.htm -share/doc/pgsql/programmer/spi-spipfree.htm -share/doc/pgsql/programmer/spi-spiprepare.htm -share/doc/pgsql/programmer/spi-spirepalloc.htm -share/doc/pgsql/programmer/spi-spisaveplan.htm -share/doc/pgsql/programmer/spi.htm -share/doc/pgsql/programmer/spi2351.htm -share/doc/pgsql/programmer/spi3064.htm -share/doc/pgsql/programmer/spi3086.htm -share/doc/pgsql/programmer/spi3091.htm -share/doc/pgsql/programmer/terminology.htm -share/doc/pgsql/programmer/triggers.htm -share/doc/pgsql/programmer/triggers1767.htm -share/doc/pgsql/programmer/triggers1824.htm -share/doc/pgsql/programmer/triggers1833.htm -share/doc/pgsql/programmer/xaggr.htm -share/doc/pgsql/programmer/xfunc.htm -share/doc/pgsql/programmer/xfunc511.htm -share/doc/pgsql/programmer/xfunc517.htm -share/doc/pgsql/programmer/xfunc522.htm -share/doc/pgsql/programmer/xfunc754.htm -share/doc/pgsql/programmer/xindex.htm -share/doc/pgsql/programmer/xoper.htm -share/doc/pgsql/programmer/xplang.htm -share/doc/pgsql/programmer/xtypes.htm -share/doc/pgsql/programmer/y2k.htm -share/doc/pgsql/tutorial/about.htm -share/doc/pgsql/tutorial/advanced.htm -share/doc/pgsql/tutorial/advanced1511.htm -share/doc/pgsql/tutorial/advanced1533.htm -share/doc/pgsql/tutorial/arch.htm -share/doc/pgsql/tutorial/biblio.htm -share/doc/pgsql/tutorial/clientserver.gif -share/doc/pgsql/tutorial/copyright.htm -share/doc/pgsql/tutorial/f17.htm -share/doc/pgsql/tutorial/index.html -share/doc/pgsql/tutorial/intro.htm -share/doc/pgsql/tutorial/intro172.htm -share/doc/pgsql/tutorial/intro300.htm -share/doc/pgsql/tutorial/intro56.htm -share/doc/pgsql/tutorial/notation.htm -share/doc/pgsql/tutorial/query.htm -share/doc/pgsql/tutorial/query1340.htm -share/doc/pgsql/tutorial/query1356.htm -share/doc/pgsql/tutorial/query1378.htm -share/doc/pgsql/tutorial/query1387.htm -share/doc/pgsql/tutorial/query1405.htm -share/doc/pgsql/tutorial/query1413.htm -share/doc/pgsql/tutorial/query1432.htm -share/doc/pgsql/tutorial/query1437.htm -share/doc/pgsql/tutorial/query1444.htm -share/doc/pgsql/tutorial/sql-language.htm -share/doc/pgsql/tutorial/sql.htm -share/doc/pgsql/tutorial/sql490.htm -share/doc/pgsql/tutorial/sql608.htm -share/doc/pgsql/tutorial/start.htm -share/doc/pgsql/tutorial/start1216.htm -share/doc/pgsql/tutorial/start1238.htm -share/doc/pgsql/tutorial/terminology.htm -share/doc/pgsql/tutorial/tutorial.htm -share/doc/pgsql/tutorial/tutorial.html -share/doc/pgsql/tutorial/y2k.htm -share/doc/pgsql/user/about.htm -share/doc/pgsql/user/app-createdb.htm -share/doc/pgsql/user/app-createlang.htm -share/doc/pgsql/user/app-createuser.htm -share/doc/pgsql/user/app-dropdb.htm -share/doc/pgsql/user/app-droplang.htm -share/doc/pgsql/user/app-dropuser.htm -share/doc/pgsql/user/app-ecpg.htm -share/doc/pgsql/user/app-initdb.htm -share/doc/pgsql/user/app-initlocation.htm -share/doc/pgsql/user/app-ipcclean.htm -share/doc/pgsql/user/app-pg-passwd.htm -share/doc/pgsql/user/app-pg-upgrade.htm -share/doc/pgsql/user/app-pgaccess.htm -share/doc/pgsql/user/app-pgadmin.htm -share/doc/pgsql/user/app-pgctl.htm -share/doc/pgsql/user/app-pgdump.htm -share/doc/pgsql/user/app-pgdumpall.htm -share/doc/pgsql/user/app-pgtclsh.htm -share/doc/pgsql/user/app-pgtksh.htm -share/doc/pgsql/user/app-postgres.htm -share/doc/pgsql/user/app-postmaster.htm -share/doc/pgsql/user/app-psql.htm -share/doc/pgsql/user/app-vacuumdb.htm -share/doc/pgsql/user/applications.htm -share/doc/pgsql/user/arrays.htm -share/doc/pgsql/user/biblio.htm -share/doc/pgsql/user/c4087.htm -share/doc/pgsql/user/c40874113.htm -share/doc/pgsql/user/c40874340.htm -share/doc/pgsql/user/c4358.htm -share/doc/pgsql/user/c43584371.htm -share/doc/pgsql/user/c4884.htm -share/doc/pgsql/user/c4929.htm -share/doc/pgsql/user/c49294939.htm -share/doc/pgsql/user/c49294943.htm -share/doc/pgsql/user/copyright.htm -share/doc/pgsql/user/datatype.htm -share/doc/pgsql/user/datatype1034.htm -share/doc/pgsql/user/datatype1066.htm -share/doc/pgsql/user/datatype1130.htm -share/doc/pgsql/user/datatype1645.htm -share/doc/pgsql/user/datatype1677.htm -share/doc/pgsql/user/datatype1916.htm -share/doc/pgsql/user/datetime-appendix.htm -share/doc/pgsql/user/datetime-appendix16981.htm -share/doc/pgsql/user/environ.htm -share/doc/pgsql/user/functions.htm -share/doc/pgsql/user/functions2589.htm -share/doc/pgsql/user/functions2729.htm -share/doc/pgsql/user/functions2872.htm -share/doc/pgsql/user/functions2972.htm -share/doc/pgsql/user/functions3439.htm -share/doc/pgsql/user/functions3637.htm -share/doc/pgsql/user/index.html -share/doc/pgsql/user/indices.htm -share/doc/pgsql/user/inherit.htm -share/doc/pgsql/user/intro.htm -share/doc/pgsql/user/intro172.htm -share/doc/pgsql/user/intro300.htm -share/doc/pgsql/user/intro56.htm -share/doc/pgsql/user/manage.htm -share/doc/pgsql/user/manage4810.htm -share/doc/pgsql/user/manage4834.htm -share/doc/pgsql/user/manage4876.htm -share/doc/pgsql/user/mvcc.htm -share/doc/pgsql/user/mvcc4564.htm -share/doc/pgsql/user/mvcc4617.htm -share/doc/pgsql/user/mvcc4629.htm -share/doc/pgsql/user/mvcc4642.htm -share/doc/pgsql/user/mvcc4719.htm -share/doc/pgsql/user/mvcc4740.htm -share/doc/pgsql/user/notation.htm -share/doc/pgsql/user/operators.htm -share/doc/pgsql/user/operators2123.htm -share/doc/pgsql/user/operators2194.htm -share/doc/pgsql/user/operators2263.htm -share/doc/pgsql/user/operators2373.htm -share/doc/pgsql/user/operators2432.htm -share/doc/pgsql/user/operators2486.htm -share/doc/pgsql/user/partial-index.htm -share/doc/pgsql/user/pl-perl.htm -share/doc/pgsql/user/pl-perl4529.htm -share/doc/pgsql/user/pl-perl4538.htm -share/doc/pgsql/user/preface.htm -share/doc/pgsql/user/sql-abort.htm -share/doc/pgsql/user/sql-altergroup.htm -share/doc/pgsql/user/sql-altertable.htm -share/doc/pgsql/user/sql-alteruser.htm -share/doc/pgsql/user/sql-begin.htm -share/doc/pgsql/user/sql-close.htm -share/doc/pgsql/user/sql-cluster.htm -share/doc/pgsql/user/sql-commands.htm -share/doc/pgsql/user/sql-comment.htm -share/doc/pgsql/user/sql-commit.htm -share/doc/pgsql/user/sql-copy.htm -share/doc/pgsql/user/sql-createaggregate.htm -share/doc/pgsql/user/sql-createconstraint.htm -share/doc/pgsql/user/sql-createdatabase.htm -share/doc/pgsql/user/sql-createfunction.htm -share/doc/pgsql/user/sql-creategroup.htm -share/doc/pgsql/user/sql-createindex.htm -share/doc/pgsql/user/sql-createlanguage.htm -share/doc/pgsql/user/sql-createoperator.htm -share/doc/pgsql/user/sql-createrule.htm -share/doc/pgsql/user/sql-createsequence.htm -share/doc/pgsql/user/sql-createtable.htm -share/doc/pgsql/user/sql-createtableas.htm -share/doc/pgsql/user/sql-createtrigger.htm -share/doc/pgsql/user/sql-createtype.htm -share/doc/pgsql/user/sql-createuser.htm -share/doc/pgsql/user/sql-createview.htm -share/doc/pgsql/user/sql-declare.htm -share/doc/pgsql/user/sql-delete.htm -share/doc/pgsql/user/sql-dropaggregate.htm -share/doc/pgsql/user/sql-dropdatabase.htm -share/doc/pgsql/user/sql-dropfunction.htm -share/doc/pgsql/user/sql-dropgroup.htm -share/doc/pgsql/user/sql-dropindex.htm -share/doc/pgsql/user/sql-droplanguage.htm -share/doc/pgsql/user/sql-dropoperator.htm -share/doc/pgsql/user/sql-droprule.htm -share/doc/pgsql/user/sql-dropsequence.htm -share/doc/pgsql/user/sql-droptable.htm -share/doc/pgsql/user/sql-droptrigger.htm -share/doc/pgsql/user/sql-droptype.htm -share/doc/pgsql/user/sql-dropuser.htm -share/doc/pgsql/user/sql-dropview.htm -share/doc/pgsql/user/sql-end.htm -share/doc/pgsql/user/sql-explain.htm -share/doc/pgsql/user/sql-fetch.htm -share/doc/pgsql/user/sql-grant.htm -share/doc/pgsql/user/sql-insert.htm -share/doc/pgsql/user/sql-listen.htm -share/doc/pgsql/user/sql-load.htm -share/doc/pgsql/user/sql-lock.htm -share/doc/pgsql/user/sql-move.htm -share/doc/pgsql/user/sql-notify.htm -share/doc/pgsql/user/sql-reindex.htm -share/doc/pgsql/user/sql-reset.htm -share/doc/pgsql/user/sql-revoke.htm -share/doc/pgsql/user/sql-rollback.htm -share/doc/pgsql/user/sql-select.htm -share/doc/pgsql/user/sql-selectinto.htm -share/doc/pgsql/user/sql-set.htm -share/doc/pgsql/user/sql-show.htm -share/doc/pgsql/user/sql-truncate.htm -share/doc/pgsql/user/sql-unlisten.htm -share/doc/pgsql/user/sql-update.htm -share/doc/pgsql/user/sql-vacuum.htm -share/doc/pgsql/user/storage.htm -share/doc/pgsql/user/syntax.htm -share/doc/pgsql/user/syntax515.htm -share/doc/pgsql/user/syntax521.htm -share/doc/pgsql/user/syntax539.htm -share/doc/pgsql/user/syntax604.htm -share/doc/pgsql/user/syntax649.htm -share/doc/pgsql/user/syntax654.htm -share/doc/pgsql/user/terminology.htm -share/doc/pgsql/user/typeconv.htm -share/doc/pgsql/user/typeconv3755.htm -share/doc/pgsql/user/typeconv3818.htm -share/doc/pgsql/user/typeconv3871.htm -share/doc/pgsql/user/typeconv3891.htm -share/doc/pgsql/user/user.htm -share/doc/pgsql/user/user.html -share/doc/pgsql/user/utilities.htm -share/doc/pgsql/user/y2k.htm -@dirrm share/doc/pgsql/admin -@dirrm share/doc/pgsql/postgres -@dirrm share/doc/pgsql/programmer -@dirrm share/doc/pgsql/tutorial -@dirrm share/doc/pgsql/user -@dirrm share/doc/pgsql diff --git a/databases/postgresql-devel-server/pkg-plist.jdbc b/databases/postgresql-devel-server/pkg-plist.jdbc deleted file mode 100644 index bef5d75506b4..000000000000 --- a/databases/postgresql-devel-server/pkg-plist.jdbc +++ /dev/null @@ -1,13 +0,0 @@ -share/examples/pgsql/jdbc/ImageViewer.java -share/examples/pgsql/jdbc/basic.java -share/examples/pgsql/jdbc/blobtest.java -share/examples/pgsql/jdbc/datestyle.java -share/examples/pgsql/jdbc/metadata.java -share/examples/pgsql/jdbc/psql.java -share/examples/pgsql/jdbc/threadsafe.java -share/examples/pgsql/jdbc/README -share/examples/pgsql/jdbc/README_6.3 -@dirrm share/examples/pgsql/jdbc -@dirrm share/examples/pgsql -share/java/classes/postgresql.jar -@unexec rmdir %D/share/java 2>/dev/null || true diff --git a/databases/postgresql-devel-server/pkg-plist.tcl b/databases/postgresql-devel-server/pkg-plist.tcl deleted file mode 100644 index b01eaf1571ed..000000000000 --- a/databases/postgresql-devel-server/pkg-plist.tcl +++ /dev/null @@ -1,141 +0,0 @@ -pgsql/bin/pgaccess -pgsql/bin/pgtclsh -pgsql/bin/pgtksh -pgsql/include/libpgtcl.h -pgsql/lib/libpgtcl.a -pgsql/lib/libpgtcl.so -pgsql/lib/libpgtcl.so.2 -pgsql/lib/pltcl.so -pgsql/pgaccess/images/icon_button.gif -pgsql/pgaccess/images/icon_checkbutton.gif -pgsql/pgaccess/images/icon_entry.gif -pgsql/pgaccess/images/icon_frame.gif -pgsql/pgaccess/images/icon_label.gif -pgsql/pgaccess/images/icon_listbox.gif -pgsql/pgaccess/images/icon_query.gif -pgsql/pgaccess/images/icon_radiobutton.gif -pgsql/pgaccess/images/icon_text.gif -pgsql/pgaccess/lib/database.tcl -pgsql/pgaccess/lib/forms.tcl -pgsql/pgaccess/lib/functions.tcl -pgsql/pgaccess/lib/help/abort.hlp -pgsql/pgaccess/lib/help/add_records.hlp -pgsql/pgaccess/lib/help/alter_table.hlp -pgsql/pgaccess/lib/help/alter_user.hlp -pgsql/pgaccess/lib/help/author.hlp -pgsql/pgaccess/lib/help/begin.hlp -pgsql/pgaccess/lib/help/close.hlp -pgsql/pgaccess/lib/help/cluster.hlp -pgsql/pgaccess/lib/help/commit.hlp -pgsql/pgaccess/lib/help/copy.hlp -pgsql/pgaccess/lib/help/copyrights.hlp -pgsql/pgaccess/lib/help/create_aggregate.hlp -pgsql/pgaccess/lib/help/create_database.hlp -pgsql/pgaccess/lib/help/create_function.hlp -pgsql/pgaccess/lib/help/create_index.hlp -pgsql/pgaccess/lib/help/create_language.hlp -pgsql/pgaccess/lib/help/create_operator.hlp -pgsql/pgaccess/lib/help/create_rule.hlp -pgsql/pgaccess/lib/help/create_sequence.hlp -pgsql/pgaccess/lib/help/create_table.hlp -pgsql/pgaccess/lib/help/create_table_as.hlp -pgsql/pgaccess/lib/help/create_trigger.hlp -pgsql/pgaccess/lib/help/create_type.hlp -pgsql/pgaccess/lib/help/create_user.hlp -pgsql/pgaccess/lib/help/create_view.hlp -pgsql/pgaccess/lib/help/data_types.hlp -pgsql/pgaccess/lib/help/datefunc.hlp -pgsql/pgaccess/lib/help/declare.hlp -pgsql/pgaccess/lib/help/delete.hlp -pgsql/pgaccess/lib/help/drop_aggregate.hlp -pgsql/pgaccess/lib/help/drop_database.hlp -pgsql/pgaccess/lib/help/drop_function.hlp -pgsql/pgaccess/lib/help/drop_index.hlp -pgsql/pgaccess/lib/help/drop_language.hlp -pgsql/pgaccess/lib/help/drop_operator.hlp -pgsql/pgaccess/lib/help/drop_rule.hlp -pgsql/pgaccess/lib/help/drop_sequence.hlp -pgsql/pgaccess/lib/help/drop_table.hlp -pgsql/pgaccess/lib/help/drop_trigger.hlp -pgsql/pgaccess/lib/help/drop_type.hlp -pgsql/pgaccess/lib/help/drop_user.hlp -pgsql/pgaccess/lib/help/drop_view.hlp -pgsql/pgaccess/lib/help/explain.hlp -pgsql/pgaccess/lib/help/fetch.hlp -pgsql/pgaccess/lib/help/form_design.hlp -pgsql/pgaccess/lib/help/forms.hlp -pgsql/pgaccess/lib/help/functions.hlp -pgsql/pgaccess/lib/help/geomfunc.hlp -pgsql/pgaccess/lib/help/grant.hlp -pgsql/pgaccess/lib/help/history.hlp -pgsql/pgaccess/lib/help/index.hlp -pgsql/pgaccess/lib/help/inheritance.hlp -pgsql/pgaccess/lib/help/insert.hlp -pgsql/pgaccess/lib/help/ipv4func.hlp -pgsql/pgaccess/lib/help/isolation.hlp -pgsql/pgaccess/lib/help/keywords.hlp -pgsql/pgaccess/lib/help/listen.hlp -pgsql/pgaccess/lib/help/load.hlp -pgsql/pgaccess/lib/help/lock.hlp -pgsql/pgaccess/lib/help/mathfunc.hlp -pgsql/pgaccess/lib/help/move.hlp -pgsql/pgaccess/lib/help/mvcc.hlp -pgsql/pgaccess/lib/help/new_query.hlp -pgsql/pgaccess/lib/help/new_table.hlp -pgsql/pgaccess/lib/help/notify.hlp -pgsql/pgaccess/lib/help/open_query.hlp -pgsql/pgaccess/lib/help/open_table.hlp -pgsql/pgaccess/lib/help/pgfunctions.hlp -pgsql/pgaccess/lib/help/postgresql.hlp -pgsql/pgaccess/lib/help/queries.hlp -pgsql/pgaccess/lib/help/reports.hlp -pgsql/pgaccess/lib/help/reset.hlp -pgsql/pgaccess/lib/help/revoke.hlp -pgsql/pgaccess/lib/help/rollback.hlp -pgsql/pgaccess/lib/help/schema.hlp -pgsql/pgaccess/lib/help/scripts.hlp -pgsql/pgaccess/lib/help/select.hlp -pgsql/pgaccess/lib/help/select_into.hlp -pgsql/pgaccess/lib/help/sequences.hlp -pgsql/pgaccess/lib/help/set.hlp -pgsql/pgaccess/lib/help/show.hlp -pgsql/pgaccess/lib/help/sql_guide.hlp -pgsql/pgaccess/lib/help/sqlfunc.hlp -pgsql/pgaccess/lib/help/stringfunc.hlp -pgsql/pgaccess/lib/help/tables.hlp -pgsql/pgaccess/lib/help/unlisten.hlp -pgsql/pgaccess/lib/help/update.hlp -pgsql/pgaccess/lib/help/users.hlp -pgsql/pgaccess/lib/help/vacuum.hlp -pgsql/pgaccess/lib/help/view_table_structure.hlp -pgsql/pgaccess/lib/help/views.hlp -pgsql/pgaccess/lib/help/visual_designer.hlp -pgsql/pgaccess/lib/help/y2k.hlp -pgsql/pgaccess/lib/help.tcl -pgsql/pgaccess/lib/languages/czech -pgsql/pgaccess/lib/languages/deutsch -pgsql/pgaccess/lib/languages/francais -pgsql/pgaccess/lib/languages/italiano -pgsql/pgaccess/lib/languages/magyar -pgsql/pgaccess/lib/languages/portugues -pgsql/pgaccess/lib/languages/romana -pgsql/pgaccess/lib/languages/russian.koi8r -pgsql/pgaccess/lib/languages/russian_win -pgsql/pgaccess/lib/languages/spanish -pgsql/pgaccess/lib/mainlib.tcl -pgsql/pgaccess/lib/preferences.tcl -pgsql/pgaccess/lib/queries.tcl -pgsql/pgaccess/lib/reports.tcl -pgsql/pgaccess/lib/schema.tcl -pgsql/pgaccess/lib/scripts.tcl -pgsql/pgaccess/lib/sequences.tcl -pgsql/pgaccess/lib/tables.tcl -pgsql/pgaccess/lib/users.tcl -pgsql/pgaccess/lib/views.tcl -pgsql/pgaccess/lib/visualqb.tcl -pgsql/pgaccess/main.tcl -@dirrm pgsql/pgaccess/images -@dirrm pgsql/pgaccess/lib/help -@dirrm pgsql/pgaccess/lib/languages -@dirrm pgsql/pgaccess/lib -@dirrm pgsql/pgaccess diff --git a/databases/postgresql-devel-server/scripts/configure b/databases/postgresql-devel-server/scripts/configure deleted file mode 100644 index 4a92ee450ebe..000000000000 --- a/databases/postgresql-devel-server/scripts/configure +++ /dev/null @@ -1,7 +0,0 @@ -#! /bin/sh - -# $FreeBSD$ - -cd $WRKSRC || exit 1 - -perl -pi -e "s=!!JAVA_HOME!!=${JAVA_HOME}=; s=!!PREFIX!!=${PREFIX}=" ${WRKSRC}/interfaces/jdbc/Makefile diff --git a/databases/postgresql-devel-server/scripts/createuser b/databases/postgresql-devel-server/scripts/createuser deleted file mode 100644 index 2abe201e7a4b..000000000000 --- a/databases/postgresql-devel-server/scripts/createuser +++ /dev/null @@ -1,50 +0,0 @@ -#!/usr/bin/perl -# - -eval '(exit $?0)' && eval 'exec /usr/bin/perl -S $0 ${1+"$@"}' -& eval 'exec /usr/bin/perl -S $0 $argv:q' -if 0; - -if( $> ) { - print "\nYou must be root to run this step!\n\n"; - exit 1; -} - -if( getpwnam( "pgsql" ) ) { - ( $null, $null, $pgUID ) = getpwnam( "pgsql" ); -} else { - $pgUID = 70; - while( getpwuid( $pgUID ) ) { - $pgUID++; - } -} - -if( getgrnam( "pgsql" ) ) { - ( $null, $null, $pgGID ) = getgrnam( "pgsql" ); -} else { - $pgGID = 70; - while( getgrgid( $pgGID ) ) { - $pgGID++; - } - &append_file( "/etc/group", "pgsql:*:$pgGID:" ); -} - -print "pgsql user using uid $pgUID\n"; -print "pgsql user using gid $pgGID\n"; - -system( "/usr/bin/chpass -a \"pgsql:*:$pgUID:$pgGID\:\:0:0:PostgreSQL pseudo-user:$ENV{'PREFIX'}/pgsql:/bin/sh\"" ); - -sub append_file { - local($file,@list) = @_; - local($LOCK_EX) = 2; - local($LOCK_NB) = 4; - local($LOCK_UN) = 8; - - open(F, ">> $file") || die "$file: $!\n"; - while( ! flock( F, $LOCK_EX | $LOCK_NB ) ) { - exit 1; - } - print F join( "\n", @list) . "\n"; - close F; - flock( F, $LOCK_UN ); -} diff --git a/databases/postgresql-devel/Makefile b/databases/postgresql-devel/Makefile deleted file mode 100644 index 94aa22cad135..000000000000 --- a/databases/postgresql-devel/Makefile +++ /dev/null @@ -1,259 +0,0 @@ -# New ports collection makefile for: PostgreSQL -# Date created: November 13, 1998 -# Whom: Marc G. Fournier <scrappy@FreeBSD.org> -# -# $FreeBSD$ -# - -PORTNAME= postgresql -PORTVERSION= 7.0.2 -CATEGORIES= databases -MASTER_SITES= ftp://ftp.postgresql.org/pub/%SUBDIR%/ \ - ftp://ftp.de.postgresql.org/%SUBDIR%/ \ - ftp://ftp.iodynamics.com/pub/mirror/postgresql/%SUBDIR%/ \ - ftp://ftp.digex.net/pub/packages/database/postgresql/%SUBDIR%/ \ - ftp://ftp.sunet.se/pub/unix/databases/relational/postgresql/%SUBDIR%/ -MASTER_SITE_SUBDIR= source/v${PORTVERSION} -DISTFILES= ${PORTNAME}-${PORTVERSION}.base${EXTRACT_SUFX} \ - ${PORTNAME}-${PORTVERSION}.support${EXTRACT_SUFX} \ - ${PORTNAME}-${PORTVERSION}.docs${EXTRACT_SUFX} -# ${PORTNAME}-${PORTVERSION}.test${EXTRACT_SUFX} -DIST_SUBDIR= postgresql - -MAINTAINER= andreas@FreeBSD.org - -.if ${MACHINE_ARCH} == "alpha" -BROKEN= doesn\'t build on the alpha yet -.endif - -Y2K= http://www.postgresql.org/y2k.html - -INSTALLS_SHLIB= YES -LDCONFIG_DIRS= %%PREFIX%%/pgsql/lib - -# if you want to use the tcl/tk frontend pgaccess, then you need to build -# postgresql with tcl support by typing: make -DWITH_TCL -.if defined(WITH_TCL) -TCL_INCDIR= ${LOCALBASE}/include/tcl8.3 -TK_INCDIR= ${LOCALBASE}/include/tk8.3 -MAKE_ENV= TCL_INCDIR=${TCL_INCDIR} -CONFIGURE_ENV= WISH=${LOCALBASE}/bin/wish8.3 -LIB_DEPENDS= tcl83.1:${PORTSDIR}/lang/tcl83 \ - tk83.1:${PORTSDIR}/x11-toolkits/tk83 -CONFIGURE_TCL= --with-tcl --with-tclconfig="${LOCALBASE}/lib/tcl8.3 ${LOCALBASE}/lib/tk8.3" -.endif - -# if you want to disable the multibyte support, type: -# make -DWITHOUT_MULTIBYTE -# -# if you want to set the default encoding for the multibyte support, type: -# make DEFAULT_ENCODING=<encoding> -# where <encoding> is one of these: -# SQL_ASCII LATIN1 LATIN2 LATIN3 LATIN4 LATIN5 -# EUC_JP EUC_CN EUC_KR EUC_TW KOI8 -# UNICODE MULE_INTERNAL WIN ALT -.if defined(WITHOUT_MULTIBYTE) -CONFIGURE_MULTIBYTE= # none -.elif defined(DEFAULT_ENCODING) -CONFIGURE_MULTIBYTE= --enable-multibyte="${DEFAULT_ENCODING}" -.else -CONFIGURE_MULTIBYTE= --enable-multibyte -.endif - -# if you want jdbc, type make -DWITH_JDBC -# Honors JAVA_HOME if you have it set, and don't want the dependency. -.if defined(WITH_JDBC) -JAVA_HOME?= ${LOCALBASE}/jdk1.1.8 -BUILD_DEPENDS= ${JAVA_HOME}/bin/javac:${PORTSDIR}/java/jdk -SCRIPTS_ENV+= JAVA_HOME=${JAVA_HOME} -.endif - -WRKSRC= ${WRKDIR}/${DISTNAME}/src -DOCDIR= ${WRKDIR}/${DISTNAME}/doc - -USE_GMAKE= YES -MAKEFILE= GNUmakefile -HAS_CONFIGURE= YES -CONFIGURE_ARGS= --prefix=${PREFIX}/pgsql \ - --enable-locale \ - --with-template=`uname -s | ${TR} '[A-Z]' '[a-z]'` \ - --with-includes="${PREFIX}/include ${TCL_INCDIR} ${TK_INCDIR}" \ - ${CONFIGURE_TCL} \ - ${CONFIGURE_MULTIBYTE} \ - --with-libraries=${PREFIX}/lib - -MAN1= createdb.1 createlang.1 createuser.1 dropdb.1 droplang.1 \ - dropuser.1 ecpg.1 initdb.1 initlocation.1 ipcclean.1 pg_ctl.1 \ - pg_dump.1 pg_dumpall.1 pg_passwd.1 pg_upgrade.1 pgaccess.1 \ - pgadmin.1 pgtclsh.1 pgtksh.1 postgres.1 postmaster.1 psql.1 \ - vacuumdb.1 -MANL= abort.l alter_group.l alter_table.l alter_user.l \ - begin.l close.l cluster.l comment.l commit.l copy.l \ - create_aggregate.l create_constraint_trigger.l \ - create_database.l create_function.l create_group.l \ - create_index.l create_language.l create_operator.l \ - create_rule.l create_sequence.l create_table.l \ - create_table_as.l create_trigger.l create_type.l \ - create_user.l create_view.l declare.l delete.l \ - drop_aggregate.l drop_database.l drop_function.l \ - drop_group.l drop_index.l drop_language.l \ - drop_operator.l drop_rule.l drop_sequence.l \ - drop_table.l drop_trigger.l drop_type.l drop_user.l \ - drop_view.l end.l explain.l fetch.l grant.l insert.l \ - listen.l load.l lock.l move.l notify.l reindex.l \ - reset.l revoke.l rollback.l select.l select_into.l \ - set.l show.l truncate.l unlisten.l update.l vacuum.l - -MANPREFIX= ${PREFIX}/pgsql - -pre-fetch: - @${ECHO_MSG} "To install and run postgresql you need to compile kernel with:" - @${ECHO_MSG} " options \"SYSVSHM, SYSVSEM, SYSVMSG\"" -.if !defined(WITH_TCL) - @${ECHO_MSG} "To build the \"PostgreSQL to Tcl interface library\", libpgtcl, type:" - @${ECHO_MSG} " make -DWITH_TCL" -.else - @${ECHO_MSG} "Building PostgreSQL with \"libpgtcl\"." -.endif -.if !defined(WITHOUT_MULTIBYTE) - @${ECHO_MSG} "To disable multibyte support, type:" - @${ECHO_MSG} " make -DWITHOUT_MULTIBYTE" -.if !defined(DEFAULT_ENCODING) - @${ECHO_MSG} "To set the default encoding for the multibyte support, type:" - @${ECHO_MSG} " make DEFAULT_ENCODING=<encoding>" - @${ECHO_MSG} "where <encoding> is one of these:" - @${ECHO_MSG} " SQL_ASCII LATIN1 LATIN2 LATIN3 LATIN4 LATIN5" - @${ECHO_MSG} " EUC_JP EUC_CN EUC_KR EUC_TW KOI8" - @${ECHO_MSG} " UNICODE MULE_INTERNAL WIN ALT" -.else - @${ECHO_MSG} "The default encoding is '${DEFAULT_ENCODING}'." -.endif -.else - @${ECHO_MSG} "Building PostgreSQL without multibyte support." -.endif -.if !defined(WITH_JDBC) - @${ECHO_MSG} "To build Java (JDBC) support, type:" - @${ECHO_MSG} " make -DWITH_JDBC" -.else - @${ECHO_MSG} "Building PostgreSQL with \"postgresql.jar\"." -.endif - -post-patch: - @ ${MV} ${WRKSRC}/template/freebsd ${WRKSRC}/template/freebsd.orig - @ ${SED} -e 's#CFLAGS:-O2 -m486 -pipe#CFLAGS:${CFLAGS}#' \ - -e 's#USE_LOCALE:no#USE_LOCALE:yes#' \ - ${WRKSRC}/template/freebsd.orig >> ${WRKSRC}/template/freebsd - @ ${MV} ${WRKSRC}/Makefile.global.in ${WRKSRC}/Makefile.global.in.old - @ ${SED} -e 's=!!PREFIX!!=${PREFIX}=g' \ - ${WRKSRC}/Makefile.global.in.old \ - >> ${WRKSRC}/Makefile.global.in - -post-build: -.if defined(WITH_JDBC) - @ cd ${WRKSRC}/interfaces/jdbc && ${GMAKE} -.if !defined(NOPORTDOCS) - @ cd ${WRKSRC}/interfaces/jdbc && ${GMAKE} examples -.endif -.endif - @ ${ECHO} "------------------------------------------------------------" - @ ${ECHO} "Dump existing databases, before installing new db version !!" - @ ${ECHO} "Detailed instructions, see" - @ ${ECHO} "${WRKDIR}/${DISTNAME}/INSTALL" - @ ${ECHO} "------------------------------------------------------------" - -pre-install: -.if defined(PACKAGE_BUILDING) - ${RM} -rf ${PREFIX}/pgsql -.endif - @ ${MKDIR} ${PREFIX}/pgsql - @ ${SETENV} ${MAKE_ENV} perl ${SCRIPTDIR}/createuser - -post-install: -.if defined(NOPORTDOCS) - @ ( cd ${DOCDIR}; ${GMAKE} man ) -.else - @ ( cd ${DOCDIR}; ${GMAKE} install ) -.endif - @ if [ ! -f ${PREFIX}/pgsql/.profile ]; then \ - ${ECHO} "PATH=${PATH}:${PREFIX}/pgsql/bin" \ - > ${PREFIX}/pgsql/.profile; \ - ${ECHO} "MANPATH=${MANPATH}:${PREFIX}/pgsql/man" \ - >> ${PREFIX}/pgsql/.profile; \ - ${ECHO} "PGLIB=${PREFIX}/pgsql/lib" \ - >> ${PREFIX}/pgsql/.profile; \ - ${ECHO} "# note: PGDATA overwrites the -D startup option" \ - >> ${PREFIX}/pgsql/.profile; \ - ${ECHO} "PGDATA=${PREFIX}/pgsql/data" \ - >> ${PREFIX}/pgsql/.profile; \ - ${ECHO} "DISPLAY=:0" \ - >> ${PREFIX}/pgsql/.profile; \ - ${ECHO} "export PATH MANPATH PGLIB PGDATA DISPLAY" \ - >> ${PREFIX}/pgsql/.profile; \ - ${ECHO} "# if you want to make regression tests use this TZ" \ - >> ${PREFIX}/pgsql/.profile; \ - ${ECHO} "#TZ=PST8PDT" \ - >> ${PREFIX}/pgsql/.profile; \ - ${ECHO} "#export TZ" \ - >> ${PREFIX}/pgsql/.profile; \ - fi - @ ${CHOWN} -R pgsql:pgsql ${PREFIX}/pgsql - @ ${ECHO} 'Initializing PostgreSQL Databases - this may take a few minutes...' - @ ${SETENV} OBJFORMAT=${PORTOBJFORMAT} ${LDCONFIG} -m ${PREFIX}/pgsql/lib - @ su -l pgsql -c 'PATH=${PREFIX}/pgsql/bin:${PATH} LD_LIBRARY_PATH=${PREFIX}/pgsql/lib ${PREFIX}/pgsql/bin/initdb --pglib=${PREFIX}/pgsql/lib --pgdata=${PREFIX}/pgsql/data' - @ ${SED} -e "s=!!PREFIX!!=${PREFIX}=g" < ${FILESDIR}/pgsql.sh.tmpl \ - > ${PREFIX}/etc/rc.d/pgsql.sh - @ ${CHMOD} 554 ${PREFIX}/etc/rc.d/pgsql.sh - @ ${CHOWN} root.pgsql ${PREFIX}/etc/rc.d/pgsql.sh - @ ${INSTALL_DATA} ${FILESDIR}/post-install-notes ${PREFIX}/pgsql -.if defined(WITHOUT_MULTIBYTE) - @${CP} ${TMPPLIST} ${TMPPLIST}.nomulti - @${GREP} -v pgsql/bin/pg_encoding ${TMPPLIST}.nomulti > ${TMPPLIST} -.endif -.if defined(WITH_TCL) - @${CP} ${TMPPLIST} ${TMPPLIST}.notcl - @${CAT} ${PKGDIR}/PLIST.tcl ${TMPPLIST}.notcl > ${TMPPLIST} - @${RM} ${TMPPLIST}.notcl -.endif -.if defined(WITH_JDBC) - @ ${MKDIR} -m 0555 ${PREFIX}/share/java/classes - @ ${INSTALL_DATA} ${WRKSRC}/interfaces/jdbc/postgresql.jar \ - ${PREFIX}/share/java/classes/postgresql.jar - @ ${ECHO_MSG} "---------------------------------------------------------" - @ ${ECHO_MSG} "Putting postgresql.jar in" - @ ${ECHO_MSG} "${PREFIX}/share/java/classes/postgresql.jar" - @ ${ECHO_MSG} "Add this to your CLASSPATH!" - @ ${ECHO_MSG} "ALSO NOTE: path inside jar file modified from 6.5.x:" - @ ${ECHO_MSG} " 'postgresql.*' -> 'org.postgresql.*'!" - @ ${ECHO_MSG} "You will need to modify you applications' props files." - @ ${ECHO_MSG} "---------------------------------------------------------" - @ ${CAT} ${PKGDIR}/PLIST.jdbc >> ${TMPPLIST} -.if !defined(NOPORTDOCS) - @ ${MKDIR} -m 0555 ${PREFIX}/share/examples/pgsql/jdbc - @ ${INSTALL_DATA} ${WRKSRC}/interfaces/jdbc/example/*java \ - ${PREFIX}/share/examples/pgsql/jdbc - @ ${INSTALL_DATA} ${WRKSRC}/interfaces/jdbc/README* \ - ${PREFIX}/share/examples/pgsql/jdbc - @ ${ECHO_MSG} "---------------------------------------------------------" - @ ${ECHO_MSG} "Putting jdbc examples into ${PREFIX}/share/examples/pgsql" - @ ${ECHO_MSG} "---------------------------------------------------------" - @ ${CAT} ${PKGDIR}/PLIST.doc >> ${TMPPLIST} -.endif -.endif -.if !defined(NOPORTDOCS) - ${MKDIR} ${PREFIX}/share/doc/pgsql - @ ${GMAKE} -C ${WRKDIR}/${DISTNAME}/doc install - ${INSTALL_MAN} ${WRKDIR}/${DISTNAME}/doc/FAQ* ${PREFIX}/share/doc/pgsql - ${INSTALL_MAN} ${WRKDIR}/${DISTNAME}/doc/README* ${PREFIX}/share/doc/pgsql - ${INSTALL_MAN} ${WRKDIR}/${DISTNAME}/doc/TODO ${PREFIX}/share/doc/pgsql -# ${INSTALL_MAN} ${WRKDIR}/${DISTNAME}/doc/*ps.gz ${PREFIX}/share/doc/pgsql -.endif -.if !defined(BATCH) - @ more -e ${FILESDIR}/post-install-notes -.endif -.if !defined(DEBUG_FLAGS) -.for file in ecpg pg_dump pg_id pg_passwd pg_version postgres psql - @ strip ${PREFIX}/pgsql/bin/${file} -.endfor -.endif - -.include <bsd.port.mk> diff --git a/databases/postgresql-devel/distinfo b/databases/postgresql-devel/distinfo deleted file mode 100644 index 309ea1e11614..000000000000 --- a/databases/postgresql-devel/distinfo +++ /dev/null @@ -1,4 +0,0 @@ -MD5 (postgresql/postgresql-7.0.2.base.tar.gz) = 871d23b85d9a3599a7ed75dfc7da7ba7 -MD5 (postgresql/postgresql-7.0.2.support.tar.gz) = c21180a6485d85785c8e69f0cbff05dd -MD5 (postgresql/postgresql-7.0.2.docs.tar.gz) = efac1f87463f252e54d72b256885b883 -MD5 (postgresql/postgresql-7.0.2.test.tar.gz) = 3443b3d83194c396f20aee2adc6f93bf diff --git a/databases/postgresql-devel/files/patch-aj b/databases/postgresql-devel/files/patch-aj deleted file mode 100644 index 4231fc94ede9..000000000000 --- a/databases/postgresql-devel/files/patch-aj +++ /dev/null @@ -1,67 +0,0 @@ ---- bin/pg_passwd/pg_passwd.c.orig Mon Apr 17 05:45:18 2000 -+++ bin/pg_passwd/pg_passwd.c Sat May 20 17:54:59 2000 -@@ -18,11 +18,15 @@ - - #endif - -+#ifndef _POSIX_SOURCE -+# define _PASSWORD_LEN 128 /* max length, not containing NULL */ -+#endif -+ - char *comname; - static void usage(FILE *stream); - static void read_pwd_file(char *filename); - static void write_pwd_file(char *filename, char *bkname); --static void encrypt_pwd(char key[9], char salt[3], char passwd[14]); -+static void encrypt_pwd(char key[9], char salt[3], char passwd[_PASSWORD_LEN+1]); - static void prompt_for_username(char *username); - static void prompt_for_password(char *prompt, char *password); - -@@ -150,7 +154,7 @@ - - if (q != NULL) - *(q++) = '\0'; -- if (strlen(p) != 13) -+ if (strlen(p) > _PASSWORD_LEN) - { - fprintf(stderr, "WARNING: %s: line %d: illegal password length.\n", - filename, npwds + 1); -@@ -214,7 +218,7 @@ - } - - static void --encrypt_pwd(char key[9], char salt[3], char passwd[14]) -+encrypt_pwd(char key[9], char salt[3], char passwd[_PASSWORD_LEN+1]) - { - int n; - -@@ -246,9 +250,9 @@ - - #ifdef NOT_USED - static int --check_pwd(char key[9], char passwd[14]) -+check_pwd(char key[9], char passwd[_PASSWORD_LEN+1]) - { -- char shouldbe[14]; -+ char shouldbe[_PASSWORD_LEN+1]; - char salt[3]; - - salt[0] = passwd[0]; -@@ -256,7 +260,7 @@ - salt[2] = '\0'; - encrypt_pwd(key, salt, shouldbe); - -- return strncmp(shouldbe, passwd, 13) == 0 ? 1 : 0; -+ return strncmp(shouldbe, passwd, _PASSWORD_LEN) == 0 ? 1 : 0; - } - - #endif -@@ -332,7 +336,7 @@ - char salt[3]; - char key[9], - key2[9]; -- char e_passwd[14]; -+ char e_passwd[_PASSWORD_LEN+1]; - int i; - - comname = argv[0]; diff --git a/databases/postgresql-devel/files/patch-ar b/databases/postgresql-devel/files/patch-ar deleted file mode 100644 index c5c8096fc141..000000000000 --- a/databases/postgresql-devel/files/patch-ar +++ /dev/null @@ -1,11 +0,0 @@ ---- configure.orig Sun Oct 10 14:37:07 1999 -+++ configure Sun Oct 10 14:37:29 1999 -@@ -1429,7 +1429,7 @@ - ELF_SYS=true - else - rm -rf conftest* -- if test "X$elf" = "Xyes" -+ if test "X$PORTOBJFORMAT" = "Xelf" - then - ELF_SYS=true - else diff --git a/databases/postgresql-devel/files/patch-as b/databases/postgresql-devel/files/patch-as deleted file mode 100644 index 3282168c4aed..000000000000 --- a/databases/postgresql-devel/files/patch-as +++ /dev/null @@ -1,11 +0,0 @@ ---- Makefile.global.in.orig Sun Dec 6 00:08:56 1998 -+++ Makefile.global.in Sat Feb 27 04:23:12 1999 -@@ -79,7 +79,7 @@ - POSTMANDIR= $(POSTGRESDIR)/man - - # Where the formatted documents (e.g., the reference manual) get installed. --POSTDOCDIR= $(POSTGRESDIR)/doc -+POSTDOCDIR= !!PREFIX!!/share/doc/pgsql - - # Where the header files necessary to build frontend programs get installed. - HEADERDIR= $(POSTGRESDIR)/include diff --git a/databases/postgresql-devel/files/patch-at b/databases/postgresql-devel/files/patch-at deleted file mode 100644 index 93e68a708211..000000000000 --- a/databases/postgresql-devel/files/patch-at +++ /dev/null @@ -1,11 +0,0 @@ ---- ../doc/Makefile.orig Sun Nov 29 06:30:13 1998 -+++ ../doc/Makefile Mon Jun 21 17:00:13 1999 -@@ -12,7 +12,7 @@ - # - #---------------------------------------------------------------------------- - --PGDOCS= $(POSTGRESDIR)/doc -+PGDOCS= $(POSTDOCDIR) - SRCDIR= ../src - - TAR= tar diff --git a/databases/postgresql-devel/files/patch-ba b/databases/postgresql-devel/files/patch-ba deleted file mode 100644 index a3b679b882c5..000000000000 --- a/databases/postgresql-devel/files/patch-ba +++ /dev/null @@ -1,25 +0,0 @@ ---- interfaces/jdbc/Makefile.orig Tue Mar 14 16:55:17 2000 -+++ interfaces/jdbc/Makefile Sun Apr 16 21:16:43 2000 -@@ -10,10 +10,10 @@ - - FIND = find - IDL2JAVA = idltojava -fno-cpp -fno-tie --JAR = jar --JAVA = java --JAVAC = javac -g --JAVADOC = javadoc -+JAR = !!JAVA_HOME!!/bin/jar -+JAVA = !!JAVA_HOME!!/bin/java -+JAVAC = !!JAVA_HOME!!/bin/javac -+JAVADOC = !!JAVA_HOME!!/bin/javadoc - RM = rm -f - TOUCH = touch - -@@ -40,6 +40,7 @@ - @echo To compile, type: - @echo " $(MAKE) jdbc2" - @echo ------------------------------------------------------------ -+ $(MAKE) jdbc1 - - msg: - @echo ------------------------------------------------------------ diff --git a/databases/postgresql-devel/files/patch-bb b/databases/postgresql-devel/files/patch-bb deleted file mode 100644 index ea0f1732dcb0..000000000000 --- a/databases/postgresql-devel/files/patch-bb +++ /dev/null @@ -1,13 +0,0 @@ ---- pl/tcl/Makefile~ Sat Apr 29 19:45:42 2000 -+++ pl/tcl/Makefile Sat May 20 22:42:22 2000 -@@ -71,7 +71,9 @@ - CFLAGS+= $(TCL_SHLIB_CFLAGS) $(TCL_DEFS) - - CFLAGS+= -I$(SRCDIR)/include -I$(SRCDIR)/backend $(PGSQL_INCLUDES) -- -+ -+CFLAGS+= -I$(TCL_INCDIR) -+ - # - # Uncomment the following to enable the unknown command lookup - # on the first of all calls to the call handler. See the doc diff --git a/databases/postgresql-devel/files/patch-bc b/databases/postgresql-devel/files/patch-bc deleted file mode 100644 index ff747fb84a2f..000000000000 --- a/databases/postgresql-devel/files/patch-bc +++ /dev/null @@ -1,5 +0,0 @@ ---- bin/pg_ctl/postmaster.opts.default.sample~ Mon Apr 17 05:45:17 2000 -+++ bin/pg_ctl/postmaster.opts.default.sample Tue May 23 02:46:30 2000 -@@ -1 +1 @@ -- -+-i -o "-F" diff --git a/databases/postgresql-devel/files/pgsql.sh.tmpl b/databases/postgresql-devel/files/pgsql.sh.tmpl deleted file mode 100644 index e1673b4850c2..000000000000 --- a/databases/postgresql-devel/files/pgsql.sh.tmpl +++ /dev/null @@ -1,34 +0,0 @@ -#!/bin/sh - -# $FreeBSD$ -# -# For postmaster startup options, edit $PGDATA/postmaster.opts.default -# Preinstalled options are -i -o "-F" - -case $1 in -start) - [ -d !!PREFIX!!/pgsql/lib ] && /sbin/ldconfig -m !!PREFIX!!/pgsql/lib - [ -x !!PREFIX!!/pgsql/bin/pg_ctl ] && { - su -l pgsql -c \ - 'exec !!PREFIX!!/pgsql/bin/pg_ctl -w start > !!PREFIX!!/pgsql/errlog 2>&1' - echo -n ' pgsql' - } - ;; - -stop) - [ -x !!PREFIX!!/pgsql/bin/pg_ctl ] && { - su -l pgsql -c 'exec !!PREFIX!!/pgsql/bin/pg_ctl -w -m fast stop' - } - ;; - -status) - [ -x !!PREFIX!!/pgsql/bin/pg_ctl ] && { - su -l pgsql -c 'exec !!PREFIX!!/pgsql/bin/pg_ctl status' - } - ;; - -*) - echo "usage: `basename $0` {start|stop|status}" >&2 - exit 64 - ;; -esac diff --git a/databases/postgresql-devel/files/post-install-notes b/databases/postgresql-devel/files/post-install-notes deleted file mode 100644 index 289a7651109a..000000000000 --- a/databases/postgresql-devel/files/post-install-notes +++ /dev/null @@ -1,16 +0,0 @@ - -Now that PostgreSQL is installed, you should read the documentation and -implementation guides. These can be found at: - - http://www.PostgreSQL.org/docs - -You may wish to subscribe to the PostgreSQL user-support mailing list. -Send an e-mail to pgsql-questions-request@postgresql.org with the -text "subscribe" in the message body. - -If you built PostgreSQL with TCL support, you can install the port -"pgaccess" to get a TCL/TK based database frontend for database -operations. - -To start PostgreSQL, run the startup script: -$PREFIX/etc/rc.d/pgsql.sh start diff --git a/databases/postgresql-devel/pkg-comment b/databases/postgresql-devel/pkg-comment deleted file mode 100644 index 2125016b133c..000000000000 --- a/databases/postgresql-devel/pkg-comment +++ /dev/null @@ -1 +0,0 @@ -A robust, next generation, object-relational DBMS diff --git a/databases/postgresql-devel/pkg-descr b/databases/postgresql-devel/pkg-descr deleted file mode 100644 index f48a33337e55..000000000000 --- a/databases/postgresql-devel/pkg-descr +++ /dev/null @@ -1,24 +0,0 @@ -PostgreSQL is a robust, next-generation, Object-Relational DBMS (ORDBMS), -derived from the Berkeley Postgres database management system. While -PostgreSQL retains the powerful object-relational data model, rich data types -and easy extensibility of Postgres, it replaces the PostQuel query language -with an extended subset of SQL. - -The original Postgres code was the effort of many graduate students, -undergraduate students, and staff programmers working under the direction of -Professor Michael Stonebraker at the University of California, Berkeley. In -1995, Andrew Yu and Jolly Chen took on the task of converting the DBMS query -language to SQL and created a new database system which came to known as -Postgres95. Many others contributed to the porting, testing, debugging and -enhancement of the Postgres95 code. As the code improved, and 1995 faded into -memory, PostgreSQL was born. - -PostgreSQL development is presently being performed by a team of Internet -developers who are now responsible for all current and future development. The -development team coordinator is Marc G. Fournier (scrappy@PostgreSQL.ORG). -Support is available from the PostgreSQL developer/user community through the -support mailing list (questions@PostgreSQL.ORG). - -PostgreSQL is free and the complete source is available. - -WWW: http://www.postgresql.org diff --git a/databases/postgresql-devel/pkg-install b/databases/postgresql-devel/pkg-install deleted file mode 100644 index 7f3a090fe4b6..000000000000 --- a/databases/postgresql-devel/pkg-install +++ /dev/null @@ -1,44 +0,0 @@ -#! /bin/sh - -# $FreeBSD$ - -PATH=/bin:/usr/sbin - -if [ -z "${DB_DIR}" ]; then - DB_DIR=${PKG_PREFIX}/pgsql/data -fi - -case $2 in -POST-INSTALL) - USER=pgsql - GROUP=${USER} - UID=89 - GID=${UID} - - if pw group show "${GROUP}" 2>/dev/null; then - echo "You already have a group \"${GROUP}\", so I will use it." - else - if pw groupadd ${GROUP} -g ${GID}; then - echo "Added group \"${GROUP}\"." - else - echo "Adding group \"${GROUP}\" failed..." - exit 1 - fi - fi - - if pw user show "${USER}" 2>/dev/null; then - echo "You already have a user \"${USER}\", so I will use it." - else - if pw useradd ${USER} -u ${UID} -g ${GROUP} -h - \ - -d ${DB_DIR} -s /sbin/nologin -c "PostgreSQL Daemon" - then - echo "Added user \"${USER}\"." - else - echo "Adding user \"${USER}\" failed..." - exit 1 - fi - fi - - chown -R ${USER}.${GROUP} ${DB_DIR} - ;; -esac diff --git a/databases/postgresql-devel/pkg-plist b/databases/postgresql-devel/pkg-plist deleted file mode 100644 index 9992da1174ae..000000000000 --- a/databases/postgresql-devel/pkg-plist +++ /dev/null @@ -1,168 +0,0 @@ -etc/rc.d/pgsql.sh -pgsql/.profile -pgsql/bin/createdb -pgsql/bin/createlang -pgsql/bin/createuser -pgsql/bin/dropdb -pgsql/bin/droplang -pgsql/bin/dropuser -pgsql/bin/ecpg -pgsql/bin/initdb -pgsql/bin/initlocation -pgsql/bin/ipcclean -pgsql/bin/pg_ctl -pgsql/bin/pg_dump -pgsql/bin/pg_dumpall -pgsql/bin/pg_encoding -pgsql/bin/pg_id -pgsql/bin/pg_passwd -pgsql/bin/pg_upgrade -pgsql/bin/pg_version -pgsql/bin/postgres -pgsql/bin/postmaster -pgsql/bin/psql -pgsql/bin/vacuumdb -pgsql/data/PG_VERSION -pgsql/data/base/template1/PG_VERSION -pgsql/data/base/template1/pg_aggregate -pgsql/data/base/template1/pg_aggregate_name_type_index -pgsql/data/base/template1/pg_am -pgsql/data/base/template1/pg_am_name_index -pgsql/data/base/template1/pg_amop -pgsql/data/base/template1/pg_amop_opid_index -pgsql/data/base/template1/pg_amop_strategy_index -pgsql/data/base/template1/pg_amproc -pgsql/data/base/template1/pg_attrdef -pgsql/data/base/template1/pg_attrdef_adrelid_index -pgsql/data/base/template1/pg_attribute -pgsql/data/base/template1/pg_attribute_relid_attnam_index -pgsql/data/base/template1/pg_attribute_relid_attnum_index -pgsql/data/base/template1/pg_class -pgsql/data/base/template1/pg_class_oid_index -pgsql/data/base/template1/pg_class_relname_index -pgsql/data/base/template1/pg_description -pgsql/data/base/template1/pg_description_objoid_index -pgsql/data/base/template1/pg_index -pgsql/data/base/template1/pg_index_indexrelid_index -pgsql/data/base/template1/pg_indexes -pgsql/data/base/template1/pg_inheritproc -pgsql/data/base/template1/pg_inherits -pgsql/data/base/template1/pg_inherits_relid_seqno_index -pgsql/data/base/template1/pg_ipl -pgsql/data/base/template1/pg_language -pgsql/data/base/template1/pg_language_name_index -pgsql/data/base/template1/pg_language_oid_index -pgsql/data/base/template1/pg_listener -pgsql/data/base/template1/pg_listener_relname_pid_index -pgsql/data/base/template1/pg_opclass -pgsql/data/base/template1/pg_opclass_deftype_index -pgsql/data/base/template1/pg_opclass_name_index -pgsql/data/base/template1/pg_operator -pgsql/data/base/template1/pg_operator_oid_index -pgsql/data/base/template1/pg_operator_oprname_l_r_k_index -pgsql/data/base/template1/pg_proc -pgsql/data/base/template1/pg_proc_oid_index -pgsql/data/base/template1/pg_proc_proname_narg_type_index -pgsql/data/base/template1/pg_relcheck -pgsql/data/base/template1/pg_relcheck_rcrelid_index -pgsql/data/base/template1/pg_rewrite -pgsql/data/base/template1/pg_rewrite_oid_index -pgsql/data/base/template1/pg_rewrite_rulename_index -pgsql/data/base/template1/pg_rules -pgsql/data/base/template1/pg_statistic -pgsql/data/base/template1/pg_statistic_relid_att_index -pgsql/data/base/template1/pg_tables -pgsql/data/base/template1/pg_trigger -pgsql/data/base/template1/pg_trigger_tgconstrname_index -pgsql/data/base/template1/pg_trigger_tgconstrrelid_index -pgsql/data/base/template1/pg_trigger_tgrelid_index -pgsql/data/base/template1/pg_type -pgsql/data/base/template1/pg_type_oid_index -pgsql/data/base/template1/pg_type_typname_index -pgsql/data/base/template1/pg_user -pgsql/data/base/template1/pg_views -pgsql/data/pg_control -pgsql/data/pg_database -pgsql/data/pg_geqo.sample -pgsql/data/pg_group -pgsql/data/pg_group_name_index -pgsql/data/pg_group_sysid_index -pgsql/data/pg_hba.conf -pgsql/data/pg_log -pgsql/data/pg_shadow -pgsql/data/pg_variable -pgsql/data/postmaster.opts.default -pgsql/include/access/attnum.h -pgsql/include/c.h -pgsql/include/commands/trigger.h -pgsql/include/config.h -pgsql/include/ecpgerrno.h -pgsql/include/ecpglib.h -pgsql/include/ecpgtype.h -pgsql/include/executor/spi.h -pgsql/include/fmgr.h -pgsql/include/lib/dllist.h -pgsql/include/libpgeasy.h -pgsql/include/libpq/libpq-fs.h -pgsql/include/libpq/pqcomm.h -pgsql/include/libpq++/pgconnection.h -pgsql/include/libpq++/pgcursordb.h -pgsql/include/libpq++/pgdatabase.h -pgsql/include/libpq++/pglobject.h -pgsql/include/libpq++/pgtransdb.h -pgsql/include/libpq++.h -pgsql/include/libpq-fe.h -pgsql/include/libpq-int.h -pgsql/include/os.h -pgsql/include/postgres.h -pgsql/include/postgres_ext.h -pgsql/include/pqexpbuffer.h -pgsql/include/sql3types.h -pgsql/include/sqlca.h -pgsql/include/utils/elog.h -pgsql/include/utils/geo_decls.h -pgsql/include/utils/mcxt.h -pgsql/include/utils/palloc.h -pgsql/lib/global1.bki.source -pgsql/lib/global1.description -pgsql/lib/libecpg.a -pgsql/lib/libecpg.so -pgsql/lib/libecpg.so.3 -pgsql/lib/libpgeasy.a -pgsql/lib/libpgeasy.so -pgsql/lib/libpgeasy.so.2 -pgsql/lib/libpq++.a -pgsql/lib/libpq++.so -pgsql/lib/libpq++.so.3 -pgsql/lib/libpq.a -pgsql/lib/libpq.so -pgsql/lib/libpq.so.2 -pgsql/lib/local1_template1.bki.source -pgsql/lib/local1_template1.description -pgsql/lib/pg_geqo.sample -pgsql/lib/pg_hba.conf.sample -pgsql/lib/pg_ident.conf.sample -pgsql/lib/pg_options.sample -pgsql/lib/plpgsql.so -pgsql/lib/postmaster.opts.default.sample -pgsql/post-install-notes -@dirrm pgsql/bin -@dirrm pgsql/data/base/template1 -@dirrm pgsql/data/base -@dirrm pgsql/data/pg_xlog -@dirrm pgsql/data -@dirrm pgsql/include/access -@dirrm pgsql/include/commands -@dirrm pgsql/include/executor -@dirrm pgsql/include/lib -@dirrm pgsql/include/libpq -@dirrm pgsql/include/libpq++ -@dirrm pgsql/include/port/freebsd -@dirrm pgsql/include/port -@dirrm pgsql/include/utils -@dirrm pgsql/include -@dirrm pgsql/lib -@dirrm pgsql/man/man1 -@dirrm pgsql/man/manl -@dirrm pgsql/man -@dirrm pgsql diff --git a/databases/postgresql-devel/pkg-plist.doc b/databases/postgresql-devel/pkg-plist.doc deleted file mode 100644 index 06b7bd9ea116..000000000000 --- a/databases/postgresql-devel/pkg-plist.doc +++ /dev/null @@ -1,888 +0,0 @@ -share/doc/pgsql/FAQ -share/doc/pgsql/FAQ_AIX -share/doc/pgsql/FAQ_BSDI -share/doc/pgsql/FAQ_DEV -share/doc/pgsql/FAQ_DigitalUnix -share/doc/pgsql/FAQ_FreeBSD -share/doc/pgsql/FAQ_HPUX -share/doc/pgsql/FAQ_Irix -share/doc/pgsql/FAQ_Linux -share/doc/pgsql/FAQ_QNX4 -share/doc/pgsql/FAQ_SCO -share/doc/pgsql/FAQ_Solaris -share/doc/pgsql/README.Charsets -share/doc/pgsql/README.NT -share/doc/pgsql/README.fsync -share/doc/pgsql/README.inet -share/doc/pgsql/README.locale -share/doc/pgsql/README.mb -share/doc/pgsql/README.mb.jp -share/doc/pgsql/TODO -share/doc/pgsql/admin/admin.htm -share/doc/pgsql/admin/admin.html -share/doc/pgsql/admin/biblio.htm -share/doc/pgsql/admin/c573.htm -share/doc/pgsql/admin/c573602.htm -share/doc/pgsql/admin/c573680.htm -share/doc/pgsql/admin/c573717.htm -share/doc/pgsql/admin/copyright.htm -share/doc/pgsql/admin/disk.htm -share/doc/pgsql/admin/index.html -share/doc/pgsql/admin/install-win32.htm -share/doc/pgsql/admin/install-win321073.htm -share/doc/pgsql/admin/install-win321082.htm -share/doc/pgsql/admin/install.htm -share/doc/pgsql/admin/install855.htm -share/doc/pgsql/admin/intro-ag.htm -share/doc/pgsql/admin/intro-ag162.htm -share/doc/pgsql/admin/layout.gif -share/doc/pgsql/admin/layout.htm -share/doc/pgsql/admin/manage-ag.htm -share/doc/pgsql/admin/manage-ag1604.htm -share/doc/pgsql/admin/manage-ag1646.htm -share/doc/pgsql/admin/manage-ag1655.htm -share/doc/pgsql/admin/newuser.htm -share/doc/pgsql/admin/notation.htm -share/doc/pgsql/admin/pg-options.htm -share/doc/pgsql/admin/ports.htm -share/doc/pgsql/admin/ports481.htm -share/doc/pgsql/admin/postmaster.htm -share/doc/pgsql/admin/preface.htm -share/doc/pgsql/admin/recovery.htm -share/doc/pgsql/admin/regress.htm -share/doc/pgsql/admin/regress1861.htm -share/doc/pgsql/admin/regress1895.htm -share/doc/pgsql/admin/regress1941.htm -share/doc/pgsql/admin/release.htm -share/doc/pgsql/admin/release2009.htm -share/doc/pgsql/admin/release2020.htm -share/doc/pgsql/admin/release2031.htm -share/doc/pgsql/admin/release2042.htm -share/doc/pgsql/admin/release2124.htm -share/doc/pgsql/admin/release2135.htm -share/doc/pgsql/admin/release2146.htm -share/doc/pgsql/admin/release2187.htm -share/doc/pgsql/admin/release2203.htm -share/doc/pgsql/admin/release2222.htm -share/doc/pgsql/admin/release2266.htm -share/doc/pgsql/admin/release2288.htm -share/doc/pgsql/admin/release2303.htm -share/doc/pgsql/admin/release2312.htm -share/doc/pgsql/admin/release2335.htm -share/doc/pgsql/admin/release2349.htm -share/doc/pgsql/admin/release2352.htm -share/doc/pgsql/admin/release2377.htm -share/doc/pgsql/admin/release2414.htm -share/doc/pgsql/admin/release2421.htm -share/doc/pgsql/admin/release2428.htm -share/doc/pgsql/admin/release2435.htm -share/doc/pgsql/admin/release2439.htm -share/doc/pgsql/admin/runtime.htm -share/doc/pgsql/admin/security.htm -share/doc/pgsql/admin/security1450.htm -share/doc/pgsql/admin/security1485.htm -share/doc/pgsql/admin/security1509.htm -share/doc/pgsql/admin/security1530.htm -share/doc/pgsql/admin/terminology.htm -share/doc/pgsql/admin/trouble.htm -share/doc/pgsql/admin/trouble1721.htm -share/doc/pgsql/admin/trouble1738.htm -share/doc/pgsql/admin/y2k.htm -share/doc/pgsql/postgres/about.htm -share/doc/pgsql/postgres/advanced.htm -share/doc/pgsql/postgres/advanced27923.htm -share/doc/pgsql/postgres/advanced27945.htm -share/doc/pgsql/postgres/app-createdb.htm -share/doc/pgsql/postgres/app-createlang.htm -share/doc/pgsql/postgres/app-createuser.htm -share/doc/pgsql/postgres/app-dropdb.htm -share/doc/pgsql/postgres/app-droplang.htm -share/doc/pgsql/postgres/app-dropuser.htm -share/doc/pgsql/postgres/app-ecpg.htm -share/doc/pgsql/postgres/app-initdb.htm -share/doc/pgsql/postgres/app-initlocation.htm -share/doc/pgsql/postgres/app-ipcclean.htm -share/doc/pgsql/postgres/app-pg-passwd.htm -share/doc/pgsql/postgres/app-pg-upgrade.htm -share/doc/pgsql/postgres/app-pgaccess.htm -share/doc/pgsql/postgres/app-pgadmin.htm -share/doc/pgsql/postgres/app-pgctl.htm -share/doc/pgsql/postgres/app-pgdump.htm -share/doc/pgsql/postgres/app-pgdumpall.htm -share/doc/pgsql/postgres/app-pgtclsh.htm -share/doc/pgsql/postgres/app-pgtksh.htm -share/doc/pgsql/postgres/app-postgres.htm -share/doc/pgsql/postgres/app-postmaster.htm -share/doc/pgsql/postgres/app-psql.htm -share/doc/pgsql/postgres/app-vacuumdb.htm -share/doc/pgsql/postgres/applications.htm -share/doc/pgsql/postgres/arch-pg.htm -share/doc/pgsql/postgres/arch.htm -share/doc/pgsql/postgres/arrays.htm -share/doc/pgsql/postgres/biblio.htm -share/doc/pgsql/postgres/bki.htm -share/doc/pgsql/postgres/bki26573.htm -share/doc/pgsql/postgres/bki26657.htm -share/doc/pgsql/postgres/bki26681.htm -share/doc/pgsql/postgres/bki26742.htm -share/doc/pgsql/postgres/c16883.htm -share/doc/pgsql/postgres/c1688316912.htm -share/doc/pgsql/postgres/c1688316990.htm -share/doc/pgsql/postgres/c1688317027.htm -share/doc/pgsql/postgres/c19986.htm -share/doc/pgsql/postgres/c21722.htm -share/doc/pgsql/postgres/c2172221764.htm -share/doc/pgsql/postgres/c2172221782.htm -share/doc/pgsql/postgres/c2172221924.htm -share/doc/pgsql/postgres/c2172221936.htm -share/doc/pgsql/postgres/c2172221956.htm -share/doc/pgsql/postgres/c2172221961.htm -share/doc/pgsql/postgres/c25129.htm -share/doc/pgsql/postgres/c4091.htm -share/doc/pgsql/postgres/c40914117.htm -share/doc/pgsql/postgres/c40914344.htm -share/doc/pgsql/postgres/c4362.htm -share/doc/pgsql/postgres/c43624375.htm -share/doc/pgsql/postgres/c4888.htm -share/doc/pgsql/postgres/c4933.htm -share/doc/pgsql/postgres/c49334943.htm -share/doc/pgsql/postgres/c49334947.htm -share/doc/pgsql/postgres/catalogs.gif -share/doc/pgsql/postgres/clientserver.gif -share/doc/pgsql/postgres/compiler.htm -share/doc/pgsql/postgres/connections.gif -share/doc/pgsql/postgres/copyright.htm -share/doc/pgsql/postgres/cvs.htm -share/doc/pgsql/postgres/cvs28436.htm -share/doc/pgsql/postgres/cvs28492.htm -share/doc/pgsql/postgres/datatype.htm -share/doc/pgsql/postgres/datatype1038.htm -share/doc/pgsql/postgres/datatype1070.htm -share/doc/pgsql/postgres/datatype1134.htm -share/doc/pgsql/postgres/datatype1649.htm -share/doc/pgsql/postgres/datatype1681.htm -share/doc/pgsql/postgres/datatype1920.htm -share/doc/pgsql/postgres/datetime-appendix.htm -share/doc/pgsql/postgres/datetime-appendix28356.htm -share/doc/pgsql/postgres/dfunc.htm -share/doc/pgsql/postgres/dfunc20136.htm -share/doc/pgsql/postgres/dfunc20146.htm -share/doc/pgsql/postgres/disk.htm -share/doc/pgsql/postgres/docguide.htm -share/doc/pgsql/postgres/docguide28718.htm -share/doc/pgsql/postgres/docguide28749.htm -share/doc/pgsql/postgres/docguide28840.htm -share/doc/pgsql/postgres/docguide28861.htm -share/doc/pgsql/postgres/docguide28887.htm -share/doc/pgsql/postgres/docguide29024.htm -share/doc/pgsql/postgres/docguide29362.htm -share/doc/pgsql/postgres/environ.htm -share/doc/pgsql/postgres/extend.htm -share/doc/pgsql/postgres/extend18852.htm -share/doc/pgsql/postgres/extend18864.htm -share/doc/pgsql/postgres/func-ref.htm -share/doc/pgsql/postgres/functions.htm -share/doc/pgsql/postgres/functions2593.htm -share/doc/pgsql/postgres/functions2733.htm -share/doc/pgsql/postgres/functions2876.htm -share/doc/pgsql/postgres/functions2976.htm -share/doc/pgsql/postgres/functions3443.htm -share/doc/pgsql/postgres/functions3641.htm -share/doc/pgsql/postgres/geqo-biblio.htm -share/doc/pgsql/postgres/geqo.htm -share/doc/pgsql/postgres/geqo25594.htm -share/doc/pgsql/postgres/geqo25617.htm -share/doc/pgsql/postgres/geqo25655.htm -share/doc/pgsql/postgres/gist.htm -share/doc/pgsql/postgres/index.html -share/doc/pgsql/postgres/indices.htm -share/doc/pgsql/postgres/inherit.htm -share/doc/pgsql/postgres/install-win32.htm -share/doc/pgsql/postgres/install-win3217383.htm -share/doc/pgsql/postgres/install-win3217392.htm -share/doc/pgsql/postgres/install.htm -share/doc/pgsql/postgres/install17165.htm -share/doc/pgsql/postgres/intro.htm -share/doc/pgsql/postgres/intro176.htm -share/doc/pgsql/postgres/intro304.htm -share/doc/pgsql/postgres/intro60.htm -share/doc/pgsql/postgres/jdbc.htm -share/doc/pgsql/postgres/jdbc24909.htm -share/doc/pgsql/postgres/jdbc24921.htm -share/doc/pgsql/postgres/jdbc24927.htm -share/doc/pgsql/postgres/jdbc24935.htm -share/doc/pgsql/postgres/jdbc24953.htm -share/doc/pgsql/postgres/jdbc24990.htm -share/doc/pgsql/postgres/jdbc25021.htm -share/doc/pgsql/postgres/jdbc25026.htm -share/doc/pgsql/postgres/jdbc25030.htm -share/doc/pgsql/postgres/jdbc25056.htm -share/doc/pgsql/postgres/jdbc25086.htm -share/doc/pgsql/postgres/largeobjects.htm -share/doc/pgsql/postgres/largeobjects21625.htm -share/doc/pgsql/postgres/largeobjects21628.htm -share/doc/pgsql/postgres/largeobjects21707.htm -share/doc/pgsql/postgres/largeobjects21714.htm -share/doc/pgsql/postgres/largeobjects21718.htm -share/doc/pgsql/postgres/layout.gif -share/doc/pgsql/postgres/layout.htm -share/doc/pgsql/postgres/libpq-chapter.htm -share/doc/pgsql/postgres/libpq-chapter22422.htm -share/doc/pgsql/postgres/libpq-chapter22577.htm -share/doc/pgsql/postgres/libpq-chapter22724.htm -share/doc/pgsql/postgres/libpq-chapter22736.htm -share/doc/pgsql/postgres/libpq-chapter22774.htm -share/doc/pgsql/postgres/libpq-chapter22844.htm -share/doc/pgsql/postgres/libpq-chapter22857.htm -share/doc/pgsql/postgres/libpq-chapter22942.htm -share/doc/pgsql/postgres/libpq-envars.htm -share/doc/pgsql/postgres/libpq-threading.htm -share/doc/pgsql/postgres/libpqplusplus.htm -share/doc/pgsql/postgres/libpqplusplus23034.htm -share/doc/pgsql/postgres/libpqplusplus23044.htm -share/doc/pgsql/postgres/libpqplusplus23074.htm -share/doc/pgsql/postgres/libpqplusplus23179.htm -share/doc/pgsql/postgres/libpqplusplus23202.htm -share/doc/pgsql/postgres/lisp.htm -share/doc/pgsql/postgres/manage-ag.htm -share/doc/pgsql/postgres/manage-ag17914.htm -share/doc/pgsql/postgres/manage-ag17956.htm -share/doc/pgsql/postgres/manage-ag17965.htm -share/doc/pgsql/postgres/manage.htm -share/doc/pgsql/postgres/manage4814.htm -share/doc/pgsql/postgres/manage4838.htm -share/doc/pgsql/postgres/manage4880.htm -share/doc/pgsql/postgres/mvcc.htm -share/doc/pgsql/postgres/mvcc4568.htm -share/doc/pgsql/postgres/mvcc4621.htm -share/doc/pgsql/postgres/mvcc4633.htm -share/doc/pgsql/postgres/mvcc4646.htm -share/doc/pgsql/postgres/mvcc4723.htm -share/doc/pgsql/postgres/mvcc4744.htm -share/doc/pgsql/postgres/newuser.htm -share/doc/pgsql/postgres/notation.htm -share/doc/pgsql/postgres/odbc.htm -share/doc/pgsql/postgres/odbc24433.htm -share/doc/pgsql/postgres/odbc24471.htm -share/doc/pgsql/postgres/odbc24644.htm -share/doc/pgsql/postgres/odbc24666.htm -share/doc/pgsql/postgres/operators.htm -share/doc/pgsql/postgres/operators2127.htm -share/doc/pgsql/postgres/operators2198.htm -share/doc/pgsql/postgres/operators2267.htm -share/doc/pgsql/postgres/operators2377.htm -share/doc/pgsql/postgres/operators2436.htm -share/doc/pgsql/postgres/operators2490.htm -share/doc/pgsql/postgres/overview.htm -share/doc/pgsql/postgres/overview25194.htm -share/doc/pgsql/postgres/overview25219.htm -share/doc/pgsql/postgres/overview25347.htm -share/doc/pgsql/postgres/overview25403.htm -share/doc/pgsql/postgres/overview25457.htm -share/doc/pgsql/postgres/page.htm -share/doc/pgsql/postgres/page26805.htm -share/doc/pgsql/postgres/page26819.htm -share/doc/pgsql/postgres/part-admin.htm -share/doc/pgsql/postgres/part-appendix.htm -share/doc/pgsql/postgres/part-developer.htm -share/doc/pgsql/postgres/part-interfaces.htm -share/doc/pgsql/postgres/part-programmer.htm -share/doc/pgsql/postgres/part-tutorial.htm -share/doc/pgsql/postgres/part-user.htm -share/doc/pgsql/postgres/partial-index.htm -share/doc/pgsql/postgres/pg-options-dev.htm -share/doc/pgsql/postgres/pg-options.htm -share/doc/pgsql/postgres/pgeasy-chapter.htm -share/doc/pgsql/postgres/pgtcl-pgconndefaults.htm -share/doc/pgsql/postgres/pgtcl-pgconnect.htm -share/doc/pgsql/postgres/pgtcl-pgdisconnect.htm -share/doc/pgsql/postgres/pgtcl-pgexec.htm -share/doc/pgsql/postgres/pgtcl-pglisten.htm -share/doc/pgsql/postgres/pgtcl-pgloclose.htm -share/doc/pgsql/postgres/pgtcl-pglocreat.htm -share/doc/pgsql/postgres/pgtcl-pgloexport.htm -share/doc/pgsql/postgres/pgtcl-pgloimport.htm -share/doc/pgsql/postgres/pgtcl-pglolseek.htm -share/doc/pgsql/postgres/pgtcl-pgloopen.htm -share/doc/pgsql/postgres/pgtcl-pgloread.htm -share/doc/pgsql/postgres/pgtcl-pglotell.htm -share/doc/pgsql/postgres/pgtcl-pglounlink.htm -share/doc/pgsql/postgres/pgtcl-pglowrite.htm -share/doc/pgsql/postgres/pgtcl-pgresult.htm -share/doc/pgsql/postgres/pgtcl-pgselect.htm -share/doc/pgsql/postgres/pgtcl.htm -share/doc/pgsql/postgres/pgtcl23317.htm -share/doc/pgsql/postgres/pgtcl23321.htm -share/doc/pgsql/postgres/pl-perl.htm -share/doc/pgsql/postgres/pl-perl4533.htm -share/doc/pgsql/postgres/pl-perl4542.htm -share/doc/pgsql/postgres/ports.htm -share/doc/pgsql/postgres/ports16791.htm -share/doc/pgsql/postgres/postgres.htm -share/doc/pgsql/postgres/postgres.html -share/doc/pgsql/postgres/postmaster.htm -share/doc/pgsql/postgres/preface.htm -share/doc/pgsql/postgres/protocol.htm -share/doc/pgsql/postgres/protocol25770.htm -share/doc/pgsql/postgres/protocol25925.htm -share/doc/pgsql/postgres/protocol25962.htm -share/doc/pgsql/postgres/query.htm -share/doc/pgsql/postgres/query27752.htm -share/doc/pgsql/postgres/query27768.htm -share/doc/pgsql/postgres/query27790.htm -share/doc/pgsql/postgres/query27799.htm -share/doc/pgsql/postgres/query27817.htm -share/doc/pgsql/postgres/query27825.htm -share/doc/pgsql/postgres/query27844.htm -share/doc/pgsql/postgres/query27849.htm -share/doc/pgsql/postgres/query27856.htm -share/doc/pgsql/postgres/recovery.htm -share/doc/pgsql/postgres/regress.htm -share/doc/pgsql/postgres/regress18171.htm -share/doc/pgsql/postgres/regress18205.htm -share/doc/pgsql/postgres/regress18251.htm -share/doc/pgsql/postgres/release.htm -share/doc/pgsql/postgres/release18319.htm -share/doc/pgsql/postgres/release18330.htm -share/doc/pgsql/postgres/release18341.htm -share/doc/pgsql/postgres/release18352.htm -share/doc/pgsql/postgres/release18434.htm -share/doc/pgsql/postgres/release18445.htm -share/doc/pgsql/postgres/release18456.htm -share/doc/pgsql/postgres/release18497.htm -share/doc/pgsql/postgres/release18513.htm -share/doc/pgsql/postgres/release18532.htm -share/doc/pgsql/postgres/release18576.htm -share/doc/pgsql/postgres/release18598.htm -share/doc/pgsql/postgres/release18613.htm -share/doc/pgsql/postgres/release18622.htm -share/doc/pgsql/postgres/release18645.htm -share/doc/pgsql/postgres/release18659.htm -share/doc/pgsql/postgres/release18662.htm -share/doc/pgsql/postgres/release18687.htm -share/doc/pgsql/postgres/release18724.htm -share/doc/pgsql/postgres/release18731.htm -share/doc/pgsql/postgres/release18738.htm -share/doc/pgsql/postgres/release18745.htm -share/doc/pgsql/postgres/release18749.htm -share/doc/pgsql/postgres/rules.htm -share/doc/pgsql/postgres/rules19478.htm -share/doc/pgsql/postgres/rules19639.htm -share/doc/pgsql/postgres/rules19770.htm -share/doc/pgsql/postgres/rules19784.htm -share/doc/pgsql/postgres/runtime.htm -share/doc/pgsql/postgres/security.htm -share/doc/pgsql/postgres/security17760.htm -share/doc/pgsql/postgres/security17795.htm -share/doc/pgsql/postgres/security17819.htm -share/doc/pgsql/postgres/security17840.htm -share/doc/pgsql/postgres/signals.htm -share/doc/pgsql/postgres/spi-spiconnect.htm -share/doc/pgsql/postgres/spi-spicopytuple.htm -share/doc/pgsql/postgres/spi-spiexec.htm -share/doc/pgsql/postgres/spi-spiexecp.htm -share/doc/pgsql/postgres/spi-spifinish.htm -share/doc/pgsql/postgres/spi-spifname.htm -share/doc/pgsql/postgres/spi-spifnumber.htm -share/doc/pgsql/postgres/spi-spigetbinval.htm -share/doc/pgsql/postgres/spi-spigetrelname.htm -share/doc/pgsql/postgres/spi-spigettype.htm -share/doc/pgsql/postgres/spi-spigettypeid.htm -share/doc/pgsql/postgres/spi-spigetvalue.htm -share/doc/pgsql/postgres/spi-spimodifytuple.htm -share/doc/pgsql/postgres/spi-spipalloc.htm -share/doc/pgsql/postgres/spi-spipfree.htm -share/doc/pgsql/postgres/spi-spiprepare.htm -share/doc/pgsql/postgres/spi-spirepalloc.htm -share/doc/pgsql/postgres/spi-spisaveplan.htm -share/doc/pgsql/postgres/spi.htm -share/doc/pgsql/postgres/spi20808.htm -share/doc/pgsql/postgres/spi21521.htm -share/doc/pgsql/postgres/spi21543.htm -share/doc/pgsql/postgres/spi21548.htm -share/doc/pgsql/postgres/sql-abort.htm -share/doc/pgsql/postgres/sql-altergroup.htm -share/doc/pgsql/postgres/sql-altertable.htm -share/doc/pgsql/postgres/sql-alteruser.htm -share/doc/pgsql/postgres/sql-begin.htm -share/doc/pgsql/postgres/sql-close.htm -share/doc/pgsql/postgres/sql-cluster.htm -share/doc/pgsql/postgres/sql-commands.htm -share/doc/pgsql/postgres/sql-comment.htm -share/doc/pgsql/postgres/sql-commit.htm -share/doc/pgsql/postgres/sql-copy.htm -share/doc/pgsql/postgres/sql-createaggregate.htm -share/doc/pgsql/postgres/sql-createconstraint.htm -share/doc/pgsql/postgres/sql-createdatabase.htm -share/doc/pgsql/postgres/sql-createfunction.htm -share/doc/pgsql/postgres/sql-creategroup.htm -share/doc/pgsql/postgres/sql-createindex.htm -share/doc/pgsql/postgres/sql-createlanguage.htm -share/doc/pgsql/postgres/sql-createoperator.htm -share/doc/pgsql/postgres/sql-createrule.htm -share/doc/pgsql/postgres/sql-createsequence.htm -share/doc/pgsql/postgres/sql-createtable.htm -share/doc/pgsql/postgres/sql-createtableas.htm -share/doc/pgsql/postgres/sql-createtrigger.htm -share/doc/pgsql/postgres/sql-createtype.htm -share/doc/pgsql/postgres/sql-createuser.htm -share/doc/pgsql/postgres/sql-createview.htm -share/doc/pgsql/postgres/sql-declare.htm -share/doc/pgsql/postgres/sql-delete.htm -share/doc/pgsql/postgres/sql-dropaggregate.htm -share/doc/pgsql/postgres/sql-dropdatabase.htm -share/doc/pgsql/postgres/sql-dropfunction.htm -share/doc/pgsql/postgres/sql-dropgroup.htm -share/doc/pgsql/postgres/sql-dropindex.htm -share/doc/pgsql/postgres/sql-droplanguage.htm -share/doc/pgsql/postgres/sql-dropoperator.htm -share/doc/pgsql/postgres/sql-droprule.htm -share/doc/pgsql/postgres/sql-dropsequence.htm -share/doc/pgsql/postgres/sql-droptable.htm -share/doc/pgsql/postgres/sql-droptrigger.htm -share/doc/pgsql/postgres/sql-droptype.htm -share/doc/pgsql/postgres/sql-dropuser.htm -share/doc/pgsql/postgres/sql-dropview.htm -share/doc/pgsql/postgres/sql-end.htm -share/doc/pgsql/postgres/sql-explain.htm -share/doc/pgsql/postgres/sql-fetch.htm -share/doc/pgsql/postgres/sql-grant.htm -share/doc/pgsql/postgres/sql-insert.htm -share/doc/pgsql/postgres/sql-language.htm -share/doc/pgsql/postgres/sql-listen.htm -share/doc/pgsql/postgres/sql-load.htm -share/doc/pgsql/postgres/sql-lock.htm -share/doc/pgsql/postgres/sql-move.htm -share/doc/pgsql/postgres/sql-notify.htm -share/doc/pgsql/postgres/sql-reindex.htm -share/doc/pgsql/postgres/sql-reset.htm -share/doc/pgsql/postgres/sql-revoke.htm -share/doc/pgsql/postgres/sql-rollback.htm -share/doc/pgsql/postgres/sql-select.htm -share/doc/pgsql/postgres/sql-selectinto.htm -share/doc/pgsql/postgres/sql-set.htm -share/doc/pgsql/postgres/sql-show.htm -share/doc/pgsql/postgres/sql-truncate.htm -share/doc/pgsql/postgres/sql-unlisten.htm -share/doc/pgsql/postgres/sql-update.htm -share/doc/pgsql/postgres/sql-vacuum.htm -share/doc/pgsql/postgres/sql.htm -share/doc/pgsql/postgres/sql26902.htm -share/doc/pgsql/postgres/sql27020.htm -share/doc/pgsql/postgres/start.htm -share/doc/pgsql/postgres/start27628.htm -share/doc/pgsql/postgres/start27650.htm -share/doc/pgsql/postgres/storage.htm -share/doc/pgsql/postgres/syntax.htm -share/doc/pgsql/postgres/syntax519.htm -share/doc/pgsql/postgres/syntax525.htm -share/doc/pgsql/postgres/syntax543.htm -share/doc/pgsql/postgres/syntax608.htm -share/doc/pgsql/postgres/syntax653.htm -share/doc/pgsql/postgres/syntax658.htm -share/doc/pgsql/postgres/terminology.htm -share/doc/pgsql/postgres/triggers.htm -share/doc/pgsql/postgres/triggers20224.htm -share/doc/pgsql/postgres/triggers20281.htm -share/doc/pgsql/postgres/triggers20290.htm -share/doc/pgsql/postgres/trouble.htm -share/doc/pgsql/postgres/trouble18031.htm -share/doc/pgsql/postgres/trouble18048.htm -share/doc/pgsql/postgres/typeconv.htm -share/doc/pgsql/postgres/typeconv3759.htm -share/doc/pgsql/postgres/typeconv3822.htm -share/doc/pgsql/postgres/typeconv3875.htm -share/doc/pgsql/postgres/typeconv3895.htm -share/doc/pgsql/postgres/utilities.htm -share/doc/pgsql/postgres/xaggr.htm -share/doc/pgsql/postgres/xfunc.htm -share/doc/pgsql/postgres/xfunc19011.htm -share/doc/pgsql/postgres/xfunc19017.htm -share/doc/pgsql/postgres/xfunc19022.htm -share/doc/pgsql/postgres/xfunc19254.htm -share/doc/pgsql/postgres/xindex.htm -share/doc/pgsql/postgres/xoper.htm -share/doc/pgsql/postgres/xplang.htm -share/doc/pgsql/postgres/xtypes.htm -share/doc/pgsql/postgres/y2k.htm -share/doc/pgsql/programmer/arch-pg.htm -share/doc/pgsql/programmer/biblio.htm -share/doc/pgsql/programmer/bki.htm -share/doc/pgsql/programmer/bki8058.htm -share/doc/pgsql/programmer/bki8142.htm -share/doc/pgsql/programmer/bki8166.htm -share/doc/pgsql/programmer/bki8227.htm -share/doc/pgsql/programmer/c1486.htm -share/doc/pgsql/programmer/c5391.htm -share/doc/pgsql/programmer/c53915433.htm -share/doc/pgsql/programmer/c53915451.htm -share/doc/pgsql/programmer/c53915593.htm -share/doc/pgsql/programmer/c53915605.htm -share/doc/pgsql/programmer/c53915625.htm -share/doc/pgsql/programmer/c53915630.htm -share/doc/pgsql/programmer/c6614.htm -share/doc/pgsql/programmer/catalogs.gif -share/doc/pgsql/programmer/compiler.htm -share/doc/pgsql/programmer/connections.gif -share/doc/pgsql/programmer/copyright.htm -share/doc/pgsql/programmer/cvs.htm -share/doc/pgsql/programmer/cvs8365.htm -share/doc/pgsql/programmer/cvs8421.htm -share/doc/pgsql/programmer/dfunc.htm -share/doc/pgsql/programmer/dfunc1679.htm -share/doc/pgsql/programmer/dfunc1689.htm -share/doc/pgsql/programmer/docguide.htm -share/doc/pgsql/programmer/docguide8647.htm -share/doc/pgsql/programmer/docguide8678.htm -share/doc/pgsql/programmer/docguide8769.htm -share/doc/pgsql/programmer/docguide8790.htm -share/doc/pgsql/programmer/docguide8816.htm -share/doc/pgsql/programmer/docguide8953.htm -share/doc/pgsql/programmer/docguide9291.htm -share/doc/pgsql/programmer/extend.htm -share/doc/pgsql/programmer/extend352.htm -share/doc/pgsql/programmer/extend364.htm -share/doc/pgsql/programmer/geqo-biblio.htm -share/doc/pgsql/programmer/geqo.htm -share/doc/pgsql/programmer/geqo7079.htm -share/doc/pgsql/programmer/geqo7102.htm -share/doc/pgsql/programmer/geqo7140.htm -share/doc/pgsql/programmer/gist.htm -share/doc/pgsql/programmer/index.html -share/doc/pgsql/programmer/intro-pg.htm -share/doc/pgsql/programmer/intro-pg167.htm -share/doc/pgsql/programmer/jdbc.htm -share/doc/pgsql/programmer/jdbc6398.htm -share/doc/pgsql/programmer/jdbc6410.htm -share/doc/pgsql/programmer/jdbc6416.htm -share/doc/pgsql/programmer/jdbc6424.htm -share/doc/pgsql/programmer/jdbc6442.htm -share/doc/pgsql/programmer/jdbc6479.htm -share/doc/pgsql/programmer/jdbc6510.htm -share/doc/pgsql/programmer/jdbc6515.htm -share/doc/pgsql/programmer/jdbc6519.htm -share/doc/pgsql/programmer/jdbc6545.htm -share/doc/pgsql/programmer/jdbc6575.htm -share/doc/pgsql/programmer/largeobjects.htm -share/doc/pgsql/programmer/largeobjects3114.htm -share/doc/pgsql/programmer/largeobjects3117.htm -share/doc/pgsql/programmer/largeobjects3196.htm -share/doc/pgsql/programmer/largeobjects3203.htm -share/doc/pgsql/programmer/largeobjects3207.htm -share/doc/pgsql/programmer/libpq-chapter.htm -share/doc/pgsql/programmer/libpq-chapter3419.htm -share/doc/pgsql/programmer/libpq-chapter3574.htm -share/doc/pgsql/programmer/libpq-chapter3721.htm -share/doc/pgsql/programmer/libpq-chapter3733.htm -share/doc/pgsql/programmer/libpq-chapter3771.htm -share/doc/pgsql/programmer/libpq-chapter3841.htm -share/doc/pgsql/programmer/libpq-chapter3854.htm -share/doc/pgsql/programmer/libpq-chapter3939.htm -share/doc/pgsql/programmer/libpq-envars.htm -share/doc/pgsql/programmer/libpq-threading.htm -share/doc/pgsql/programmer/libpqplusplus.htm -share/doc/pgsql/programmer/libpqplusplus4031.htm -share/doc/pgsql/programmer/libpqplusplus4041.htm -share/doc/pgsql/programmer/libpqplusplus4071.htm -share/doc/pgsql/programmer/libpqplusplus4176.htm -share/doc/pgsql/programmer/libpqplusplus4199.htm -share/doc/pgsql/programmer/lisp.htm -share/doc/pgsql/programmer/notation.htm -share/doc/pgsql/programmer/odbc.htm -share/doc/pgsql/programmer/odbc5922.htm -share/doc/pgsql/programmer/odbc5960.htm -share/doc/pgsql/programmer/odbc6133.htm -share/doc/pgsql/programmer/odbc6155.htm -share/doc/pgsql/programmer/overview.htm -share/doc/pgsql/programmer/overview6679.htm -share/doc/pgsql/programmer/overview6704.htm -share/doc/pgsql/programmer/overview6832.htm -share/doc/pgsql/programmer/overview6888.htm -share/doc/pgsql/programmer/overview6942.htm -share/doc/pgsql/programmer/page.htm -share/doc/pgsql/programmer/page8290.htm -share/doc/pgsql/programmer/page8304.htm -share/doc/pgsql/programmer/pg-options-dev.htm -share/doc/pgsql/programmer/pgeasy-chapter.htm -share/doc/pgsql/programmer/pgtcl-pgconndefaults.htm -share/doc/pgsql/programmer/pgtcl-pgconnect.htm -share/doc/pgsql/programmer/pgtcl-pgdisconnect.htm -share/doc/pgsql/programmer/pgtcl-pgexec.htm -share/doc/pgsql/programmer/pgtcl-pglisten.htm -share/doc/pgsql/programmer/pgtcl-pgloclose.htm -share/doc/pgsql/programmer/pgtcl-pglocreat.htm -share/doc/pgsql/programmer/pgtcl-pgloexport.htm -share/doc/pgsql/programmer/pgtcl-pgloimport.htm -share/doc/pgsql/programmer/pgtcl-pglolseek.htm -share/doc/pgsql/programmer/pgtcl-pgloopen.htm -share/doc/pgsql/programmer/pgtcl-pgloread.htm -share/doc/pgsql/programmer/pgtcl-pglotell.htm -share/doc/pgsql/programmer/pgtcl-pglounlink.htm -share/doc/pgsql/programmer/pgtcl-pglowrite.htm -share/doc/pgsql/programmer/pgtcl-pgresult.htm -share/doc/pgsql/programmer/pgtcl-pgselect.htm -share/doc/pgsql/programmer/pgtcl.htm -share/doc/pgsql/programmer/pgtcl4314.htm -share/doc/pgsql/programmer/pgtcl4318.htm -share/doc/pgsql/programmer/preface.htm -share/doc/pgsql/programmer/programmer.htm -share/doc/pgsql/programmer/programmer.html -share/doc/pgsql/programmer/protocol.htm -share/doc/pgsql/programmer/protocol7255.htm -share/doc/pgsql/programmer/protocol7410.htm -share/doc/pgsql/programmer/protocol7447.htm -share/doc/pgsql/programmer/rules.htm -share/doc/pgsql/programmer/rules1139.htm -share/doc/pgsql/programmer/rules1270.htm -share/doc/pgsql/programmer/rules1284.htm -share/doc/pgsql/programmer/rules978.htm -share/doc/pgsql/programmer/signals.htm -share/doc/pgsql/programmer/spi-spiconnect.htm -share/doc/pgsql/programmer/spi-spicopytuple.htm -share/doc/pgsql/programmer/spi-spiexec.htm -share/doc/pgsql/programmer/spi-spiexecp.htm -share/doc/pgsql/programmer/spi-spifinish.htm -share/doc/pgsql/programmer/spi-spifname.htm -share/doc/pgsql/programmer/spi-spifnumber.htm -share/doc/pgsql/programmer/spi-spigetbinval.htm -share/doc/pgsql/programmer/spi-spigetrelname.htm -share/doc/pgsql/programmer/spi-spigettype.htm -share/doc/pgsql/programmer/spi-spigettypeid.htm -share/doc/pgsql/programmer/spi-spigetvalue.htm -share/doc/pgsql/programmer/spi-spimodifytuple.htm -share/doc/pgsql/programmer/spi-spipalloc.htm -share/doc/pgsql/programmer/spi-spipfree.htm -share/doc/pgsql/programmer/spi-spiprepare.htm -share/doc/pgsql/programmer/spi-spirepalloc.htm -share/doc/pgsql/programmer/spi-spisaveplan.htm -share/doc/pgsql/programmer/spi.htm -share/doc/pgsql/programmer/spi2351.htm -share/doc/pgsql/programmer/spi3064.htm -share/doc/pgsql/programmer/spi3086.htm -share/doc/pgsql/programmer/spi3091.htm -share/doc/pgsql/programmer/terminology.htm -share/doc/pgsql/programmer/triggers.htm -share/doc/pgsql/programmer/triggers1767.htm -share/doc/pgsql/programmer/triggers1824.htm -share/doc/pgsql/programmer/triggers1833.htm -share/doc/pgsql/programmer/xaggr.htm -share/doc/pgsql/programmer/xfunc.htm -share/doc/pgsql/programmer/xfunc511.htm -share/doc/pgsql/programmer/xfunc517.htm -share/doc/pgsql/programmer/xfunc522.htm -share/doc/pgsql/programmer/xfunc754.htm -share/doc/pgsql/programmer/xindex.htm -share/doc/pgsql/programmer/xoper.htm -share/doc/pgsql/programmer/xplang.htm -share/doc/pgsql/programmer/xtypes.htm -share/doc/pgsql/programmer/y2k.htm -share/doc/pgsql/tutorial/about.htm -share/doc/pgsql/tutorial/advanced.htm -share/doc/pgsql/tutorial/advanced1511.htm -share/doc/pgsql/tutorial/advanced1533.htm -share/doc/pgsql/tutorial/arch.htm -share/doc/pgsql/tutorial/biblio.htm -share/doc/pgsql/tutorial/clientserver.gif -share/doc/pgsql/tutorial/copyright.htm -share/doc/pgsql/tutorial/f17.htm -share/doc/pgsql/tutorial/index.html -share/doc/pgsql/tutorial/intro.htm -share/doc/pgsql/tutorial/intro172.htm -share/doc/pgsql/tutorial/intro300.htm -share/doc/pgsql/tutorial/intro56.htm -share/doc/pgsql/tutorial/notation.htm -share/doc/pgsql/tutorial/query.htm -share/doc/pgsql/tutorial/query1340.htm -share/doc/pgsql/tutorial/query1356.htm -share/doc/pgsql/tutorial/query1378.htm -share/doc/pgsql/tutorial/query1387.htm -share/doc/pgsql/tutorial/query1405.htm -share/doc/pgsql/tutorial/query1413.htm -share/doc/pgsql/tutorial/query1432.htm -share/doc/pgsql/tutorial/query1437.htm -share/doc/pgsql/tutorial/query1444.htm -share/doc/pgsql/tutorial/sql-language.htm -share/doc/pgsql/tutorial/sql.htm -share/doc/pgsql/tutorial/sql490.htm -share/doc/pgsql/tutorial/sql608.htm -share/doc/pgsql/tutorial/start.htm -share/doc/pgsql/tutorial/start1216.htm -share/doc/pgsql/tutorial/start1238.htm -share/doc/pgsql/tutorial/terminology.htm -share/doc/pgsql/tutorial/tutorial.htm -share/doc/pgsql/tutorial/tutorial.html -share/doc/pgsql/tutorial/y2k.htm -share/doc/pgsql/user/about.htm -share/doc/pgsql/user/app-createdb.htm -share/doc/pgsql/user/app-createlang.htm -share/doc/pgsql/user/app-createuser.htm -share/doc/pgsql/user/app-dropdb.htm -share/doc/pgsql/user/app-droplang.htm -share/doc/pgsql/user/app-dropuser.htm -share/doc/pgsql/user/app-ecpg.htm -share/doc/pgsql/user/app-initdb.htm -share/doc/pgsql/user/app-initlocation.htm -share/doc/pgsql/user/app-ipcclean.htm -share/doc/pgsql/user/app-pg-passwd.htm -share/doc/pgsql/user/app-pg-upgrade.htm -share/doc/pgsql/user/app-pgaccess.htm -share/doc/pgsql/user/app-pgadmin.htm -share/doc/pgsql/user/app-pgctl.htm -share/doc/pgsql/user/app-pgdump.htm -share/doc/pgsql/user/app-pgdumpall.htm -share/doc/pgsql/user/app-pgtclsh.htm -share/doc/pgsql/user/app-pgtksh.htm -share/doc/pgsql/user/app-postgres.htm -share/doc/pgsql/user/app-postmaster.htm -share/doc/pgsql/user/app-psql.htm -share/doc/pgsql/user/app-vacuumdb.htm -share/doc/pgsql/user/applications.htm -share/doc/pgsql/user/arrays.htm -share/doc/pgsql/user/biblio.htm -share/doc/pgsql/user/c4087.htm -share/doc/pgsql/user/c40874113.htm -share/doc/pgsql/user/c40874340.htm -share/doc/pgsql/user/c4358.htm -share/doc/pgsql/user/c43584371.htm -share/doc/pgsql/user/c4884.htm -share/doc/pgsql/user/c4929.htm -share/doc/pgsql/user/c49294939.htm -share/doc/pgsql/user/c49294943.htm -share/doc/pgsql/user/copyright.htm -share/doc/pgsql/user/datatype.htm -share/doc/pgsql/user/datatype1034.htm -share/doc/pgsql/user/datatype1066.htm -share/doc/pgsql/user/datatype1130.htm -share/doc/pgsql/user/datatype1645.htm -share/doc/pgsql/user/datatype1677.htm -share/doc/pgsql/user/datatype1916.htm -share/doc/pgsql/user/datetime-appendix.htm -share/doc/pgsql/user/datetime-appendix16981.htm -share/doc/pgsql/user/environ.htm -share/doc/pgsql/user/functions.htm -share/doc/pgsql/user/functions2589.htm -share/doc/pgsql/user/functions2729.htm -share/doc/pgsql/user/functions2872.htm -share/doc/pgsql/user/functions2972.htm -share/doc/pgsql/user/functions3439.htm -share/doc/pgsql/user/functions3637.htm -share/doc/pgsql/user/index.html -share/doc/pgsql/user/indices.htm -share/doc/pgsql/user/inherit.htm -share/doc/pgsql/user/intro.htm -share/doc/pgsql/user/intro172.htm -share/doc/pgsql/user/intro300.htm -share/doc/pgsql/user/intro56.htm -share/doc/pgsql/user/manage.htm -share/doc/pgsql/user/manage4810.htm -share/doc/pgsql/user/manage4834.htm -share/doc/pgsql/user/manage4876.htm -share/doc/pgsql/user/mvcc.htm -share/doc/pgsql/user/mvcc4564.htm -share/doc/pgsql/user/mvcc4617.htm -share/doc/pgsql/user/mvcc4629.htm -share/doc/pgsql/user/mvcc4642.htm -share/doc/pgsql/user/mvcc4719.htm -share/doc/pgsql/user/mvcc4740.htm -share/doc/pgsql/user/notation.htm -share/doc/pgsql/user/operators.htm -share/doc/pgsql/user/operators2123.htm -share/doc/pgsql/user/operators2194.htm -share/doc/pgsql/user/operators2263.htm -share/doc/pgsql/user/operators2373.htm -share/doc/pgsql/user/operators2432.htm -share/doc/pgsql/user/operators2486.htm -share/doc/pgsql/user/partial-index.htm -share/doc/pgsql/user/pl-perl.htm -share/doc/pgsql/user/pl-perl4529.htm -share/doc/pgsql/user/pl-perl4538.htm -share/doc/pgsql/user/preface.htm -share/doc/pgsql/user/sql-abort.htm -share/doc/pgsql/user/sql-altergroup.htm -share/doc/pgsql/user/sql-altertable.htm -share/doc/pgsql/user/sql-alteruser.htm -share/doc/pgsql/user/sql-begin.htm -share/doc/pgsql/user/sql-close.htm -share/doc/pgsql/user/sql-cluster.htm -share/doc/pgsql/user/sql-commands.htm -share/doc/pgsql/user/sql-comment.htm -share/doc/pgsql/user/sql-commit.htm -share/doc/pgsql/user/sql-copy.htm -share/doc/pgsql/user/sql-createaggregate.htm -share/doc/pgsql/user/sql-createconstraint.htm -share/doc/pgsql/user/sql-createdatabase.htm -share/doc/pgsql/user/sql-createfunction.htm -share/doc/pgsql/user/sql-creategroup.htm -share/doc/pgsql/user/sql-createindex.htm -share/doc/pgsql/user/sql-createlanguage.htm -share/doc/pgsql/user/sql-createoperator.htm -share/doc/pgsql/user/sql-createrule.htm -share/doc/pgsql/user/sql-createsequence.htm -share/doc/pgsql/user/sql-createtable.htm -share/doc/pgsql/user/sql-createtableas.htm -share/doc/pgsql/user/sql-createtrigger.htm -share/doc/pgsql/user/sql-createtype.htm -share/doc/pgsql/user/sql-createuser.htm -share/doc/pgsql/user/sql-createview.htm -share/doc/pgsql/user/sql-declare.htm -share/doc/pgsql/user/sql-delete.htm -share/doc/pgsql/user/sql-dropaggregate.htm -share/doc/pgsql/user/sql-dropdatabase.htm -share/doc/pgsql/user/sql-dropfunction.htm -share/doc/pgsql/user/sql-dropgroup.htm -share/doc/pgsql/user/sql-dropindex.htm -share/doc/pgsql/user/sql-droplanguage.htm -share/doc/pgsql/user/sql-dropoperator.htm -share/doc/pgsql/user/sql-droprule.htm -share/doc/pgsql/user/sql-dropsequence.htm -share/doc/pgsql/user/sql-droptable.htm -share/doc/pgsql/user/sql-droptrigger.htm -share/doc/pgsql/user/sql-droptype.htm -share/doc/pgsql/user/sql-dropuser.htm -share/doc/pgsql/user/sql-dropview.htm -share/doc/pgsql/user/sql-end.htm -share/doc/pgsql/user/sql-explain.htm -share/doc/pgsql/user/sql-fetch.htm -share/doc/pgsql/user/sql-grant.htm -share/doc/pgsql/user/sql-insert.htm -share/doc/pgsql/user/sql-listen.htm -share/doc/pgsql/user/sql-load.htm -share/doc/pgsql/user/sql-lock.htm -share/doc/pgsql/user/sql-move.htm -share/doc/pgsql/user/sql-notify.htm -share/doc/pgsql/user/sql-reindex.htm -share/doc/pgsql/user/sql-reset.htm -share/doc/pgsql/user/sql-revoke.htm -share/doc/pgsql/user/sql-rollback.htm -share/doc/pgsql/user/sql-select.htm -share/doc/pgsql/user/sql-selectinto.htm -share/doc/pgsql/user/sql-set.htm -share/doc/pgsql/user/sql-show.htm -share/doc/pgsql/user/sql-truncate.htm -share/doc/pgsql/user/sql-unlisten.htm -share/doc/pgsql/user/sql-update.htm -share/doc/pgsql/user/sql-vacuum.htm -share/doc/pgsql/user/storage.htm -share/doc/pgsql/user/syntax.htm -share/doc/pgsql/user/syntax515.htm -share/doc/pgsql/user/syntax521.htm -share/doc/pgsql/user/syntax539.htm -share/doc/pgsql/user/syntax604.htm -share/doc/pgsql/user/syntax649.htm -share/doc/pgsql/user/syntax654.htm -share/doc/pgsql/user/terminology.htm -share/doc/pgsql/user/typeconv.htm -share/doc/pgsql/user/typeconv3755.htm -share/doc/pgsql/user/typeconv3818.htm -share/doc/pgsql/user/typeconv3871.htm -share/doc/pgsql/user/typeconv3891.htm -share/doc/pgsql/user/user.htm -share/doc/pgsql/user/user.html -share/doc/pgsql/user/utilities.htm -share/doc/pgsql/user/y2k.htm -@dirrm share/doc/pgsql/admin -@dirrm share/doc/pgsql/postgres -@dirrm share/doc/pgsql/programmer -@dirrm share/doc/pgsql/tutorial -@dirrm share/doc/pgsql/user -@dirrm share/doc/pgsql diff --git a/databases/postgresql-devel/pkg-plist.jdbc b/databases/postgresql-devel/pkg-plist.jdbc deleted file mode 100644 index bef5d75506b4..000000000000 --- a/databases/postgresql-devel/pkg-plist.jdbc +++ /dev/null @@ -1,13 +0,0 @@ -share/examples/pgsql/jdbc/ImageViewer.java -share/examples/pgsql/jdbc/basic.java -share/examples/pgsql/jdbc/blobtest.java -share/examples/pgsql/jdbc/datestyle.java -share/examples/pgsql/jdbc/metadata.java -share/examples/pgsql/jdbc/psql.java -share/examples/pgsql/jdbc/threadsafe.java -share/examples/pgsql/jdbc/README -share/examples/pgsql/jdbc/README_6.3 -@dirrm share/examples/pgsql/jdbc -@dirrm share/examples/pgsql -share/java/classes/postgresql.jar -@unexec rmdir %D/share/java 2>/dev/null || true diff --git a/databases/postgresql-devel/pkg-plist.tcl b/databases/postgresql-devel/pkg-plist.tcl deleted file mode 100644 index b01eaf1571ed..000000000000 --- a/databases/postgresql-devel/pkg-plist.tcl +++ /dev/null @@ -1,141 +0,0 @@ -pgsql/bin/pgaccess -pgsql/bin/pgtclsh -pgsql/bin/pgtksh -pgsql/include/libpgtcl.h -pgsql/lib/libpgtcl.a -pgsql/lib/libpgtcl.so -pgsql/lib/libpgtcl.so.2 -pgsql/lib/pltcl.so -pgsql/pgaccess/images/icon_button.gif -pgsql/pgaccess/images/icon_checkbutton.gif -pgsql/pgaccess/images/icon_entry.gif -pgsql/pgaccess/images/icon_frame.gif -pgsql/pgaccess/images/icon_label.gif -pgsql/pgaccess/images/icon_listbox.gif -pgsql/pgaccess/images/icon_query.gif -pgsql/pgaccess/images/icon_radiobutton.gif -pgsql/pgaccess/images/icon_text.gif -pgsql/pgaccess/lib/database.tcl -pgsql/pgaccess/lib/forms.tcl -pgsql/pgaccess/lib/functions.tcl -pgsql/pgaccess/lib/help/abort.hlp -pgsql/pgaccess/lib/help/add_records.hlp -pgsql/pgaccess/lib/help/alter_table.hlp -pgsql/pgaccess/lib/help/alter_user.hlp -pgsql/pgaccess/lib/help/author.hlp -pgsql/pgaccess/lib/help/begin.hlp -pgsql/pgaccess/lib/help/close.hlp -pgsql/pgaccess/lib/help/cluster.hlp -pgsql/pgaccess/lib/help/commit.hlp -pgsql/pgaccess/lib/help/copy.hlp -pgsql/pgaccess/lib/help/copyrights.hlp -pgsql/pgaccess/lib/help/create_aggregate.hlp -pgsql/pgaccess/lib/help/create_database.hlp -pgsql/pgaccess/lib/help/create_function.hlp -pgsql/pgaccess/lib/help/create_index.hlp -pgsql/pgaccess/lib/help/create_language.hlp -pgsql/pgaccess/lib/help/create_operator.hlp -pgsql/pgaccess/lib/help/create_rule.hlp -pgsql/pgaccess/lib/help/create_sequence.hlp -pgsql/pgaccess/lib/help/create_table.hlp -pgsql/pgaccess/lib/help/create_table_as.hlp -pgsql/pgaccess/lib/help/create_trigger.hlp -pgsql/pgaccess/lib/help/create_type.hlp -pgsql/pgaccess/lib/help/create_user.hlp -pgsql/pgaccess/lib/help/create_view.hlp -pgsql/pgaccess/lib/help/data_types.hlp -pgsql/pgaccess/lib/help/datefunc.hlp -pgsql/pgaccess/lib/help/declare.hlp -pgsql/pgaccess/lib/help/delete.hlp -pgsql/pgaccess/lib/help/drop_aggregate.hlp -pgsql/pgaccess/lib/help/drop_database.hlp -pgsql/pgaccess/lib/help/drop_function.hlp -pgsql/pgaccess/lib/help/drop_index.hlp -pgsql/pgaccess/lib/help/drop_language.hlp -pgsql/pgaccess/lib/help/drop_operator.hlp -pgsql/pgaccess/lib/help/drop_rule.hlp -pgsql/pgaccess/lib/help/drop_sequence.hlp -pgsql/pgaccess/lib/help/drop_table.hlp -pgsql/pgaccess/lib/help/drop_trigger.hlp -pgsql/pgaccess/lib/help/drop_type.hlp -pgsql/pgaccess/lib/help/drop_user.hlp -pgsql/pgaccess/lib/help/drop_view.hlp -pgsql/pgaccess/lib/help/explain.hlp -pgsql/pgaccess/lib/help/fetch.hlp -pgsql/pgaccess/lib/help/form_design.hlp -pgsql/pgaccess/lib/help/forms.hlp -pgsql/pgaccess/lib/help/functions.hlp -pgsql/pgaccess/lib/help/geomfunc.hlp -pgsql/pgaccess/lib/help/grant.hlp -pgsql/pgaccess/lib/help/history.hlp -pgsql/pgaccess/lib/help/index.hlp -pgsql/pgaccess/lib/help/inheritance.hlp -pgsql/pgaccess/lib/help/insert.hlp -pgsql/pgaccess/lib/help/ipv4func.hlp -pgsql/pgaccess/lib/help/isolation.hlp -pgsql/pgaccess/lib/help/keywords.hlp -pgsql/pgaccess/lib/help/listen.hlp -pgsql/pgaccess/lib/help/load.hlp -pgsql/pgaccess/lib/help/lock.hlp -pgsql/pgaccess/lib/help/mathfunc.hlp -pgsql/pgaccess/lib/help/move.hlp -pgsql/pgaccess/lib/help/mvcc.hlp -pgsql/pgaccess/lib/help/new_query.hlp -pgsql/pgaccess/lib/help/new_table.hlp -pgsql/pgaccess/lib/help/notify.hlp -pgsql/pgaccess/lib/help/open_query.hlp -pgsql/pgaccess/lib/help/open_table.hlp -pgsql/pgaccess/lib/help/pgfunctions.hlp -pgsql/pgaccess/lib/help/postgresql.hlp -pgsql/pgaccess/lib/help/queries.hlp -pgsql/pgaccess/lib/help/reports.hlp -pgsql/pgaccess/lib/help/reset.hlp -pgsql/pgaccess/lib/help/revoke.hlp -pgsql/pgaccess/lib/help/rollback.hlp -pgsql/pgaccess/lib/help/schema.hlp -pgsql/pgaccess/lib/help/scripts.hlp -pgsql/pgaccess/lib/help/select.hlp -pgsql/pgaccess/lib/help/select_into.hlp -pgsql/pgaccess/lib/help/sequences.hlp -pgsql/pgaccess/lib/help/set.hlp -pgsql/pgaccess/lib/help/show.hlp -pgsql/pgaccess/lib/help/sql_guide.hlp -pgsql/pgaccess/lib/help/sqlfunc.hlp -pgsql/pgaccess/lib/help/stringfunc.hlp -pgsql/pgaccess/lib/help/tables.hlp -pgsql/pgaccess/lib/help/unlisten.hlp -pgsql/pgaccess/lib/help/update.hlp -pgsql/pgaccess/lib/help/users.hlp -pgsql/pgaccess/lib/help/vacuum.hlp -pgsql/pgaccess/lib/help/view_table_structure.hlp -pgsql/pgaccess/lib/help/views.hlp -pgsql/pgaccess/lib/help/visual_designer.hlp -pgsql/pgaccess/lib/help/y2k.hlp -pgsql/pgaccess/lib/help.tcl -pgsql/pgaccess/lib/languages/czech -pgsql/pgaccess/lib/languages/deutsch -pgsql/pgaccess/lib/languages/francais -pgsql/pgaccess/lib/languages/italiano -pgsql/pgaccess/lib/languages/magyar -pgsql/pgaccess/lib/languages/portugues -pgsql/pgaccess/lib/languages/romana -pgsql/pgaccess/lib/languages/russian.koi8r -pgsql/pgaccess/lib/languages/russian_win -pgsql/pgaccess/lib/languages/spanish -pgsql/pgaccess/lib/mainlib.tcl -pgsql/pgaccess/lib/preferences.tcl -pgsql/pgaccess/lib/queries.tcl -pgsql/pgaccess/lib/reports.tcl -pgsql/pgaccess/lib/schema.tcl -pgsql/pgaccess/lib/scripts.tcl -pgsql/pgaccess/lib/sequences.tcl -pgsql/pgaccess/lib/tables.tcl -pgsql/pgaccess/lib/users.tcl -pgsql/pgaccess/lib/views.tcl -pgsql/pgaccess/lib/visualqb.tcl -pgsql/pgaccess/main.tcl -@dirrm pgsql/pgaccess/images -@dirrm pgsql/pgaccess/lib/help -@dirrm pgsql/pgaccess/lib/languages -@dirrm pgsql/pgaccess/lib -@dirrm pgsql/pgaccess diff --git a/databases/postgresql-devel/scripts/configure b/databases/postgresql-devel/scripts/configure deleted file mode 100644 index 4a92ee450ebe..000000000000 --- a/databases/postgresql-devel/scripts/configure +++ /dev/null @@ -1,7 +0,0 @@ -#! /bin/sh - -# $FreeBSD$ - -cd $WRKSRC || exit 1 - -perl -pi -e "s=!!JAVA_HOME!!=${JAVA_HOME}=; s=!!PREFIX!!=${PREFIX}=" ${WRKSRC}/interfaces/jdbc/Makefile diff --git a/databases/postgresql-devel/scripts/createuser b/databases/postgresql-devel/scripts/createuser deleted file mode 100644 index 2abe201e7a4b..000000000000 --- a/databases/postgresql-devel/scripts/createuser +++ /dev/null @@ -1,50 +0,0 @@ -#!/usr/bin/perl -# - -eval '(exit $?0)' && eval 'exec /usr/bin/perl -S $0 ${1+"$@"}' -& eval 'exec /usr/bin/perl -S $0 $argv:q' -if 0; - -if( $> ) { - print "\nYou must be root to run this step!\n\n"; - exit 1; -} - -if( getpwnam( "pgsql" ) ) { - ( $null, $null, $pgUID ) = getpwnam( "pgsql" ); -} else { - $pgUID = 70; - while( getpwuid( $pgUID ) ) { - $pgUID++; - } -} - -if( getgrnam( "pgsql" ) ) { - ( $null, $null, $pgGID ) = getgrnam( "pgsql" ); -} else { - $pgGID = 70; - while( getgrgid( $pgGID ) ) { - $pgGID++; - } - &append_file( "/etc/group", "pgsql:*:$pgGID:" ); -} - -print "pgsql user using uid $pgUID\n"; -print "pgsql user using gid $pgGID\n"; - -system( "/usr/bin/chpass -a \"pgsql:*:$pgUID:$pgGID\:\:0:0:PostgreSQL pseudo-user:$ENV{'PREFIX'}/pgsql:/bin/sh\"" ); - -sub append_file { - local($file,@list) = @_; - local($LOCK_EX) = 2; - local($LOCK_NB) = 4; - local($LOCK_UN) = 8; - - open(F, ">> $file") || die "$file: $!\n"; - while( ! flock( F, $LOCK_EX | $LOCK_NB ) ) { - exit 1; - } - print F join( "\n", @list) . "\n"; - close F; - flock( F, $LOCK_UN ); -} diff --git a/databases/postgresql73-server/Makefile b/databases/postgresql73-server/Makefile deleted file mode 100644 index 94aa22cad135..000000000000 --- a/databases/postgresql73-server/Makefile +++ /dev/null @@ -1,259 +0,0 @@ -# New ports collection makefile for: PostgreSQL -# Date created: November 13, 1998 -# Whom: Marc G. Fournier <scrappy@FreeBSD.org> -# -# $FreeBSD$ -# - -PORTNAME= postgresql -PORTVERSION= 7.0.2 -CATEGORIES= databases -MASTER_SITES= ftp://ftp.postgresql.org/pub/%SUBDIR%/ \ - ftp://ftp.de.postgresql.org/%SUBDIR%/ \ - ftp://ftp.iodynamics.com/pub/mirror/postgresql/%SUBDIR%/ \ - ftp://ftp.digex.net/pub/packages/database/postgresql/%SUBDIR%/ \ - ftp://ftp.sunet.se/pub/unix/databases/relational/postgresql/%SUBDIR%/ -MASTER_SITE_SUBDIR= source/v${PORTVERSION} -DISTFILES= ${PORTNAME}-${PORTVERSION}.base${EXTRACT_SUFX} \ - ${PORTNAME}-${PORTVERSION}.support${EXTRACT_SUFX} \ - ${PORTNAME}-${PORTVERSION}.docs${EXTRACT_SUFX} -# ${PORTNAME}-${PORTVERSION}.test${EXTRACT_SUFX} -DIST_SUBDIR= postgresql - -MAINTAINER= andreas@FreeBSD.org - -.if ${MACHINE_ARCH} == "alpha" -BROKEN= doesn\'t build on the alpha yet -.endif - -Y2K= http://www.postgresql.org/y2k.html - -INSTALLS_SHLIB= YES -LDCONFIG_DIRS= %%PREFIX%%/pgsql/lib - -# if you want to use the tcl/tk frontend pgaccess, then you need to build -# postgresql with tcl support by typing: make -DWITH_TCL -.if defined(WITH_TCL) -TCL_INCDIR= ${LOCALBASE}/include/tcl8.3 -TK_INCDIR= ${LOCALBASE}/include/tk8.3 -MAKE_ENV= TCL_INCDIR=${TCL_INCDIR} -CONFIGURE_ENV= WISH=${LOCALBASE}/bin/wish8.3 -LIB_DEPENDS= tcl83.1:${PORTSDIR}/lang/tcl83 \ - tk83.1:${PORTSDIR}/x11-toolkits/tk83 -CONFIGURE_TCL= --with-tcl --with-tclconfig="${LOCALBASE}/lib/tcl8.3 ${LOCALBASE}/lib/tk8.3" -.endif - -# if you want to disable the multibyte support, type: -# make -DWITHOUT_MULTIBYTE -# -# if you want to set the default encoding for the multibyte support, type: -# make DEFAULT_ENCODING=<encoding> -# where <encoding> is one of these: -# SQL_ASCII LATIN1 LATIN2 LATIN3 LATIN4 LATIN5 -# EUC_JP EUC_CN EUC_KR EUC_TW KOI8 -# UNICODE MULE_INTERNAL WIN ALT -.if defined(WITHOUT_MULTIBYTE) -CONFIGURE_MULTIBYTE= # none -.elif defined(DEFAULT_ENCODING) -CONFIGURE_MULTIBYTE= --enable-multibyte="${DEFAULT_ENCODING}" -.else -CONFIGURE_MULTIBYTE= --enable-multibyte -.endif - -# if you want jdbc, type make -DWITH_JDBC -# Honors JAVA_HOME if you have it set, and don't want the dependency. -.if defined(WITH_JDBC) -JAVA_HOME?= ${LOCALBASE}/jdk1.1.8 -BUILD_DEPENDS= ${JAVA_HOME}/bin/javac:${PORTSDIR}/java/jdk -SCRIPTS_ENV+= JAVA_HOME=${JAVA_HOME} -.endif - -WRKSRC= ${WRKDIR}/${DISTNAME}/src -DOCDIR= ${WRKDIR}/${DISTNAME}/doc - -USE_GMAKE= YES -MAKEFILE= GNUmakefile -HAS_CONFIGURE= YES -CONFIGURE_ARGS= --prefix=${PREFIX}/pgsql \ - --enable-locale \ - --with-template=`uname -s | ${TR} '[A-Z]' '[a-z]'` \ - --with-includes="${PREFIX}/include ${TCL_INCDIR} ${TK_INCDIR}" \ - ${CONFIGURE_TCL} \ - ${CONFIGURE_MULTIBYTE} \ - --with-libraries=${PREFIX}/lib - -MAN1= createdb.1 createlang.1 createuser.1 dropdb.1 droplang.1 \ - dropuser.1 ecpg.1 initdb.1 initlocation.1 ipcclean.1 pg_ctl.1 \ - pg_dump.1 pg_dumpall.1 pg_passwd.1 pg_upgrade.1 pgaccess.1 \ - pgadmin.1 pgtclsh.1 pgtksh.1 postgres.1 postmaster.1 psql.1 \ - vacuumdb.1 -MANL= abort.l alter_group.l alter_table.l alter_user.l \ - begin.l close.l cluster.l comment.l commit.l copy.l \ - create_aggregate.l create_constraint_trigger.l \ - create_database.l create_function.l create_group.l \ - create_index.l create_language.l create_operator.l \ - create_rule.l create_sequence.l create_table.l \ - create_table_as.l create_trigger.l create_type.l \ - create_user.l create_view.l declare.l delete.l \ - drop_aggregate.l drop_database.l drop_function.l \ - drop_group.l drop_index.l drop_language.l \ - drop_operator.l drop_rule.l drop_sequence.l \ - drop_table.l drop_trigger.l drop_type.l drop_user.l \ - drop_view.l end.l explain.l fetch.l grant.l insert.l \ - listen.l load.l lock.l move.l notify.l reindex.l \ - reset.l revoke.l rollback.l select.l select_into.l \ - set.l show.l truncate.l unlisten.l update.l vacuum.l - -MANPREFIX= ${PREFIX}/pgsql - -pre-fetch: - @${ECHO_MSG} "To install and run postgresql you need to compile kernel with:" - @${ECHO_MSG} " options \"SYSVSHM, SYSVSEM, SYSVMSG\"" -.if !defined(WITH_TCL) - @${ECHO_MSG} "To build the \"PostgreSQL to Tcl interface library\", libpgtcl, type:" - @${ECHO_MSG} " make -DWITH_TCL" -.else - @${ECHO_MSG} "Building PostgreSQL with \"libpgtcl\"." -.endif -.if !defined(WITHOUT_MULTIBYTE) - @${ECHO_MSG} "To disable multibyte support, type:" - @${ECHO_MSG} " make -DWITHOUT_MULTIBYTE" -.if !defined(DEFAULT_ENCODING) - @${ECHO_MSG} "To set the default encoding for the multibyte support, type:" - @${ECHO_MSG} " make DEFAULT_ENCODING=<encoding>" - @${ECHO_MSG} "where <encoding> is one of these:" - @${ECHO_MSG} " SQL_ASCII LATIN1 LATIN2 LATIN3 LATIN4 LATIN5" - @${ECHO_MSG} " EUC_JP EUC_CN EUC_KR EUC_TW KOI8" - @${ECHO_MSG} " UNICODE MULE_INTERNAL WIN ALT" -.else - @${ECHO_MSG} "The default encoding is '${DEFAULT_ENCODING}'." -.endif -.else - @${ECHO_MSG} "Building PostgreSQL without multibyte support." -.endif -.if !defined(WITH_JDBC) - @${ECHO_MSG} "To build Java (JDBC) support, type:" - @${ECHO_MSG} " make -DWITH_JDBC" -.else - @${ECHO_MSG} "Building PostgreSQL with \"postgresql.jar\"." -.endif - -post-patch: - @ ${MV} ${WRKSRC}/template/freebsd ${WRKSRC}/template/freebsd.orig - @ ${SED} -e 's#CFLAGS:-O2 -m486 -pipe#CFLAGS:${CFLAGS}#' \ - -e 's#USE_LOCALE:no#USE_LOCALE:yes#' \ - ${WRKSRC}/template/freebsd.orig >> ${WRKSRC}/template/freebsd - @ ${MV} ${WRKSRC}/Makefile.global.in ${WRKSRC}/Makefile.global.in.old - @ ${SED} -e 's=!!PREFIX!!=${PREFIX}=g' \ - ${WRKSRC}/Makefile.global.in.old \ - >> ${WRKSRC}/Makefile.global.in - -post-build: -.if defined(WITH_JDBC) - @ cd ${WRKSRC}/interfaces/jdbc && ${GMAKE} -.if !defined(NOPORTDOCS) - @ cd ${WRKSRC}/interfaces/jdbc && ${GMAKE} examples -.endif -.endif - @ ${ECHO} "------------------------------------------------------------" - @ ${ECHO} "Dump existing databases, before installing new db version !!" - @ ${ECHO} "Detailed instructions, see" - @ ${ECHO} "${WRKDIR}/${DISTNAME}/INSTALL" - @ ${ECHO} "------------------------------------------------------------" - -pre-install: -.if defined(PACKAGE_BUILDING) - ${RM} -rf ${PREFIX}/pgsql -.endif - @ ${MKDIR} ${PREFIX}/pgsql - @ ${SETENV} ${MAKE_ENV} perl ${SCRIPTDIR}/createuser - -post-install: -.if defined(NOPORTDOCS) - @ ( cd ${DOCDIR}; ${GMAKE} man ) -.else - @ ( cd ${DOCDIR}; ${GMAKE} install ) -.endif - @ if [ ! -f ${PREFIX}/pgsql/.profile ]; then \ - ${ECHO} "PATH=${PATH}:${PREFIX}/pgsql/bin" \ - > ${PREFIX}/pgsql/.profile; \ - ${ECHO} "MANPATH=${MANPATH}:${PREFIX}/pgsql/man" \ - >> ${PREFIX}/pgsql/.profile; \ - ${ECHO} "PGLIB=${PREFIX}/pgsql/lib" \ - >> ${PREFIX}/pgsql/.profile; \ - ${ECHO} "# note: PGDATA overwrites the -D startup option" \ - >> ${PREFIX}/pgsql/.profile; \ - ${ECHO} "PGDATA=${PREFIX}/pgsql/data" \ - >> ${PREFIX}/pgsql/.profile; \ - ${ECHO} "DISPLAY=:0" \ - >> ${PREFIX}/pgsql/.profile; \ - ${ECHO} "export PATH MANPATH PGLIB PGDATA DISPLAY" \ - >> ${PREFIX}/pgsql/.profile; \ - ${ECHO} "# if you want to make regression tests use this TZ" \ - >> ${PREFIX}/pgsql/.profile; \ - ${ECHO} "#TZ=PST8PDT" \ - >> ${PREFIX}/pgsql/.profile; \ - ${ECHO} "#export TZ" \ - >> ${PREFIX}/pgsql/.profile; \ - fi - @ ${CHOWN} -R pgsql:pgsql ${PREFIX}/pgsql - @ ${ECHO} 'Initializing PostgreSQL Databases - this may take a few minutes...' - @ ${SETENV} OBJFORMAT=${PORTOBJFORMAT} ${LDCONFIG} -m ${PREFIX}/pgsql/lib - @ su -l pgsql -c 'PATH=${PREFIX}/pgsql/bin:${PATH} LD_LIBRARY_PATH=${PREFIX}/pgsql/lib ${PREFIX}/pgsql/bin/initdb --pglib=${PREFIX}/pgsql/lib --pgdata=${PREFIX}/pgsql/data' - @ ${SED} -e "s=!!PREFIX!!=${PREFIX}=g" < ${FILESDIR}/pgsql.sh.tmpl \ - > ${PREFIX}/etc/rc.d/pgsql.sh - @ ${CHMOD} 554 ${PREFIX}/etc/rc.d/pgsql.sh - @ ${CHOWN} root.pgsql ${PREFIX}/etc/rc.d/pgsql.sh - @ ${INSTALL_DATA} ${FILESDIR}/post-install-notes ${PREFIX}/pgsql -.if defined(WITHOUT_MULTIBYTE) - @${CP} ${TMPPLIST} ${TMPPLIST}.nomulti - @${GREP} -v pgsql/bin/pg_encoding ${TMPPLIST}.nomulti > ${TMPPLIST} -.endif -.if defined(WITH_TCL) - @${CP} ${TMPPLIST} ${TMPPLIST}.notcl - @${CAT} ${PKGDIR}/PLIST.tcl ${TMPPLIST}.notcl > ${TMPPLIST} - @${RM} ${TMPPLIST}.notcl -.endif -.if defined(WITH_JDBC) - @ ${MKDIR} -m 0555 ${PREFIX}/share/java/classes - @ ${INSTALL_DATA} ${WRKSRC}/interfaces/jdbc/postgresql.jar \ - ${PREFIX}/share/java/classes/postgresql.jar - @ ${ECHO_MSG} "---------------------------------------------------------" - @ ${ECHO_MSG} "Putting postgresql.jar in" - @ ${ECHO_MSG} "${PREFIX}/share/java/classes/postgresql.jar" - @ ${ECHO_MSG} "Add this to your CLASSPATH!" - @ ${ECHO_MSG} "ALSO NOTE: path inside jar file modified from 6.5.x:" - @ ${ECHO_MSG} " 'postgresql.*' -> 'org.postgresql.*'!" - @ ${ECHO_MSG} "You will need to modify you applications' props files." - @ ${ECHO_MSG} "---------------------------------------------------------" - @ ${CAT} ${PKGDIR}/PLIST.jdbc >> ${TMPPLIST} -.if !defined(NOPORTDOCS) - @ ${MKDIR} -m 0555 ${PREFIX}/share/examples/pgsql/jdbc - @ ${INSTALL_DATA} ${WRKSRC}/interfaces/jdbc/example/*java \ - ${PREFIX}/share/examples/pgsql/jdbc - @ ${INSTALL_DATA} ${WRKSRC}/interfaces/jdbc/README* \ - ${PREFIX}/share/examples/pgsql/jdbc - @ ${ECHO_MSG} "---------------------------------------------------------" - @ ${ECHO_MSG} "Putting jdbc examples into ${PREFIX}/share/examples/pgsql" - @ ${ECHO_MSG} "---------------------------------------------------------" - @ ${CAT} ${PKGDIR}/PLIST.doc >> ${TMPPLIST} -.endif -.endif -.if !defined(NOPORTDOCS) - ${MKDIR} ${PREFIX}/share/doc/pgsql - @ ${GMAKE} -C ${WRKDIR}/${DISTNAME}/doc install - ${INSTALL_MAN} ${WRKDIR}/${DISTNAME}/doc/FAQ* ${PREFIX}/share/doc/pgsql - ${INSTALL_MAN} ${WRKDIR}/${DISTNAME}/doc/README* ${PREFIX}/share/doc/pgsql - ${INSTALL_MAN} ${WRKDIR}/${DISTNAME}/doc/TODO ${PREFIX}/share/doc/pgsql -# ${INSTALL_MAN} ${WRKDIR}/${DISTNAME}/doc/*ps.gz ${PREFIX}/share/doc/pgsql -.endif -.if !defined(BATCH) - @ more -e ${FILESDIR}/post-install-notes -.endif -.if !defined(DEBUG_FLAGS) -.for file in ecpg pg_dump pg_id pg_passwd pg_version postgres psql - @ strip ${PREFIX}/pgsql/bin/${file} -.endfor -.endif - -.include <bsd.port.mk> diff --git a/databases/postgresql73-server/distinfo b/databases/postgresql73-server/distinfo deleted file mode 100644 index 309ea1e11614..000000000000 --- a/databases/postgresql73-server/distinfo +++ /dev/null @@ -1,4 +0,0 @@ -MD5 (postgresql/postgresql-7.0.2.base.tar.gz) = 871d23b85d9a3599a7ed75dfc7da7ba7 -MD5 (postgresql/postgresql-7.0.2.support.tar.gz) = c21180a6485d85785c8e69f0cbff05dd -MD5 (postgresql/postgresql-7.0.2.docs.tar.gz) = efac1f87463f252e54d72b256885b883 -MD5 (postgresql/postgresql-7.0.2.test.tar.gz) = 3443b3d83194c396f20aee2adc6f93bf diff --git a/databases/postgresql73-server/files/patch-aj b/databases/postgresql73-server/files/patch-aj deleted file mode 100644 index 4231fc94ede9..000000000000 --- a/databases/postgresql73-server/files/patch-aj +++ /dev/null @@ -1,67 +0,0 @@ ---- bin/pg_passwd/pg_passwd.c.orig Mon Apr 17 05:45:18 2000 -+++ bin/pg_passwd/pg_passwd.c Sat May 20 17:54:59 2000 -@@ -18,11 +18,15 @@ - - #endif - -+#ifndef _POSIX_SOURCE -+# define _PASSWORD_LEN 128 /* max length, not containing NULL */ -+#endif -+ - char *comname; - static void usage(FILE *stream); - static void read_pwd_file(char *filename); - static void write_pwd_file(char *filename, char *bkname); --static void encrypt_pwd(char key[9], char salt[3], char passwd[14]); -+static void encrypt_pwd(char key[9], char salt[3], char passwd[_PASSWORD_LEN+1]); - static void prompt_for_username(char *username); - static void prompt_for_password(char *prompt, char *password); - -@@ -150,7 +154,7 @@ - - if (q != NULL) - *(q++) = '\0'; -- if (strlen(p) != 13) -+ if (strlen(p) > _PASSWORD_LEN) - { - fprintf(stderr, "WARNING: %s: line %d: illegal password length.\n", - filename, npwds + 1); -@@ -214,7 +218,7 @@ - } - - static void --encrypt_pwd(char key[9], char salt[3], char passwd[14]) -+encrypt_pwd(char key[9], char salt[3], char passwd[_PASSWORD_LEN+1]) - { - int n; - -@@ -246,9 +250,9 @@ - - #ifdef NOT_USED - static int --check_pwd(char key[9], char passwd[14]) -+check_pwd(char key[9], char passwd[_PASSWORD_LEN+1]) - { -- char shouldbe[14]; -+ char shouldbe[_PASSWORD_LEN+1]; - char salt[3]; - - salt[0] = passwd[0]; -@@ -256,7 +260,7 @@ - salt[2] = '\0'; - encrypt_pwd(key, salt, shouldbe); - -- return strncmp(shouldbe, passwd, 13) == 0 ? 1 : 0; -+ return strncmp(shouldbe, passwd, _PASSWORD_LEN) == 0 ? 1 : 0; - } - - #endif -@@ -332,7 +336,7 @@ - char salt[3]; - char key[9], - key2[9]; -- char e_passwd[14]; -+ char e_passwd[_PASSWORD_LEN+1]; - int i; - - comname = argv[0]; diff --git a/databases/postgresql73-server/files/patch-ar b/databases/postgresql73-server/files/patch-ar deleted file mode 100644 index c5c8096fc141..000000000000 --- a/databases/postgresql73-server/files/patch-ar +++ /dev/null @@ -1,11 +0,0 @@ ---- configure.orig Sun Oct 10 14:37:07 1999 -+++ configure Sun Oct 10 14:37:29 1999 -@@ -1429,7 +1429,7 @@ - ELF_SYS=true - else - rm -rf conftest* -- if test "X$elf" = "Xyes" -+ if test "X$PORTOBJFORMAT" = "Xelf" - then - ELF_SYS=true - else diff --git a/databases/postgresql73-server/files/patch-as b/databases/postgresql73-server/files/patch-as deleted file mode 100644 index 3282168c4aed..000000000000 --- a/databases/postgresql73-server/files/patch-as +++ /dev/null @@ -1,11 +0,0 @@ ---- Makefile.global.in.orig Sun Dec 6 00:08:56 1998 -+++ Makefile.global.in Sat Feb 27 04:23:12 1999 -@@ -79,7 +79,7 @@ - POSTMANDIR= $(POSTGRESDIR)/man - - # Where the formatted documents (e.g., the reference manual) get installed. --POSTDOCDIR= $(POSTGRESDIR)/doc -+POSTDOCDIR= !!PREFIX!!/share/doc/pgsql - - # Where the header files necessary to build frontend programs get installed. - HEADERDIR= $(POSTGRESDIR)/include diff --git a/databases/postgresql73-server/files/patch-at b/databases/postgresql73-server/files/patch-at deleted file mode 100644 index 93e68a708211..000000000000 --- a/databases/postgresql73-server/files/patch-at +++ /dev/null @@ -1,11 +0,0 @@ ---- ../doc/Makefile.orig Sun Nov 29 06:30:13 1998 -+++ ../doc/Makefile Mon Jun 21 17:00:13 1999 -@@ -12,7 +12,7 @@ - # - #---------------------------------------------------------------------------- - --PGDOCS= $(POSTGRESDIR)/doc -+PGDOCS= $(POSTDOCDIR) - SRCDIR= ../src - - TAR= tar diff --git a/databases/postgresql73-server/files/patch-ba b/databases/postgresql73-server/files/patch-ba deleted file mode 100644 index a3b679b882c5..000000000000 --- a/databases/postgresql73-server/files/patch-ba +++ /dev/null @@ -1,25 +0,0 @@ ---- interfaces/jdbc/Makefile.orig Tue Mar 14 16:55:17 2000 -+++ interfaces/jdbc/Makefile Sun Apr 16 21:16:43 2000 -@@ -10,10 +10,10 @@ - - FIND = find - IDL2JAVA = idltojava -fno-cpp -fno-tie --JAR = jar --JAVA = java --JAVAC = javac -g --JAVADOC = javadoc -+JAR = !!JAVA_HOME!!/bin/jar -+JAVA = !!JAVA_HOME!!/bin/java -+JAVAC = !!JAVA_HOME!!/bin/javac -+JAVADOC = !!JAVA_HOME!!/bin/javadoc - RM = rm -f - TOUCH = touch - -@@ -40,6 +40,7 @@ - @echo To compile, type: - @echo " $(MAKE) jdbc2" - @echo ------------------------------------------------------------ -+ $(MAKE) jdbc1 - - msg: - @echo ------------------------------------------------------------ diff --git a/databases/postgresql73-server/files/patch-bb b/databases/postgresql73-server/files/patch-bb deleted file mode 100644 index ea0f1732dcb0..000000000000 --- a/databases/postgresql73-server/files/patch-bb +++ /dev/null @@ -1,13 +0,0 @@ ---- pl/tcl/Makefile~ Sat Apr 29 19:45:42 2000 -+++ pl/tcl/Makefile Sat May 20 22:42:22 2000 -@@ -71,7 +71,9 @@ - CFLAGS+= $(TCL_SHLIB_CFLAGS) $(TCL_DEFS) - - CFLAGS+= -I$(SRCDIR)/include -I$(SRCDIR)/backend $(PGSQL_INCLUDES) -- -+ -+CFLAGS+= -I$(TCL_INCDIR) -+ - # - # Uncomment the following to enable the unknown command lookup - # on the first of all calls to the call handler. See the doc diff --git a/databases/postgresql73-server/files/patch-bc b/databases/postgresql73-server/files/patch-bc deleted file mode 100644 index ff747fb84a2f..000000000000 --- a/databases/postgresql73-server/files/patch-bc +++ /dev/null @@ -1,5 +0,0 @@ ---- bin/pg_ctl/postmaster.opts.default.sample~ Mon Apr 17 05:45:17 2000 -+++ bin/pg_ctl/postmaster.opts.default.sample Tue May 23 02:46:30 2000 -@@ -1 +1 @@ -- -+-i -o "-F" diff --git a/databases/postgresql73-server/files/pgsql.sh.tmpl b/databases/postgresql73-server/files/pgsql.sh.tmpl deleted file mode 100644 index e1673b4850c2..000000000000 --- a/databases/postgresql73-server/files/pgsql.sh.tmpl +++ /dev/null @@ -1,34 +0,0 @@ -#!/bin/sh - -# $FreeBSD$ -# -# For postmaster startup options, edit $PGDATA/postmaster.opts.default -# Preinstalled options are -i -o "-F" - -case $1 in -start) - [ -d !!PREFIX!!/pgsql/lib ] && /sbin/ldconfig -m !!PREFIX!!/pgsql/lib - [ -x !!PREFIX!!/pgsql/bin/pg_ctl ] && { - su -l pgsql -c \ - 'exec !!PREFIX!!/pgsql/bin/pg_ctl -w start > !!PREFIX!!/pgsql/errlog 2>&1' - echo -n ' pgsql' - } - ;; - -stop) - [ -x !!PREFIX!!/pgsql/bin/pg_ctl ] && { - su -l pgsql -c 'exec !!PREFIX!!/pgsql/bin/pg_ctl -w -m fast stop' - } - ;; - -status) - [ -x !!PREFIX!!/pgsql/bin/pg_ctl ] && { - su -l pgsql -c 'exec !!PREFIX!!/pgsql/bin/pg_ctl status' - } - ;; - -*) - echo "usage: `basename $0` {start|stop|status}" >&2 - exit 64 - ;; -esac diff --git a/databases/postgresql73-server/files/post-install-notes b/databases/postgresql73-server/files/post-install-notes deleted file mode 100644 index 289a7651109a..000000000000 --- a/databases/postgresql73-server/files/post-install-notes +++ /dev/null @@ -1,16 +0,0 @@ - -Now that PostgreSQL is installed, you should read the documentation and -implementation guides. These can be found at: - - http://www.PostgreSQL.org/docs - -You may wish to subscribe to the PostgreSQL user-support mailing list. -Send an e-mail to pgsql-questions-request@postgresql.org with the -text "subscribe" in the message body. - -If you built PostgreSQL with TCL support, you can install the port -"pgaccess" to get a TCL/TK based database frontend for database -operations. - -To start PostgreSQL, run the startup script: -$PREFIX/etc/rc.d/pgsql.sh start diff --git a/databases/postgresql73-server/pkg-comment b/databases/postgresql73-server/pkg-comment deleted file mode 100644 index 2125016b133c..000000000000 --- a/databases/postgresql73-server/pkg-comment +++ /dev/null @@ -1 +0,0 @@ -A robust, next generation, object-relational DBMS diff --git a/databases/postgresql73-server/pkg-descr b/databases/postgresql73-server/pkg-descr deleted file mode 100644 index f48a33337e55..000000000000 --- a/databases/postgresql73-server/pkg-descr +++ /dev/null @@ -1,24 +0,0 @@ -PostgreSQL is a robust, next-generation, Object-Relational DBMS (ORDBMS), -derived from the Berkeley Postgres database management system. While -PostgreSQL retains the powerful object-relational data model, rich data types -and easy extensibility of Postgres, it replaces the PostQuel query language -with an extended subset of SQL. - -The original Postgres code was the effort of many graduate students, -undergraduate students, and staff programmers working under the direction of -Professor Michael Stonebraker at the University of California, Berkeley. In -1995, Andrew Yu and Jolly Chen took on the task of converting the DBMS query -language to SQL and created a new database system which came to known as -Postgres95. Many others contributed to the porting, testing, debugging and -enhancement of the Postgres95 code. As the code improved, and 1995 faded into -memory, PostgreSQL was born. - -PostgreSQL development is presently being performed by a team of Internet -developers who are now responsible for all current and future development. The -development team coordinator is Marc G. Fournier (scrappy@PostgreSQL.ORG). -Support is available from the PostgreSQL developer/user community through the -support mailing list (questions@PostgreSQL.ORG). - -PostgreSQL is free and the complete source is available. - -WWW: http://www.postgresql.org diff --git a/databases/postgresql73-server/pkg-install b/databases/postgresql73-server/pkg-install deleted file mode 100644 index 7f3a090fe4b6..000000000000 --- a/databases/postgresql73-server/pkg-install +++ /dev/null @@ -1,44 +0,0 @@ -#! /bin/sh - -# $FreeBSD$ - -PATH=/bin:/usr/sbin - -if [ -z "${DB_DIR}" ]; then - DB_DIR=${PKG_PREFIX}/pgsql/data -fi - -case $2 in -POST-INSTALL) - USER=pgsql - GROUP=${USER} - UID=89 - GID=${UID} - - if pw group show "${GROUP}" 2>/dev/null; then - echo "You already have a group \"${GROUP}\", so I will use it." - else - if pw groupadd ${GROUP} -g ${GID}; then - echo "Added group \"${GROUP}\"." - else - echo "Adding group \"${GROUP}\" failed..." - exit 1 - fi - fi - - if pw user show "${USER}" 2>/dev/null; then - echo "You already have a user \"${USER}\", so I will use it." - else - if pw useradd ${USER} -u ${UID} -g ${GROUP} -h - \ - -d ${DB_DIR} -s /sbin/nologin -c "PostgreSQL Daemon" - then - echo "Added user \"${USER}\"." - else - echo "Adding user \"${USER}\" failed..." - exit 1 - fi - fi - - chown -R ${USER}.${GROUP} ${DB_DIR} - ;; -esac diff --git a/databases/postgresql73-server/pkg-plist b/databases/postgresql73-server/pkg-plist deleted file mode 100644 index 9992da1174ae..000000000000 --- a/databases/postgresql73-server/pkg-plist +++ /dev/null @@ -1,168 +0,0 @@ -etc/rc.d/pgsql.sh -pgsql/.profile -pgsql/bin/createdb -pgsql/bin/createlang -pgsql/bin/createuser -pgsql/bin/dropdb -pgsql/bin/droplang -pgsql/bin/dropuser -pgsql/bin/ecpg -pgsql/bin/initdb -pgsql/bin/initlocation -pgsql/bin/ipcclean -pgsql/bin/pg_ctl -pgsql/bin/pg_dump -pgsql/bin/pg_dumpall -pgsql/bin/pg_encoding -pgsql/bin/pg_id -pgsql/bin/pg_passwd -pgsql/bin/pg_upgrade -pgsql/bin/pg_version -pgsql/bin/postgres -pgsql/bin/postmaster -pgsql/bin/psql -pgsql/bin/vacuumdb -pgsql/data/PG_VERSION -pgsql/data/base/template1/PG_VERSION -pgsql/data/base/template1/pg_aggregate -pgsql/data/base/template1/pg_aggregate_name_type_index -pgsql/data/base/template1/pg_am -pgsql/data/base/template1/pg_am_name_index -pgsql/data/base/template1/pg_amop -pgsql/data/base/template1/pg_amop_opid_index -pgsql/data/base/template1/pg_amop_strategy_index -pgsql/data/base/template1/pg_amproc -pgsql/data/base/template1/pg_attrdef -pgsql/data/base/template1/pg_attrdef_adrelid_index -pgsql/data/base/template1/pg_attribute -pgsql/data/base/template1/pg_attribute_relid_attnam_index -pgsql/data/base/template1/pg_attribute_relid_attnum_index -pgsql/data/base/template1/pg_class -pgsql/data/base/template1/pg_class_oid_index -pgsql/data/base/template1/pg_class_relname_index -pgsql/data/base/template1/pg_description -pgsql/data/base/template1/pg_description_objoid_index -pgsql/data/base/template1/pg_index -pgsql/data/base/template1/pg_index_indexrelid_index -pgsql/data/base/template1/pg_indexes -pgsql/data/base/template1/pg_inheritproc -pgsql/data/base/template1/pg_inherits -pgsql/data/base/template1/pg_inherits_relid_seqno_index -pgsql/data/base/template1/pg_ipl -pgsql/data/base/template1/pg_language -pgsql/data/base/template1/pg_language_name_index -pgsql/data/base/template1/pg_language_oid_index -pgsql/data/base/template1/pg_listener -pgsql/data/base/template1/pg_listener_relname_pid_index -pgsql/data/base/template1/pg_opclass -pgsql/data/base/template1/pg_opclass_deftype_index -pgsql/data/base/template1/pg_opclass_name_index -pgsql/data/base/template1/pg_operator -pgsql/data/base/template1/pg_operator_oid_index -pgsql/data/base/template1/pg_operator_oprname_l_r_k_index -pgsql/data/base/template1/pg_proc -pgsql/data/base/template1/pg_proc_oid_index -pgsql/data/base/template1/pg_proc_proname_narg_type_index -pgsql/data/base/template1/pg_relcheck -pgsql/data/base/template1/pg_relcheck_rcrelid_index -pgsql/data/base/template1/pg_rewrite -pgsql/data/base/template1/pg_rewrite_oid_index -pgsql/data/base/template1/pg_rewrite_rulename_index -pgsql/data/base/template1/pg_rules -pgsql/data/base/template1/pg_statistic -pgsql/data/base/template1/pg_statistic_relid_att_index -pgsql/data/base/template1/pg_tables -pgsql/data/base/template1/pg_trigger -pgsql/data/base/template1/pg_trigger_tgconstrname_index -pgsql/data/base/template1/pg_trigger_tgconstrrelid_index -pgsql/data/base/template1/pg_trigger_tgrelid_index -pgsql/data/base/template1/pg_type -pgsql/data/base/template1/pg_type_oid_index -pgsql/data/base/template1/pg_type_typname_index -pgsql/data/base/template1/pg_user -pgsql/data/base/template1/pg_views -pgsql/data/pg_control -pgsql/data/pg_database -pgsql/data/pg_geqo.sample -pgsql/data/pg_group -pgsql/data/pg_group_name_index -pgsql/data/pg_group_sysid_index -pgsql/data/pg_hba.conf -pgsql/data/pg_log -pgsql/data/pg_shadow -pgsql/data/pg_variable -pgsql/data/postmaster.opts.default -pgsql/include/access/attnum.h -pgsql/include/c.h -pgsql/include/commands/trigger.h -pgsql/include/config.h -pgsql/include/ecpgerrno.h -pgsql/include/ecpglib.h -pgsql/include/ecpgtype.h -pgsql/include/executor/spi.h -pgsql/include/fmgr.h -pgsql/include/lib/dllist.h -pgsql/include/libpgeasy.h -pgsql/include/libpq/libpq-fs.h -pgsql/include/libpq/pqcomm.h -pgsql/include/libpq++/pgconnection.h -pgsql/include/libpq++/pgcursordb.h -pgsql/include/libpq++/pgdatabase.h -pgsql/include/libpq++/pglobject.h -pgsql/include/libpq++/pgtransdb.h -pgsql/include/libpq++.h -pgsql/include/libpq-fe.h -pgsql/include/libpq-int.h -pgsql/include/os.h -pgsql/include/postgres.h -pgsql/include/postgres_ext.h -pgsql/include/pqexpbuffer.h -pgsql/include/sql3types.h -pgsql/include/sqlca.h -pgsql/include/utils/elog.h -pgsql/include/utils/geo_decls.h -pgsql/include/utils/mcxt.h -pgsql/include/utils/palloc.h -pgsql/lib/global1.bki.source -pgsql/lib/global1.description -pgsql/lib/libecpg.a -pgsql/lib/libecpg.so -pgsql/lib/libecpg.so.3 -pgsql/lib/libpgeasy.a -pgsql/lib/libpgeasy.so -pgsql/lib/libpgeasy.so.2 -pgsql/lib/libpq++.a -pgsql/lib/libpq++.so -pgsql/lib/libpq++.so.3 -pgsql/lib/libpq.a -pgsql/lib/libpq.so -pgsql/lib/libpq.so.2 -pgsql/lib/local1_template1.bki.source -pgsql/lib/local1_template1.description -pgsql/lib/pg_geqo.sample -pgsql/lib/pg_hba.conf.sample -pgsql/lib/pg_ident.conf.sample -pgsql/lib/pg_options.sample -pgsql/lib/plpgsql.so -pgsql/lib/postmaster.opts.default.sample -pgsql/post-install-notes -@dirrm pgsql/bin -@dirrm pgsql/data/base/template1 -@dirrm pgsql/data/base -@dirrm pgsql/data/pg_xlog -@dirrm pgsql/data -@dirrm pgsql/include/access -@dirrm pgsql/include/commands -@dirrm pgsql/include/executor -@dirrm pgsql/include/lib -@dirrm pgsql/include/libpq -@dirrm pgsql/include/libpq++ -@dirrm pgsql/include/port/freebsd -@dirrm pgsql/include/port -@dirrm pgsql/include/utils -@dirrm pgsql/include -@dirrm pgsql/lib -@dirrm pgsql/man/man1 -@dirrm pgsql/man/manl -@dirrm pgsql/man -@dirrm pgsql diff --git a/databases/postgresql73-server/pkg-plist.doc b/databases/postgresql73-server/pkg-plist.doc deleted file mode 100644 index 06b7bd9ea116..000000000000 --- a/databases/postgresql73-server/pkg-plist.doc +++ /dev/null @@ -1,888 +0,0 @@ -share/doc/pgsql/FAQ -share/doc/pgsql/FAQ_AIX -share/doc/pgsql/FAQ_BSDI -share/doc/pgsql/FAQ_DEV -share/doc/pgsql/FAQ_DigitalUnix -share/doc/pgsql/FAQ_FreeBSD -share/doc/pgsql/FAQ_HPUX -share/doc/pgsql/FAQ_Irix -share/doc/pgsql/FAQ_Linux -share/doc/pgsql/FAQ_QNX4 -share/doc/pgsql/FAQ_SCO -share/doc/pgsql/FAQ_Solaris -share/doc/pgsql/README.Charsets -share/doc/pgsql/README.NT -share/doc/pgsql/README.fsync -share/doc/pgsql/README.inet -share/doc/pgsql/README.locale -share/doc/pgsql/README.mb -share/doc/pgsql/README.mb.jp -share/doc/pgsql/TODO -share/doc/pgsql/admin/admin.htm -share/doc/pgsql/admin/admin.html -share/doc/pgsql/admin/biblio.htm -share/doc/pgsql/admin/c573.htm -share/doc/pgsql/admin/c573602.htm -share/doc/pgsql/admin/c573680.htm -share/doc/pgsql/admin/c573717.htm -share/doc/pgsql/admin/copyright.htm -share/doc/pgsql/admin/disk.htm -share/doc/pgsql/admin/index.html -share/doc/pgsql/admin/install-win32.htm -share/doc/pgsql/admin/install-win321073.htm -share/doc/pgsql/admin/install-win321082.htm -share/doc/pgsql/admin/install.htm -share/doc/pgsql/admin/install855.htm -share/doc/pgsql/admin/intro-ag.htm -share/doc/pgsql/admin/intro-ag162.htm -share/doc/pgsql/admin/layout.gif -share/doc/pgsql/admin/layout.htm -share/doc/pgsql/admin/manage-ag.htm -share/doc/pgsql/admin/manage-ag1604.htm -share/doc/pgsql/admin/manage-ag1646.htm -share/doc/pgsql/admin/manage-ag1655.htm -share/doc/pgsql/admin/newuser.htm -share/doc/pgsql/admin/notation.htm -share/doc/pgsql/admin/pg-options.htm -share/doc/pgsql/admin/ports.htm -share/doc/pgsql/admin/ports481.htm -share/doc/pgsql/admin/postmaster.htm -share/doc/pgsql/admin/preface.htm -share/doc/pgsql/admin/recovery.htm -share/doc/pgsql/admin/regress.htm -share/doc/pgsql/admin/regress1861.htm -share/doc/pgsql/admin/regress1895.htm -share/doc/pgsql/admin/regress1941.htm -share/doc/pgsql/admin/release.htm -share/doc/pgsql/admin/release2009.htm -share/doc/pgsql/admin/release2020.htm -share/doc/pgsql/admin/release2031.htm -share/doc/pgsql/admin/release2042.htm -share/doc/pgsql/admin/release2124.htm -share/doc/pgsql/admin/release2135.htm -share/doc/pgsql/admin/release2146.htm -share/doc/pgsql/admin/release2187.htm -share/doc/pgsql/admin/release2203.htm -share/doc/pgsql/admin/release2222.htm -share/doc/pgsql/admin/release2266.htm -share/doc/pgsql/admin/release2288.htm -share/doc/pgsql/admin/release2303.htm -share/doc/pgsql/admin/release2312.htm -share/doc/pgsql/admin/release2335.htm -share/doc/pgsql/admin/release2349.htm -share/doc/pgsql/admin/release2352.htm -share/doc/pgsql/admin/release2377.htm -share/doc/pgsql/admin/release2414.htm -share/doc/pgsql/admin/release2421.htm -share/doc/pgsql/admin/release2428.htm -share/doc/pgsql/admin/release2435.htm -share/doc/pgsql/admin/release2439.htm -share/doc/pgsql/admin/runtime.htm -share/doc/pgsql/admin/security.htm -share/doc/pgsql/admin/security1450.htm -share/doc/pgsql/admin/security1485.htm -share/doc/pgsql/admin/security1509.htm -share/doc/pgsql/admin/security1530.htm -share/doc/pgsql/admin/terminology.htm -share/doc/pgsql/admin/trouble.htm -share/doc/pgsql/admin/trouble1721.htm -share/doc/pgsql/admin/trouble1738.htm -share/doc/pgsql/admin/y2k.htm -share/doc/pgsql/postgres/about.htm -share/doc/pgsql/postgres/advanced.htm -share/doc/pgsql/postgres/advanced27923.htm -share/doc/pgsql/postgres/advanced27945.htm -share/doc/pgsql/postgres/app-createdb.htm -share/doc/pgsql/postgres/app-createlang.htm -share/doc/pgsql/postgres/app-createuser.htm -share/doc/pgsql/postgres/app-dropdb.htm -share/doc/pgsql/postgres/app-droplang.htm -share/doc/pgsql/postgres/app-dropuser.htm -share/doc/pgsql/postgres/app-ecpg.htm -share/doc/pgsql/postgres/app-initdb.htm -share/doc/pgsql/postgres/app-initlocation.htm -share/doc/pgsql/postgres/app-ipcclean.htm -share/doc/pgsql/postgres/app-pg-passwd.htm -share/doc/pgsql/postgres/app-pg-upgrade.htm -share/doc/pgsql/postgres/app-pgaccess.htm -share/doc/pgsql/postgres/app-pgadmin.htm -share/doc/pgsql/postgres/app-pgctl.htm -share/doc/pgsql/postgres/app-pgdump.htm -share/doc/pgsql/postgres/app-pgdumpall.htm -share/doc/pgsql/postgres/app-pgtclsh.htm -share/doc/pgsql/postgres/app-pgtksh.htm -share/doc/pgsql/postgres/app-postgres.htm -share/doc/pgsql/postgres/app-postmaster.htm -share/doc/pgsql/postgres/app-psql.htm -share/doc/pgsql/postgres/app-vacuumdb.htm -share/doc/pgsql/postgres/applications.htm -share/doc/pgsql/postgres/arch-pg.htm -share/doc/pgsql/postgres/arch.htm -share/doc/pgsql/postgres/arrays.htm -share/doc/pgsql/postgres/biblio.htm -share/doc/pgsql/postgres/bki.htm -share/doc/pgsql/postgres/bki26573.htm -share/doc/pgsql/postgres/bki26657.htm -share/doc/pgsql/postgres/bki26681.htm -share/doc/pgsql/postgres/bki26742.htm -share/doc/pgsql/postgres/c16883.htm -share/doc/pgsql/postgres/c1688316912.htm -share/doc/pgsql/postgres/c1688316990.htm -share/doc/pgsql/postgres/c1688317027.htm -share/doc/pgsql/postgres/c19986.htm -share/doc/pgsql/postgres/c21722.htm -share/doc/pgsql/postgres/c2172221764.htm -share/doc/pgsql/postgres/c2172221782.htm -share/doc/pgsql/postgres/c2172221924.htm -share/doc/pgsql/postgres/c2172221936.htm -share/doc/pgsql/postgres/c2172221956.htm -share/doc/pgsql/postgres/c2172221961.htm -share/doc/pgsql/postgres/c25129.htm -share/doc/pgsql/postgres/c4091.htm -share/doc/pgsql/postgres/c40914117.htm -share/doc/pgsql/postgres/c40914344.htm -share/doc/pgsql/postgres/c4362.htm -share/doc/pgsql/postgres/c43624375.htm -share/doc/pgsql/postgres/c4888.htm -share/doc/pgsql/postgres/c4933.htm -share/doc/pgsql/postgres/c49334943.htm -share/doc/pgsql/postgres/c49334947.htm -share/doc/pgsql/postgres/catalogs.gif -share/doc/pgsql/postgres/clientserver.gif -share/doc/pgsql/postgres/compiler.htm -share/doc/pgsql/postgres/connections.gif -share/doc/pgsql/postgres/copyright.htm -share/doc/pgsql/postgres/cvs.htm -share/doc/pgsql/postgres/cvs28436.htm -share/doc/pgsql/postgres/cvs28492.htm -share/doc/pgsql/postgres/datatype.htm -share/doc/pgsql/postgres/datatype1038.htm -share/doc/pgsql/postgres/datatype1070.htm -share/doc/pgsql/postgres/datatype1134.htm -share/doc/pgsql/postgres/datatype1649.htm -share/doc/pgsql/postgres/datatype1681.htm -share/doc/pgsql/postgres/datatype1920.htm -share/doc/pgsql/postgres/datetime-appendix.htm -share/doc/pgsql/postgres/datetime-appendix28356.htm -share/doc/pgsql/postgres/dfunc.htm -share/doc/pgsql/postgres/dfunc20136.htm -share/doc/pgsql/postgres/dfunc20146.htm -share/doc/pgsql/postgres/disk.htm -share/doc/pgsql/postgres/docguide.htm -share/doc/pgsql/postgres/docguide28718.htm -share/doc/pgsql/postgres/docguide28749.htm -share/doc/pgsql/postgres/docguide28840.htm -share/doc/pgsql/postgres/docguide28861.htm -share/doc/pgsql/postgres/docguide28887.htm -share/doc/pgsql/postgres/docguide29024.htm -share/doc/pgsql/postgres/docguide29362.htm -share/doc/pgsql/postgres/environ.htm -share/doc/pgsql/postgres/extend.htm -share/doc/pgsql/postgres/extend18852.htm -share/doc/pgsql/postgres/extend18864.htm -share/doc/pgsql/postgres/func-ref.htm -share/doc/pgsql/postgres/functions.htm -share/doc/pgsql/postgres/functions2593.htm -share/doc/pgsql/postgres/functions2733.htm -share/doc/pgsql/postgres/functions2876.htm -share/doc/pgsql/postgres/functions2976.htm -share/doc/pgsql/postgres/functions3443.htm -share/doc/pgsql/postgres/functions3641.htm -share/doc/pgsql/postgres/geqo-biblio.htm -share/doc/pgsql/postgres/geqo.htm -share/doc/pgsql/postgres/geqo25594.htm -share/doc/pgsql/postgres/geqo25617.htm -share/doc/pgsql/postgres/geqo25655.htm -share/doc/pgsql/postgres/gist.htm -share/doc/pgsql/postgres/index.html -share/doc/pgsql/postgres/indices.htm -share/doc/pgsql/postgres/inherit.htm -share/doc/pgsql/postgres/install-win32.htm -share/doc/pgsql/postgres/install-win3217383.htm -share/doc/pgsql/postgres/install-win3217392.htm -share/doc/pgsql/postgres/install.htm -share/doc/pgsql/postgres/install17165.htm -share/doc/pgsql/postgres/intro.htm -share/doc/pgsql/postgres/intro176.htm -share/doc/pgsql/postgres/intro304.htm -share/doc/pgsql/postgres/intro60.htm -share/doc/pgsql/postgres/jdbc.htm -share/doc/pgsql/postgres/jdbc24909.htm -share/doc/pgsql/postgres/jdbc24921.htm -share/doc/pgsql/postgres/jdbc24927.htm -share/doc/pgsql/postgres/jdbc24935.htm -share/doc/pgsql/postgres/jdbc24953.htm -share/doc/pgsql/postgres/jdbc24990.htm -share/doc/pgsql/postgres/jdbc25021.htm -share/doc/pgsql/postgres/jdbc25026.htm -share/doc/pgsql/postgres/jdbc25030.htm -share/doc/pgsql/postgres/jdbc25056.htm -share/doc/pgsql/postgres/jdbc25086.htm -share/doc/pgsql/postgres/largeobjects.htm -share/doc/pgsql/postgres/largeobjects21625.htm -share/doc/pgsql/postgres/largeobjects21628.htm -share/doc/pgsql/postgres/largeobjects21707.htm -share/doc/pgsql/postgres/largeobjects21714.htm -share/doc/pgsql/postgres/largeobjects21718.htm -share/doc/pgsql/postgres/layout.gif -share/doc/pgsql/postgres/layout.htm -share/doc/pgsql/postgres/libpq-chapter.htm -share/doc/pgsql/postgres/libpq-chapter22422.htm -share/doc/pgsql/postgres/libpq-chapter22577.htm -share/doc/pgsql/postgres/libpq-chapter22724.htm -share/doc/pgsql/postgres/libpq-chapter22736.htm -share/doc/pgsql/postgres/libpq-chapter22774.htm -share/doc/pgsql/postgres/libpq-chapter22844.htm -share/doc/pgsql/postgres/libpq-chapter22857.htm -share/doc/pgsql/postgres/libpq-chapter22942.htm -share/doc/pgsql/postgres/libpq-envars.htm -share/doc/pgsql/postgres/libpq-threading.htm -share/doc/pgsql/postgres/libpqplusplus.htm -share/doc/pgsql/postgres/libpqplusplus23034.htm -share/doc/pgsql/postgres/libpqplusplus23044.htm -share/doc/pgsql/postgres/libpqplusplus23074.htm -share/doc/pgsql/postgres/libpqplusplus23179.htm -share/doc/pgsql/postgres/libpqplusplus23202.htm -share/doc/pgsql/postgres/lisp.htm -share/doc/pgsql/postgres/manage-ag.htm -share/doc/pgsql/postgres/manage-ag17914.htm -share/doc/pgsql/postgres/manage-ag17956.htm -share/doc/pgsql/postgres/manage-ag17965.htm -share/doc/pgsql/postgres/manage.htm -share/doc/pgsql/postgres/manage4814.htm -share/doc/pgsql/postgres/manage4838.htm -share/doc/pgsql/postgres/manage4880.htm -share/doc/pgsql/postgres/mvcc.htm -share/doc/pgsql/postgres/mvcc4568.htm -share/doc/pgsql/postgres/mvcc4621.htm -share/doc/pgsql/postgres/mvcc4633.htm -share/doc/pgsql/postgres/mvcc4646.htm -share/doc/pgsql/postgres/mvcc4723.htm -share/doc/pgsql/postgres/mvcc4744.htm -share/doc/pgsql/postgres/newuser.htm -share/doc/pgsql/postgres/notation.htm -share/doc/pgsql/postgres/odbc.htm -share/doc/pgsql/postgres/odbc24433.htm -share/doc/pgsql/postgres/odbc24471.htm -share/doc/pgsql/postgres/odbc24644.htm -share/doc/pgsql/postgres/odbc24666.htm -share/doc/pgsql/postgres/operators.htm -share/doc/pgsql/postgres/operators2127.htm -share/doc/pgsql/postgres/operators2198.htm -share/doc/pgsql/postgres/operators2267.htm -share/doc/pgsql/postgres/operators2377.htm -share/doc/pgsql/postgres/operators2436.htm -share/doc/pgsql/postgres/operators2490.htm -share/doc/pgsql/postgres/overview.htm -share/doc/pgsql/postgres/overview25194.htm -share/doc/pgsql/postgres/overview25219.htm -share/doc/pgsql/postgres/overview25347.htm -share/doc/pgsql/postgres/overview25403.htm -share/doc/pgsql/postgres/overview25457.htm -share/doc/pgsql/postgres/page.htm -share/doc/pgsql/postgres/page26805.htm -share/doc/pgsql/postgres/page26819.htm -share/doc/pgsql/postgres/part-admin.htm -share/doc/pgsql/postgres/part-appendix.htm -share/doc/pgsql/postgres/part-developer.htm -share/doc/pgsql/postgres/part-interfaces.htm -share/doc/pgsql/postgres/part-programmer.htm -share/doc/pgsql/postgres/part-tutorial.htm -share/doc/pgsql/postgres/part-user.htm -share/doc/pgsql/postgres/partial-index.htm -share/doc/pgsql/postgres/pg-options-dev.htm -share/doc/pgsql/postgres/pg-options.htm -share/doc/pgsql/postgres/pgeasy-chapter.htm -share/doc/pgsql/postgres/pgtcl-pgconndefaults.htm -share/doc/pgsql/postgres/pgtcl-pgconnect.htm -share/doc/pgsql/postgres/pgtcl-pgdisconnect.htm -share/doc/pgsql/postgres/pgtcl-pgexec.htm -share/doc/pgsql/postgres/pgtcl-pglisten.htm -share/doc/pgsql/postgres/pgtcl-pgloclose.htm -share/doc/pgsql/postgres/pgtcl-pglocreat.htm -share/doc/pgsql/postgres/pgtcl-pgloexport.htm -share/doc/pgsql/postgres/pgtcl-pgloimport.htm -share/doc/pgsql/postgres/pgtcl-pglolseek.htm -share/doc/pgsql/postgres/pgtcl-pgloopen.htm -share/doc/pgsql/postgres/pgtcl-pgloread.htm -share/doc/pgsql/postgres/pgtcl-pglotell.htm -share/doc/pgsql/postgres/pgtcl-pglounlink.htm -share/doc/pgsql/postgres/pgtcl-pglowrite.htm -share/doc/pgsql/postgres/pgtcl-pgresult.htm -share/doc/pgsql/postgres/pgtcl-pgselect.htm -share/doc/pgsql/postgres/pgtcl.htm -share/doc/pgsql/postgres/pgtcl23317.htm -share/doc/pgsql/postgres/pgtcl23321.htm -share/doc/pgsql/postgres/pl-perl.htm -share/doc/pgsql/postgres/pl-perl4533.htm -share/doc/pgsql/postgres/pl-perl4542.htm -share/doc/pgsql/postgres/ports.htm -share/doc/pgsql/postgres/ports16791.htm -share/doc/pgsql/postgres/postgres.htm -share/doc/pgsql/postgres/postgres.html -share/doc/pgsql/postgres/postmaster.htm -share/doc/pgsql/postgres/preface.htm -share/doc/pgsql/postgres/protocol.htm -share/doc/pgsql/postgres/protocol25770.htm -share/doc/pgsql/postgres/protocol25925.htm -share/doc/pgsql/postgres/protocol25962.htm -share/doc/pgsql/postgres/query.htm -share/doc/pgsql/postgres/query27752.htm -share/doc/pgsql/postgres/query27768.htm -share/doc/pgsql/postgres/query27790.htm -share/doc/pgsql/postgres/query27799.htm -share/doc/pgsql/postgres/query27817.htm -share/doc/pgsql/postgres/query27825.htm -share/doc/pgsql/postgres/query27844.htm -share/doc/pgsql/postgres/query27849.htm -share/doc/pgsql/postgres/query27856.htm -share/doc/pgsql/postgres/recovery.htm -share/doc/pgsql/postgres/regress.htm -share/doc/pgsql/postgres/regress18171.htm -share/doc/pgsql/postgres/regress18205.htm -share/doc/pgsql/postgres/regress18251.htm -share/doc/pgsql/postgres/release.htm -share/doc/pgsql/postgres/release18319.htm -share/doc/pgsql/postgres/release18330.htm -share/doc/pgsql/postgres/release18341.htm -share/doc/pgsql/postgres/release18352.htm -share/doc/pgsql/postgres/release18434.htm -share/doc/pgsql/postgres/release18445.htm -share/doc/pgsql/postgres/release18456.htm -share/doc/pgsql/postgres/release18497.htm -share/doc/pgsql/postgres/release18513.htm -share/doc/pgsql/postgres/release18532.htm -share/doc/pgsql/postgres/release18576.htm -share/doc/pgsql/postgres/release18598.htm -share/doc/pgsql/postgres/release18613.htm -share/doc/pgsql/postgres/release18622.htm -share/doc/pgsql/postgres/release18645.htm -share/doc/pgsql/postgres/release18659.htm -share/doc/pgsql/postgres/release18662.htm -share/doc/pgsql/postgres/release18687.htm -share/doc/pgsql/postgres/release18724.htm -share/doc/pgsql/postgres/release18731.htm -share/doc/pgsql/postgres/release18738.htm -share/doc/pgsql/postgres/release18745.htm -share/doc/pgsql/postgres/release18749.htm -share/doc/pgsql/postgres/rules.htm -share/doc/pgsql/postgres/rules19478.htm -share/doc/pgsql/postgres/rules19639.htm -share/doc/pgsql/postgres/rules19770.htm -share/doc/pgsql/postgres/rules19784.htm -share/doc/pgsql/postgres/runtime.htm -share/doc/pgsql/postgres/security.htm -share/doc/pgsql/postgres/security17760.htm -share/doc/pgsql/postgres/security17795.htm -share/doc/pgsql/postgres/security17819.htm -share/doc/pgsql/postgres/security17840.htm -share/doc/pgsql/postgres/signals.htm -share/doc/pgsql/postgres/spi-spiconnect.htm -share/doc/pgsql/postgres/spi-spicopytuple.htm -share/doc/pgsql/postgres/spi-spiexec.htm -share/doc/pgsql/postgres/spi-spiexecp.htm -share/doc/pgsql/postgres/spi-spifinish.htm -share/doc/pgsql/postgres/spi-spifname.htm -share/doc/pgsql/postgres/spi-spifnumber.htm -share/doc/pgsql/postgres/spi-spigetbinval.htm -share/doc/pgsql/postgres/spi-spigetrelname.htm -share/doc/pgsql/postgres/spi-spigettype.htm -share/doc/pgsql/postgres/spi-spigettypeid.htm -share/doc/pgsql/postgres/spi-spigetvalue.htm -share/doc/pgsql/postgres/spi-spimodifytuple.htm -share/doc/pgsql/postgres/spi-spipalloc.htm -share/doc/pgsql/postgres/spi-spipfree.htm -share/doc/pgsql/postgres/spi-spiprepare.htm -share/doc/pgsql/postgres/spi-spirepalloc.htm -share/doc/pgsql/postgres/spi-spisaveplan.htm -share/doc/pgsql/postgres/spi.htm -share/doc/pgsql/postgres/spi20808.htm -share/doc/pgsql/postgres/spi21521.htm -share/doc/pgsql/postgres/spi21543.htm -share/doc/pgsql/postgres/spi21548.htm -share/doc/pgsql/postgres/sql-abort.htm -share/doc/pgsql/postgres/sql-altergroup.htm -share/doc/pgsql/postgres/sql-altertable.htm -share/doc/pgsql/postgres/sql-alteruser.htm -share/doc/pgsql/postgres/sql-begin.htm -share/doc/pgsql/postgres/sql-close.htm -share/doc/pgsql/postgres/sql-cluster.htm -share/doc/pgsql/postgres/sql-commands.htm -share/doc/pgsql/postgres/sql-comment.htm -share/doc/pgsql/postgres/sql-commit.htm -share/doc/pgsql/postgres/sql-copy.htm -share/doc/pgsql/postgres/sql-createaggregate.htm -share/doc/pgsql/postgres/sql-createconstraint.htm -share/doc/pgsql/postgres/sql-createdatabase.htm -share/doc/pgsql/postgres/sql-createfunction.htm -share/doc/pgsql/postgres/sql-creategroup.htm -share/doc/pgsql/postgres/sql-createindex.htm -share/doc/pgsql/postgres/sql-createlanguage.htm -share/doc/pgsql/postgres/sql-createoperator.htm -share/doc/pgsql/postgres/sql-createrule.htm -share/doc/pgsql/postgres/sql-createsequence.htm -share/doc/pgsql/postgres/sql-createtable.htm -share/doc/pgsql/postgres/sql-createtableas.htm -share/doc/pgsql/postgres/sql-createtrigger.htm -share/doc/pgsql/postgres/sql-createtype.htm -share/doc/pgsql/postgres/sql-createuser.htm -share/doc/pgsql/postgres/sql-createview.htm -share/doc/pgsql/postgres/sql-declare.htm -share/doc/pgsql/postgres/sql-delete.htm -share/doc/pgsql/postgres/sql-dropaggregate.htm -share/doc/pgsql/postgres/sql-dropdatabase.htm -share/doc/pgsql/postgres/sql-dropfunction.htm -share/doc/pgsql/postgres/sql-dropgroup.htm -share/doc/pgsql/postgres/sql-dropindex.htm -share/doc/pgsql/postgres/sql-droplanguage.htm -share/doc/pgsql/postgres/sql-dropoperator.htm -share/doc/pgsql/postgres/sql-droprule.htm -share/doc/pgsql/postgres/sql-dropsequence.htm -share/doc/pgsql/postgres/sql-droptable.htm -share/doc/pgsql/postgres/sql-droptrigger.htm -share/doc/pgsql/postgres/sql-droptype.htm -share/doc/pgsql/postgres/sql-dropuser.htm -share/doc/pgsql/postgres/sql-dropview.htm -share/doc/pgsql/postgres/sql-end.htm -share/doc/pgsql/postgres/sql-explain.htm -share/doc/pgsql/postgres/sql-fetch.htm -share/doc/pgsql/postgres/sql-grant.htm -share/doc/pgsql/postgres/sql-insert.htm -share/doc/pgsql/postgres/sql-language.htm -share/doc/pgsql/postgres/sql-listen.htm -share/doc/pgsql/postgres/sql-load.htm -share/doc/pgsql/postgres/sql-lock.htm -share/doc/pgsql/postgres/sql-move.htm -share/doc/pgsql/postgres/sql-notify.htm -share/doc/pgsql/postgres/sql-reindex.htm -share/doc/pgsql/postgres/sql-reset.htm -share/doc/pgsql/postgres/sql-revoke.htm -share/doc/pgsql/postgres/sql-rollback.htm -share/doc/pgsql/postgres/sql-select.htm -share/doc/pgsql/postgres/sql-selectinto.htm -share/doc/pgsql/postgres/sql-set.htm -share/doc/pgsql/postgres/sql-show.htm -share/doc/pgsql/postgres/sql-truncate.htm -share/doc/pgsql/postgres/sql-unlisten.htm -share/doc/pgsql/postgres/sql-update.htm -share/doc/pgsql/postgres/sql-vacuum.htm -share/doc/pgsql/postgres/sql.htm -share/doc/pgsql/postgres/sql26902.htm -share/doc/pgsql/postgres/sql27020.htm -share/doc/pgsql/postgres/start.htm -share/doc/pgsql/postgres/start27628.htm -share/doc/pgsql/postgres/start27650.htm -share/doc/pgsql/postgres/storage.htm -share/doc/pgsql/postgres/syntax.htm -share/doc/pgsql/postgres/syntax519.htm -share/doc/pgsql/postgres/syntax525.htm -share/doc/pgsql/postgres/syntax543.htm -share/doc/pgsql/postgres/syntax608.htm -share/doc/pgsql/postgres/syntax653.htm -share/doc/pgsql/postgres/syntax658.htm -share/doc/pgsql/postgres/terminology.htm -share/doc/pgsql/postgres/triggers.htm -share/doc/pgsql/postgres/triggers20224.htm -share/doc/pgsql/postgres/triggers20281.htm -share/doc/pgsql/postgres/triggers20290.htm -share/doc/pgsql/postgres/trouble.htm -share/doc/pgsql/postgres/trouble18031.htm -share/doc/pgsql/postgres/trouble18048.htm -share/doc/pgsql/postgres/typeconv.htm -share/doc/pgsql/postgres/typeconv3759.htm -share/doc/pgsql/postgres/typeconv3822.htm -share/doc/pgsql/postgres/typeconv3875.htm -share/doc/pgsql/postgres/typeconv3895.htm -share/doc/pgsql/postgres/utilities.htm -share/doc/pgsql/postgres/xaggr.htm -share/doc/pgsql/postgres/xfunc.htm -share/doc/pgsql/postgres/xfunc19011.htm -share/doc/pgsql/postgres/xfunc19017.htm -share/doc/pgsql/postgres/xfunc19022.htm -share/doc/pgsql/postgres/xfunc19254.htm -share/doc/pgsql/postgres/xindex.htm -share/doc/pgsql/postgres/xoper.htm -share/doc/pgsql/postgres/xplang.htm -share/doc/pgsql/postgres/xtypes.htm -share/doc/pgsql/postgres/y2k.htm -share/doc/pgsql/programmer/arch-pg.htm -share/doc/pgsql/programmer/biblio.htm -share/doc/pgsql/programmer/bki.htm -share/doc/pgsql/programmer/bki8058.htm -share/doc/pgsql/programmer/bki8142.htm -share/doc/pgsql/programmer/bki8166.htm -share/doc/pgsql/programmer/bki8227.htm -share/doc/pgsql/programmer/c1486.htm -share/doc/pgsql/programmer/c5391.htm -share/doc/pgsql/programmer/c53915433.htm -share/doc/pgsql/programmer/c53915451.htm -share/doc/pgsql/programmer/c53915593.htm -share/doc/pgsql/programmer/c53915605.htm -share/doc/pgsql/programmer/c53915625.htm -share/doc/pgsql/programmer/c53915630.htm -share/doc/pgsql/programmer/c6614.htm -share/doc/pgsql/programmer/catalogs.gif -share/doc/pgsql/programmer/compiler.htm -share/doc/pgsql/programmer/connections.gif -share/doc/pgsql/programmer/copyright.htm -share/doc/pgsql/programmer/cvs.htm -share/doc/pgsql/programmer/cvs8365.htm -share/doc/pgsql/programmer/cvs8421.htm -share/doc/pgsql/programmer/dfunc.htm -share/doc/pgsql/programmer/dfunc1679.htm -share/doc/pgsql/programmer/dfunc1689.htm -share/doc/pgsql/programmer/docguide.htm -share/doc/pgsql/programmer/docguide8647.htm -share/doc/pgsql/programmer/docguide8678.htm -share/doc/pgsql/programmer/docguide8769.htm -share/doc/pgsql/programmer/docguide8790.htm -share/doc/pgsql/programmer/docguide8816.htm -share/doc/pgsql/programmer/docguide8953.htm -share/doc/pgsql/programmer/docguide9291.htm -share/doc/pgsql/programmer/extend.htm -share/doc/pgsql/programmer/extend352.htm -share/doc/pgsql/programmer/extend364.htm -share/doc/pgsql/programmer/geqo-biblio.htm -share/doc/pgsql/programmer/geqo.htm -share/doc/pgsql/programmer/geqo7079.htm -share/doc/pgsql/programmer/geqo7102.htm -share/doc/pgsql/programmer/geqo7140.htm -share/doc/pgsql/programmer/gist.htm -share/doc/pgsql/programmer/index.html -share/doc/pgsql/programmer/intro-pg.htm -share/doc/pgsql/programmer/intro-pg167.htm -share/doc/pgsql/programmer/jdbc.htm -share/doc/pgsql/programmer/jdbc6398.htm -share/doc/pgsql/programmer/jdbc6410.htm -share/doc/pgsql/programmer/jdbc6416.htm -share/doc/pgsql/programmer/jdbc6424.htm -share/doc/pgsql/programmer/jdbc6442.htm -share/doc/pgsql/programmer/jdbc6479.htm -share/doc/pgsql/programmer/jdbc6510.htm -share/doc/pgsql/programmer/jdbc6515.htm -share/doc/pgsql/programmer/jdbc6519.htm -share/doc/pgsql/programmer/jdbc6545.htm -share/doc/pgsql/programmer/jdbc6575.htm -share/doc/pgsql/programmer/largeobjects.htm -share/doc/pgsql/programmer/largeobjects3114.htm -share/doc/pgsql/programmer/largeobjects3117.htm -share/doc/pgsql/programmer/largeobjects3196.htm -share/doc/pgsql/programmer/largeobjects3203.htm -share/doc/pgsql/programmer/largeobjects3207.htm -share/doc/pgsql/programmer/libpq-chapter.htm -share/doc/pgsql/programmer/libpq-chapter3419.htm -share/doc/pgsql/programmer/libpq-chapter3574.htm -share/doc/pgsql/programmer/libpq-chapter3721.htm -share/doc/pgsql/programmer/libpq-chapter3733.htm -share/doc/pgsql/programmer/libpq-chapter3771.htm -share/doc/pgsql/programmer/libpq-chapter3841.htm -share/doc/pgsql/programmer/libpq-chapter3854.htm -share/doc/pgsql/programmer/libpq-chapter3939.htm -share/doc/pgsql/programmer/libpq-envars.htm -share/doc/pgsql/programmer/libpq-threading.htm -share/doc/pgsql/programmer/libpqplusplus.htm -share/doc/pgsql/programmer/libpqplusplus4031.htm -share/doc/pgsql/programmer/libpqplusplus4041.htm -share/doc/pgsql/programmer/libpqplusplus4071.htm -share/doc/pgsql/programmer/libpqplusplus4176.htm -share/doc/pgsql/programmer/libpqplusplus4199.htm -share/doc/pgsql/programmer/lisp.htm -share/doc/pgsql/programmer/notation.htm -share/doc/pgsql/programmer/odbc.htm -share/doc/pgsql/programmer/odbc5922.htm -share/doc/pgsql/programmer/odbc5960.htm -share/doc/pgsql/programmer/odbc6133.htm -share/doc/pgsql/programmer/odbc6155.htm -share/doc/pgsql/programmer/overview.htm -share/doc/pgsql/programmer/overview6679.htm -share/doc/pgsql/programmer/overview6704.htm -share/doc/pgsql/programmer/overview6832.htm -share/doc/pgsql/programmer/overview6888.htm -share/doc/pgsql/programmer/overview6942.htm -share/doc/pgsql/programmer/page.htm -share/doc/pgsql/programmer/page8290.htm -share/doc/pgsql/programmer/page8304.htm -share/doc/pgsql/programmer/pg-options-dev.htm -share/doc/pgsql/programmer/pgeasy-chapter.htm -share/doc/pgsql/programmer/pgtcl-pgconndefaults.htm -share/doc/pgsql/programmer/pgtcl-pgconnect.htm -share/doc/pgsql/programmer/pgtcl-pgdisconnect.htm -share/doc/pgsql/programmer/pgtcl-pgexec.htm -share/doc/pgsql/programmer/pgtcl-pglisten.htm -share/doc/pgsql/programmer/pgtcl-pgloclose.htm -share/doc/pgsql/programmer/pgtcl-pglocreat.htm -share/doc/pgsql/programmer/pgtcl-pgloexport.htm -share/doc/pgsql/programmer/pgtcl-pgloimport.htm -share/doc/pgsql/programmer/pgtcl-pglolseek.htm -share/doc/pgsql/programmer/pgtcl-pgloopen.htm -share/doc/pgsql/programmer/pgtcl-pgloread.htm -share/doc/pgsql/programmer/pgtcl-pglotell.htm -share/doc/pgsql/programmer/pgtcl-pglounlink.htm -share/doc/pgsql/programmer/pgtcl-pglowrite.htm -share/doc/pgsql/programmer/pgtcl-pgresult.htm -share/doc/pgsql/programmer/pgtcl-pgselect.htm -share/doc/pgsql/programmer/pgtcl.htm -share/doc/pgsql/programmer/pgtcl4314.htm -share/doc/pgsql/programmer/pgtcl4318.htm -share/doc/pgsql/programmer/preface.htm -share/doc/pgsql/programmer/programmer.htm -share/doc/pgsql/programmer/programmer.html -share/doc/pgsql/programmer/protocol.htm -share/doc/pgsql/programmer/protocol7255.htm -share/doc/pgsql/programmer/protocol7410.htm -share/doc/pgsql/programmer/protocol7447.htm -share/doc/pgsql/programmer/rules.htm -share/doc/pgsql/programmer/rules1139.htm -share/doc/pgsql/programmer/rules1270.htm -share/doc/pgsql/programmer/rules1284.htm -share/doc/pgsql/programmer/rules978.htm -share/doc/pgsql/programmer/signals.htm -share/doc/pgsql/programmer/spi-spiconnect.htm -share/doc/pgsql/programmer/spi-spicopytuple.htm -share/doc/pgsql/programmer/spi-spiexec.htm -share/doc/pgsql/programmer/spi-spiexecp.htm -share/doc/pgsql/programmer/spi-spifinish.htm -share/doc/pgsql/programmer/spi-spifname.htm -share/doc/pgsql/programmer/spi-spifnumber.htm -share/doc/pgsql/programmer/spi-spigetbinval.htm -share/doc/pgsql/programmer/spi-spigetrelname.htm -share/doc/pgsql/programmer/spi-spigettype.htm -share/doc/pgsql/programmer/spi-spigettypeid.htm -share/doc/pgsql/programmer/spi-spigetvalue.htm -share/doc/pgsql/programmer/spi-spimodifytuple.htm -share/doc/pgsql/programmer/spi-spipalloc.htm -share/doc/pgsql/programmer/spi-spipfree.htm -share/doc/pgsql/programmer/spi-spiprepare.htm -share/doc/pgsql/programmer/spi-spirepalloc.htm -share/doc/pgsql/programmer/spi-spisaveplan.htm -share/doc/pgsql/programmer/spi.htm -share/doc/pgsql/programmer/spi2351.htm -share/doc/pgsql/programmer/spi3064.htm -share/doc/pgsql/programmer/spi3086.htm -share/doc/pgsql/programmer/spi3091.htm -share/doc/pgsql/programmer/terminology.htm -share/doc/pgsql/programmer/triggers.htm -share/doc/pgsql/programmer/triggers1767.htm -share/doc/pgsql/programmer/triggers1824.htm -share/doc/pgsql/programmer/triggers1833.htm -share/doc/pgsql/programmer/xaggr.htm -share/doc/pgsql/programmer/xfunc.htm -share/doc/pgsql/programmer/xfunc511.htm -share/doc/pgsql/programmer/xfunc517.htm -share/doc/pgsql/programmer/xfunc522.htm -share/doc/pgsql/programmer/xfunc754.htm -share/doc/pgsql/programmer/xindex.htm -share/doc/pgsql/programmer/xoper.htm -share/doc/pgsql/programmer/xplang.htm -share/doc/pgsql/programmer/xtypes.htm -share/doc/pgsql/programmer/y2k.htm -share/doc/pgsql/tutorial/about.htm -share/doc/pgsql/tutorial/advanced.htm -share/doc/pgsql/tutorial/advanced1511.htm -share/doc/pgsql/tutorial/advanced1533.htm -share/doc/pgsql/tutorial/arch.htm -share/doc/pgsql/tutorial/biblio.htm -share/doc/pgsql/tutorial/clientserver.gif -share/doc/pgsql/tutorial/copyright.htm -share/doc/pgsql/tutorial/f17.htm -share/doc/pgsql/tutorial/index.html -share/doc/pgsql/tutorial/intro.htm -share/doc/pgsql/tutorial/intro172.htm -share/doc/pgsql/tutorial/intro300.htm -share/doc/pgsql/tutorial/intro56.htm -share/doc/pgsql/tutorial/notation.htm -share/doc/pgsql/tutorial/query.htm -share/doc/pgsql/tutorial/query1340.htm -share/doc/pgsql/tutorial/query1356.htm -share/doc/pgsql/tutorial/query1378.htm -share/doc/pgsql/tutorial/query1387.htm -share/doc/pgsql/tutorial/query1405.htm -share/doc/pgsql/tutorial/query1413.htm -share/doc/pgsql/tutorial/query1432.htm -share/doc/pgsql/tutorial/query1437.htm -share/doc/pgsql/tutorial/query1444.htm -share/doc/pgsql/tutorial/sql-language.htm -share/doc/pgsql/tutorial/sql.htm -share/doc/pgsql/tutorial/sql490.htm -share/doc/pgsql/tutorial/sql608.htm -share/doc/pgsql/tutorial/start.htm -share/doc/pgsql/tutorial/start1216.htm -share/doc/pgsql/tutorial/start1238.htm -share/doc/pgsql/tutorial/terminology.htm -share/doc/pgsql/tutorial/tutorial.htm -share/doc/pgsql/tutorial/tutorial.html -share/doc/pgsql/tutorial/y2k.htm -share/doc/pgsql/user/about.htm -share/doc/pgsql/user/app-createdb.htm -share/doc/pgsql/user/app-createlang.htm -share/doc/pgsql/user/app-createuser.htm -share/doc/pgsql/user/app-dropdb.htm -share/doc/pgsql/user/app-droplang.htm -share/doc/pgsql/user/app-dropuser.htm -share/doc/pgsql/user/app-ecpg.htm -share/doc/pgsql/user/app-initdb.htm -share/doc/pgsql/user/app-initlocation.htm -share/doc/pgsql/user/app-ipcclean.htm -share/doc/pgsql/user/app-pg-passwd.htm -share/doc/pgsql/user/app-pg-upgrade.htm -share/doc/pgsql/user/app-pgaccess.htm -share/doc/pgsql/user/app-pgadmin.htm -share/doc/pgsql/user/app-pgctl.htm -share/doc/pgsql/user/app-pgdump.htm -share/doc/pgsql/user/app-pgdumpall.htm -share/doc/pgsql/user/app-pgtclsh.htm -share/doc/pgsql/user/app-pgtksh.htm -share/doc/pgsql/user/app-postgres.htm -share/doc/pgsql/user/app-postmaster.htm -share/doc/pgsql/user/app-psql.htm -share/doc/pgsql/user/app-vacuumdb.htm -share/doc/pgsql/user/applications.htm -share/doc/pgsql/user/arrays.htm -share/doc/pgsql/user/biblio.htm -share/doc/pgsql/user/c4087.htm -share/doc/pgsql/user/c40874113.htm -share/doc/pgsql/user/c40874340.htm -share/doc/pgsql/user/c4358.htm -share/doc/pgsql/user/c43584371.htm -share/doc/pgsql/user/c4884.htm -share/doc/pgsql/user/c4929.htm -share/doc/pgsql/user/c49294939.htm -share/doc/pgsql/user/c49294943.htm -share/doc/pgsql/user/copyright.htm -share/doc/pgsql/user/datatype.htm -share/doc/pgsql/user/datatype1034.htm -share/doc/pgsql/user/datatype1066.htm -share/doc/pgsql/user/datatype1130.htm -share/doc/pgsql/user/datatype1645.htm -share/doc/pgsql/user/datatype1677.htm -share/doc/pgsql/user/datatype1916.htm -share/doc/pgsql/user/datetime-appendix.htm -share/doc/pgsql/user/datetime-appendix16981.htm -share/doc/pgsql/user/environ.htm -share/doc/pgsql/user/functions.htm -share/doc/pgsql/user/functions2589.htm -share/doc/pgsql/user/functions2729.htm -share/doc/pgsql/user/functions2872.htm -share/doc/pgsql/user/functions2972.htm -share/doc/pgsql/user/functions3439.htm -share/doc/pgsql/user/functions3637.htm -share/doc/pgsql/user/index.html -share/doc/pgsql/user/indices.htm -share/doc/pgsql/user/inherit.htm -share/doc/pgsql/user/intro.htm -share/doc/pgsql/user/intro172.htm -share/doc/pgsql/user/intro300.htm -share/doc/pgsql/user/intro56.htm -share/doc/pgsql/user/manage.htm -share/doc/pgsql/user/manage4810.htm -share/doc/pgsql/user/manage4834.htm -share/doc/pgsql/user/manage4876.htm -share/doc/pgsql/user/mvcc.htm -share/doc/pgsql/user/mvcc4564.htm -share/doc/pgsql/user/mvcc4617.htm -share/doc/pgsql/user/mvcc4629.htm -share/doc/pgsql/user/mvcc4642.htm -share/doc/pgsql/user/mvcc4719.htm -share/doc/pgsql/user/mvcc4740.htm -share/doc/pgsql/user/notation.htm -share/doc/pgsql/user/operators.htm -share/doc/pgsql/user/operators2123.htm -share/doc/pgsql/user/operators2194.htm -share/doc/pgsql/user/operators2263.htm -share/doc/pgsql/user/operators2373.htm -share/doc/pgsql/user/operators2432.htm -share/doc/pgsql/user/operators2486.htm -share/doc/pgsql/user/partial-index.htm -share/doc/pgsql/user/pl-perl.htm -share/doc/pgsql/user/pl-perl4529.htm -share/doc/pgsql/user/pl-perl4538.htm -share/doc/pgsql/user/preface.htm -share/doc/pgsql/user/sql-abort.htm -share/doc/pgsql/user/sql-altergroup.htm -share/doc/pgsql/user/sql-altertable.htm -share/doc/pgsql/user/sql-alteruser.htm -share/doc/pgsql/user/sql-begin.htm -share/doc/pgsql/user/sql-close.htm -share/doc/pgsql/user/sql-cluster.htm -share/doc/pgsql/user/sql-commands.htm -share/doc/pgsql/user/sql-comment.htm -share/doc/pgsql/user/sql-commit.htm -share/doc/pgsql/user/sql-copy.htm -share/doc/pgsql/user/sql-createaggregate.htm -share/doc/pgsql/user/sql-createconstraint.htm -share/doc/pgsql/user/sql-createdatabase.htm -share/doc/pgsql/user/sql-createfunction.htm -share/doc/pgsql/user/sql-creategroup.htm -share/doc/pgsql/user/sql-createindex.htm -share/doc/pgsql/user/sql-createlanguage.htm -share/doc/pgsql/user/sql-createoperator.htm -share/doc/pgsql/user/sql-createrule.htm -share/doc/pgsql/user/sql-createsequence.htm -share/doc/pgsql/user/sql-createtable.htm -share/doc/pgsql/user/sql-createtableas.htm -share/doc/pgsql/user/sql-createtrigger.htm -share/doc/pgsql/user/sql-createtype.htm -share/doc/pgsql/user/sql-createuser.htm -share/doc/pgsql/user/sql-createview.htm -share/doc/pgsql/user/sql-declare.htm -share/doc/pgsql/user/sql-delete.htm -share/doc/pgsql/user/sql-dropaggregate.htm -share/doc/pgsql/user/sql-dropdatabase.htm -share/doc/pgsql/user/sql-dropfunction.htm -share/doc/pgsql/user/sql-dropgroup.htm -share/doc/pgsql/user/sql-dropindex.htm -share/doc/pgsql/user/sql-droplanguage.htm -share/doc/pgsql/user/sql-dropoperator.htm -share/doc/pgsql/user/sql-droprule.htm -share/doc/pgsql/user/sql-dropsequence.htm -share/doc/pgsql/user/sql-droptable.htm -share/doc/pgsql/user/sql-droptrigger.htm -share/doc/pgsql/user/sql-droptype.htm -share/doc/pgsql/user/sql-dropuser.htm -share/doc/pgsql/user/sql-dropview.htm -share/doc/pgsql/user/sql-end.htm -share/doc/pgsql/user/sql-explain.htm -share/doc/pgsql/user/sql-fetch.htm -share/doc/pgsql/user/sql-grant.htm -share/doc/pgsql/user/sql-insert.htm -share/doc/pgsql/user/sql-listen.htm -share/doc/pgsql/user/sql-load.htm -share/doc/pgsql/user/sql-lock.htm -share/doc/pgsql/user/sql-move.htm -share/doc/pgsql/user/sql-notify.htm -share/doc/pgsql/user/sql-reindex.htm -share/doc/pgsql/user/sql-reset.htm -share/doc/pgsql/user/sql-revoke.htm -share/doc/pgsql/user/sql-rollback.htm -share/doc/pgsql/user/sql-select.htm -share/doc/pgsql/user/sql-selectinto.htm -share/doc/pgsql/user/sql-set.htm -share/doc/pgsql/user/sql-show.htm -share/doc/pgsql/user/sql-truncate.htm -share/doc/pgsql/user/sql-unlisten.htm -share/doc/pgsql/user/sql-update.htm -share/doc/pgsql/user/sql-vacuum.htm -share/doc/pgsql/user/storage.htm -share/doc/pgsql/user/syntax.htm -share/doc/pgsql/user/syntax515.htm -share/doc/pgsql/user/syntax521.htm -share/doc/pgsql/user/syntax539.htm -share/doc/pgsql/user/syntax604.htm -share/doc/pgsql/user/syntax649.htm -share/doc/pgsql/user/syntax654.htm -share/doc/pgsql/user/terminology.htm -share/doc/pgsql/user/typeconv.htm -share/doc/pgsql/user/typeconv3755.htm -share/doc/pgsql/user/typeconv3818.htm -share/doc/pgsql/user/typeconv3871.htm -share/doc/pgsql/user/typeconv3891.htm -share/doc/pgsql/user/user.htm -share/doc/pgsql/user/user.html -share/doc/pgsql/user/utilities.htm -share/doc/pgsql/user/y2k.htm -@dirrm share/doc/pgsql/admin -@dirrm share/doc/pgsql/postgres -@dirrm share/doc/pgsql/programmer -@dirrm share/doc/pgsql/tutorial -@dirrm share/doc/pgsql/user -@dirrm share/doc/pgsql diff --git a/databases/postgresql73-server/pkg-plist.jdbc b/databases/postgresql73-server/pkg-plist.jdbc deleted file mode 100644 index bef5d75506b4..000000000000 --- a/databases/postgresql73-server/pkg-plist.jdbc +++ /dev/null @@ -1,13 +0,0 @@ -share/examples/pgsql/jdbc/ImageViewer.java -share/examples/pgsql/jdbc/basic.java -share/examples/pgsql/jdbc/blobtest.java -share/examples/pgsql/jdbc/datestyle.java -share/examples/pgsql/jdbc/metadata.java -share/examples/pgsql/jdbc/psql.java -share/examples/pgsql/jdbc/threadsafe.java -share/examples/pgsql/jdbc/README -share/examples/pgsql/jdbc/README_6.3 -@dirrm share/examples/pgsql/jdbc -@dirrm share/examples/pgsql -share/java/classes/postgresql.jar -@unexec rmdir %D/share/java 2>/dev/null || true diff --git a/databases/postgresql73-server/pkg-plist.tcl b/databases/postgresql73-server/pkg-plist.tcl deleted file mode 100644 index b01eaf1571ed..000000000000 --- a/databases/postgresql73-server/pkg-plist.tcl +++ /dev/null @@ -1,141 +0,0 @@ -pgsql/bin/pgaccess -pgsql/bin/pgtclsh -pgsql/bin/pgtksh -pgsql/include/libpgtcl.h -pgsql/lib/libpgtcl.a -pgsql/lib/libpgtcl.so -pgsql/lib/libpgtcl.so.2 -pgsql/lib/pltcl.so -pgsql/pgaccess/images/icon_button.gif -pgsql/pgaccess/images/icon_checkbutton.gif -pgsql/pgaccess/images/icon_entry.gif -pgsql/pgaccess/images/icon_frame.gif -pgsql/pgaccess/images/icon_label.gif -pgsql/pgaccess/images/icon_listbox.gif -pgsql/pgaccess/images/icon_query.gif -pgsql/pgaccess/images/icon_radiobutton.gif -pgsql/pgaccess/images/icon_text.gif -pgsql/pgaccess/lib/database.tcl -pgsql/pgaccess/lib/forms.tcl -pgsql/pgaccess/lib/functions.tcl -pgsql/pgaccess/lib/help/abort.hlp -pgsql/pgaccess/lib/help/add_records.hlp -pgsql/pgaccess/lib/help/alter_table.hlp -pgsql/pgaccess/lib/help/alter_user.hlp -pgsql/pgaccess/lib/help/author.hlp -pgsql/pgaccess/lib/help/begin.hlp -pgsql/pgaccess/lib/help/close.hlp -pgsql/pgaccess/lib/help/cluster.hlp -pgsql/pgaccess/lib/help/commit.hlp -pgsql/pgaccess/lib/help/copy.hlp -pgsql/pgaccess/lib/help/copyrights.hlp -pgsql/pgaccess/lib/help/create_aggregate.hlp -pgsql/pgaccess/lib/help/create_database.hlp -pgsql/pgaccess/lib/help/create_function.hlp -pgsql/pgaccess/lib/help/create_index.hlp -pgsql/pgaccess/lib/help/create_language.hlp -pgsql/pgaccess/lib/help/create_operator.hlp -pgsql/pgaccess/lib/help/create_rule.hlp -pgsql/pgaccess/lib/help/create_sequence.hlp -pgsql/pgaccess/lib/help/create_table.hlp -pgsql/pgaccess/lib/help/create_table_as.hlp -pgsql/pgaccess/lib/help/create_trigger.hlp -pgsql/pgaccess/lib/help/create_type.hlp -pgsql/pgaccess/lib/help/create_user.hlp -pgsql/pgaccess/lib/help/create_view.hlp -pgsql/pgaccess/lib/help/data_types.hlp -pgsql/pgaccess/lib/help/datefunc.hlp -pgsql/pgaccess/lib/help/declare.hlp -pgsql/pgaccess/lib/help/delete.hlp -pgsql/pgaccess/lib/help/drop_aggregate.hlp -pgsql/pgaccess/lib/help/drop_database.hlp -pgsql/pgaccess/lib/help/drop_function.hlp -pgsql/pgaccess/lib/help/drop_index.hlp -pgsql/pgaccess/lib/help/drop_language.hlp -pgsql/pgaccess/lib/help/drop_operator.hlp -pgsql/pgaccess/lib/help/drop_rule.hlp -pgsql/pgaccess/lib/help/drop_sequence.hlp -pgsql/pgaccess/lib/help/drop_table.hlp -pgsql/pgaccess/lib/help/drop_trigger.hlp -pgsql/pgaccess/lib/help/drop_type.hlp -pgsql/pgaccess/lib/help/drop_user.hlp -pgsql/pgaccess/lib/help/drop_view.hlp -pgsql/pgaccess/lib/help/explain.hlp -pgsql/pgaccess/lib/help/fetch.hlp -pgsql/pgaccess/lib/help/form_design.hlp -pgsql/pgaccess/lib/help/forms.hlp -pgsql/pgaccess/lib/help/functions.hlp -pgsql/pgaccess/lib/help/geomfunc.hlp -pgsql/pgaccess/lib/help/grant.hlp -pgsql/pgaccess/lib/help/history.hlp -pgsql/pgaccess/lib/help/index.hlp -pgsql/pgaccess/lib/help/inheritance.hlp -pgsql/pgaccess/lib/help/insert.hlp -pgsql/pgaccess/lib/help/ipv4func.hlp -pgsql/pgaccess/lib/help/isolation.hlp -pgsql/pgaccess/lib/help/keywords.hlp -pgsql/pgaccess/lib/help/listen.hlp -pgsql/pgaccess/lib/help/load.hlp -pgsql/pgaccess/lib/help/lock.hlp -pgsql/pgaccess/lib/help/mathfunc.hlp -pgsql/pgaccess/lib/help/move.hlp -pgsql/pgaccess/lib/help/mvcc.hlp -pgsql/pgaccess/lib/help/new_query.hlp -pgsql/pgaccess/lib/help/new_table.hlp -pgsql/pgaccess/lib/help/notify.hlp -pgsql/pgaccess/lib/help/open_query.hlp -pgsql/pgaccess/lib/help/open_table.hlp -pgsql/pgaccess/lib/help/pgfunctions.hlp -pgsql/pgaccess/lib/help/postgresql.hlp -pgsql/pgaccess/lib/help/queries.hlp -pgsql/pgaccess/lib/help/reports.hlp -pgsql/pgaccess/lib/help/reset.hlp -pgsql/pgaccess/lib/help/revoke.hlp -pgsql/pgaccess/lib/help/rollback.hlp -pgsql/pgaccess/lib/help/schema.hlp -pgsql/pgaccess/lib/help/scripts.hlp -pgsql/pgaccess/lib/help/select.hlp -pgsql/pgaccess/lib/help/select_into.hlp -pgsql/pgaccess/lib/help/sequences.hlp -pgsql/pgaccess/lib/help/set.hlp -pgsql/pgaccess/lib/help/show.hlp -pgsql/pgaccess/lib/help/sql_guide.hlp -pgsql/pgaccess/lib/help/sqlfunc.hlp -pgsql/pgaccess/lib/help/stringfunc.hlp -pgsql/pgaccess/lib/help/tables.hlp -pgsql/pgaccess/lib/help/unlisten.hlp -pgsql/pgaccess/lib/help/update.hlp -pgsql/pgaccess/lib/help/users.hlp -pgsql/pgaccess/lib/help/vacuum.hlp -pgsql/pgaccess/lib/help/view_table_structure.hlp -pgsql/pgaccess/lib/help/views.hlp -pgsql/pgaccess/lib/help/visual_designer.hlp -pgsql/pgaccess/lib/help/y2k.hlp -pgsql/pgaccess/lib/help.tcl -pgsql/pgaccess/lib/languages/czech -pgsql/pgaccess/lib/languages/deutsch -pgsql/pgaccess/lib/languages/francais -pgsql/pgaccess/lib/languages/italiano -pgsql/pgaccess/lib/languages/magyar -pgsql/pgaccess/lib/languages/portugues -pgsql/pgaccess/lib/languages/romana -pgsql/pgaccess/lib/languages/russian.koi8r -pgsql/pgaccess/lib/languages/russian_win -pgsql/pgaccess/lib/languages/spanish -pgsql/pgaccess/lib/mainlib.tcl -pgsql/pgaccess/lib/preferences.tcl -pgsql/pgaccess/lib/queries.tcl -pgsql/pgaccess/lib/reports.tcl -pgsql/pgaccess/lib/schema.tcl -pgsql/pgaccess/lib/scripts.tcl -pgsql/pgaccess/lib/sequences.tcl -pgsql/pgaccess/lib/tables.tcl -pgsql/pgaccess/lib/users.tcl -pgsql/pgaccess/lib/views.tcl -pgsql/pgaccess/lib/visualqb.tcl -pgsql/pgaccess/main.tcl -@dirrm pgsql/pgaccess/images -@dirrm pgsql/pgaccess/lib/help -@dirrm pgsql/pgaccess/lib/languages -@dirrm pgsql/pgaccess/lib -@dirrm pgsql/pgaccess diff --git a/databases/postgresql73-server/scripts/configure b/databases/postgresql73-server/scripts/configure deleted file mode 100644 index 4a92ee450ebe..000000000000 --- a/databases/postgresql73-server/scripts/configure +++ /dev/null @@ -1,7 +0,0 @@ -#! /bin/sh - -# $FreeBSD$ - -cd $WRKSRC || exit 1 - -perl -pi -e "s=!!JAVA_HOME!!=${JAVA_HOME}=; s=!!PREFIX!!=${PREFIX}=" ${WRKSRC}/interfaces/jdbc/Makefile diff --git a/databases/postgresql73-server/scripts/createuser b/databases/postgresql73-server/scripts/createuser deleted file mode 100644 index 2abe201e7a4b..000000000000 --- a/databases/postgresql73-server/scripts/createuser +++ /dev/null @@ -1,50 +0,0 @@ -#!/usr/bin/perl -# - -eval '(exit $?0)' && eval 'exec /usr/bin/perl -S $0 ${1+"$@"}' -& eval 'exec /usr/bin/perl -S $0 $argv:q' -if 0; - -if( $> ) { - print "\nYou must be root to run this step!\n\n"; - exit 1; -} - -if( getpwnam( "pgsql" ) ) { - ( $null, $null, $pgUID ) = getpwnam( "pgsql" ); -} else { - $pgUID = 70; - while( getpwuid( $pgUID ) ) { - $pgUID++; - } -} - -if( getgrnam( "pgsql" ) ) { - ( $null, $null, $pgGID ) = getgrnam( "pgsql" ); -} else { - $pgGID = 70; - while( getgrgid( $pgGID ) ) { - $pgGID++; - } - &append_file( "/etc/group", "pgsql:*:$pgGID:" ); -} - -print "pgsql user using uid $pgUID\n"; -print "pgsql user using gid $pgGID\n"; - -system( "/usr/bin/chpass -a \"pgsql:*:$pgUID:$pgGID\:\:0:0:PostgreSQL pseudo-user:$ENV{'PREFIX'}/pgsql:/bin/sh\"" ); - -sub append_file { - local($file,@list) = @_; - local($LOCK_EX) = 2; - local($LOCK_NB) = 4; - local($LOCK_UN) = 8; - - open(F, ">> $file") || die "$file: $!\n"; - while( ! flock( F, $LOCK_EX | $LOCK_NB ) ) { - exit 1; - } - print F join( "\n", @list) . "\n"; - close F; - flock( F, $LOCK_UN ); -} diff --git a/databases/postgresql73/Makefile b/databases/postgresql73/Makefile deleted file mode 100644 index 94aa22cad135..000000000000 --- a/databases/postgresql73/Makefile +++ /dev/null @@ -1,259 +0,0 @@ -# New ports collection makefile for: PostgreSQL -# Date created: November 13, 1998 -# Whom: Marc G. Fournier <scrappy@FreeBSD.org> -# -# $FreeBSD$ -# - -PORTNAME= postgresql -PORTVERSION= 7.0.2 -CATEGORIES= databases -MASTER_SITES= ftp://ftp.postgresql.org/pub/%SUBDIR%/ \ - ftp://ftp.de.postgresql.org/%SUBDIR%/ \ - ftp://ftp.iodynamics.com/pub/mirror/postgresql/%SUBDIR%/ \ - ftp://ftp.digex.net/pub/packages/database/postgresql/%SUBDIR%/ \ - ftp://ftp.sunet.se/pub/unix/databases/relational/postgresql/%SUBDIR%/ -MASTER_SITE_SUBDIR= source/v${PORTVERSION} -DISTFILES= ${PORTNAME}-${PORTVERSION}.base${EXTRACT_SUFX} \ - ${PORTNAME}-${PORTVERSION}.support${EXTRACT_SUFX} \ - ${PORTNAME}-${PORTVERSION}.docs${EXTRACT_SUFX} -# ${PORTNAME}-${PORTVERSION}.test${EXTRACT_SUFX} -DIST_SUBDIR= postgresql - -MAINTAINER= andreas@FreeBSD.org - -.if ${MACHINE_ARCH} == "alpha" -BROKEN= doesn\'t build on the alpha yet -.endif - -Y2K= http://www.postgresql.org/y2k.html - -INSTALLS_SHLIB= YES -LDCONFIG_DIRS= %%PREFIX%%/pgsql/lib - -# if you want to use the tcl/tk frontend pgaccess, then you need to build -# postgresql with tcl support by typing: make -DWITH_TCL -.if defined(WITH_TCL) -TCL_INCDIR= ${LOCALBASE}/include/tcl8.3 -TK_INCDIR= ${LOCALBASE}/include/tk8.3 -MAKE_ENV= TCL_INCDIR=${TCL_INCDIR} -CONFIGURE_ENV= WISH=${LOCALBASE}/bin/wish8.3 -LIB_DEPENDS= tcl83.1:${PORTSDIR}/lang/tcl83 \ - tk83.1:${PORTSDIR}/x11-toolkits/tk83 -CONFIGURE_TCL= --with-tcl --with-tclconfig="${LOCALBASE}/lib/tcl8.3 ${LOCALBASE}/lib/tk8.3" -.endif - -# if you want to disable the multibyte support, type: -# make -DWITHOUT_MULTIBYTE -# -# if you want to set the default encoding for the multibyte support, type: -# make DEFAULT_ENCODING=<encoding> -# where <encoding> is one of these: -# SQL_ASCII LATIN1 LATIN2 LATIN3 LATIN4 LATIN5 -# EUC_JP EUC_CN EUC_KR EUC_TW KOI8 -# UNICODE MULE_INTERNAL WIN ALT -.if defined(WITHOUT_MULTIBYTE) -CONFIGURE_MULTIBYTE= # none -.elif defined(DEFAULT_ENCODING) -CONFIGURE_MULTIBYTE= --enable-multibyte="${DEFAULT_ENCODING}" -.else -CONFIGURE_MULTIBYTE= --enable-multibyte -.endif - -# if you want jdbc, type make -DWITH_JDBC -# Honors JAVA_HOME if you have it set, and don't want the dependency. -.if defined(WITH_JDBC) -JAVA_HOME?= ${LOCALBASE}/jdk1.1.8 -BUILD_DEPENDS= ${JAVA_HOME}/bin/javac:${PORTSDIR}/java/jdk -SCRIPTS_ENV+= JAVA_HOME=${JAVA_HOME} -.endif - -WRKSRC= ${WRKDIR}/${DISTNAME}/src -DOCDIR= ${WRKDIR}/${DISTNAME}/doc - -USE_GMAKE= YES -MAKEFILE= GNUmakefile -HAS_CONFIGURE= YES -CONFIGURE_ARGS= --prefix=${PREFIX}/pgsql \ - --enable-locale \ - --with-template=`uname -s | ${TR} '[A-Z]' '[a-z]'` \ - --with-includes="${PREFIX}/include ${TCL_INCDIR} ${TK_INCDIR}" \ - ${CONFIGURE_TCL} \ - ${CONFIGURE_MULTIBYTE} \ - --with-libraries=${PREFIX}/lib - -MAN1= createdb.1 createlang.1 createuser.1 dropdb.1 droplang.1 \ - dropuser.1 ecpg.1 initdb.1 initlocation.1 ipcclean.1 pg_ctl.1 \ - pg_dump.1 pg_dumpall.1 pg_passwd.1 pg_upgrade.1 pgaccess.1 \ - pgadmin.1 pgtclsh.1 pgtksh.1 postgres.1 postmaster.1 psql.1 \ - vacuumdb.1 -MANL= abort.l alter_group.l alter_table.l alter_user.l \ - begin.l close.l cluster.l comment.l commit.l copy.l \ - create_aggregate.l create_constraint_trigger.l \ - create_database.l create_function.l create_group.l \ - create_index.l create_language.l create_operator.l \ - create_rule.l create_sequence.l create_table.l \ - create_table_as.l create_trigger.l create_type.l \ - create_user.l create_view.l declare.l delete.l \ - drop_aggregate.l drop_database.l drop_function.l \ - drop_group.l drop_index.l drop_language.l \ - drop_operator.l drop_rule.l drop_sequence.l \ - drop_table.l drop_trigger.l drop_type.l drop_user.l \ - drop_view.l end.l explain.l fetch.l grant.l insert.l \ - listen.l load.l lock.l move.l notify.l reindex.l \ - reset.l revoke.l rollback.l select.l select_into.l \ - set.l show.l truncate.l unlisten.l update.l vacuum.l - -MANPREFIX= ${PREFIX}/pgsql - -pre-fetch: - @${ECHO_MSG} "To install and run postgresql you need to compile kernel with:" - @${ECHO_MSG} " options \"SYSVSHM, SYSVSEM, SYSVMSG\"" -.if !defined(WITH_TCL) - @${ECHO_MSG} "To build the \"PostgreSQL to Tcl interface library\", libpgtcl, type:" - @${ECHO_MSG} " make -DWITH_TCL" -.else - @${ECHO_MSG} "Building PostgreSQL with \"libpgtcl\"." -.endif -.if !defined(WITHOUT_MULTIBYTE) - @${ECHO_MSG} "To disable multibyte support, type:" - @${ECHO_MSG} " make -DWITHOUT_MULTIBYTE" -.if !defined(DEFAULT_ENCODING) - @${ECHO_MSG} "To set the default encoding for the multibyte support, type:" - @${ECHO_MSG} " make DEFAULT_ENCODING=<encoding>" - @${ECHO_MSG} "where <encoding> is one of these:" - @${ECHO_MSG} " SQL_ASCII LATIN1 LATIN2 LATIN3 LATIN4 LATIN5" - @${ECHO_MSG} " EUC_JP EUC_CN EUC_KR EUC_TW KOI8" - @${ECHO_MSG} " UNICODE MULE_INTERNAL WIN ALT" -.else - @${ECHO_MSG} "The default encoding is '${DEFAULT_ENCODING}'." -.endif -.else - @${ECHO_MSG} "Building PostgreSQL without multibyte support." -.endif -.if !defined(WITH_JDBC) - @${ECHO_MSG} "To build Java (JDBC) support, type:" - @${ECHO_MSG} " make -DWITH_JDBC" -.else - @${ECHO_MSG} "Building PostgreSQL with \"postgresql.jar\"." -.endif - -post-patch: - @ ${MV} ${WRKSRC}/template/freebsd ${WRKSRC}/template/freebsd.orig - @ ${SED} -e 's#CFLAGS:-O2 -m486 -pipe#CFLAGS:${CFLAGS}#' \ - -e 's#USE_LOCALE:no#USE_LOCALE:yes#' \ - ${WRKSRC}/template/freebsd.orig >> ${WRKSRC}/template/freebsd - @ ${MV} ${WRKSRC}/Makefile.global.in ${WRKSRC}/Makefile.global.in.old - @ ${SED} -e 's=!!PREFIX!!=${PREFIX}=g' \ - ${WRKSRC}/Makefile.global.in.old \ - >> ${WRKSRC}/Makefile.global.in - -post-build: -.if defined(WITH_JDBC) - @ cd ${WRKSRC}/interfaces/jdbc && ${GMAKE} -.if !defined(NOPORTDOCS) - @ cd ${WRKSRC}/interfaces/jdbc && ${GMAKE} examples -.endif -.endif - @ ${ECHO} "------------------------------------------------------------" - @ ${ECHO} "Dump existing databases, before installing new db version !!" - @ ${ECHO} "Detailed instructions, see" - @ ${ECHO} "${WRKDIR}/${DISTNAME}/INSTALL" - @ ${ECHO} "------------------------------------------------------------" - -pre-install: -.if defined(PACKAGE_BUILDING) - ${RM} -rf ${PREFIX}/pgsql -.endif - @ ${MKDIR} ${PREFIX}/pgsql - @ ${SETENV} ${MAKE_ENV} perl ${SCRIPTDIR}/createuser - -post-install: -.if defined(NOPORTDOCS) - @ ( cd ${DOCDIR}; ${GMAKE} man ) -.else - @ ( cd ${DOCDIR}; ${GMAKE} install ) -.endif - @ if [ ! -f ${PREFIX}/pgsql/.profile ]; then \ - ${ECHO} "PATH=${PATH}:${PREFIX}/pgsql/bin" \ - > ${PREFIX}/pgsql/.profile; \ - ${ECHO} "MANPATH=${MANPATH}:${PREFIX}/pgsql/man" \ - >> ${PREFIX}/pgsql/.profile; \ - ${ECHO} "PGLIB=${PREFIX}/pgsql/lib" \ - >> ${PREFIX}/pgsql/.profile; \ - ${ECHO} "# note: PGDATA overwrites the -D startup option" \ - >> ${PREFIX}/pgsql/.profile; \ - ${ECHO} "PGDATA=${PREFIX}/pgsql/data" \ - >> ${PREFIX}/pgsql/.profile; \ - ${ECHO} "DISPLAY=:0" \ - >> ${PREFIX}/pgsql/.profile; \ - ${ECHO} "export PATH MANPATH PGLIB PGDATA DISPLAY" \ - >> ${PREFIX}/pgsql/.profile; \ - ${ECHO} "# if you want to make regression tests use this TZ" \ - >> ${PREFIX}/pgsql/.profile; \ - ${ECHO} "#TZ=PST8PDT" \ - >> ${PREFIX}/pgsql/.profile; \ - ${ECHO} "#export TZ" \ - >> ${PREFIX}/pgsql/.profile; \ - fi - @ ${CHOWN} -R pgsql:pgsql ${PREFIX}/pgsql - @ ${ECHO} 'Initializing PostgreSQL Databases - this may take a few minutes...' - @ ${SETENV} OBJFORMAT=${PORTOBJFORMAT} ${LDCONFIG} -m ${PREFIX}/pgsql/lib - @ su -l pgsql -c 'PATH=${PREFIX}/pgsql/bin:${PATH} LD_LIBRARY_PATH=${PREFIX}/pgsql/lib ${PREFIX}/pgsql/bin/initdb --pglib=${PREFIX}/pgsql/lib --pgdata=${PREFIX}/pgsql/data' - @ ${SED} -e "s=!!PREFIX!!=${PREFIX}=g" < ${FILESDIR}/pgsql.sh.tmpl \ - > ${PREFIX}/etc/rc.d/pgsql.sh - @ ${CHMOD} 554 ${PREFIX}/etc/rc.d/pgsql.sh - @ ${CHOWN} root.pgsql ${PREFIX}/etc/rc.d/pgsql.sh - @ ${INSTALL_DATA} ${FILESDIR}/post-install-notes ${PREFIX}/pgsql -.if defined(WITHOUT_MULTIBYTE) - @${CP} ${TMPPLIST} ${TMPPLIST}.nomulti - @${GREP} -v pgsql/bin/pg_encoding ${TMPPLIST}.nomulti > ${TMPPLIST} -.endif -.if defined(WITH_TCL) - @${CP} ${TMPPLIST} ${TMPPLIST}.notcl - @${CAT} ${PKGDIR}/PLIST.tcl ${TMPPLIST}.notcl > ${TMPPLIST} - @${RM} ${TMPPLIST}.notcl -.endif -.if defined(WITH_JDBC) - @ ${MKDIR} -m 0555 ${PREFIX}/share/java/classes - @ ${INSTALL_DATA} ${WRKSRC}/interfaces/jdbc/postgresql.jar \ - ${PREFIX}/share/java/classes/postgresql.jar - @ ${ECHO_MSG} "---------------------------------------------------------" - @ ${ECHO_MSG} "Putting postgresql.jar in" - @ ${ECHO_MSG} "${PREFIX}/share/java/classes/postgresql.jar" - @ ${ECHO_MSG} "Add this to your CLASSPATH!" - @ ${ECHO_MSG} "ALSO NOTE: path inside jar file modified from 6.5.x:" - @ ${ECHO_MSG} " 'postgresql.*' -> 'org.postgresql.*'!" - @ ${ECHO_MSG} "You will need to modify you applications' props files." - @ ${ECHO_MSG} "---------------------------------------------------------" - @ ${CAT} ${PKGDIR}/PLIST.jdbc >> ${TMPPLIST} -.if !defined(NOPORTDOCS) - @ ${MKDIR} -m 0555 ${PREFIX}/share/examples/pgsql/jdbc - @ ${INSTALL_DATA} ${WRKSRC}/interfaces/jdbc/example/*java \ - ${PREFIX}/share/examples/pgsql/jdbc - @ ${INSTALL_DATA} ${WRKSRC}/interfaces/jdbc/README* \ - ${PREFIX}/share/examples/pgsql/jdbc - @ ${ECHO_MSG} "---------------------------------------------------------" - @ ${ECHO_MSG} "Putting jdbc examples into ${PREFIX}/share/examples/pgsql" - @ ${ECHO_MSG} "---------------------------------------------------------" - @ ${CAT} ${PKGDIR}/PLIST.doc >> ${TMPPLIST} -.endif -.endif -.if !defined(NOPORTDOCS) - ${MKDIR} ${PREFIX}/share/doc/pgsql - @ ${GMAKE} -C ${WRKDIR}/${DISTNAME}/doc install - ${INSTALL_MAN} ${WRKDIR}/${DISTNAME}/doc/FAQ* ${PREFIX}/share/doc/pgsql - ${INSTALL_MAN} ${WRKDIR}/${DISTNAME}/doc/README* ${PREFIX}/share/doc/pgsql - ${INSTALL_MAN} ${WRKDIR}/${DISTNAME}/doc/TODO ${PREFIX}/share/doc/pgsql -# ${INSTALL_MAN} ${WRKDIR}/${DISTNAME}/doc/*ps.gz ${PREFIX}/share/doc/pgsql -.endif -.if !defined(BATCH) - @ more -e ${FILESDIR}/post-install-notes -.endif -.if !defined(DEBUG_FLAGS) -.for file in ecpg pg_dump pg_id pg_passwd pg_version postgres psql - @ strip ${PREFIX}/pgsql/bin/${file} -.endfor -.endif - -.include <bsd.port.mk> diff --git a/databases/postgresql73/distinfo b/databases/postgresql73/distinfo deleted file mode 100644 index 309ea1e11614..000000000000 --- a/databases/postgresql73/distinfo +++ /dev/null @@ -1,4 +0,0 @@ -MD5 (postgresql/postgresql-7.0.2.base.tar.gz) = 871d23b85d9a3599a7ed75dfc7da7ba7 -MD5 (postgresql/postgresql-7.0.2.support.tar.gz) = c21180a6485d85785c8e69f0cbff05dd -MD5 (postgresql/postgresql-7.0.2.docs.tar.gz) = efac1f87463f252e54d72b256885b883 -MD5 (postgresql/postgresql-7.0.2.test.tar.gz) = 3443b3d83194c396f20aee2adc6f93bf diff --git a/databases/postgresql73/files/patch-aj b/databases/postgresql73/files/patch-aj deleted file mode 100644 index 4231fc94ede9..000000000000 --- a/databases/postgresql73/files/patch-aj +++ /dev/null @@ -1,67 +0,0 @@ ---- bin/pg_passwd/pg_passwd.c.orig Mon Apr 17 05:45:18 2000 -+++ bin/pg_passwd/pg_passwd.c Sat May 20 17:54:59 2000 -@@ -18,11 +18,15 @@ - - #endif - -+#ifndef _POSIX_SOURCE -+# define _PASSWORD_LEN 128 /* max length, not containing NULL */ -+#endif -+ - char *comname; - static void usage(FILE *stream); - static void read_pwd_file(char *filename); - static void write_pwd_file(char *filename, char *bkname); --static void encrypt_pwd(char key[9], char salt[3], char passwd[14]); -+static void encrypt_pwd(char key[9], char salt[3], char passwd[_PASSWORD_LEN+1]); - static void prompt_for_username(char *username); - static void prompt_for_password(char *prompt, char *password); - -@@ -150,7 +154,7 @@ - - if (q != NULL) - *(q++) = '\0'; -- if (strlen(p) != 13) -+ if (strlen(p) > _PASSWORD_LEN) - { - fprintf(stderr, "WARNING: %s: line %d: illegal password length.\n", - filename, npwds + 1); -@@ -214,7 +218,7 @@ - } - - static void --encrypt_pwd(char key[9], char salt[3], char passwd[14]) -+encrypt_pwd(char key[9], char salt[3], char passwd[_PASSWORD_LEN+1]) - { - int n; - -@@ -246,9 +250,9 @@ - - #ifdef NOT_USED - static int --check_pwd(char key[9], char passwd[14]) -+check_pwd(char key[9], char passwd[_PASSWORD_LEN+1]) - { -- char shouldbe[14]; -+ char shouldbe[_PASSWORD_LEN+1]; - char salt[3]; - - salt[0] = passwd[0]; -@@ -256,7 +260,7 @@ - salt[2] = '\0'; - encrypt_pwd(key, salt, shouldbe); - -- return strncmp(shouldbe, passwd, 13) == 0 ? 1 : 0; -+ return strncmp(shouldbe, passwd, _PASSWORD_LEN) == 0 ? 1 : 0; - } - - #endif -@@ -332,7 +336,7 @@ - char salt[3]; - char key[9], - key2[9]; -- char e_passwd[14]; -+ char e_passwd[_PASSWORD_LEN+1]; - int i; - - comname = argv[0]; diff --git a/databases/postgresql73/files/patch-ar b/databases/postgresql73/files/patch-ar deleted file mode 100644 index c5c8096fc141..000000000000 --- a/databases/postgresql73/files/patch-ar +++ /dev/null @@ -1,11 +0,0 @@ ---- configure.orig Sun Oct 10 14:37:07 1999 -+++ configure Sun Oct 10 14:37:29 1999 -@@ -1429,7 +1429,7 @@ - ELF_SYS=true - else - rm -rf conftest* -- if test "X$elf" = "Xyes" -+ if test "X$PORTOBJFORMAT" = "Xelf" - then - ELF_SYS=true - else diff --git a/databases/postgresql73/files/patch-as b/databases/postgresql73/files/patch-as deleted file mode 100644 index 3282168c4aed..000000000000 --- a/databases/postgresql73/files/patch-as +++ /dev/null @@ -1,11 +0,0 @@ ---- Makefile.global.in.orig Sun Dec 6 00:08:56 1998 -+++ Makefile.global.in Sat Feb 27 04:23:12 1999 -@@ -79,7 +79,7 @@ - POSTMANDIR= $(POSTGRESDIR)/man - - # Where the formatted documents (e.g., the reference manual) get installed. --POSTDOCDIR= $(POSTGRESDIR)/doc -+POSTDOCDIR= !!PREFIX!!/share/doc/pgsql - - # Where the header files necessary to build frontend programs get installed. - HEADERDIR= $(POSTGRESDIR)/include diff --git a/databases/postgresql73/files/patch-at b/databases/postgresql73/files/patch-at deleted file mode 100644 index 93e68a708211..000000000000 --- a/databases/postgresql73/files/patch-at +++ /dev/null @@ -1,11 +0,0 @@ ---- ../doc/Makefile.orig Sun Nov 29 06:30:13 1998 -+++ ../doc/Makefile Mon Jun 21 17:00:13 1999 -@@ -12,7 +12,7 @@ - # - #---------------------------------------------------------------------------- - --PGDOCS= $(POSTGRESDIR)/doc -+PGDOCS= $(POSTDOCDIR) - SRCDIR= ../src - - TAR= tar diff --git a/databases/postgresql73/files/patch-ba b/databases/postgresql73/files/patch-ba deleted file mode 100644 index a3b679b882c5..000000000000 --- a/databases/postgresql73/files/patch-ba +++ /dev/null @@ -1,25 +0,0 @@ ---- interfaces/jdbc/Makefile.orig Tue Mar 14 16:55:17 2000 -+++ interfaces/jdbc/Makefile Sun Apr 16 21:16:43 2000 -@@ -10,10 +10,10 @@ - - FIND = find - IDL2JAVA = idltojava -fno-cpp -fno-tie --JAR = jar --JAVA = java --JAVAC = javac -g --JAVADOC = javadoc -+JAR = !!JAVA_HOME!!/bin/jar -+JAVA = !!JAVA_HOME!!/bin/java -+JAVAC = !!JAVA_HOME!!/bin/javac -+JAVADOC = !!JAVA_HOME!!/bin/javadoc - RM = rm -f - TOUCH = touch - -@@ -40,6 +40,7 @@ - @echo To compile, type: - @echo " $(MAKE) jdbc2" - @echo ------------------------------------------------------------ -+ $(MAKE) jdbc1 - - msg: - @echo ------------------------------------------------------------ diff --git a/databases/postgresql73/files/patch-bb b/databases/postgresql73/files/patch-bb deleted file mode 100644 index ea0f1732dcb0..000000000000 --- a/databases/postgresql73/files/patch-bb +++ /dev/null @@ -1,13 +0,0 @@ ---- pl/tcl/Makefile~ Sat Apr 29 19:45:42 2000 -+++ pl/tcl/Makefile Sat May 20 22:42:22 2000 -@@ -71,7 +71,9 @@ - CFLAGS+= $(TCL_SHLIB_CFLAGS) $(TCL_DEFS) - - CFLAGS+= -I$(SRCDIR)/include -I$(SRCDIR)/backend $(PGSQL_INCLUDES) -- -+ -+CFLAGS+= -I$(TCL_INCDIR) -+ - # - # Uncomment the following to enable the unknown command lookup - # on the first of all calls to the call handler. See the doc diff --git a/databases/postgresql73/files/patch-bc b/databases/postgresql73/files/patch-bc deleted file mode 100644 index ff747fb84a2f..000000000000 --- a/databases/postgresql73/files/patch-bc +++ /dev/null @@ -1,5 +0,0 @@ ---- bin/pg_ctl/postmaster.opts.default.sample~ Mon Apr 17 05:45:17 2000 -+++ bin/pg_ctl/postmaster.opts.default.sample Tue May 23 02:46:30 2000 -@@ -1 +1 @@ -- -+-i -o "-F" diff --git a/databases/postgresql73/files/pgsql.sh.tmpl b/databases/postgresql73/files/pgsql.sh.tmpl deleted file mode 100644 index e1673b4850c2..000000000000 --- a/databases/postgresql73/files/pgsql.sh.tmpl +++ /dev/null @@ -1,34 +0,0 @@ -#!/bin/sh - -# $FreeBSD$ -# -# For postmaster startup options, edit $PGDATA/postmaster.opts.default -# Preinstalled options are -i -o "-F" - -case $1 in -start) - [ -d !!PREFIX!!/pgsql/lib ] && /sbin/ldconfig -m !!PREFIX!!/pgsql/lib - [ -x !!PREFIX!!/pgsql/bin/pg_ctl ] && { - su -l pgsql -c \ - 'exec !!PREFIX!!/pgsql/bin/pg_ctl -w start > !!PREFIX!!/pgsql/errlog 2>&1' - echo -n ' pgsql' - } - ;; - -stop) - [ -x !!PREFIX!!/pgsql/bin/pg_ctl ] && { - su -l pgsql -c 'exec !!PREFIX!!/pgsql/bin/pg_ctl -w -m fast stop' - } - ;; - -status) - [ -x !!PREFIX!!/pgsql/bin/pg_ctl ] && { - su -l pgsql -c 'exec !!PREFIX!!/pgsql/bin/pg_ctl status' - } - ;; - -*) - echo "usage: `basename $0` {start|stop|status}" >&2 - exit 64 - ;; -esac diff --git a/databases/postgresql73/files/post-install-notes b/databases/postgresql73/files/post-install-notes deleted file mode 100644 index 289a7651109a..000000000000 --- a/databases/postgresql73/files/post-install-notes +++ /dev/null @@ -1,16 +0,0 @@ - -Now that PostgreSQL is installed, you should read the documentation and -implementation guides. These can be found at: - - http://www.PostgreSQL.org/docs - -You may wish to subscribe to the PostgreSQL user-support mailing list. -Send an e-mail to pgsql-questions-request@postgresql.org with the -text "subscribe" in the message body. - -If you built PostgreSQL with TCL support, you can install the port -"pgaccess" to get a TCL/TK based database frontend for database -operations. - -To start PostgreSQL, run the startup script: -$PREFIX/etc/rc.d/pgsql.sh start diff --git a/databases/postgresql73/pkg-comment b/databases/postgresql73/pkg-comment deleted file mode 100644 index 2125016b133c..000000000000 --- a/databases/postgresql73/pkg-comment +++ /dev/null @@ -1 +0,0 @@ -A robust, next generation, object-relational DBMS diff --git a/databases/postgresql73/pkg-descr b/databases/postgresql73/pkg-descr deleted file mode 100644 index f48a33337e55..000000000000 --- a/databases/postgresql73/pkg-descr +++ /dev/null @@ -1,24 +0,0 @@ -PostgreSQL is a robust, next-generation, Object-Relational DBMS (ORDBMS), -derived from the Berkeley Postgres database management system. While -PostgreSQL retains the powerful object-relational data model, rich data types -and easy extensibility of Postgres, it replaces the PostQuel query language -with an extended subset of SQL. - -The original Postgres code was the effort of many graduate students, -undergraduate students, and staff programmers working under the direction of -Professor Michael Stonebraker at the University of California, Berkeley. In -1995, Andrew Yu and Jolly Chen took on the task of converting the DBMS query -language to SQL and created a new database system which came to known as -Postgres95. Many others contributed to the porting, testing, debugging and -enhancement of the Postgres95 code. As the code improved, and 1995 faded into -memory, PostgreSQL was born. - -PostgreSQL development is presently being performed by a team of Internet -developers who are now responsible for all current and future development. The -development team coordinator is Marc G. Fournier (scrappy@PostgreSQL.ORG). -Support is available from the PostgreSQL developer/user community through the -support mailing list (questions@PostgreSQL.ORG). - -PostgreSQL is free and the complete source is available. - -WWW: http://www.postgresql.org diff --git a/databases/postgresql73/pkg-install b/databases/postgresql73/pkg-install deleted file mode 100644 index 7f3a090fe4b6..000000000000 --- a/databases/postgresql73/pkg-install +++ /dev/null @@ -1,44 +0,0 @@ -#! /bin/sh - -# $FreeBSD$ - -PATH=/bin:/usr/sbin - -if [ -z "${DB_DIR}" ]; then - DB_DIR=${PKG_PREFIX}/pgsql/data -fi - -case $2 in -POST-INSTALL) - USER=pgsql - GROUP=${USER} - UID=89 - GID=${UID} - - if pw group show "${GROUP}" 2>/dev/null; then - echo "You already have a group \"${GROUP}\", so I will use it." - else - if pw groupadd ${GROUP} -g ${GID}; then - echo "Added group \"${GROUP}\"." - else - echo "Adding group \"${GROUP}\" failed..." - exit 1 - fi - fi - - if pw user show "${USER}" 2>/dev/null; then - echo "You already have a user \"${USER}\", so I will use it." - else - if pw useradd ${USER} -u ${UID} -g ${GROUP} -h - \ - -d ${DB_DIR} -s /sbin/nologin -c "PostgreSQL Daemon" - then - echo "Added user \"${USER}\"." - else - echo "Adding user \"${USER}\" failed..." - exit 1 - fi - fi - - chown -R ${USER}.${GROUP} ${DB_DIR} - ;; -esac diff --git a/databases/postgresql73/pkg-plist b/databases/postgresql73/pkg-plist deleted file mode 100644 index 9992da1174ae..000000000000 --- a/databases/postgresql73/pkg-plist +++ /dev/null @@ -1,168 +0,0 @@ -etc/rc.d/pgsql.sh -pgsql/.profile -pgsql/bin/createdb -pgsql/bin/createlang -pgsql/bin/createuser -pgsql/bin/dropdb -pgsql/bin/droplang -pgsql/bin/dropuser -pgsql/bin/ecpg -pgsql/bin/initdb -pgsql/bin/initlocation -pgsql/bin/ipcclean -pgsql/bin/pg_ctl -pgsql/bin/pg_dump -pgsql/bin/pg_dumpall -pgsql/bin/pg_encoding -pgsql/bin/pg_id -pgsql/bin/pg_passwd -pgsql/bin/pg_upgrade -pgsql/bin/pg_version -pgsql/bin/postgres -pgsql/bin/postmaster -pgsql/bin/psql -pgsql/bin/vacuumdb -pgsql/data/PG_VERSION -pgsql/data/base/template1/PG_VERSION -pgsql/data/base/template1/pg_aggregate -pgsql/data/base/template1/pg_aggregate_name_type_index -pgsql/data/base/template1/pg_am -pgsql/data/base/template1/pg_am_name_index -pgsql/data/base/template1/pg_amop -pgsql/data/base/template1/pg_amop_opid_index -pgsql/data/base/template1/pg_amop_strategy_index -pgsql/data/base/template1/pg_amproc -pgsql/data/base/template1/pg_attrdef -pgsql/data/base/template1/pg_attrdef_adrelid_index -pgsql/data/base/template1/pg_attribute -pgsql/data/base/template1/pg_attribute_relid_attnam_index -pgsql/data/base/template1/pg_attribute_relid_attnum_index -pgsql/data/base/template1/pg_class -pgsql/data/base/template1/pg_class_oid_index -pgsql/data/base/template1/pg_class_relname_index -pgsql/data/base/template1/pg_description -pgsql/data/base/template1/pg_description_objoid_index -pgsql/data/base/template1/pg_index -pgsql/data/base/template1/pg_index_indexrelid_index -pgsql/data/base/template1/pg_indexes -pgsql/data/base/template1/pg_inheritproc -pgsql/data/base/template1/pg_inherits -pgsql/data/base/template1/pg_inherits_relid_seqno_index -pgsql/data/base/template1/pg_ipl -pgsql/data/base/template1/pg_language -pgsql/data/base/template1/pg_language_name_index -pgsql/data/base/template1/pg_language_oid_index -pgsql/data/base/template1/pg_listener -pgsql/data/base/template1/pg_listener_relname_pid_index -pgsql/data/base/template1/pg_opclass -pgsql/data/base/template1/pg_opclass_deftype_index -pgsql/data/base/template1/pg_opclass_name_index -pgsql/data/base/template1/pg_operator -pgsql/data/base/template1/pg_operator_oid_index -pgsql/data/base/template1/pg_operator_oprname_l_r_k_index -pgsql/data/base/template1/pg_proc -pgsql/data/base/template1/pg_proc_oid_index -pgsql/data/base/template1/pg_proc_proname_narg_type_index -pgsql/data/base/template1/pg_relcheck -pgsql/data/base/template1/pg_relcheck_rcrelid_index -pgsql/data/base/template1/pg_rewrite -pgsql/data/base/template1/pg_rewrite_oid_index -pgsql/data/base/template1/pg_rewrite_rulename_index -pgsql/data/base/template1/pg_rules -pgsql/data/base/template1/pg_statistic -pgsql/data/base/template1/pg_statistic_relid_att_index -pgsql/data/base/template1/pg_tables -pgsql/data/base/template1/pg_trigger -pgsql/data/base/template1/pg_trigger_tgconstrname_index -pgsql/data/base/template1/pg_trigger_tgconstrrelid_index -pgsql/data/base/template1/pg_trigger_tgrelid_index -pgsql/data/base/template1/pg_type -pgsql/data/base/template1/pg_type_oid_index -pgsql/data/base/template1/pg_type_typname_index -pgsql/data/base/template1/pg_user -pgsql/data/base/template1/pg_views -pgsql/data/pg_control -pgsql/data/pg_database -pgsql/data/pg_geqo.sample -pgsql/data/pg_group -pgsql/data/pg_group_name_index -pgsql/data/pg_group_sysid_index -pgsql/data/pg_hba.conf -pgsql/data/pg_log -pgsql/data/pg_shadow -pgsql/data/pg_variable -pgsql/data/postmaster.opts.default -pgsql/include/access/attnum.h -pgsql/include/c.h -pgsql/include/commands/trigger.h -pgsql/include/config.h -pgsql/include/ecpgerrno.h -pgsql/include/ecpglib.h -pgsql/include/ecpgtype.h -pgsql/include/executor/spi.h -pgsql/include/fmgr.h -pgsql/include/lib/dllist.h -pgsql/include/libpgeasy.h -pgsql/include/libpq/libpq-fs.h -pgsql/include/libpq/pqcomm.h -pgsql/include/libpq++/pgconnection.h -pgsql/include/libpq++/pgcursordb.h -pgsql/include/libpq++/pgdatabase.h -pgsql/include/libpq++/pglobject.h -pgsql/include/libpq++/pgtransdb.h -pgsql/include/libpq++.h -pgsql/include/libpq-fe.h -pgsql/include/libpq-int.h -pgsql/include/os.h -pgsql/include/postgres.h -pgsql/include/postgres_ext.h -pgsql/include/pqexpbuffer.h -pgsql/include/sql3types.h -pgsql/include/sqlca.h -pgsql/include/utils/elog.h -pgsql/include/utils/geo_decls.h -pgsql/include/utils/mcxt.h -pgsql/include/utils/palloc.h -pgsql/lib/global1.bki.source -pgsql/lib/global1.description -pgsql/lib/libecpg.a -pgsql/lib/libecpg.so -pgsql/lib/libecpg.so.3 -pgsql/lib/libpgeasy.a -pgsql/lib/libpgeasy.so -pgsql/lib/libpgeasy.so.2 -pgsql/lib/libpq++.a -pgsql/lib/libpq++.so -pgsql/lib/libpq++.so.3 -pgsql/lib/libpq.a -pgsql/lib/libpq.so -pgsql/lib/libpq.so.2 -pgsql/lib/local1_template1.bki.source -pgsql/lib/local1_template1.description -pgsql/lib/pg_geqo.sample -pgsql/lib/pg_hba.conf.sample -pgsql/lib/pg_ident.conf.sample -pgsql/lib/pg_options.sample -pgsql/lib/plpgsql.so -pgsql/lib/postmaster.opts.default.sample -pgsql/post-install-notes -@dirrm pgsql/bin -@dirrm pgsql/data/base/template1 -@dirrm pgsql/data/base -@dirrm pgsql/data/pg_xlog -@dirrm pgsql/data -@dirrm pgsql/include/access -@dirrm pgsql/include/commands -@dirrm pgsql/include/executor -@dirrm pgsql/include/lib -@dirrm pgsql/include/libpq -@dirrm pgsql/include/libpq++ -@dirrm pgsql/include/port/freebsd -@dirrm pgsql/include/port -@dirrm pgsql/include/utils -@dirrm pgsql/include -@dirrm pgsql/lib -@dirrm pgsql/man/man1 -@dirrm pgsql/man/manl -@dirrm pgsql/man -@dirrm pgsql diff --git a/databases/postgresql73/pkg-plist.doc b/databases/postgresql73/pkg-plist.doc deleted file mode 100644 index 06b7bd9ea116..000000000000 --- a/databases/postgresql73/pkg-plist.doc +++ /dev/null @@ -1,888 +0,0 @@ -share/doc/pgsql/FAQ -share/doc/pgsql/FAQ_AIX -share/doc/pgsql/FAQ_BSDI -share/doc/pgsql/FAQ_DEV -share/doc/pgsql/FAQ_DigitalUnix -share/doc/pgsql/FAQ_FreeBSD -share/doc/pgsql/FAQ_HPUX -share/doc/pgsql/FAQ_Irix -share/doc/pgsql/FAQ_Linux -share/doc/pgsql/FAQ_QNX4 -share/doc/pgsql/FAQ_SCO -share/doc/pgsql/FAQ_Solaris -share/doc/pgsql/README.Charsets -share/doc/pgsql/README.NT -share/doc/pgsql/README.fsync -share/doc/pgsql/README.inet -share/doc/pgsql/README.locale -share/doc/pgsql/README.mb -share/doc/pgsql/README.mb.jp -share/doc/pgsql/TODO -share/doc/pgsql/admin/admin.htm -share/doc/pgsql/admin/admin.html -share/doc/pgsql/admin/biblio.htm -share/doc/pgsql/admin/c573.htm -share/doc/pgsql/admin/c573602.htm -share/doc/pgsql/admin/c573680.htm -share/doc/pgsql/admin/c573717.htm -share/doc/pgsql/admin/copyright.htm -share/doc/pgsql/admin/disk.htm -share/doc/pgsql/admin/index.html -share/doc/pgsql/admin/install-win32.htm -share/doc/pgsql/admin/install-win321073.htm -share/doc/pgsql/admin/install-win321082.htm -share/doc/pgsql/admin/install.htm -share/doc/pgsql/admin/install855.htm -share/doc/pgsql/admin/intro-ag.htm -share/doc/pgsql/admin/intro-ag162.htm -share/doc/pgsql/admin/layout.gif -share/doc/pgsql/admin/layout.htm -share/doc/pgsql/admin/manage-ag.htm -share/doc/pgsql/admin/manage-ag1604.htm -share/doc/pgsql/admin/manage-ag1646.htm -share/doc/pgsql/admin/manage-ag1655.htm -share/doc/pgsql/admin/newuser.htm -share/doc/pgsql/admin/notation.htm -share/doc/pgsql/admin/pg-options.htm -share/doc/pgsql/admin/ports.htm -share/doc/pgsql/admin/ports481.htm -share/doc/pgsql/admin/postmaster.htm -share/doc/pgsql/admin/preface.htm -share/doc/pgsql/admin/recovery.htm -share/doc/pgsql/admin/regress.htm -share/doc/pgsql/admin/regress1861.htm -share/doc/pgsql/admin/regress1895.htm -share/doc/pgsql/admin/regress1941.htm -share/doc/pgsql/admin/release.htm -share/doc/pgsql/admin/release2009.htm -share/doc/pgsql/admin/release2020.htm -share/doc/pgsql/admin/release2031.htm -share/doc/pgsql/admin/release2042.htm -share/doc/pgsql/admin/release2124.htm -share/doc/pgsql/admin/release2135.htm -share/doc/pgsql/admin/release2146.htm -share/doc/pgsql/admin/release2187.htm -share/doc/pgsql/admin/release2203.htm -share/doc/pgsql/admin/release2222.htm -share/doc/pgsql/admin/release2266.htm -share/doc/pgsql/admin/release2288.htm -share/doc/pgsql/admin/release2303.htm -share/doc/pgsql/admin/release2312.htm -share/doc/pgsql/admin/release2335.htm -share/doc/pgsql/admin/release2349.htm -share/doc/pgsql/admin/release2352.htm -share/doc/pgsql/admin/release2377.htm -share/doc/pgsql/admin/release2414.htm -share/doc/pgsql/admin/release2421.htm -share/doc/pgsql/admin/release2428.htm -share/doc/pgsql/admin/release2435.htm -share/doc/pgsql/admin/release2439.htm -share/doc/pgsql/admin/runtime.htm -share/doc/pgsql/admin/security.htm -share/doc/pgsql/admin/security1450.htm -share/doc/pgsql/admin/security1485.htm -share/doc/pgsql/admin/security1509.htm -share/doc/pgsql/admin/security1530.htm -share/doc/pgsql/admin/terminology.htm -share/doc/pgsql/admin/trouble.htm -share/doc/pgsql/admin/trouble1721.htm -share/doc/pgsql/admin/trouble1738.htm -share/doc/pgsql/admin/y2k.htm -share/doc/pgsql/postgres/about.htm -share/doc/pgsql/postgres/advanced.htm -share/doc/pgsql/postgres/advanced27923.htm -share/doc/pgsql/postgres/advanced27945.htm -share/doc/pgsql/postgres/app-createdb.htm -share/doc/pgsql/postgres/app-createlang.htm -share/doc/pgsql/postgres/app-createuser.htm -share/doc/pgsql/postgres/app-dropdb.htm -share/doc/pgsql/postgres/app-droplang.htm -share/doc/pgsql/postgres/app-dropuser.htm -share/doc/pgsql/postgres/app-ecpg.htm -share/doc/pgsql/postgres/app-initdb.htm -share/doc/pgsql/postgres/app-initlocation.htm -share/doc/pgsql/postgres/app-ipcclean.htm -share/doc/pgsql/postgres/app-pg-passwd.htm -share/doc/pgsql/postgres/app-pg-upgrade.htm -share/doc/pgsql/postgres/app-pgaccess.htm -share/doc/pgsql/postgres/app-pgadmin.htm -share/doc/pgsql/postgres/app-pgctl.htm -share/doc/pgsql/postgres/app-pgdump.htm -share/doc/pgsql/postgres/app-pgdumpall.htm -share/doc/pgsql/postgres/app-pgtclsh.htm -share/doc/pgsql/postgres/app-pgtksh.htm -share/doc/pgsql/postgres/app-postgres.htm -share/doc/pgsql/postgres/app-postmaster.htm -share/doc/pgsql/postgres/app-psql.htm -share/doc/pgsql/postgres/app-vacuumdb.htm -share/doc/pgsql/postgres/applications.htm -share/doc/pgsql/postgres/arch-pg.htm -share/doc/pgsql/postgres/arch.htm -share/doc/pgsql/postgres/arrays.htm -share/doc/pgsql/postgres/biblio.htm -share/doc/pgsql/postgres/bki.htm -share/doc/pgsql/postgres/bki26573.htm -share/doc/pgsql/postgres/bki26657.htm -share/doc/pgsql/postgres/bki26681.htm -share/doc/pgsql/postgres/bki26742.htm -share/doc/pgsql/postgres/c16883.htm -share/doc/pgsql/postgres/c1688316912.htm -share/doc/pgsql/postgres/c1688316990.htm -share/doc/pgsql/postgres/c1688317027.htm -share/doc/pgsql/postgres/c19986.htm -share/doc/pgsql/postgres/c21722.htm -share/doc/pgsql/postgres/c2172221764.htm -share/doc/pgsql/postgres/c2172221782.htm -share/doc/pgsql/postgres/c2172221924.htm -share/doc/pgsql/postgres/c2172221936.htm -share/doc/pgsql/postgres/c2172221956.htm -share/doc/pgsql/postgres/c2172221961.htm -share/doc/pgsql/postgres/c25129.htm -share/doc/pgsql/postgres/c4091.htm -share/doc/pgsql/postgres/c40914117.htm -share/doc/pgsql/postgres/c40914344.htm -share/doc/pgsql/postgres/c4362.htm -share/doc/pgsql/postgres/c43624375.htm -share/doc/pgsql/postgres/c4888.htm -share/doc/pgsql/postgres/c4933.htm -share/doc/pgsql/postgres/c49334943.htm -share/doc/pgsql/postgres/c49334947.htm -share/doc/pgsql/postgres/catalogs.gif -share/doc/pgsql/postgres/clientserver.gif -share/doc/pgsql/postgres/compiler.htm -share/doc/pgsql/postgres/connections.gif -share/doc/pgsql/postgres/copyright.htm -share/doc/pgsql/postgres/cvs.htm -share/doc/pgsql/postgres/cvs28436.htm -share/doc/pgsql/postgres/cvs28492.htm -share/doc/pgsql/postgres/datatype.htm -share/doc/pgsql/postgres/datatype1038.htm -share/doc/pgsql/postgres/datatype1070.htm -share/doc/pgsql/postgres/datatype1134.htm -share/doc/pgsql/postgres/datatype1649.htm -share/doc/pgsql/postgres/datatype1681.htm -share/doc/pgsql/postgres/datatype1920.htm -share/doc/pgsql/postgres/datetime-appendix.htm -share/doc/pgsql/postgres/datetime-appendix28356.htm -share/doc/pgsql/postgres/dfunc.htm -share/doc/pgsql/postgres/dfunc20136.htm -share/doc/pgsql/postgres/dfunc20146.htm -share/doc/pgsql/postgres/disk.htm -share/doc/pgsql/postgres/docguide.htm -share/doc/pgsql/postgres/docguide28718.htm -share/doc/pgsql/postgres/docguide28749.htm -share/doc/pgsql/postgres/docguide28840.htm -share/doc/pgsql/postgres/docguide28861.htm -share/doc/pgsql/postgres/docguide28887.htm -share/doc/pgsql/postgres/docguide29024.htm -share/doc/pgsql/postgres/docguide29362.htm -share/doc/pgsql/postgres/environ.htm -share/doc/pgsql/postgres/extend.htm -share/doc/pgsql/postgres/extend18852.htm -share/doc/pgsql/postgres/extend18864.htm -share/doc/pgsql/postgres/func-ref.htm -share/doc/pgsql/postgres/functions.htm -share/doc/pgsql/postgres/functions2593.htm -share/doc/pgsql/postgres/functions2733.htm -share/doc/pgsql/postgres/functions2876.htm -share/doc/pgsql/postgres/functions2976.htm -share/doc/pgsql/postgres/functions3443.htm -share/doc/pgsql/postgres/functions3641.htm -share/doc/pgsql/postgres/geqo-biblio.htm -share/doc/pgsql/postgres/geqo.htm -share/doc/pgsql/postgres/geqo25594.htm -share/doc/pgsql/postgres/geqo25617.htm -share/doc/pgsql/postgres/geqo25655.htm -share/doc/pgsql/postgres/gist.htm -share/doc/pgsql/postgres/index.html -share/doc/pgsql/postgres/indices.htm -share/doc/pgsql/postgres/inherit.htm -share/doc/pgsql/postgres/install-win32.htm -share/doc/pgsql/postgres/install-win3217383.htm -share/doc/pgsql/postgres/install-win3217392.htm -share/doc/pgsql/postgres/install.htm -share/doc/pgsql/postgres/install17165.htm -share/doc/pgsql/postgres/intro.htm -share/doc/pgsql/postgres/intro176.htm -share/doc/pgsql/postgres/intro304.htm -share/doc/pgsql/postgres/intro60.htm -share/doc/pgsql/postgres/jdbc.htm -share/doc/pgsql/postgres/jdbc24909.htm -share/doc/pgsql/postgres/jdbc24921.htm -share/doc/pgsql/postgres/jdbc24927.htm -share/doc/pgsql/postgres/jdbc24935.htm -share/doc/pgsql/postgres/jdbc24953.htm -share/doc/pgsql/postgres/jdbc24990.htm -share/doc/pgsql/postgres/jdbc25021.htm -share/doc/pgsql/postgres/jdbc25026.htm -share/doc/pgsql/postgres/jdbc25030.htm -share/doc/pgsql/postgres/jdbc25056.htm -share/doc/pgsql/postgres/jdbc25086.htm -share/doc/pgsql/postgres/largeobjects.htm -share/doc/pgsql/postgres/largeobjects21625.htm -share/doc/pgsql/postgres/largeobjects21628.htm -share/doc/pgsql/postgres/largeobjects21707.htm -share/doc/pgsql/postgres/largeobjects21714.htm -share/doc/pgsql/postgres/largeobjects21718.htm -share/doc/pgsql/postgres/layout.gif -share/doc/pgsql/postgres/layout.htm -share/doc/pgsql/postgres/libpq-chapter.htm -share/doc/pgsql/postgres/libpq-chapter22422.htm -share/doc/pgsql/postgres/libpq-chapter22577.htm -share/doc/pgsql/postgres/libpq-chapter22724.htm -share/doc/pgsql/postgres/libpq-chapter22736.htm -share/doc/pgsql/postgres/libpq-chapter22774.htm -share/doc/pgsql/postgres/libpq-chapter22844.htm -share/doc/pgsql/postgres/libpq-chapter22857.htm -share/doc/pgsql/postgres/libpq-chapter22942.htm -share/doc/pgsql/postgres/libpq-envars.htm -share/doc/pgsql/postgres/libpq-threading.htm -share/doc/pgsql/postgres/libpqplusplus.htm -share/doc/pgsql/postgres/libpqplusplus23034.htm -share/doc/pgsql/postgres/libpqplusplus23044.htm -share/doc/pgsql/postgres/libpqplusplus23074.htm -share/doc/pgsql/postgres/libpqplusplus23179.htm -share/doc/pgsql/postgres/libpqplusplus23202.htm -share/doc/pgsql/postgres/lisp.htm -share/doc/pgsql/postgres/manage-ag.htm -share/doc/pgsql/postgres/manage-ag17914.htm -share/doc/pgsql/postgres/manage-ag17956.htm -share/doc/pgsql/postgres/manage-ag17965.htm -share/doc/pgsql/postgres/manage.htm -share/doc/pgsql/postgres/manage4814.htm -share/doc/pgsql/postgres/manage4838.htm -share/doc/pgsql/postgres/manage4880.htm -share/doc/pgsql/postgres/mvcc.htm -share/doc/pgsql/postgres/mvcc4568.htm -share/doc/pgsql/postgres/mvcc4621.htm -share/doc/pgsql/postgres/mvcc4633.htm -share/doc/pgsql/postgres/mvcc4646.htm -share/doc/pgsql/postgres/mvcc4723.htm -share/doc/pgsql/postgres/mvcc4744.htm -share/doc/pgsql/postgres/newuser.htm -share/doc/pgsql/postgres/notation.htm -share/doc/pgsql/postgres/odbc.htm -share/doc/pgsql/postgres/odbc24433.htm -share/doc/pgsql/postgres/odbc24471.htm -share/doc/pgsql/postgres/odbc24644.htm -share/doc/pgsql/postgres/odbc24666.htm -share/doc/pgsql/postgres/operators.htm -share/doc/pgsql/postgres/operators2127.htm -share/doc/pgsql/postgres/operators2198.htm -share/doc/pgsql/postgres/operators2267.htm -share/doc/pgsql/postgres/operators2377.htm -share/doc/pgsql/postgres/operators2436.htm -share/doc/pgsql/postgres/operators2490.htm -share/doc/pgsql/postgres/overview.htm -share/doc/pgsql/postgres/overview25194.htm -share/doc/pgsql/postgres/overview25219.htm -share/doc/pgsql/postgres/overview25347.htm -share/doc/pgsql/postgres/overview25403.htm -share/doc/pgsql/postgres/overview25457.htm -share/doc/pgsql/postgres/page.htm -share/doc/pgsql/postgres/page26805.htm -share/doc/pgsql/postgres/page26819.htm -share/doc/pgsql/postgres/part-admin.htm -share/doc/pgsql/postgres/part-appendix.htm -share/doc/pgsql/postgres/part-developer.htm -share/doc/pgsql/postgres/part-interfaces.htm -share/doc/pgsql/postgres/part-programmer.htm -share/doc/pgsql/postgres/part-tutorial.htm -share/doc/pgsql/postgres/part-user.htm -share/doc/pgsql/postgres/partial-index.htm -share/doc/pgsql/postgres/pg-options-dev.htm -share/doc/pgsql/postgres/pg-options.htm -share/doc/pgsql/postgres/pgeasy-chapter.htm -share/doc/pgsql/postgres/pgtcl-pgconndefaults.htm -share/doc/pgsql/postgres/pgtcl-pgconnect.htm -share/doc/pgsql/postgres/pgtcl-pgdisconnect.htm -share/doc/pgsql/postgres/pgtcl-pgexec.htm -share/doc/pgsql/postgres/pgtcl-pglisten.htm -share/doc/pgsql/postgres/pgtcl-pgloclose.htm -share/doc/pgsql/postgres/pgtcl-pglocreat.htm -share/doc/pgsql/postgres/pgtcl-pgloexport.htm -share/doc/pgsql/postgres/pgtcl-pgloimport.htm -share/doc/pgsql/postgres/pgtcl-pglolseek.htm -share/doc/pgsql/postgres/pgtcl-pgloopen.htm -share/doc/pgsql/postgres/pgtcl-pgloread.htm -share/doc/pgsql/postgres/pgtcl-pglotell.htm -share/doc/pgsql/postgres/pgtcl-pglounlink.htm -share/doc/pgsql/postgres/pgtcl-pglowrite.htm -share/doc/pgsql/postgres/pgtcl-pgresult.htm -share/doc/pgsql/postgres/pgtcl-pgselect.htm -share/doc/pgsql/postgres/pgtcl.htm -share/doc/pgsql/postgres/pgtcl23317.htm -share/doc/pgsql/postgres/pgtcl23321.htm -share/doc/pgsql/postgres/pl-perl.htm -share/doc/pgsql/postgres/pl-perl4533.htm -share/doc/pgsql/postgres/pl-perl4542.htm -share/doc/pgsql/postgres/ports.htm -share/doc/pgsql/postgres/ports16791.htm -share/doc/pgsql/postgres/postgres.htm -share/doc/pgsql/postgres/postgres.html -share/doc/pgsql/postgres/postmaster.htm -share/doc/pgsql/postgres/preface.htm -share/doc/pgsql/postgres/protocol.htm -share/doc/pgsql/postgres/protocol25770.htm -share/doc/pgsql/postgres/protocol25925.htm -share/doc/pgsql/postgres/protocol25962.htm -share/doc/pgsql/postgres/query.htm -share/doc/pgsql/postgres/query27752.htm -share/doc/pgsql/postgres/query27768.htm -share/doc/pgsql/postgres/query27790.htm -share/doc/pgsql/postgres/query27799.htm -share/doc/pgsql/postgres/query27817.htm -share/doc/pgsql/postgres/query27825.htm -share/doc/pgsql/postgres/query27844.htm -share/doc/pgsql/postgres/query27849.htm -share/doc/pgsql/postgres/query27856.htm -share/doc/pgsql/postgres/recovery.htm -share/doc/pgsql/postgres/regress.htm -share/doc/pgsql/postgres/regress18171.htm -share/doc/pgsql/postgres/regress18205.htm -share/doc/pgsql/postgres/regress18251.htm -share/doc/pgsql/postgres/release.htm -share/doc/pgsql/postgres/release18319.htm -share/doc/pgsql/postgres/release18330.htm -share/doc/pgsql/postgres/release18341.htm -share/doc/pgsql/postgres/release18352.htm -share/doc/pgsql/postgres/release18434.htm -share/doc/pgsql/postgres/release18445.htm -share/doc/pgsql/postgres/release18456.htm -share/doc/pgsql/postgres/release18497.htm -share/doc/pgsql/postgres/release18513.htm -share/doc/pgsql/postgres/release18532.htm -share/doc/pgsql/postgres/release18576.htm -share/doc/pgsql/postgres/release18598.htm -share/doc/pgsql/postgres/release18613.htm -share/doc/pgsql/postgres/release18622.htm -share/doc/pgsql/postgres/release18645.htm -share/doc/pgsql/postgres/release18659.htm -share/doc/pgsql/postgres/release18662.htm -share/doc/pgsql/postgres/release18687.htm -share/doc/pgsql/postgres/release18724.htm -share/doc/pgsql/postgres/release18731.htm -share/doc/pgsql/postgres/release18738.htm -share/doc/pgsql/postgres/release18745.htm -share/doc/pgsql/postgres/release18749.htm -share/doc/pgsql/postgres/rules.htm -share/doc/pgsql/postgres/rules19478.htm -share/doc/pgsql/postgres/rules19639.htm -share/doc/pgsql/postgres/rules19770.htm -share/doc/pgsql/postgres/rules19784.htm -share/doc/pgsql/postgres/runtime.htm -share/doc/pgsql/postgres/security.htm -share/doc/pgsql/postgres/security17760.htm -share/doc/pgsql/postgres/security17795.htm -share/doc/pgsql/postgres/security17819.htm -share/doc/pgsql/postgres/security17840.htm -share/doc/pgsql/postgres/signals.htm -share/doc/pgsql/postgres/spi-spiconnect.htm -share/doc/pgsql/postgres/spi-spicopytuple.htm -share/doc/pgsql/postgres/spi-spiexec.htm -share/doc/pgsql/postgres/spi-spiexecp.htm -share/doc/pgsql/postgres/spi-spifinish.htm -share/doc/pgsql/postgres/spi-spifname.htm -share/doc/pgsql/postgres/spi-spifnumber.htm -share/doc/pgsql/postgres/spi-spigetbinval.htm -share/doc/pgsql/postgres/spi-spigetrelname.htm -share/doc/pgsql/postgres/spi-spigettype.htm -share/doc/pgsql/postgres/spi-spigettypeid.htm -share/doc/pgsql/postgres/spi-spigetvalue.htm -share/doc/pgsql/postgres/spi-spimodifytuple.htm -share/doc/pgsql/postgres/spi-spipalloc.htm -share/doc/pgsql/postgres/spi-spipfree.htm -share/doc/pgsql/postgres/spi-spiprepare.htm -share/doc/pgsql/postgres/spi-spirepalloc.htm -share/doc/pgsql/postgres/spi-spisaveplan.htm -share/doc/pgsql/postgres/spi.htm -share/doc/pgsql/postgres/spi20808.htm -share/doc/pgsql/postgres/spi21521.htm -share/doc/pgsql/postgres/spi21543.htm -share/doc/pgsql/postgres/spi21548.htm -share/doc/pgsql/postgres/sql-abort.htm -share/doc/pgsql/postgres/sql-altergroup.htm -share/doc/pgsql/postgres/sql-altertable.htm -share/doc/pgsql/postgres/sql-alteruser.htm -share/doc/pgsql/postgres/sql-begin.htm -share/doc/pgsql/postgres/sql-close.htm -share/doc/pgsql/postgres/sql-cluster.htm -share/doc/pgsql/postgres/sql-commands.htm -share/doc/pgsql/postgres/sql-comment.htm -share/doc/pgsql/postgres/sql-commit.htm -share/doc/pgsql/postgres/sql-copy.htm -share/doc/pgsql/postgres/sql-createaggregate.htm -share/doc/pgsql/postgres/sql-createconstraint.htm -share/doc/pgsql/postgres/sql-createdatabase.htm -share/doc/pgsql/postgres/sql-createfunction.htm -share/doc/pgsql/postgres/sql-creategroup.htm -share/doc/pgsql/postgres/sql-createindex.htm -share/doc/pgsql/postgres/sql-createlanguage.htm -share/doc/pgsql/postgres/sql-createoperator.htm -share/doc/pgsql/postgres/sql-createrule.htm -share/doc/pgsql/postgres/sql-createsequence.htm -share/doc/pgsql/postgres/sql-createtable.htm -share/doc/pgsql/postgres/sql-createtableas.htm -share/doc/pgsql/postgres/sql-createtrigger.htm -share/doc/pgsql/postgres/sql-createtype.htm -share/doc/pgsql/postgres/sql-createuser.htm -share/doc/pgsql/postgres/sql-createview.htm -share/doc/pgsql/postgres/sql-declare.htm -share/doc/pgsql/postgres/sql-delete.htm -share/doc/pgsql/postgres/sql-dropaggregate.htm -share/doc/pgsql/postgres/sql-dropdatabase.htm -share/doc/pgsql/postgres/sql-dropfunction.htm -share/doc/pgsql/postgres/sql-dropgroup.htm -share/doc/pgsql/postgres/sql-dropindex.htm -share/doc/pgsql/postgres/sql-droplanguage.htm -share/doc/pgsql/postgres/sql-dropoperator.htm -share/doc/pgsql/postgres/sql-droprule.htm -share/doc/pgsql/postgres/sql-dropsequence.htm -share/doc/pgsql/postgres/sql-droptable.htm -share/doc/pgsql/postgres/sql-droptrigger.htm -share/doc/pgsql/postgres/sql-droptype.htm -share/doc/pgsql/postgres/sql-dropuser.htm -share/doc/pgsql/postgres/sql-dropview.htm -share/doc/pgsql/postgres/sql-end.htm -share/doc/pgsql/postgres/sql-explain.htm -share/doc/pgsql/postgres/sql-fetch.htm -share/doc/pgsql/postgres/sql-grant.htm -share/doc/pgsql/postgres/sql-insert.htm -share/doc/pgsql/postgres/sql-language.htm -share/doc/pgsql/postgres/sql-listen.htm -share/doc/pgsql/postgres/sql-load.htm -share/doc/pgsql/postgres/sql-lock.htm -share/doc/pgsql/postgres/sql-move.htm -share/doc/pgsql/postgres/sql-notify.htm -share/doc/pgsql/postgres/sql-reindex.htm -share/doc/pgsql/postgres/sql-reset.htm -share/doc/pgsql/postgres/sql-revoke.htm -share/doc/pgsql/postgres/sql-rollback.htm -share/doc/pgsql/postgres/sql-select.htm -share/doc/pgsql/postgres/sql-selectinto.htm -share/doc/pgsql/postgres/sql-set.htm -share/doc/pgsql/postgres/sql-show.htm -share/doc/pgsql/postgres/sql-truncate.htm -share/doc/pgsql/postgres/sql-unlisten.htm -share/doc/pgsql/postgres/sql-update.htm -share/doc/pgsql/postgres/sql-vacuum.htm -share/doc/pgsql/postgres/sql.htm -share/doc/pgsql/postgres/sql26902.htm -share/doc/pgsql/postgres/sql27020.htm -share/doc/pgsql/postgres/start.htm -share/doc/pgsql/postgres/start27628.htm -share/doc/pgsql/postgres/start27650.htm -share/doc/pgsql/postgres/storage.htm -share/doc/pgsql/postgres/syntax.htm -share/doc/pgsql/postgres/syntax519.htm -share/doc/pgsql/postgres/syntax525.htm -share/doc/pgsql/postgres/syntax543.htm -share/doc/pgsql/postgres/syntax608.htm -share/doc/pgsql/postgres/syntax653.htm -share/doc/pgsql/postgres/syntax658.htm -share/doc/pgsql/postgres/terminology.htm -share/doc/pgsql/postgres/triggers.htm -share/doc/pgsql/postgres/triggers20224.htm -share/doc/pgsql/postgres/triggers20281.htm -share/doc/pgsql/postgres/triggers20290.htm -share/doc/pgsql/postgres/trouble.htm -share/doc/pgsql/postgres/trouble18031.htm -share/doc/pgsql/postgres/trouble18048.htm -share/doc/pgsql/postgres/typeconv.htm -share/doc/pgsql/postgres/typeconv3759.htm -share/doc/pgsql/postgres/typeconv3822.htm -share/doc/pgsql/postgres/typeconv3875.htm -share/doc/pgsql/postgres/typeconv3895.htm -share/doc/pgsql/postgres/utilities.htm -share/doc/pgsql/postgres/xaggr.htm -share/doc/pgsql/postgres/xfunc.htm -share/doc/pgsql/postgres/xfunc19011.htm -share/doc/pgsql/postgres/xfunc19017.htm -share/doc/pgsql/postgres/xfunc19022.htm -share/doc/pgsql/postgres/xfunc19254.htm -share/doc/pgsql/postgres/xindex.htm -share/doc/pgsql/postgres/xoper.htm -share/doc/pgsql/postgres/xplang.htm -share/doc/pgsql/postgres/xtypes.htm -share/doc/pgsql/postgres/y2k.htm -share/doc/pgsql/programmer/arch-pg.htm -share/doc/pgsql/programmer/biblio.htm -share/doc/pgsql/programmer/bki.htm -share/doc/pgsql/programmer/bki8058.htm -share/doc/pgsql/programmer/bki8142.htm -share/doc/pgsql/programmer/bki8166.htm -share/doc/pgsql/programmer/bki8227.htm -share/doc/pgsql/programmer/c1486.htm -share/doc/pgsql/programmer/c5391.htm -share/doc/pgsql/programmer/c53915433.htm -share/doc/pgsql/programmer/c53915451.htm -share/doc/pgsql/programmer/c53915593.htm -share/doc/pgsql/programmer/c53915605.htm -share/doc/pgsql/programmer/c53915625.htm -share/doc/pgsql/programmer/c53915630.htm -share/doc/pgsql/programmer/c6614.htm -share/doc/pgsql/programmer/catalogs.gif -share/doc/pgsql/programmer/compiler.htm -share/doc/pgsql/programmer/connections.gif -share/doc/pgsql/programmer/copyright.htm -share/doc/pgsql/programmer/cvs.htm -share/doc/pgsql/programmer/cvs8365.htm -share/doc/pgsql/programmer/cvs8421.htm -share/doc/pgsql/programmer/dfunc.htm -share/doc/pgsql/programmer/dfunc1679.htm -share/doc/pgsql/programmer/dfunc1689.htm -share/doc/pgsql/programmer/docguide.htm -share/doc/pgsql/programmer/docguide8647.htm -share/doc/pgsql/programmer/docguide8678.htm -share/doc/pgsql/programmer/docguide8769.htm -share/doc/pgsql/programmer/docguide8790.htm -share/doc/pgsql/programmer/docguide8816.htm -share/doc/pgsql/programmer/docguide8953.htm -share/doc/pgsql/programmer/docguide9291.htm -share/doc/pgsql/programmer/extend.htm -share/doc/pgsql/programmer/extend352.htm -share/doc/pgsql/programmer/extend364.htm -share/doc/pgsql/programmer/geqo-biblio.htm -share/doc/pgsql/programmer/geqo.htm -share/doc/pgsql/programmer/geqo7079.htm -share/doc/pgsql/programmer/geqo7102.htm -share/doc/pgsql/programmer/geqo7140.htm -share/doc/pgsql/programmer/gist.htm -share/doc/pgsql/programmer/index.html -share/doc/pgsql/programmer/intro-pg.htm -share/doc/pgsql/programmer/intro-pg167.htm -share/doc/pgsql/programmer/jdbc.htm -share/doc/pgsql/programmer/jdbc6398.htm -share/doc/pgsql/programmer/jdbc6410.htm -share/doc/pgsql/programmer/jdbc6416.htm -share/doc/pgsql/programmer/jdbc6424.htm -share/doc/pgsql/programmer/jdbc6442.htm -share/doc/pgsql/programmer/jdbc6479.htm -share/doc/pgsql/programmer/jdbc6510.htm -share/doc/pgsql/programmer/jdbc6515.htm -share/doc/pgsql/programmer/jdbc6519.htm -share/doc/pgsql/programmer/jdbc6545.htm -share/doc/pgsql/programmer/jdbc6575.htm -share/doc/pgsql/programmer/largeobjects.htm -share/doc/pgsql/programmer/largeobjects3114.htm -share/doc/pgsql/programmer/largeobjects3117.htm -share/doc/pgsql/programmer/largeobjects3196.htm -share/doc/pgsql/programmer/largeobjects3203.htm -share/doc/pgsql/programmer/largeobjects3207.htm -share/doc/pgsql/programmer/libpq-chapter.htm -share/doc/pgsql/programmer/libpq-chapter3419.htm -share/doc/pgsql/programmer/libpq-chapter3574.htm -share/doc/pgsql/programmer/libpq-chapter3721.htm -share/doc/pgsql/programmer/libpq-chapter3733.htm -share/doc/pgsql/programmer/libpq-chapter3771.htm -share/doc/pgsql/programmer/libpq-chapter3841.htm -share/doc/pgsql/programmer/libpq-chapter3854.htm -share/doc/pgsql/programmer/libpq-chapter3939.htm -share/doc/pgsql/programmer/libpq-envars.htm -share/doc/pgsql/programmer/libpq-threading.htm -share/doc/pgsql/programmer/libpqplusplus.htm -share/doc/pgsql/programmer/libpqplusplus4031.htm -share/doc/pgsql/programmer/libpqplusplus4041.htm -share/doc/pgsql/programmer/libpqplusplus4071.htm -share/doc/pgsql/programmer/libpqplusplus4176.htm -share/doc/pgsql/programmer/libpqplusplus4199.htm -share/doc/pgsql/programmer/lisp.htm -share/doc/pgsql/programmer/notation.htm -share/doc/pgsql/programmer/odbc.htm -share/doc/pgsql/programmer/odbc5922.htm -share/doc/pgsql/programmer/odbc5960.htm -share/doc/pgsql/programmer/odbc6133.htm -share/doc/pgsql/programmer/odbc6155.htm -share/doc/pgsql/programmer/overview.htm -share/doc/pgsql/programmer/overview6679.htm -share/doc/pgsql/programmer/overview6704.htm -share/doc/pgsql/programmer/overview6832.htm -share/doc/pgsql/programmer/overview6888.htm -share/doc/pgsql/programmer/overview6942.htm -share/doc/pgsql/programmer/page.htm -share/doc/pgsql/programmer/page8290.htm -share/doc/pgsql/programmer/page8304.htm -share/doc/pgsql/programmer/pg-options-dev.htm -share/doc/pgsql/programmer/pgeasy-chapter.htm -share/doc/pgsql/programmer/pgtcl-pgconndefaults.htm -share/doc/pgsql/programmer/pgtcl-pgconnect.htm -share/doc/pgsql/programmer/pgtcl-pgdisconnect.htm -share/doc/pgsql/programmer/pgtcl-pgexec.htm -share/doc/pgsql/programmer/pgtcl-pglisten.htm -share/doc/pgsql/programmer/pgtcl-pgloclose.htm -share/doc/pgsql/programmer/pgtcl-pglocreat.htm -share/doc/pgsql/programmer/pgtcl-pgloexport.htm -share/doc/pgsql/programmer/pgtcl-pgloimport.htm -share/doc/pgsql/programmer/pgtcl-pglolseek.htm -share/doc/pgsql/programmer/pgtcl-pgloopen.htm -share/doc/pgsql/programmer/pgtcl-pgloread.htm -share/doc/pgsql/programmer/pgtcl-pglotell.htm -share/doc/pgsql/programmer/pgtcl-pglounlink.htm -share/doc/pgsql/programmer/pgtcl-pglowrite.htm -share/doc/pgsql/programmer/pgtcl-pgresult.htm -share/doc/pgsql/programmer/pgtcl-pgselect.htm -share/doc/pgsql/programmer/pgtcl.htm -share/doc/pgsql/programmer/pgtcl4314.htm -share/doc/pgsql/programmer/pgtcl4318.htm -share/doc/pgsql/programmer/preface.htm -share/doc/pgsql/programmer/programmer.htm -share/doc/pgsql/programmer/programmer.html -share/doc/pgsql/programmer/protocol.htm -share/doc/pgsql/programmer/protocol7255.htm -share/doc/pgsql/programmer/protocol7410.htm -share/doc/pgsql/programmer/protocol7447.htm -share/doc/pgsql/programmer/rules.htm -share/doc/pgsql/programmer/rules1139.htm -share/doc/pgsql/programmer/rules1270.htm -share/doc/pgsql/programmer/rules1284.htm -share/doc/pgsql/programmer/rules978.htm -share/doc/pgsql/programmer/signals.htm -share/doc/pgsql/programmer/spi-spiconnect.htm -share/doc/pgsql/programmer/spi-spicopytuple.htm -share/doc/pgsql/programmer/spi-spiexec.htm -share/doc/pgsql/programmer/spi-spiexecp.htm -share/doc/pgsql/programmer/spi-spifinish.htm -share/doc/pgsql/programmer/spi-spifname.htm -share/doc/pgsql/programmer/spi-spifnumber.htm -share/doc/pgsql/programmer/spi-spigetbinval.htm -share/doc/pgsql/programmer/spi-spigetrelname.htm -share/doc/pgsql/programmer/spi-spigettype.htm -share/doc/pgsql/programmer/spi-spigettypeid.htm -share/doc/pgsql/programmer/spi-spigetvalue.htm -share/doc/pgsql/programmer/spi-spimodifytuple.htm -share/doc/pgsql/programmer/spi-spipalloc.htm -share/doc/pgsql/programmer/spi-spipfree.htm -share/doc/pgsql/programmer/spi-spiprepare.htm -share/doc/pgsql/programmer/spi-spirepalloc.htm -share/doc/pgsql/programmer/spi-spisaveplan.htm -share/doc/pgsql/programmer/spi.htm -share/doc/pgsql/programmer/spi2351.htm -share/doc/pgsql/programmer/spi3064.htm -share/doc/pgsql/programmer/spi3086.htm -share/doc/pgsql/programmer/spi3091.htm -share/doc/pgsql/programmer/terminology.htm -share/doc/pgsql/programmer/triggers.htm -share/doc/pgsql/programmer/triggers1767.htm -share/doc/pgsql/programmer/triggers1824.htm -share/doc/pgsql/programmer/triggers1833.htm -share/doc/pgsql/programmer/xaggr.htm -share/doc/pgsql/programmer/xfunc.htm -share/doc/pgsql/programmer/xfunc511.htm -share/doc/pgsql/programmer/xfunc517.htm -share/doc/pgsql/programmer/xfunc522.htm -share/doc/pgsql/programmer/xfunc754.htm -share/doc/pgsql/programmer/xindex.htm -share/doc/pgsql/programmer/xoper.htm -share/doc/pgsql/programmer/xplang.htm -share/doc/pgsql/programmer/xtypes.htm -share/doc/pgsql/programmer/y2k.htm -share/doc/pgsql/tutorial/about.htm -share/doc/pgsql/tutorial/advanced.htm -share/doc/pgsql/tutorial/advanced1511.htm -share/doc/pgsql/tutorial/advanced1533.htm -share/doc/pgsql/tutorial/arch.htm -share/doc/pgsql/tutorial/biblio.htm -share/doc/pgsql/tutorial/clientserver.gif -share/doc/pgsql/tutorial/copyright.htm -share/doc/pgsql/tutorial/f17.htm -share/doc/pgsql/tutorial/index.html -share/doc/pgsql/tutorial/intro.htm -share/doc/pgsql/tutorial/intro172.htm -share/doc/pgsql/tutorial/intro300.htm -share/doc/pgsql/tutorial/intro56.htm -share/doc/pgsql/tutorial/notation.htm -share/doc/pgsql/tutorial/query.htm -share/doc/pgsql/tutorial/query1340.htm -share/doc/pgsql/tutorial/query1356.htm -share/doc/pgsql/tutorial/query1378.htm -share/doc/pgsql/tutorial/query1387.htm -share/doc/pgsql/tutorial/query1405.htm -share/doc/pgsql/tutorial/query1413.htm -share/doc/pgsql/tutorial/query1432.htm -share/doc/pgsql/tutorial/query1437.htm -share/doc/pgsql/tutorial/query1444.htm -share/doc/pgsql/tutorial/sql-language.htm -share/doc/pgsql/tutorial/sql.htm -share/doc/pgsql/tutorial/sql490.htm -share/doc/pgsql/tutorial/sql608.htm -share/doc/pgsql/tutorial/start.htm -share/doc/pgsql/tutorial/start1216.htm -share/doc/pgsql/tutorial/start1238.htm -share/doc/pgsql/tutorial/terminology.htm -share/doc/pgsql/tutorial/tutorial.htm -share/doc/pgsql/tutorial/tutorial.html -share/doc/pgsql/tutorial/y2k.htm -share/doc/pgsql/user/about.htm -share/doc/pgsql/user/app-createdb.htm -share/doc/pgsql/user/app-createlang.htm -share/doc/pgsql/user/app-createuser.htm -share/doc/pgsql/user/app-dropdb.htm -share/doc/pgsql/user/app-droplang.htm -share/doc/pgsql/user/app-dropuser.htm -share/doc/pgsql/user/app-ecpg.htm -share/doc/pgsql/user/app-initdb.htm -share/doc/pgsql/user/app-initlocation.htm -share/doc/pgsql/user/app-ipcclean.htm -share/doc/pgsql/user/app-pg-passwd.htm -share/doc/pgsql/user/app-pg-upgrade.htm -share/doc/pgsql/user/app-pgaccess.htm -share/doc/pgsql/user/app-pgadmin.htm -share/doc/pgsql/user/app-pgctl.htm -share/doc/pgsql/user/app-pgdump.htm -share/doc/pgsql/user/app-pgdumpall.htm -share/doc/pgsql/user/app-pgtclsh.htm -share/doc/pgsql/user/app-pgtksh.htm -share/doc/pgsql/user/app-postgres.htm -share/doc/pgsql/user/app-postmaster.htm -share/doc/pgsql/user/app-psql.htm -share/doc/pgsql/user/app-vacuumdb.htm -share/doc/pgsql/user/applications.htm -share/doc/pgsql/user/arrays.htm -share/doc/pgsql/user/biblio.htm -share/doc/pgsql/user/c4087.htm -share/doc/pgsql/user/c40874113.htm -share/doc/pgsql/user/c40874340.htm -share/doc/pgsql/user/c4358.htm -share/doc/pgsql/user/c43584371.htm -share/doc/pgsql/user/c4884.htm -share/doc/pgsql/user/c4929.htm -share/doc/pgsql/user/c49294939.htm -share/doc/pgsql/user/c49294943.htm -share/doc/pgsql/user/copyright.htm -share/doc/pgsql/user/datatype.htm -share/doc/pgsql/user/datatype1034.htm -share/doc/pgsql/user/datatype1066.htm -share/doc/pgsql/user/datatype1130.htm -share/doc/pgsql/user/datatype1645.htm -share/doc/pgsql/user/datatype1677.htm -share/doc/pgsql/user/datatype1916.htm -share/doc/pgsql/user/datetime-appendix.htm -share/doc/pgsql/user/datetime-appendix16981.htm -share/doc/pgsql/user/environ.htm -share/doc/pgsql/user/functions.htm -share/doc/pgsql/user/functions2589.htm -share/doc/pgsql/user/functions2729.htm -share/doc/pgsql/user/functions2872.htm -share/doc/pgsql/user/functions2972.htm -share/doc/pgsql/user/functions3439.htm -share/doc/pgsql/user/functions3637.htm -share/doc/pgsql/user/index.html -share/doc/pgsql/user/indices.htm -share/doc/pgsql/user/inherit.htm -share/doc/pgsql/user/intro.htm -share/doc/pgsql/user/intro172.htm -share/doc/pgsql/user/intro300.htm -share/doc/pgsql/user/intro56.htm -share/doc/pgsql/user/manage.htm -share/doc/pgsql/user/manage4810.htm -share/doc/pgsql/user/manage4834.htm -share/doc/pgsql/user/manage4876.htm -share/doc/pgsql/user/mvcc.htm -share/doc/pgsql/user/mvcc4564.htm -share/doc/pgsql/user/mvcc4617.htm -share/doc/pgsql/user/mvcc4629.htm -share/doc/pgsql/user/mvcc4642.htm -share/doc/pgsql/user/mvcc4719.htm -share/doc/pgsql/user/mvcc4740.htm -share/doc/pgsql/user/notation.htm -share/doc/pgsql/user/operators.htm -share/doc/pgsql/user/operators2123.htm -share/doc/pgsql/user/operators2194.htm -share/doc/pgsql/user/operators2263.htm -share/doc/pgsql/user/operators2373.htm -share/doc/pgsql/user/operators2432.htm -share/doc/pgsql/user/operators2486.htm -share/doc/pgsql/user/partial-index.htm -share/doc/pgsql/user/pl-perl.htm -share/doc/pgsql/user/pl-perl4529.htm -share/doc/pgsql/user/pl-perl4538.htm -share/doc/pgsql/user/preface.htm -share/doc/pgsql/user/sql-abort.htm -share/doc/pgsql/user/sql-altergroup.htm -share/doc/pgsql/user/sql-altertable.htm -share/doc/pgsql/user/sql-alteruser.htm -share/doc/pgsql/user/sql-begin.htm -share/doc/pgsql/user/sql-close.htm -share/doc/pgsql/user/sql-cluster.htm -share/doc/pgsql/user/sql-commands.htm -share/doc/pgsql/user/sql-comment.htm -share/doc/pgsql/user/sql-commit.htm -share/doc/pgsql/user/sql-copy.htm -share/doc/pgsql/user/sql-createaggregate.htm -share/doc/pgsql/user/sql-createconstraint.htm -share/doc/pgsql/user/sql-createdatabase.htm -share/doc/pgsql/user/sql-createfunction.htm -share/doc/pgsql/user/sql-creategroup.htm -share/doc/pgsql/user/sql-createindex.htm -share/doc/pgsql/user/sql-createlanguage.htm -share/doc/pgsql/user/sql-createoperator.htm -share/doc/pgsql/user/sql-createrule.htm -share/doc/pgsql/user/sql-createsequence.htm -share/doc/pgsql/user/sql-createtable.htm -share/doc/pgsql/user/sql-createtableas.htm -share/doc/pgsql/user/sql-createtrigger.htm -share/doc/pgsql/user/sql-createtype.htm -share/doc/pgsql/user/sql-createuser.htm -share/doc/pgsql/user/sql-createview.htm -share/doc/pgsql/user/sql-declare.htm -share/doc/pgsql/user/sql-delete.htm -share/doc/pgsql/user/sql-dropaggregate.htm -share/doc/pgsql/user/sql-dropdatabase.htm -share/doc/pgsql/user/sql-dropfunction.htm -share/doc/pgsql/user/sql-dropgroup.htm -share/doc/pgsql/user/sql-dropindex.htm -share/doc/pgsql/user/sql-droplanguage.htm -share/doc/pgsql/user/sql-dropoperator.htm -share/doc/pgsql/user/sql-droprule.htm -share/doc/pgsql/user/sql-dropsequence.htm -share/doc/pgsql/user/sql-droptable.htm -share/doc/pgsql/user/sql-droptrigger.htm -share/doc/pgsql/user/sql-droptype.htm -share/doc/pgsql/user/sql-dropuser.htm -share/doc/pgsql/user/sql-dropview.htm -share/doc/pgsql/user/sql-end.htm -share/doc/pgsql/user/sql-explain.htm -share/doc/pgsql/user/sql-fetch.htm -share/doc/pgsql/user/sql-grant.htm -share/doc/pgsql/user/sql-insert.htm -share/doc/pgsql/user/sql-listen.htm -share/doc/pgsql/user/sql-load.htm -share/doc/pgsql/user/sql-lock.htm -share/doc/pgsql/user/sql-move.htm -share/doc/pgsql/user/sql-notify.htm -share/doc/pgsql/user/sql-reindex.htm -share/doc/pgsql/user/sql-reset.htm -share/doc/pgsql/user/sql-revoke.htm -share/doc/pgsql/user/sql-rollback.htm -share/doc/pgsql/user/sql-select.htm -share/doc/pgsql/user/sql-selectinto.htm -share/doc/pgsql/user/sql-set.htm -share/doc/pgsql/user/sql-show.htm -share/doc/pgsql/user/sql-truncate.htm -share/doc/pgsql/user/sql-unlisten.htm -share/doc/pgsql/user/sql-update.htm -share/doc/pgsql/user/sql-vacuum.htm -share/doc/pgsql/user/storage.htm -share/doc/pgsql/user/syntax.htm -share/doc/pgsql/user/syntax515.htm -share/doc/pgsql/user/syntax521.htm -share/doc/pgsql/user/syntax539.htm -share/doc/pgsql/user/syntax604.htm -share/doc/pgsql/user/syntax649.htm -share/doc/pgsql/user/syntax654.htm -share/doc/pgsql/user/terminology.htm -share/doc/pgsql/user/typeconv.htm -share/doc/pgsql/user/typeconv3755.htm -share/doc/pgsql/user/typeconv3818.htm -share/doc/pgsql/user/typeconv3871.htm -share/doc/pgsql/user/typeconv3891.htm -share/doc/pgsql/user/user.htm -share/doc/pgsql/user/user.html -share/doc/pgsql/user/utilities.htm -share/doc/pgsql/user/y2k.htm -@dirrm share/doc/pgsql/admin -@dirrm share/doc/pgsql/postgres -@dirrm share/doc/pgsql/programmer -@dirrm share/doc/pgsql/tutorial -@dirrm share/doc/pgsql/user -@dirrm share/doc/pgsql diff --git a/databases/postgresql73/pkg-plist.jdbc b/databases/postgresql73/pkg-plist.jdbc deleted file mode 100644 index bef5d75506b4..000000000000 --- a/databases/postgresql73/pkg-plist.jdbc +++ /dev/null @@ -1,13 +0,0 @@ -share/examples/pgsql/jdbc/ImageViewer.java -share/examples/pgsql/jdbc/basic.java -share/examples/pgsql/jdbc/blobtest.java -share/examples/pgsql/jdbc/datestyle.java -share/examples/pgsql/jdbc/metadata.java -share/examples/pgsql/jdbc/psql.java -share/examples/pgsql/jdbc/threadsafe.java -share/examples/pgsql/jdbc/README -share/examples/pgsql/jdbc/README_6.3 -@dirrm share/examples/pgsql/jdbc -@dirrm share/examples/pgsql -share/java/classes/postgresql.jar -@unexec rmdir %D/share/java 2>/dev/null || true diff --git a/databases/postgresql73/pkg-plist.tcl b/databases/postgresql73/pkg-plist.tcl deleted file mode 100644 index b01eaf1571ed..000000000000 --- a/databases/postgresql73/pkg-plist.tcl +++ /dev/null @@ -1,141 +0,0 @@ -pgsql/bin/pgaccess -pgsql/bin/pgtclsh -pgsql/bin/pgtksh -pgsql/include/libpgtcl.h -pgsql/lib/libpgtcl.a -pgsql/lib/libpgtcl.so -pgsql/lib/libpgtcl.so.2 -pgsql/lib/pltcl.so -pgsql/pgaccess/images/icon_button.gif -pgsql/pgaccess/images/icon_checkbutton.gif -pgsql/pgaccess/images/icon_entry.gif -pgsql/pgaccess/images/icon_frame.gif -pgsql/pgaccess/images/icon_label.gif -pgsql/pgaccess/images/icon_listbox.gif -pgsql/pgaccess/images/icon_query.gif -pgsql/pgaccess/images/icon_radiobutton.gif -pgsql/pgaccess/images/icon_text.gif -pgsql/pgaccess/lib/database.tcl -pgsql/pgaccess/lib/forms.tcl -pgsql/pgaccess/lib/functions.tcl -pgsql/pgaccess/lib/help/abort.hlp -pgsql/pgaccess/lib/help/add_records.hlp -pgsql/pgaccess/lib/help/alter_table.hlp -pgsql/pgaccess/lib/help/alter_user.hlp -pgsql/pgaccess/lib/help/author.hlp -pgsql/pgaccess/lib/help/begin.hlp -pgsql/pgaccess/lib/help/close.hlp -pgsql/pgaccess/lib/help/cluster.hlp -pgsql/pgaccess/lib/help/commit.hlp -pgsql/pgaccess/lib/help/copy.hlp -pgsql/pgaccess/lib/help/copyrights.hlp -pgsql/pgaccess/lib/help/create_aggregate.hlp -pgsql/pgaccess/lib/help/create_database.hlp -pgsql/pgaccess/lib/help/create_function.hlp -pgsql/pgaccess/lib/help/create_index.hlp -pgsql/pgaccess/lib/help/create_language.hlp -pgsql/pgaccess/lib/help/create_operator.hlp -pgsql/pgaccess/lib/help/create_rule.hlp -pgsql/pgaccess/lib/help/create_sequence.hlp -pgsql/pgaccess/lib/help/create_table.hlp -pgsql/pgaccess/lib/help/create_table_as.hlp -pgsql/pgaccess/lib/help/create_trigger.hlp -pgsql/pgaccess/lib/help/create_type.hlp -pgsql/pgaccess/lib/help/create_user.hlp -pgsql/pgaccess/lib/help/create_view.hlp -pgsql/pgaccess/lib/help/data_types.hlp -pgsql/pgaccess/lib/help/datefunc.hlp -pgsql/pgaccess/lib/help/declare.hlp -pgsql/pgaccess/lib/help/delete.hlp -pgsql/pgaccess/lib/help/drop_aggregate.hlp -pgsql/pgaccess/lib/help/drop_database.hlp -pgsql/pgaccess/lib/help/drop_function.hlp -pgsql/pgaccess/lib/help/drop_index.hlp -pgsql/pgaccess/lib/help/drop_language.hlp -pgsql/pgaccess/lib/help/drop_operator.hlp -pgsql/pgaccess/lib/help/drop_rule.hlp -pgsql/pgaccess/lib/help/drop_sequence.hlp -pgsql/pgaccess/lib/help/drop_table.hlp -pgsql/pgaccess/lib/help/drop_trigger.hlp -pgsql/pgaccess/lib/help/drop_type.hlp -pgsql/pgaccess/lib/help/drop_user.hlp -pgsql/pgaccess/lib/help/drop_view.hlp -pgsql/pgaccess/lib/help/explain.hlp -pgsql/pgaccess/lib/help/fetch.hlp -pgsql/pgaccess/lib/help/form_design.hlp -pgsql/pgaccess/lib/help/forms.hlp -pgsql/pgaccess/lib/help/functions.hlp -pgsql/pgaccess/lib/help/geomfunc.hlp -pgsql/pgaccess/lib/help/grant.hlp -pgsql/pgaccess/lib/help/history.hlp -pgsql/pgaccess/lib/help/index.hlp -pgsql/pgaccess/lib/help/inheritance.hlp -pgsql/pgaccess/lib/help/insert.hlp -pgsql/pgaccess/lib/help/ipv4func.hlp -pgsql/pgaccess/lib/help/isolation.hlp -pgsql/pgaccess/lib/help/keywords.hlp -pgsql/pgaccess/lib/help/listen.hlp -pgsql/pgaccess/lib/help/load.hlp -pgsql/pgaccess/lib/help/lock.hlp -pgsql/pgaccess/lib/help/mathfunc.hlp -pgsql/pgaccess/lib/help/move.hlp -pgsql/pgaccess/lib/help/mvcc.hlp -pgsql/pgaccess/lib/help/new_query.hlp -pgsql/pgaccess/lib/help/new_table.hlp -pgsql/pgaccess/lib/help/notify.hlp -pgsql/pgaccess/lib/help/open_query.hlp -pgsql/pgaccess/lib/help/open_table.hlp -pgsql/pgaccess/lib/help/pgfunctions.hlp -pgsql/pgaccess/lib/help/postgresql.hlp -pgsql/pgaccess/lib/help/queries.hlp -pgsql/pgaccess/lib/help/reports.hlp -pgsql/pgaccess/lib/help/reset.hlp -pgsql/pgaccess/lib/help/revoke.hlp -pgsql/pgaccess/lib/help/rollback.hlp -pgsql/pgaccess/lib/help/schema.hlp -pgsql/pgaccess/lib/help/scripts.hlp -pgsql/pgaccess/lib/help/select.hlp -pgsql/pgaccess/lib/help/select_into.hlp -pgsql/pgaccess/lib/help/sequences.hlp -pgsql/pgaccess/lib/help/set.hlp -pgsql/pgaccess/lib/help/show.hlp -pgsql/pgaccess/lib/help/sql_guide.hlp -pgsql/pgaccess/lib/help/sqlfunc.hlp -pgsql/pgaccess/lib/help/stringfunc.hlp -pgsql/pgaccess/lib/help/tables.hlp -pgsql/pgaccess/lib/help/unlisten.hlp -pgsql/pgaccess/lib/help/update.hlp -pgsql/pgaccess/lib/help/users.hlp -pgsql/pgaccess/lib/help/vacuum.hlp -pgsql/pgaccess/lib/help/view_table_structure.hlp -pgsql/pgaccess/lib/help/views.hlp -pgsql/pgaccess/lib/help/visual_designer.hlp -pgsql/pgaccess/lib/help/y2k.hlp -pgsql/pgaccess/lib/help.tcl -pgsql/pgaccess/lib/languages/czech -pgsql/pgaccess/lib/languages/deutsch -pgsql/pgaccess/lib/languages/francais -pgsql/pgaccess/lib/languages/italiano -pgsql/pgaccess/lib/languages/magyar -pgsql/pgaccess/lib/languages/portugues -pgsql/pgaccess/lib/languages/romana -pgsql/pgaccess/lib/languages/russian.koi8r -pgsql/pgaccess/lib/languages/russian_win -pgsql/pgaccess/lib/languages/spanish -pgsql/pgaccess/lib/mainlib.tcl -pgsql/pgaccess/lib/preferences.tcl -pgsql/pgaccess/lib/queries.tcl -pgsql/pgaccess/lib/reports.tcl -pgsql/pgaccess/lib/schema.tcl -pgsql/pgaccess/lib/scripts.tcl -pgsql/pgaccess/lib/sequences.tcl -pgsql/pgaccess/lib/tables.tcl -pgsql/pgaccess/lib/users.tcl -pgsql/pgaccess/lib/views.tcl -pgsql/pgaccess/lib/visualqb.tcl -pgsql/pgaccess/main.tcl -@dirrm pgsql/pgaccess/images -@dirrm pgsql/pgaccess/lib/help -@dirrm pgsql/pgaccess/lib/languages -@dirrm pgsql/pgaccess/lib -@dirrm pgsql/pgaccess diff --git a/databases/postgresql73/scripts/configure b/databases/postgresql73/scripts/configure deleted file mode 100644 index 4a92ee450ebe..000000000000 --- a/databases/postgresql73/scripts/configure +++ /dev/null @@ -1,7 +0,0 @@ -#! /bin/sh - -# $FreeBSD$ - -cd $WRKSRC || exit 1 - -perl -pi -e "s=!!JAVA_HOME!!=${JAVA_HOME}=; s=!!PREFIX!!=${PREFIX}=" ${WRKSRC}/interfaces/jdbc/Makefile diff --git a/databases/postgresql73/scripts/createuser b/databases/postgresql73/scripts/createuser deleted file mode 100644 index 2abe201e7a4b..000000000000 --- a/databases/postgresql73/scripts/createuser +++ /dev/null @@ -1,50 +0,0 @@ -#!/usr/bin/perl -# - -eval '(exit $?0)' && eval 'exec /usr/bin/perl -S $0 ${1+"$@"}' -& eval 'exec /usr/bin/perl -S $0 $argv:q' -if 0; - -if( $> ) { - print "\nYou must be root to run this step!\n\n"; - exit 1; -} - -if( getpwnam( "pgsql" ) ) { - ( $null, $null, $pgUID ) = getpwnam( "pgsql" ); -} else { - $pgUID = 70; - while( getpwuid( $pgUID ) ) { - $pgUID++; - } -} - -if( getgrnam( "pgsql" ) ) { - ( $null, $null, $pgGID ) = getgrnam( "pgsql" ); -} else { - $pgGID = 70; - while( getgrgid( $pgGID ) ) { - $pgGID++; - } - &append_file( "/etc/group", "pgsql:*:$pgGID:" ); -} - -print "pgsql user using uid $pgUID\n"; -print "pgsql user using gid $pgGID\n"; - -system( "/usr/bin/chpass -a \"pgsql:*:$pgUID:$pgGID\:\:0:0:PostgreSQL pseudo-user:$ENV{'PREFIX'}/pgsql:/bin/sh\"" ); - -sub append_file { - local($file,@list) = @_; - local($LOCK_EX) = 2; - local($LOCK_NB) = 4; - local($LOCK_UN) = 8; - - open(F, ">> $file") || die "$file: $!\n"; - while( ! flock( F, $LOCK_EX | $LOCK_NB ) ) { - exit 1; - } - print F join( "\n", @list) . "\n"; - close F; - flock( F, $LOCK_UN ); -} diff --git a/databases/postgresql74-server/Makefile b/databases/postgresql74-server/Makefile deleted file mode 100644 index 94aa22cad135..000000000000 --- a/databases/postgresql74-server/Makefile +++ /dev/null @@ -1,259 +0,0 @@ -# New ports collection makefile for: PostgreSQL -# Date created: November 13, 1998 -# Whom: Marc G. Fournier <scrappy@FreeBSD.org> -# -# $FreeBSD$ -# - -PORTNAME= postgresql -PORTVERSION= 7.0.2 -CATEGORIES= databases -MASTER_SITES= ftp://ftp.postgresql.org/pub/%SUBDIR%/ \ - ftp://ftp.de.postgresql.org/%SUBDIR%/ \ - ftp://ftp.iodynamics.com/pub/mirror/postgresql/%SUBDIR%/ \ - ftp://ftp.digex.net/pub/packages/database/postgresql/%SUBDIR%/ \ - ftp://ftp.sunet.se/pub/unix/databases/relational/postgresql/%SUBDIR%/ -MASTER_SITE_SUBDIR= source/v${PORTVERSION} -DISTFILES= ${PORTNAME}-${PORTVERSION}.base${EXTRACT_SUFX} \ - ${PORTNAME}-${PORTVERSION}.support${EXTRACT_SUFX} \ - ${PORTNAME}-${PORTVERSION}.docs${EXTRACT_SUFX} -# ${PORTNAME}-${PORTVERSION}.test${EXTRACT_SUFX} -DIST_SUBDIR= postgresql - -MAINTAINER= andreas@FreeBSD.org - -.if ${MACHINE_ARCH} == "alpha" -BROKEN= doesn\'t build on the alpha yet -.endif - -Y2K= http://www.postgresql.org/y2k.html - -INSTALLS_SHLIB= YES -LDCONFIG_DIRS= %%PREFIX%%/pgsql/lib - -# if you want to use the tcl/tk frontend pgaccess, then you need to build -# postgresql with tcl support by typing: make -DWITH_TCL -.if defined(WITH_TCL) -TCL_INCDIR= ${LOCALBASE}/include/tcl8.3 -TK_INCDIR= ${LOCALBASE}/include/tk8.3 -MAKE_ENV= TCL_INCDIR=${TCL_INCDIR} -CONFIGURE_ENV= WISH=${LOCALBASE}/bin/wish8.3 -LIB_DEPENDS= tcl83.1:${PORTSDIR}/lang/tcl83 \ - tk83.1:${PORTSDIR}/x11-toolkits/tk83 -CONFIGURE_TCL= --with-tcl --with-tclconfig="${LOCALBASE}/lib/tcl8.3 ${LOCALBASE}/lib/tk8.3" -.endif - -# if you want to disable the multibyte support, type: -# make -DWITHOUT_MULTIBYTE -# -# if you want to set the default encoding for the multibyte support, type: -# make DEFAULT_ENCODING=<encoding> -# where <encoding> is one of these: -# SQL_ASCII LATIN1 LATIN2 LATIN3 LATIN4 LATIN5 -# EUC_JP EUC_CN EUC_KR EUC_TW KOI8 -# UNICODE MULE_INTERNAL WIN ALT -.if defined(WITHOUT_MULTIBYTE) -CONFIGURE_MULTIBYTE= # none -.elif defined(DEFAULT_ENCODING) -CONFIGURE_MULTIBYTE= --enable-multibyte="${DEFAULT_ENCODING}" -.else -CONFIGURE_MULTIBYTE= --enable-multibyte -.endif - -# if you want jdbc, type make -DWITH_JDBC -# Honors JAVA_HOME if you have it set, and don't want the dependency. -.if defined(WITH_JDBC) -JAVA_HOME?= ${LOCALBASE}/jdk1.1.8 -BUILD_DEPENDS= ${JAVA_HOME}/bin/javac:${PORTSDIR}/java/jdk -SCRIPTS_ENV+= JAVA_HOME=${JAVA_HOME} -.endif - -WRKSRC= ${WRKDIR}/${DISTNAME}/src -DOCDIR= ${WRKDIR}/${DISTNAME}/doc - -USE_GMAKE= YES -MAKEFILE= GNUmakefile -HAS_CONFIGURE= YES -CONFIGURE_ARGS= --prefix=${PREFIX}/pgsql \ - --enable-locale \ - --with-template=`uname -s | ${TR} '[A-Z]' '[a-z]'` \ - --with-includes="${PREFIX}/include ${TCL_INCDIR} ${TK_INCDIR}" \ - ${CONFIGURE_TCL} \ - ${CONFIGURE_MULTIBYTE} \ - --with-libraries=${PREFIX}/lib - -MAN1= createdb.1 createlang.1 createuser.1 dropdb.1 droplang.1 \ - dropuser.1 ecpg.1 initdb.1 initlocation.1 ipcclean.1 pg_ctl.1 \ - pg_dump.1 pg_dumpall.1 pg_passwd.1 pg_upgrade.1 pgaccess.1 \ - pgadmin.1 pgtclsh.1 pgtksh.1 postgres.1 postmaster.1 psql.1 \ - vacuumdb.1 -MANL= abort.l alter_group.l alter_table.l alter_user.l \ - begin.l close.l cluster.l comment.l commit.l copy.l \ - create_aggregate.l create_constraint_trigger.l \ - create_database.l create_function.l create_group.l \ - create_index.l create_language.l create_operator.l \ - create_rule.l create_sequence.l create_table.l \ - create_table_as.l create_trigger.l create_type.l \ - create_user.l create_view.l declare.l delete.l \ - drop_aggregate.l drop_database.l drop_function.l \ - drop_group.l drop_index.l drop_language.l \ - drop_operator.l drop_rule.l drop_sequence.l \ - drop_table.l drop_trigger.l drop_type.l drop_user.l \ - drop_view.l end.l explain.l fetch.l grant.l insert.l \ - listen.l load.l lock.l move.l notify.l reindex.l \ - reset.l revoke.l rollback.l select.l select_into.l \ - set.l show.l truncate.l unlisten.l update.l vacuum.l - -MANPREFIX= ${PREFIX}/pgsql - -pre-fetch: - @${ECHO_MSG} "To install and run postgresql you need to compile kernel with:" - @${ECHO_MSG} " options \"SYSVSHM, SYSVSEM, SYSVMSG\"" -.if !defined(WITH_TCL) - @${ECHO_MSG} "To build the \"PostgreSQL to Tcl interface library\", libpgtcl, type:" - @${ECHO_MSG} " make -DWITH_TCL" -.else - @${ECHO_MSG} "Building PostgreSQL with \"libpgtcl\"." -.endif -.if !defined(WITHOUT_MULTIBYTE) - @${ECHO_MSG} "To disable multibyte support, type:" - @${ECHO_MSG} " make -DWITHOUT_MULTIBYTE" -.if !defined(DEFAULT_ENCODING) - @${ECHO_MSG} "To set the default encoding for the multibyte support, type:" - @${ECHO_MSG} " make DEFAULT_ENCODING=<encoding>" - @${ECHO_MSG} "where <encoding> is one of these:" - @${ECHO_MSG} " SQL_ASCII LATIN1 LATIN2 LATIN3 LATIN4 LATIN5" - @${ECHO_MSG} " EUC_JP EUC_CN EUC_KR EUC_TW KOI8" - @${ECHO_MSG} " UNICODE MULE_INTERNAL WIN ALT" -.else - @${ECHO_MSG} "The default encoding is '${DEFAULT_ENCODING}'." -.endif -.else - @${ECHO_MSG} "Building PostgreSQL without multibyte support." -.endif -.if !defined(WITH_JDBC) - @${ECHO_MSG} "To build Java (JDBC) support, type:" - @${ECHO_MSG} " make -DWITH_JDBC" -.else - @${ECHO_MSG} "Building PostgreSQL with \"postgresql.jar\"." -.endif - -post-patch: - @ ${MV} ${WRKSRC}/template/freebsd ${WRKSRC}/template/freebsd.orig - @ ${SED} -e 's#CFLAGS:-O2 -m486 -pipe#CFLAGS:${CFLAGS}#' \ - -e 's#USE_LOCALE:no#USE_LOCALE:yes#' \ - ${WRKSRC}/template/freebsd.orig >> ${WRKSRC}/template/freebsd - @ ${MV} ${WRKSRC}/Makefile.global.in ${WRKSRC}/Makefile.global.in.old - @ ${SED} -e 's=!!PREFIX!!=${PREFIX}=g' \ - ${WRKSRC}/Makefile.global.in.old \ - >> ${WRKSRC}/Makefile.global.in - -post-build: -.if defined(WITH_JDBC) - @ cd ${WRKSRC}/interfaces/jdbc && ${GMAKE} -.if !defined(NOPORTDOCS) - @ cd ${WRKSRC}/interfaces/jdbc && ${GMAKE} examples -.endif -.endif - @ ${ECHO} "------------------------------------------------------------" - @ ${ECHO} "Dump existing databases, before installing new db version !!" - @ ${ECHO} "Detailed instructions, see" - @ ${ECHO} "${WRKDIR}/${DISTNAME}/INSTALL" - @ ${ECHO} "------------------------------------------------------------" - -pre-install: -.if defined(PACKAGE_BUILDING) - ${RM} -rf ${PREFIX}/pgsql -.endif - @ ${MKDIR} ${PREFIX}/pgsql - @ ${SETENV} ${MAKE_ENV} perl ${SCRIPTDIR}/createuser - -post-install: -.if defined(NOPORTDOCS) - @ ( cd ${DOCDIR}; ${GMAKE} man ) -.else - @ ( cd ${DOCDIR}; ${GMAKE} install ) -.endif - @ if [ ! -f ${PREFIX}/pgsql/.profile ]; then \ - ${ECHO} "PATH=${PATH}:${PREFIX}/pgsql/bin" \ - > ${PREFIX}/pgsql/.profile; \ - ${ECHO} "MANPATH=${MANPATH}:${PREFIX}/pgsql/man" \ - >> ${PREFIX}/pgsql/.profile; \ - ${ECHO} "PGLIB=${PREFIX}/pgsql/lib" \ - >> ${PREFIX}/pgsql/.profile; \ - ${ECHO} "# note: PGDATA overwrites the -D startup option" \ - >> ${PREFIX}/pgsql/.profile; \ - ${ECHO} "PGDATA=${PREFIX}/pgsql/data" \ - >> ${PREFIX}/pgsql/.profile; \ - ${ECHO} "DISPLAY=:0" \ - >> ${PREFIX}/pgsql/.profile; \ - ${ECHO} "export PATH MANPATH PGLIB PGDATA DISPLAY" \ - >> ${PREFIX}/pgsql/.profile; \ - ${ECHO} "# if you want to make regression tests use this TZ" \ - >> ${PREFIX}/pgsql/.profile; \ - ${ECHO} "#TZ=PST8PDT" \ - >> ${PREFIX}/pgsql/.profile; \ - ${ECHO} "#export TZ" \ - >> ${PREFIX}/pgsql/.profile; \ - fi - @ ${CHOWN} -R pgsql:pgsql ${PREFIX}/pgsql - @ ${ECHO} 'Initializing PostgreSQL Databases - this may take a few minutes...' - @ ${SETENV} OBJFORMAT=${PORTOBJFORMAT} ${LDCONFIG} -m ${PREFIX}/pgsql/lib - @ su -l pgsql -c 'PATH=${PREFIX}/pgsql/bin:${PATH} LD_LIBRARY_PATH=${PREFIX}/pgsql/lib ${PREFIX}/pgsql/bin/initdb --pglib=${PREFIX}/pgsql/lib --pgdata=${PREFIX}/pgsql/data' - @ ${SED} -e "s=!!PREFIX!!=${PREFIX}=g" < ${FILESDIR}/pgsql.sh.tmpl \ - > ${PREFIX}/etc/rc.d/pgsql.sh - @ ${CHMOD} 554 ${PREFIX}/etc/rc.d/pgsql.sh - @ ${CHOWN} root.pgsql ${PREFIX}/etc/rc.d/pgsql.sh - @ ${INSTALL_DATA} ${FILESDIR}/post-install-notes ${PREFIX}/pgsql -.if defined(WITHOUT_MULTIBYTE) - @${CP} ${TMPPLIST} ${TMPPLIST}.nomulti - @${GREP} -v pgsql/bin/pg_encoding ${TMPPLIST}.nomulti > ${TMPPLIST} -.endif -.if defined(WITH_TCL) - @${CP} ${TMPPLIST} ${TMPPLIST}.notcl - @${CAT} ${PKGDIR}/PLIST.tcl ${TMPPLIST}.notcl > ${TMPPLIST} - @${RM} ${TMPPLIST}.notcl -.endif -.if defined(WITH_JDBC) - @ ${MKDIR} -m 0555 ${PREFIX}/share/java/classes - @ ${INSTALL_DATA} ${WRKSRC}/interfaces/jdbc/postgresql.jar \ - ${PREFIX}/share/java/classes/postgresql.jar - @ ${ECHO_MSG} "---------------------------------------------------------" - @ ${ECHO_MSG} "Putting postgresql.jar in" - @ ${ECHO_MSG} "${PREFIX}/share/java/classes/postgresql.jar" - @ ${ECHO_MSG} "Add this to your CLASSPATH!" - @ ${ECHO_MSG} "ALSO NOTE: path inside jar file modified from 6.5.x:" - @ ${ECHO_MSG} " 'postgresql.*' -> 'org.postgresql.*'!" - @ ${ECHO_MSG} "You will need to modify you applications' props files." - @ ${ECHO_MSG} "---------------------------------------------------------" - @ ${CAT} ${PKGDIR}/PLIST.jdbc >> ${TMPPLIST} -.if !defined(NOPORTDOCS) - @ ${MKDIR} -m 0555 ${PREFIX}/share/examples/pgsql/jdbc - @ ${INSTALL_DATA} ${WRKSRC}/interfaces/jdbc/example/*java \ - ${PREFIX}/share/examples/pgsql/jdbc - @ ${INSTALL_DATA} ${WRKSRC}/interfaces/jdbc/README* \ - ${PREFIX}/share/examples/pgsql/jdbc - @ ${ECHO_MSG} "---------------------------------------------------------" - @ ${ECHO_MSG} "Putting jdbc examples into ${PREFIX}/share/examples/pgsql" - @ ${ECHO_MSG} "---------------------------------------------------------" - @ ${CAT} ${PKGDIR}/PLIST.doc >> ${TMPPLIST} -.endif -.endif -.if !defined(NOPORTDOCS) - ${MKDIR} ${PREFIX}/share/doc/pgsql - @ ${GMAKE} -C ${WRKDIR}/${DISTNAME}/doc install - ${INSTALL_MAN} ${WRKDIR}/${DISTNAME}/doc/FAQ* ${PREFIX}/share/doc/pgsql - ${INSTALL_MAN} ${WRKDIR}/${DISTNAME}/doc/README* ${PREFIX}/share/doc/pgsql - ${INSTALL_MAN} ${WRKDIR}/${DISTNAME}/doc/TODO ${PREFIX}/share/doc/pgsql -# ${INSTALL_MAN} ${WRKDIR}/${DISTNAME}/doc/*ps.gz ${PREFIX}/share/doc/pgsql -.endif -.if !defined(BATCH) - @ more -e ${FILESDIR}/post-install-notes -.endif -.if !defined(DEBUG_FLAGS) -.for file in ecpg pg_dump pg_id pg_passwd pg_version postgres psql - @ strip ${PREFIX}/pgsql/bin/${file} -.endfor -.endif - -.include <bsd.port.mk> diff --git a/databases/postgresql74-server/distinfo b/databases/postgresql74-server/distinfo deleted file mode 100644 index 309ea1e11614..000000000000 --- a/databases/postgresql74-server/distinfo +++ /dev/null @@ -1,4 +0,0 @@ -MD5 (postgresql/postgresql-7.0.2.base.tar.gz) = 871d23b85d9a3599a7ed75dfc7da7ba7 -MD5 (postgresql/postgresql-7.0.2.support.tar.gz) = c21180a6485d85785c8e69f0cbff05dd -MD5 (postgresql/postgresql-7.0.2.docs.tar.gz) = efac1f87463f252e54d72b256885b883 -MD5 (postgresql/postgresql-7.0.2.test.tar.gz) = 3443b3d83194c396f20aee2adc6f93bf diff --git a/databases/postgresql74-server/files/patch-aj b/databases/postgresql74-server/files/patch-aj deleted file mode 100644 index 4231fc94ede9..000000000000 --- a/databases/postgresql74-server/files/patch-aj +++ /dev/null @@ -1,67 +0,0 @@ ---- bin/pg_passwd/pg_passwd.c.orig Mon Apr 17 05:45:18 2000 -+++ bin/pg_passwd/pg_passwd.c Sat May 20 17:54:59 2000 -@@ -18,11 +18,15 @@ - - #endif - -+#ifndef _POSIX_SOURCE -+# define _PASSWORD_LEN 128 /* max length, not containing NULL */ -+#endif -+ - char *comname; - static void usage(FILE *stream); - static void read_pwd_file(char *filename); - static void write_pwd_file(char *filename, char *bkname); --static void encrypt_pwd(char key[9], char salt[3], char passwd[14]); -+static void encrypt_pwd(char key[9], char salt[3], char passwd[_PASSWORD_LEN+1]); - static void prompt_for_username(char *username); - static void prompt_for_password(char *prompt, char *password); - -@@ -150,7 +154,7 @@ - - if (q != NULL) - *(q++) = '\0'; -- if (strlen(p) != 13) -+ if (strlen(p) > _PASSWORD_LEN) - { - fprintf(stderr, "WARNING: %s: line %d: illegal password length.\n", - filename, npwds + 1); -@@ -214,7 +218,7 @@ - } - - static void --encrypt_pwd(char key[9], char salt[3], char passwd[14]) -+encrypt_pwd(char key[9], char salt[3], char passwd[_PASSWORD_LEN+1]) - { - int n; - -@@ -246,9 +250,9 @@ - - #ifdef NOT_USED - static int --check_pwd(char key[9], char passwd[14]) -+check_pwd(char key[9], char passwd[_PASSWORD_LEN+1]) - { -- char shouldbe[14]; -+ char shouldbe[_PASSWORD_LEN+1]; - char salt[3]; - - salt[0] = passwd[0]; -@@ -256,7 +260,7 @@ - salt[2] = '\0'; - encrypt_pwd(key, salt, shouldbe); - -- return strncmp(shouldbe, passwd, 13) == 0 ? 1 : 0; -+ return strncmp(shouldbe, passwd, _PASSWORD_LEN) == 0 ? 1 : 0; - } - - #endif -@@ -332,7 +336,7 @@ - char salt[3]; - char key[9], - key2[9]; -- char e_passwd[14]; -+ char e_passwd[_PASSWORD_LEN+1]; - int i; - - comname = argv[0]; diff --git a/databases/postgresql74-server/files/patch-ar b/databases/postgresql74-server/files/patch-ar deleted file mode 100644 index c5c8096fc141..000000000000 --- a/databases/postgresql74-server/files/patch-ar +++ /dev/null @@ -1,11 +0,0 @@ ---- configure.orig Sun Oct 10 14:37:07 1999 -+++ configure Sun Oct 10 14:37:29 1999 -@@ -1429,7 +1429,7 @@ - ELF_SYS=true - else - rm -rf conftest* -- if test "X$elf" = "Xyes" -+ if test "X$PORTOBJFORMAT" = "Xelf" - then - ELF_SYS=true - else diff --git a/databases/postgresql74-server/files/patch-as b/databases/postgresql74-server/files/patch-as deleted file mode 100644 index 3282168c4aed..000000000000 --- a/databases/postgresql74-server/files/patch-as +++ /dev/null @@ -1,11 +0,0 @@ ---- Makefile.global.in.orig Sun Dec 6 00:08:56 1998 -+++ Makefile.global.in Sat Feb 27 04:23:12 1999 -@@ -79,7 +79,7 @@ - POSTMANDIR= $(POSTGRESDIR)/man - - # Where the formatted documents (e.g., the reference manual) get installed. --POSTDOCDIR= $(POSTGRESDIR)/doc -+POSTDOCDIR= !!PREFIX!!/share/doc/pgsql - - # Where the header files necessary to build frontend programs get installed. - HEADERDIR= $(POSTGRESDIR)/include diff --git a/databases/postgresql74-server/files/patch-at b/databases/postgresql74-server/files/patch-at deleted file mode 100644 index 93e68a708211..000000000000 --- a/databases/postgresql74-server/files/patch-at +++ /dev/null @@ -1,11 +0,0 @@ ---- ../doc/Makefile.orig Sun Nov 29 06:30:13 1998 -+++ ../doc/Makefile Mon Jun 21 17:00:13 1999 -@@ -12,7 +12,7 @@ - # - #---------------------------------------------------------------------------- - --PGDOCS= $(POSTGRESDIR)/doc -+PGDOCS= $(POSTDOCDIR) - SRCDIR= ../src - - TAR= tar diff --git a/databases/postgresql74-server/files/patch-ba b/databases/postgresql74-server/files/patch-ba deleted file mode 100644 index a3b679b882c5..000000000000 --- a/databases/postgresql74-server/files/patch-ba +++ /dev/null @@ -1,25 +0,0 @@ ---- interfaces/jdbc/Makefile.orig Tue Mar 14 16:55:17 2000 -+++ interfaces/jdbc/Makefile Sun Apr 16 21:16:43 2000 -@@ -10,10 +10,10 @@ - - FIND = find - IDL2JAVA = idltojava -fno-cpp -fno-tie --JAR = jar --JAVA = java --JAVAC = javac -g --JAVADOC = javadoc -+JAR = !!JAVA_HOME!!/bin/jar -+JAVA = !!JAVA_HOME!!/bin/java -+JAVAC = !!JAVA_HOME!!/bin/javac -+JAVADOC = !!JAVA_HOME!!/bin/javadoc - RM = rm -f - TOUCH = touch - -@@ -40,6 +40,7 @@ - @echo To compile, type: - @echo " $(MAKE) jdbc2" - @echo ------------------------------------------------------------ -+ $(MAKE) jdbc1 - - msg: - @echo ------------------------------------------------------------ diff --git a/databases/postgresql74-server/files/patch-bb b/databases/postgresql74-server/files/patch-bb deleted file mode 100644 index ea0f1732dcb0..000000000000 --- a/databases/postgresql74-server/files/patch-bb +++ /dev/null @@ -1,13 +0,0 @@ ---- pl/tcl/Makefile~ Sat Apr 29 19:45:42 2000 -+++ pl/tcl/Makefile Sat May 20 22:42:22 2000 -@@ -71,7 +71,9 @@ - CFLAGS+= $(TCL_SHLIB_CFLAGS) $(TCL_DEFS) - - CFLAGS+= -I$(SRCDIR)/include -I$(SRCDIR)/backend $(PGSQL_INCLUDES) -- -+ -+CFLAGS+= -I$(TCL_INCDIR) -+ - # - # Uncomment the following to enable the unknown command lookup - # on the first of all calls to the call handler. See the doc diff --git a/databases/postgresql74-server/files/patch-bc b/databases/postgresql74-server/files/patch-bc deleted file mode 100644 index ff747fb84a2f..000000000000 --- a/databases/postgresql74-server/files/patch-bc +++ /dev/null @@ -1,5 +0,0 @@ ---- bin/pg_ctl/postmaster.opts.default.sample~ Mon Apr 17 05:45:17 2000 -+++ bin/pg_ctl/postmaster.opts.default.sample Tue May 23 02:46:30 2000 -@@ -1 +1 @@ -- -+-i -o "-F" diff --git a/databases/postgresql74-server/files/pgsql.sh.tmpl b/databases/postgresql74-server/files/pgsql.sh.tmpl deleted file mode 100644 index e1673b4850c2..000000000000 --- a/databases/postgresql74-server/files/pgsql.sh.tmpl +++ /dev/null @@ -1,34 +0,0 @@ -#!/bin/sh - -# $FreeBSD$ -# -# For postmaster startup options, edit $PGDATA/postmaster.opts.default -# Preinstalled options are -i -o "-F" - -case $1 in -start) - [ -d !!PREFIX!!/pgsql/lib ] && /sbin/ldconfig -m !!PREFIX!!/pgsql/lib - [ -x !!PREFIX!!/pgsql/bin/pg_ctl ] && { - su -l pgsql -c \ - 'exec !!PREFIX!!/pgsql/bin/pg_ctl -w start > !!PREFIX!!/pgsql/errlog 2>&1' - echo -n ' pgsql' - } - ;; - -stop) - [ -x !!PREFIX!!/pgsql/bin/pg_ctl ] && { - su -l pgsql -c 'exec !!PREFIX!!/pgsql/bin/pg_ctl -w -m fast stop' - } - ;; - -status) - [ -x !!PREFIX!!/pgsql/bin/pg_ctl ] && { - su -l pgsql -c 'exec !!PREFIX!!/pgsql/bin/pg_ctl status' - } - ;; - -*) - echo "usage: `basename $0` {start|stop|status}" >&2 - exit 64 - ;; -esac diff --git a/databases/postgresql74-server/files/post-install-notes b/databases/postgresql74-server/files/post-install-notes deleted file mode 100644 index 289a7651109a..000000000000 --- a/databases/postgresql74-server/files/post-install-notes +++ /dev/null @@ -1,16 +0,0 @@ - -Now that PostgreSQL is installed, you should read the documentation and -implementation guides. These can be found at: - - http://www.PostgreSQL.org/docs - -You may wish to subscribe to the PostgreSQL user-support mailing list. -Send an e-mail to pgsql-questions-request@postgresql.org with the -text "subscribe" in the message body. - -If you built PostgreSQL with TCL support, you can install the port -"pgaccess" to get a TCL/TK based database frontend for database -operations. - -To start PostgreSQL, run the startup script: -$PREFIX/etc/rc.d/pgsql.sh start diff --git a/databases/postgresql74-server/pkg-comment b/databases/postgresql74-server/pkg-comment deleted file mode 100644 index 2125016b133c..000000000000 --- a/databases/postgresql74-server/pkg-comment +++ /dev/null @@ -1 +0,0 @@ -A robust, next generation, object-relational DBMS diff --git a/databases/postgresql74-server/pkg-descr b/databases/postgresql74-server/pkg-descr deleted file mode 100644 index f48a33337e55..000000000000 --- a/databases/postgresql74-server/pkg-descr +++ /dev/null @@ -1,24 +0,0 @@ -PostgreSQL is a robust, next-generation, Object-Relational DBMS (ORDBMS), -derived from the Berkeley Postgres database management system. While -PostgreSQL retains the powerful object-relational data model, rich data types -and easy extensibility of Postgres, it replaces the PostQuel query language -with an extended subset of SQL. - -The original Postgres code was the effort of many graduate students, -undergraduate students, and staff programmers working under the direction of -Professor Michael Stonebraker at the University of California, Berkeley. In -1995, Andrew Yu and Jolly Chen took on the task of converting the DBMS query -language to SQL and created a new database system which came to known as -Postgres95. Many others contributed to the porting, testing, debugging and -enhancement of the Postgres95 code. As the code improved, and 1995 faded into -memory, PostgreSQL was born. - -PostgreSQL development is presently being performed by a team of Internet -developers who are now responsible for all current and future development. The -development team coordinator is Marc G. Fournier (scrappy@PostgreSQL.ORG). -Support is available from the PostgreSQL developer/user community through the -support mailing list (questions@PostgreSQL.ORG). - -PostgreSQL is free and the complete source is available. - -WWW: http://www.postgresql.org diff --git a/databases/postgresql74-server/pkg-install b/databases/postgresql74-server/pkg-install deleted file mode 100644 index 7f3a090fe4b6..000000000000 --- a/databases/postgresql74-server/pkg-install +++ /dev/null @@ -1,44 +0,0 @@ -#! /bin/sh - -# $FreeBSD$ - -PATH=/bin:/usr/sbin - -if [ -z "${DB_DIR}" ]; then - DB_DIR=${PKG_PREFIX}/pgsql/data -fi - -case $2 in -POST-INSTALL) - USER=pgsql - GROUP=${USER} - UID=89 - GID=${UID} - - if pw group show "${GROUP}" 2>/dev/null; then - echo "You already have a group \"${GROUP}\", so I will use it." - else - if pw groupadd ${GROUP} -g ${GID}; then - echo "Added group \"${GROUP}\"." - else - echo "Adding group \"${GROUP}\" failed..." - exit 1 - fi - fi - - if pw user show "${USER}" 2>/dev/null; then - echo "You already have a user \"${USER}\", so I will use it." - else - if pw useradd ${USER} -u ${UID} -g ${GROUP} -h - \ - -d ${DB_DIR} -s /sbin/nologin -c "PostgreSQL Daemon" - then - echo "Added user \"${USER}\"." - else - echo "Adding user \"${USER}\" failed..." - exit 1 - fi - fi - - chown -R ${USER}.${GROUP} ${DB_DIR} - ;; -esac diff --git a/databases/postgresql74-server/pkg-plist b/databases/postgresql74-server/pkg-plist deleted file mode 100644 index 9992da1174ae..000000000000 --- a/databases/postgresql74-server/pkg-plist +++ /dev/null @@ -1,168 +0,0 @@ -etc/rc.d/pgsql.sh -pgsql/.profile -pgsql/bin/createdb -pgsql/bin/createlang -pgsql/bin/createuser -pgsql/bin/dropdb -pgsql/bin/droplang -pgsql/bin/dropuser -pgsql/bin/ecpg -pgsql/bin/initdb -pgsql/bin/initlocation -pgsql/bin/ipcclean -pgsql/bin/pg_ctl -pgsql/bin/pg_dump -pgsql/bin/pg_dumpall -pgsql/bin/pg_encoding -pgsql/bin/pg_id -pgsql/bin/pg_passwd -pgsql/bin/pg_upgrade -pgsql/bin/pg_version -pgsql/bin/postgres -pgsql/bin/postmaster -pgsql/bin/psql -pgsql/bin/vacuumdb -pgsql/data/PG_VERSION -pgsql/data/base/template1/PG_VERSION -pgsql/data/base/template1/pg_aggregate -pgsql/data/base/template1/pg_aggregate_name_type_index -pgsql/data/base/template1/pg_am -pgsql/data/base/template1/pg_am_name_index -pgsql/data/base/template1/pg_amop -pgsql/data/base/template1/pg_amop_opid_index -pgsql/data/base/template1/pg_amop_strategy_index -pgsql/data/base/template1/pg_amproc -pgsql/data/base/template1/pg_attrdef -pgsql/data/base/template1/pg_attrdef_adrelid_index -pgsql/data/base/template1/pg_attribute -pgsql/data/base/template1/pg_attribute_relid_attnam_index -pgsql/data/base/template1/pg_attribute_relid_attnum_index -pgsql/data/base/template1/pg_class -pgsql/data/base/template1/pg_class_oid_index -pgsql/data/base/template1/pg_class_relname_index -pgsql/data/base/template1/pg_description -pgsql/data/base/template1/pg_description_objoid_index -pgsql/data/base/template1/pg_index -pgsql/data/base/template1/pg_index_indexrelid_index -pgsql/data/base/template1/pg_indexes -pgsql/data/base/template1/pg_inheritproc -pgsql/data/base/template1/pg_inherits -pgsql/data/base/template1/pg_inherits_relid_seqno_index -pgsql/data/base/template1/pg_ipl -pgsql/data/base/template1/pg_language -pgsql/data/base/template1/pg_language_name_index -pgsql/data/base/template1/pg_language_oid_index -pgsql/data/base/template1/pg_listener -pgsql/data/base/template1/pg_listener_relname_pid_index -pgsql/data/base/template1/pg_opclass -pgsql/data/base/template1/pg_opclass_deftype_index -pgsql/data/base/template1/pg_opclass_name_index -pgsql/data/base/template1/pg_operator -pgsql/data/base/template1/pg_operator_oid_index -pgsql/data/base/template1/pg_operator_oprname_l_r_k_index -pgsql/data/base/template1/pg_proc -pgsql/data/base/template1/pg_proc_oid_index -pgsql/data/base/template1/pg_proc_proname_narg_type_index -pgsql/data/base/template1/pg_relcheck -pgsql/data/base/template1/pg_relcheck_rcrelid_index -pgsql/data/base/template1/pg_rewrite -pgsql/data/base/template1/pg_rewrite_oid_index -pgsql/data/base/template1/pg_rewrite_rulename_index -pgsql/data/base/template1/pg_rules -pgsql/data/base/template1/pg_statistic -pgsql/data/base/template1/pg_statistic_relid_att_index -pgsql/data/base/template1/pg_tables -pgsql/data/base/template1/pg_trigger -pgsql/data/base/template1/pg_trigger_tgconstrname_index -pgsql/data/base/template1/pg_trigger_tgconstrrelid_index -pgsql/data/base/template1/pg_trigger_tgrelid_index -pgsql/data/base/template1/pg_type -pgsql/data/base/template1/pg_type_oid_index -pgsql/data/base/template1/pg_type_typname_index -pgsql/data/base/template1/pg_user -pgsql/data/base/template1/pg_views -pgsql/data/pg_control -pgsql/data/pg_database -pgsql/data/pg_geqo.sample -pgsql/data/pg_group -pgsql/data/pg_group_name_index -pgsql/data/pg_group_sysid_index -pgsql/data/pg_hba.conf -pgsql/data/pg_log -pgsql/data/pg_shadow -pgsql/data/pg_variable -pgsql/data/postmaster.opts.default -pgsql/include/access/attnum.h -pgsql/include/c.h -pgsql/include/commands/trigger.h -pgsql/include/config.h -pgsql/include/ecpgerrno.h -pgsql/include/ecpglib.h -pgsql/include/ecpgtype.h -pgsql/include/executor/spi.h -pgsql/include/fmgr.h -pgsql/include/lib/dllist.h -pgsql/include/libpgeasy.h -pgsql/include/libpq/libpq-fs.h -pgsql/include/libpq/pqcomm.h -pgsql/include/libpq++/pgconnection.h -pgsql/include/libpq++/pgcursordb.h -pgsql/include/libpq++/pgdatabase.h -pgsql/include/libpq++/pglobject.h -pgsql/include/libpq++/pgtransdb.h -pgsql/include/libpq++.h -pgsql/include/libpq-fe.h -pgsql/include/libpq-int.h -pgsql/include/os.h -pgsql/include/postgres.h -pgsql/include/postgres_ext.h -pgsql/include/pqexpbuffer.h -pgsql/include/sql3types.h -pgsql/include/sqlca.h -pgsql/include/utils/elog.h -pgsql/include/utils/geo_decls.h -pgsql/include/utils/mcxt.h -pgsql/include/utils/palloc.h -pgsql/lib/global1.bki.source -pgsql/lib/global1.description -pgsql/lib/libecpg.a -pgsql/lib/libecpg.so -pgsql/lib/libecpg.so.3 -pgsql/lib/libpgeasy.a -pgsql/lib/libpgeasy.so -pgsql/lib/libpgeasy.so.2 -pgsql/lib/libpq++.a -pgsql/lib/libpq++.so -pgsql/lib/libpq++.so.3 -pgsql/lib/libpq.a -pgsql/lib/libpq.so -pgsql/lib/libpq.so.2 -pgsql/lib/local1_template1.bki.source -pgsql/lib/local1_template1.description -pgsql/lib/pg_geqo.sample -pgsql/lib/pg_hba.conf.sample -pgsql/lib/pg_ident.conf.sample -pgsql/lib/pg_options.sample -pgsql/lib/plpgsql.so -pgsql/lib/postmaster.opts.default.sample -pgsql/post-install-notes -@dirrm pgsql/bin -@dirrm pgsql/data/base/template1 -@dirrm pgsql/data/base -@dirrm pgsql/data/pg_xlog -@dirrm pgsql/data -@dirrm pgsql/include/access -@dirrm pgsql/include/commands -@dirrm pgsql/include/executor -@dirrm pgsql/include/lib -@dirrm pgsql/include/libpq -@dirrm pgsql/include/libpq++ -@dirrm pgsql/include/port/freebsd -@dirrm pgsql/include/port -@dirrm pgsql/include/utils -@dirrm pgsql/include -@dirrm pgsql/lib -@dirrm pgsql/man/man1 -@dirrm pgsql/man/manl -@dirrm pgsql/man -@dirrm pgsql diff --git a/databases/postgresql74-server/pkg-plist.doc b/databases/postgresql74-server/pkg-plist.doc deleted file mode 100644 index 06b7bd9ea116..000000000000 --- a/databases/postgresql74-server/pkg-plist.doc +++ /dev/null @@ -1,888 +0,0 @@ -share/doc/pgsql/FAQ -share/doc/pgsql/FAQ_AIX -share/doc/pgsql/FAQ_BSDI -share/doc/pgsql/FAQ_DEV -share/doc/pgsql/FAQ_DigitalUnix -share/doc/pgsql/FAQ_FreeBSD -share/doc/pgsql/FAQ_HPUX -share/doc/pgsql/FAQ_Irix -share/doc/pgsql/FAQ_Linux -share/doc/pgsql/FAQ_QNX4 -share/doc/pgsql/FAQ_SCO -share/doc/pgsql/FAQ_Solaris -share/doc/pgsql/README.Charsets -share/doc/pgsql/README.NT -share/doc/pgsql/README.fsync -share/doc/pgsql/README.inet -share/doc/pgsql/README.locale -share/doc/pgsql/README.mb -share/doc/pgsql/README.mb.jp -share/doc/pgsql/TODO -share/doc/pgsql/admin/admin.htm -share/doc/pgsql/admin/admin.html -share/doc/pgsql/admin/biblio.htm -share/doc/pgsql/admin/c573.htm -share/doc/pgsql/admin/c573602.htm -share/doc/pgsql/admin/c573680.htm -share/doc/pgsql/admin/c573717.htm -share/doc/pgsql/admin/copyright.htm -share/doc/pgsql/admin/disk.htm -share/doc/pgsql/admin/index.html -share/doc/pgsql/admin/install-win32.htm -share/doc/pgsql/admin/install-win321073.htm -share/doc/pgsql/admin/install-win321082.htm -share/doc/pgsql/admin/install.htm -share/doc/pgsql/admin/install855.htm -share/doc/pgsql/admin/intro-ag.htm -share/doc/pgsql/admin/intro-ag162.htm -share/doc/pgsql/admin/layout.gif -share/doc/pgsql/admin/layout.htm -share/doc/pgsql/admin/manage-ag.htm -share/doc/pgsql/admin/manage-ag1604.htm -share/doc/pgsql/admin/manage-ag1646.htm -share/doc/pgsql/admin/manage-ag1655.htm -share/doc/pgsql/admin/newuser.htm -share/doc/pgsql/admin/notation.htm -share/doc/pgsql/admin/pg-options.htm -share/doc/pgsql/admin/ports.htm -share/doc/pgsql/admin/ports481.htm -share/doc/pgsql/admin/postmaster.htm -share/doc/pgsql/admin/preface.htm -share/doc/pgsql/admin/recovery.htm -share/doc/pgsql/admin/regress.htm -share/doc/pgsql/admin/regress1861.htm -share/doc/pgsql/admin/regress1895.htm -share/doc/pgsql/admin/regress1941.htm -share/doc/pgsql/admin/release.htm -share/doc/pgsql/admin/release2009.htm -share/doc/pgsql/admin/release2020.htm -share/doc/pgsql/admin/release2031.htm -share/doc/pgsql/admin/release2042.htm -share/doc/pgsql/admin/release2124.htm -share/doc/pgsql/admin/release2135.htm -share/doc/pgsql/admin/release2146.htm -share/doc/pgsql/admin/release2187.htm -share/doc/pgsql/admin/release2203.htm -share/doc/pgsql/admin/release2222.htm -share/doc/pgsql/admin/release2266.htm -share/doc/pgsql/admin/release2288.htm -share/doc/pgsql/admin/release2303.htm -share/doc/pgsql/admin/release2312.htm -share/doc/pgsql/admin/release2335.htm -share/doc/pgsql/admin/release2349.htm -share/doc/pgsql/admin/release2352.htm -share/doc/pgsql/admin/release2377.htm -share/doc/pgsql/admin/release2414.htm -share/doc/pgsql/admin/release2421.htm -share/doc/pgsql/admin/release2428.htm -share/doc/pgsql/admin/release2435.htm -share/doc/pgsql/admin/release2439.htm -share/doc/pgsql/admin/runtime.htm -share/doc/pgsql/admin/security.htm -share/doc/pgsql/admin/security1450.htm -share/doc/pgsql/admin/security1485.htm -share/doc/pgsql/admin/security1509.htm -share/doc/pgsql/admin/security1530.htm -share/doc/pgsql/admin/terminology.htm -share/doc/pgsql/admin/trouble.htm -share/doc/pgsql/admin/trouble1721.htm -share/doc/pgsql/admin/trouble1738.htm -share/doc/pgsql/admin/y2k.htm -share/doc/pgsql/postgres/about.htm -share/doc/pgsql/postgres/advanced.htm -share/doc/pgsql/postgres/advanced27923.htm -share/doc/pgsql/postgres/advanced27945.htm -share/doc/pgsql/postgres/app-createdb.htm -share/doc/pgsql/postgres/app-createlang.htm -share/doc/pgsql/postgres/app-createuser.htm -share/doc/pgsql/postgres/app-dropdb.htm -share/doc/pgsql/postgres/app-droplang.htm -share/doc/pgsql/postgres/app-dropuser.htm -share/doc/pgsql/postgres/app-ecpg.htm -share/doc/pgsql/postgres/app-initdb.htm -share/doc/pgsql/postgres/app-initlocation.htm -share/doc/pgsql/postgres/app-ipcclean.htm -share/doc/pgsql/postgres/app-pg-passwd.htm -share/doc/pgsql/postgres/app-pg-upgrade.htm -share/doc/pgsql/postgres/app-pgaccess.htm -share/doc/pgsql/postgres/app-pgadmin.htm -share/doc/pgsql/postgres/app-pgctl.htm -share/doc/pgsql/postgres/app-pgdump.htm -share/doc/pgsql/postgres/app-pgdumpall.htm -share/doc/pgsql/postgres/app-pgtclsh.htm -share/doc/pgsql/postgres/app-pgtksh.htm -share/doc/pgsql/postgres/app-postgres.htm -share/doc/pgsql/postgres/app-postmaster.htm -share/doc/pgsql/postgres/app-psql.htm -share/doc/pgsql/postgres/app-vacuumdb.htm -share/doc/pgsql/postgres/applications.htm -share/doc/pgsql/postgres/arch-pg.htm -share/doc/pgsql/postgres/arch.htm -share/doc/pgsql/postgres/arrays.htm -share/doc/pgsql/postgres/biblio.htm -share/doc/pgsql/postgres/bki.htm -share/doc/pgsql/postgres/bki26573.htm -share/doc/pgsql/postgres/bki26657.htm -share/doc/pgsql/postgres/bki26681.htm -share/doc/pgsql/postgres/bki26742.htm -share/doc/pgsql/postgres/c16883.htm -share/doc/pgsql/postgres/c1688316912.htm -share/doc/pgsql/postgres/c1688316990.htm -share/doc/pgsql/postgres/c1688317027.htm -share/doc/pgsql/postgres/c19986.htm -share/doc/pgsql/postgres/c21722.htm -share/doc/pgsql/postgres/c2172221764.htm -share/doc/pgsql/postgres/c2172221782.htm -share/doc/pgsql/postgres/c2172221924.htm -share/doc/pgsql/postgres/c2172221936.htm -share/doc/pgsql/postgres/c2172221956.htm -share/doc/pgsql/postgres/c2172221961.htm -share/doc/pgsql/postgres/c25129.htm -share/doc/pgsql/postgres/c4091.htm -share/doc/pgsql/postgres/c40914117.htm -share/doc/pgsql/postgres/c40914344.htm -share/doc/pgsql/postgres/c4362.htm -share/doc/pgsql/postgres/c43624375.htm -share/doc/pgsql/postgres/c4888.htm -share/doc/pgsql/postgres/c4933.htm -share/doc/pgsql/postgres/c49334943.htm -share/doc/pgsql/postgres/c49334947.htm -share/doc/pgsql/postgres/catalogs.gif -share/doc/pgsql/postgres/clientserver.gif -share/doc/pgsql/postgres/compiler.htm -share/doc/pgsql/postgres/connections.gif -share/doc/pgsql/postgres/copyright.htm -share/doc/pgsql/postgres/cvs.htm -share/doc/pgsql/postgres/cvs28436.htm -share/doc/pgsql/postgres/cvs28492.htm -share/doc/pgsql/postgres/datatype.htm -share/doc/pgsql/postgres/datatype1038.htm -share/doc/pgsql/postgres/datatype1070.htm -share/doc/pgsql/postgres/datatype1134.htm -share/doc/pgsql/postgres/datatype1649.htm -share/doc/pgsql/postgres/datatype1681.htm -share/doc/pgsql/postgres/datatype1920.htm -share/doc/pgsql/postgres/datetime-appendix.htm -share/doc/pgsql/postgres/datetime-appendix28356.htm -share/doc/pgsql/postgres/dfunc.htm -share/doc/pgsql/postgres/dfunc20136.htm -share/doc/pgsql/postgres/dfunc20146.htm -share/doc/pgsql/postgres/disk.htm -share/doc/pgsql/postgres/docguide.htm -share/doc/pgsql/postgres/docguide28718.htm -share/doc/pgsql/postgres/docguide28749.htm -share/doc/pgsql/postgres/docguide28840.htm -share/doc/pgsql/postgres/docguide28861.htm -share/doc/pgsql/postgres/docguide28887.htm -share/doc/pgsql/postgres/docguide29024.htm -share/doc/pgsql/postgres/docguide29362.htm -share/doc/pgsql/postgres/environ.htm -share/doc/pgsql/postgres/extend.htm -share/doc/pgsql/postgres/extend18852.htm -share/doc/pgsql/postgres/extend18864.htm -share/doc/pgsql/postgres/func-ref.htm -share/doc/pgsql/postgres/functions.htm -share/doc/pgsql/postgres/functions2593.htm -share/doc/pgsql/postgres/functions2733.htm -share/doc/pgsql/postgres/functions2876.htm -share/doc/pgsql/postgres/functions2976.htm -share/doc/pgsql/postgres/functions3443.htm -share/doc/pgsql/postgres/functions3641.htm -share/doc/pgsql/postgres/geqo-biblio.htm -share/doc/pgsql/postgres/geqo.htm -share/doc/pgsql/postgres/geqo25594.htm -share/doc/pgsql/postgres/geqo25617.htm -share/doc/pgsql/postgres/geqo25655.htm -share/doc/pgsql/postgres/gist.htm -share/doc/pgsql/postgres/index.html -share/doc/pgsql/postgres/indices.htm -share/doc/pgsql/postgres/inherit.htm -share/doc/pgsql/postgres/install-win32.htm -share/doc/pgsql/postgres/install-win3217383.htm -share/doc/pgsql/postgres/install-win3217392.htm -share/doc/pgsql/postgres/install.htm -share/doc/pgsql/postgres/install17165.htm -share/doc/pgsql/postgres/intro.htm -share/doc/pgsql/postgres/intro176.htm -share/doc/pgsql/postgres/intro304.htm -share/doc/pgsql/postgres/intro60.htm -share/doc/pgsql/postgres/jdbc.htm -share/doc/pgsql/postgres/jdbc24909.htm -share/doc/pgsql/postgres/jdbc24921.htm -share/doc/pgsql/postgres/jdbc24927.htm -share/doc/pgsql/postgres/jdbc24935.htm -share/doc/pgsql/postgres/jdbc24953.htm -share/doc/pgsql/postgres/jdbc24990.htm -share/doc/pgsql/postgres/jdbc25021.htm -share/doc/pgsql/postgres/jdbc25026.htm -share/doc/pgsql/postgres/jdbc25030.htm -share/doc/pgsql/postgres/jdbc25056.htm -share/doc/pgsql/postgres/jdbc25086.htm -share/doc/pgsql/postgres/largeobjects.htm -share/doc/pgsql/postgres/largeobjects21625.htm -share/doc/pgsql/postgres/largeobjects21628.htm -share/doc/pgsql/postgres/largeobjects21707.htm -share/doc/pgsql/postgres/largeobjects21714.htm -share/doc/pgsql/postgres/largeobjects21718.htm -share/doc/pgsql/postgres/layout.gif -share/doc/pgsql/postgres/layout.htm -share/doc/pgsql/postgres/libpq-chapter.htm -share/doc/pgsql/postgres/libpq-chapter22422.htm -share/doc/pgsql/postgres/libpq-chapter22577.htm -share/doc/pgsql/postgres/libpq-chapter22724.htm -share/doc/pgsql/postgres/libpq-chapter22736.htm -share/doc/pgsql/postgres/libpq-chapter22774.htm -share/doc/pgsql/postgres/libpq-chapter22844.htm -share/doc/pgsql/postgres/libpq-chapter22857.htm -share/doc/pgsql/postgres/libpq-chapter22942.htm -share/doc/pgsql/postgres/libpq-envars.htm -share/doc/pgsql/postgres/libpq-threading.htm -share/doc/pgsql/postgres/libpqplusplus.htm -share/doc/pgsql/postgres/libpqplusplus23034.htm -share/doc/pgsql/postgres/libpqplusplus23044.htm -share/doc/pgsql/postgres/libpqplusplus23074.htm -share/doc/pgsql/postgres/libpqplusplus23179.htm -share/doc/pgsql/postgres/libpqplusplus23202.htm -share/doc/pgsql/postgres/lisp.htm -share/doc/pgsql/postgres/manage-ag.htm -share/doc/pgsql/postgres/manage-ag17914.htm -share/doc/pgsql/postgres/manage-ag17956.htm -share/doc/pgsql/postgres/manage-ag17965.htm -share/doc/pgsql/postgres/manage.htm -share/doc/pgsql/postgres/manage4814.htm -share/doc/pgsql/postgres/manage4838.htm -share/doc/pgsql/postgres/manage4880.htm -share/doc/pgsql/postgres/mvcc.htm -share/doc/pgsql/postgres/mvcc4568.htm -share/doc/pgsql/postgres/mvcc4621.htm -share/doc/pgsql/postgres/mvcc4633.htm -share/doc/pgsql/postgres/mvcc4646.htm -share/doc/pgsql/postgres/mvcc4723.htm -share/doc/pgsql/postgres/mvcc4744.htm -share/doc/pgsql/postgres/newuser.htm -share/doc/pgsql/postgres/notation.htm -share/doc/pgsql/postgres/odbc.htm -share/doc/pgsql/postgres/odbc24433.htm -share/doc/pgsql/postgres/odbc24471.htm -share/doc/pgsql/postgres/odbc24644.htm -share/doc/pgsql/postgres/odbc24666.htm -share/doc/pgsql/postgres/operators.htm -share/doc/pgsql/postgres/operators2127.htm -share/doc/pgsql/postgres/operators2198.htm -share/doc/pgsql/postgres/operators2267.htm -share/doc/pgsql/postgres/operators2377.htm -share/doc/pgsql/postgres/operators2436.htm -share/doc/pgsql/postgres/operators2490.htm -share/doc/pgsql/postgres/overview.htm -share/doc/pgsql/postgres/overview25194.htm -share/doc/pgsql/postgres/overview25219.htm -share/doc/pgsql/postgres/overview25347.htm -share/doc/pgsql/postgres/overview25403.htm -share/doc/pgsql/postgres/overview25457.htm -share/doc/pgsql/postgres/page.htm -share/doc/pgsql/postgres/page26805.htm -share/doc/pgsql/postgres/page26819.htm -share/doc/pgsql/postgres/part-admin.htm -share/doc/pgsql/postgres/part-appendix.htm -share/doc/pgsql/postgres/part-developer.htm -share/doc/pgsql/postgres/part-interfaces.htm -share/doc/pgsql/postgres/part-programmer.htm -share/doc/pgsql/postgres/part-tutorial.htm -share/doc/pgsql/postgres/part-user.htm -share/doc/pgsql/postgres/partial-index.htm -share/doc/pgsql/postgres/pg-options-dev.htm -share/doc/pgsql/postgres/pg-options.htm -share/doc/pgsql/postgres/pgeasy-chapter.htm -share/doc/pgsql/postgres/pgtcl-pgconndefaults.htm -share/doc/pgsql/postgres/pgtcl-pgconnect.htm -share/doc/pgsql/postgres/pgtcl-pgdisconnect.htm -share/doc/pgsql/postgres/pgtcl-pgexec.htm -share/doc/pgsql/postgres/pgtcl-pglisten.htm -share/doc/pgsql/postgres/pgtcl-pgloclose.htm -share/doc/pgsql/postgres/pgtcl-pglocreat.htm -share/doc/pgsql/postgres/pgtcl-pgloexport.htm -share/doc/pgsql/postgres/pgtcl-pgloimport.htm -share/doc/pgsql/postgres/pgtcl-pglolseek.htm -share/doc/pgsql/postgres/pgtcl-pgloopen.htm -share/doc/pgsql/postgres/pgtcl-pgloread.htm -share/doc/pgsql/postgres/pgtcl-pglotell.htm -share/doc/pgsql/postgres/pgtcl-pglounlink.htm -share/doc/pgsql/postgres/pgtcl-pglowrite.htm -share/doc/pgsql/postgres/pgtcl-pgresult.htm -share/doc/pgsql/postgres/pgtcl-pgselect.htm -share/doc/pgsql/postgres/pgtcl.htm -share/doc/pgsql/postgres/pgtcl23317.htm -share/doc/pgsql/postgres/pgtcl23321.htm -share/doc/pgsql/postgres/pl-perl.htm -share/doc/pgsql/postgres/pl-perl4533.htm -share/doc/pgsql/postgres/pl-perl4542.htm -share/doc/pgsql/postgres/ports.htm -share/doc/pgsql/postgres/ports16791.htm -share/doc/pgsql/postgres/postgres.htm -share/doc/pgsql/postgres/postgres.html -share/doc/pgsql/postgres/postmaster.htm -share/doc/pgsql/postgres/preface.htm -share/doc/pgsql/postgres/protocol.htm -share/doc/pgsql/postgres/protocol25770.htm -share/doc/pgsql/postgres/protocol25925.htm -share/doc/pgsql/postgres/protocol25962.htm -share/doc/pgsql/postgres/query.htm -share/doc/pgsql/postgres/query27752.htm -share/doc/pgsql/postgres/query27768.htm -share/doc/pgsql/postgres/query27790.htm -share/doc/pgsql/postgres/query27799.htm -share/doc/pgsql/postgres/query27817.htm -share/doc/pgsql/postgres/query27825.htm -share/doc/pgsql/postgres/query27844.htm -share/doc/pgsql/postgres/query27849.htm -share/doc/pgsql/postgres/query27856.htm -share/doc/pgsql/postgres/recovery.htm -share/doc/pgsql/postgres/regress.htm -share/doc/pgsql/postgres/regress18171.htm -share/doc/pgsql/postgres/regress18205.htm -share/doc/pgsql/postgres/regress18251.htm -share/doc/pgsql/postgres/release.htm -share/doc/pgsql/postgres/release18319.htm -share/doc/pgsql/postgres/release18330.htm -share/doc/pgsql/postgres/release18341.htm -share/doc/pgsql/postgres/release18352.htm -share/doc/pgsql/postgres/release18434.htm -share/doc/pgsql/postgres/release18445.htm -share/doc/pgsql/postgres/release18456.htm -share/doc/pgsql/postgres/release18497.htm -share/doc/pgsql/postgres/release18513.htm -share/doc/pgsql/postgres/release18532.htm -share/doc/pgsql/postgres/release18576.htm -share/doc/pgsql/postgres/release18598.htm -share/doc/pgsql/postgres/release18613.htm -share/doc/pgsql/postgres/release18622.htm -share/doc/pgsql/postgres/release18645.htm -share/doc/pgsql/postgres/release18659.htm -share/doc/pgsql/postgres/release18662.htm -share/doc/pgsql/postgres/release18687.htm -share/doc/pgsql/postgres/release18724.htm -share/doc/pgsql/postgres/release18731.htm -share/doc/pgsql/postgres/release18738.htm -share/doc/pgsql/postgres/release18745.htm -share/doc/pgsql/postgres/release18749.htm -share/doc/pgsql/postgres/rules.htm -share/doc/pgsql/postgres/rules19478.htm -share/doc/pgsql/postgres/rules19639.htm -share/doc/pgsql/postgres/rules19770.htm -share/doc/pgsql/postgres/rules19784.htm -share/doc/pgsql/postgres/runtime.htm -share/doc/pgsql/postgres/security.htm -share/doc/pgsql/postgres/security17760.htm -share/doc/pgsql/postgres/security17795.htm -share/doc/pgsql/postgres/security17819.htm -share/doc/pgsql/postgres/security17840.htm -share/doc/pgsql/postgres/signals.htm -share/doc/pgsql/postgres/spi-spiconnect.htm -share/doc/pgsql/postgres/spi-spicopytuple.htm -share/doc/pgsql/postgres/spi-spiexec.htm -share/doc/pgsql/postgres/spi-spiexecp.htm -share/doc/pgsql/postgres/spi-spifinish.htm -share/doc/pgsql/postgres/spi-spifname.htm -share/doc/pgsql/postgres/spi-spifnumber.htm -share/doc/pgsql/postgres/spi-spigetbinval.htm -share/doc/pgsql/postgres/spi-spigetrelname.htm -share/doc/pgsql/postgres/spi-spigettype.htm -share/doc/pgsql/postgres/spi-spigettypeid.htm -share/doc/pgsql/postgres/spi-spigetvalue.htm -share/doc/pgsql/postgres/spi-spimodifytuple.htm -share/doc/pgsql/postgres/spi-spipalloc.htm -share/doc/pgsql/postgres/spi-spipfree.htm -share/doc/pgsql/postgres/spi-spiprepare.htm -share/doc/pgsql/postgres/spi-spirepalloc.htm -share/doc/pgsql/postgres/spi-spisaveplan.htm -share/doc/pgsql/postgres/spi.htm -share/doc/pgsql/postgres/spi20808.htm -share/doc/pgsql/postgres/spi21521.htm -share/doc/pgsql/postgres/spi21543.htm -share/doc/pgsql/postgres/spi21548.htm -share/doc/pgsql/postgres/sql-abort.htm -share/doc/pgsql/postgres/sql-altergroup.htm -share/doc/pgsql/postgres/sql-altertable.htm -share/doc/pgsql/postgres/sql-alteruser.htm -share/doc/pgsql/postgres/sql-begin.htm -share/doc/pgsql/postgres/sql-close.htm -share/doc/pgsql/postgres/sql-cluster.htm -share/doc/pgsql/postgres/sql-commands.htm -share/doc/pgsql/postgres/sql-comment.htm -share/doc/pgsql/postgres/sql-commit.htm -share/doc/pgsql/postgres/sql-copy.htm -share/doc/pgsql/postgres/sql-createaggregate.htm -share/doc/pgsql/postgres/sql-createconstraint.htm -share/doc/pgsql/postgres/sql-createdatabase.htm -share/doc/pgsql/postgres/sql-createfunction.htm -share/doc/pgsql/postgres/sql-creategroup.htm -share/doc/pgsql/postgres/sql-createindex.htm -share/doc/pgsql/postgres/sql-createlanguage.htm -share/doc/pgsql/postgres/sql-createoperator.htm -share/doc/pgsql/postgres/sql-createrule.htm -share/doc/pgsql/postgres/sql-createsequence.htm -share/doc/pgsql/postgres/sql-createtable.htm -share/doc/pgsql/postgres/sql-createtableas.htm -share/doc/pgsql/postgres/sql-createtrigger.htm -share/doc/pgsql/postgres/sql-createtype.htm -share/doc/pgsql/postgres/sql-createuser.htm -share/doc/pgsql/postgres/sql-createview.htm -share/doc/pgsql/postgres/sql-declare.htm -share/doc/pgsql/postgres/sql-delete.htm -share/doc/pgsql/postgres/sql-dropaggregate.htm -share/doc/pgsql/postgres/sql-dropdatabase.htm -share/doc/pgsql/postgres/sql-dropfunction.htm -share/doc/pgsql/postgres/sql-dropgroup.htm -share/doc/pgsql/postgres/sql-dropindex.htm -share/doc/pgsql/postgres/sql-droplanguage.htm -share/doc/pgsql/postgres/sql-dropoperator.htm -share/doc/pgsql/postgres/sql-droprule.htm -share/doc/pgsql/postgres/sql-dropsequence.htm -share/doc/pgsql/postgres/sql-droptable.htm -share/doc/pgsql/postgres/sql-droptrigger.htm -share/doc/pgsql/postgres/sql-droptype.htm -share/doc/pgsql/postgres/sql-dropuser.htm -share/doc/pgsql/postgres/sql-dropview.htm -share/doc/pgsql/postgres/sql-end.htm -share/doc/pgsql/postgres/sql-explain.htm -share/doc/pgsql/postgres/sql-fetch.htm -share/doc/pgsql/postgres/sql-grant.htm -share/doc/pgsql/postgres/sql-insert.htm -share/doc/pgsql/postgres/sql-language.htm -share/doc/pgsql/postgres/sql-listen.htm -share/doc/pgsql/postgres/sql-load.htm -share/doc/pgsql/postgres/sql-lock.htm -share/doc/pgsql/postgres/sql-move.htm -share/doc/pgsql/postgres/sql-notify.htm -share/doc/pgsql/postgres/sql-reindex.htm -share/doc/pgsql/postgres/sql-reset.htm -share/doc/pgsql/postgres/sql-revoke.htm -share/doc/pgsql/postgres/sql-rollback.htm -share/doc/pgsql/postgres/sql-select.htm -share/doc/pgsql/postgres/sql-selectinto.htm -share/doc/pgsql/postgres/sql-set.htm -share/doc/pgsql/postgres/sql-show.htm -share/doc/pgsql/postgres/sql-truncate.htm -share/doc/pgsql/postgres/sql-unlisten.htm -share/doc/pgsql/postgres/sql-update.htm -share/doc/pgsql/postgres/sql-vacuum.htm -share/doc/pgsql/postgres/sql.htm -share/doc/pgsql/postgres/sql26902.htm -share/doc/pgsql/postgres/sql27020.htm -share/doc/pgsql/postgres/start.htm -share/doc/pgsql/postgres/start27628.htm -share/doc/pgsql/postgres/start27650.htm -share/doc/pgsql/postgres/storage.htm -share/doc/pgsql/postgres/syntax.htm -share/doc/pgsql/postgres/syntax519.htm -share/doc/pgsql/postgres/syntax525.htm -share/doc/pgsql/postgres/syntax543.htm -share/doc/pgsql/postgres/syntax608.htm -share/doc/pgsql/postgres/syntax653.htm -share/doc/pgsql/postgres/syntax658.htm -share/doc/pgsql/postgres/terminology.htm -share/doc/pgsql/postgres/triggers.htm -share/doc/pgsql/postgres/triggers20224.htm -share/doc/pgsql/postgres/triggers20281.htm -share/doc/pgsql/postgres/triggers20290.htm -share/doc/pgsql/postgres/trouble.htm -share/doc/pgsql/postgres/trouble18031.htm -share/doc/pgsql/postgres/trouble18048.htm -share/doc/pgsql/postgres/typeconv.htm -share/doc/pgsql/postgres/typeconv3759.htm -share/doc/pgsql/postgres/typeconv3822.htm -share/doc/pgsql/postgres/typeconv3875.htm -share/doc/pgsql/postgres/typeconv3895.htm -share/doc/pgsql/postgres/utilities.htm -share/doc/pgsql/postgres/xaggr.htm -share/doc/pgsql/postgres/xfunc.htm -share/doc/pgsql/postgres/xfunc19011.htm -share/doc/pgsql/postgres/xfunc19017.htm -share/doc/pgsql/postgres/xfunc19022.htm -share/doc/pgsql/postgres/xfunc19254.htm -share/doc/pgsql/postgres/xindex.htm -share/doc/pgsql/postgres/xoper.htm -share/doc/pgsql/postgres/xplang.htm -share/doc/pgsql/postgres/xtypes.htm -share/doc/pgsql/postgres/y2k.htm -share/doc/pgsql/programmer/arch-pg.htm -share/doc/pgsql/programmer/biblio.htm -share/doc/pgsql/programmer/bki.htm -share/doc/pgsql/programmer/bki8058.htm -share/doc/pgsql/programmer/bki8142.htm -share/doc/pgsql/programmer/bki8166.htm -share/doc/pgsql/programmer/bki8227.htm -share/doc/pgsql/programmer/c1486.htm -share/doc/pgsql/programmer/c5391.htm -share/doc/pgsql/programmer/c53915433.htm -share/doc/pgsql/programmer/c53915451.htm -share/doc/pgsql/programmer/c53915593.htm -share/doc/pgsql/programmer/c53915605.htm -share/doc/pgsql/programmer/c53915625.htm -share/doc/pgsql/programmer/c53915630.htm -share/doc/pgsql/programmer/c6614.htm -share/doc/pgsql/programmer/catalogs.gif -share/doc/pgsql/programmer/compiler.htm -share/doc/pgsql/programmer/connections.gif -share/doc/pgsql/programmer/copyright.htm -share/doc/pgsql/programmer/cvs.htm -share/doc/pgsql/programmer/cvs8365.htm -share/doc/pgsql/programmer/cvs8421.htm -share/doc/pgsql/programmer/dfunc.htm -share/doc/pgsql/programmer/dfunc1679.htm -share/doc/pgsql/programmer/dfunc1689.htm -share/doc/pgsql/programmer/docguide.htm -share/doc/pgsql/programmer/docguide8647.htm -share/doc/pgsql/programmer/docguide8678.htm -share/doc/pgsql/programmer/docguide8769.htm -share/doc/pgsql/programmer/docguide8790.htm -share/doc/pgsql/programmer/docguide8816.htm -share/doc/pgsql/programmer/docguide8953.htm -share/doc/pgsql/programmer/docguide9291.htm -share/doc/pgsql/programmer/extend.htm -share/doc/pgsql/programmer/extend352.htm -share/doc/pgsql/programmer/extend364.htm -share/doc/pgsql/programmer/geqo-biblio.htm -share/doc/pgsql/programmer/geqo.htm -share/doc/pgsql/programmer/geqo7079.htm -share/doc/pgsql/programmer/geqo7102.htm -share/doc/pgsql/programmer/geqo7140.htm -share/doc/pgsql/programmer/gist.htm -share/doc/pgsql/programmer/index.html -share/doc/pgsql/programmer/intro-pg.htm -share/doc/pgsql/programmer/intro-pg167.htm -share/doc/pgsql/programmer/jdbc.htm -share/doc/pgsql/programmer/jdbc6398.htm -share/doc/pgsql/programmer/jdbc6410.htm -share/doc/pgsql/programmer/jdbc6416.htm -share/doc/pgsql/programmer/jdbc6424.htm -share/doc/pgsql/programmer/jdbc6442.htm -share/doc/pgsql/programmer/jdbc6479.htm -share/doc/pgsql/programmer/jdbc6510.htm -share/doc/pgsql/programmer/jdbc6515.htm -share/doc/pgsql/programmer/jdbc6519.htm -share/doc/pgsql/programmer/jdbc6545.htm -share/doc/pgsql/programmer/jdbc6575.htm -share/doc/pgsql/programmer/largeobjects.htm -share/doc/pgsql/programmer/largeobjects3114.htm -share/doc/pgsql/programmer/largeobjects3117.htm -share/doc/pgsql/programmer/largeobjects3196.htm -share/doc/pgsql/programmer/largeobjects3203.htm -share/doc/pgsql/programmer/largeobjects3207.htm -share/doc/pgsql/programmer/libpq-chapter.htm -share/doc/pgsql/programmer/libpq-chapter3419.htm -share/doc/pgsql/programmer/libpq-chapter3574.htm -share/doc/pgsql/programmer/libpq-chapter3721.htm -share/doc/pgsql/programmer/libpq-chapter3733.htm -share/doc/pgsql/programmer/libpq-chapter3771.htm -share/doc/pgsql/programmer/libpq-chapter3841.htm -share/doc/pgsql/programmer/libpq-chapter3854.htm -share/doc/pgsql/programmer/libpq-chapter3939.htm -share/doc/pgsql/programmer/libpq-envars.htm -share/doc/pgsql/programmer/libpq-threading.htm -share/doc/pgsql/programmer/libpqplusplus.htm -share/doc/pgsql/programmer/libpqplusplus4031.htm -share/doc/pgsql/programmer/libpqplusplus4041.htm -share/doc/pgsql/programmer/libpqplusplus4071.htm -share/doc/pgsql/programmer/libpqplusplus4176.htm -share/doc/pgsql/programmer/libpqplusplus4199.htm -share/doc/pgsql/programmer/lisp.htm -share/doc/pgsql/programmer/notation.htm -share/doc/pgsql/programmer/odbc.htm -share/doc/pgsql/programmer/odbc5922.htm -share/doc/pgsql/programmer/odbc5960.htm -share/doc/pgsql/programmer/odbc6133.htm -share/doc/pgsql/programmer/odbc6155.htm -share/doc/pgsql/programmer/overview.htm -share/doc/pgsql/programmer/overview6679.htm -share/doc/pgsql/programmer/overview6704.htm -share/doc/pgsql/programmer/overview6832.htm -share/doc/pgsql/programmer/overview6888.htm -share/doc/pgsql/programmer/overview6942.htm -share/doc/pgsql/programmer/page.htm -share/doc/pgsql/programmer/page8290.htm -share/doc/pgsql/programmer/page8304.htm -share/doc/pgsql/programmer/pg-options-dev.htm -share/doc/pgsql/programmer/pgeasy-chapter.htm -share/doc/pgsql/programmer/pgtcl-pgconndefaults.htm -share/doc/pgsql/programmer/pgtcl-pgconnect.htm -share/doc/pgsql/programmer/pgtcl-pgdisconnect.htm -share/doc/pgsql/programmer/pgtcl-pgexec.htm -share/doc/pgsql/programmer/pgtcl-pglisten.htm -share/doc/pgsql/programmer/pgtcl-pgloclose.htm -share/doc/pgsql/programmer/pgtcl-pglocreat.htm -share/doc/pgsql/programmer/pgtcl-pgloexport.htm -share/doc/pgsql/programmer/pgtcl-pgloimport.htm -share/doc/pgsql/programmer/pgtcl-pglolseek.htm -share/doc/pgsql/programmer/pgtcl-pgloopen.htm -share/doc/pgsql/programmer/pgtcl-pgloread.htm -share/doc/pgsql/programmer/pgtcl-pglotell.htm -share/doc/pgsql/programmer/pgtcl-pglounlink.htm -share/doc/pgsql/programmer/pgtcl-pglowrite.htm -share/doc/pgsql/programmer/pgtcl-pgresult.htm -share/doc/pgsql/programmer/pgtcl-pgselect.htm -share/doc/pgsql/programmer/pgtcl.htm -share/doc/pgsql/programmer/pgtcl4314.htm -share/doc/pgsql/programmer/pgtcl4318.htm -share/doc/pgsql/programmer/preface.htm -share/doc/pgsql/programmer/programmer.htm -share/doc/pgsql/programmer/programmer.html -share/doc/pgsql/programmer/protocol.htm -share/doc/pgsql/programmer/protocol7255.htm -share/doc/pgsql/programmer/protocol7410.htm -share/doc/pgsql/programmer/protocol7447.htm -share/doc/pgsql/programmer/rules.htm -share/doc/pgsql/programmer/rules1139.htm -share/doc/pgsql/programmer/rules1270.htm -share/doc/pgsql/programmer/rules1284.htm -share/doc/pgsql/programmer/rules978.htm -share/doc/pgsql/programmer/signals.htm -share/doc/pgsql/programmer/spi-spiconnect.htm -share/doc/pgsql/programmer/spi-spicopytuple.htm -share/doc/pgsql/programmer/spi-spiexec.htm -share/doc/pgsql/programmer/spi-spiexecp.htm -share/doc/pgsql/programmer/spi-spifinish.htm -share/doc/pgsql/programmer/spi-spifname.htm -share/doc/pgsql/programmer/spi-spifnumber.htm -share/doc/pgsql/programmer/spi-spigetbinval.htm -share/doc/pgsql/programmer/spi-spigetrelname.htm -share/doc/pgsql/programmer/spi-spigettype.htm -share/doc/pgsql/programmer/spi-spigettypeid.htm -share/doc/pgsql/programmer/spi-spigetvalue.htm -share/doc/pgsql/programmer/spi-spimodifytuple.htm -share/doc/pgsql/programmer/spi-spipalloc.htm -share/doc/pgsql/programmer/spi-spipfree.htm -share/doc/pgsql/programmer/spi-spiprepare.htm -share/doc/pgsql/programmer/spi-spirepalloc.htm -share/doc/pgsql/programmer/spi-spisaveplan.htm -share/doc/pgsql/programmer/spi.htm -share/doc/pgsql/programmer/spi2351.htm -share/doc/pgsql/programmer/spi3064.htm -share/doc/pgsql/programmer/spi3086.htm -share/doc/pgsql/programmer/spi3091.htm -share/doc/pgsql/programmer/terminology.htm -share/doc/pgsql/programmer/triggers.htm -share/doc/pgsql/programmer/triggers1767.htm -share/doc/pgsql/programmer/triggers1824.htm -share/doc/pgsql/programmer/triggers1833.htm -share/doc/pgsql/programmer/xaggr.htm -share/doc/pgsql/programmer/xfunc.htm -share/doc/pgsql/programmer/xfunc511.htm -share/doc/pgsql/programmer/xfunc517.htm -share/doc/pgsql/programmer/xfunc522.htm -share/doc/pgsql/programmer/xfunc754.htm -share/doc/pgsql/programmer/xindex.htm -share/doc/pgsql/programmer/xoper.htm -share/doc/pgsql/programmer/xplang.htm -share/doc/pgsql/programmer/xtypes.htm -share/doc/pgsql/programmer/y2k.htm -share/doc/pgsql/tutorial/about.htm -share/doc/pgsql/tutorial/advanced.htm -share/doc/pgsql/tutorial/advanced1511.htm -share/doc/pgsql/tutorial/advanced1533.htm -share/doc/pgsql/tutorial/arch.htm -share/doc/pgsql/tutorial/biblio.htm -share/doc/pgsql/tutorial/clientserver.gif -share/doc/pgsql/tutorial/copyright.htm -share/doc/pgsql/tutorial/f17.htm -share/doc/pgsql/tutorial/index.html -share/doc/pgsql/tutorial/intro.htm -share/doc/pgsql/tutorial/intro172.htm -share/doc/pgsql/tutorial/intro300.htm -share/doc/pgsql/tutorial/intro56.htm -share/doc/pgsql/tutorial/notation.htm -share/doc/pgsql/tutorial/query.htm -share/doc/pgsql/tutorial/query1340.htm -share/doc/pgsql/tutorial/query1356.htm -share/doc/pgsql/tutorial/query1378.htm -share/doc/pgsql/tutorial/query1387.htm -share/doc/pgsql/tutorial/query1405.htm -share/doc/pgsql/tutorial/query1413.htm -share/doc/pgsql/tutorial/query1432.htm -share/doc/pgsql/tutorial/query1437.htm -share/doc/pgsql/tutorial/query1444.htm -share/doc/pgsql/tutorial/sql-language.htm -share/doc/pgsql/tutorial/sql.htm -share/doc/pgsql/tutorial/sql490.htm -share/doc/pgsql/tutorial/sql608.htm -share/doc/pgsql/tutorial/start.htm -share/doc/pgsql/tutorial/start1216.htm -share/doc/pgsql/tutorial/start1238.htm -share/doc/pgsql/tutorial/terminology.htm -share/doc/pgsql/tutorial/tutorial.htm -share/doc/pgsql/tutorial/tutorial.html -share/doc/pgsql/tutorial/y2k.htm -share/doc/pgsql/user/about.htm -share/doc/pgsql/user/app-createdb.htm -share/doc/pgsql/user/app-createlang.htm -share/doc/pgsql/user/app-createuser.htm -share/doc/pgsql/user/app-dropdb.htm -share/doc/pgsql/user/app-droplang.htm -share/doc/pgsql/user/app-dropuser.htm -share/doc/pgsql/user/app-ecpg.htm -share/doc/pgsql/user/app-initdb.htm -share/doc/pgsql/user/app-initlocation.htm -share/doc/pgsql/user/app-ipcclean.htm -share/doc/pgsql/user/app-pg-passwd.htm -share/doc/pgsql/user/app-pg-upgrade.htm -share/doc/pgsql/user/app-pgaccess.htm -share/doc/pgsql/user/app-pgadmin.htm -share/doc/pgsql/user/app-pgctl.htm -share/doc/pgsql/user/app-pgdump.htm -share/doc/pgsql/user/app-pgdumpall.htm -share/doc/pgsql/user/app-pgtclsh.htm -share/doc/pgsql/user/app-pgtksh.htm -share/doc/pgsql/user/app-postgres.htm -share/doc/pgsql/user/app-postmaster.htm -share/doc/pgsql/user/app-psql.htm -share/doc/pgsql/user/app-vacuumdb.htm -share/doc/pgsql/user/applications.htm -share/doc/pgsql/user/arrays.htm -share/doc/pgsql/user/biblio.htm -share/doc/pgsql/user/c4087.htm -share/doc/pgsql/user/c40874113.htm -share/doc/pgsql/user/c40874340.htm -share/doc/pgsql/user/c4358.htm -share/doc/pgsql/user/c43584371.htm -share/doc/pgsql/user/c4884.htm -share/doc/pgsql/user/c4929.htm -share/doc/pgsql/user/c49294939.htm -share/doc/pgsql/user/c49294943.htm -share/doc/pgsql/user/copyright.htm -share/doc/pgsql/user/datatype.htm -share/doc/pgsql/user/datatype1034.htm -share/doc/pgsql/user/datatype1066.htm -share/doc/pgsql/user/datatype1130.htm -share/doc/pgsql/user/datatype1645.htm -share/doc/pgsql/user/datatype1677.htm -share/doc/pgsql/user/datatype1916.htm -share/doc/pgsql/user/datetime-appendix.htm -share/doc/pgsql/user/datetime-appendix16981.htm -share/doc/pgsql/user/environ.htm -share/doc/pgsql/user/functions.htm -share/doc/pgsql/user/functions2589.htm -share/doc/pgsql/user/functions2729.htm -share/doc/pgsql/user/functions2872.htm -share/doc/pgsql/user/functions2972.htm -share/doc/pgsql/user/functions3439.htm -share/doc/pgsql/user/functions3637.htm -share/doc/pgsql/user/index.html -share/doc/pgsql/user/indices.htm -share/doc/pgsql/user/inherit.htm -share/doc/pgsql/user/intro.htm -share/doc/pgsql/user/intro172.htm -share/doc/pgsql/user/intro300.htm -share/doc/pgsql/user/intro56.htm -share/doc/pgsql/user/manage.htm -share/doc/pgsql/user/manage4810.htm -share/doc/pgsql/user/manage4834.htm -share/doc/pgsql/user/manage4876.htm -share/doc/pgsql/user/mvcc.htm -share/doc/pgsql/user/mvcc4564.htm -share/doc/pgsql/user/mvcc4617.htm -share/doc/pgsql/user/mvcc4629.htm -share/doc/pgsql/user/mvcc4642.htm -share/doc/pgsql/user/mvcc4719.htm -share/doc/pgsql/user/mvcc4740.htm -share/doc/pgsql/user/notation.htm -share/doc/pgsql/user/operators.htm -share/doc/pgsql/user/operators2123.htm -share/doc/pgsql/user/operators2194.htm -share/doc/pgsql/user/operators2263.htm -share/doc/pgsql/user/operators2373.htm -share/doc/pgsql/user/operators2432.htm -share/doc/pgsql/user/operators2486.htm -share/doc/pgsql/user/partial-index.htm -share/doc/pgsql/user/pl-perl.htm -share/doc/pgsql/user/pl-perl4529.htm -share/doc/pgsql/user/pl-perl4538.htm -share/doc/pgsql/user/preface.htm -share/doc/pgsql/user/sql-abort.htm -share/doc/pgsql/user/sql-altergroup.htm -share/doc/pgsql/user/sql-altertable.htm -share/doc/pgsql/user/sql-alteruser.htm -share/doc/pgsql/user/sql-begin.htm -share/doc/pgsql/user/sql-close.htm -share/doc/pgsql/user/sql-cluster.htm -share/doc/pgsql/user/sql-commands.htm -share/doc/pgsql/user/sql-comment.htm -share/doc/pgsql/user/sql-commit.htm -share/doc/pgsql/user/sql-copy.htm -share/doc/pgsql/user/sql-createaggregate.htm -share/doc/pgsql/user/sql-createconstraint.htm -share/doc/pgsql/user/sql-createdatabase.htm -share/doc/pgsql/user/sql-createfunction.htm -share/doc/pgsql/user/sql-creategroup.htm -share/doc/pgsql/user/sql-createindex.htm -share/doc/pgsql/user/sql-createlanguage.htm -share/doc/pgsql/user/sql-createoperator.htm -share/doc/pgsql/user/sql-createrule.htm -share/doc/pgsql/user/sql-createsequence.htm -share/doc/pgsql/user/sql-createtable.htm -share/doc/pgsql/user/sql-createtableas.htm -share/doc/pgsql/user/sql-createtrigger.htm -share/doc/pgsql/user/sql-createtype.htm -share/doc/pgsql/user/sql-createuser.htm -share/doc/pgsql/user/sql-createview.htm -share/doc/pgsql/user/sql-declare.htm -share/doc/pgsql/user/sql-delete.htm -share/doc/pgsql/user/sql-dropaggregate.htm -share/doc/pgsql/user/sql-dropdatabase.htm -share/doc/pgsql/user/sql-dropfunction.htm -share/doc/pgsql/user/sql-dropgroup.htm -share/doc/pgsql/user/sql-dropindex.htm -share/doc/pgsql/user/sql-droplanguage.htm -share/doc/pgsql/user/sql-dropoperator.htm -share/doc/pgsql/user/sql-droprule.htm -share/doc/pgsql/user/sql-dropsequence.htm -share/doc/pgsql/user/sql-droptable.htm -share/doc/pgsql/user/sql-droptrigger.htm -share/doc/pgsql/user/sql-droptype.htm -share/doc/pgsql/user/sql-dropuser.htm -share/doc/pgsql/user/sql-dropview.htm -share/doc/pgsql/user/sql-end.htm -share/doc/pgsql/user/sql-explain.htm -share/doc/pgsql/user/sql-fetch.htm -share/doc/pgsql/user/sql-grant.htm -share/doc/pgsql/user/sql-insert.htm -share/doc/pgsql/user/sql-listen.htm -share/doc/pgsql/user/sql-load.htm -share/doc/pgsql/user/sql-lock.htm -share/doc/pgsql/user/sql-move.htm -share/doc/pgsql/user/sql-notify.htm -share/doc/pgsql/user/sql-reindex.htm -share/doc/pgsql/user/sql-reset.htm -share/doc/pgsql/user/sql-revoke.htm -share/doc/pgsql/user/sql-rollback.htm -share/doc/pgsql/user/sql-select.htm -share/doc/pgsql/user/sql-selectinto.htm -share/doc/pgsql/user/sql-set.htm -share/doc/pgsql/user/sql-show.htm -share/doc/pgsql/user/sql-truncate.htm -share/doc/pgsql/user/sql-unlisten.htm -share/doc/pgsql/user/sql-update.htm -share/doc/pgsql/user/sql-vacuum.htm -share/doc/pgsql/user/storage.htm -share/doc/pgsql/user/syntax.htm -share/doc/pgsql/user/syntax515.htm -share/doc/pgsql/user/syntax521.htm -share/doc/pgsql/user/syntax539.htm -share/doc/pgsql/user/syntax604.htm -share/doc/pgsql/user/syntax649.htm -share/doc/pgsql/user/syntax654.htm -share/doc/pgsql/user/terminology.htm -share/doc/pgsql/user/typeconv.htm -share/doc/pgsql/user/typeconv3755.htm -share/doc/pgsql/user/typeconv3818.htm -share/doc/pgsql/user/typeconv3871.htm -share/doc/pgsql/user/typeconv3891.htm -share/doc/pgsql/user/user.htm -share/doc/pgsql/user/user.html -share/doc/pgsql/user/utilities.htm -share/doc/pgsql/user/y2k.htm -@dirrm share/doc/pgsql/admin -@dirrm share/doc/pgsql/postgres -@dirrm share/doc/pgsql/programmer -@dirrm share/doc/pgsql/tutorial -@dirrm share/doc/pgsql/user -@dirrm share/doc/pgsql diff --git a/databases/postgresql74-server/pkg-plist.jdbc b/databases/postgresql74-server/pkg-plist.jdbc deleted file mode 100644 index bef5d75506b4..000000000000 --- a/databases/postgresql74-server/pkg-plist.jdbc +++ /dev/null @@ -1,13 +0,0 @@ -share/examples/pgsql/jdbc/ImageViewer.java -share/examples/pgsql/jdbc/basic.java -share/examples/pgsql/jdbc/blobtest.java -share/examples/pgsql/jdbc/datestyle.java -share/examples/pgsql/jdbc/metadata.java -share/examples/pgsql/jdbc/psql.java -share/examples/pgsql/jdbc/threadsafe.java -share/examples/pgsql/jdbc/README -share/examples/pgsql/jdbc/README_6.3 -@dirrm share/examples/pgsql/jdbc -@dirrm share/examples/pgsql -share/java/classes/postgresql.jar -@unexec rmdir %D/share/java 2>/dev/null || true diff --git a/databases/postgresql74-server/pkg-plist.tcl b/databases/postgresql74-server/pkg-plist.tcl deleted file mode 100644 index b01eaf1571ed..000000000000 --- a/databases/postgresql74-server/pkg-plist.tcl +++ /dev/null @@ -1,141 +0,0 @@ -pgsql/bin/pgaccess -pgsql/bin/pgtclsh -pgsql/bin/pgtksh -pgsql/include/libpgtcl.h -pgsql/lib/libpgtcl.a -pgsql/lib/libpgtcl.so -pgsql/lib/libpgtcl.so.2 -pgsql/lib/pltcl.so -pgsql/pgaccess/images/icon_button.gif -pgsql/pgaccess/images/icon_checkbutton.gif -pgsql/pgaccess/images/icon_entry.gif -pgsql/pgaccess/images/icon_frame.gif -pgsql/pgaccess/images/icon_label.gif -pgsql/pgaccess/images/icon_listbox.gif -pgsql/pgaccess/images/icon_query.gif -pgsql/pgaccess/images/icon_radiobutton.gif -pgsql/pgaccess/images/icon_text.gif -pgsql/pgaccess/lib/database.tcl -pgsql/pgaccess/lib/forms.tcl -pgsql/pgaccess/lib/functions.tcl -pgsql/pgaccess/lib/help/abort.hlp -pgsql/pgaccess/lib/help/add_records.hlp -pgsql/pgaccess/lib/help/alter_table.hlp -pgsql/pgaccess/lib/help/alter_user.hlp -pgsql/pgaccess/lib/help/author.hlp -pgsql/pgaccess/lib/help/begin.hlp -pgsql/pgaccess/lib/help/close.hlp -pgsql/pgaccess/lib/help/cluster.hlp -pgsql/pgaccess/lib/help/commit.hlp -pgsql/pgaccess/lib/help/copy.hlp -pgsql/pgaccess/lib/help/copyrights.hlp -pgsql/pgaccess/lib/help/create_aggregate.hlp -pgsql/pgaccess/lib/help/create_database.hlp -pgsql/pgaccess/lib/help/create_function.hlp -pgsql/pgaccess/lib/help/create_index.hlp -pgsql/pgaccess/lib/help/create_language.hlp -pgsql/pgaccess/lib/help/create_operator.hlp -pgsql/pgaccess/lib/help/create_rule.hlp -pgsql/pgaccess/lib/help/create_sequence.hlp -pgsql/pgaccess/lib/help/create_table.hlp -pgsql/pgaccess/lib/help/create_table_as.hlp -pgsql/pgaccess/lib/help/create_trigger.hlp -pgsql/pgaccess/lib/help/create_type.hlp -pgsql/pgaccess/lib/help/create_user.hlp -pgsql/pgaccess/lib/help/create_view.hlp -pgsql/pgaccess/lib/help/data_types.hlp -pgsql/pgaccess/lib/help/datefunc.hlp -pgsql/pgaccess/lib/help/declare.hlp -pgsql/pgaccess/lib/help/delete.hlp -pgsql/pgaccess/lib/help/drop_aggregate.hlp -pgsql/pgaccess/lib/help/drop_database.hlp -pgsql/pgaccess/lib/help/drop_function.hlp -pgsql/pgaccess/lib/help/drop_index.hlp -pgsql/pgaccess/lib/help/drop_language.hlp -pgsql/pgaccess/lib/help/drop_operator.hlp -pgsql/pgaccess/lib/help/drop_rule.hlp -pgsql/pgaccess/lib/help/drop_sequence.hlp -pgsql/pgaccess/lib/help/drop_table.hlp -pgsql/pgaccess/lib/help/drop_trigger.hlp -pgsql/pgaccess/lib/help/drop_type.hlp -pgsql/pgaccess/lib/help/drop_user.hlp -pgsql/pgaccess/lib/help/drop_view.hlp -pgsql/pgaccess/lib/help/explain.hlp -pgsql/pgaccess/lib/help/fetch.hlp -pgsql/pgaccess/lib/help/form_design.hlp -pgsql/pgaccess/lib/help/forms.hlp -pgsql/pgaccess/lib/help/functions.hlp -pgsql/pgaccess/lib/help/geomfunc.hlp -pgsql/pgaccess/lib/help/grant.hlp -pgsql/pgaccess/lib/help/history.hlp -pgsql/pgaccess/lib/help/index.hlp -pgsql/pgaccess/lib/help/inheritance.hlp -pgsql/pgaccess/lib/help/insert.hlp -pgsql/pgaccess/lib/help/ipv4func.hlp -pgsql/pgaccess/lib/help/isolation.hlp -pgsql/pgaccess/lib/help/keywords.hlp -pgsql/pgaccess/lib/help/listen.hlp -pgsql/pgaccess/lib/help/load.hlp -pgsql/pgaccess/lib/help/lock.hlp -pgsql/pgaccess/lib/help/mathfunc.hlp -pgsql/pgaccess/lib/help/move.hlp -pgsql/pgaccess/lib/help/mvcc.hlp -pgsql/pgaccess/lib/help/new_query.hlp -pgsql/pgaccess/lib/help/new_table.hlp -pgsql/pgaccess/lib/help/notify.hlp -pgsql/pgaccess/lib/help/open_query.hlp -pgsql/pgaccess/lib/help/open_table.hlp -pgsql/pgaccess/lib/help/pgfunctions.hlp -pgsql/pgaccess/lib/help/postgresql.hlp -pgsql/pgaccess/lib/help/queries.hlp -pgsql/pgaccess/lib/help/reports.hlp -pgsql/pgaccess/lib/help/reset.hlp -pgsql/pgaccess/lib/help/revoke.hlp -pgsql/pgaccess/lib/help/rollback.hlp -pgsql/pgaccess/lib/help/schema.hlp -pgsql/pgaccess/lib/help/scripts.hlp -pgsql/pgaccess/lib/help/select.hlp -pgsql/pgaccess/lib/help/select_into.hlp -pgsql/pgaccess/lib/help/sequences.hlp -pgsql/pgaccess/lib/help/set.hlp -pgsql/pgaccess/lib/help/show.hlp -pgsql/pgaccess/lib/help/sql_guide.hlp -pgsql/pgaccess/lib/help/sqlfunc.hlp -pgsql/pgaccess/lib/help/stringfunc.hlp -pgsql/pgaccess/lib/help/tables.hlp -pgsql/pgaccess/lib/help/unlisten.hlp -pgsql/pgaccess/lib/help/update.hlp -pgsql/pgaccess/lib/help/users.hlp -pgsql/pgaccess/lib/help/vacuum.hlp -pgsql/pgaccess/lib/help/view_table_structure.hlp -pgsql/pgaccess/lib/help/views.hlp -pgsql/pgaccess/lib/help/visual_designer.hlp -pgsql/pgaccess/lib/help/y2k.hlp -pgsql/pgaccess/lib/help.tcl -pgsql/pgaccess/lib/languages/czech -pgsql/pgaccess/lib/languages/deutsch -pgsql/pgaccess/lib/languages/francais -pgsql/pgaccess/lib/languages/italiano -pgsql/pgaccess/lib/languages/magyar -pgsql/pgaccess/lib/languages/portugues -pgsql/pgaccess/lib/languages/romana -pgsql/pgaccess/lib/languages/russian.koi8r -pgsql/pgaccess/lib/languages/russian_win -pgsql/pgaccess/lib/languages/spanish -pgsql/pgaccess/lib/mainlib.tcl -pgsql/pgaccess/lib/preferences.tcl -pgsql/pgaccess/lib/queries.tcl -pgsql/pgaccess/lib/reports.tcl -pgsql/pgaccess/lib/schema.tcl -pgsql/pgaccess/lib/scripts.tcl -pgsql/pgaccess/lib/sequences.tcl -pgsql/pgaccess/lib/tables.tcl -pgsql/pgaccess/lib/users.tcl -pgsql/pgaccess/lib/views.tcl -pgsql/pgaccess/lib/visualqb.tcl -pgsql/pgaccess/main.tcl -@dirrm pgsql/pgaccess/images -@dirrm pgsql/pgaccess/lib/help -@dirrm pgsql/pgaccess/lib/languages -@dirrm pgsql/pgaccess/lib -@dirrm pgsql/pgaccess diff --git a/databases/postgresql74-server/scripts/configure b/databases/postgresql74-server/scripts/configure deleted file mode 100644 index 4a92ee450ebe..000000000000 --- a/databases/postgresql74-server/scripts/configure +++ /dev/null @@ -1,7 +0,0 @@ -#! /bin/sh - -# $FreeBSD$ - -cd $WRKSRC || exit 1 - -perl -pi -e "s=!!JAVA_HOME!!=${JAVA_HOME}=; s=!!PREFIX!!=${PREFIX}=" ${WRKSRC}/interfaces/jdbc/Makefile diff --git a/databases/postgresql74-server/scripts/createuser b/databases/postgresql74-server/scripts/createuser deleted file mode 100644 index 2abe201e7a4b..000000000000 --- a/databases/postgresql74-server/scripts/createuser +++ /dev/null @@ -1,50 +0,0 @@ -#!/usr/bin/perl -# - -eval '(exit $?0)' && eval 'exec /usr/bin/perl -S $0 ${1+"$@"}' -& eval 'exec /usr/bin/perl -S $0 $argv:q' -if 0; - -if( $> ) { - print "\nYou must be root to run this step!\n\n"; - exit 1; -} - -if( getpwnam( "pgsql" ) ) { - ( $null, $null, $pgUID ) = getpwnam( "pgsql" ); -} else { - $pgUID = 70; - while( getpwuid( $pgUID ) ) { - $pgUID++; - } -} - -if( getgrnam( "pgsql" ) ) { - ( $null, $null, $pgGID ) = getgrnam( "pgsql" ); -} else { - $pgGID = 70; - while( getgrgid( $pgGID ) ) { - $pgGID++; - } - &append_file( "/etc/group", "pgsql:*:$pgGID:" ); -} - -print "pgsql user using uid $pgUID\n"; -print "pgsql user using gid $pgGID\n"; - -system( "/usr/bin/chpass -a \"pgsql:*:$pgUID:$pgGID\:\:0:0:PostgreSQL pseudo-user:$ENV{'PREFIX'}/pgsql:/bin/sh\"" ); - -sub append_file { - local($file,@list) = @_; - local($LOCK_EX) = 2; - local($LOCK_NB) = 4; - local($LOCK_UN) = 8; - - open(F, ">> $file") || die "$file: $!\n"; - while( ! flock( F, $LOCK_EX | $LOCK_NB ) ) { - exit 1; - } - print F join( "\n", @list) . "\n"; - close F; - flock( F, $LOCK_UN ); -} diff --git a/databases/postgresql80-server/Makefile b/databases/postgresql80-server/Makefile deleted file mode 100644 index 94aa22cad135..000000000000 --- a/databases/postgresql80-server/Makefile +++ /dev/null @@ -1,259 +0,0 @@ -# New ports collection makefile for: PostgreSQL -# Date created: November 13, 1998 -# Whom: Marc G. Fournier <scrappy@FreeBSD.org> -# -# $FreeBSD$ -# - -PORTNAME= postgresql -PORTVERSION= 7.0.2 -CATEGORIES= databases -MASTER_SITES= ftp://ftp.postgresql.org/pub/%SUBDIR%/ \ - ftp://ftp.de.postgresql.org/%SUBDIR%/ \ - ftp://ftp.iodynamics.com/pub/mirror/postgresql/%SUBDIR%/ \ - ftp://ftp.digex.net/pub/packages/database/postgresql/%SUBDIR%/ \ - ftp://ftp.sunet.se/pub/unix/databases/relational/postgresql/%SUBDIR%/ -MASTER_SITE_SUBDIR= source/v${PORTVERSION} -DISTFILES= ${PORTNAME}-${PORTVERSION}.base${EXTRACT_SUFX} \ - ${PORTNAME}-${PORTVERSION}.support${EXTRACT_SUFX} \ - ${PORTNAME}-${PORTVERSION}.docs${EXTRACT_SUFX} -# ${PORTNAME}-${PORTVERSION}.test${EXTRACT_SUFX} -DIST_SUBDIR= postgresql - -MAINTAINER= andreas@FreeBSD.org - -.if ${MACHINE_ARCH} == "alpha" -BROKEN= doesn\'t build on the alpha yet -.endif - -Y2K= http://www.postgresql.org/y2k.html - -INSTALLS_SHLIB= YES -LDCONFIG_DIRS= %%PREFIX%%/pgsql/lib - -# if you want to use the tcl/tk frontend pgaccess, then you need to build -# postgresql with tcl support by typing: make -DWITH_TCL -.if defined(WITH_TCL) -TCL_INCDIR= ${LOCALBASE}/include/tcl8.3 -TK_INCDIR= ${LOCALBASE}/include/tk8.3 -MAKE_ENV= TCL_INCDIR=${TCL_INCDIR} -CONFIGURE_ENV= WISH=${LOCALBASE}/bin/wish8.3 -LIB_DEPENDS= tcl83.1:${PORTSDIR}/lang/tcl83 \ - tk83.1:${PORTSDIR}/x11-toolkits/tk83 -CONFIGURE_TCL= --with-tcl --with-tclconfig="${LOCALBASE}/lib/tcl8.3 ${LOCALBASE}/lib/tk8.3" -.endif - -# if you want to disable the multibyte support, type: -# make -DWITHOUT_MULTIBYTE -# -# if you want to set the default encoding for the multibyte support, type: -# make DEFAULT_ENCODING=<encoding> -# where <encoding> is one of these: -# SQL_ASCII LATIN1 LATIN2 LATIN3 LATIN4 LATIN5 -# EUC_JP EUC_CN EUC_KR EUC_TW KOI8 -# UNICODE MULE_INTERNAL WIN ALT -.if defined(WITHOUT_MULTIBYTE) -CONFIGURE_MULTIBYTE= # none -.elif defined(DEFAULT_ENCODING) -CONFIGURE_MULTIBYTE= --enable-multibyte="${DEFAULT_ENCODING}" -.else -CONFIGURE_MULTIBYTE= --enable-multibyte -.endif - -# if you want jdbc, type make -DWITH_JDBC -# Honors JAVA_HOME if you have it set, and don't want the dependency. -.if defined(WITH_JDBC) -JAVA_HOME?= ${LOCALBASE}/jdk1.1.8 -BUILD_DEPENDS= ${JAVA_HOME}/bin/javac:${PORTSDIR}/java/jdk -SCRIPTS_ENV+= JAVA_HOME=${JAVA_HOME} -.endif - -WRKSRC= ${WRKDIR}/${DISTNAME}/src -DOCDIR= ${WRKDIR}/${DISTNAME}/doc - -USE_GMAKE= YES -MAKEFILE= GNUmakefile -HAS_CONFIGURE= YES -CONFIGURE_ARGS= --prefix=${PREFIX}/pgsql \ - --enable-locale \ - --with-template=`uname -s | ${TR} '[A-Z]' '[a-z]'` \ - --with-includes="${PREFIX}/include ${TCL_INCDIR} ${TK_INCDIR}" \ - ${CONFIGURE_TCL} \ - ${CONFIGURE_MULTIBYTE} \ - --with-libraries=${PREFIX}/lib - -MAN1= createdb.1 createlang.1 createuser.1 dropdb.1 droplang.1 \ - dropuser.1 ecpg.1 initdb.1 initlocation.1 ipcclean.1 pg_ctl.1 \ - pg_dump.1 pg_dumpall.1 pg_passwd.1 pg_upgrade.1 pgaccess.1 \ - pgadmin.1 pgtclsh.1 pgtksh.1 postgres.1 postmaster.1 psql.1 \ - vacuumdb.1 -MANL= abort.l alter_group.l alter_table.l alter_user.l \ - begin.l close.l cluster.l comment.l commit.l copy.l \ - create_aggregate.l create_constraint_trigger.l \ - create_database.l create_function.l create_group.l \ - create_index.l create_language.l create_operator.l \ - create_rule.l create_sequence.l create_table.l \ - create_table_as.l create_trigger.l create_type.l \ - create_user.l create_view.l declare.l delete.l \ - drop_aggregate.l drop_database.l drop_function.l \ - drop_group.l drop_index.l drop_language.l \ - drop_operator.l drop_rule.l drop_sequence.l \ - drop_table.l drop_trigger.l drop_type.l drop_user.l \ - drop_view.l end.l explain.l fetch.l grant.l insert.l \ - listen.l load.l lock.l move.l notify.l reindex.l \ - reset.l revoke.l rollback.l select.l select_into.l \ - set.l show.l truncate.l unlisten.l update.l vacuum.l - -MANPREFIX= ${PREFIX}/pgsql - -pre-fetch: - @${ECHO_MSG} "To install and run postgresql you need to compile kernel with:" - @${ECHO_MSG} " options \"SYSVSHM, SYSVSEM, SYSVMSG\"" -.if !defined(WITH_TCL) - @${ECHO_MSG} "To build the \"PostgreSQL to Tcl interface library\", libpgtcl, type:" - @${ECHO_MSG} " make -DWITH_TCL" -.else - @${ECHO_MSG} "Building PostgreSQL with \"libpgtcl\"." -.endif -.if !defined(WITHOUT_MULTIBYTE) - @${ECHO_MSG} "To disable multibyte support, type:" - @${ECHO_MSG} " make -DWITHOUT_MULTIBYTE" -.if !defined(DEFAULT_ENCODING) - @${ECHO_MSG} "To set the default encoding for the multibyte support, type:" - @${ECHO_MSG} " make DEFAULT_ENCODING=<encoding>" - @${ECHO_MSG} "where <encoding> is one of these:" - @${ECHO_MSG} " SQL_ASCII LATIN1 LATIN2 LATIN3 LATIN4 LATIN5" - @${ECHO_MSG} " EUC_JP EUC_CN EUC_KR EUC_TW KOI8" - @${ECHO_MSG} " UNICODE MULE_INTERNAL WIN ALT" -.else - @${ECHO_MSG} "The default encoding is '${DEFAULT_ENCODING}'." -.endif -.else - @${ECHO_MSG} "Building PostgreSQL without multibyte support." -.endif -.if !defined(WITH_JDBC) - @${ECHO_MSG} "To build Java (JDBC) support, type:" - @${ECHO_MSG} " make -DWITH_JDBC" -.else - @${ECHO_MSG} "Building PostgreSQL with \"postgresql.jar\"." -.endif - -post-patch: - @ ${MV} ${WRKSRC}/template/freebsd ${WRKSRC}/template/freebsd.orig - @ ${SED} -e 's#CFLAGS:-O2 -m486 -pipe#CFLAGS:${CFLAGS}#' \ - -e 's#USE_LOCALE:no#USE_LOCALE:yes#' \ - ${WRKSRC}/template/freebsd.orig >> ${WRKSRC}/template/freebsd - @ ${MV} ${WRKSRC}/Makefile.global.in ${WRKSRC}/Makefile.global.in.old - @ ${SED} -e 's=!!PREFIX!!=${PREFIX}=g' \ - ${WRKSRC}/Makefile.global.in.old \ - >> ${WRKSRC}/Makefile.global.in - -post-build: -.if defined(WITH_JDBC) - @ cd ${WRKSRC}/interfaces/jdbc && ${GMAKE} -.if !defined(NOPORTDOCS) - @ cd ${WRKSRC}/interfaces/jdbc && ${GMAKE} examples -.endif -.endif - @ ${ECHO} "------------------------------------------------------------" - @ ${ECHO} "Dump existing databases, before installing new db version !!" - @ ${ECHO} "Detailed instructions, see" - @ ${ECHO} "${WRKDIR}/${DISTNAME}/INSTALL" - @ ${ECHO} "------------------------------------------------------------" - -pre-install: -.if defined(PACKAGE_BUILDING) - ${RM} -rf ${PREFIX}/pgsql -.endif - @ ${MKDIR} ${PREFIX}/pgsql - @ ${SETENV} ${MAKE_ENV} perl ${SCRIPTDIR}/createuser - -post-install: -.if defined(NOPORTDOCS) - @ ( cd ${DOCDIR}; ${GMAKE} man ) -.else - @ ( cd ${DOCDIR}; ${GMAKE} install ) -.endif - @ if [ ! -f ${PREFIX}/pgsql/.profile ]; then \ - ${ECHO} "PATH=${PATH}:${PREFIX}/pgsql/bin" \ - > ${PREFIX}/pgsql/.profile; \ - ${ECHO} "MANPATH=${MANPATH}:${PREFIX}/pgsql/man" \ - >> ${PREFIX}/pgsql/.profile; \ - ${ECHO} "PGLIB=${PREFIX}/pgsql/lib" \ - >> ${PREFIX}/pgsql/.profile; \ - ${ECHO} "# note: PGDATA overwrites the -D startup option" \ - >> ${PREFIX}/pgsql/.profile; \ - ${ECHO} "PGDATA=${PREFIX}/pgsql/data" \ - >> ${PREFIX}/pgsql/.profile; \ - ${ECHO} "DISPLAY=:0" \ - >> ${PREFIX}/pgsql/.profile; \ - ${ECHO} "export PATH MANPATH PGLIB PGDATA DISPLAY" \ - >> ${PREFIX}/pgsql/.profile; \ - ${ECHO} "# if you want to make regression tests use this TZ" \ - >> ${PREFIX}/pgsql/.profile; \ - ${ECHO} "#TZ=PST8PDT" \ - >> ${PREFIX}/pgsql/.profile; \ - ${ECHO} "#export TZ" \ - >> ${PREFIX}/pgsql/.profile; \ - fi - @ ${CHOWN} -R pgsql:pgsql ${PREFIX}/pgsql - @ ${ECHO} 'Initializing PostgreSQL Databases - this may take a few minutes...' - @ ${SETENV} OBJFORMAT=${PORTOBJFORMAT} ${LDCONFIG} -m ${PREFIX}/pgsql/lib - @ su -l pgsql -c 'PATH=${PREFIX}/pgsql/bin:${PATH} LD_LIBRARY_PATH=${PREFIX}/pgsql/lib ${PREFIX}/pgsql/bin/initdb --pglib=${PREFIX}/pgsql/lib --pgdata=${PREFIX}/pgsql/data' - @ ${SED} -e "s=!!PREFIX!!=${PREFIX}=g" < ${FILESDIR}/pgsql.sh.tmpl \ - > ${PREFIX}/etc/rc.d/pgsql.sh - @ ${CHMOD} 554 ${PREFIX}/etc/rc.d/pgsql.sh - @ ${CHOWN} root.pgsql ${PREFIX}/etc/rc.d/pgsql.sh - @ ${INSTALL_DATA} ${FILESDIR}/post-install-notes ${PREFIX}/pgsql -.if defined(WITHOUT_MULTIBYTE) - @${CP} ${TMPPLIST} ${TMPPLIST}.nomulti - @${GREP} -v pgsql/bin/pg_encoding ${TMPPLIST}.nomulti > ${TMPPLIST} -.endif -.if defined(WITH_TCL) - @${CP} ${TMPPLIST} ${TMPPLIST}.notcl - @${CAT} ${PKGDIR}/PLIST.tcl ${TMPPLIST}.notcl > ${TMPPLIST} - @${RM} ${TMPPLIST}.notcl -.endif -.if defined(WITH_JDBC) - @ ${MKDIR} -m 0555 ${PREFIX}/share/java/classes - @ ${INSTALL_DATA} ${WRKSRC}/interfaces/jdbc/postgresql.jar \ - ${PREFIX}/share/java/classes/postgresql.jar - @ ${ECHO_MSG} "---------------------------------------------------------" - @ ${ECHO_MSG} "Putting postgresql.jar in" - @ ${ECHO_MSG} "${PREFIX}/share/java/classes/postgresql.jar" - @ ${ECHO_MSG} "Add this to your CLASSPATH!" - @ ${ECHO_MSG} "ALSO NOTE: path inside jar file modified from 6.5.x:" - @ ${ECHO_MSG} " 'postgresql.*' -> 'org.postgresql.*'!" - @ ${ECHO_MSG} "You will need to modify you applications' props files." - @ ${ECHO_MSG} "---------------------------------------------------------" - @ ${CAT} ${PKGDIR}/PLIST.jdbc >> ${TMPPLIST} -.if !defined(NOPORTDOCS) - @ ${MKDIR} -m 0555 ${PREFIX}/share/examples/pgsql/jdbc - @ ${INSTALL_DATA} ${WRKSRC}/interfaces/jdbc/example/*java \ - ${PREFIX}/share/examples/pgsql/jdbc - @ ${INSTALL_DATA} ${WRKSRC}/interfaces/jdbc/README* \ - ${PREFIX}/share/examples/pgsql/jdbc - @ ${ECHO_MSG} "---------------------------------------------------------" - @ ${ECHO_MSG} "Putting jdbc examples into ${PREFIX}/share/examples/pgsql" - @ ${ECHO_MSG} "---------------------------------------------------------" - @ ${CAT} ${PKGDIR}/PLIST.doc >> ${TMPPLIST} -.endif -.endif -.if !defined(NOPORTDOCS) - ${MKDIR} ${PREFIX}/share/doc/pgsql - @ ${GMAKE} -C ${WRKDIR}/${DISTNAME}/doc install - ${INSTALL_MAN} ${WRKDIR}/${DISTNAME}/doc/FAQ* ${PREFIX}/share/doc/pgsql - ${INSTALL_MAN} ${WRKDIR}/${DISTNAME}/doc/README* ${PREFIX}/share/doc/pgsql - ${INSTALL_MAN} ${WRKDIR}/${DISTNAME}/doc/TODO ${PREFIX}/share/doc/pgsql -# ${INSTALL_MAN} ${WRKDIR}/${DISTNAME}/doc/*ps.gz ${PREFIX}/share/doc/pgsql -.endif -.if !defined(BATCH) - @ more -e ${FILESDIR}/post-install-notes -.endif -.if !defined(DEBUG_FLAGS) -.for file in ecpg pg_dump pg_id pg_passwd pg_version postgres psql - @ strip ${PREFIX}/pgsql/bin/${file} -.endfor -.endif - -.include <bsd.port.mk> diff --git a/databases/postgresql80-server/distinfo b/databases/postgresql80-server/distinfo deleted file mode 100644 index 309ea1e11614..000000000000 --- a/databases/postgresql80-server/distinfo +++ /dev/null @@ -1,4 +0,0 @@ -MD5 (postgresql/postgresql-7.0.2.base.tar.gz) = 871d23b85d9a3599a7ed75dfc7da7ba7 -MD5 (postgresql/postgresql-7.0.2.support.tar.gz) = c21180a6485d85785c8e69f0cbff05dd -MD5 (postgresql/postgresql-7.0.2.docs.tar.gz) = efac1f87463f252e54d72b256885b883 -MD5 (postgresql/postgresql-7.0.2.test.tar.gz) = 3443b3d83194c396f20aee2adc6f93bf diff --git a/databases/postgresql80-server/files/patch-aj b/databases/postgresql80-server/files/patch-aj deleted file mode 100644 index 4231fc94ede9..000000000000 --- a/databases/postgresql80-server/files/patch-aj +++ /dev/null @@ -1,67 +0,0 @@ ---- bin/pg_passwd/pg_passwd.c.orig Mon Apr 17 05:45:18 2000 -+++ bin/pg_passwd/pg_passwd.c Sat May 20 17:54:59 2000 -@@ -18,11 +18,15 @@ - - #endif - -+#ifndef _POSIX_SOURCE -+# define _PASSWORD_LEN 128 /* max length, not containing NULL */ -+#endif -+ - char *comname; - static void usage(FILE *stream); - static void read_pwd_file(char *filename); - static void write_pwd_file(char *filename, char *bkname); --static void encrypt_pwd(char key[9], char salt[3], char passwd[14]); -+static void encrypt_pwd(char key[9], char salt[3], char passwd[_PASSWORD_LEN+1]); - static void prompt_for_username(char *username); - static void prompt_for_password(char *prompt, char *password); - -@@ -150,7 +154,7 @@ - - if (q != NULL) - *(q++) = '\0'; -- if (strlen(p) != 13) -+ if (strlen(p) > _PASSWORD_LEN) - { - fprintf(stderr, "WARNING: %s: line %d: illegal password length.\n", - filename, npwds + 1); -@@ -214,7 +218,7 @@ - } - - static void --encrypt_pwd(char key[9], char salt[3], char passwd[14]) -+encrypt_pwd(char key[9], char salt[3], char passwd[_PASSWORD_LEN+1]) - { - int n; - -@@ -246,9 +250,9 @@ - - #ifdef NOT_USED - static int --check_pwd(char key[9], char passwd[14]) -+check_pwd(char key[9], char passwd[_PASSWORD_LEN+1]) - { -- char shouldbe[14]; -+ char shouldbe[_PASSWORD_LEN+1]; - char salt[3]; - - salt[0] = passwd[0]; -@@ -256,7 +260,7 @@ - salt[2] = '\0'; - encrypt_pwd(key, salt, shouldbe); - -- return strncmp(shouldbe, passwd, 13) == 0 ? 1 : 0; -+ return strncmp(shouldbe, passwd, _PASSWORD_LEN) == 0 ? 1 : 0; - } - - #endif -@@ -332,7 +336,7 @@ - char salt[3]; - char key[9], - key2[9]; -- char e_passwd[14]; -+ char e_passwd[_PASSWORD_LEN+1]; - int i; - - comname = argv[0]; diff --git a/databases/postgresql80-server/files/patch-ar b/databases/postgresql80-server/files/patch-ar deleted file mode 100644 index c5c8096fc141..000000000000 --- a/databases/postgresql80-server/files/patch-ar +++ /dev/null @@ -1,11 +0,0 @@ ---- configure.orig Sun Oct 10 14:37:07 1999 -+++ configure Sun Oct 10 14:37:29 1999 -@@ -1429,7 +1429,7 @@ - ELF_SYS=true - else - rm -rf conftest* -- if test "X$elf" = "Xyes" -+ if test "X$PORTOBJFORMAT" = "Xelf" - then - ELF_SYS=true - else diff --git a/databases/postgresql80-server/files/patch-as b/databases/postgresql80-server/files/patch-as deleted file mode 100644 index 3282168c4aed..000000000000 --- a/databases/postgresql80-server/files/patch-as +++ /dev/null @@ -1,11 +0,0 @@ ---- Makefile.global.in.orig Sun Dec 6 00:08:56 1998 -+++ Makefile.global.in Sat Feb 27 04:23:12 1999 -@@ -79,7 +79,7 @@ - POSTMANDIR= $(POSTGRESDIR)/man - - # Where the formatted documents (e.g., the reference manual) get installed. --POSTDOCDIR= $(POSTGRESDIR)/doc -+POSTDOCDIR= !!PREFIX!!/share/doc/pgsql - - # Where the header files necessary to build frontend programs get installed. - HEADERDIR= $(POSTGRESDIR)/include diff --git a/databases/postgresql80-server/files/patch-at b/databases/postgresql80-server/files/patch-at deleted file mode 100644 index 93e68a708211..000000000000 --- a/databases/postgresql80-server/files/patch-at +++ /dev/null @@ -1,11 +0,0 @@ ---- ../doc/Makefile.orig Sun Nov 29 06:30:13 1998 -+++ ../doc/Makefile Mon Jun 21 17:00:13 1999 -@@ -12,7 +12,7 @@ - # - #---------------------------------------------------------------------------- - --PGDOCS= $(POSTGRESDIR)/doc -+PGDOCS= $(POSTDOCDIR) - SRCDIR= ../src - - TAR= tar diff --git a/databases/postgresql80-server/files/patch-ba b/databases/postgresql80-server/files/patch-ba deleted file mode 100644 index a3b679b882c5..000000000000 --- a/databases/postgresql80-server/files/patch-ba +++ /dev/null @@ -1,25 +0,0 @@ ---- interfaces/jdbc/Makefile.orig Tue Mar 14 16:55:17 2000 -+++ interfaces/jdbc/Makefile Sun Apr 16 21:16:43 2000 -@@ -10,10 +10,10 @@ - - FIND = find - IDL2JAVA = idltojava -fno-cpp -fno-tie --JAR = jar --JAVA = java --JAVAC = javac -g --JAVADOC = javadoc -+JAR = !!JAVA_HOME!!/bin/jar -+JAVA = !!JAVA_HOME!!/bin/java -+JAVAC = !!JAVA_HOME!!/bin/javac -+JAVADOC = !!JAVA_HOME!!/bin/javadoc - RM = rm -f - TOUCH = touch - -@@ -40,6 +40,7 @@ - @echo To compile, type: - @echo " $(MAKE) jdbc2" - @echo ------------------------------------------------------------ -+ $(MAKE) jdbc1 - - msg: - @echo ------------------------------------------------------------ diff --git a/databases/postgresql80-server/files/patch-bb b/databases/postgresql80-server/files/patch-bb deleted file mode 100644 index ea0f1732dcb0..000000000000 --- a/databases/postgresql80-server/files/patch-bb +++ /dev/null @@ -1,13 +0,0 @@ ---- pl/tcl/Makefile~ Sat Apr 29 19:45:42 2000 -+++ pl/tcl/Makefile Sat May 20 22:42:22 2000 -@@ -71,7 +71,9 @@ - CFLAGS+= $(TCL_SHLIB_CFLAGS) $(TCL_DEFS) - - CFLAGS+= -I$(SRCDIR)/include -I$(SRCDIR)/backend $(PGSQL_INCLUDES) -- -+ -+CFLAGS+= -I$(TCL_INCDIR) -+ - # - # Uncomment the following to enable the unknown command lookup - # on the first of all calls to the call handler. See the doc diff --git a/databases/postgresql80-server/files/patch-bc b/databases/postgresql80-server/files/patch-bc deleted file mode 100644 index ff747fb84a2f..000000000000 --- a/databases/postgresql80-server/files/patch-bc +++ /dev/null @@ -1,5 +0,0 @@ ---- bin/pg_ctl/postmaster.opts.default.sample~ Mon Apr 17 05:45:17 2000 -+++ bin/pg_ctl/postmaster.opts.default.sample Tue May 23 02:46:30 2000 -@@ -1 +1 @@ -- -+-i -o "-F" diff --git a/databases/postgresql80-server/files/pgsql.sh.tmpl b/databases/postgresql80-server/files/pgsql.sh.tmpl deleted file mode 100644 index e1673b4850c2..000000000000 --- a/databases/postgresql80-server/files/pgsql.sh.tmpl +++ /dev/null @@ -1,34 +0,0 @@ -#!/bin/sh - -# $FreeBSD$ -# -# For postmaster startup options, edit $PGDATA/postmaster.opts.default -# Preinstalled options are -i -o "-F" - -case $1 in -start) - [ -d !!PREFIX!!/pgsql/lib ] && /sbin/ldconfig -m !!PREFIX!!/pgsql/lib - [ -x !!PREFIX!!/pgsql/bin/pg_ctl ] && { - su -l pgsql -c \ - 'exec !!PREFIX!!/pgsql/bin/pg_ctl -w start > !!PREFIX!!/pgsql/errlog 2>&1' - echo -n ' pgsql' - } - ;; - -stop) - [ -x !!PREFIX!!/pgsql/bin/pg_ctl ] && { - su -l pgsql -c 'exec !!PREFIX!!/pgsql/bin/pg_ctl -w -m fast stop' - } - ;; - -status) - [ -x !!PREFIX!!/pgsql/bin/pg_ctl ] && { - su -l pgsql -c 'exec !!PREFIX!!/pgsql/bin/pg_ctl status' - } - ;; - -*) - echo "usage: `basename $0` {start|stop|status}" >&2 - exit 64 - ;; -esac diff --git a/databases/postgresql80-server/files/post-install-notes b/databases/postgresql80-server/files/post-install-notes deleted file mode 100644 index 289a7651109a..000000000000 --- a/databases/postgresql80-server/files/post-install-notes +++ /dev/null @@ -1,16 +0,0 @@ - -Now that PostgreSQL is installed, you should read the documentation and -implementation guides. These can be found at: - - http://www.PostgreSQL.org/docs - -You may wish to subscribe to the PostgreSQL user-support mailing list. -Send an e-mail to pgsql-questions-request@postgresql.org with the -text "subscribe" in the message body. - -If you built PostgreSQL with TCL support, you can install the port -"pgaccess" to get a TCL/TK based database frontend for database -operations. - -To start PostgreSQL, run the startup script: -$PREFIX/etc/rc.d/pgsql.sh start diff --git a/databases/postgresql80-server/pkg-comment b/databases/postgresql80-server/pkg-comment deleted file mode 100644 index 2125016b133c..000000000000 --- a/databases/postgresql80-server/pkg-comment +++ /dev/null @@ -1 +0,0 @@ -A robust, next generation, object-relational DBMS diff --git a/databases/postgresql80-server/pkg-descr b/databases/postgresql80-server/pkg-descr deleted file mode 100644 index f48a33337e55..000000000000 --- a/databases/postgresql80-server/pkg-descr +++ /dev/null @@ -1,24 +0,0 @@ -PostgreSQL is a robust, next-generation, Object-Relational DBMS (ORDBMS), -derived from the Berkeley Postgres database management system. While -PostgreSQL retains the powerful object-relational data model, rich data types -and easy extensibility of Postgres, it replaces the PostQuel query language -with an extended subset of SQL. - -The original Postgres code was the effort of many graduate students, -undergraduate students, and staff programmers working under the direction of -Professor Michael Stonebraker at the University of California, Berkeley. In -1995, Andrew Yu and Jolly Chen took on the task of converting the DBMS query -language to SQL and created a new database system which came to known as -Postgres95. Many others contributed to the porting, testing, debugging and -enhancement of the Postgres95 code. As the code improved, and 1995 faded into -memory, PostgreSQL was born. - -PostgreSQL development is presently being performed by a team of Internet -developers who are now responsible for all current and future development. The -development team coordinator is Marc G. Fournier (scrappy@PostgreSQL.ORG). -Support is available from the PostgreSQL developer/user community through the -support mailing list (questions@PostgreSQL.ORG). - -PostgreSQL is free and the complete source is available. - -WWW: http://www.postgresql.org diff --git a/databases/postgresql80-server/pkg-install b/databases/postgresql80-server/pkg-install deleted file mode 100644 index 7f3a090fe4b6..000000000000 --- a/databases/postgresql80-server/pkg-install +++ /dev/null @@ -1,44 +0,0 @@ -#! /bin/sh - -# $FreeBSD$ - -PATH=/bin:/usr/sbin - -if [ -z "${DB_DIR}" ]; then - DB_DIR=${PKG_PREFIX}/pgsql/data -fi - -case $2 in -POST-INSTALL) - USER=pgsql - GROUP=${USER} - UID=89 - GID=${UID} - - if pw group show "${GROUP}" 2>/dev/null; then - echo "You already have a group \"${GROUP}\", so I will use it." - else - if pw groupadd ${GROUP} -g ${GID}; then - echo "Added group \"${GROUP}\"." - else - echo "Adding group \"${GROUP}\" failed..." - exit 1 - fi - fi - - if pw user show "${USER}" 2>/dev/null; then - echo "You already have a user \"${USER}\", so I will use it." - else - if pw useradd ${USER} -u ${UID} -g ${GROUP} -h - \ - -d ${DB_DIR} -s /sbin/nologin -c "PostgreSQL Daemon" - then - echo "Added user \"${USER}\"." - else - echo "Adding user \"${USER}\" failed..." - exit 1 - fi - fi - - chown -R ${USER}.${GROUP} ${DB_DIR} - ;; -esac diff --git a/databases/postgresql80-server/pkg-plist b/databases/postgresql80-server/pkg-plist deleted file mode 100644 index 9992da1174ae..000000000000 --- a/databases/postgresql80-server/pkg-plist +++ /dev/null @@ -1,168 +0,0 @@ -etc/rc.d/pgsql.sh -pgsql/.profile -pgsql/bin/createdb -pgsql/bin/createlang -pgsql/bin/createuser -pgsql/bin/dropdb -pgsql/bin/droplang -pgsql/bin/dropuser -pgsql/bin/ecpg -pgsql/bin/initdb -pgsql/bin/initlocation -pgsql/bin/ipcclean -pgsql/bin/pg_ctl -pgsql/bin/pg_dump -pgsql/bin/pg_dumpall -pgsql/bin/pg_encoding -pgsql/bin/pg_id -pgsql/bin/pg_passwd -pgsql/bin/pg_upgrade -pgsql/bin/pg_version -pgsql/bin/postgres -pgsql/bin/postmaster -pgsql/bin/psql -pgsql/bin/vacuumdb -pgsql/data/PG_VERSION -pgsql/data/base/template1/PG_VERSION -pgsql/data/base/template1/pg_aggregate -pgsql/data/base/template1/pg_aggregate_name_type_index -pgsql/data/base/template1/pg_am -pgsql/data/base/template1/pg_am_name_index -pgsql/data/base/template1/pg_amop -pgsql/data/base/template1/pg_amop_opid_index -pgsql/data/base/template1/pg_amop_strategy_index -pgsql/data/base/template1/pg_amproc -pgsql/data/base/template1/pg_attrdef -pgsql/data/base/template1/pg_attrdef_adrelid_index -pgsql/data/base/template1/pg_attribute -pgsql/data/base/template1/pg_attribute_relid_attnam_index -pgsql/data/base/template1/pg_attribute_relid_attnum_index -pgsql/data/base/template1/pg_class -pgsql/data/base/template1/pg_class_oid_index -pgsql/data/base/template1/pg_class_relname_index -pgsql/data/base/template1/pg_description -pgsql/data/base/template1/pg_description_objoid_index -pgsql/data/base/template1/pg_index -pgsql/data/base/template1/pg_index_indexrelid_index -pgsql/data/base/template1/pg_indexes -pgsql/data/base/template1/pg_inheritproc -pgsql/data/base/template1/pg_inherits -pgsql/data/base/template1/pg_inherits_relid_seqno_index -pgsql/data/base/template1/pg_ipl -pgsql/data/base/template1/pg_language -pgsql/data/base/template1/pg_language_name_index -pgsql/data/base/template1/pg_language_oid_index -pgsql/data/base/template1/pg_listener -pgsql/data/base/template1/pg_listener_relname_pid_index -pgsql/data/base/template1/pg_opclass -pgsql/data/base/template1/pg_opclass_deftype_index -pgsql/data/base/template1/pg_opclass_name_index -pgsql/data/base/template1/pg_operator -pgsql/data/base/template1/pg_operator_oid_index -pgsql/data/base/template1/pg_operator_oprname_l_r_k_index -pgsql/data/base/template1/pg_proc -pgsql/data/base/template1/pg_proc_oid_index -pgsql/data/base/template1/pg_proc_proname_narg_type_index -pgsql/data/base/template1/pg_relcheck -pgsql/data/base/template1/pg_relcheck_rcrelid_index -pgsql/data/base/template1/pg_rewrite -pgsql/data/base/template1/pg_rewrite_oid_index -pgsql/data/base/template1/pg_rewrite_rulename_index -pgsql/data/base/template1/pg_rules -pgsql/data/base/template1/pg_statistic -pgsql/data/base/template1/pg_statistic_relid_att_index -pgsql/data/base/template1/pg_tables -pgsql/data/base/template1/pg_trigger -pgsql/data/base/template1/pg_trigger_tgconstrname_index -pgsql/data/base/template1/pg_trigger_tgconstrrelid_index -pgsql/data/base/template1/pg_trigger_tgrelid_index -pgsql/data/base/template1/pg_type -pgsql/data/base/template1/pg_type_oid_index -pgsql/data/base/template1/pg_type_typname_index -pgsql/data/base/template1/pg_user -pgsql/data/base/template1/pg_views -pgsql/data/pg_control -pgsql/data/pg_database -pgsql/data/pg_geqo.sample -pgsql/data/pg_group -pgsql/data/pg_group_name_index -pgsql/data/pg_group_sysid_index -pgsql/data/pg_hba.conf -pgsql/data/pg_log -pgsql/data/pg_shadow -pgsql/data/pg_variable -pgsql/data/postmaster.opts.default -pgsql/include/access/attnum.h -pgsql/include/c.h -pgsql/include/commands/trigger.h -pgsql/include/config.h -pgsql/include/ecpgerrno.h -pgsql/include/ecpglib.h -pgsql/include/ecpgtype.h -pgsql/include/executor/spi.h -pgsql/include/fmgr.h -pgsql/include/lib/dllist.h -pgsql/include/libpgeasy.h -pgsql/include/libpq/libpq-fs.h -pgsql/include/libpq/pqcomm.h -pgsql/include/libpq++/pgconnection.h -pgsql/include/libpq++/pgcursordb.h -pgsql/include/libpq++/pgdatabase.h -pgsql/include/libpq++/pglobject.h -pgsql/include/libpq++/pgtransdb.h -pgsql/include/libpq++.h -pgsql/include/libpq-fe.h -pgsql/include/libpq-int.h -pgsql/include/os.h -pgsql/include/postgres.h -pgsql/include/postgres_ext.h -pgsql/include/pqexpbuffer.h -pgsql/include/sql3types.h -pgsql/include/sqlca.h -pgsql/include/utils/elog.h -pgsql/include/utils/geo_decls.h -pgsql/include/utils/mcxt.h -pgsql/include/utils/palloc.h -pgsql/lib/global1.bki.source -pgsql/lib/global1.description -pgsql/lib/libecpg.a -pgsql/lib/libecpg.so -pgsql/lib/libecpg.so.3 -pgsql/lib/libpgeasy.a -pgsql/lib/libpgeasy.so -pgsql/lib/libpgeasy.so.2 -pgsql/lib/libpq++.a -pgsql/lib/libpq++.so -pgsql/lib/libpq++.so.3 -pgsql/lib/libpq.a -pgsql/lib/libpq.so -pgsql/lib/libpq.so.2 -pgsql/lib/local1_template1.bki.source -pgsql/lib/local1_template1.description -pgsql/lib/pg_geqo.sample -pgsql/lib/pg_hba.conf.sample -pgsql/lib/pg_ident.conf.sample -pgsql/lib/pg_options.sample -pgsql/lib/plpgsql.so -pgsql/lib/postmaster.opts.default.sample -pgsql/post-install-notes -@dirrm pgsql/bin -@dirrm pgsql/data/base/template1 -@dirrm pgsql/data/base -@dirrm pgsql/data/pg_xlog -@dirrm pgsql/data -@dirrm pgsql/include/access -@dirrm pgsql/include/commands -@dirrm pgsql/include/executor -@dirrm pgsql/include/lib -@dirrm pgsql/include/libpq -@dirrm pgsql/include/libpq++ -@dirrm pgsql/include/port/freebsd -@dirrm pgsql/include/port -@dirrm pgsql/include/utils -@dirrm pgsql/include -@dirrm pgsql/lib -@dirrm pgsql/man/man1 -@dirrm pgsql/man/manl -@dirrm pgsql/man -@dirrm pgsql diff --git a/databases/postgresql80-server/pkg-plist.doc b/databases/postgresql80-server/pkg-plist.doc deleted file mode 100644 index 06b7bd9ea116..000000000000 --- a/databases/postgresql80-server/pkg-plist.doc +++ /dev/null @@ -1,888 +0,0 @@ -share/doc/pgsql/FAQ -share/doc/pgsql/FAQ_AIX -share/doc/pgsql/FAQ_BSDI -share/doc/pgsql/FAQ_DEV -share/doc/pgsql/FAQ_DigitalUnix -share/doc/pgsql/FAQ_FreeBSD -share/doc/pgsql/FAQ_HPUX -share/doc/pgsql/FAQ_Irix -share/doc/pgsql/FAQ_Linux -share/doc/pgsql/FAQ_QNX4 -share/doc/pgsql/FAQ_SCO -share/doc/pgsql/FAQ_Solaris -share/doc/pgsql/README.Charsets -share/doc/pgsql/README.NT -share/doc/pgsql/README.fsync -share/doc/pgsql/README.inet -share/doc/pgsql/README.locale -share/doc/pgsql/README.mb -share/doc/pgsql/README.mb.jp -share/doc/pgsql/TODO -share/doc/pgsql/admin/admin.htm -share/doc/pgsql/admin/admin.html -share/doc/pgsql/admin/biblio.htm -share/doc/pgsql/admin/c573.htm -share/doc/pgsql/admin/c573602.htm -share/doc/pgsql/admin/c573680.htm -share/doc/pgsql/admin/c573717.htm -share/doc/pgsql/admin/copyright.htm -share/doc/pgsql/admin/disk.htm -share/doc/pgsql/admin/index.html -share/doc/pgsql/admin/install-win32.htm -share/doc/pgsql/admin/install-win321073.htm -share/doc/pgsql/admin/install-win321082.htm -share/doc/pgsql/admin/install.htm -share/doc/pgsql/admin/install855.htm -share/doc/pgsql/admin/intro-ag.htm -share/doc/pgsql/admin/intro-ag162.htm -share/doc/pgsql/admin/layout.gif -share/doc/pgsql/admin/layout.htm -share/doc/pgsql/admin/manage-ag.htm -share/doc/pgsql/admin/manage-ag1604.htm -share/doc/pgsql/admin/manage-ag1646.htm -share/doc/pgsql/admin/manage-ag1655.htm -share/doc/pgsql/admin/newuser.htm -share/doc/pgsql/admin/notation.htm -share/doc/pgsql/admin/pg-options.htm -share/doc/pgsql/admin/ports.htm -share/doc/pgsql/admin/ports481.htm -share/doc/pgsql/admin/postmaster.htm -share/doc/pgsql/admin/preface.htm -share/doc/pgsql/admin/recovery.htm -share/doc/pgsql/admin/regress.htm -share/doc/pgsql/admin/regress1861.htm -share/doc/pgsql/admin/regress1895.htm -share/doc/pgsql/admin/regress1941.htm -share/doc/pgsql/admin/release.htm -share/doc/pgsql/admin/release2009.htm -share/doc/pgsql/admin/release2020.htm -share/doc/pgsql/admin/release2031.htm -share/doc/pgsql/admin/release2042.htm -share/doc/pgsql/admin/release2124.htm -share/doc/pgsql/admin/release2135.htm -share/doc/pgsql/admin/release2146.htm -share/doc/pgsql/admin/release2187.htm -share/doc/pgsql/admin/release2203.htm -share/doc/pgsql/admin/release2222.htm -share/doc/pgsql/admin/release2266.htm -share/doc/pgsql/admin/release2288.htm -share/doc/pgsql/admin/release2303.htm -share/doc/pgsql/admin/release2312.htm -share/doc/pgsql/admin/release2335.htm -share/doc/pgsql/admin/release2349.htm -share/doc/pgsql/admin/release2352.htm -share/doc/pgsql/admin/release2377.htm -share/doc/pgsql/admin/release2414.htm -share/doc/pgsql/admin/release2421.htm -share/doc/pgsql/admin/release2428.htm -share/doc/pgsql/admin/release2435.htm -share/doc/pgsql/admin/release2439.htm -share/doc/pgsql/admin/runtime.htm -share/doc/pgsql/admin/security.htm -share/doc/pgsql/admin/security1450.htm -share/doc/pgsql/admin/security1485.htm -share/doc/pgsql/admin/security1509.htm -share/doc/pgsql/admin/security1530.htm -share/doc/pgsql/admin/terminology.htm -share/doc/pgsql/admin/trouble.htm -share/doc/pgsql/admin/trouble1721.htm -share/doc/pgsql/admin/trouble1738.htm -share/doc/pgsql/admin/y2k.htm -share/doc/pgsql/postgres/about.htm -share/doc/pgsql/postgres/advanced.htm -share/doc/pgsql/postgres/advanced27923.htm -share/doc/pgsql/postgres/advanced27945.htm -share/doc/pgsql/postgres/app-createdb.htm -share/doc/pgsql/postgres/app-createlang.htm -share/doc/pgsql/postgres/app-createuser.htm -share/doc/pgsql/postgres/app-dropdb.htm -share/doc/pgsql/postgres/app-droplang.htm -share/doc/pgsql/postgres/app-dropuser.htm -share/doc/pgsql/postgres/app-ecpg.htm -share/doc/pgsql/postgres/app-initdb.htm -share/doc/pgsql/postgres/app-initlocation.htm -share/doc/pgsql/postgres/app-ipcclean.htm -share/doc/pgsql/postgres/app-pg-passwd.htm -share/doc/pgsql/postgres/app-pg-upgrade.htm -share/doc/pgsql/postgres/app-pgaccess.htm -share/doc/pgsql/postgres/app-pgadmin.htm -share/doc/pgsql/postgres/app-pgctl.htm -share/doc/pgsql/postgres/app-pgdump.htm -share/doc/pgsql/postgres/app-pgdumpall.htm -share/doc/pgsql/postgres/app-pgtclsh.htm -share/doc/pgsql/postgres/app-pgtksh.htm -share/doc/pgsql/postgres/app-postgres.htm -share/doc/pgsql/postgres/app-postmaster.htm -share/doc/pgsql/postgres/app-psql.htm -share/doc/pgsql/postgres/app-vacuumdb.htm -share/doc/pgsql/postgres/applications.htm -share/doc/pgsql/postgres/arch-pg.htm -share/doc/pgsql/postgres/arch.htm -share/doc/pgsql/postgres/arrays.htm -share/doc/pgsql/postgres/biblio.htm -share/doc/pgsql/postgres/bki.htm -share/doc/pgsql/postgres/bki26573.htm -share/doc/pgsql/postgres/bki26657.htm -share/doc/pgsql/postgres/bki26681.htm -share/doc/pgsql/postgres/bki26742.htm -share/doc/pgsql/postgres/c16883.htm -share/doc/pgsql/postgres/c1688316912.htm -share/doc/pgsql/postgres/c1688316990.htm -share/doc/pgsql/postgres/c1688317027.htm -share/doc/pgsql/postgres/c19986.htm -share/doc/pgsql/postgres/c21722.htm -share/doc/pgsql/postgres/c2172221764.htm -share/doc/pgsql/postgres/c2172221782.htm -share/doc/pgsql/postgres/c2172221924.htm -share/doc/pgsql/postgres/c2172221936.htm -share/doc/pgsql/postgres/c2172221956.htm -share/doc/pgsql/postgres/c2172221961.htm -share/doc/pgsql/postgres/c25129.htm -share/doc/pgsql/postgres/c4091.htm -share/doc/pgsql/postgres/c40914117.htm -share/doc/pgsql/postgres/c40914344.htm -share/doc/pgsql/postgres/c4362.htm -share/doc/pgsql/postgres/c43624375.htm -share/doc/pgsql/postgres/c4888.htm -share/doc/pgsql/postgres/c4933.htm -share/doc/pgsql/postgres/c49334943.htm -share/doc/pgsql/postgres/c49334947.htm -share/doc/pgsql/postgres/catalogs.gif -share/doc/pgsql/postgres/clientserver.gif -share/doc/pgsql/postgres/compiler.htm -share/doc/pgsql/postgres/connections.gif -share/doc/pgsql/postgres/copyright.htm -share/doc/pgsql/postgres/cvs.htm -share/doc/pgsql/postgres/cvs28436.htm -share/doc/pgsql/postgres/cvs28492.htm -share/doc/pgsql/postgres/datatype.htm -share/doc/pgsql/postgres/datatype1038.htm -share/doc/pgsql/postgres/datatype1070.htm -share/doc/pgsql/postgres/datatype1134.htm -share/doc/pgsql/postgres/datatype1649.htm -share/doc/pgsql/postgres/datatype1681.htm -share/doc/pgsql/postgres/datatype1920.htm -share/doc/pgsql/postgres/datetime-appendix.htm -share/doc/pgsql/postgres/datetime-appendix28356.htm -share/doc/pgsql/postgres/dfunc.htm -share/doc/pgsql/postgres/dfunc20136.htm -share/doc/pgsql/postgres/dfunc20146.htm -share/doc/pgsql/postgres/disk.htm -share/doc/pgsql/postgres/docguide.htm -share/doc/pgsql/postgres/docguide28718.htm -share/doc/pgsql/postgres/docguide28749.htm -share/doc/pgsql/postgres/docguide28840.htm -share/doc/pgsql/postgres/docguide28861.htm -share/doc/pgsql/postgres/docguide28887.htm -share/doc/pgsql/postgres/docguide29024.htm -share/doc/pgsql/postgres/docguide29362.htm -share/doc/pgsql/postgres/environ.htm -share/doc/pgsql/postgres/extend.htm -share/doc/pgsql/postgres/extend18852.htm -share/doc/pgsql/postgres/extend18864.htm -share/doc/pgsql/postgres/func-ref.htm -share/doc/pgsql/postgres/functions.htm -share/doc/pgsql/postgres/functions2593.htm -share/doc/pgsql/postgres/functions2733.htm -share/doc/pgsql/postgres/functions2876.htm -share/doc/pgsql/postgres/functions2976.htm -share/doc/pgsql/postgres/functions3443.htm -share/doc/pgsql/postgres/functions3641.htm -share/doc/pgsql/postgres/geqo-biblio.htm -share/doc/pgsql/postgres/geqo.htm -share/doc/pgsql/postgres/geqo25594.htm -share/doc/pgsql/postgres/geqo25617.htm -share/doc/pgsql/postgres/geqo25655.htm -share/doc/pgsql/postgres/gist.htm -share/doc/pgsql/postgres/index.html -share/doc/pgsql/postgres/indices.htm -share/doc/pgsql/postgres/inherit.htm -share/doc/pgsql/postgres/install-win32.htm -share/doc/pgsql/postgres/install-win3217383.htm -share/doc/pgsql/postgres/install-win3217392.htm -share/doc/pgsql/postgres/install.htm -share/doc/pgsql/postgres/install17165.htm -share/doc/pgsql/postgres/intro.htm -share/doc/pgsql/postgres/intro176.htm -share/doc/pgsql/postgres/intro304.htm -share/doc/pgsql/postgres/intro60.htm -share/doc/pgsql/postgres/jdbc.htm -share/doc/pgsql/postgres/jdbc24909.htm -share/doc/pgsql/postgres/jdbc24921.htm -share/doc/pgsql/postgres/jdbc24927.htm -share/doc/pgsql/postgres/jdbc24935.htm -share/doc/pgsql/postgres/jdbc24953.htm -share/doc/pgsql/postgres/jdbc24990.htm -share/doc/pgsql/postgres/jdbc25021.htm -share/doc/pgsql/postgres/jdbc25026.htm -share/doc/pgsql/postgres/jdbc25030.htm -share/doc/pgsql/postgres/jdbc25056.htm -share/doc/pgsql/postgres/jdbc25086.htm -share/doc/pgsql/postgres/largeobjects.htm -share/doc/pgsql/postgres/largeobjects21625.htm -share/doc/pgsql/postgres/largeobjects21628.htm -share/doc/pgsql/postgres/largeobjects21707.htm -share/doc/pgsql/postgres/largeobjects21714.htm -share/doc/pgsql/postgres/largeobjects21718.htm -share/doc/pgsql/postgres/layout.gif -share/doc/pgsql/postgres/layout.htm -share/doc/pgsql/postgres/libpq-chapter.htm -share/doc/pgsql/postgres/libpq-chapter22422.htm -share/doc/pgsql/postgres/libpq-chapter22577.htm -share/doc/pgsql/postgres/libpq-chapter22724.htm -share/doc/pgsql/postgres/libpq-chapter22736.htm -share/doc/pgsql/postgres/libpq-chapter22774.htm -share/doc/pgsql/postgres/libpq-chapter22844.htm -share/doc/pgsql/postgres/libpq-chapter22857.htm -share/doc/pgsql/postgres/libpq-chapter22942.htm -share/doc/pgsql/postgres/libpq-envars.htm -share/doc/pgsql/postgres/libpq-threading.htm -share/doc/pgsql/postgres/libpqplusplus.htm -share/doc/pgsql/postgres/libpqplusplus23034.htm -share/doc/pgsql/postgres/libpqplusplus23044.htm -share/doc/pgsql/postgres/libpqplusplus23074.htm -share/doc/pgsql/postgres/libpqplusplus23179.htm -share/doc/pgsql/postgres/libpqplusplus23202.htm -share/doc/pgsql/postgres/lisp.htm -share/doc/pgsql/postgres/manage-ag.htm -share/doc/pgsql/postgres/manage-ag17914.htm -share/doc/pgsql/postgres/manage-ag17956.htm -share/doc/pgsql/postgres/manage-ag17965.htm -share/doc/pgsql/postgres/manage.htm -share/doc/pgsql/postgres/manage4814.htm -share/doc/pgsql/postgres/manage4838.htm -share/doc/pgsql/postgres/manage4880.htm -share/doc/pgsql/postgres/mvcc.htm -share/doc/pgsql/postgres/mvcc4568.htm -share/doc/pgsql/postgres/mvcc4621.htm -share/doc/pgsql/postgres/mvcc4633.htm -share/doc/pgsql/postgres/mvcc4646.htm -share/doc/pgsql/postgres/mvcc4723.htm -share/doc/pgsql/postgres/mvcc4744.htm -share/doc/pgsql/postgres/newuser.htm -share/doc/pgsql/postgres/notation.htm -share/doc/pgsql/postgres/odbc.htm -share/doc/pgsql/postgres/odbc24433.htm -share/doc/pgsql/postgres/odbc24471.htm -share/doc/pgsql/postgres/odbc24644.htm -share/doc/pgsql/postgres/odbc24666.htm -share/doc/pgsql/postgres/operators.htm -share/doc/pgsql/postgres/operators2127.htm -share/doc/pgsql/postgres/operators2198.htm -share/doc/pgsql/postgres/operators2267.htm -share/doc/pgsql/postgres/operators2377.htm -share/doc/pgsql/postgres/operators2436.htm -share/doc/pgsql/postgres/operators2490.htm -share/doc/pgsql/postgres/overview.htm -share/doc/pgsql/postgres/overview25194.htm -share/doc/pgsql/postgres/overview25219.htm -share/doc/pgsql/postgres/overview25347.htm -share/doc/pgsql/postgres/overview25403.htm -share/doc/pgsql/postgres/overview25457.htm -share/doc/pgsql/postgres/page.htm -share/doc/pgsql/postgres/page26805.htm -share/doc/pgsql/postgres/page26819.htm -share/doc/pgsql/postgres/part-admin.htm -share/doc/pgsql/postgres/part-appendix.htm -share/doc/pgsql/postgres/part-developer.htm -share/doc/pgsql/postgres/part-interfaces.htm -share/doc/pgsql/postgres/part-programmer.htm -share/doc/pgsql/postgres/part-tutorial.htm -share/doc/pgsql/postgres/part-user.htm -share/doc/pgsql/postgres/partial-index.htm -share/doc/pgsql/postgres/pg-options-dev.htm -share/doc/pgsql/postgres/pg-options.htm -share/doc/pgsql/postgres/pgeasy-chapter.htm -share/doc/pgsql/postgres/pgtcl-pgconndefaults.htm -share/doc/pgsql/postgres/pgtcl-pgconnect.htm -share/doc/pgsql/postgres/pgtcl-pgdisconnect.htm -share/doc/pgsql/postgres/pgtcl-pgexec.htm -share/doc/pgsql/postgres/pgtcl-pglisten.htm -share/doc/pgsql/postgres/pgtcl-pgloclose.htm -share/doc/pgsql/postgres/pgtcl-pglocreat.htm -share/doc/pgsql/postgres/pgtcl-pgloexport.htm -share/doc/pgsql/postgres/pgtcl-pgloimport.htm -share/doc/pgsql/postgres/pgtcl-pglolseek.htm -share/doc/pgsql/postgres/pgtcl-pgloopen.htm -share/doc/pgsql/postgres/pgtcl-pgloread.htm -share/doc/pgsql/postgres/pgtcl-pglotell.htm -share/doc/pgsql/postgres/pgtcl-pglounlink.htm -share/doc/pgsql/postgres/pgtcl-pglowrite.htm -share/doc/pgsql/postgres/pgtcl-pgresult.htm -share/doc/pgsql/postgres/pgtcl-pgselect.htm -share/doc/pgsql/postgres/pgtcl.htm -share/doc/pgsql/postgres/pgtcl23317.htm -share/doc/pgsql/postgres/pgtcl23321.htm -share/doc/pgsql/postgres/pl-perl.htm -share/doc/pgsql/postgres/pl-perl4533.htm -share/doc/pgsql/postgres/pl-perl4542.htm -share/doc/pgsql/postgres/ports.htm -share/doc/pgsql/postgres/ports16791.htm -share/doc/pgsql/postgres/postgres.htm -share/doc/pgsql/postgres/postgres.html -share/doc/pgsql/postgres/postmaster.htm -share/doc/pgsql/postgres/preface.htm -share/doc/pgsql/postgres/protocol.htm -share/doc/pgsql/postgres/protocol25770.htm -share/doc/pgsql/postgres/protocol25925.htm -share/doc/pgsql/postgres/protocol25962.htm -share/doc/pgsql/postgres/query.htm -share/doc/pgsql/postgres/query27752.htm -share/doc/pgsql/postgres/query27768.htm -share/doc/pgsql/postgres/query27790.htm -share/doc/pgsql/postgres/query27799.htm -share/doc/pgsql/postgres/query27817.htm -share/doc/pgsql/postgres/query27825.htm -share/doc/pgsql/postgres/query27844.htm -share/doc/pgsql/postgres/query27849.htm -share/doc/pgsql/postgres/query27856.htm -share/doc/pgsql/postgres/recovery.htm -share/doc/pgsql/postgres/regress.htm -share/doc/pgsql/postgres/regress18171.htm -share/doc/pgsql/postgres/regress18205.htm -share/doc/pgsql/postgres/regress18251.htm -share/doc/pgsql/postgres/release.htm -share/doc/pgsql/postgres/release18319.htm -share/doc/pgsql/postgres/release18330.htm -share/doc/pgsql/postgres/release18341.htm -share/doc/pgsql/postgres/release18352.htm -share/doc/pgsql/postgres/release18434.htm -share/doc/pgsql/postgres/release18445.htm -share/doc/pgsql/postgres/release18456.htm -share/doc/pgsql/postgres/release18497.htm -share/doc/pgsql/postgres/release18513.htm -share/doc/pgsql/postgres/release18532.htm -share/doc/pgsql/postgres/release18576.htm -share/doc/pgsql/postgres/release18598.htm -share/doc/pgsql/postgres/release18613.htm -share/doc/pgsql/postgres/release18622.htm -share/doc/pgsql/postgres/release18645.htm -share/doc/pgsql/postgres/release18659.htm -share/doc/pgsql/postgres/release18662.htm -share/doc/pgsql/postgres/release18687.htm -share/doc/pgsql/postgres/release18724.htm -share/doc/pgsql/postgres/release18731.htm -share/doc/pgsql/postgres/release18738.htm -share/doc/pgsql/postgres/release18745.htm -share/doc/pgsql/postgres/release18749.htm -share/doc/pgsql/postgres/rules.htm -share/doc/pgsql/postgres/rules19478.htm -share/doc/pgsql/postgres/rules19639.htm -share/doc/pgsql/postgres/rules19770.htm -share/doc/pgsql/postgres/rules19784.htm -share/doc/pgsql/postgres/runtime.htm -share/doc/pgsql/postgres/security.htm -share/doc/pgsql/postgres/security17760.htm -share/doc/pgsql/postgres/security17795.htm -share/doc/pgsql/postgres/security17819.htm -share/doc/pgsql/postgres/security17840.htm -share/doc/pgsql/postgres/signals.htm -share/doc/pgsql/postgres/spi-spiconnect.htm -share/doc/pgsql/postgres/spi-spicopytuple.htm -share/doc/pgsql/postgres/spi-spiexec.htm -share/doc/pgsql/postgres/spi-spiexecp.htm -share/doc/pgsql/postgres/spi-spifinish.htm -share/doc/pgsql/postgres/spi-spifname.htm -share/doc/pgsql/postgres/spi-spifnumber.htm -share/doc/pgsql/postgres/spi-spigetbinval.htm -share/doc/pgsql/postgres/spi-spigetrelname.htm -share/doc/pgsql/postgres/spi-spigettype.htm -share/doc/pgsql/postgres/spi-spigettypeid.htm -share/doc/pgsql/postgres/spi-spigetvalue.htm -share/doc/pgsql/postgres/spi-spimodifytuple.htm -share/doc/pgsql/postgres/spi-spipalloc.htm -share/doc/pgsql/postgres/spi-spipfree.htm -share/doc/pgsql/postgres/spi-spiprepare.htm -share/doc/pgsql/postgres/spi-spirepalloc.htm -share/doc/pgsql/postgres/spi-spisaveplan.htm -share/doc/pgsql/postgres/spi.htm -share/doc/pgsql/postgres/spi20808.htm -share/doc/pgsql/postgres/spi21521.htm -share/doc/pgsql/postgres/spi21543.htm -share/doc/pgsql/postgres/spi21548.htm -share/doc/pgsql/postgres/sql-abort.htm -share/doc/pgsql/postgres/sql-altergroup.htm -share/doc/pgsql/postgres/sql-altertable.htm -share/doc/pgsql/postgres/sql-alteruser.htm -share/doc/pgsql/postgres/sql-begin.htm -share/doc/pgsql/postgres/sql-close.htm -share/doc/pgsql/postgres/sql-cluster.htm -share/doc/pgsql/postgres/sql-commands.htm -share/doc/pgsql/postgres/sql-comment.htm -share/doc/pgsql/postgres/sql-commit.htm -share/doc/pgsql/postgres/sql-copy.htm -share/doc/pgsql/postgres/sql-createaggregate.htm -share/doc/pgsql/postgres/sql-createconstraint.htm -share/doc/pgsql/postgres/sql-createdatabase.htm -share/doc/pgsql/postgres/sql-createfunction.htm -share/doc/pgsql/postgres/sql-creategroup.htm -share/doc/pgsql/postgres/sql-createindex.htm -share/doc/pgsql/postgres/sql-createlanguage.htm -share/doc/pgsql/postgres/sql-createoperator.htm -share/doc/pgsql/postgres/sql-createrule.htm -share/doc/pgsql/postgres/sql-createsequence.htm -share/doc/pgsql/postgres/sql-createtable.htm -share/doc/pgsql/postgres/sql-createtableas.htm -share/doc/pgsql/postgres/sql-createtrigger.htm -share/doc/pgsql/postgres/sql-createtype.htm -share/doc/pgsql/postgres/sql-createuser.htm -share/doc/pgsql/postgres/sql-createview.htm -share/doc/pgsql/postgres/sql-declare.htm -share/doc/pgsql/postgres/sql-delete.htm -share/doc/pgsql/postgres/sql-dropaggregate.htm -share/doc/pgsql/postgres/sql-dropdatabase.htm -share/doc/pgsql/postgres/sql-dropfunction.htm -share/doc/pgsql/postgres/sql-dropgroup.htm -share/doc/pgsql/postgres/sql-dropindex.htm -share/doc/pgsql/postgres/sql-droplanguage.htm -share/doc/pgsql/postgres/sql-dropoperator.htm -share/doc/pgsql/postgres/sql-droprule.htm -share/doc/pgsql/postgres/sql-dropsequence.htm -share/doc/pgsql/postgres/sql-droptable.htm -share/doc/pgsql/postgres/sql-droptrigger.htm -share/doc/pgsql/postgres/sql-droptype.htm -share/doc/pgsql/postgres/sql-dropuser.htm -share/doc/pgsql/postgres/sql-dropview.htm -share/doc/pgsql/postgres/sql-end.htm -share/doc/pgsql/postgres/sql-explain.htm -share/doc/pgsql/postgres/sql-fetch.htm -share/doc/pgsql/postgres/sql-grant.htm -share/doc/pgsql/postgres/sql-insert.htm -share/doc/pgsql/postgres/sql-language.htm -share/doc/pgsql/postgres/sql-listen.htm -share/doc/pgsql/postgres/sql-load.htm -share/doc/pgsql/postgres/sql-lock.htm -share/doc/pgsql/postgres/sql-move.htm -share/doc/pgsql/postgres/sql-notify.htm -share/doc/pgsql/postgres/sql-reindex.htm -share/doc/pgsql/postgres/sql-reset.htm -share/doc/pgsql/postgres/sql-revoke.htm -share/doc/pgsql/postgres/sql-rollback.htm -share/doc/pgsql/postgres/sql-select.htm -share/doc/pgsql/postgres/sql-selectinto.htm -share/doc/pgsql/postgres/sql-set.htm -share/doc/pgsql/postgres/sql-show.htm -share/doc/pgsql/postgres/sql-truncate.htm -share/doc/pgsql/postgres/sql-unlisten.htm -share/doc/pgsql/postgres/sql-update.htm -share/doc/pgsql/postgres/sql-vacuum.htm -share/doc/pgsql/postgres/sql.htm -share/doc/pgsql/postgres/sql26902.htm -share/doc/pgsql/postgres/sql27020.htm -share/doc/pgsql/postgres/start.htm -share/doc/pgsql/postgres/start27628.htm -share/doc/pgsql/postgres/start27650.htm -share/doc/pgsql/postgres/storage.htm -share/doc/pgsql/postgres/syntax.htm -share/doc/pgsql/postgres/syntax519.htm -share/doc/pgsql/postgres/syntax525.htm -share/doc/pgsql/postgres/syntax543.htm -share/doc/pgsql/postgres/syntax608.htm -share/doc/pgsql/postgres/syntax653.htm -share/doc/pgsql/postgres/syntax658.htm -share/doc/pgsql/postgres/terminology.htm -share/doc/pgsql/postgres/triggers.htm -share/doc/pgsql/postgres/triggers20224.htm -share/doc/pgsql/postgres/triggers20281.htm -share/doc/pgsql/postgres/triggers20290.htm -share/doc/pgsql/postgres/trouble.htm -share/doc/pgsql/postgres/trouble18031.htm -share/doc/pgsql/postgres/trouble18048.htm -share/doc/pgsql/postgres/typeconv.htm -share/doc/pgsql/postgres/typeconv3759.htm -share/doc/pgsql/postgres/typeconv3822.htm -share/doc/pgsql/postgres/typeconv3875.htm -share/doc/pgsql/postgres/typeconv3895.htm -share/doc/pgsql/postgres/utilities.htm -share/doc/pgsql/postgres/xaggr.htm -share/doc/pgsql/postgres/xfunc.htm -share/doc/pgsql/postgres/xfunc19011.htm -share/doc/pgsql/postgres/xfunc19017.htm -share/doc/pgsql/postgres/xfunc19022.htm -share/doc/pgsql/postgres/xfunc19254.htm -share/doc/pgsql/postgres/xindex.htm -share/doc/pgsql/postgres/xoper.htm -share/doc/pgsql/postgres/xplang.htm -share/doc/pgsql/postgres/xtypes.htm -share/doc/pgsql/postgres/y2k.htm -share/doc/pgsql/programmer/arch-pg.htm -share/doc/pgsql/programmer/biblio.htm -share/doc/pgsql/programmer/bki.htm -share/doc/pgsql/programmer/bki8058.htm -share/doc/pgsql/programmer/bki8142.htm -share/doc/pgsql/programmer/bki8166.htm -share/doc/pgsql/programmer/bki8227.htm -share/doc/pgsql/programmer/c1486.htm -share/doc/pgsql/programmer/c5391.htm -share/doc/pgsql/programmer/c53915433.htm -share/doc/pgsql/programmer/c53915451.htm -share/doc/pgsql/programmer/c53915593.htm -share/doc/pgsql/programmer/c53915605.htm -share/doc/pgsql/programmer/c53915625.htm -share/doc/pgsql/programmer/c53915630.htm -share/doc/pgsql/programmer/c6614.htm -share/doc/pgsql/programmer/catalogs.gif -share/doc/pgsql/programmer/compiler.htm -share/doc/pgsql/programmer/connections.gif -share/doc/pgsql/programmer/copyright.htm -share/doc/pgsql/programmer/cvs.htm -share/doc/pgsql/programmer/cvs8365.htm -share/doc/pgsql/programmer/cvs8421.htm -share/doc/pgsql/programmer/dfunc.htm -share/doc/pgsql/programmer/dfunc1679.htm -share/doc/pgsql/programmer/dfunc1689.htm -share/doc/pgsql/programmer/docguide.htm -share/doc/pgsql/programmer/docguide8647.htm -share/doc/pgsql/programmer/docguide8678.htm -share/doc/pgsql/programmer/docguide8769.htm -share/doc/pgsql/programmer/docguide8790.htm -share/doc/pgsql/programmer/docguide8816.htm -share/doc/pgsql/programmer/docguide8953.htm -share/doc/pgsql/programmer/docguide9291.htm -share/doc/pgsql/programmer/extend.htm -share/doc/pgsql/programmer/extend352.htm -share/doc/pgsql/programmer/extend364.htm -share/doc/pgsql/programmer/geqo-biblio.htm -share/doc/pgsql/programmer/geqo.htm -share/doc/pgsql/programmer/geqo7079.htm -share/doc/pgsql/programmer/geqo7102.htm -share/doc/pgsql/programmer/geqo7140.htm -share/doc/pgsql/programmer/gist.htm -share/doc/pgsql/programmer/index.html -share/doc/pgsql/programmer/intro-pg.htm -share/doc/pgsql/programmer/intro-pg167.htm -share/doc/pgsql/programmer/jdbc.htm -share/doc/pgsql/programmer/jdbc6398.htm -share/doc/pgsql/programmer/jdbc6410.htm -share/doc/pgsql/programmer/jdbc6416.htm -share/doc/pgsql/programmer/jdbc6424.htm -share/doc/pgsql/programmer/jdbc6442.htm -share/doc/pgsql/programmer/jdbc6479.htm -share/doc/pgsql/programmer/jdbc6510.htm -share/doc/pgsql/programmer/jdbc6515.htm -share/doc/pgsql/programmer/jdbc6519.htm -share/doc/pgsql/programmer/jdbc6545.htm -share/doc/pgsql/programmer/jdbc6575.htm -share/doc/pgsql/programmer/largeobjects.htm -share/doc/pgsql/programmer/largeobjects3114.htm -share/doc/pgsql/programmer/largeobjects3117.htm -share/doc/pgsql/programmer/largeobjects3196.htm -share/doc/pgsql/programmer/largeobjects3203.htm -share/doc/pgsql/programmer/largeobjects3207.htm -share/doc/pgsql/programmer/libpq-chapter.htm -share/doc/pgsql/programmer/libpq-chapter3419.htm -share/doc/pgsql/programmer/libpq-chapter3574.htm -share/doc/pgsql/programmer/libpq-chapter3721.htm -share/doc/pgsql/programmer/libpq-chapter3733.htm -share/doc/pgsql/programmer/libpq-chapter3771.htm -share/doc/pgsql/programmer/libpq-chapter3841.htm -share/doc/pgsql/programmer/libpq-chapter3854.htm -share/doc/pgsql/programmer/libpq-chapter3939.htm -share/doc/pgsql/programmer/libpq-envars.htm -share/doc/pgsql/programmer/libpq-threading.htm -share/doc/pgsql/programmer/libpqplusplus.htm -share/doc/pgsql/programmer/libpqplusplus4031.htm -share/doc/pgsql/programmer/libpqplusplus4041.htm -share/doc/pgsql/programmer/libpqplusplus4071.htm -share/doc/pgsql/programmer/libpqplusplus4176.htm -share/doc/pgsql/programmer/libpqplusplus4199.htm -share/doc/pgsql/programmer/lisp.htm -share/doc/pgsql/programmer/notation.htm -share/doc/pgsql/programmer/odbc.htm -share/doc/pgsql/programmer/odbc5922.htm -share/doc/pgsql/programmer/odbc5960.htm -share/doc/pgsql/programmer/odbc6133.htm -share/doc/pgsql/programmer/odbc6155.htm -share/doc/pgsql/programmer/overview.htm -share/doc/pgsql/programmer/overview6679.htm -share/doc/pgsql/programmer/overview6704.htm -share/doc/pgsql/programmer/overview6832.htm -share/doc/pgsql/programmer/overview6888.htm -share/doc/pgsql/programmer/overview6942.htm -share/doc/pgsql/programmer/page.htm -share/doc/pgsql/programmer/page8290.htm -share/doc/pgsql/programmer/page8304.htm -share/doc/pgsql/programmer/pg-options-dev.htm -share/doc/pgsql/programmer/pgeasy-chapter.htm -share/doc/pgsql/programmer/pgtcl-pgconndefaults.htm -share/doc/pgsql/programmer/pgtcl-pgconnect.htm -share/doc/pgsql/programmer/pgtcl-pgdisconnect.htm -share/doc/pgsql/programmer/pgtcl-pgexec.htm -share/doc/pgsql/programmer/pgtcl-pglisten.htm -share/doc/pgsql/programmer/pgtcl-pgloclose.htm -share/doc/pgsql/programmer/pgtcl-pglocreat.htm -share/doc/pgsql/programmer/pgtcl-pgloexport.htm -share/doc/pgsql/programmer/pgtcl-pgloimport.htm -share/doc/pgsql/programmer/pgtcl-pglolseek.htm -share/doc/pgsql/programmer/pgtcl-pgloopen.htm -share/doc/pgsql/programmer/pgtcl-pgloread.htm -share/doc/pgsql/programmer/pgtcl-pglotell.htm -share/doc/pgsql/programmer/pgtcl-pglounlink.htm -share/doc/pgsql/programmer/pgtcl-pglowrite.htm -share/doc/pgsql/programmer/pgtcl-pgresult.htm -share/doc/pgsql/programmer/pgtcl-pgselect.htm -share/doc/pgsql/programmer/pgtcl.htm -share/doc/pgsql/programmer/pgtcl4314.htm -share/doc/pgsql/programmer/pgtcl4318.htm -share/doc/pgsql/programmer/preface.htm -share/doc/pgsql/programmer/programmer.htm -share/doc/pgsql/programmer/programmer.html -share/doc/pgsql/programmer/protocol.htm -share/doc/pgsql/programmer/protocol7255.htm -share/doc/pgsql/programmer/protocol7410.htm -share/doc/pgsql/programmer/protocol7447.htm -share/doc/pgsql/programmer/rules.htm -share/doc/pgsql/programmer/rules1139.htm -share/doc/pgsql/programmer/rules1270.htm -share/doc/pgsql/programmer/rules1284.htm -share/doc/pgsql/programmer/rules978.htm -share/doc/pgsql/programmer/signals.htm -share/doc/pgsql/programmer/spi-spiconnect.htm -share/doc/pgsql/programmer/spi-spicopytuple.htm -share/doc/pgsql/programmer/spi-spiexec.htm -share/doc/pgsql/programmer/spi-spiexecp.htm -share/doc/pgsql/programmer/spi-spifinish.htm -share/doc/pgsql/programmer/spi-spifname.htm -share/doc/pgsql/programmer/spi-spifnumber.htm -share/doc/pgsql/programmer/spi-spigetbinval.htm -share/doc/pgsql/programmer/spi-spigetrelname.htm -share/doc/pgsql/programmer/spi-spigettype.htm -share/doc/pgsql/programmer/spi-spigettypeid.htm -share/doc/pgsql/programmer/spi-spigetvalue.htm -share/doc/pgsql/programmer/spi-spimodifytuple.htm -share/doc/pgsql/programmer/spi-spipalloc.htm -share/doc/pgsql/programmer/spi-spipfree.htm -share/doc/pgsql/programmer/spi-spiprepare.htm -share/doc/pgsql/programmer/spi-spirepalloc.htm -share/doc/pgsql/programmer/spi-spisaveplan.htm -share/doc/pgsql/programmer/spi.htm -share/doc/pgsql/programmer/spi2351.htm -share/doc/pgsql/programmer/spi3064.htm -share/doc/pgsql/programmer/spi3086.htm -share/doc/pgsql/programmer/spi3091.htm -share/doc/pgsql/programmer/terminology.htm -share/doc/pgsql/programmer/triggers.htm -share/doc/pgsql/programmer/triggers1767.htm -share/doc/pgsql/programmer/triggers1824.htm -share/doc/pgsql/programmer/triggers1833.htm -share/doc/pgsql/programmer/xaggr.htm -share/doc/pgsql/programmer/xfunc.htm -share/doc/pgsql/programmer/xfunc511.htm -share/doc/pgsql/programmer/xfunc517.htm -share/doc/pgsql/programmer/xfunc522.htm -share/doc/pgsql/programmer/xfunc754.htm -share/doc/pgsql/programmer/xindex.htm -share/doc/pgsql/programmer/xoper.htm -share/doc/pgsql/programmer/xplang.htm -share/doc/pgsql/programmer/xtypes.htm -share/doc/pgsql/programmer/y2k.htm -share/doc/pgsql/tutorial/about.htm -share/doc/pgsql/tutorial/advanced.htm -share/doc/pgsql/tutorial/advanced1511.htm -share/doc/pgsql/tutorial/advanced1533.htm -share/doc/pgsql/tutorial/arch.htm -share/doc/pgsql/tutorial/biblio.htm -share/doc/pgsql/tutorial/clientserver.gif -share/doc/pgsql/tutorial/copyright.htm -share/doc/pgsql/tutorial/f17.htm -share/doc/pgsql/tutorial/index.html -share/doc/pgsql/tutorial/intro.htm -share/doc/pgsql/tutorial/intro172.htm -share/doc/pgsql/tutorial/intro300.htm -share/doc/pgsql/tutorial/intro56.htm -share/doc/pgsql/tutorial/notation.htm -share/doc/pgsql/tutorial/query.htm -share/doc/pgsql/tutorial/query1340.htm -share/doc/pgsql/tutorial/query1356.htm -share/doc/pgsql/tutorial/query1378.htm -share/doc/pgsql/tutorial/query1387.htm -share/doc/pgsql/tutorial/query1405.htm -share/doc/pgsql/tutorial/query1413.htm -share/doc/pgsql/tutorial/query1432.htm -share/doc/pgsql/tutorial/query1437.htm -share/doc/pgsql/tutorial/query1444.htm -share/doc/pgsql/tutorial/sql-language.htm -share/doc/pgsql/tutorial/sql.htm -share/doc/pgsql/tutorial/sql490.htm -share/doc/pgsql/tutorial/sql608.htm -share/doc/pgsql/tutorial/start.htm -share/doc/pgsql/tutorial/start1216.htm -share/doc/pgsql/tutorial/start1238.htm -share/doc/pgsql/tutorial/terminology.htm -share/doc/pgsql/tutorial/tutorial.htm -share/doc/pgsql/tutorial/tutorial.html -share/doc/pgsql/tutorial/y2k.htm -share/doc/pgsql/user/about.htm -share/doc/pgsql/user/app-createdb.htm -share/doc/pgsql/user/app-createlang.htm -share/doc/pgsql/user/app-createuser.htm -share/doc/pgsql/user/app-dropdb.htm -share/doc/pgsql/user/app-droplang.htm -share/doc/pgsql/user/app-dropuser.htm -share/doc/pgsql/user/app-ecpg.htm -share/doc/pgsql/user/app-initdb.htm -share/doc/pgsql/user/app-initlocation.htm -share/doc/pgsql/user/app-ipcclean.htm -share/doc/pgsql/user/app-pg-passwd.htm -share/doc/pgsql/user/app-pg-upgrade.htm -share/doc/pgsql/user/app-pgaccess.htm -share/doc/pgsql/user/app-pgadmin.htm -share/doc/pgsql/user/app-pgctl.htm -share/doc/pgsql/user/app-pgdump.htm -share/doc/pgsql/user/app-pgdumpall.htm -share/doc/pgsql/user/app-pgtclsh.htm -share/doc/pgsql/user/app-pgtksh.htm -share/doc/pgsql/user/app-postgres.htm -share/doc/pgsql/user/app-postmaster.htm -share/doc/pgsql/user/app-psql.htm -share/doc/pgsql/user/app-vacuumdb.htm -share/doc/pgsql/user/applications.htm -share/doc/pgsql/user/arrays.htm -share/doc/pgsql/user/biblio.htm -share/doc/pgsql/user/c4087.htm -share/doc/pgsql/user/c40874113.htm -share/doc/pgsql/user/c40874340.htm -share/doc/pgsql/user/c4358.htm -share/doc/pgsql/user/c43584371.htm -share/doc/pgsql/user/c4884.htm -share/doc/pgsql/user/c4929.htm -share/doc/pgsql/user/c49294939.htm -share/doc/pgsql/user/c49294943.htm -share/doc/pgsql/user/copyright.htm -share/doc/pgsql/user/datatype.htm -share/doc/pgsql/user/datatype1034.htm -share/doc/pgsql/user/datatype1066.htm -share/doc/pgsql/user/datatype1130.htm -share/doc/pgsql/user/datatype1645.htm -share/doc/pgsql/user/datatype1677.htm -share/doc/pgsql/user/datatype1916.htm -share/doc/pgsql/user/datetime-appendix.htm -share/doc/pgsql/user/datetime-appendix16981.htm -share/doc/pgsql/user/environ.htm -share/doc/pgsql/user/functions.htm -share/doc/pgsql/user/functions2589.htm -share/doc/pgsql/user/functions2729.htm -share/doc/pgsql/user/functions2872.htm -share/doc/pgsql/user/functions2972.htm -share/doc/pgsql/user/functions3439.htm -share/doc/pgsql/user/functions3637.htm -share/doc/pgsql/user/index.html -share/doc/pgsql/user/indices.htm -share/doc/pgsql/user/inherit.htm -share/doc/pgsql/user/intro.htm -share/doc/pgsql/user/intro172.htm -share/doc/pgsql/user/intro300.htm -share/doc/pgsql/user/intro56.htm -share/doc/pgsql/user/manage.htm -share/doc/pgsql/user/manage4810.htm -share/doc/pgsql/user/manage4834.htm -share/doc/pgsql/user/manage4876.htm -share/doc/pgsql/user/mvcc.htm -share/doc/pgsql/user/mvcc4564.htm -share/doc/pgsql/user/mvcc4617.htm -share/doc/pgsql/user/mvcc4629.htm -share/doc/pgsql/user/mvcc4642.htm -share/doc/pgsql/user/mvcc4719.htm -share/doc/pgsql/user/mvcc4740.htm -share/doc/pgsql/user/notation.htm -share/doc/pgsql/user/operators.htm -share/doc/pgsql/user/operators2123.htm -share/doc/pgsql/user/operators2194.htm -share/doc/pgsql/user/operators2263.htm -share/doc/pgsql/user/operators2373.htm -share/doc/pgsql/user/operators2432.htm -share/doc/pgsql/user/operators2486.htm -share/doc/pgsql/user/partial-index.htm -share/doc/pgsql/user/pl-perl.htm -share/doc/pgsql/user/pl-perl4529.htm -share/doc/pgsql/user/pl-perl4538.htm -share/doc/pgsql/user/preface.htm -share/doc/pgsql/user/sql-abort.htm -share/doc/pgsql/user/sql-altergroup.htm -share/doc/pgsql/user/sql-altertable.htm -share/doc/pgsql/user/sql-alteruser.htm -share/doc/pgsql/user/sql-begin.htm -share/doc/pgsql/user/sql-close.htm -share/doc/pgsql/user/sql-cluster.htm -share/doc/pgsql/user/sql-commands.htm -share/doc/pgsql/user/sql-comment.htm -share/doc/pgsql/user/sql-commit.htm -share/doc/pgsql/user/sql-copy.htm -share/doc/pgsql/user/sql-createaggregate.htm -share/doc/pgsql/user/sql-createconstraint.htm -share/doc/pgsql/user/sql-createdatabase.htm -share/doc/pgsql/user/sql-createfunction.htm -share/doc/pgsql/user/sql-creategroup.htm -share/doc/pgsql/user/sql-createindex.htm -share/doc/pgsql/user/sql-createlanguage.htm -share/doc/pgsql/user/sql-createoperator.htm -share/doc/pgsql/user/sql-createrule.htm -share/doc/pgsql/user/sql-createsequence.htm -share/doc/pgsql/user/sql-createtable.htm -share/doc/pgsql/user/sql-createtableas.htm -share/doc/pgsql/user/sql-createtrigger.htm -share/doc/pgsql/user/sql-createtype.htm -share/doc/pgsql/user/sql-createuser.htm -share/doc/pgsql/user/sql-createview.htm -share/doc/pgsql/user/sql-declare.htm -share/doc/pgsql/user/sql-delete.htm -share/doc/pgsql/user/sql-dropaggregate.htm -share/doc/pgsql/user/sql-dropdatabase.htm -share/doc/pgsql/user/sql-dropfunction.htm -share/doc/pgsql/user/sql-dropgroup.htm -share/doc/pgsql/user/sql-dropindex.htm -share/doc/pgsql/user/sql-droplanguage.htm -share/doc/pgsql/user/sql-dropoperator.htm -share/doc/pgsql/user/sql-droprule.htm -share/doc/pgsql/user/sql-dropsequence.htm -share/doc/pgsql/user/sql-droptable.htm -share/doc/pgsql/user/sql-droptrigger.htm -share/doc/pgsql/user/sql-droptype.htm -share/doc/pgsql/user/sql-dropuser.htm -share/doc/pgsql/user/sql-dropview.htm -share/doc/pgsql/user/sql-end.htm -share/doc/pgsql/user/sql-explain.htm -share/doc/pgsql/user/sql-fetch.htm -share/doc/pgsql/user/sql-grant.htm -share/doc/pgsql/user/sql-insert.htm -share/doc/pgsql/user/sql-listen.htm -share/doc/pgsql/user/sql-load.htm -share/doc/pgsql/user/sql-lock.htm -share/doc/pgsql/user/sql-move.htm -share/doc/pgsql/user/sql-notify.htm -share/doc/pgsql/user/sql-reindex.htm -share/doc/pgsql/user/sql-reset.htm -share/doc/pgsql/user/sql-revoke.htm -share/doc/pgsql/user/sql-rollback.htm -share/doc/pgsql/user/sql-select.htm -share/doc/pgsql/user/sql-selectinto.htm -share/doc/pgsql/user/sql-set.htm -share/doc/pgsql/user/sql-show.htm -share/doc/pgsql/user/sql-truncate.htm -share/doc/pgsql/user/sql-unlisten.htm -share/doc/pgsql/user/sql-update.htm -share/doc/pgsql/user/sql-vacuum.htm -share/doc/pgsql/user/storage.htm -share/doc/pgsql/user/syntax.htm -share/doc/pgsql/user/syntax515.htm -share/doc/pgsql/user/syntax521.htm -share/doc/pgsql/user/syntax539.htm -share/doc/pgsql/user/syntax604.htm -share/doc/pgsql/user/syntax649.htm -share/doc/pgsql/user/syntax654.htm -share/doc/pgsql/user/terminology.htm -share/doc/pgsql/user/typeconv.htm -share/doc/pgsql/user/typeconv3755.htm -share/doc/pgsql/user/typeconv3818.htm -share/doc/pgsql/user/typeconv3871.htm -share/doc/pgsql/user/typeconv3891.htm -share/doc/pgsql/user/user.htm -share/doc/pgsql/user/user.html -share/doc/pgsql/user/utilities.htm -share/doc/pgsql/user/y2k.htm -@dirrm share/doc/pgsql/admin -@dirrm share/doc/pgsql/postgres -@dirrm share/doc/pgsql/programmer -@dirrm share/doc/pgsql/tutorial -@dirrm share/doc/pgsql/user -@dirrm share/doc/pgsql diff --git a/databases/postgresql80-server/pkg-plist.jdbc b/databases/postgresql80-server/pkg-plist.jdbc deleted file mode 100644 index bef5d75506b4..000000000000 --- a/databases/postgresql80-server/pkg-plist.jdbc +++ /dev/null @@ -1,13 +0,0 @@ -share/examples/pgsql/jdbc/ImageViewer.java -share/examples/pgsql/jdbc/basic.java -share/examples/pgsql/jdbc/blobtest.java -share/examples/pgsql/jdbc/datestyle.java -share/examples/pgsql/jdbc/metadata.java -share/examples/pgsql/jdbc/psql.java -share/examples/pgsql/jdbc/threadsafe.java -share/examples/pgsql/jdbc/README -share/examples/pgsql/jdbc/README_6.3 -@dirrm share/examples/pgsql/jdbc -@dirrm share/examples/pgsql -share/java/classes/postgresql.jar -@unexec rmdir %D/share/java 2>/dev/null || true diff --git a/databases/postgresql80-server/pkg-plist.tcl b/databases/postgresql80-server/pkg-plist.tcl deleted file mode 100644 index b01eaf1571ed..000000000000 --- a/databases/postgresql80-server/pkg-plist.tcl +++ /dev/null @@ -1,141 +0,0 @@ -pgsql/bin/pgaccess -pgsql/bin/pgtclsh -pgsql/bin/pgtksh -pgsql/include/libpgtcl.h -pgsql/lib/libpgtcl.a -pgsql/lib/libpgtcl.so -pgsql/lib/libpgtcl.so.2 -pgsql/lib/pltcl.so -pgsql/pgaccess/images/icon_button.gif -pgsql/pgaccess/images/icon_checkbutton.gif -pgsql/pgaccess/images/icon_entry.gif -pgsql/pgaccess/images/icon_frame.gif -pgsql/pgaccess/images/icon_label.gif -pgsql/pgaccess/images/icon_listbox.gif -pgsql/pgaccess/images/icon_query.gif -pgsql/pgaccess/images/icon_radiobutton.gif -pgsql/pgaccess/images/icon_text.gif -pgsql/pgaccess/lib/database.tcl -pgsql/pgaccess/lib/forms.tcl -pgsql/pgaccess/lib/functions.tcl -pgsql/pgaccess/lib/help/abort.hlp -pgsql/pgaccess/lib/help/add_records.hlp -pgsql/pgaccess/lib/help/alter_table.hlp -pgsql/pgaccess/lib/help/alter_user.hlp -pgsql/pgaccess/lib/help/author.hlp -pgsql/pgaccess/lib/help/begin.hlp -pgsql/pgaccess/lib/help/close.hlp -pgsql/pgaccess/lib/help/cluster.hlp -pgsql/pgaccess/lib/help/commit.hlp -pgsql/pgaccess/lib/help/copy.hlp -pgsql/pgaccess/lib/help/copyrights.hlp -pgsql/pgaccess/lib/help/create_aggregate.hlp -pgsql/pgaccess/lib/help/create_database.hlp -pgsql/pgaccess/lib/help/create_function.hlp -pgsql/pgaccess/lib/help/create_index.hlp -pgsql/pgaccess/lib/help/create_language.hlp -pgsql/pgaccess/lib/help/create_operator.hlp -pgsql/pgaccess/lib/help/create_rule.hlp -pgsql/pgaccess/lib/help/create_sequence.hlp -pgsql/pgaccess/lib/help/create_table.hlp -pgsql/pgaccess/lib/help/create_table_as.hlp -pgsql/pgaccess/lib/help/create_trigger.hlp -pgsql/pgaccess/lib/help/create_type.hlp -pgsql/pgaccess/lib/help/create_user.hlp -pgsql/pgaccess/lib/help/create_view.hlp -pgsql/pgaccess/lib/help/data_types.hlp -pgsql/pgaccess/lib/help/datefunc.hlp -pgsql/pgaccess/lib/help/declare.hlp -pgsql/pgaccess/lib/help/delete.hlp -pgsql/pgaccess/lib/help/drop_aggregate.hlp -pgsql/pgaccess/lib/help/drop_database.hlp -pgsql/pgaccess/lib/help/drop_function.hlp -pgsql/pgaccess/lib/help/drop_index.hlp -pgsql/pgaccess/lib/help/drop_language.hlp -pgsql/pgaccess/lib/help/drop_operator.hlp -pgsql/pgaccess/lib/help/drop_rule.hlp -pgsql/pgaccess/lib/help/drop_sequence.hlp -pgsql/pgaccess/lib/help/drop_table.hlp -pgsql/pgaccess/lib/help/drop_trigger.hlp -pgsql/pgaccess/lib/help/drop_type.hlp -pgsql/pgaccess/lib/help/drop_user.hlp -pgsql/pgaccess/lib/help/drop_view.hlp -pgsql/pgaccess/lib/help/explain.hlp -pgsql/pgaccess/lib/help/fetch.hlp -pgsql/pgaccess/lib/help/form_design.hlp -pgsql/pgaccess/lib/help/forms.hlp -pgsql/pgaccess/lib/help/functions.hlp -pgsql/pgaccess/lib/help/geomfunc.hlp -pgsql/pgaccess/lib/help/grant.hlp -pgsql/pgaccess/lib/help/history.hlp -pgsql/pgaccess/lib/help/index.hlp -pgsql/pgaccess/lib/help/inheritance.hlp -pgsql/pgaccess/lib/help/insert.hlp -pgsql/pgaccess/lib/help/ipv4func.hlp -pgsql/pgaccess/lib/help/isolation.hlp -pgsql/pgaccess/lib/help/keywords.hlp -pgsql/pgaccess/lib/help/listen.hlp -pgsql/pgaccess/lib/help/load.hlp -pgsql/pgaccess/lib/help/lock.hlp -pgsql/pgaccess/lib/help/mathfunc.hlp -pgsql/pgaccess/lib/help/move.hlp -pgsql/pgaccess/lib/help/mvcc.hlp -pgsql/pgaccess/lib/help/new_query.hlp -pgsql/pgaccess/lib/help/new_table.hlp -pgsql/pgaccess/lib/help/notify.hlp -pgsql/pgaccess/lib/help/open_query.hlp -pgsql/pgaccess/lib/help/open_table.hlp -pgsql/pgaccess/lib/help/pgfunctions.hlp -pgsql/pgaccess/lib/help/postgresql.hlp -pgsql/pgaccess/lib/help/queries.hlp -pgsql/pgaccess/lib/help/reports.hlp -pgsql/pgaccess/lib/help/reset.hlp -pgsql/pgaccess/lib/help/revoke.hlp -pgsql/pgaccess/lib/help/rollback.hlp -pgsql/pgaccess/lib/help/schema.hlp -pgsql/pgaccess/lib/help/scripts.hlp -pgsql/pgaccess/lib/help/select.hlp -pgsql/pgaccess/lib/help/select_into.hlp -pgsql/pgaccess/lib/help/sequences.hlp -pgsql/pgaccess/lib/help/set.hlp -pgsql/pgaccess/lib/help/show.hlp -pgsql/pgaccess/lib/help/sql_guide.hlp -pgsql/pgaccess/lib/help/sqlfunc.hlp -pgsql/pgaccess/lib/help/stringfunc.hlp -pgsql/pgaccess/lib/help/tables.hlp -pgsql/pgaccess/lib/help/unlisten.hlp -pgsql/pgaccess/lib/help/update.hlp -pgsql/pgaccess/lib/help/users.hlp -pgsql/pgaccess/lib/help/vacuum.hlp -pgsql/pgaccess/lib/help/view_table_structure.hlp -pgsql/pgaccess/lib/help/views.hlp -pgsql/pgaccess/lib/help/visual_designer.hlp -pgsql/pgaccess/lib/help/y2k.hlp -pgsql/pgaccess/lib/help.tcl -pgsql/pgaccess/lib/languages/czech -pgsql/pgaccess/lib/languages/deutsch -pgsql/pgaccess/lib/languages/francais -pgsql/pgaccess/lib/languages/italiano -pgsql/pgaccess/lib/languages/magyar -pgsql/pgaccess/lib/languages/portugues -pgsql/pgaccess/lib/languages/romana -pgsql/pgaccess/lib/languages/russian.koi8r -pgsql/pgaccess/lib/languages/russian_win -pgsql/pgaccess/lib/languages/spanish -pgsql/pgaccess/lib/mainlib.tcl -pgsql/pgaccess/lib/preferences.tcl -pgsql/pgaccess/lib/queries.tcl -pgsql/pgaccess/lib/reports.tcl -pgsql/pgaccess/lib/schema.tcl -pgsql/pgaccess/lib/scripts.tcl -pgsql/pgaccess/lib/sequences.tcl -pgsql/pgaccess/lib/tables.tcl -pgsql/pgaccess/lib/users.tcl -pgsql/pgaccess/lib/views.tcl -pgsql/pgaccess/lib/visualqb.tcl -pgsql/pgaccess/main.tcl -@dirrm pgsql/pgaccess/images -@dirrm pgsql/pgaccess/lib/help -@dirrm pgsql/pgaccess/lib/languages -@dirrm pgsql/pgaccess/lib -@dirrm pgsql/pgaccess diff --git a/databases/postgresql80-server/scripts/configure b/databases/postgresql80-server/scripts/configure deleted file mode 100644 index 4a92ee450ebe..000000000000 --- a/databases/postgresql80-server/scripts/configure +++ /dev/null @@ -1,7 +0,0 @@ -#! /bin/sh - -# $FreeBSD$ - -cd $WRKSRC || exit 1 - -perl -pi -e "s=!!JAVA_HOME!!=${JAVA_HOME}=; s=!!PREFIX!!=${PREFIX}=" ${WRKSRC}/interfaces/jdbc/Makefile diff --git a/databases/postgresql80-server/scripts/createuser b/databases/postgresql80-server/scripts/createuser deleted file mode 100644 index 2abe201e7a4b..000000000000 --- a/databases/postgresql80-server/scripts/createuser +++ /dev/null @@ -1,50 +0,0 @@ -#!/usr/bin/perl -# - -eval '(exit $?0)' && eval 'exec /usr/bin/perl -S $0 ${1+"$@"}' -& eval 'exec /usr/bin/perl -S $0 $argv:q' -if 0; - -if( $> ) { - print "\nYou must be root to run this step!\n\n"; - exit 1; -} - -if( getpwnam( "pgsql" ) ) { - ( $null, $null, $pgUID ) = getpwnam( "pgsql" ); -} else { - $pgUID = 70; - while( getpwuid( $pgUID ) ) { - $pgUID++; - } -} - -if( getgrnam( "pgsql" ) ) { - ( $null, $null, $pgGID ) = getgrnam( "pgsql" ); -} else { - $pgGID = 70; - while( getgrgid( $pgGID ) ) { - $pgGID++; - } - &append_file( "/etc/group", "pgsql:*:$pgGID:" ); -} - -print "pgsql user using uid $pgUID\n"; -print "pgsql user using gid $pgGID\n"; - -system( "/usr/bin/chpass -a \"pgsql:*:$pgUID:$pgGID\:\:0:0:PostgreSQL pseudo-user:$ENV{'PREFIX'}/pgsql:/bin/sh\"" ); - -sub append_file { - local($file,@list) = @_; - local($LOCK_EX) = 2; - local($LOCK_NB) = 4; - local($LOCK_UN) = 8; - - open(F, ">> $file") || die "$file: $!\n"; - while( ! flock( F, $LOCK_EX | $LOCK_NB ) ) { - exit 1; - } - print F join( "\n", @list) . "\n"; - close F; - flock( F, $LOCK_UN ); -} diff --git a/databases/postgresql81-server/Makefile b/databases/postgresql81-server/Makefile deleted file mode 100644 index 94aa22cad135..000000000000 --- a/databases/postgresql81-server/Makefile +++ /dev/null @@ -1,259 +0,0 @@ -# New ports collection makefile for: PostgreSQL -# Date created: November 13, 1998 -# Whom: Marc G. Fournier <scrappy@FreeBSD.org> -# -# $FreeBSD$ -# - -PORTNAME= postgresql -PORTVERSION= 7.0.2 -CATEGORIES= databases -MASTER_SITES= ftp://ftp.postgresql.org/pub/%SUBDIR%/ \ - ftp://ftp.de.postgresql.org/%SUBDIR%/ \ - ftp://ftp.iodynamics.com/pub/mirror/postgresql/%SUBDIR%/ \ - ftp://ftp.digex.net/pub/packages/database/postgresql/%SUBDIR%/ \ - ftp://ftp.sunet.se/pub/unix/databases/relational/postgresql/%SUBDIR%/ -MASTER_SITE_SUBDIR= source/v${PORTVERSION} -DISTFILES= ${PORTNAME}-${PORTVERSION}.base${EXTRACT_SUFX} \ - ${PORTNAME}-${PORTVERSION}.support${EXTRACT_SUFX} \ - ${PORTNAME}-${PORTVERSION}.docs${EXTRACT_SUFX} -# ${PORTNAME}-${PORTVERSION}.test${EXTRACT_SUFX} -DIST_SUBDIR= postgresql - -MAINTAINER= andreas@FreeBSD.org - -.if ${MACHINE_ARCH} == "alpha" -BROKEN= doesn\'t build on the alpha yet -.endif - -Y2K= http://www.postgresql.org/y2k.html - -INSTALLS_SHLIB= YES -LDCONFIG_DIRS= %%PREFIX%%/pgsql/lib - -# if you want to use the tcl/tk frontend pgaccess, then you need to build -# postgresql with tcl support by typing: make -DWITH_TCL -.if defined(WITH_TCL) -TCL_INCDIR= ${LOCALBASE}/include/tcl8.3 -TK_INCDIR= ${LOCALBASE}/include/tk8.3 -MAKE_ENV= TCL_INCDIR=${TCL_INCDIR} -CONFIGURE_ENV= WISH=${LOCALBASE}/bin/wish8.3 -LIB_DEPENDS= tcl83.1:${PORTSDIR}/lang/tcl83 \ - tk83.1:${PORTSDIR}/x11-toolkits/tk83 -CONFIGURE_TCL= --with-tcl --with-tclconfig="${LOCALBASE}/lib/tcl8.3 ${LOCALBASE}/lib/tk8.3" -.endif - -# if you want to disable the multibyte support, type: -# make -DWITHOUT_MULTIBYTE -# -# if you want to set the default encoding for the multibyte support, type: -# make DEFAULT_ENCODING=<encoding> -# where <encoding> is one of these: -# SQL_ASCII LATIN1 LATIN2 LATIN3 LATIN4 LATIN5 -# EUC_JP EUC_CN EUC_KR EUC_TW KOI8 -# UNICODE MULE_INTERNAL WIN ALT -.if defined(WITHOUT_MULTIBYTE) -CONFIGURE_MULTIBYTE= # none -.elif defined(DEFAULT_ENCODING) -CONFIGURE_MULTIBYTE= --enable-multibyte="${DEFAULT_ENCODING}" -.else -CONFIGURE_MULTIBYTE= --enable-multibyte -.endif - -# if you want jdbc, type make -DWITH_JDBC -# Honors JAVA_HOME if you have it set, and don't want the dependency. -.if defined(WITH_JDBC) -JAVA_HOME?= ${LOCALBASE}/jdk1.1.8 -BUILD_DEPENDS= ${JAVA_HOME}/bin/javac:${PORTSDIR}/java/jdk -SCRIPTS_ENV+= JAVA_HOME=${JAVA_HOME} -.endif - -WRKSRC= ${WRKDIR}/${DISTNAME}/src -DOCDIR= ${WRKDIR}/${DISTNAME}/doc - -USE_GMAKE= YES -MAKEFILE= GNUmakefile -HAS_CONFIGURE= YES -CONFIGURE_ARGS= --prefix=${PREFIX}/pgsql \ - --enable-locale \ - --with-template=`uname -s | ${TR} '[A-Z]' '[a-z]'` \ - --with-includes="${PREFIX}/include ${TCL_INCDIR} ${TK_INCDIR}" \ - ${CONFIGURE_TCL} \ - ${CONFIGURE_MULTIBYTE} \ - --with-libraries=${PREFIX}/lib - -MAN1= createdb.1 createlang.1 createuser.1 dropdb.1 droplang.1 \ - dropuser.1 ecpg.1 initdb.1 initlocation.1 ipcclean.1 pg_ctl.1 \ - pg_dump.1 pg_dumpall.1 pg_passwd.1 pg_upgrade.1 pgaccess.1 \ - pgadmin.1 pgtclsh.1 pgtksh.1 postgres.1 postmaster.1 psql.1 \ - vacuumdb.1 -MANL= abort.l alter_group.l alter_table.l alter_user.l \ - begin.l close.l cluster.l comment.l commit.l copy.l \ - create_aggregate.l create_constraint_trigger.l \ - create_database.l create_function.l create_group.l \ - create_index.l create_language.l create_operator.l \ - create_rule.l create_sequence.l create_table.l \ - create_table_as.l create_trigger.l create_type.l \ - create_user.l create_view.l declare.l delete.l \ - drop_aggregate.l drop_database.l drop_function.l \ - drop_group.l drop_index.l drop_language.l \ - drop_operator.l drop_rule.l drop_sequence.l \ - drop_table.l drop_trigger.l drop_type.l drop_user.l \ - drop_view.l end.l explain.l fetch.l grant.l insert.l \ - listen.l load.l lock.l move.l notify.l reindex.l \ - reset.l revoke.l rollback.l select.l select_into.l \ - set.l show.l truncate.l unlisten.l update.l vacuum.l - -MANPREFIX= ${PREFIX}/pgsql - -pre-fetch: - @${ECHO_MSG} "To install and run postgresql you need to compile kernel with:" - @${ECHO_MSG} " options \"SYSVSHM, SYSVSEM, SYSVMSG\"" -.if !defined(WITH_TCL) - @${ECHO_MSG} "To build the \"PostgreSQL to Tcl interface library\", libpgtcl, type:" - @${ECHO_MSG} " make -DWITH_TCL" -.else - @${ECHO_MSG} "Building PostgreSQL with \"libpgtcl\"." -.endif -.if !defined(WITHOUT_MULTIBYTE) - @${ECHO_MSG} "To disable multibyte support, type:" - @${ECHO_MSG} " make -DWITHOUT_MULTIBYTE" -.if !defined(DEFAULT_ENCODING) - @${ECHO_MSG} "To set the default encoding for the multibyte support, type:" - @${ECHO_MSG} " make DEFAULT_ENCODING=<encoding>" - @${ECHO_MSG} "where <encoding> is one of these:" - @${ECHO_MSG} " SQL_ASCII LATIN1 LATIN2 LATIN3 LATIN4 LATIN5" - @${ECHO_MSG} " EUC_JP EUC_CN EUC_KR EUC_TW KOI8" - @${ECHO_MSG} " UNICODE MULE_INTERNAL WIN ALT" -.else - @${ECHO_MSG} "The default encoding is '${DEFAULT_ENCODING}'." -.endif -.else - @${ECHO_MSG} "Building PostgreSQL without multibyte support." -.endif -.if !defined(WITH_JDBC) - @${ECHO_MSG} "To build Java (JDBC) support, type:" - @${ECHO_MSG} " make -DWITH_JDBC" -.else - @${ECHO_MSG} "Building PostgreSQL with \"postgresql.jar\"." -.endif - -post-patch: - @ ${MV} ${WRKSRC}/template/freebsd ${WRKSRC}/template/freebsd.orig - @ ${SED} -e 's#CFLAGS:-O2 -m486 -pipe#CFLAGS:${CFLAGS}#' \ - -e 's#USE_LOCALE:no#USE_LOCALE:yes#' \ - ${WRKSRC}/template/freebsd.orig >> ${WRKSRC}/template/freebsd - @ ${MV} ${WRKSRC}/Makefile.global.in ${WRKSRC}/Makefile.global.in.old - @ ${SED} -e 's=!!PREFIX!!=${PREFIX}=g' \ - ${WRKSRC}/Makefile.global.in.old \ - >> ${WRKSRC}/Makefile.global.in - -post-build: -.if defined(WITH_JDBC) - @ cd ${WRKSRC}/interfaces/jdbc && ${GMAKE} -.if !defined(NOPORTDOCS) - @ cd ${WRKSRC}/interfaces/jdbc && ${GMAKE} examples -.endif -.endif - @ ${ECHO} "------------------------------------------------------------" - @ ${ECHO} "Dump existing databases, before installing new db version !!" - @ ${ECHO} "Detailed instructions, see" - @ ${ECHO} "${WRKDIR}/${DISTNAME}/INSTALL" - @ ${ECHO} "------------------------------------------------------------" - -pre-install: -.if defined(PACKAGE_BUILDING) - ${RM} -rf ${PREFIX}/pgsql -.endif - @ ${MKDIR} ${PREFIX}/pgsql - @ ${SETENV} ${MAKE_ENV} perl ${SCRIPTDIR}/createuser - -post-install: -.if defined(NOPORTDOCS) - @ ( cd ${DOCDIR}; ${GMAKE} man ) -.else - @ ( cd ${DOCDIR}; ${GMAKE} install ) -.endif - @ if [ ! -f ${PREFIX}/pgsql/.profile ]; then \ - ${ECHO} "PATH=${PATH}:${PREFIX}/pgsql/bin" \ - > ${PREFIX}/pgsql/.profile; \ - ${ECHO} "MANPATH=${MANPATH}:${PREFIX}/pgsql/man" \ - >> ${PREFIX}/pgsql/.profile; \ - ${ECHO} "PGLIB=${PREFIX}/pgsql/lib" \ - >> ${PREFIX}/pgsql/.profile; \ - ${ECHO} "# note: PGDATA overwrites the -D startup option" \ - >> ${PREFIX}/pgsql/.profile; \ - ${ECHO} "PGDATA=${PREFIX}/pgsql/data" \ - >> ${PREFIX}/pgsql/.profile; \ - ${ECHO} "DISPLAY=:0" \ - >> ${PREFIX}/pgsql/.profile; \ - ${ECHO} "export PATH MANPATH PGLIB PGDATA DISPLAY" \ - >> ${PREFIX}/pgsql/.profile; \ - ${ECHO} "# if you want to make regression tests use this TZ" \ - >> ${PREFIX}/pgsql/.profile; \ - ${ECHO} "#TZ=PST8PDT" \ - >> ${PREFIX}/pgsql/.profile; \ - ${ECHO} "#export TZ" \ - >> ${PREFIX}/pgsql/.profile; \ - fi - @ ${CHOWN} -R pgsql:pgsql ${PREFIX}/pgsql - @ ${ECHO} 'Initializing PostgreSQL Databases - this may take a few minutes...' - @ ${SETENV} OBJFORMAT=${PORTOBJFORMAT} ${LDCONFIG} -m ${PREFIX}/pgsql/lib - @ su -l pgsql -c 'PATH=${PREFIX}/pgsql/bin:${PATH} LD_LIBRARY_PATH=${PREFIX}/pgsql/lib ${PREFIX}/pgsql/bin/initdb --pglib=${PREFIX}/pgsql/lib --pgdata=${PREFIX}/pgsql/data' - @ ${SED} -e "s=!!PREFIX!!=${PREFIX}=g" < ${FILESDIR}/pgsql.sh.tmpl \ - > ${PREFIX}/etc/rc.d/pgsql.sh - @ ${CHMOD} 554 ${PREFIX}/etc/rc.d/pgsql.sh - @ ${CHOWN} root.pgsql ${PREFIX}/etc/rc.d/pgsql.sh - @ ${INSTALL_DATA} ${FILESDIR}/post-install-notes ${PREFIX}/pgsql -.if defined(WITHOUT_MULTIBYTE) - @${CP} ${TMPPLIST} ${TMPPLIST}.nomulti - @${GREP} -v pgsql/bin/pg_encoding ${TMPPLIST}.nomulti > ${TMPPLIST} -.endif -.if defined(WITH_TCL) - @${CP} ${TMPPLIST} ${TMPPLIST}.notcl - @${CAT} ${PKGDIR}/PLIST.tcl ${TMPPLIST}.notcl > ${TMPPLIST} - @${RM} ${TMPPLIST}.notcl -.endif -.if defined(WITH_JDBC) - @ ${MKDIR} -m 0555 ${PREFIX}/share/java/classes - @ ${INSTALL_DATA} ${WRKSRC}/interfaces/jdbc/postgresql.jar \ - ${PREFIX}/share/java/classes/postgresql.jar - @ ${ECHO_MSG} "---------------------------------------------------------" - @ ${ECHO_MSG} "Putting postgresql.jar in" - @ ${ECHO_MSG} "${PREFIX}/share/java/classes/postgresql.jar" - @ ${ECHO_MSG} "Add this to your CLASSPATH!" - @ ${ECHO_MSG} "ALSO NOTE: path inside jar file modified from 6.5.x:" - @ ${ECHO_MSG} " 'postgresql.*' -> 'org.postgresql.*'!" - @ ${ECHO_MSG} "You will need to modify you applications' props files." - @ ${ECHO_MSG} "---------------------------------------------------------" - @ ${CAT} ${PKGDIR}/PLIST.jdbc >> ${TMPPLIST} -.if !defined(NOPORTDOCS) - @ ${MKDIR} -m 0555 ${PREFIX}/share/examples/pgsql/jdbc - @ ${INSTALL_DATA} ${WRKSRC}/interfaces/jdbc/example/*java \ - ${PREFIX}/share/examples/pgsql/jdbc - @ ${INSTALL_DATA} ${WRKSRC}/interfaces/jdbc/README* \ - ${PREFIX}/share/examples/pgsql/jdbc - @ ${ECHO_MSG} "---------------------------------------------------------" - @ ${ECHO_MSG} "Putting jdbc examples into ${PREFIX}/share/examples/pgsql" - @ ${ECHO_MSG} "---------------------------------------------------------" - @ ${CAT} ${PKGDIR}/PLIST.doc >> ${TMPPLIST} -.endif -.endif -.if !defined(NOPORTDOCS) - ${MKDIR} ${PREFIX}/share/doc/pgsql - @ ${GMAKE} -C ${WRKDIR}/${DISTNAME}/doc install - ${INSTALL_MAN} ${WRKDIR}/${DISTNAME}/doc/FAQ* ${PREFIX}/share/doc/pgsql - ${INSTALL_MAN} ${WRKDIR}/${DISTNAME}/doc/README* ${PREFIX}/share/doc/pgsql - ${INSTALL_MAN} ${WRKDIR}/${DISTNAME}/doc/TODO ${PREFIX}/share/doc/pgsql -# ${INSTALL_MAN} ${WRKDIR}/${DISTNAME}/doc/*ps.gz ${PREFIX}/share/doc/pgsql -.endif -.if !defined(BATCH) - @ more -e ${FILESDIR}/post-install-notes -.endif -.if !defined(DEBUG_FLAGS) -.for file in ecpg pg_dump pg_id pg_passwd pg_version postgres psql - @ strip ${PREFIX}/pgsql/bin/${file} -.endfor -.endif - -.include <bsd.port.mk> diff --git a/databases/postgresql81-server/distinfo b/databases/postgresql81-server/distinfo deleted file mode 100644 index 309ea1e11614..000000000000 --- a/databases/postgresql81-server/distinfo +++ /dev/null @@ -1,4 +0,0 @@ -MD5 (postgresql/postgresql-7.0.2.base.tar.gz) = 871d23b85d9a3599a7ed75dfc7da7ba7 -MD5 (postgresql/postgresql-7.0.2.support.tar.gz) = c21180a6485d85785c8e69f0cbff05dd -MD5 (postgresql/postgresql-7.0.2.docs.tar.gz) = efac1f87463f252e54d72b256885b883 -MD5 (postgresql/postgresql-7.0.2.test.tar.gz) = 3443b3d83194c396f20aee2adc6f93bf diff --git a/databases/postgresql81-server/files/patch-aj b/databases/postgresql81-server/files/patch-aj deleted file mode 100644 index 4231fc94ede9..000000000000 --- a/databases/postgresql81-server/files/patch-aj +++ /dev/null @@ -1,67 +0,0 @@ ---- bin/pg_passwd/pg_passwd.c.orig Mon Apr 17 05:45:18 2000 -+++ bin/pg_passwd/pg_passwd.c Sat May 20 17:54:59 2000 -@@ -18,11 +18,15 @@ - - #endif - -+#ifndef _POSIX_SOURCE -+# define _PASSWORD_LEN 128 /* max length, not containing NULL */ -+#endif -+ - char *comname; - static void usage(FILE *stream); - static void read_pwd_file(char *filename); - static void write_pwd_file(char *filename, char *bkname); --static void encrypt_pwd(char key[9], char salt[3], char passwd[14]); -+static void encrypt_pwd(char key[9], char salt[3], char passwd[_PASSWORD_LEN+1]); - static void prompt_for_username(char *username); - static void prompt_for_password(char *prompt, char *password); - -@@ -150,7 +154,7 @@ - - if (q != NULL) - *(q++) = '\0'; -- if (strlen(p) != 13) -+ if (strlen(p) > _PASSWORD_LEN) - { - fprintf(stderr, "WARNING: %s: line %d: illegal password length.\n", - filename, npwds + 1); -@@ -214,7 +218,7 @@ - } - - static void --encrypt_pwd(char key[9], char salt[3], char passwd[14]) -+encrypt_pwd(char key[9], char salt[3], char passwd[_PASSWORD_LEN+1]) - { - int n; - -@@ -246,9 +250,9 @@ - - #ifdef NOT_USED - static int --check_pwd(char key[9], char passwd[14]) -+check_pwd(char key[9], char passwd[_PASSWORD_LEN+1]) - { -- char shouldbe[14]; -+ char shouldbe[_PASSWORD_LEN+1]; - char salt[3]; - - salt[0] = passwd[0]; -@@ -256,7 +260,7 @@ - salt[2] = '\0'; - encrypt_pwd(key, salt, shouldbe); - -- return strncmp(shouldbe, passwd, 13) == 0 ? 1 : 0; -+ return strncmp(shouldbe, passwd, _PASSWORD_LEN) == 0 ? 1 : 0; - } - - #endif -@@ -332,7 +336,7 @@ - char salt[3]; - char key[9], - key2[9]; -- char e_passwd[14]; -+ char e_passwd[_PASSWORD_LEN+1]; - int i; - - comname = argv[0]; diff --git a/databases/postgresql81-server/files/patch-ar b/databases/postgresql81-server/files/patch-ar deleted file mode 100644 index c5c8096fc141..000000000000 --- a/databases/postgresql81-server/files/patch-ar +++ /dev/null @@ -1,11 +0,0 @@ ---- configure.orig Sun Oct 10 14:37:07 1999 -+++ configure Sun Oct 10 14:37:29 1999 -@@ -1429,7 +1429,7 @@ - ELF_SYS=true - else - rm -rf conftest* -- if test "X$elf" = "Xyes" -+ if test "X$PORTOBJFORMAT" = "Xelf" - then - ELF_SYS=true - else diff --git a/databases/postgresql81-server/files/patch-as b/databases/postgresql81-server/files/patch-as deleted file mode 100644 index 3282168c4aed..000000000000 --- a/databases/postgresql81-server/files/patch-as +++ /dev/null @@ -1,11 +0,0 @@ ---- Makefile.global.in.orig Sun Dec 6 00:08:56 1998 -+++ Makefile.global.in Sat Feb 27 04:23:12 1999 -@@ -79,7 +79,7 @@ - POSTMANDIR= $(POSTGRESDIR)/man - - # Where the formatted documents (e.g., the reference manual) get installed. --POSTDOCDIR= $(POSTGRESDIR)/doc -+POSTDOCDIR= !!PREFIX!!/share/doc/pgsql - - # Where the header files necessary to build frontend programs get installed. - HEADERDIR= $(POSTGRESDIR)/include diff --git a/databases/postgresql81-server/files/patch-at b/databases/postgresql81-server/files/patch-at deleted file mode 100644 index 93e68a708211..000000000000 --- a/databases/postgresql81-server/files/patch-at +++ /dev/null @@ -1,11 +0,0 @@ ---- ../doc/Makefile.orig Sun Nov 29 06:30:13 1998 -+++ ../doc/Makefile Mon Jun 21 17:00:13 1999 -@@ -12,7 +12,7 @@ - # - #---------------------------------------------------------------------------- - --PGDOCS= $(POSTGRESDIR)/doc -+PGDOCS= $(POSTDOCDIR) - SRCDIR= ../src - - TAR= tar diff --git a/databases/postgresql81-server/files/patch-ba b/databases/postgresql81-server/files/patch-ba deleted file mode 100644 index a3b679b882c5..000000000000 --- a/databases/postgresql81-server/files/patch-ba +++ /dev/null @@ -1,25 +0,0 @@ ---- interfaces/jdbc/Makefile.orig Tue Mar 14 16:55:17 2000 -+++ interfaces/jdbc/Makefile Sun Apr 16 21:16:43 2000 -@@ -10,10 +10,10 @@ - - FIND = find - IDL2JAVA = idltojava -fno-cpp -fno-tie --JAR = jar --JAVA = java --JAVAC = javac -g --JAVADOC = javadoc -+JAR = !!JAVA_HOME!!/bin/jar -+JAVA = !!JAVA_HOME!!/bin/java -+JAVAC = !!JAVA_HOME!!/bin/javac -+JAVADOC = !!JAVA_HOME!!/bin/javadoc - RM = rm -f - TOUCH = touch - -@@ -40,6 +40,7 @@ - @echo To compile, type: - @echo " $(MAKE) jdbc2" - @echo ------------------------------------------------------------ -+ $(MAKE) jdbc1 - - msg: - @echo ------------------------------------------------------------ diff --git a/databases/postgresql81-server/files/patch-bb b/databases/postgresql81-server/files/patch-bb deleted file mode 100644 index ea0f1732dcb0..000000000000 --- a/databases/postgresql81-server/files/patch-bb +++ /dev/null @@ -1,13 +0,0 @@ ---- pl/tcl/Makefile~ Sat Apr 29 19:45:42 2000 -+++ pl/tcl/Makefile Sat May 20 22:42:22 2000 -@@ -71,7 +71,9 @@ - CFLAGS+= $(TCL_SHLIB_CFLAGS) $(TCL_DEFS) - - CFLAGS+= -I$(SRCDIR)/include -I$(SRCDIR)/backend $(PGSQL_INCLUDES) -- -+ -+CFLAGS+= -I$(TCL_INCDIR) -+ - # - # Uncomment the following to enable the unknown command lookup - # on the first of all calls to the call handler. See the doc diff --git a/databases/postgresql81-server/files/patch-bc b/databases/postgresql81-server/files/patch-bc deleted file mode 100644 index ff747fb84a2f..000000000000 --- a/databases/postgresql81-server/files/patch-bc +++ /dev/null @@ -1,5 +0,0 @@ ---- bin/pg_ctl/postmaster.opts.default.sample~ Mon Apr 17 05:45:17 2000 -+++ bin/pg_ctl/postmaster.opts.default.sample Tue May 23 02:46:30 2000 -@@ -1 +1 @@ -- -+-i -o "-F" diff --git a/databases/postgresql81-server/files/pgsql.sh.tmpl b/databases/postgresql81-server/files/pgsql.sh.tmpl deleted file mode 100644 index e1673b4850c2..000000000000 --- a/databases/postgresql81-server/files/pgsql.sh.tmpl +++ /dev/null @@ -1,34 +0,0 @@ -#!/bin/sh - -# $FreeBSD$ -# -# For postmaster startup options, edit $PGDATA/postmaster.opts.default -# Preinstalled options are -i -o "-F" - -case $1 in -start) - [ -d !!PREFIX!!/pgsql/lib ] && /sbin/ldconfig -m !!PREFIX!!/pgsql/lib - [ -x !!PREFIX!!/pgsql/bin/pg_ctl ] && { - su -l pgsql -c \ - 'exec !!PREFIX!!/pgsql/bin/pg_ctl -w start > !!PREFIX!!/pgsql/errlog 2>&1' - echo -n ' pgsql' - } - ;; - -stop) - [ -x !!PREFIX!!/pgsql/bin/pg_ctl ] && { - su -l pgsql -c 'exec !!PREFIX!!/pgsql/bin/pg_ctl -w -m fast stop' - } - ;; - -status) - [ -x !!PREFIX!!/pgsql/bin/pg_ctl ] && { - su -l pgsql -c 'exec !!PREFIX!!/pgsql/bin/pg_ctl status' - } - ;; - -*) - echo "usage: `basename $0` {start|stop|status}" >&2 - exit 64 - ;; -esac diff --git a/databases/postgresql81-server/files/post-install-notes b/databases/postgresql81-server/files/post-install-notes deleted file mode 100644 index 289a7651109a..000000000000 --- a/databases/postgresql81-server/files/post-install-notes +++ /dev/null @@ -1,16 +0,0 @@ - -Now that PostgreSQL is installed, you should read the documentation and -implementation guides. These can be found at: - - http://www.PostgreSQL.org/docs - -You may wish to subscribe to the PostgreSQL user-support mailing list. -Send an e-mail to pgsql-questions-request@postgresql.org with the -text "subscribe" in the message body. - -If you built PostgreSQL with TCL support, you can install the port -"pgaccess" to get a TCL/TK based database frontend for database -operations. - -To start PostgreSQL, run the startup script: -$PREFIX/etc/rc.d/pgsql.sh start diff --git a/databases/postgresql81-server/pkg-comment b/databases/postgresql81-server/pkg-comment deleted file mode 100644 index 2125016b133c..000000000000 --- a/databases/postgresql81-server/pkg-comment +++ /dev/null @@ -1 +0,0 @@ -A robust, next generation, object-relational DBMS diff --git a/databases/postgresql81-server/pkg-descr b/databases/postgresql81-server/pkg-descr deleted file mode 100644 index f48a33337e55..000000000000 --- a/databases/postgresql81-server/pkg-descr +++ /dev/null @@ -1,24 +0,0 @@ -PostgreSQL is a robust, next-generation, Object-Relational DBMS (ORDBMS), -derived from the Berkeley Postgres database management system. While -PostgreSQL retains the powerful object-relational data model, rich data types -and easy extensibility of Postgres, it replaces the PostQuel query language -with an extended subset of SQL. - -The original Postgres code was the effort of many graduate students, -undergraduate students, and staff programmers working under the direction of -Professor Michael Stonebraker at the University of California, Berkeley. In -1995, Andrew Yu and Jolly Chen took on the task of converting the DBMS query -language to SQL and created a new database system which came to known as -Postgres95. Many others contributed to the porting, testing, debugging and -enhancement of the Postgres95 code. As the code improved, and 1995 faded into -memory, PostgreSQL was born. - -PostgreSQL development is presently being performed by a team of Internet -developers who are now responsible for all current and future development. The -development team coordinator is Marc G. Fournier (scrappy@PostgreSQL.ORG). -Support is available from the PostgreSQL developer/user community through the -support mailing list (questions@PostgreSQL.ORG). - -PostgreSQL is free and the complete source is available. - -WWW: http://www.postgresql.org diff --git a/databases/postgresql81-server/pkg-install b/databases/postgresql81-server/pkg-install deleted file mode 100644 index 7f3a090fe4b6..000000000000 --- a/databases/postgresql81-server/pkg-install +++ /dev/null @@ -1,44 +0,0 @@ -#! /bin/sh - -# $FreeBSD$ - -PATH=/bin:/usr/sbin - -if [ -z "${DB_DIR}" ]; then - DB_DIR=${PKG_PREFIX}/pgsql/data -fi - -case $2 in -POST-INSTALL) - USER=pgsql - GROUP=${USER} - UID=89 - GID=${UID} - - if pw group show "${GROUP}" 2>/dev/null; then - echo "You already have a group \"${GROUP}\", so I will use it." - else - if pw groupadd ${GROUP} -g ${GID}; then - echo "Added group \"${GROUP}\"." - else - echo "Adding group \"${GROUP}\" failed..." - exit 1 - fi - fi - - if pw user show "${USER}" 2>/dev/null; then - echo "You already have a user \"${USER}\", so I will use it." - else - if pw useradd ${USER} -u ${UID} -g ${GROUP} -h - \ - -d ${DB_DIR} -s /sbin/nologin -c "PostgreSQL Daemon" - then - echo "Added user \"${USER}\"." - else - echo "Adding user \"${USER}\" failed..." - exit 1 - fi - fi - - chown -R ${USER}.${GROUP} ${DB_DIR} - ;; -esac diff --git a/databases/postgresql81-server/pkg-plist b/databases/postgresql81-server/pkg-plist deleted file mode 100644 index 9992da1174ae..000000000000 --- a/databases/postgresql81-server/pkg-plist +++ /dev/null @@ -1,168 +0,0 @@ -etc/rc.d/pgsql.sh -pgsql/.profile -pgsql/bin/createdb -pgsql/bin/createlang -pgsql/bin/createuser -pgsql/bin/dropdb -pgsql/bin/droplang -pgsql/bin/dropuser -pgsql/bin/ecpg -pgsql/bin/initdb -pgsql/bin/initlocation -pgsql/bin/ipcclean -pgsql/bin/pg_ctl -pgsql/bin/pg_dump -pgsql/bin/pg_dumpall -pgsql/bin/pg_encoding -pgsql/bin/pg_id -pgsql/bin/pg_passwd -pgsql/bin/pg_upgrade -pgsql/bin/pg_version -pgsql/bin/postgres -pgsql/bin/postmaster -pgsql/bin/psql -pgsql/bin/vacuumdb -pgsql/data/PG_VERSION -pgsql/data/base/template1/PG_VERSION -pgsql/data/base/template1/pg_aggregate -pgsql/data/base/template1/pg_aggregate_name_type_index -pgsql/data/base/template1/pg_am -pgsql/data/base/template1/pg_am_name_index -pgsql/data/base/template1/pg_amop -pgsql/data/base/template1/pg_amop_opid_index -pgsql/data/base/template1/pg_amop_strategy_index -pgsql/data/base/template1/pg_amproc -pgsql/data/base/template1/pg_attrdef -pgsql/data/base/template1/pg_attrdef_adrelid_index -pgsql/data/base/template1/pg_attribute -pgsql/data/base/template1/pg_attribute_relid_attnam_index -pgsql/data/base/template1/pg_attribute_relid_attnum_index -pgsql/data/base/template1/pg_class -pgsql/data/base/template1/pg_class_oid_index -pgsql/data/base/template1/pg_class_relname_index -pgsql/data/base/template1/pg_description -pgsql/data/base/template1/pg_description_objoid_index -pgsql/data/base/template1/pg_index -pgsql/data/base/template1/pg_index_indexrelid_index -pgsql/data/base/template1/pg_indexes -pgsql/data/base/template1/pg_inheritproc -pgsql/data/base/template1/pg_inherits -pgsql/data/base/template1/pg_inherits_relid_seqno_index -pgsql/data/base/template1/pg_ipl -pgsql/data/base/template1/pg_language -pgsql/data/base/template1/pg_language_name_index -pgsql/data/base/template1/pg_language_oid_index -pgsql/data/base/template1/pg_listener -pgsql/data/base/template1/pg_listener_relname_pid_index -pgsql/data/base/template1/pg_opclass -pgsql/data/base/template1/pg_opclass_deftype_index -pgsql/data/base/template1/pg_opclass_name_index -pgsql/data/base/template1/pg_operator -pgsql/data/base/template1/pg_operator_oid_index -pgsql/data/base/template1/pg_operator_oprname_l_r_k_index -pgsql/data/base/template1/pg_proc -pgsql/data/base/template1/pg_proc_oid_index -pgsql/data/base/template1/pg_proc_proname_narg_type_index -pgsql/data/base/template1/pg_relcheck -pgsql/data/base/template1/pg_relcheck_rcrelid_index -pgsql/data/base/template1/pg_rewrite -pgsql/data/base/template1/pg_rewrite_oid_index -pgsql/data/base/template1/pg_rewrite_rulename_index -pgsql/data/base/template1/pg_rules -pgsql/data/base/template1/pg_statistic -pgsql/data/base/template1/pg_statistic_relid_att_index -pgsql/data/base/template1/pg_tables -pgsql/data/base/template1/pg_trigger -pgsql/data/base/template1/pg_trigger_tgconstrname_index -pgsql/data/base/template1/pg_trigger_tgconstrrelid_index -pgsql/data/base/template1/pg_trigger_tgrelid_index -pgsql/data/base/template1/pg_type -pgsql/data/base/template1/pg_type_oid_index -pgsql/data/base/template1/pg_type_typname_index -pgsql/data/base/template1/pg_user -pgsql/data/base/template1/pg_views -pgsql/data/pg_control -pgsql/data/pg_database -pgsql/data/pg_geqo.sample -pgsql/data/pg_group -pgsql/data/pg_group_name_index -pgsql/data/pg_group_sysid_index -pgsql/data/pg_hba.conf -pgsql/data/pg_log -pgsql/data/pg_shadow -pgsql/data/pg_variable -pgsql/data/postmaster.opts.default -pgsql/include/access/attnum.h -pgsql/include/c.h -pgsql/include/commands/trigger.h -pgsql/include/config.h -pgsql/include/ecpgerrno.h -pgsql/include/ecpglib.h -pgsql/include/ecpgtype.h -pgsql/include/executor/spi.h -pgsql/include/fmgr.h -pgsql/include/lib/dllist.h -pgsql/include/libpgeasy.h -pgsql/include/libpq/libpq-fs.h -pgsql/include/libpq/pqcomm.h -pgsql/include/libpq++/pgconnection.h -pgsql/include/libpq++/pgcursordb.h -pgsql/include/libpq++/pgdatabase.h -pgsql/include/libpq++/pglobject.h -pgsql/include/libpq++/pgtransdb.h -pgsql/include/libpq++.h -pgsql/include/libpq-fe.h -pgsql/include/libpq-int.h -pgsql/include/os.h -pgsql/include/postgres.h -pgsql/include/postgres_ext.h -pgsql/include/pqexpbuffer.h -pgsql/include/sql3types.h -pgsql/include/sqlca.h -pgsql/include/utils/elog.h -pgsql/include/utils/geo_decls.h -pgsql/include/utils/mcxt.h -pgsql/include/utils/palloc.h -pgsql/lib/global1.bki.source -pgsql/lib/global1.description -pgsql/lib/libecpg.a -pgsql/lib/libecpg.so -pgsql/lib/libecpg.so.3 -pgsql/lib/libpgeasy.a -pgsql/lib/libpgeasy.so -pgsql/lib/libpgeasy.so.2 -pgsql/lib/libpq++.a -pgsql/lib/libpq++.so -pgsql/lib/libpq++.so.3 -pgsql/lib/libpq.a -pgsql/lib/libpq.so -pgsql/lib/libpq.so.2 -pgsql/lib/local1_template1.bki.source -pgsql/lib/local1_template1.description -pgsql/lib/pg_geqo.sample -pgsql/lib/pg_hba.conf.sample -pgsql/lib/pg_ident.conf.sample -pgsql/lib/pg_options.sample -pgsql/lib/plpgsql.so -pgsql/lib/postmaster.opts.default.sample -pgsql/post-install-notes -@dirrm pgsql/bin -@dirrm pgsql/data/base/template1 -@dirrm pgsql/data/base -@dirrm pgsql/data/pg_xlog -@dirrm pgsql/data -@dirrm pgsql/include/access -@dirrm pgsql/include/commands -@dirrm pgsql/include/executor -@dirrm pgsql/include/lib -@dirrm pgsql/include/libpq -@dirrm pgsql/include/libpq++ -@dirrm pgsql/include/port/freebsd -@dirrm pgsql/include/port -@dirrm pgsql/include/utils -@dirrm pgsql/include -@dirrm pgsql/lib -@dirrm pgsql/man/man1 -@dirrm pgsql/man/manl -@dirrm pgsql/man -@dirrm pgsql diff --git a/databases/postgresql81-server/pkg-plist.doc b/databases/postgresql81-server/pkg-plist.doc deleted file mode 100644 index 06b7bd9ea116..000000000000 --- a/databases/postgresql81-server/pkg-plist.doc +++ /dev/null @@ -1,888 +0,0 @@ -share/doc/pgsql/FAQ -share/doc/pgsql/FAQ_AIX -share/doc/pgsql/FAQ_BSDI -share/doc/pgsql/FAQ_DEV -share/doc/pgsql/FAQ_DigitalUnix -share/doc/pgsql/FAQ_FreeBSD -share/doc/pgsql/FAQ_HPUX -share/doc/pgsql/FAQ_Irix -share/doc/pgsql/FAQ_Linux -share/doc/pgsql/FAQ_QNX4 -share/doc/pgsql/FAQ_SCO -share/doc/pgsql/FAQ_Solaris -share/doc/pgsql/README.Charsets -share/doc/pgsql/README.NT -share/doc/pgsql/README.fsync -share/doc/pgsql/README.inet -share/doc/pgsql/README.locale -share/doc/pgsql/README.mb -share/doc/pgsql/README.mb.jp -share/doc/pgsql/TODO -share/doc/pgsql/admin/admin.htm -share/doc/pgsql/admin/admin.html -share/doc/pgsql/admin/biblio.htm -share/doc/pgsql/admin/c573.htm -share/doc/pgsql/admin/c573602.htm -share/doc/pgsql/admin/c573680.htm -share/doc/pgsql/admin/c573717.htm -share/doc/pgsql/admin/copyright.htm -share/doc/pgsql/admin/disk.htm -share/doc/pgsql/admin/index.html -share/doc/pgsql/admin/install-win32.htm -share/doc/pgsql/admin/install-win321073.htm -share/doc/pgsql/admin/install-win321082.htm -share/doc/pgsql/admin/install.htm -share/doc/pgsql/admin/install855.htm -share/doc/pgsql/admin/intro-ag.htm -share/doc/pgsql/admin/intro-ag162.htm -share/doc/pgsql/admin/layout.gif -share/doc/pgsql/admin/layout.htm -share/doc/pgsql/admin/manage-ag.htm -share/doc/pgsql/admin/manage-ag1604.htm -share/doc/pgsql/admin/manage-ag1646.htm -share/doc/pgsql/admin/manage-ag1655.htm -share/doc/pgsql/admin/newuser.htm -share/doc/pgsql/admin/notation.htm -share/doc/pgsql/admin/pg-options.htm -share/doc/pgsql/admin/ports.htm -share/doc/pgsql/admin/ports481.htm -share/doc/pgsql/admin/postmaster.htm -share/doc/pgsql/admin/preface.htm -share/doc/pgsql/admin/recovery.htm -share/doc/pgsql/admin/regress.htm -share/doc/pgsql/admin/regress1861.htm -share/doc/pgsql/admin/regress1895.htm -share/doc/pgsql/admin/regress1941.htm -share/doc/pgsql/admin/release.htm -share/doc/pgsql/admin/release2009.htm -share/doc/pgsql/admin/release2020.htm -share/doc/pgsql/admin/release2031.htm -share/doc/pgsql/admin/release2042.htm -share/doc/pgsql/admin/release2124.htm -share/doc/pgsql/admin/release2135.htm -share/doc/pgsql/admin/release2146.htm -share/doc/pgsql/admin/release2187.htm -share/doc/pgsql/admin/release2203.htm -share/doc/pgsql/admin/release2222.htm -share/doc/pgsql/admin/release2266.htm -share/doc/pgsql/admin/release2288.htm -share/doc/pgsql/admin/release2303.htm -share/doc/pgsql/admin/release2312.htm -share/doc/pgsql/admin/release2335.htm -share/doc/pgsql/admin/release2349.htm -share/doc/pgsql/admin/release2352.htm -share/doc/pgsql/admin/release2377.htm -share/doc/pgsql/admin/release2414.htm -share/doc/pgsql/admin/release2421.htm -share/doc/pgsql/admin/release2428.htm -share/doc/pgsql/admin/release2435.htm -share/doc/pgsql/admin/release2439.htm -share/doc/pgsql/admin/runtime.htm -share/doc/pgsql/admin/security.htm -share/doc/pgsql/admin/security1450.htm -share/doc/pgsql/admin/security1485.htm -share/doc/pgsql/admin/security1509.htm -share/doc/pgsql/admin/security1530.htm -share/doc/pgsql/admin/terminology.htm -share/doc/pgsql/admin/trouble.htm -share/doc/pgsql/admin/trouble1721.htm -share/doc/pgsql/admin/trouble1738.htm -share/doc/pgsql/admin/y2k.htm -share/doc/pgsql/postgres/about.htm -share/doc/pgsql/postgres/advanced.htm -share/doc/pgsql/postgres/advanced27923.htm -share/doc/pgsql/postgres/advanced27945.htm -share/doc/pgsql/postgres/app-createdb.htm -share/doc/pgsql/postgres/app-createlang.htm -share/doc/pgsql/postgres/app-createuser.htm -share/doc/pgsql/postgres/app-dropdb.htm -share/doc/pgsql/postgres/app-droplang.htm -share/doc/pgsql/postgres/app-dropuser.htm -share/doc/pgsql/postgres/app-ecpg.htm -share/doc/pgsql/postgres/app-initdb.htm -share/doc/pgsql/postgres/app-initlocation.htm -share/doc/pgsql/postgres/app-ipcclean.htm -share/doc/pgsql/postgres/app-pg-passwd.htm -share/doc/pgsql/postgres/app-pg-upgrade.htm -share/doc/pgsql/postgres/app-pgaccess.htm -share/doc/pgsql/postgres/app-pgadmin.htm -share/doc/pgsql/postgres/app-pgctl.htm -share/doc/pgsql/postgres/app-pgdump.htm -share/doc/pgsql/postgres/app-pgdumpall.htm -share/doc/pgsql/postgres/app-pgtclsh.htm -share/doc/pgsql/postgres/app-pgtksh.htm -share/doc/pgsql/postgres/app-postgres.htm -share/doc/pgsql/postgres/app-postmaster.htm -share/doc/pgsql/postgres/app-psql.htm -share/doc/pgsql/postgres/app-vacuumdb.htm -share/doc/pgsql/postgres/applications.htm -share/doc/pgsql/postgres/arch-pg.htm -share/doc/pgsql/postgres/arch.htm -share/doc/pgsql/postgres/arrays.htm -share/doc/pgsql/postgres/biblio.htm -share/doc/pgsql/postgres/bki.htm -share/doc/pgsql/postgres/bki26573.htm -share/doc/pgsql/postgres/bki26657.htm -share/doc/pgsql/postgres/bki26681.htm -share/doc/pgsql/postgres/bki26742.htm -share/doc/pgsql/postgres/c16883.htm -share/doc/pgsql/postgres/c1688316912.htm -share/doc/pgsql/postgres/c1688316990.htm -share/doc/pgsql/postgres/c1688317027.htm -share/doc/pgsql/postgres/c19986.htm -share/doc/pgsql/postgres/c21722.htm -share/doc/pgsql/postgres/c2172221764.htm -share/doc/pgsql/postgres/c2172221782.htm -share/doc/pgsql/postgres/c2172221924.htm -share/doc/pgsql/postgres/c2172221936.htm -share/doc/pgsql/postgres/c2172221956.htm -share/doc/pgsql/postgres/c2172221961.htm -share/doc/pgsql/postgres/c25129.htm -share/doc/pgsql/postgres/c4091.htm -share/doc/pgsql/postgres/c40914117.htm -share/doc/pgsql/postgres/c40914344.htm -share/doc/pgsql/postgres/c4362.htm -share/doc/pgsql/postgres/c43624375.htm -share/doc/pgsql/postgres/c4888.htm -share/doc/pgsql/postgres/c4933.htm -share/doc/pgsql/postgres/c49334943.htm -share/doc/pgsql/postgres/c49334947.htm -share/doc/pgsql/postgres/catalogs.gif -share/doc/pgsql/postgres/clientserver.gif -share/doc/pgsql/postgres/compiler.htm -share/doc/pgsql/postgres/connections.gif -share/doc/pgsql/postgres/copyright.htm -share/doc/pgsql/postgres/cvs.htm -share/doc/pgsql/postgres/cvs28436.htm -share/doc/pgsql/postgres/cvs28492.htm -share/doc/pgsql/postgres/datatype.htm -share/doc/pgsql/postgres/datatype1038.htm -share/doc/pgsql/postgres/datatype1070.htm -share/doc/pgsql/postgres/datatype1134.htm -share/doc/pgsql/postgres/datatype1649.htm -share/doc/pgsql/postgres/datatype1681.htm -share/doc/pgsql/postgres/datatype1920.htm -share/doc/pgsql/postgres/datetime-appendix.htm -share/doc/pgsql/postgres/datetime-appendix28356.htm -share/doc/pgsql/postgres/dfunc.htm -share/doc/pgsql/postgres/dfunc20136.htm -share/doc/pgsql/postgres/dfunc20146.htm -share/doc/pgsql/postgres/disk.htm -share/doc/pgsql/postgres/docguide.htm -share/doc/pgsql/postgres/docguide28718.htm -share/doc/pgsql/postgres/docguide28749.htm -share/doc/pgsql/postgres/docguide28840.htm -share/doc/pgsql/postgres/docguide28861.htm -share/doc/pgsql/postgres/docguide28887.htm -share/doc/pgsql/postgres/docguide29024.htm -share/doc/pgsql/postgres/docguide29362.htm -share/doc/pgsql/postgres/environ.htm -share/doc/pgsql/postgres/extend.htm -share/doc/pgsql/postgres/extend18852.htm -share/doc/pgsql/postgres/extend18864.htm -share/doc/pgsql/postgres/func-ref.htm -share/doc/pgsql/postgres/functions.htm -share/doc/pgsql/postgres/functions2593.htm -share/doc/pgsql/postgres/functions2733.htm -share/doc/pgsql/postgres/functions2876.htm -share/doc/pgsql/postgres/functions2976.htm -share/doc/pgsql/postgres/functions3443.htm -share/doc/pgsql/postgres/functions3641.htm -share/doc/pgsql/postgres/geqo-biblio.htm -share/doc/pgsql/postgres/geqo.htm -share/doc/pgsql/postgres/geqo25594.htm -share/doc/pgsql/postgres/geqo25617.htm -share/doc/pgsql/postgres/geqo25655.htm -share/doc/pgsql/postgres/gist.htm -share/doc/pgsql/postgres/index.html -share/doc/pgsql/postgres/indices.htm -share/doc/pgsql/postgres/inherit.htm -share/doc/pgsql/postgres/install-win32.htm -share/doc/pgsql/postgres/install-win3217383.htm -share/doc/pgsql/postgres/install-win3217392.htm -share/doc/pgsql/postgres/install.htm -share/doc/pgsql/postgres/install17165.htm -share/doc/pgsql/postgres/intro.htm -share/doc/pgsql/postgres/intro176.htm -share/doc/pgsql/postgres/intro304.htm -share/doc/pgsql/postgres/intro60.htm -share/doc/pgsql/postgres/jdbc.htm -share/doc/pgsql/postgres/jdbc24909.htm -share/doc/pgsql/postgres/jdbc24921.htm -share/doc/pgsql/postgres/jdbc24927.htm -share/doc/pgsql/postgres/jdbc24935.htm -share/doc/pgsql/postgres/jdbc24953.htm -share/doc/pgsql/postgres/jdbc24990.htm -share/doc/pgsql/postgres/jdbc25021.htm -share/doc/pgsql/postgres/jdbc25026.htm -share/doc/pgsql/postgres/jdbc25030.htm -share/doc/pgsql/postgres/jdbc25056.htm -share/doc/pgsql/postgres/jdbc25086.htm -share/doc/pgsql/postgres/largeobjects.htm -share/doc/pgsql/postgres/largeobjects21625.htm -share/doc/pgsql/postgres/largeobjects21628.htm -share/doc/pgsql/postgres/largeobjects21707.htm -share/doc/pgsql/postgres/largeobjects21714.htm -share/doc/pgsql/postgres/largeobjects21718.htm -share/doc/pgsql/postgres/layout.gif -share/doc/pgsql/postgres/layout.htm -share/doc/pgsql/postgres/libpq-chapter.htm -share/doc/pgsql/postgres/libpq-chapter22422.htm -share/doc/pgsql/postgres/libpq-chapter22577.htm -share/doc/pgsql/postgres/libpq-chapter22724.htm -share/doc/pgsql/postgres/libpq-chapter22736.htm -share/doc/pgsql/postgres/libpq-chapter22774.htm -share/doc/pgsql/postgres/libpq-chapter22844.htm -share/doc/pgsql/postgres/libpq-chapter22857.htm -share/doc/pgsql/postgres/libpq-chapter22942.htm -share/doc/pgsql/postgres/libpq-envars.htm -share/doc/pgsql/postgres/libpq-threading.htm -share/doc/pgsql/postgres/libpqplusplus.htm -share/doc/pgsql/postgres/libpqplusplus23034.htm -share/doc/pgsql/postgres/libpqplusplus23044.htm -share/doc/pgsql/postgres/libpqplusplus23074.htm -share/doc/pgsql/postgres/libpqplusplus23179.htm -share/doc/pgsql/postgres/libpqplusplus23202.htm -share/doc/pgsql/postgres/lisp.htm -share/doc/pgsql/postgres/manage-ag.htm -share/doc/pgsql/postgres/manage-ag17914.htm -share/doc/pgsql/postgres/manage-ag17956.htm -share/doc/pgsql/postgres/manage-ag17965.htm -share/doc/pgsql/postgres/manage.htm -share/doc/pgsql/postgres/manage4814.htm -share/doc/pgsql/postgres/manage4838.htm -share/doc/pgsql/postgres/manage4880.htm -share/doc/pgsql/postgres/mvcc.htm -share/doc/pgsql/postgres/mvcc4568.htm -share/doc/pgsql/postgres/mvcc4621.htm -share/doc/pgsql/postgres/mvcc4633.htm -share/doc/pgsql/postgres/mvcc4646.htm -share/doc/pgsql/postgres/mvcc4723.htm -share/doc/pgsql/postgres/mvcc4744.htm -share/doc/pgsql/postgres/newuser.htm -share/doc/pgsql/postgres/notation.htm -share/doc/pgsql/postgres/odbc.htm -share/doc/pgsql/postgres/odbc24433.htm -share/doc/pgsql/postgres/odbc24471.htm -share/doc/pgsql/postgres/odbc24644.htm -share/doc/pgsql/postgres/odbc24666.htm -share/doc/pgsql/postgres/operators.htm -share/doc/pgsql/postgres/operators2127.htm -share/doc/pgsql/postgres/operators2198.htm -share/doc/pgsql/postgres/operators2267.htm -share/doc/pgsql/postgres/operators2377.htm -share/doc/pgsql/postgres/operators2436.htm -share/doc/pgsql/postgres/operators2490.htm -share/doc/pgsql/postgres/overview.htm -share/doc/pgsql/postgres/overview25194.htm -share/doc/pgsql/postgres/overview25219.htm -share/doc/pgsql/postgres/overview25347.htm -share/doc/pgsql/postgres/overview25403.htm -share/doc/pgsql/postgres/overview25457.htm -share/doc/pgsql/postgres/page.htm -share/doc/pgsql/postgres/page26805.htm -share/doc/pgsql/postgres/page26819.htm -share/doc/pgsql/postgres/part-admin.htm -share/doc/pgsql/postgres/part-appendix.htm -share/doc/pgsql/postgres/part-developer.htm -share/doc/pgsql/postgres/part-interfaces.htm -share/doc/pgsql/postgres/part-programmer.htm -share/doc/pgsql/postgres/part-tutorial.htm -share/doc/pgsql/postgres/part-user.htm -share/doc/pgsql/postgres/partial-index.htm -share/doc/pgsql/postgres/pg-options-dev.htm -share/doc/pgsql/postgres/pg-options.htm -share/doc/pgsql/postgres/pgeasy-chapter.htm -share/doc/pgsql/postgres/pgtcl-pgconndefaults.htm -share/doc/pgsql/postgres/pgtcl-pgconnect.htm -share/doc/pgsql/postgres/pgtcl-pgdisconnect.htm -share/doc/pgsql/postgres/pgtcl-pgexec.htm -share/doc/pgsql/postgres/pgtcl-pglisten.htm -share/doc/pgsql/postgres/pgtcl-pgloclose.htm -share/doc/pgsql/postgres/pgtcl-pglocreat.htm -share/doc/pgsql/postgres/pgtcl-pgloexport.htm -share/doc/pgsql/postgres/pgtcl-pgloimport.htm -share/doc/pgsql/postgres/pgtcl-pglolseek.htm -share/doc/pgsql/postgres/pgtcl-pgloopen.htm -share/doc/pgsql/postgres/pgtcl-pgloread.htm -share/doc/pgsql/postgres/pgtcl-pglotell.htm -share/doc/pgsql/postgres/pgtcl-pglounlink.htm -share/doc/pgsql/postgres/pgtcl-pglowrite.htm -share/doc/pgsql/postgres/pgtcl-pgresult.htm -share/doc/pgsql/postgres/pgtcl-pgselect.htm -share/doc/pgsql/postgres/pgtcl.htm -share/doc/pgsql/postgres/pgtcl23317.htm -share/doc/pgsql/postgres/pgtcl23321.htm -share/doc/pgsql/postgres/pl-perl.htm -share/doc/pgsql/postgres/pl-perl4533.htm -share/doc/pgsql/postgres/pl-perl4542.htm -share/doc/pgsql/postgres/ports.htm -share/doc/pgsql/postgres/ports16791.htm -share/doc/pgsql/postgres/postgres.htm -share/doc/pgsql/postgres/postgres.html -share/doc/pgsql/postgres/postmaster.htm -share/doc/pgsql/postgres/preface.htm -share/doc/pgsql/postgres/protocol.htm -share/doc/pgsql/postgres/protocol25770.htm -share/doc/pgsql/postgres/protocol25925.htm -share/doc/pgsql/postgres/protocol25962.htm -share/doc/pgsql/postgres/query.htm -share/doc/pgsql/postgres/query27752.htm -share/doc/pgsql/postgres/query27768.htm -share/doc/pgsql/postgres/query27790.htm -share/doc/pgsql/postgres/query27799.htm -share/doc/pgsql/postgres/query27817.htm -share/doc/pgsql/postgres/query27825.htm -share/doc/pgsql/postgres/query27844.htm -share/doc/pgsql/postgres/query27849.htm -share/doc/pgsql/postgres/query27856.htm -share/doc/pgsql/postgres/recovery.htm -share/doc/pgsql/postgres/regress.htm -share/doc/pgsql/postgres/regress18171.htm -share/doc/pgsql/postgres/regress18205.htm -share/doc/pgsql/postgres/regress18251.htm -share/doc/pgsql/postgres/release.htm -share/doc/pgsql/postgres/release18319.htm -share/doc/pgsql/postgres/release18330.htm -share/doc/pgsql/postgres/release18341.htm -share/doc/pgsql/postgres/release18352.htm -share/doc/pgsql/postgres/release18434.htm -share/doc/pgsql/postgres/release18445.htm -share/doc/pgsql/postgres/release18456.htm -share/doc/pgsql/postgres/release18497.htm -share/doc/pgsql/postgres/release18513.htm -share/doc/pgsql/postgres/release18532.htm -share/doc/pgsql/postgres/release18576.htm -share/doc/pgsql/postgres/release18598.htm -share/doc/pgsql/postgres/release18613.htm -share/doc/pgsql/postgres/release18622.htm -share/doc/pgsql/postgres/release18645.htm -share/doc/pgsql/postgres/release18659.htm -share/doc/pgsql/postgres/release18662.htm -share/doc/pgsql/postgres/release18687.htm -share/doc/pgsql/postgres/release18724.htm -share/doc/pgsql/postgres/release18731.htm -share/doc/pgsql/postgres/release18738.htm -share/doc/pgsql/postgres/release18745.htm -share/doc/pgsql/postgres/release18749.htm -share/doc/pgsql/postgres/rules.htm -share/doc/pgsql/postgres/rules19478.htm -share/doc/pgsql/postgres/rules19639.htm -share/doc/pgsql/postgres/rules19770.htm -share/doc/pgsql/postgres/rules19784.htm -share/doc/pgsql/postgres/runtime.htm -share/doc/pgsql/postgres/security.htm -share/doc/pgsql/postgres/security17760.htm -share/doc/pgsql/postgres/security17795.htm -share/doc/pgsql/postgres/security17819.htm -share/doc/pgsql/postgres/security17840.htm -share/doc/pgsql/postgres/signals.htm -share/doc/pgsql/postgres/spi-spiconnect.htm -share/doc/pgsql/postgres/spi-spicopytuple.htm -share/doc/pgsql/postgres/spi-spiexec.htm -share/doc/pgsql/postgres/spi-spiexecp.htm -share/doc/pgsql/postgres/spi-spifinish.htm -share/doc/pgsql/postgres/spi-spifname.htm -share/doc/pgsql/postgres/spi-spifnumber.htm -share/doc/pgsql/postgres/spi-spigetbinval.htm -share/doc/pgsql/postgres/spi-spigetrelname.htm -share/doc/pgsql/postgres/spi-spigettype.htm -share/doc/pgsql/postgres/spi-spigettypeid.htm -share/doc/pgsql/postgres/spi-spigetvalue.htm -share/doc/pgsql/postgres/spi-spimodifytuple.htm -share/doc/pgsql/postgres/spi-spipalloc.htm -share/doc/pgsql/postgres/spi-spipfree.htm -share/doc/pgsql/postgres/spi-spiprepare.htm -share/doc/pgsql/postgres/spi-spirepalloc.htm -share/doc/pgsql/postgres/spi-spisaveplan.htm -share/doc/pgsql/postgres/spi.htm -share/doc/pgsql/postgres/spi20808.htm -share/doc/pgsql/postgres/spi21521.htm -share/doc/pgsql/postgres/spi21543.htm -share/doc/pgsql/postgres/spi21548.htm -share/doc/pgsql/postgres/sql-abort.htm -share/doc/pgsql/postgres/sql-altergroup.htm -share/doc/pgsql/postgres/sql-altertable.htm -share/doc/pgsql/postgres/sql-alteruser.htm -share/doc/pgsql/postgres/sql-begin.htm -share/doc/pgsql/postgres/sql-close.htm -share/doc/pgsql/postgres/sql-cluster.htm -share/doc/pgsql/postgres/sql-commands.htm -share/doc/pgsql/postgres/sql-comment.htm -share/doc/pgsql/postgres/sql-commit.htm -share/doc/pgsql/postgres/sql-copy.htm -share/doc/pgsql/postgres/sql-createaggregate.htm -share/doc/pgsql/postgres/sql-createconstraint.htm -share/doc/pgsql/postgres/sql-createdatabase.htm -share/doc/pgsql/postgres/sql-createfunction.htm -share/doc/pgsql/postgres/sql-creategroup.htm -share/doc/pgsql/postgres/sql-createindex.htm -share/doc/pgsql/postgres/sql-createlanguage.htm -share/doc/pgsql/postgres/sql-createoperator.htm -share/doc/pgsql/postgres/sql-createrule.htm -share/doc/pgsql/postgres/sql-createsequence.htm -share/doc/pgsql/postgres/sql-createtable.htm -share/doc/pgsql/postgres/sql-createtableas.htm -share/doc/pgsql/postgres/sql-createtrigger.htm -share/doc/pgsql/postgres/sql-createtype.htm -share/doc/pgsql/postgres/sql-createuser.htm -share/doc/pgsql/postgres/sql-createview.htm -share/doc/pgsql/postgres/sql-declare.htm -share/doc/pgsql/postgres/sql-delete.htm -share/doc/pgsql/postgres/sql-dropaggregate.htm -share/doc/pgsql/postgres/sql-dropdatabase.htm -share/doc/pgsql/postgres/sql-dropfunction.htm -share/doc/pgsql/postgres/sql-dropgroup.htm -share/doc/pgsql/postgres/sql-dropindex.htm -share/doc/pgsql/postgres/sql-droplanguage.htm -share/doc/pgsql/postgres/sql-dropoperator.htm -share/doc/pgsql/postgres/sql-droprule.htm -share/doc/pgsql/postgres/sql-dropsequence.htm -share/doc/pgsql/postgres/sql-droptable.htm -share/doc/pgsql/postgres/sql-droptrigger.htm -share/doc/pgsql/postgres/sql-droptype.htm -share/doc/pgsql/postgres/sql-dropuser.htm -share/doc/pgsql/postgres/sql-dropview.htm -share/doc/pgsql/postgres/sql-end.htm -share/doc/pgsql/postgres/sql-explain.htm -share/doc/pgsql/postgres/sql-fetch.htm -share/doc/pgsql/postgres/sql-grant.htm -share/doc/pgsql/postgres/sql-insert.htm -share/doc/pgsql/postgres/sql-language.htm -share/doc/pgsql/postgres/sql-listen.htm -share/doc/pgsql/postgres/sql-load.htm -share/doc/pgsql/postgres/sql-lock.htm -share/doc/pgsql/postgres/sql-move.htm -share/doc/pgsql/postgres/sql-notify.htm -share/doc/pgsql/postgres/sql-reindex.htm -share/doc/pgsql/postgres/sql-reset.htm -share/doc/pgsql/postgres/sql-revoke.htm -share/doc/pgsql/postgres/sql-rollback.htm -share/doc/pgsql/postgres/sql-select.htm -share/doc/pgsql/postgres/sql-selectinto.htm -share/doc/pgsql/postgres/sql-set.htm -share/doc/pgsql/postgres/sql-show.htm -share/doc/pgsql/postgres/sql-truncate.htm -share/doc/pgsql/postgres/sql-unlisten.htm -share/doc/pgsql/postgres/sql-update.htm -share/doc/pgsql/postgres/sql-vacuum.htm -share/doc/pgsql/postgres/sql.htm -share/doc/pgsql/postgres/sql26902.htm -share/doc/pgsql/postgres/sql27020.htm -share/doc/pgsql/postgres/start.htm -share/doc/pgsql/postgres/start27628.htm -share/doc/pgsql/postgres/start27650.htm -share/doc/pgsql/postgres/storage.htm -share/doc/pgsql/postgres/syntax.htm -share/doc/pgsql/postgres/syntax519.htm -share/doc/pgsql/postgres/syntax525.htm -share/doc/pgsql/postgres/syntax543.htm -share/doc/pgsql/postgres/syntax608.htm -share/doc/pgsql/postgres/syntax653.htm -share/doc/pgsql/postgres/syntax658.htm -share/doc/pgsql/postgres/terminology.htm -share/doc/pgsql/postgres/triggers.htm -share/doc/pgsql/postgres/triggers20224.htm -share/doc/pgsql/postgres/triggers20281.htm -share/doc/pgsql/postgres/triggers20290.htm -share/doc/pgsql/postgres/trouble.htm -share/doc/pgsql/postgres/trouble18031.htm -share/doc/pgsql/postgres/trouble18048.htm -share/doc/pgsql/postgres/typeconv.htm -share/doc/pgsql/postgres/typeconv3759.htm -share/doc/pgsql/postgres/typeconv3822.htm -share/doc/pgsql/postgres/typeconv3875.htm -share/doc/pgsql/postgres/typeconv3895.htm -share/doc/pgsql/postgres/utilities.htm -share/doc/pgsql/postgres/xaggr.htm -share/doc/pgsql/postgres/xfunc.htm -share/doc/pgsql/postgres/xfunc19011.htm -share/doc/pgsql/postgres/xfunc19017.htm -share/doc/pgsql/postgres/xfunc19022.htm -share/doc/pgsql/postgres/xfunc19254.htm -share/doc/pgsql/postgres/xindex.htm -share/doc/pgsql/postgres/xoper.htm -share/doc/pgsql/postgres/xplang.htm -share/doc/pgsql/postgres/xtypes.htm -share/doc/pgsql/postgres/y2k.htm -share/doc/pgsql/programmer/arch-pg.htm -share/doc/pgsql/programmer/biblio.htm -share/doc/pgsql/programmer/bki.htm -share/doc/pgsql/programmer/bki8058.htm -share/doc/pgsql/programmer/bki8142.htm -share/doc/pgsql/programmer/bki8166.htm -share/doc/pgsql/programmer/bki8227.htm -share/doc/pgsql/programmer/c1486.htm -share/doc/pgsql/programmer/c5391.htm -share/doc/pgsql/programmer/c53915433.htm -share/doc/pgsql/programmer/c53915451.htm -share/doc/pgsql/programmer/c53915593.htm -share/doc/pgsql/programmer/c53915605.htm -share/doc/pgsql/programmer/c53915625.htm -share/doc/pgsql/programmer/c53915630.htm -share/doc/pgsql/programmer/c6614.htm -share/doc/pgsql/programmer/catalogs.gif -share/doc/pgsql/programmer/compiler.htm -share/doc/pgsql/programmer/connections.gif -share/doc/pgsql/programmer/copyright.htm -share/doc/pgsql/programmer/cvs.htm -share/doc/pgsql/programmer/cvs8365.htm -share/doc/pgsql/programmer/cvs8421.htm -share/doc/pgsql/programmer/dfunc.htm -share/doc/pgsql/programmer/dfunc1679.htm -share/doc/pgsql/programmer/dfunc1689.htm -share/doc/pgsql/programmer/docguide.htm -share/doc/pgsql/programmer/docguide8647.htm -share/doc/pgsql/programmer/docguide8678.htm -share/doc/pgsql/programmer/docguide8769.htm -share/doc/pgsql/programmer/docguide8790.htm -share/doc/pgsql/programmer/docguide8816.htm -share/doc/pgsql/programmer/docguide8953.htm -share/doc/pgsql/programmer/docguide9291.htm -share/doc/pgsql/programmer/extend.htm -share/doc/pgsql/programmer/extend352.htm -share/doc/pgsql/programmer/extend364.htm -share/doc/pgsql/programmer/geqo-biblio.htm -share/doc/pgsql/programmer/geqo.htm -share/doc/pgsql/programmer/geqo7079.htm -share/doc/pgsql/programmer/geqo7102.htm -share/doc/pgsql/programmer/geqo7140.htm -share/doc/pgsql/programmer/gist.htm -share/doc/pgsql/programmer/index.html -share/doc/pgsql/programmer/intro-pg.htm -share/doc/pgsql/programmer/intro-pg167.htm -share/doc/pgsql/programmer/jdbc.htm -share/doc/pgsql/programmer/jdbc6398.htm -share/doc/pgsql/programmer/jdbc6410.htm -share/doc/pgsql/programmer/jdbc6416.htm -share/doc/pgsql/programmer/jdbc6424.htm -share/doc/pgsql/programmer/jdbc6442.htm -share/doc/pgsql/programmer/jdbc6479.htm -share/doc/pgsql/programmer/jdbc6510.htm -share/doc/pgsql/programmer/jdbc6515.htm -share/doc/pgsql/programmer/jdbc6519.htm -share/doc/pgsql/programmer/jdbc6545.htm -share/doc/pgsql/programmer/jdbc6575.htm -share/doc/pgsql/programmer/largeobjects.htm -share/doc/pgsql/programmer/largeobjects3114.htm -share/doc/pgsql/programmer/largeobjects3117.htm -share/doc/pgsql/programmer/largeobjects3196.htm -share/doc/pgsql/programmer/largeobjects3203.htm -share/doc/pgsql/programmer/largeobjects3207.htm -share/doc/pgsql/programmer/libpq-chapter.htm -share/doc/pgsql/programmer/libpq-chapter3419.htm -share/doc/pgsql/programmer/libpq-chapter3574.htm -share/doc/pgsql/programmer/libpq-chapter3721.htm -share/doc/pgsql/programmer/libpq-chapter3733.htm -share/doc/pgsql/programmer/libpq-chapter3771.htm -share/doc/pgsql/programmer/libpq-chapter3841.htm -share/doc/pgsql/programmer/libpq-chapter3854.htm -share/doc/pgsql/programmer/libpq-chapter3939.htm -share/doc/pgsql/programmer/libpq-envars.htm -share/doc/pgsql/programmer/libpq-threading.htm -share/doc/pgsql/programmer/libpqplusplus.htm -share/doc/pgsql/programmer/libpqplusplus4031.htm -share/doc/pgsql/programmer/libpqplusplus4041.htm -share/doc/pgsql/programmer/libpqplusplus4071.htm -share/doc/pgsql/programmer/libpqplusplus4176.htm -share/doc/pgsql/programmer/libpqplusplus4199.htm -share/doc/pgsql/programmer/lisp.htm -share/doc/pgsql/programmer/notation.htm -share/doc/pgsql/programmer/odbc.htm -share/doc/pgsql/programmer/odbc5922.htm -share/doc/pgsql/programmer/odbc5960.htm -share/doc/pgsql/programmer/odbc6133.htm -share/doc/pgsql/programmer/odbc6155.htm -share/doc/pgsql/programmer/overview.htm -share/doc/pgsql/programmer/overview6679.htm -share/doc/pgsql/programmer/overview6704.htm -share/doc/pgsql/programmer/overview6832.htm -share/doc/pgsql/programmer/overview6888.htm -share/doc/pgsql/programmer/overview6942.htm -share/doc/pgsql/programmer/page.htm -share/doc/pgsql/programmer/page8290.htm -share/doc/pgsql/programmer/page8304.htm -share/doc/pgsql/programmer/pg-options-dev.htm -share/doc/pgsql/programmer/pgeasy-chapter.htm -share/doc/pgsql/programmer/pgtcl-pgconndefaults.htm -share/doc/pgsql/programmer/pgtcl-pgconnect.htm -share/doc/pgsql/programmer/pgtcl-pgdisconnect.htm -share/doc/pgsql/programmer/pgtcl-pgexec.htm -share/doc/pgsql/programmer/pgtcl-pglisten.htm -share/doc/pgsql/programmer/pgtcl-pgloclose.htm -share/doc/pgsql/programmer/pgtcl-pglocreat.htm -share/doc/pgsql/programmer/pgtcl-pgloexport.htm -share/doc/pgsql/programmer/pgtcl-pgloimport.htm -share/doc/pgsql/programmer/pgtcl-pglolseek.htm -share/doc/pgsql/programmer/pgtcl-pgloopen.htm -share/doc/pgsql/programmer/pgtcl-pgloread.htm -share/doc/pgsql/programmer/pgtcl-pglotell.htm -share/doc/pgsql/programmer/pgtcl-pglounlink.htm -share/doc/pgsql/programmer/pgtcl-pglowrite.htm -share/doc/pgsql/programmer/pgtcl-pgresult.htm -share/doc/pgsql/programmer/pgtcl-pgselect.htm -share/doc/pgsql/programmer/pgtcl.htm -share/doc/pgsql/programmer/pgtcl4314.htm -share/doc/pgsql/programmer/pgtcl4318.htm -share/doc/pgsql/programmer/preface.htm -share/doc/pgsql/programmer/programmer.htm -share/doc/pgsql/programmer/programmer.html -share/doc/pgsql/programmer/protocol.htm -share/doc/pgsql/programmer/protocol7255.htm -share/doc/pgsql/programmer/protocol7410.htm -share/doc/pgsql/programmer/protocol7447.htm -share/doc/pgsql/programmer/rules.htm -share/doc/pgsql/programmer/rules1139.htm -share/doc/pgsql/programmer/rules1270.htm -share/doc/pgsql/programmer/rules1284.htm -share/doc/pgsql/programmer/rules978.htm -share/doc/pgsql/programmer/signals.htm -share/doc/pgsql/programmer/spi-spiconnect.htm -share/doc/pgsql/programmer/spi-spicopytuple.htm -share/doc/pgsql/programmer/spi-spiexec.htm -share/doc/pgsql/programmer/spi-spiexecp.htm -share/doc/pgsql/programmer/spi-spifinish.htm -share/doc/pgsql/programmer/spi-spifname.htm -share/doc/pgsql/programmer/spi-spifnumber.htm -share/doc/pgsql/programmer/spi-spigetbinval.htm -share/doc/pgsql/programmer/spi-spigetrelname.htm -share/doc/pgsql/programmer/spi-spigettype.htm -share/doc/pgsql/programmer/spi-spigettypeid.htm -share/doc/pgsql/programmer/spi-spigetvalue.htm -share/doc/pgsql/programmer/spi-spimodifytuple.htm -share/doc/pgsql/programmer/spi-spipalloc.htm -share/doc/pgsql/programmer/spi-spipfree.htm -share/doc/pgsql/programmer/spi-spiprepare.htm -share/doc/pgsql/programmer/spi-spirepalloc.htm -share/doc/pgsql/programmer/spi-spisaveplan.htm -share/doc/pgsql/programmer/spi.htm -share/doc/pgsql/programmer/spi2351.htm -share/doc/pgsql/programmer/spi3064.htm -share/doc/pgsql/programmer/spi3086.htm -share/doc/pgsql/programmer/spi3091.htm -share/doc/pgsql/programmer/terminology.htm -share/doc/pgsql/programmer/triggers.htm -share/doc/pgsql/programmer/triggers1767.htm -share/doc/pgsql/programmer/triggers1824.htm -share/doc/pgsql/programmer/triggers1833.htm -share/doc/pgsql/programmer/xaggr.htm -share/doc/pgsql/programmer/xfunc.htm -share/doc/pgsql/programmer/xfunc511.htm -share/doc/pgsql/programmer/xfunc517.htm -share/doc/pgsql/programmer/xfunc522.htm -share/doc/pgsql/programmer/xfunc754.htm -share/doc/pgsql/programmer/xindex.htm -share/doc/pgsql/programmer/xoper.htm -share/doc/pgsql/programmer/xplang.htm -share/doc/pgsql/programmer/xtypes.htm -share/doc/pgsql/programmer/y2k.htm -share/doc/pgsql/tutorial/about.htm -share/doc/pgsql/tutorial/advanced.htm -share/doc/pgsql/tutorial/advanced1511.htm -share/doc/pgsql/tutorial/advanced1533.htm -share/doc/pgsql/tutorial/arch.htm -share/doc/pgsql/tutorial/biblio.htm -share/doc/pgsql/tutorial/clientserver.gif -share/doc/pgsql/tutorial/copyright.htm -share/doc/pgsql/tutorial/f17.htm -share/doc/pgsql/tutorial/index.html -share/doc/pgsql/tutorial/intro.htm -share/doc/pgsql/tutorial/intro172.htm -share/doc/pgsql/tutorial/intro300.htm -share/doc/pgsql/tutorial/intro56.htm -share/doc/pgsql/tutorial/notation.htm -share/doc/pgsql/tutorial/query.htm -share/doc/pgsql/tutorial/query1340.htm -share/doc/pgsql/tutorial/query1356.htm -share/doc/pgsql/tutorial/query1378.htm -share/doc/pgsql/tutorial/query1387.htm -share/doc/pgsql/tutorial/query1405.htm -share/doc/pgsql/tutorial/query1413.htm -share/doc/pgsql/tutorial/query1432.htm -share/doc/pgsql/tutorial/query1437.htm -share/doc/pgsql/tutorial/query1444.htm -share/doc/pgsql/tutorial/sql-language.htm -share/doc/pgsql/tutorial/sql.htm -share/doc/pgsql/tutorial/sql490.htm -share/doc/pgsql/tutorial/sql608.htm -share/doc/pgsql/tutorial/start.htm -share/doc/pgsql/tutorial/start1216.htm -share/doc/pgsql/tutorial/start1238.htm -share/doc/pgsql/tutorial/terminology.htm -share/doc/pgsql/tutorial/tutorial.htm -share/doc/pgsql/tutorial/tutorial.html -share/doc/pgsql/tutorial/y2k.htm -share/doc/pgsql/user/about.htm -share/doc/pgsql/user/app-createdb.htm -share/doc/pgsql/user/app-createlang.htm -share/doc/pgsql/user/app-createuser.htm -share/doc/pgsql/user/app-dropdb.htm -share/doc/pgsql/user/app-droplang.htm -share/doc/pgsql/user/app-dropuser.htm -share/doc/pgsql/user/app-ecpg.htm -share/doc/pgsql/user/app-initdb.htm -share/doc/pgsql/user/app-initlocation.htm -share/doc/pgsql/user/app-ipcclean.htm -share/doc/pgsql/user/app-pg-passwd.htm -share/doc/pgsql/user/app-pg-upgrade.htm -share/doc/pgsql/user/app-pgaccess.htm -share/doc/pgsql/user/app-pgadmin.htm -share/doc/pgsql/user/app-pgctl.htm -share/doc/pgsql/user/app-pgdump.htm -share/doc/pgsql/user/app-pgdumpall.htm -share/doc/pgsql/user/app-pgtclsh.htm -share/doc/pgsql/user/app-pgtksh.htm -share/doc/pgsql/user/app-postgres.htm -share/doc/pgsql/user/app-postmaster.htm -share/doc/pgsql/user/app-psql.htm -share/doc/pgsql/user/app-vacuumdb.htm -share/doc/pgsql/user/applications.htm -share/doc/pgsql/user/arrays.htm -share/doc/pgsql/user/biblio.htm -share/doc/pgsql/user/c4087.htm -share/doc/pgsql/user/c40874113.htm -share/doc/pgsql/user/c40874340.htm -share/doc/pgsql/user/c4358.htm -share/doc/pgsql/user/c43584371.htm -share/doc/pgsql/user/c4884.htm -share/doc/pgsql/user/c4929.htm -share/doc/pgsql/user/c49294939.htm -share/doc/pgsql/user/c49294943.htm -share/doc/pgsql/user/copyright.htm -share/doc/pgsql/user/datatype.htm -share/doc/pgsql/user/datatype1034.htm -share/doc/pgsql/user/datatype1066.htm -share/doc/pgsql/user/datatype1130.htm -share/doc/pgsql/user/datatype1645.htm -share/doc/pgsql/user/datatype1677.htm -share/doc/pgsql/user/datatype1916.htm -share/doc/pgsql/user/datetime-appendix.htm -share/doc/pgsql/user/datetime-appendix16981.htm -share/doc/pgsql/user/environ.htm -share/doc/pgsql/user/functions.htm -share/doc/pgsql/user/functions2589.htm -share/doc/pgsql/user/functions2729.htm -share/doc/pgsql/user/functions2872.htm -share/doc/pgsql/user/functions2972.htm -share/doc/pgsql/user/functions3439.htm -share/doc/pgsql/user/functions3637.htm -share/doc/pgsql/user/index.html -share/doc/pgsql/user/indices.htm -share/doc/pgsql/user/inherit.htm -share/doc/pgsql/user/intro.htm -share/doc/pgsql/user/intro172.htm -share/doc/pgsql/user/intro300.htm -share/doc/pgsql/user/intro56.htm -share/doc/pgsql/user/manage.htm -share/doc/pgsql/user/manage4810.htm -share/doc/pgsql/user/manage4834.htm -share/doc/pgsql/user/manage4876.htm -share/doc/pgsql/user/mvcc.htm -share/doc/pgsql/user/mvcc4564.htm -share/doc/pgsql/user/mvcc4617.htm -share/doc/pgsql/user/mvcc4629.htm -share/doc/pgsql/user/mvcc4642.htm -share/doc/pgsql/user/mvcc4719.htm -share/doc/pgsql/user/mvcc4740.htm -share/doc/pgsql/user/notation.htm -share/doc/pgsql/user/operators.htm -share/doc/pgsql/user/operators2123.htm -share/doc/pgsql/user/operators2194.htm -share/doc/pgsql/user/operators2263.htm -share/doc/pgsql/user/operators2373.htm -share/doc/pgsql/user/operators2432.htm -share/doc/pgsql/user/operators2486.htm -share/doc/pgsql/user/partial-index.htm -share/doc/pgsql/user/pl-perl.htm -share/doc/pgsql/user/pl-perl4529.htm -share/doc/pgsql/user/pl-perl4538.htm -share/doc/pgsql/user/preface.htm -share/doc/pgsql/user/sql-abort.htm -share/doc/pgsql/user/sql-altergroup.htm -share/doc/pgsql/user/sql-altertable.htm -share/doc/pgsql/user/sql-alteruser.htm -share/doc/pgsql/user/sql-begin.htm -share/doc/pgsql/user/sql-close.htm -share/doc/pgsql/user/sql-cluster.htm -share/doc/pgsql/user/sql-commands.htm -share/doc/pgsql/user/sql-comment.htm -share/doc/pgsql/user/sql-commit.htm -share/doc/pgsql/user/sql-copy.htm -share/doc/pgsql/user/sql-createaggregate.htm -share/doc/pgsql/user/sql-createconstraint.htm -share/doc/pgsql/user/sql-createdatabase.htm -share/doc/pgsql/user/sql-createfunction.htm -share/doc/pgsql/user/sql-creategroup.htm -share/doc/pgsql/user/sql-createindex.htm -share/doc/pgsql/user/sql-createlanguage.htm -share/doc/pgsql/user/sql-createoperator.htm -share/doc/pgsql/user/sql-createrule.htm -share/doc/pgsql/user/sql-createsequence.htm -share/doc/pgsql/user/sql-createtable.htm -share/doc/pgsql/user/sql-createtableas.htm -share/doc/pgsql/user/sql-createtrigger.htm -share/doc/pgsql/user/sql-createtype.htm -share/doc/pgsql/user/sql-createuser.htm -share/doc/pgsql/user/sql-createview.htm -share/doc/pgsql/user/sql-declare.htm -share/doc/pgsql/user/sql-delete.htm -share/doc/pgsql/user/sql-dropaggregate.htm -share/doc/pgsql/user/sql-dropdatabase.htm -share/doc/pgsql/user/sql-dropfunction.htm -share/doc/pgsql/user/sql-dropgroup.htm -share/doc/pgsql/user/sql-dropindex.htm -share/doc/pgsql/user/sql-droplanguage.htm -share/doc/pgsql/user/sql-dropoperator.htm -share/doc/pgsql/user/sql-droprule.htm -share/doc/pgsql/user/sql-dropsequence.htm -share/doc/pgsql/user/sql-droptable.htm -share/doc/pgsql/user/sql-droptrigger.htm -share/doc/pgsql/user/sql-droptype.htm -share/doc/pgsql/user/sql-dropuser.htm -share/doc/pgsql/user/sql-dropview.htm -share/doc/pgsql/user/sql-end.htm -share/doc/pgsql/user/sql-explain.htm -share/doc/pgsql/user/sql-fetch.htm -share/doc/pgsql/user/sql-grant.htm -share/doc/pgsql/user/sql-insert.htm -share/doc/pgsql/user/sql-listen.htm -share/doc/pgsql/user/sql-load.htm -share/doc/pgsql/user/sql-lock.htm -share/doc/pgsql/user/sql-move.htm -share/doc/pgsql/user/sql-notify.htm -share/doc/pgsql/user/sql-reindex.htm -share/doc/pgsql/user/sql-reset.htm -share/doc/pgsql/user/sql-revoke.htm -share/doc/pgsql/user/sql-rollback.htm -share/doc/pgsql/user/sql-select.htm -share/doc/pgsql/user/sql-selectinto.htm -share/doc/pgsql/user/sql-set.htm -share/doc/pgsql/user/sql-show.htm -share/doc/pgsql/user/sql-truncate.htm -share/doc/pgsql/user/sql-unlisten.htm -share/doc/pgsql/user/sql-update.htm -share/doc/pgsql/user/sql-vacuum.htm -share/doc/pgsql/user/storage.htm -share/doc/pgsql/user/syntax.htm -share/doc/pgsql/user/syntax515.htm -share/doc/pgsql/user/syntax521.htm -share/doc/pgsql/user/syntax539.htm -share/doc/pgsql/user/syntax604.htm -share/doc/pgsql/user/syntax649.htm -share/doc/pgsql/user/syntax654.htm -share/doc/pgsql/user/terminology.htm -share/doc/pgsql/user/typeconv.htm -share/doc/pgsql/user/typeconv3755.htm -share/doc/pgsql/user/typeconv3818.htm -share/doc/pgsql/user/typeconv3871.htm -share/doc/pgsql/user/typeconv3891.htm -share/doc/pgsql/user/user.htm -share/doc/pgsql/user/user.html -share/doc/pgsql/user/utilities.htm -share/doc/pgsql/user/y2k.htm -@dirrm share/doc/pgsql/admin -@dirrm share/doc/pgsql/postgres -@dirrm share/doc/pgsql/programmer -@dirrm share/doc/pgsql/tutorial -@dirrm share/doc/pgsql/user -@dirrm share/doc/pgsql diff --git a/databases/postgresql81-server/pkg-plist.jdbc b/databases/postgresql81-server/pkg-plist.jdbc deleted file mode 100644 index bef5d75506b4..000000000000 --- a/databases/postgresql81-server/pkg-plist.jdbc +++ /dev/null @@ -1,13 +0,0 @@ -share/examples/pgsql/jdbc/ImageViewer.java -share/examples/pgsql/jdbc/basic.java -share/examples/pgsql/jdbc/blobtest.java -share/examples/pgsql/jdbc/datestyle.java -share/examples/pgsql/jdbc/metadata.java -share/examples/pgsql/jdbc/psql.java -share/examples/pgsql/jdbc/threadsafe.java -share/examples/pgsql/jdbc/README -share/examples/pgsql/jdbc/README_6.3 -@dirrm share/examples/pgsql/jdbc -@dirrm share/examples/pgsql -share/java/classes/postgresql.jar -@unexec rmdir %D/share/java 2>/dev/null || true diff --git a/databases/postgresql81-server/pkg-plist.tcl b/databases/postgresql81-server/pkg-plist.tcl deleted file mode 100644 index b01eaf1571ed..000000000000 --- a/databases/postgresql81-server/pkg-plist.tcl +++ /dev/null @@ -1,141 +0,0 @@ -pgsql/bin/pgaccess -pgsql/bin/pgtclsh -pgsql/bin/pgtksh -pgsql/include/libpgtcl.h -pgsql/lib/libpgtcl.a -pgsql/lib/libpgtcl.so -pgsql/lib/libpgtcl.so.2 -pgsql/lib/pltcl.so -pgsql/pgaccess/images/icon_button.gif -pgsql/pgaccess/images/icon_checkbutton.gif -pgsql/pgaccess/images/icon_entry.gif -pgsql/pgaccess/images/icon_frame.gif -pgsql/pgaccess/images/icon_label.gif -pgsql/pgaccess/images/icon_listbox.gif -pgsql/pgaccess/images/icon_query.gif -pgsql/pgaccess/images/icon_radiobutton.gif -pgsql/pgaccess/images/icon_text.gif -pgsql/pgaccess/lib/database.tcl -pgsql/pgaccess/lib/forms.tcl -pgsql/pgaccess/lib/functions.tcl -pgsql/pgaccess/lib/help/abort.hlp -pgsql/pgaccess/lib/help/add_records.hlp -pgsql/pgaccess/lib/help/alter_table.hlp -pgsql/pgaccess/lib/help/alter_user.hlp -pgsql/pgaccess/lib/help/author.hlp -pgsql/pgaccess/lib/help/begin.hlp -pgsql/pgaccess/lib/help/close.hlp -pgsql/pgaccess/lib/help/cluster.hlp -pgsql/pgaccess/lib/help/commit.hlp -pgsql/pgaccess/lib/help/copy.hlp -pgsql/pgaccess/lib/help/copyrights.hlp -pgsql/pgaccess/lib/help/create_aggregate.hlp -pgsql/pgaccess/lib/help/create_database.hlp -pgsql/pgaccess/lib/help/create_function.hlp -pgsql/pgaccess/lib/help/create_index.hlp -pgsql/pgaccess/lib/help/create_language.hlp -pgsql/pgaccess/lib/help/create_operator.hlp -pgsql/pgaccess/lib/help/create_rule.hlp -pgsql/pgaccess/lib/help/create_sequence.hlp -pgsql/pgaccess/lib/help/create_table.hlp -pgsql/pgaccess/lib/help/create_table_as.hlp -pgsql/pgaccess/lib/help/create_trigger.hlp -pgsql/pgaccess/lib/help/create_type.hlp -pgsql/pgaccess/lib/help/create_user.hlp -pgsql/pgaccess/lib/help/create_view.hlp -pgsql/pgaccess/lib/help/data_types.hlp -pgsql/pgaccess/lib/help/datefunc.hlp -pgsql/pgaccess/lib/help/declare.hlp -pgsql/pgaccess/lib/help/delete.hlp -pgsql/pgaccess/lib/help/drop_aggregate.hlp -pgsql/pgaccess/lib/help/drop_database.hlp -pgsql/pgaccess/lib/help/drop_function.hlp -pgsql/pgaccess/lib/help/drop_index.hlp -pgsql/pgaccess/lib/help/drop_language.hlp -pgsql/pgaccess/lib/help/drop_operator.hlp -pgsql/pgaccess/lib/help/drop_rule.hlp -pgsql/pgaccess/lib/help/drop_sequence.hlp -pgsql/pgaccess/lib/help/drop_table.hlp -pgsql/pgaccess/lib/help/drop_trigger.hlp -pgsql/pgaccess/lib/help/drop_type.hlp -pgsql/pgaccess/lib/help/drop_user.hlp -pgsql/pgaccess/lib/help/drop_view.hlp -pgsql/pgaccess/lib/help/explain.hlp -pgsql/pgaccess/lib/help/fetch.hlp -pgsql/pgaccess/lib/help/form_design.hlp -pgsql/pgaccess/lib/help/forms.hlp -pgsql/pgaccess/lib/help/functions.hlp -pgsql/pgaccess/lib/help/geomfunc.hlp -pgsql/pgaccess/lib/help/grant.hlp -pgsql/pgaccess/lib/help/history.hlp -pgsql/pgaccess/lib/help/index.hlp -pgsql/pgaccess/lib/help/inheritance.hlp -pgsql/pgaccess/lib/help/insert.hlp -pgsql/pgaccess/lib/help/ipv4func.hlp -pgsql/pgaccess/lib/help/isolation.hlp -pgsql/pgaccess/lib/help/keywords.hlp -pgsql/pgaccess/lib/help/listen.hlp -pgsql/pgaccess/lib/help/load.hlp -pgsql/pgaccess/lib/help/lock.hlp -pgsql/pgaccess/lib/help/mathfunc.hlp -pgsql/pgaccess/lib/help/move.hlp -pgsql/pgaccess/lib/help/mvcc.hlp -pgsql/pgaccess/lib/help/new_query.hlp -pgsql/pgaccess/lib/help/new_table.hlp -pgsql/pgaccess/lib/help/notify.hlp -pgsql/pgaccess/lib/help/open_query.hlp -pgsql/pgaccess/lib/help/open_table.hlp -pgsql/pgaccess/lib/help/pgfunctions.hlp -pgsql/pgaccess/lib/help/postgresql.hlp -pgsql/pgaccess/lib/help/queries.hlp -pgsql/pgaccess/lib/help/reports.hlp -pgsql/pgaccess/lib/help/reset.hlp -pgsql/pgaccess/lib/help/revoke.hlp -pgsql/pgaccess/lib/help/rollback.hlp -pgsql/pgaccess/lib/help/schema.hlp -pgsql/pgaccess/lib/help/scripts.hlp -pgsql/pgaccess/lib/help/select.hlp -pgsql/pgaccess/lib/help/select_into.hlp -pgsql/pgaccess/lib/help/sequences.hlp -pgsql/pgaccess/lib/help/set.hlp -pgsql/pgaccess/lib/help/show.hlp -pgsql/pgaccess/lib/help/sql_guide.hlp -pgsql/pgaccess/lib/help/sqlfunc.hlp -pgsql/pgaccess/lib/help/stringfunc.hlp -pgsql/pgaccess/lib/help/tables.hlp -pgsql/pgaccess/lib/help/unlisten.hlp -pgsql/pgaccess/lib/help/update.hlp -pgsql/pgaccess/lib/help/users.hlp -pgsql/pgaccess/lib/help/vacuum.hlp -pgsql/pgaccess/lib/help/view_table_structure.hlp -pgsql/pgaccess/lib/help/views.hlp -pgsql/pgaccess/lib/help/visual_designer.hlp -pgsql/pgaccess/lib/help/y2k.hlp -pgsql/pgaccess/lib/help.tcl -pgsql/pgaccess/lib/languages/czech -pgsql/pgaccess/lib/languages/deutsch -pgsql/pgaccess/lib/languages/francais -pgsql/pgaccess/lib/languages/italiano -pgsql/pgaccess/lib/languages/magyar -pgsql/pgaccess/lib/languages/portugues -pgsql/pgaccess/lib/languages/romana -pgsql/pgaccess/lib/languages/russian.koi8r -pgsql/pgaccess/lib/languages/russian_win -pgsql/pgaccess/lib/languages/spanish -pgsql/pgaccess/lib/mainlib.tcl -pgsql/pgaccess/lib/preferences.tcl -pgsql/pgaccess/lib/queries.tcl -pgsql/pgaccess/lib/reports.tcl -pgsql/pgaccess/lib/schema.tcl -pgsql/pgaccess/lib/scripts.tcl -pgsql/pgaccess/lib/sequences.tcl -pgsql/pgaccess/lib/tables.tcl -pgsql/pgaccess/lib/users.tcl -pgsql/pgaccess/lib/views.tcl -pgsql/pgaccess/lib/visualqb.tcl -pgsql/pgaccess/main.tcl -@dirrm pgsql/pgaccess/images -@dirrm pgsql/pgaccess/lib/help -@dirrm pgsql/pgaccess/lib/languages -@dirrm pgsql/pgaccess/lib -@dirrm pgsql/pgaccess diff --git a/databases/postgresql81-server/scripts/configure b/databases/postgresql81-server/scripts/configure deleted file mode 100644 index 4a92ee450ebe..000000000000 --- a/databases/postgresql81-server/scripts/configure +++ /dev/null @@ -1,7 +0,0 @@ -#! /bin/sh - -# $FreeBSD$ - -cd $WRKSRC || exit 1 - -perl -pi -e "s=!!JAVA_HOME!!=${JAVA_HOME}=; s=!!PREFIX!!=${PREFIX}=" ${WRKSRC}/interfaces/jdbc/Makefile diff --git a/databases/postgresql81-server/scripts/createuser b/databases/postgresql81-server/scripts/createuser deleted file mode 100644 index 2abe201e7a4b..000000000000 --- a/databases/postgresql81-server/scripts/createuser +++ /dev/null @@ -1,50 +0,0 @@ -#!/usr/bin/perl -# - -eval '(exit $?0)' && eval 'exec /usr/bin/perl -S $0 ${1+"$@"}' -& eval 'exec /usr/bin/perl -S $0 $argv:q' -if 0; - -if( $> ) { - print "\nYou must be root to run this step!\n\n"; - exit 1; -} - -if( getpwnam( "pgsql" ) ) { - ( $null, $null, $pgUID ) = getpwnam( "pgsql" ); -} else { - $pgUID = 70; - while( getpwuid( $pgUID ) ) { - $pgUID++; - } -} - -if( getgrnam( "pgsql" ) ) { - ( $null, $null, $pgGID ) = getgrnam( "pgsql" ); -} else { - $pgGID = 70; - while( getgrgid( $pgGID ) ) { - $pgGID++; - } - &append_file( "/etc/group", "pgsql:*:$pgGID:" ); -} - -print "pgsql user using uid $pgUID\n"; -print "pgsql user using gid $pgGID\n"; - -system( "/usr/bin/chpass -a \"pgsql:*:$pgUID:$pgGID\:\:0:0:PostgreSQL pseudo-user:$ENV{'PREFIX'}/pgsql:/bin/sh\"" ); - -sub append_file { - local($file,@list) = @_; - local($LOCK_EX) = 2; - local($LOCK_NB) = 4; - local($LOCK_UN) = 8; - - open(F, ">> $file") || die "$file: $!\n"; - while( ! flock( F, $LOCK_EX | $LOCK_NB ) ) { - exit 1; - } - print F join( "\n", @list) . "\n"; - close F; - flock( F, $LOCK_UN ); -} diff --git a/databases/postgresql82-server/Makefile b/databases/postgresql82-server/Makefile deleted file mode 100644 index 94aa22cad135..000000000000 --- a/databases/postgresql82-server/Makefile +++ /dev/null @@ -1,259 +0,0 @@ -# New ports collection makefile for: PostgreSQL -# Date created: November 13, 1998 -# Whom: Marc G. Fournier <scrappy@FreeBSD.org> -# -# $FreeBSD$ -# - -PORTNAME= postgresql -PORTVERSION= 7.0.2 -CATEGORIES= databases -MASTER_SITES= ftp://ftp.postgresql.org/pub/%SUBDIR%/ \ - ftp://ftp.de.postgresql.org/%SUBDIR%/ \ - ftp://ftp.iodynamics.com/pub/mirror/postgresql/%SUBDIR%/ \ - ftp://ftp.digex.net/pub/packages/database/postgresql/%SUBDIR%/ \ - ftp://ftp.sunet.se/pub/unix/databases/relational/postgresql/%SUBDIR%/ -MASTER_SITE_SUBDIR= source/v${PORTVERSION} -DISTFILES= ${PORTNAME}-${PORTVERSION}.base${EXTRACT_SUFX} \ - ${PORTNAME}-${PORTVERSION}.support${EXTRACT_SUFX} \ - ${PORTNAME}-${PORTVERSION}.docs${EXTRACT_SUFX} -# ${PORTNAME}-${PORTVERSION}.test${EXTRACT_SUFX} -DIST_SUBDIR= postgresql - -MAINTAINER= andreas@FreeBSD.org - -.if ${MACHINE_ARCH} == "alpha" -BROKEN= doesn\'t build on the alpha yet -.endif - -Y2K= http://www.postgresql.org/y2k.html - -INSTALLS_SHLIB= YES -LDCONFIG_DIRS= %%PREFIX%%/pgsql/lib - -# if you want to use the tcl/tk frontend pgaccess, then you need to build -# postgresql with tcl support by typing: make -DWITH_TCL -.if defined(WITH_TCL) -TCL_INCDIR= ${LOCALBASE}/include/tcl8.3 -TK_INCDIR= ${LOCALBASE}/include/tk8.3 -MAKE_ENV= TCL_INCDIR=${TCL_INCDIR} -CONFIGURE_ENV= WISH=${LOCALBASE}/bin/wish8.3 -LIB_DEPENDS= tcl83.1:${PORTSDIR}/lang/tcl83 \ - tk83.1:${PORTSDIR}/x11-toolkits/tk83 -CONFIGURE_TCL= --with-tcl --with-tclconfig="${LOCALBASE}/lib/tcl8.3 ${LOCALBASE}/lib/tk8.3" -.endif - -# if you want to disable the multibyte support, type: -# make -DWITHOUT_MULTIBYTE -# -# if you want to set the default encoding for the multibyte support, type: -# make DEFAULT_ENCODING=<encoding> -# where <encoding> is one of these: -# SQL_ASCII LATIN1 LATIN2 LATIN3 LATIN4 LATIN5 -# EUC_JP EUC_CN EUC_KR EUC_TW KOI8 -# UNICODE MULE_INTERNAL WIN ALT -.if defined(WITHOUT_MULTIBYTE) -CONFIGURE_MULTIBYTE= # none -.elif defined(DEFAULT_ENCODING) -CONFIGURE_MULTIBYTE= --enable-multibyte="${DEFAULT_ENCODING}" -.else -CONFIGURE_MULTIBYTE= --enable-multibyte -.endif - -# if you want jdbc, type make -DWITH_JDBC -# Honors JAVA_HOME if you have it set, and don't want the dependency. -.if defined(WITH_JDBC) -JAVA_HOME?= ${LOCALBASE}/jdk1.1.8 -BUILD_DEPENDS= ${JAVA_HOME}/bin/javac:${PORTSDIR}/java/jdk -SCRIPTS_ENV+= JAVA_HOME=${JAVA_HOME} -.endif - -WRKSRC= ${WRKDIR}/${DISTNAME}/src -DOCDIR= ${WRKDIR}/${DISTNAME}/doc - -USE_GMAKE= YES -MAKEFILE= GNUmakefile -HAS_CONFIGURE= YES -CONFIGURE_ARGS= --prefix=${PREFIX}/pgsql \ - --enable-locale \ - --with-template=`uname -s | ${TR} '[A-Z]' '[a-z]'` \ - --with-includes="${PREFIX}/include ${TCL_INCDIR} ${TK_INCDIR}" \ - ${CONFIGURE_TCL} \ - ${CONFIGURE_MULTIBYTE} \ - --with-libraries=${PREFIX}/lib - -MAN1= createdb.1 createlang.1 createuser.1 dropdb.1 droplang.1 \ - dropuser.1 ecpg.1 initdb.1 initlocation.1 ipcclean.1 pg_ctl.1 \ - pg_dump.1 pg_dumpall.1 pg_passwd.1 pg_upgrade.1 pgaccess.1 \ - pgadmin.1 pgtclsh.1 pgtksh.1 postgres.1 postmaster.1 psql.1 \ - vacuumdb.1 -MANL= abort.l alter_group.l alter_table.l alter_user.l \ - begin.l close.l cluster.l comment.l commit.l copy.l \ - create_aggregate.l create_constraint_trigger.l \ - create_database.l create_function.l create_group.l \ - create_index.l create_language.l create_operator.l \ - create_rule.l create_sequence.l create_table.l \ - create_table_as.l create_trigger.l create_type.l \ - create_user.l create_view.l declare.l delete.l \ - drop_aggregate.l drop_database.l drop_function.l \ - drop_group.l drop_index.l drop_language.l \ - drop_operator.l drop_rule.l drop_sequence.l \ - drop_table.l drop_trigger.l drop_type.l drop_user.l \ - drop_view.l end.l explain.l fetch.l grant.l insert.l \ - listen.l load.l lock.l move.l notify.l reindex.l \ - reset.l revoke.l rollback.l select.l select_into.l \ - set.l show.l truncate.l unlisten.l update.l vacuum.l - -MANPREFIX= ${PREFIX}/pgsql - -pre-fetch: - @${ECHO_MSG} "To install and run postgresql you need to compile kernel with:" - @${ECHO_MSG} " options \"SYSVSHM, SYSVSEM, SYSVMSG\"" -.if !defined(WITH_TCL) - @${ECHO_MSG} "To build the \"PostgreSQL to Tcl interface library\", libpgtcl, type:" - @${ECHO_MSG} " make -DWITH_TCL" -.else - @${ECHO_MSG} "Building PostgreSQL with \"libpgtcl\"." -.endif -.if !defined(WITHOUT_MULTIBYTE) - @${ECHO_MSG} "To disable multibyte support, type:" - @${ECHO_MSG} " make -DWITHOUT_MULTIBYTE" -.if !defined(DEFAULT_ENCODING) - @${ECHO_MSG} "To set the default encoding for the multibyte support, type:" - @${ECHO_MSG} " make DEFAULT_ENCODING=<encoding>" - @${ECHO_MSG} "where <encoding> is one of these:" - @${ECHO_MSG} " SQL_ASCII LATIN1 LATIN2 LATIN3 LATIN4 LATIN5" - @${ECHO_MSG} " EUC_JP EUC_CN EUC_KR EUC_TW KOI8" - @${ECHO_MSG} " UNICODE MULE_INTERNAL WIN ALT" -.else - @${ECHO_MSG} "The default encoding is '${DEFAULT_ENCODING}'." -.endif -.else - @${ECHO_MSG} "Building PostgreSQL without multibyte support." -.endif -.if !defined(WITH_JDBC) - @${ECHO_MSG} "To build Java (JDBC) support, type:" - @${ECHO_MSG} " make -DWITH_JDBC" -.else - @${ECHO_MSG} "Building PostgreSQL with \"postgresql.jar\"." -.endif - -post-patch: - @ ${MV} ${WRKSRC}/template/freebsd ${WRKSRC}/template/freebsd.orig - @ ${SED} -e 's#CFLAGS:-O2 -m486 -pipe#CFLAGS:${CFLAGS}#' \ - -e 's#USE_LOCALE:no#USE_LOCALE:yes#' \ - ${WRKSRC}/template/freebsd.orig >> ${WRKSRC}/template/freebsd - @ ${MV} ${WRKSRC}/Makefile.global.in ${WRKSRC}/Makefile.global.in.old - @ ${SED} -e 's=!!PREFIX!!=${PREFIX}=g' \ - ${WRKSRC}/Makefile.global.in.old \ - >> ${WRKSRC}/Makefile.global.in - -post-build: -.if defined(WITH_JDBC) - @ cd ${WRKSRC}/interfaces/jdbc && ${GMAKE} -.if !defined(NOPORTDOCS) - @ cd ${WRKSRC}/interfaces/jdbc && ${GMAKE} examples -.endif -.endif - @ ${ECHO} "------------------------------------------------------------" - @ ${ECHO} "Dump existing databases, before installing new db version !!" - @ ${ECHO} "Detailed instructions, see" - @ ${ECHO} "${WRKDIR}/${DISTNAME}/INSTALL" - @ ${ECHO} "------------------------------------------------------------" - -pre-install: -.if defined(PACKAGE_BUILDING) - ${RM} -rf ${PREFIX}/pgsql -.endif - @ ${MKDIR} ${PREFIX}/pgsql - @ ${SETENV} ${MAKE_ENV} perl ${SCRIPTDIR}/createuser - -post-install: -.if defined(NOPORTDOCS) - @ ( cd ${DOCDIR}; ${GMAKE} man ) -.else - @ ( cd ${DOCDIR}; ${GMAKE} install ) -.endif - @ if [ ! -f ${PREFIX}/pgsql/.profile ]; then \ - ${ECHO} "PATH=${PATH}:${PREFIX}/pgsql/bin" \ - > ${PREFIX}/pgsql/.profile; \ - ${ECHO} "MANPATH=${MANPATH}:${PREFIX}/pgsql/man" \ - >> ${PREFIX}/pgsql/.profile; \ - ${ECHO} "PGLIB=${PREFIX}/pgsql/lib" \ - >> ${PREFIX}/pgsql/.profile; \ - ${ECHO} "# note: PGDATA overwrites the -D startup option" \ - >> ${PREFIX}/pgsql/.profile; \ - ${ECHO} "PGDATA=${PREFIX}/pgsql/data" \ - >> ${PREFIX}/pgsql/.profile; \ - ${ECHO} "DISPLAY=:0" \ - >> ${PREFIX}/pgsql/.profile; \ - ${ECHO} "export PATH MANPATH PGLIB PGDATA DISPLAY" \ - >> ${PREFIX}/pgsql/.profile; \ - ${ECHO} "# if you want to make regression tests use this TZ" \ - >> ${PREFIX}/pgsql/.profile; \ - ${ECHO} "#TZ=PST8PDT" \ - >> ${PREFIX}/pgsql/.profile; \ - ${ECHO} "#export TZ" \ - >> ${PREFIX}/pgsql/.profile; \ - fi - @ ${CHOWN} -R pgsql:pgsql ${PREFIX}/pgsql - @ ${ECHO} 'Initializing PostgreSQL Databases - this may take a few minutes...' - @ ${SETENV} OBJFORMAT=${PORTOBJFORMAT} ${LDCONFIG} -m ${PREFIX}/pgsql/lib - @ su -l pgsql -c 'PATH=${PREFIX}/pgsql/bin:${PATH} LD_LIBRARY_PATH=${PREFIX}/pgsql/lib ${PREFIX}/pgsql/bin/initdb --pglib=${PREFIX}/pgsql/lib --pgdata=${PREFIX}/pgsql/data' - @ ${SED} -e "s=!!PREFIX!!=${PREFIX}=g" < ${FILESDIR}/pgsql.sh.tmpl \ - > ${PREFIX}/etc/rc.d/pgsql.sh - @ ${CHMOD} 554 ${PREFIX}/etc/rc.d/pgsql.sh - @ ${CHOWN} root.pgsql ${PREFIX}/etc/rc.d/pgsql.sh - @ ${INSTALL_DATA} ${FILESDIR}/post-install-notes ${PREFIX}/pgsql -.if defined(WITHOUT_MULTIBYTE) - @${CP} ${TMPPLIST} ${TMPPLIST}.nomulti - @${GREP} -v pgsql/bin/pg_encoding ${TMPPLIST}.nomulti > ${TMPPLIST} -.endif -.if defined(WITH_TCL) - @${CP} ${TMPPLIST} ${TMPPLIST}.notcl - @${CAT} ${PKGDIR}/PLIST.tcl ${TMPPLIST}.notcl > ${TMPPLIST} - @${RM} ${TMPPLIST}.notcl -.endif -.if defined(WITH_JDBC) - @ ${MKDIR} -m 0555 ${PREFIX}/share/java/classes - @ ${INSTALL_DATA} ${WRKSRC}/interfaces/jdbc/postgresql.jar \ - ${PREFIX}/share/java/classes/postgresql.jar - @ ${ECHO_MSG} "---------------------------------------------------------" - @ ${ECHO_MSG} "Putting postgresql.jar in" - @ ${ECHO_MSG} "${PREFIX}/share/java/classes/postgresql.jar" - @ ${ECHO_MSG} "Add this to your CLASSPATH!" - @ ${ECHO_MSG} "ALSO NOTE: path inside jar file modified from 6.5.x:" - @ ${ECHO_MSG} " 'postgresql.*' -> 'org.postgresql.*'!" - @ ${ECHO_MSG} "You will need to modify you applications' props files." - @ ${ECHO_MSG} "---------------------------------------------------------" - @ ${CAT} ${PKGDIR}/PLIST.jdbc >> ${TMPPLIST} -.if !defined(NOPORTDOCS) - @ ${MKDIR} -m 0555 ${PREFIX}/share/examples/pgsql/jdbc - @ ${INSTALL_DATA} ${WRKSRC}/interfaces/jdbc/example/*java \ - ${PREFIX}/share/examples/pgsql/jdbc - @ ${INSTALL_DATA} ${WRKSRC}/interfaces/jdbc/README* \ - ${PREFIX}/share/examples/pgsql/jdbc - @ ${ECHO_MSG} "---------------------------------------------------------" - @ ${ECHO_MSG} "Putting jdbc examples into ${PREFIX}/share/examples/pgsql" - @ ${ECHO_MSG} "---------------------------------------------------------" - @ ${CAT} ${PKGDIR}/PLIST.doc >> ${TMPPLIST} -.endif -.endif -.if !defined(NOPORTDOCS) - ${MKDIR} ${PREFIX}/share/doc/pgsql - @ ${GMAKE} -C ${WRKDIR}/${DISTNAME}/doc install - ${INSTALL_MAN} ${WRKDIR}/${DISTNAME}/doc/FAQ* ${PREFIX}/share/doc/pgsql - ${INSTALL_MAN} ${WRKDIR}/${DISTNAME}/doc/README* ${PREFIX}/share/doc/pgsql - ${INSTALL_MAN} ${WRKDIR}/${DISTNAME}/doc/TODO ${PREFIX}/share/doc/pgsql -# ${INSTALL_MAN} ${WRKDIR}/${DISTNAME}/doc/*ps.gz ${PREFIX}/share/doc/pgsql -.endif -.if !defined(BATCH) - @ more -e ${FILESDIR}/post-install-notes -.endif -.if !defined(DEBUG_FLAGS) -.for file in ecpg pg_dump pg_id pg_passwd pg_version postgres psql - @ strip ${PREFIX}/pgsql/bin/${file} -.endfor -.endif - -.include <bsd.port.mk> diff --git a/databases/postgresql82-server/distinfo b/databases/postgresql82-server/distinfo deleted file mode 100644 index 309ea1e11614..000000000000 --- a/databases/postgresql82-server/distinfo +++ /dev/null @@ -1,4 +0,0 @@ -MD5 (postgresql/postgresql-7.0.2.base.tar.gz) = 871d23b85d9a3599a7ed75dfc7da7ba7 -MD5 (postgresql/postgresql-7.0.2.support.tar.gz) = c21180a6485d85785c8e69f0cbff05dd -MD5 (postgresql/postgresql-7.0.2.docs.tar.gz) = efac1f87463f252e54d72b256885b883 -MD5 (postgresql/postgresql-7.0.2.test.tar.gz) = 3443b3d83194c396f20aee2adc6f93bf diff --git a/databases/postgresql82-server/files/patch-aj b/databases/postgresql82-server/files/patch-aj deleted file mode 100644 index 4231fc94ede9..000000000000 --- a/databases/postgresql82-server/files/patch-aj +++ /dev/null @@ -1,67 +0,0 @@ ---- bin/pg_passwd/pg_passwd.c.orig Mon Apr 17 05:45:18 2000 -+++ bin/pg_passwd/pg_passwd.c Sat May 20 17:54:59 2000 -@@ -18,11 +18,15 @@ - - #endif - -+#ifndef _POSIX_SOURCE -+# define _PASSWORD_LEN 128 /* max length, not containing NULL */ -+#endif -+ - char *comname; - static void usage(FILE *stream); - static void read_pwd_file(char *filename); - static void write_pwd_file(char *filename, char *bkname); --static void encrypt_pwd(char key[9], char salt[3], char passwd[14]); -+static void encrypt_pwd(char key[9], char salt[3], char passwd[_PASSWORD_LEN+1]); - static void prompt_for_username(char *username); - static void prompt_for_password(char *prompt, char *password); - -@@ -150,7 +154,7 @@ - - if (q != NULL) - *(q++) = '\0'; -- if (strlen(p) != 13) -+ if (strlen(p) > _PASSWORD_LEN) - { - fprintf(stderr, "WARNING: %s: line %d: illegal password length.\n", - filename, npwds + 1); -@@ -214,7 +218,7 @@ - } - - static void --encrypt_pwd(char key[9], char salt[3], char passwd[14]) -+encrypt_pwd(char key[9], char salt[3], char passwd[_PASSWORD_LEN+1]) - { - int n; - -@@ -246,9 +250,9 @@ - - #ifdef NOT_USED - static int --check_pwd(char key[9], char passwd[14]) -+check_pwd(char key[9], char passwd[_PASSWORD_LEN+1]) - { -- char shouldbe[14]; -+ char shouldbe[_PASSWORD_LEN+1]; - char salt[3]; - - salt[0] = passwd[0]; -@@ -256,7 +260,7 @@ - salt[2] = '\0'; - encrypt_pwd(key, salt, shouldbe); - -- return strncmp(shouldbe, passwd, 13) == 0 ? 1 : 0; -+ return strncmp(shouldbe, passwd, _PASSWORD_LEN) == 0 ? 1 : 0; - } - - #endif -@@ -332,7 +336,7 @@ - char salt[3]; - char key[9], - key2[9]; -- char e_passwd[14]; -+ char e_passwd[_PASSWORD_LEN+1]; - int i; - - comname = argv[0]; diff --git a/databases/postgresql82-server/files/patch-ar b/databases/postgresql82-server/files/patch-ar deleted file mode 100644 index c5c8096fc141..000000000000 --- a/databases/postgresql82-server/files/patch-ar +++ /dev/null @@ -1,11 +0,0 @@ ---- configure.orig Sun Oct 10 14:37:07 1999 -+++ configure Sun Oct 10 14:37:29 1999 -@@ -1429,7 +1429,7 @@ - ELF_SYS=true - else - rm -rf conftest* -- if test "X$elf" = "Xyes" -+ if test "X$PORTOBJFORMAT" = "Xelf" - then - ELF_SYS=true - else diff --git a/databases/postgresql82-server/files/patch-as b/databases/postgresql82-server/files/patch-as deleted file mode 100644 index 3282168c4aed..000000000000 --- a/databases/postgresql82-server/files/patch-as +++ /dev/null @@ -1,11 +0,0 @@ ---- Makefile.global.in.orig Sun Dec 6 00:08:56 1998 -+++ Makefile.global.in Sat Feb 27 04:23:12 1999 -@@ -79,7 +79,7 @@ - POSTMANDIR= $(POSTGRESDIR)/man - - # Where the formatted documents (e.g., the reference manual) get installed. --POSTDOCDIR= $(POSTGRESDIR)/doc -+POSTDOCDIR= !!PREFIX!!/share/doc/pgsql - - # Where the header files necessary to build frontend programs get installed. - HEADERDIR= $(POSTGRESDIR)/include diff --git a/databases/postgresql82-server/files/patch-at b/databases/postgresql82-server/files/patch-at deleted file mode 100644 index 93e68a708211..000000000000 --- a/databases/postgresql82-server/files/patch-at +++ /dev/null @@ -1,11 +0,0 @@ ---- ../doc/Makefile.orig Sun Nov 29 06:30:13 1998 -+++ ../doc/Makefile Mon Jun 21 17:00:13 1999 -@@ -12,7 +12,7 @@ - # - #---------------------------------------------------------------------------- - --PGDOCS= $(POSTGRESDIR)/doc -+PGDOCS= $(POSTDOCDIR) - SRCDIR= ../src - - TAR= tar diff --git a/databases/postgresql82-server/files/patch-ba b/databases/postgresql82-server/files/patch-ba deleted file mode 100644 index a3b679b882c5..000000000000 --- a/databases/postgresql82-server/files/patch-ba +++ /dev/null @@ -1,25 +0,0 @@ ---- interfaces/jdbc/Makefile.orig Tue Mar 14 16:55:17 2000 -+++ interfaces/jdbc/Makefile Sun Apr 16 21:16:43 2000 -@@ -10,10 +10,10 @@ - - FIND = find - IDL2JAVA = idltojava -fno-cpp -fno-tie --JAR = jar --JAVA = java --JAVAC = javac -g --JAVADOC = javadoc -+JAR = !!JAVA_HOME!!/bin/jar -+JAVA = !!JAVA_HOME!!/bin/java -+JAVAC = !!JAVA_HOME!!/bin/javac -+JAVADOC = !!JAVA_HOME!!/bin/javadoc - RM = rm -f - TOUCH = touch - -@@ -40,6 +40,7 @@ - @echo To compile, type: - @echo " $(MAKE) jdbc2" - @echo ------------------------------------------------------------ -+ $(MAKE) jdbc1 - - msg: - @echo ------------------------------------------------------------ diff --git a/databases/postgresql82-server/files/patch-bb b/databases/postgresql82-server/files/patch-bb deleted file mode 100644 index ea0f1732dcb0..000000000000 --- a/databases/postgresql82-server/files/patch-bb +++ /dev/null @@ -1,13 +0,0 @@ ---- pl/tcl/Makefile~ Sat Apr 29 19:45:42 2000 -+++ pl/tcl/Makefile Sat May 20 22:42:22 2000 -@@ -71,7 +71,9 @@ - CFLAGS+= $(TCL_SHLIB_CFLAGS) $(TCL_DEFS) - - CFLAGS+= -I$(SRCDIR)/include -I$(SRCDIR)/backend $(PGSQL_INCLUDES) -- -+ -+CFLAGS+= -I$(TCL_INCDIR) -+ - # - # Uncomment the following to enable the unknown command lookup - # on the first of all calls to the call handler. See the doc diff --git a/databases/postgresql82-server/files/patch-bc b/databases/postgresql82-server/files/patch-bc deleted file mode 100644 index ff747fb84a2f..000000000000 --- a/databases/postgresql82-server/files/patch-bc +++ /dev/null @@ -1,5 +0,0 @@ ---- bin/pg_ctl/postmaster.opts.default.sample~ Mon Apr 17 05:45:17 2000 -+++ bin/pg_ctl/postmaster.opts.default.sample Tue May 23 02:46:30 2000 -@@ -1 +1 @@ -- -+-i -o "-F" diff --git a/databases/postgresql82-server/files/pgsql.sh.tmpl b/databases/postgresql82-server/files/pgsql.sh.tmpl deleted file mode 100644 index e1673b4850c2..000000000000 --- a/databases/postgresql82-server/files/pgsql.sh.tmpl +++ /dev/null @@ -1,34 +0,0 @@ -#!/bin/sh - -# $FreeBSD$ -# -# For postmaster startup options, edit $PGDATA/postmaster.opts.default -# Preinstalled options are -i -o "-F" - -case $1 in -start) - [ -d !!PREFIX!!/pgsql/lib ] && /sbin/ldconfig -m !!PREFIX!!/pgsql/lib - [ -x !!PREFIX!!/pgsql/bin/pg_ctl ] && { - su -l pgsql -c \ - 'exec !!PREFIX!!/pgsql/bin/pg_ctl -w start > !!PREFIX!!/pgsql/errlog 2>&1' - echo -n ' pgsql' - } - ;; - -stop) - [ -x !!PREFIX!!/pgsql/bin/pg_ctl ] && { - su -l pgsql -c 'exec !!PREFIX!!/pgsql/bin/pg_ctl -w -m fast stop' - } - ;; - -status) - [ -x !!PREFIX!!/pgsql/bin/pg_ctl ] && { - su -l pgsql -c 'exec !!PREFIX!!/pgsql/bin/pg_ctl status' - } - ;; - -*) - echo "usage: `basename $0` {start|stop|status}" >&2 - exit 64 - ;; -esac diff --git a/databases/postgresql82-server/files/post-install-notes b/databases/postgresql82-server/files/post-install-notes deleted file mode 100644 index 289a7651109a..000000000000 --- a/databases/postgresql82-server/files/post-install-notes +++ /dev/null @@ -1,16 +0,0 @@ - -Now that PostgreSQL is installed, you should read the documentation and -implementation guides. These can be found at: - - http://www.PostgreSQL.org/docs - -You may wish to subscribe to the PostgreSQL user-support mailing list. -Send an e-mail to pgsql-questions-request@postgresql.org with the -text "subscribe" in the message body. - -If you built PostgreSQL with TCL support, you can install the port -"pgaccess" to get a TCL/TK based database frontend for database -operations. - -To start PostgreSQL, run the startup script: -$PREFIX/etc/rc.d/pgsql.sh start diff --git a/databases/postgresql82-server/pkg-comment b/databases/postgresql82-server/pkg-comment deleted file mode 100644 index 2125016b133c..000000000000 --- a/databases/postgresql82-server/pkg-comment +++ /dev/null @@ -1 +0,0 @@ -A robust, next generation, object-relational DBMS diff --git a/databases/postgresql82-server/pkg-descr b/databases/postgresql82-server/pkg-descr deleted file mode 100644 index f48a33337e55..000000000000 --- a/databases/postgresql82-server/pkg-descr +++ /dev/null @@ -1,24 +0,0 @@ -PostgreSQL is a robust, next-generation, Object-Relational DBMS (ORDBMS), -derived from the Berkeley Postgres database management system. While -PostgreSQL retains the powerful object-relational data model, rich data types -and easy extensibility of Postgres, it replaces the PostQuel query language -with an extended subset of SQL. - -The original Postgres code was the effort of many graduate students, -undergraduate students, and staff programmers working under the direction of -Professor Michael Stonebraker at the University of California, Berkeley. In -1995, Andrew Yu and Jolly Chen took on the task of converting the DBMS query -language to SQL and created a new database system which came to known as -Postgres95. Many others contributed to the porting, testing, debugging and -enhancement of the Postgres95 code. As the code improved, and 1995 faded into -memory, PostgreSQL was born. - -PostgreSQL development is presently being performed by a team of Internet -developers who are now responsible for all current and future development. The -development team coordinator is Marc G. Fournier (scrappy@PostgreSQL.ORG). -Support is available from the PostgreSQL developer/user community through the -support mailing list (questions@PostgreSQL.ORG). - -PostgreSQL is free and the complete source is available. - -WWW: http://www.postgresql.org diff --git a/databases/postgresql82-server/pkg-install b/databases/postgresql82-server/pkg-install deleted file mode 100644 index 7f3a090fe4b6..000000000000 --- a/databases/postgresql82-server/pkg-install +++ /dev/null @@ -1,44 +0,0 @@ -#! /bin/sh - -# $FreeBSD$ - -PATH=/bin:/usr/sbin - -if [ -z "${DB_DIR}" ]; then - DB_DIR=${PKG_PREFIX}/pgsql/data -fi - -case $2 in -POST-INSTALL) - USER=pgsql - GROUP=${USER} - UID=89 - GID=${UID} - - if pw group show "${GROUP}" 2>/dev/null; then - echo "You already have a group \"${GROUP}\", so I will use it." - else - if pw groupadd ${GROUP} -g ${GID}; then - echo "Added group \"${GROUP}\"." - else - echo "Adding group \"${GROUP}\" failed..." - exit 1 - fi - fi - - if pw user show "${USER}" 2>/dev/null; then - echo "You already have a user \"${USER}\", so I will use it." - else - if pw useradd ${USER} -u ${UID} -g ${GROUP} -h - \ - -d ${DB_DIR} -s /sbin/nologin -c "PostgreSQL Daemon" - then - echo "Added user \"${USER}\"." - else - echo "Adding user \"${USER}\" failed..." - exit 1 - fi - fi - - chown -R ${USER}.${GROUP} ${DB_DIR} - ;; -esac diff --git a/databases/postgresql82-server/pkg-plist b/databases/postgresql82-server/pkg-plist deleted file mode 100644 index 9992da1174ae..000000000000 --- a/databases/postgresql82-server/pkg-plist +++ /dev/null @@ -1,168 +0,0 @@ -etc/rc.d/pgsql.sh -pgsql/.profile -pgsql/bin/createdb -pgsql/bin/createlang -pgsql/bin/createuser -pgsql/bin/dropdb -pgsql/bin/droplang -pgsql/bin/dropuser -pgsql/bin/ecpg -pgsql/bin/initdb -pgsql/bin/initlocation -pgsql/bin/ipcclean -pgsql/bin/pg_ctl -pgsql/bin/pg_dump -pgsql/bin/pg_dumpall -pgsql/bin/pg_encoding -pgsql/bin/pg_id -pgsql/bin/pg_passwd -pgsql/bin/pg_upgrade -pgsql/bin/pg_version -pgsql/bin/postgres -pgsql/bin/postmaster -pgsql/bin/psql -pgsql/bin/vacuumdb -pgsql/data/PG_VERSION -pgsql/data/base/template1/PG_VERSION -pgsql/data/base/template1/pg_aggregate -pgsql/data/base/template1/pg_aggregate_name_type_index -pgsql/data/base/template1/pg_am -pgsql/data/base/template1/pg_am_name_index -pgsql/data/base/template1/pg_amop -pgsql/data/base/template1/pg_amop_opid_index -pgsql/data/base/template1/pg_amop_strategy_index -pgsql/data/base/template1/pg_amproc -pgsql/data/base/template1/pg_attrdef -pgsql/data/base/template1/pg_attrdef_adrelid_index -pgsql/data/base/template1/pg_attribute -pgsql/data/base/template1/pg_attribute_relid_attnam_index -pgsql/data/base/template1/pg_attribute_relid_attnum_index -pgsql/data/base/template1/pg_class -pgsql/data/base/template1/pg_class_oid_index -pgsql/data/base/template1/pg_class_relname_index -pgsql/data/base/template1/pg_description -pgsql/data/base/template1/pg_description_objoid_index -pgsql/data/base/template1/pg_index -pgsql/data/base/template1/pg_index_indexrelid_index -pgsql/data/base/template1/pg_indexes -pgsql/data/base/template1/pg_inheritproc -pgsql/data/base/template1/pg_inherits -pgsql/data/base/template1/pg_inherits_relid_seqno_index -pgsql/data/base/template1/pg_ipl -pgsql/data/base/template1/pg_language -pgsql/data/base/template1/pg_language_name_index -pgsql/data/base/template1/pg_language_oid_index -pgsql/data/base/template1/pg_listener -pgsql/data/base/template1/pg_listener_relname_pid_index -pgsql/data/base/template1/pg_opclass -pgsql/data/base/template1/pg_opclass_deftype_index -pgsql/data/base/template1/pg_opclass_name_index -pgsql/data/base/template1/pg_operator -pgsql/data/base/template1/pg_operator_oid_index -pgsql/data/base/template1/pg_operator_oprname_l_r_k_index -pgsql/data/base/template1/pg_proc -pgsql/data/base/template1/pg_proc_oid_index -pgsql/data/base/template1/pg_proc_proname_narg_type_index -pgsql/data/base/template1/pg_relcheck -pgsql/data/base/template1/pg_relcheck_rcrelid_index -pgsql/data/base/template1/pg_rewrite -pgsql/data/base/template1/pg_rewrite_oid_index -pgsql/data/base/template1/pg_rewrite_rulename_index -pgsql/data/base/template1/pg_rules -pgsql/data/base/template1/pg_statistic -pgsql/data/base/template1/pg_statistic_relid_att_index -pgsql/data/base/template1/pg_tables -pgsql/data/base/template1/pg_trigger -pgsql/data/base/template1/pg_trigger_tgconstrname_index -pgsql/data/base/template1/pg_trigger_tgconstrrelid_index -pgsql/data/base/template1/pg_trigger_tgrelid_index -pgsql/data/base/template1/pg_type -pgsql/data/base/template1/pg_type_oid_index -pgsql/data/base/template1/pg_type_typname_index -pgsql/data/base/template1/pg_user -pgsql/data/base/template1/pg_views -pgsql/data/pg_control -pgsql/data/pg_database -pgsql/data/pg_geqo.sample -pgsql/data/pg_group -pgsql/data/pg_group_name_index -pgsql/data/pg_group_sysid_index -pgsql/data/pg_hba.conf -pgsql/data/pg_log -pgsql/data/pg_shadow -pgsql/data/pg_variable -pgsql/data/postmaster.opts.default -pgsql/include/access/attnum.h -pgsql/include/c.h -pgsql/include/commands/trigger.h -pgsql/include/config.h -pgsql/include/ecpgerrno.h -pgsql/include/ecpglib.h -pgsql/include/ecpgtype.h -pgsql/include/executor/spi.h -pgsql/include/fmgr.h -pgsql/include/lib/dllist.h -pgsql/include/libpgeasy.h -pgsql/include/libpq/libpq-fs.h -pgsql/include/libpq/pqcomm.h -pgsql/include/libpq++/pgconnection.h -pgsql/include/libpq++/pgcursordb.h -pgsql/include/libpq++/pgdatabase.h -pgsql/include/libpq++/pglobject.h -pgsql/include/libpq++/pgtransdb.h -pgsql/include/libpq++.h -pgsql/include/libpq-fe.h -pgsql/include/libpq-int.h -pgsql/include/os.h -pgsql/include/postgres.h -pgsql/include/postgres_ext.h -pgsql/include/pqexpbuffer.h -pgsql/include/sql3types.h -pgsql/include/sqlca.h -pgsql/include/utils/elog.h -pgsql/include/utils/geo_decls.h -pgsql/include/utils/mcxt.h -pgsql/include/utils/palloc.h -pgsql/lib/global1.bki.source -pgsql/lib/global1.description -pgsql/lib/libecpg.a -pgsql/lib/libecpg.so -pgsql/lib/libecpg.so.3 -pgsql/lib/libpgeasy.a -pgsql/lib/libpgeasy.so -pgsql/lib/libpgeasy.so.2 -pgsql/lib/libpq++.a -pgsql/lib/libpq++.so -pgsql/lib/libpq++.so.3 -pgsql/lib/libpq.a -pgsql/lib/libpq.so -pgsql/lib/libpq.so.2 -pgsql/lib/local1_template1.bki.source -pgsql/lib/local1_template1.description -pgsql/lib/pg_geqo.sample -pgsql/lib/pg_hba.conf.sample -pgsql/lib/pg_ident.conf.sample -pgsql/lib/pg_options.sample -pgsql/lib/plpgsql.so -pgsql/lib/postmaster.opts.default.sample -pgsql/post-install-notes -@dirrm pgsql/bin -@dirrm pgsql/data/base/template1 -@dirrm pgsql/data/base -@dirrm pgsql/data/pg_xlog -@dirrm pgsql/data -@dirrm pgsql/include/access -@dirrm pgsql/include/commands -@dirrm pgsql/include/executor -@dirrm pgsql/include/lib -@dirrm pgsql/include/libpq -@dirrm pgsql/include/libpq++ -@dirrm pgsql/include/port/freebsd -@dirrm pgsql/include/port -@dirrm pgsql/include/utils -@dirrm pgsql/include -@dirrm pgsql/lib -@dirrm pgsql/man/man1 -@dirrm pgsql/man/manl -@dirrm pgsql/man -@dirrm pgsql diff --git a/databases/postgresql82-server/pkg-plist.doc b/databases/postgresql82-server/pkg-plist.doc deleted file mode 100644 index 06b7bd9ea116..000000000000 --- a/databases/postgresql82-server/pkg-plist.doc +++ /dev/null @@ -1,888 +0,0 @@ -share/doc/pgsql/FAQ -share/doc/pgsql/FAQ_AIX -share/doc/pgsql/FAQ_BSDI -share/doc/pgsql/FAQ_DEV -share/doc/pgsql/FAQ_DigitalUnix -share/doc/pgsql/FAQ_FreeBSD -share/doc/pgsql/FAQ_HPUX -share/doc/pgsql/FAQ_Irix -share/doc/pgsql/FAQ_Linux -share/doc/pgsql/FAQ_QNX4 -share/doc/pgsql/FAQ_SCO -share/doc/pgsql/FAQ_Solaris -share/doc/pgsql/README.Charsets -share/doc/pgsql/README.NT -share/doc/pgsql/README.fsync -share/doc/pgsql/README.inet -share/doc/pgsql/README.locale -share/doc/pgsql/README.mb -share/doc/pgsql/README.mb.jp -share/doc/pgsql/TODO -share/doc/pgsql/admin/admin.htm -share/doc/pgsql/admin/admin.html -share/doc/pgsql/admin/biblio.htm -share/doc/pgsql/admin/c573.htm -share/doc/pgsql/admin/c573602.htm -share/doc/pgsql/admin/c573680.htm -share/doc/pgsql/admin/c573717.htm -share/doc/pgsql/admin/copyright.htm -share/doc/pgsql/admin/disk.htm -share/doc/pgsql/admin/index.html -share/doc/pgsql/admin/install-win32.htm -share/doc/pgsql/admin/install-win321073.htm -share/doc/pgsql/admin/install-win321082.htm -share/doc/pgsql/admin/install.htm -share/doc/pgsql/admin/install855.htm -share/doc/pgsql/admin/intro-ag.htm -share/doc/pgsql/admin/intro-ag162.htm -share/doc/pgsql/admin/layout.gif -share/doc/pgsql/admin/layout.htm -share/doc/pgsql/admin/manage-ag.htm -share/doc/pgsql/admin/manage-ag1604.htm -share/doc/pgsql/admin/manage-ag1646.htm -share/doc/pgsql/admin/manage-ag1655.htm -share/doc/pgsql/admin/newuser.htm -share/doc/pgsql/admin/notation.htm -share/doc/pgsql/admin/pg-options.htm -share/doc/pgsql/admin/ports.htm -share/doc/pgsql/admin/ports481.htm -share/doc/pgsql/admin/postmaster.htm -share/doc/pgsql/admin/preface.htm -share/doc/pgsql/admin/recovery.htm -share/doc/pgsql/admin/regress.htm -share/doc/pgsql/admin/regress1861.htm -share/doc/pgsql/admin/regress1895.htm -share/doc/pgsql/admin/regress1941.htm -share/doc/pgsql/admin/release.htm -share/doc/pgsql/admin/release2009.htm -share/doc/pgsql/admin/release2020.htm -share/doc/pgsql/admin/release2031.htm -share/doc/pgsql/admin/release2042.htm -share/doc/pgsql/admin/release2124.htm -share/doc/pgsql/admin/release2135.htm -share/doc/pgsql/admin/release2146.htm -share/doc/pgsql/admin/release2187.htm -share/doc/pgsql/admin/release2203.htm -share/doc/pgsql/admin/release2222.htm -share/doc/pgsql/admin/release2266.htm -share/doc/pgsql/admin/release2288.htm -share/doc/pgsql/admin/release2303.htm -share/doc/pgsql/admin/release2312.htm -share/doc/pgsql/admin/release2335.htm -share/doc/pgsql/admin/release2349.htm -share/doc/pgsql/admin/release2352.htm -share/doc/pgsql/admin/release2377.htm -share/doc/pgsql/admin/release2414.htm -share/doc/pgsql/admin/release2421.htm -share/doc/pgsql/admin/release2428.htm -share/doc/pgsql/admin/release2435.htm -share/doc/pgsql/admin/release2439.htm -share/doc/pgsql/admin/runtime.htm -share/doc/pgsql/admin/security.htm -share/doc/pgsql/admin/security1450.htm -share/doc/pgsql/admin/security1485.htm -share/doc/pgsql/admin/security1509.htm -share/doc/pgsql/admin/security1530.htm -share/doc/pgsql/admin/terminology.htm -share/doc/pgsql/admin/trouble.htm -share/doc/pgsql/admin/trouble1721.htm -share/doc/pgsql/admin/trouble1738.htm -share/doc/pgsql/admin/y2k.htm -share/doc/pgsql/postgres/about.htm -share/doc/pgsql/postgres/advanced.htm -share/doc/pgsql/postgres/advanced27923.htm -share/doc/pgsql/postgres/advanced27945.htm -share/doc/pgsql/postgres/app-createdb.htm -share/doc/pgsql/postgres/app-createlang.htm -share/doc/pgsql/postgres/app-createuser.htm -share/doc/pgsql/postgres/app-dropdb.htm -share/doc/pgsql/postgres/app-droplang.htm -share/doc/pgsql/postgres/app-dropuser.htm -share/doc/pgsql/postgres/app-ecpg.htm -share/doc/pgsql/postgres/app-initdb.htm -share/doc/pgsql/postgres/app-initlocation.htm -share/doc/pgsql/postgres/app-ipcclean.htm -share/doc/pgsql/postgres/app-pg-passwd.htm -share/doc/pgsql/postgres/app-pg-upgrade.htm -share/doc/pgsql/postgres/app-pgaccess.htm -share/doc/pgsql/postgres/app-pgadmin.htm -share/doc/pgsql/postgres/app-pgctl.htm -share/doc/pgsql/postgres/app-pgdump.htm -share/doc/pgsql/postgres/app-pgdumpall.htm -share/doc/pgsql/postgres/app-pgtclsh.htm -share/doc/pgsql/postgres/app-pgtksh.htm -share/doc/pgsql/postgres/app-postgres.htm -share/doc/pgsql/postgres/app-postmaster.htm -share/doc/pgsql/postgres/app-psql.htm -share/doc/pgsql/postgres/app-vacuumdb.htm -share/doc/pgsql/postgres/applications.htm -share/doc/pgsql/postgres/arch-pg.htm -share/doc/pgsql/postgres/arch.htm -share/doc/pgsql/postgres/arrays.htm -share/doc/pgsql/postgres/biblio.htm -share/doc/pgsql/postgres/bki.htm -share/doc/pgsql/postgres/bki26573.htm -share/doc/pgsql/postgres/bki26657.htm -share/doc/pgsql/postgres/bki26681.htm -share/doc/pgsql/postgres/bki26742.htm -share/doc/pgsql/postgres/c16883.htm -share/doc/pgsql/postgres/c1688316912.htm -share/doc/pgsql/postgres/c1688316990.htm -share/doc/pgsql/postgres/c1688317027.htm -share/doc/pgsql/postgres/c19986.htm -share/doc/pgsql/postgres/c21722.htm -share/doc/pgsql/postgres/c2172221764.htm -share/doc/pgsql/postgres/c2172221782.htm -share/doc/pgsql/postgres/c2172221924.htm -share/doc/pgsql/postgres/c2172221936.htm -share/doc/pgsql/postgres/c2172221956.htm -share/doc/pgsql/postgres/c2172221961.htm -share/doc/pgsql/postgres/c25129.htm -share/doc/pgsql/postgres/c4091.htm -share/doc/pgsql/postgres/c40914117.htm -share/doc/pgsql/postgres/c40914344.htm -share/doc/pgsql/postgres/c4362.htm -share/doc/pgsql/postgres/c43624375.htm -share/doc/pgsql/postgres/c4888.htm -share/doc/pgsql/postgres/c4933.htm -share/doc/pgsql/postgres/c49334943.htm -share/doc/pgsql/postgres/c49334947.htm -share/doc/pgsql/postgres/catalogs.gif -share/doc/pgsql/postgres/clientserver.gif -share/doc/pgsql/postgres/compiler.htm -share/doc/pgsql/postgres/connections.gif -share/doc/pgsql/postgres/copyright.htm -share/doc/pgsql/postgres/cvs.htm -share/doc/pgsql/postgres/cvs28436.htm -share/doc/pgsql/postgres/cvs28492.htm -share/doc/pgsql/postgres/datatype.htm -share/doc/pgsql/postgres/datatype1038.htm -share/doc/pgsql/postgres/datatype1070.htm -share/doc/pgsql/postgres/datatype1134.htm -share/doc/pgsql/postgres/datatype1649.htm -share/doc/pgsql/postgres/datatype1681.htm -share/doc/pgsql/postgres/datatype1920.htm -share/doc/pgsql/postgres/datetime-appendix.htm -share/doc/pgsql/postgres/datetime-appendix28356.htm -share/doc/pgsql/postgres/dfunc.htm -share/doc/pgsql/postgres/dfunc20136.htm -share/doc/pgsql/postgres/dfunc20146.htm -share/doc/pgsql/postgres/disk.htm -share/doc/pgsql/postgres/docguide.htm -share/doc/pgsql/postgres/docguide28718.htm -share/doc/pgsql/postgres/docguide28749.htm -share/doc/pgsql/postgres/docguide28840.htm -share/doc/pgsql/postgres/docguide28861.htm -share/doc/pgsql/postgres/docguide28887.htm -share/doc/pgsql/postgres/docguide29024.htm -share/doc/pgsql/postgres/docguide29362.htm -share/doc/pgsql/postgres/environ.htm -share/doc/pgsql/postgres/extend.htm -share/doc/pgsql/postgres/extend18852.htm -share/doc/pgsql/postgres/extend18864.htm -share/doc/pgsql/postgres/func-ref.htm -share/doc/pgsql/postgres/functions.htm -share/doc/pgsql/postgres/functions2593.htm -share/doc/pgsql/postgres/functions2733.htm -share/doc/pgsql/postgres/functions2876.htm -share/doc/pgsql/postgres/functions2976.htm -share/doc/pgsql/postgres/functions3443.htm -share/doc/pgsql/postgres/functions3641.htm -share/doc/pgsql/postgres/geqo-biblio.htm -share/doc/pgsql/postgres/geqo.htm -share/doc/pgsql/postgres/geqo25594.htm -share/doc/pgsql/postgres/geqo25617.htm -share/doc/pgsql/postgres/geqo25655.htm -share/doc/pgsql/postgres/gist.htm -share/doc/pgsql/postgres/index.html -share/doc/pgsql/postgres/indices.htm -share/doc/pgsql/postgres/inherit.htm -share/doc/pgsql/postgres/install-win32.htm -share/doc/pgsql/postgres/install-win3217383.htm -share/doc/pgsql/postgres/install-win3217392.htm -share/doc/pgsql/postgres/install.htm -share/doc/pgsql/postgres/install17165.htm -share/doc/pgsql/postgres/intro.htm -share/doc/pgsql/postgres/intro176.htm -share/doc/pgsql/postgres/intro304.htm -share/doc/pgsql/postgres/intro60.htm -share/doc/pgsql/postgres/jdbc.htm -share/doc/pgsql/postgres/jdbc24909.htm -share/doc/pgsql/postgres/jdbc24921.htm -share/doc/pgsql/postgres/jdbc24927.htm -share/doc/pgsql/postgres/jdbc24935.htm -share/doc/pgsql/postgres/jdbc24953.htm -share/doc/pgsql/postgres/jdbc24990.htm -share/doc/pgsql/postgres/jdbc25021.htm -share/doc/pgsql/postgres/jdbc25026.htm -share/doc/pgsql/postgres/jdbc25030.htm -share/doc/pgsql/postgres/jdbc25056.htm -share/doc/pgsql/postgres/jdbc25086.htm -share/doc/pgsql/postgres/largeobjects.htm -share/doc/pgsql/postgres/largeobjects21625.htm -share/doc/pgsql/postgres/largeobjects21628.htm -share/doc/pgsql/postgres/largeobjects21707.htm -share/doc/pgsql/postgres/largeobjects21714.htm -share/doc/pgsql/postgres/largeobjects21718.htm -share/doc/pgsql/postgres/layout.gif -share/doc/pgsql/postgres/layout.htm -share/doc/pgsql/postgres/libpq-chapter.htm -share/doc/pgsql/postgres/libpq-chapter22422.htm -share/doc/pgsql/postgres/libpq-chapter22577.htm -share/doc/pgsql/postgres/libpq-chapter22724.htm -share/doc/pgsql/postgres/libpq-chapter22736.htm -share/doc/pgsql/postgres/libpq-chapter22774.htm -share/doc/pgsql/postgres/libpq-chapter22844.htm -share/doc/pgsql/postgres/libpq-chapter22857.htm -share/doc/pgsql/postgres/libpq-chapter22942.htm -share/doc/pgsql/postgres/libpq-envars.htm -share/doc/pgsql/postgres/libpq-threading.htm -share/doc/pgsql/postgres/libpqplusplus.htm -share/doc/pgsql/postgres/libpqplusplus23034.htm -share/doc/pgsql/postgres/libpqplusplus23044.htm -share/doc/pgsql/postgres/libpqplusplus23074.htm -share/doc/pgsql/postgres/libpqplusplus23179.htm -share/doc/pgsql/postgres/libpqplusplus23202.htm -share/doc/pgsql/postgres/lisp.htm -share/doc/pgsql/postgres/manage-ag.htm -share/doc/pgsql/postgres/manage-ag17914.htm -share/doc/pgsql/postgres/manage-ag17956.htm -share/doc/pgsql/postgres/manage-ag17965.htm -share/doc/pgsql/postgres/manage.htm -share/doc/pgsql/postgres/manage4814.htm -share/doc/pgsql/postgres/manage4838.htm -share/doc/pgsql/postgres/manage4880.htm -share/doc/pgsql/postgres/mvcc.htm -share/doc/pgsql/postgres/mvcc4568.htm -share/doc/pgsql/postgres/mvcc4621.htm -share/doc/pgsql/postgres/mvcc4633.htm -share/doc/pgsql/postgres/mvcc4646.htm -share/doc/pgsql/postgres/mvcc4723.htm -share/doc/pgsql/postgres/mvcc4744.htm -share/doc/pgsql/postgres/newuser.htm -share/doc/pgsql/postgres/notation.htm -share/doc/pgsql/postgres/odbc.htm -share/doc/pgsql/postgres/odbc24433.htm -share/doc/pgsql/postgres/odbc24471.htm -share/doc/pgsql/postgres/odbc24644.htm -share/doc/pgsql/postgres/odbc24666.htm -share/doc/pgsql/postgres/operators.htm -share/doc/pgsql/postgres/operators2127.htm -share/doc/pgsql/postgres/operators2198.htm -share/doc/pgsql/postgres/operators2267.htm -share/doc/pgsql/postgres/operators2377.htm -share/doc/pgsql/postgres/operators2436.htm -share/doc/pgsql/postgres/operators2490.htm -share/doc/pgsql/postgres/overview.htm -share/doc/pgsql/postgres/overview25194.htm -share/doc/pgsql/postgres/overview25219.htm -share/doc/pgsql/postgres/overview25347.htm -share/doc/pgsql/postgres/overview25403.htm -share/doc/pgsql/postgres/overview25457.htm -share/doc/pgsql/postgres/page.htm -share/doc/pgsql/postgres/page26805.htm -share/doc/pgsql/postgres/page26819.htm -share/doc/pgsql/postgres/part-admin.htm -share/doc/pgsql/postgres/part-appendix.htm -share/doc/pgsql/postgres/part-developer.htm -share/doc/pgsql/postgres/part-interfaces.htm -share/doc/pgsql/postgres/part-programmer.htm -share/doc/pgsql/postgres/part-tutorial.htm -share/doc/pgsql/postgres/part-user.htm -share/doc/pgsql/postgres/partial-index.htm -share/doc/pgsql/postgres/pg-options-dev.htm -share/doc/pgsql/postgres/pg-options.htm -share/doc/pgsql/postgres/pgeasy-chapter.htm -share/doc/pgsql/postgres/pgtcl-pgconndefaults.htm -share/doc/pgsql/postgres/pgtcl-pgconnect.htm -share/doc/pgsql/postgres/pgtcl-pgdisconnect.htm -share/doc/pgsql/postgres/pgtcl-pgexec.htm -share/doc/pgsql/postgres/pgtcl-pglisten.htm -share/doc/pgsql/postgres/pgtcl-pgloclose.htm -share/doc/pgsql/postgres/pgtcl-pglocreat.htm -share/doc/pgsql/postgres/pgtcl-pgloexport.htm -share/doc/pgsql/postgres/pgtcl-pgloimport.htm -share/doc/pgsql/postgres/pgtcl-pglolseek.htm -share/doc/pgsql/postgres/pgtcl-pgloopen.htm -share/doc/pgsql/postgres/pgtcl-pgloread.htm -share/doc/pgsql/postgres/pgtcl-pglotell.htm -share/doc/pgsql/postgres/pgtcl-pglounlink.htm -share/doc/pgsql/postgres/pgtcl-pglowrite.htm -share/doc/pgsql/postgres/pgtcl-pgresult.htm -share/doc/pgsql/postgres/pgtcl-pgselect.htm -share/doc/pgsql/postgres/pgtcl.htm -share/doc/pgsql/postgres/pgtcl23317.htm -share/doc/pgsql/postgres/pgtcl23321.htm -share/doc/pgsql/postgres/pl-perl.htm -share/doc/pgsql/postgres/pl-perl4533.htm -share/doc/pgsql/postgres/pl-perl4542.htm -share/doc/pgsql/postgres/ports.htm -share/doc/pgsql/postgres/ports16791.htm -share/doc/pgsql/postgres/postgres.htm -share/doc/pgsql/postgres/postgres.html -share/doc/pgsql/postgres/postmaster.htm -share/doc/pgsql/postgres/preface.htm -share/doc/pgsql/postgres/protocol.htm -share/doc/pgsql/postgres/protocol25770.htm -share/doc/pgsql/postgres/protocol25925.htm -share/doc/pgsql/postgres/protocol25962.htm -share/doc/pgsql/postgres/query.htm -share/doc/pgsql/postgres/query27752.htm -share/doc/pgsql/postgres/query27768.htm -share/doc/pgsql/postgres/query27790.htm -share/doc/pgsql/postgres/query27799.htm -share/doc/pgsql/postgres/query27817.htm -share/doc/pgsql/postgres/query27825.htm -share/doc/pgsql/postgres/query27844.htm -share/doc/pgsql/postgres/query27849.htm -share/doc/pgsql/postgres/query27856.htm -share/doc/pgsql/postgres/recovery.htm -share/doc/pgsql/postgres/regress.htm -share/doc/pgsql/postgres/regress18171.htm -share/doc/pgsql/postgres/regress18205.htm -share/doc/pgsql/postgres/regress18251.htm -share/doc/pgsql/postgres/release.htm -share/doc/pgsql/postgres/release18319.htm -share/doc/pgsql/postgres/release18330.htm -share/doc/pgsql/postgres/release18341.htm -share/doc/pgsql/postgres/release18352.htm -share/doc/pgsql/postgres/release18434.htm -share/doc/pgsql/postgres/release18445.htm -share/doc/pgsql/postgres/release18456.htm -share/doc/pgsql/postgres/release18497.htm -share/doc/pgsql/postgres/release18513.htm -share/doc/pgsql/postgres/release18532.htm -share/doc/pgsql/postgres/release18576.htm -share/doc/pgsql/postgres/release18598.htm -share/doc/pgsql/postgres/release18613.htm -share/doc/pgsql/postgres/release18622.htm -share/doc/pgsql/postgres/release18645.htm -share/doc/pgsql/postgres/release18659.htm -share/doc/pgsql/postgres/release18662.htm -share/doc/pgsql/postgres/release18687.htm -share/doc/pgsql/postgres/release18724.htm -share/doc/pgsql/postgres/release18731.htm -share/doc/pgsql/postgres/release18738.htm -share/doc/pgsql/postgres/release18745.htm -share/doc/pgsql/postgres/release18749.htm -share/doc/pgsql/postgres/rules.htm -share/doc/pgsql/postgres/rules19478.htm -share/doc/pgsql/postgres/rules19639.htm -share/doc/pgsql/postgres/rules19770.htm -share/doc/pgsql/postgres/rules19784.htm -share/doc/pgsql/postgres/runtime.htm -share/doc/pgsql/postgres/security.htm -share/doc/pgsql/postgres/security17760.htm -share/doc/pgsql/postgres/security17795.htm -share/doc/pgsql/postgres/security17819.htm -share/doc/pgsql/postgres/security17840.htm -share/doc/pgsql/postgres/signals.htm -share/doc/pgsql/postgres/spi-spiconnect.htm -share/doc/pgsql/postgres/spi-spicopytuple.htm -share/doc/pgsql/postgres/spi-spiexec.htm -share/doc/pgsql/postgres/spi-spiexecp.htm -share/doc/pgsql/postgres/spi-spifinish.htm -share/doc/pgsql/postgres/spi-spifname.htm -share/doc/pgsql/postgres/spi-spifnumber.htm -share/doc/pgsql/postgres/spi-spigetbinval.htm -share/doc/pgsql/postgres/spi-spigetrelname.htm -share/doc/pgsql/postgres/spi-spigettype.htm -share/doc/pgsql/postgres/spi-spigettypeid.htm -share/doc/pgsql/postgres/spi-spigetvalue.htm -share/doc/pgsql/postgres/spi-spimodifytuple.htm -share/doc/pgsql/postgres/spi-spipalloc.htm -share/doc/pgsql/postgres/spi-spipfree.htm -share/doc/pgsql/postgres/spi-spiprepare.htm -share/doc/pgsql/postgres/spi-spirepalloc.htm -share/doc/pgsql/postgres/spi-spisaveplan.htm -share/doc/pgsql/postgres/spi.htm -share/doc/pgsql/postgres/spi20808.htm -share/doc/pgsql/postgres/spi21521.htm -share/doc/pgsql/postgres/spi21543.htm -share/doc/pgsql/postgres/spi21548.htm -share/doc/pgsql/postgres/sql-abort.htm -share/doc/pgsql/postgres/sql-altergroup.htm -share/doc/pgsql/postgres/sql-altertable.htm -share/doc/pgsql/postgres/sql-alteruser.htm -share/doc/pgsql/postgres/sql-begin.htm -share/doc/pgsql/postgres/sql-close.htm -share/doc/pgsql/postgres/sql-cluster.htm -share/doc/pgsql/postgres/sql-commands.htm -share/doc/pgsql/postgres/sql-comment.htm -share/doc/pgsql/postgres/sql-commit.htm -share/doc/pgsql/postgres/sql-copy.htm -share/doc/pgsql/postgres/sql-createaggregate.htm -share/doc/pgsql/postgres/sql-createconstraint.htm -share/doc/pgsql/postgres/sql-createdatabase.htm -share/doc/pgsql/postgres/sql-createfunction.htm -share/doc/pgsql/postgres/sql-creategroup.htm -share/doc/pgsql/postgres/sql-createindex.htm -share/doc/pgsql/postgres/sql-createlanguage.htm -share/doc/pgsql/postgres/sql-createoperator.htm -share/doc/pgsql/postgres/sql-createrule.htm -share/doc/pgsql/postgres/sql-createsequence.htm -share/doc/pgsql/postgres/sql-createtable.htm -share/doc/pgsql/postgres/sql-createtableas.htm -share/doc/pgsql/postgres/sql-createtrigger.htm -share/doc/pgsql/postgres/sql-createtype.htm -share/doc/pgsql/postgres/sql-createuser.htm -share/doc/pgsql/postgres/sql-createview.htm -share/doc/pgsql/postgres/sql-declare.htm -share/doc/pgsql/postgres/sql-delete.htm -share/doc/pgsql/postgres/sql-dropaggregate.htm -share/doc/pgsql/postgres/sql-dropdatabase.htm -share/doc/pgsql/postgres/sql-dropfunction.htm -share/doc/pgsql/postgres/sql-dropgroup.htm -share/doc/pgsql/postgres/sql-dropindex.htm -share/doc/pgsql/postgres/sql-droplanguage.htm -share/doc/pgsql/postgres/sql-dropoperator.htm -share/doc/pgsql/postgres/sql-droprule.htm -share/doc/pgsql/postgres/sql-dropsequence.htm -share/doc/pgsql/postgres/sql-droptable.htm -share/doc/pgsql/postgres/sql-droptrigger.htm -share/doc/pgsql/postgres/sql-droptype.htm -share/doc/pgsql/postgres/sql-dropuser.htm -share/doc/pgsql/postgres/sql-dropview.htm -share/doc/pgsql/postgres/sql-end.htm -share/doc/pgsql/postgres/sql-explain.htm -share/doc/pgsql/postgres/sql-fetch.htm -share/doc/pgsql/postgres/sql-grant.htm -share/doc/pgsql/postgres/sql-insert.htm -share/doc/pgsql/postgres/sql-language.htm -share/doc/pgsql/postgres/sql-listen.htm -share/doc/pgsql/postgres/sql-load.htm -share/doc/pgsql/postgres/sql-lock.htm -share/doc/pgsql/postgres/sql-move.htm -share/doc/pgsql/postgres/sql-notify.htm -share/doc/pgsql/postgres/sql-reindex.htm -share/doc/pgsql/postgres/sql-reset.htm -share/doc/pgsql/postgres/sql-revoke.htm -share/doc/pgsql/postgres/sql-rollback.htm -share/doc/pgsql/postgres/sql-select.htm -share/doc/pgsql/postgres/sql-selectinto.htm -share/doc/pgsql/postgres/sql-set.htm -share/doc/pgsql/postgres/sql-show.htm -share/doc/pgsql/postgres/sql-truncate.htm -share/doc/pgsql/postgres/sql-unlisten.htm -share/doc/pgsql/postgres/sql-update.htm -share/doc/pgsql/postgres/sql-vacuum.htm -share/doc/pgsql/postgres/sql.htm -share/doc/pgsql/postgres/sql26902.htm -share/doc/pgsql/postgres/sql27020.htm -share/doc/pgsql/postgres/start.htm -share/doc/pgsql/postgres/start27628.htm -share/doc/pgsql/postgres/start27650.htm -share/doc/pgsql/postgres/storage.htm -share/doc/pgsql/postgres/syntax.htm -share/doc/pgsql/postgres/syntax519.htm -share/doc/pgsql/postgres/syntax525.htm -share/doc/pgsql/postgres/syntax543.htm -share/doc/pgsql/postgres/syntax608.htm -share/doc/pgsql/postgres/syntax653.htm -share/doc/pgsql/postgres/syntax658.htm -share/doc/pgsql/postgres/terminology.htm -share/doc/pgsql/postgres/triggers.htm -share/doc/pgsql/postgres/triggers20224.htm -share/doc/pgsql/postgres/triggers20281.htm -share/doc/pgsql/postgres/triggers20290.htm -share/doc/pgsql/postgres/trouble.htm -share/doc/pgsql/postgres/trouble18031.htm -share/doc/pgsql/postgres/trouble18048.htm -share/doc/pgsql/postgres/typeconv.htm -share/doc/pgsql/postgres/typeconv3759.htm -share/doc/pgsql/postgres/typeconv3822.htm -share/doc/pgsql/postgres/typeconv3875.htm -share/doc/pgsql/postgres/typeconv3895.htm -share/doc/pgsql/postgres/utilities.htm -share/doc/pgsql/postgres/xaggr.htm -share/doc/pgsql/postgres/xfunc.htm -share/doc/pgsql/postgres/xfunc19011.htm -share/doc/pgsql/postgres/xfunc19017.htm -share/doc/pgsql/postgres/xfunc19022.htm -share/doc/pgsql/postgres/xfunc19254.htm -share/doc/pgsql/postgres/xindex.htm -share/doc/pgsql/postgres/xoper.htm -share/doc/pgsql/postgres/xplang.htm -share/doc/pgsql/postgres/xtypes.htm -share/doc/pgsql/postgres/y2k.htm -share/doc/pgsql/programmer/arch-pg.htm -share/doc/pgsql/programmer/biblio.htm -share/doc/pgsql/programmer/bki.htm -share/doc/pgsql/programmer/bki8058.htm -share/doc/pgsql/programmer/bki8142.htm -share/doc/pgsql/programmer/bki8166.htm -share/doc/pgsql/programmer/bki8227.htm -share/doc/pgsql/programmer/c1486.htm -share/doc/pgsql/programmer/c5391.htm -share/doc/pgsql/programmer/c53915433.htm -share/doc/pgsql/programmer/c53915451.htm -share/doc/pgsql/programmer/c53915593.htm -share/doc/pgsql/programmer/c53915605.htm -share/doc/pgsql/programmer/c53915625.htm -share/doc/pgsql/programmer/c53915630.htm -share/doc/pgsql/programmer/c6614.htm -share/doc/pgsql/programmer/catalogs.gif -share/doc/pgsql/programmer/compiler.htm -share/doc/pgsql/programmer/connections.gif -share/doc/pgsql/programmer/copyright.htm -share/doc/pgsql/programmer/cvs.htm -share/doc/pgsql/programmer/cvs8365.htm -share/doc/pgsql/programmer/cvs8421.htm -share/doc/pgsql/programmer/dfunc.htm -share/doc/pgsql/programmer/dfunc1679.htm -share/doc/pgsql/programmer/dfunc1689.htm -share/doc/pgsql/programmer/docguide.htm -share/doc/pgsql/programmer/docguide8647.htm -share/doc/pgsql/programmer/docguide8678.htm -share/doc/pgsql/programmer/docguide8769.htm -share/doc/pgsql/programmer/docguide8790.htm -share/doc/pgsql/programmer/docguide8816.htm -share/doc/pgsql/programmer/docguide8953.htm -share/doc/pgsql/programmer/docguide9291.htm -share/doc/pgsql/programmer/extend.htm -share/doc/pgsql/programmer/extend352.htm -share/doc/pgsql/programmer/extend364.htm -share/doc/pgsql/programmer/geqo-biblio.htm -share/doc/pgsql/programmer/geqo.htm -share/doc/pgsql/programmer/geqo7079.htm -share/doc/pgsql/programmer/geqo7102.htm -share/doc/pgsql/programmer/geqo7140.htm -share/doc/pgsql/programmer/gist.htm -share/doc/pgsql/programmer/index.html -share/doc/pgsql/programmer/intro-pg.htm -share/doc/pgsql/programmer/intro-pg167.htm -share/doc/pgsql/programmer/jdbc.htm -share/doc/pgsql/programmer/jdbc6398.htm -share/doc/pgsql/programmer/jdbc6410.htm -share/doc/pgsql/programmer/jdbc6416.htm -share/doc/pgsql/programmer/jdbc6424.htm -share/doc/pgsql/programmer/jdbc6442.htm -share/doc/pgsql/programmer/jdbc6479.htm -share/doc/pgsql/programmer/jdbc6510.htm -share/doc/pgsql/programmer/jdbc6515.htm -share/doc/pgsql/programmer/jdbc6519.htm -share/doc/pgsql/programmer/jdbc6545.htm -share/doc/pgsql/programmer/jdbc6575.htm -share/doc/pgsql/programmer/largeobjects.htm -share/doc/pgsql/programmer/largeobjects3114.htm -share/doc/pgsql/programmer/largeobjects3117.htm -share/doc/pgsql/programmer/largeobjects3196.htm -share/doc/pgsql/programmer/largeobjects3203.htm -share/doc/pgsql/programmer/largeobjects3207.htm -share/doc/pgsql/programmer/libpq-chapter.htm -share/doc/pgsql/programmer/libpq-chapter3419.htm -share/doc/pgsql/programmer/libpq-chapter3574.htm -share/doc/pgsql/programmer/libpq-chapter3721.htm -share/doc/pgsql/programmer/libpq-chapter3733.htm -share/doc/pgsql/programmer/libpq-chapter3771.htm -share/doc/pgsql/programmer/libpq-chapter3841.htm -share/doc/pgsql/programmer/libpq-chapter3854.htm -share/doc/pgsql/programmer/libpq-chapter3939.htm -share/doc/pgsql/programmer/libpq-envars.htm -share/doc/pgsql/programmer/libpq-threading.htm -share/doc/pgsql/programmer/libpqplusplus.htm -share/doc/pgsql/programmer/libpqplusplus4031.htm -share/doc/pgsql/programmer/libpqplusplus4041.htm -share/doc/pgsql/programmer/libpqplusplus4071.htm -share/doc/pgsql/programmer/libpqplusplus4176.htm -share/doc/pgsql/programmer/libpqplusplus4199.htm -share/doc/pgsql/programmer/lisp.htm -share/doc/pgsql/programmer/notation.htm -share/doc/pgsql/programmer/odbc.htm -share/doc/pgsql/programmer/odbc5922.htm -share/doc/pgsql/programmer/odbc5960.htm -share/doc/pgsql/programmer/odbc6133.htm -share/doc/pgsql/programmer/odbc6155.htm -share/doc/pgsql/programmer/overview.htm -share/doc/pgsql/programmer/overview6679.htm -share/doc/pgsql/programmer/overview6704.htm -share/doc/pgsql/programmer/overview6832.htm -share/doc/pgsql/programmer/overview6888.htm -share/doc/pgsql/programmer/overview6942.htm -share/doc/pgsql/programmer/page.htm -share/doc/pgsql/programmer/page8290.htm -share/doc/pgsql/programmer/page8304.htm -share/doc/pgsql/programmer/pg-options-dev.htm -share/doc/pgsql/programmer/pgeasy-chapter.htm -share/doc/pgsql/programmer/pgtcl-pgconndefaults.htm -share/doc/pgsql/programmer/pgtcl-pgconnect.htm -share/doc/pgsql/programmer/pgtcl-pgdisconnect.htm -share/doc/pgsql/programmer/pgtcl-pgexec.htm -share/doc/pgsql/programmer/pgtcl-pglisten.htm -share/doc/pgsql/programmer/pgtcl-pgloclose.htm -share/doc/pgsql/programmer/pgtcl-pglocreat.htm -share/doc/pgsql/programmer/pgtcl-pgloexport.htm -share/doc/pgsql/programmer/pgtcl-pgloimport.htm -share/doc/pgsql/programmer/pgtcl-pglolseek.htm -share/doc/pgsql/programmer/pgtcl-pgloopen.htm -share/doc/pgsql/programmer/pgtcl-pgloread.htm -share/doc/pgsql/programmer/pgtcl-pglotell.htm -share/doc/pgsql/programmer/pgtcl-pglounlink.htm -share/doc/pgsql/programmer/pgtcl-pglowrite.htm -share/doc/pgsql/programmer/pgtcl-pgresult.htm -share/doc/pgsql/programmer/pgtcl-pgselect.htm -share/doc/pgsql/programmer/pgtcl.htm -share/doc/pgsql/programmer/pgtcl4314.htm -share/doc/pgsql/programmer/pgtcl4318.htm -share/doc/pgsql/programmer/preface.htm -share/doc/pgsql/programmer/programmer.htm -share/doc/pgsql/programmer/programmer.html -share/doc/pgsql/programmer/protocol.htm -share/doc/pgsql/programmer/protocol7255.htm -share/doc/pgsql/programmer/protocol7410.htm -share/doc/pgsql/programmer/protocol7447.htm -share/doc/pgsql/programmer/rules.htm -share/doc/pgsql/programmer/rules1139.htm -share/doc/pgsql/programmer/rules1270.htm -share/doc/pgsql/programmer/rules1284.htm -share/doc/pgsql/programmer/rules978.htm -share/doc/pgsql/programmer/signals.htm -share/doc/pgsql/programmer/spi-spiconnect.htm -share/doc/pgsql/programmer/spi-spicopytuple.htm -share/doc/pgsql/programmer/spi-spiexec.htm -share/doc/pgsql/programmer/spi-spiexecp.htm -share/doc/pgsql/programmer/spi-spifinish.htm -share/doc/pgsql/programmer/spi-spifname.htm -share/doc/pgsql/programmer/spi-spifnumber.htm -share/doc/pgsql/programmer/spi-spigetbinval.htm -share/doc/pgsql/programmer/spi-spigetrelname.htm -share/doc/pgsql/programmer/spi-spigettype.htm -share/doc/pgsql/programmer/spi-spigettypeid.htm -share/doc/pgsql/programmer/spi-spigetvalue.htm -share/doc/pgsql/programmer/spi-spimodifytuple.htm -share/doc/pgsql/programmer/spi-spipalloc.htm -share/doc/pgsql/programmer/spi-spipfree.htm -share/doc/pgsql/programmer/spi-spiprepare.htm -share/doc/pgsql/programmer/spi-spirepalloc.htm -share/doc/pgsql/programmer/spi-spisaveplan.htm -share/doc/pgsql/programmer/spi.htm -share/doc/pgsql/programmer/spi2351.htm -share/doc/pgsql/programmer/spi3064.htm -share/doc/pgsql/programmer/spi3086.htm -share/doc/pgsql/programmer/spi3091.htm -share/doc/pgsql/programmer/terminology.htm -share/doc/pgsql/programmer/triggers.htm -share/doc/pgsql/programmer/triggers1767.htm -share/doc/pgsql/programmer/triggers1824.htm -share/doc/pgsql/programmer/triggers1833.htm -share/doc/pgsql/programmer/xaggr.htm -share/doc/pgsql/programmer/xfunc.htm -share/doc/pgsql/programmer/xfunc511.htm -share/doc/pgsql/programmer/xfunc517.htm -share/doc/pgsql/programmer/xfunc522.htm -share/doc/pgsql/programmer/xfunc754.htm -share/doc/pgsql/programmer/xindex.htm -share/doc/pgsql/programmer/xoper.htm -share/doc/pgsql/programmer/xplang.htm -share/doc/pgsql/programmer/xtypes.htm -share/doc/pgsql/programmer/y2k.htm -share/doc/pgsql/tutorial/about.htm -share/doc/pgsql/tutorial/advanced.htm -share/doc/pgsql/tutorial/advanced1511.htm -share/doc/pgsql/tutorial/advanced1533.htm -share/doc/pgsql/tutorial/arch.htm -share/doc/pgsql/tutorial/biblio.htm -share/doc/pgsql/tutorial/clientserver.gif -share/doc/pgsql/tutorial/copyright.htm -share/doc/pgsql/tutorial/f17.htm -share/doc/pgsql/tutorial/index.html -share/doc/pgsql/tutorial/intro.htm -share/doc/pgsql/tutorial/intro172.htm -share/doc/pgsql/tutorial/intro300.htm -share/doc/pgsql/tutorial/intro56.htm -share/doc/pgsql/tutorial/notation.htm -share/doc/pgsql/tutorial/query.htm -share/doc/pgsql/tutorial/query1340.htm -share/doc/pgsql/tutorial/query1356.htm -share/doc/pgsql/tutorial/query1378.htm -share/doc/pgsql/tutorial/query1387.htm -share/doc/pgsql/tutorial/query1405.htm -share/doc/pgsql/tutorial/query1413.htm -share/doc/pgsql/tutorial/query1432.htm -share/doc/pgsql/tutorial/query1437.htm -share/doc/pgsql/tutorial/query1444.htm -share/doc/pgsql/tutorial/sql-language.htm -share/doc/pgsql/tutorial/sql.htm -share/doc/pgsql/tutorial/sql490.htm -share/doc/pgsql/tutorial/sql608.htm -share/doc/pgsql/tutorial/start.htm -share/doc/pgsql/tutorial/start1216.htm -share/doc/pgsql/tutorial/start1238.htm -share/doc/pgsql/tutorial/terminology.htm -share/doc/pgsql/tutorial/tutorial.htm -share/doc/pgsql/tutorial/tutorial.html -share/doc/pgsql/tutorial/y2k.htm -share/doc/pgsql/user/about.htm -share/doc/pgsql/user/app-createdb.htm -share/doc/pgsql/user/app-createlang.htm -share/doc/pgsql/user/app-createuser.htm -share/doc/pgsql/user/app-dropdb.htm -share/doc/pgsql/user/app-droplang.htm -share/doc/pgsql/user/app-dropuser.htm -share/doc/pgsql/user/app-ecpg.htm -share/doc/pgsql/user/app-initdb.htm -share/doc/pgsql/user/app-initlocation.htm -share/doc/pgsql/user/app-ipcclean.htm -share/doc/pgsql/user/app-pg-passwd.htm -share/doc/pgsql/user/app-pg-upgrade.htm -share/doc/pgsql/user/app-pgaccess.htm -share/doc/pgsql/user/app-pgadmin.htm -share/doc/pgsql/user/app-pgctl.htm -share/doc/pgsql/user/app-pgdump.htm -share/doc/pgsql/user/app-pgdumpall.htm -share/doc/pgsql/user/app-pgtclsh.htm -share/doc/pgsql/user/app-pgtksh.htm -share/doc/pgsql/user/app-postgres.htm -share/doc/pgsql/user/app-postmaster.htm -share/doc/pgsql/user/app-psql.htm -share/doc/pgsql/user/app-vacuumdb.htm -share/doc/pgsql/user/applications.htm -share/doc/pgsql/user/arrays.htm -share/doc/pgsql/user/biblio.htm -share/doc/pgsql/user/c4087.htm -share/doc/pgsql/user/c40874113.htm -share/doc/pgsql/user/c40874340.htm -share/doc/pgsql/user/c4358.htm -share/doc/pgsql/user/c43584371.htm -share/doc/pgsql/user/c4884.htm -share/doc/pgsql/user/c4929.htm -share/doc/pgsql/user/c49294939.htm -share/doc/pgsql/user/c49294943.htm -share/doc/pgsql/user/copyright.htm -share/doc/pgsql/user/datatype.htm -share/doc/pgsql/user/datatype1034.htm -share/doc/pgsql/user/datatype1066.htm -share/doc/pgsql/user/datatype1130.htm -share/doc/pgsql/user/datatype1645.htm -share/doc/pgsql/user/datatype1677.htm -share/doc/pgsql/user/datatype1916.htm -share/doc/pgsql/user/datetime-appendix.htm -share/doc/pgsql/user/datetime-appendix16981.htm -share/doc/pgsql/user/environ.htm -share/doc/pgsql/user/functions.htm -share/doc/pgsql/user/functions2589.htm -share/doc/pgsql/user/functions2729.htm -share/doc/pgsql/user/functions2872.htm -share/doc/pgsql/user/functions2972.htm -share/doc/pgsql/user/functions3439.htm -share/doc/pgsql/user/functions3637.htm -share/doc/pgsql/user/index.html -share/doc/pgsql/user/indices.htm -share/doc/pgsql/user/inherit.htm -share/doc/pgsql/user/intro.htm -share/doc/pgsql/user/intro172.htm -share/doc/pgsql/user/intro300.htm -share/doc/pgsql/user/intro56.htm -share/doc/pgsql/user/manage.htm -share/doc/pgsql/user/manage4810.htm -share/doc/pgsql/user/manage4834.htm -share/doc/pgsql/user/manage4876.htm -share/doc/pgsql/user/mvcc.htm -share/doc/pgsql/user/mvcc4564.htm -share/doc/pgsql/user/mvcc4617.htm -share/doc/pgsql/user/mvcc4629.htm -share/doc/pgsql/user/mvcc4642.htm -share/doc/pgsql/user/mvcc4719.htm -share/doc/pgsql/user/mvcc4740.htm -share/doc/pgsql/user/notation.htm -share/doc/pgsql/user/operators.htm -share/doc/pgsql/user/operators2123.htm -share/doc/pgsql/user/operators2194.htm -share/doc/pgsql/user/operators2263.htm -share/doc/pgsql/user/operators2373.htm -share/doc/pgsql/user/operators2432.htm -share/doc/pgsql/user/operators2486.htm -share/doc/pgsql/user/partial-index.htm -share/doc/pgsql/user/pl-perl.htm -share/doc/pgsql/user/pl-perl4529.htm -share/doc/pgsql/user/pl-perl4538.htm -share/doc/pgsql/user/preface.htm -share/doc/pgsql/user/sql-abort.htm -share/doc/pgsql/user/sql-altergroup.htm -share/doc/pgsql/user/sql-altertable.htm -share/doc/pgsql/user/sql-alteruser.htm -share/doc/pgsql/user/sql-begin.htm -share/doc/pgsql/user/sql-close.htm -share/doc/pgsql/user/sql-cluster.htm -share/doc/pgsql/user/sql-commands.htm -share/doc/pgsql/user/sql-comment.htm -share/doc/pgsql/user/sql-commit.htm -share/doc/pgsql/user/sql-copy.htm -share/doc/pgsql/user/sql-createaggregate.htm -share/doc/pgsql/user/sql-createconstraint.htm -share/doc/pgsql/user/sql-createdatabase.htm -share/doc/pgsql/user/sql-createfunction.htm -share/doc/pgsql/user/sql-creategroup.htm -share/doc/pgsql/user/sql-createindex.htm -share/doc/pgsql/user/sql-createlanguage.htm -share/doc/pgsql/user/sql-createoperator.htm -share/doc/pgsql/user/sql-createrule.htm -share/doc/pgsql/user/sql-createsequence.htm -share/doc/pgsql/user/sql-createtable.htm -share/doc/pgsql/user/sql-createtableas.htm -share/doc/pgsql/user/sql-createtrigger.htm -share/doc/pgsql/user/sql-createtype.htm -share/doc/pgsql/user/sql-createuser.htm -share/doc/pgsql/user/sql-createview.htm -share/doc/pgsql/user/sql-declare.htm -share/doc/pgsql/user/sql-delete.htm -share/doc/pgsql/user/sql-dropaggregate.htm -share/doc/pgsql/user/sql-dropdatabase.htm -share/doc/pgsql/user/sql-dropfunction.htm -share/doc/pgsql/user/sql-dropgroup.htm -share/doc/pgsql/user/sql-dropindex.htm -share/doc/pgsql/user/sql-droplanguage.htm -share/doc/pgsql/user/sql-dropoperator.htm -share/doc/pgsql/user/sql-droprule.htm -share/doc/pgsql/user/sql-dropsequence.htm -share/doc/pgsql/user/sql-droptable.htm -share/doc/pgsql/user/sql-droptrigger.htm -share/doc/pgsql/user/sql-droptype.htm -share/doc/pgsql/user/sql-dropuser.htm -share/doc/pgsql/user/sql-dropview.htm -share/doc/pgsql/user/sql-end.htm -share/doc/pgsql/user/sql-explain.htm -share/doc/pgsql/user/sql-fetch.htm -share/doc/pgsql/user/sql-grant.htm -share/doc/pgsql/user/sql-insert.htm -share/doc/pgsql/user/sql-listen.htm -share/doc/pgsql/user/sql-load.htm -share/doc/pgsql/user/sql-lock.htm -share/doc/pgsql/user/sql-move.htm -share/doc/pgsql/user/sql-notify.htm -share/doc/pgsql/user/sql-reindex.htm -share/doc/pgsql/user/sql-reset.htm -share/doc/pgsql/user/sql-revoke.htm -share/doc/pgsql/user/sql-rollback.htm -share/doc/pgsql/user/sql-select.htm -share/doc/pgsql/user/sql-selectinto.htm -share/doc/pgsql/user/sql-set.htm -share/doc/pgsql/user/sql-show.htm -share/doc/pgsql/user/sql-truncate.htm -share/doc/pgsql/user/sql-unlisten.htm -share/doc/pgsql/user/sql-update.htm -share/doc/pgsql/user/sql-vacuum.htm -share/doc/pgsql/user/storage.htm -share/doc/pgsql/user/syntax.htm -share/doc/pgsql/user/syntax515.htm -share/doc/pgsql/user/syntax521.htm -share/doc/pgsql/user/syntax539.htm -share/doc/pgsql/user/syntax604.htm -share/doc/pgsql/user/syntax649.htm -share/doc/pgsql/user/syntax654.htm -share/doc/pgsql/user/terminology.htm -share/doc/pgsql/user/typeconv.htm -share/doc/pgsql/user/typeconv3755.htm -share/doc/pgsql/user/typeconv3818.htm -share/doc/pgsql/user/typeconv3871.htm -share/doc/pgsql/user/typeconv3891.htm -share/doc/pgsql/user/user.htm -share/doc/pgsql/user/user.html -share/doc/pgsql/user/utilities.htm -share/doc/pgsql/user/y2k.htm -@dirrm share/doc/pgsql/admin -@dirrm share/doc/pgsql/postgres -@dirrm share/doc/pgsql/programmer -@dirrm share/doc/pgsql/tutorial -@dirrm share/doc/pgsql/user -@dirrm share/doc/pgsql diff --git a/databases/postgresql82-server/pkg-plist.jdbc b/databases/postgresql82-server/pkg-plist.jdbc deleted file mode 100644 index bef5d75506b4..000000000000 --- a/databases/postgresql82-server/pkg-plist.jdbc +++ /dev/null @@ -1,13 +0,0 @@ -share/examples/pgsql/jdbc/ImageViewer.java -share/examples/pgsql/jdbc/basic.java -share/examples/pgsql/jdbc/blobtest.java -share/examples/pgsql/jdbc/datestyle.java -share/examples/pgsql/jdbc/metadata.java -share/examples/pgsql/jdbc/psql.java -share/examples/pgsql/jdbc/threadsafe.java -share/examples/pgsql/jdbc/README -share/examples/pgsql/jdbc/README_6.3 -@dirrm share/examples/pgsql/jdbc -@dirrm share/examples/pgsql -share/java/classes/postgresql.jar -@unexec rmdir %D/share/java 2>/dev/null || true diff --git a/databases/postgresql82-server/pkg-plist.tcl b/databases/postgresql82-server/pkg-plist.tcl deleted file mode 100644 index b01eaf1571ed..000000000000 --- a/databases/postgresql82-server/pkg-plist.tcl +++ /dev/null @@ -1,141 +0,0 @@ -pgsql/bin/pgaccess -pgsql/bin/pgtclsh -pgsql/bin/pgtksh -pgsql/include/libpgtcl.h -pgsql/lib/libpgtcl.a -pgsql/lib/libpgtcl.so -pgsql/lib/libpgtcl.so.2 -pgsql/lib/pltcl.so -pgsql/pgaccess/images/icon_button.gif -pgsql/pgaccess/images/icon_checkbutton.gif -pgsql/pgaccess/images/icon_entry.gif -pgsql/pgaccess/images/icon_frame.gif -pgsql/pgaccess/images/icon_label.gif -pgsql/pgaccess/images/icon_listbox.gif -pgsql/pgaccess/images/icon_query.gif -pgsql/pgaccess/images/icon_radiobutton.gif -pgsql/pgaccess/images/icon_text.gif -pgsql/pgaccess/lib/database.tcl -pgsql/pgaccess/lib/forms.tcl -pgsql/pgaccess/lib/functions.tcl -pgsql/pgaccess/lib/help/abort.hlp -pgsql/pgaccess/lib/help/add_records.hlp -pgsql/pgaccess/lib/help/alter_table.hlp -pgsql/pgaccess/lib/help/alter_user.hlp -pgsql/pgaccess/lib/help/author.hlp -pgsql/pgaccess/lib/help/begin.hlp -pgsql/pgaccess/lib/help/close.hlp -pgsql/pgaccess/lib/help/cluster.hlp -pgsql/pgaccess/lib/help/commit.hlp -pgsql/pgaccess/lib/help/copy.hlp -pgsql/pgaccess/lib/help/copyrights.hlp -pgsql/pgaccess/lib/help/create_aggregate.hlp -pgsql/pgaccess/lib/help/create_database.hlp -pgsql/pgaccess/lib/help/create_function.hlp -pgsql/pgaccess/lib/help/create_index.hlp -pgsql/pgaccess/lib/help/create_language.hlp -pgsql/pgaccess/lib/help/create_operator.hlp -pgsql/pgaccess/lib/help/create_rule.hlp -pgsql/pgaccess/lib/help/create_sequence.hlp -pgsql/pgaccess/lib/help/create_table.hlp -pgsql/pgaccess/lib/help/create_table_as.hlp -pgsql/pgaccess/lib/help/create_trigger.hlp -pgsql/pgaccess/lib/help/create_type.hlp -pgsql/pgaccess/lib/help/create_user.hlp -pgsql/pgaccess/lib/help/create_view.hlp -pgsql/pgaccess/lib/help/data_types.hlp -pgsql/pgaccess/lib/help/datefunc.hlp -pgsql/pgaccess/lib/help/declare.hlp -pgsql/pgaccess/lib/help/delete.hlp -pgsql/pgaccess/lib/help/drop_aggregate.hlp -pgsql/pgaccess/lib/help/drop_database.hlp -pgsql/pgaccess/lib/help/drop_function.hlp -pgsql/pgaccess/lib/help/drop_index.hlp -pgsql/pgaccess/lib/help/drop_language.hlp -pgsql/pgaccess/lib/help/drop_operator.hlp -pgsql/pgaccess/lib/help/drop_rule.hlp -pgsql/pgaccess/lib/help/drop_sequence.hlp -pgsql/pgaccess/lib/help/drop_table.hlp -pgsql/pgaccess/lib/help/drop_trigger.hlp -pgsql/pgaccess/lib/help/drop_type.hlp -pgsql/pgaccess/lib/help/drop_user.hlp -pgsql/pgaccess/lib/help/drop_view.hlp -pgsql/pgaccess/lib/help/explain.hlp -pgsql/pgaccess/lib/help/fetch.hlp -pgsql/pgaccess/lib/help/form_design.hlp -pgsql/pgaccess/lib/help/forms.hlp -pgsql/pgaccess/lib/help/functions.hlp -pgsql/pgaccess/lib/help/geomfunc.hlp -pgsql/pgaccess/lib/help/grant.hlp -pgsql/pgaccess/lib/help/history.hlp -pgsql/pgaccess/lib/help/index.hlp -pgsql/pgaccess/lib/help/inheritance.hlp -pgsql/pgaccess/lib/help/insert.hlp -pgsql/pgaccess/lib/help/ipv4func.hlp -pgsql/pgaccess/lib/help/isolation.hlp -pgsql/pgaccess/lib/help/keywords.hlp -pgsql/pgaccess/lib/help/listen.hlp -pgsql/pgaccess/lib/help/load.hlp -pgsql/pgaccess/lib/help/lock.hlp -pgsql/pgaccess/lib/help/mathfunc.hlp -pgsql/pgaccess/lib/help/move.hlp -pgsql/pgaccess/lib/help/mvcc.hlp -pgsql/pgaccess/lib/help/new_query.hlp -pgsql/pgaccess/lib/help/new_table.hlp -pgsql/pgaccess/lib/help/notify.hlp -pgsql/pgaccess/lib/help/open_query.hlp -pgsql/pgaccess/lib/help/open_table.hlp -pgsql/pgaccess/lib/help/pgfunctions.hlp -pgsql/pgaccess/lib/help/postgresql.hlp -pgsql/pgaccess/lib/help/queries.hlp -pgsql/pgaccess/lib/help/reports.hlp -pgsql/pgaccess/lib/help/reset.hlp -pgsql/pgaccess/lib/help/revoke.hlp -pgsql/pgaccess/lib/help/rollback.hlp -pgsql/pgaccess/lib/help/schema.hlp -pgsql/pgaccess/lib/help/scripts.hlp -pgsql/pgaccess/lib/help/select.hlp -pgsql/pgaccess/lib/help/select_into.hlp -pgsql/pgaccess/lib/help/sequences.hlp -pgsql/pgaccess/lib/help/set.hlp -pgsql/pgaccess/lib/help/show.hlp -pgsql/pgaccess/lib/help/sql_guide.hlp -pgsql/pgaccess/lib/help/sqlfunc.hlp -pgsql/pgaccess/lib/help/stringfunc.hlp -pgsql/pgaccess/lib/help/tables.hlp -pgsql/pgaccess/lib/help/unlisten.hlp -pgsql/pgaccess/lib/help/update.hlp -pgsql/pgaccess/lib/help/users.hlp -pgsql/pgaccess/lib/help/vacuum.hlp -pgsql/pgaccess/lib/help/view_table_structure.hlp -pgsql/pgaccess/lib/help/views.hlp -pgsql/pgaccess/lib/help/visual_designer.hlp -pgsql/pgaccess/lib/help/y2k.hlp -pgsql/pgaccess/lib/help.tcl -pgsql/pgaccess/lib/languages/czech -pgsql/pgaccess/lib/languages/deutsch -pgsql/pgaccess/lib/languages/francais -pgsql/pgaccess/lib/languages/italiano -pgsql/pgaccess/lib/languages/magyar -pgsql/pgaccess/lib/languages/portugues -pgsql/pgaccess/lib/languages/romana -pgsql/pgaccess/lib/languages/russian.koi8r -pgsql/pgaccess/lib/languages/russian_win -pgsql/pgaccess/lib/languages/spanish -pgsql/pgaccess/lib/mainlib.tcl -pgsql/pgaccess/lib/preferences.tcl -pgsql/pgaccess/lib/queries.tcl -pgsql/pgaccess/lib/reports.tcl -pgsql/pgaccess/lib/schema.tcl -pgsql/pgaccess/lib/scripts.tcl -pgsql/pgaccess/lib/sequences.tcl -pgsql/pgaccess/lib/tables.tcl -pgsql/pgaccess/lib/users.tcl -pgsql/pgaccess/lib/views.tcl -pgsql/pgaccess/lib/visualqb.tcl -pgsql/pgaccess/main.tcl -@dirrm pgsql/pgaccess/images -@dirrm pgsql/pgaccess/lib/help -@dirrm pgsql/pgaccess/lib/languages -@dirrm pgsql/pgaccess/lib -@dirrm pgsql/pgaccess diff --git a/databases/postgresql82-server/scripts/configure b/databases/postgresql82-server/scripts/configure deleted file mode 100644 index 4a92ee450ebe..000000000000 --- a/databases/postgresql82-server/scripts/configure +++ /dev/null @@ -1,7 +0,0 @@ -#! /bin/sh - -# $FreeBSD$ - -cd $WRKSRC || exit 1 - -perl -pi -e "s=!!JAVA_HOME!!=${JAVA_HOME}=; s=!!PREFIX!!=${PREFIX}=" ${WRKSRC}/interfaces/jdbc/Makefile diff --git a/databases/postgresql82-server/scripts/createuser b/databases/postgresql82-server/scripts/createuser deleted file mode 100644 index 2abe201e7a4b..000000000000 --- a/databases/postgresql82-server/scripts/createuser +++ /dev/null @@ -1,50 +0,0 @@ -#!/usr/bin/perl -# - -eval '(exit $?0)' && eval 'exec /usr/bin/perl -S $0 ${1+"$@"}' -& eval 'exec /usr/bin/perl -S $0 $argv:q' -if 0; - -if( $> ) { - print "\nYou must be root to run this step!\n\n"; - exit 1; -} - -if( getpwnam( "pgsql" ) ) { - ( $null, $null, $pgUID ) = getpwnam( "pgsql" ); -} else { - $pgUID = 70; - while( getpwuid( $pgUID ) ) { - $pgUID++; - } -} - -if( getgrnam( "pgsql" ) ) { - ( $null, $null, $pgGID ) = getgrnam( "pgsql" ); -} else { - $pgGID = 70; - while( getgrgid( $pgGID ) ) { - $pgGID++; - } - &append_file( "/etc/group", "pgsql:*:$pgGID:" ); -} - -print "pgsql user using uid $pgUID\n"; -print "pgsql user using gid $pgGID\n"; - -system( "/usr/bin/chpass -a \"pgsql:*:$pgUID:$pgGID\:\:0:0:PostgreSQL pseudo-user:$ENV{'PREFIX'}/pgsql:/bin/sh\"" ); - -sub append_file { - local($file,@list) = @_; - local($LOCK_EX) = 2; - local($LOCK_NB) = 4; - local($LOCK_UN) = 8; - - open(F, ">> $file") || die "$file: $!\n"; - while( ! flock( F, $LOCK_EX | $LOCK_NB ) ) { - exit 1; - } - print F join( "\n", @list) . "\n"; - close F; - flock( F, $LOCK_UN ); -} diff --git a/databases/postgresql83-server/Makefile b/databases/postgresql83-server/Makefile deleted file mode 100644 index 94aa22cad135..000000000000 --- a/databases/postgresql83-server/Makefile +++ /dev/null @@ -1,259 +0,0 @@ -# New ports collection makefile for: PostgreSQL -# Date created: November 13, 1998 -# Whom: Marc G. Fournier <scrappy@FreeBSD.org> -# -# $FreeBSD$ -# - -PORTNAME= postgresql -PORTVERSION= 7.0.2 -CATEGORIES= databases -MASTER_SITES= ftp://ftp.postgresql.org/pub/%SUBDIR%/ \ - ftp://ftp.de.postgresql.org/%SUBDIR%/ \ - ftp://ftp.iodynamics.com/pub/mirror/postgresql/%SUBDIR%/ \ - ftp://ftp.digex.net/pub/packages/database/postgresql/%SUBDIR%/ \ - ftp://ftp.sunet.se/pub/unix/databases/relational/postgresql/%SUBDIR%/ -MASTER_SITE_SUBDIR= source/v${PORTVERSION} -DISTFILES= ${PORTNAME}-${PORTVERSION}.base${EXTRACT_SUFX} \ - ${PORTNAME}-${PORTVERSION}.support${EXTRACT_SUFX} \ - ${PORTNAME}-${PORTVERSION}.docs${EXTRACT_SUFX} -# ${PORTNAME}-${PORTVERSION}.test${EXTRACT_SUFX} -DIST_SUBDIR= postgresql - -MAINTAINER= andreas@FreeBSD.org - -.if ${MACHINE_ARCH} == "alpha" -BROKEN= doesn\'t build on the alpha yet -.endif - -Y2K= http://www.postgresql.org/y2k.html - -INSTALLS_SHLIB= YES -LDCONFIG_DIRS= %%PREFIX%%/pgsql/lib - -# if you want to use the tcl/tk frontend pgaccess, then you need to build -# postgresql with tcl support by typing: make -DWITH_TCL -.if defined(WITH_TCL) -TCL_INCDIR= ${LOCALBASE}/include/tcl8.3 -TK_INCDIR= ${LOCALBASE}/include/tk8.3 -MAKE_ENV= TCL_INCDIR=${TCL_INCDIR} -CONFIGURE_ENV= WISH=${LOCALBASE}/bin/wish8.3 -LIB_DEPENDS= tcl83.1:${PORTSDIR}/lang/tcl83 \ - tk83.1:${PORTSDIR}/x11-toolkits/tk83 -CONFIGURE_TCL= --with-tcl --with-tclconfig="${LOCALBASE}/lib/tcl8.3 ${LOCALBASE}/lib/tk8.3" -.endif - -# if you want to disable the multibyte support, type: -# make -DWITHOUT_MULTIBYTE -# -# if you want to set the default encoding for the multibyte support, type: -# make DEFAULT_ENCODING=<encoding> -# where <encoding> is one of these: -# SQL_ASCII LATIN1 LATIN2 LATIN3 LATIN4 LATIN5 -# EUC_JP EUC_CN EUC_KR EUC_TW KOI8 -# UNICODE MULE_INTERNAL WIN ALT -.if defined(WITHOUT_MULTIBYTE) -CONFIGURE_MULTIBYTE= # none -.elif defined(DEFAULT_ENCODING) -CONFIGURE_MULTIBYTE= --enable-multibyte="${DEFAULT_ENCODING}" -.else -CONFIGURE_MULTIBYTE= --enable-multibyte -.endif - -# if you want jdbc, type make -DWITH_JDBC -# Honors JAVA_HOME if you have it set, and don't want the dependency. -.if defined(WITH_JDBC) -JAVA_HOME?= ${LOCALBASE}/jdk1.1.8 -BUILD_DEPENDS= ${JAVA_HOME}/bin/javac:${PORTSDIR}/java/jdk -SCRIPTS_ENV+= JAVA_HOME=${JAVA_HOME} -.endif - -WRKSRC= ${WRKDIR}/${DISTNAME}/src -DOCDIR= ${WRKDIR}/${DISTNAME}/doc - -USE_GMAKE= YES -MAKEFILE= GNUmakefile -HAS_CONFIGURE= YES -CONFIGURE_ARGS= --prefix=${PREFIX}/pgsql \ - --enable-locale \ - --with-template=`uname -s | ${TR} '[A-Z]' '[a-z]'` \ - --with-includes="${PREFIX}/include ${TCL_INCDIR} ${TK_INCDIR}" \ - ${CONFIGURE_TCL} \ - ${CONFIGURE_MULTIBYTE} \ - --with-libraries=${PREFIX}/lib - -MAN1= createdb.1 createlang.1 createuser.1 dropdb.1 droplang.1 \ - dropuser.1 ecpg.1 initdb.1 initlocation.1 ipcclean.1 pg_ctl.1 \ - pg_dump.1 pg_dumpall.1 pg_passwd.1 pg_upgrade.1 pgaccess.1 \ - pgadmin.1 pgtclsh.1 pgtksh.1 postgres.1 postmaster.1 psql.1 \ - vacuumdb.1 -MANL= abort.l alter_group.l alter_table.l alter_user.l \ - begin.l close.l cluster.l comment.l commit.l copy.l \ - create_aggregate.l create_constraint_trigger.l \ - create_database.l create_function.l create_group.l \ - create_index.l create_language.l create_operator.l \ - create_rule.l create_sequence.l create_table.l \ - create_table_as.l create_trigger.l create_type.l \ - create_user.l create_view.l declare.l delete.l \ - drop_aggregate.l drop_database.l drop_function.l \ - drop_group.l drop_index.l drop_language.l \ - drop_operator.l drop_rule.l drop_sequence.l \ - drop_table.l drop_trigger.l drop_type.l drop_user.l \ - drop_view.l end.l explain.l fetch.l grant.l insert.l \ - listen.l load.l lock.l move.l notify.l reindex.l \ - reset.l revoke.l rollback.l select.l select_into.l \ - set.l show.l truncate.l unlisten.l update.l vacuum.l - -MANPREFIX= ${PREFIX}/pgsql - -pre-fetch: - @${ECHO_MSG} "To install and run postgresql you need to compile kernel with:" - @${ECHO_MSG} " options \"SYSVSHM, SYSVSEM, SYSVMSG\"" -.if !defined(WITH_TCL) - @${ECHO_MSG} "To build the \"PostgreSQL to Tcl interface library\", libpgtcl, type:" - @${ECHO_MSG} " make -DWITH_TCL" -.else - @${ECHO_MSG} "Building PostgreSQL with \"libpgtcl\"." -.endif -.if !defined(WITHOUT_MULTIBYTE) - @${ECHO_MSG} "To disable multibyte support, type:" - @${ECHO_MSG} " make -DWITHOUT_MULTIBYTE" -.if !defined(DEFAULT_ENCODING) - @${ECHO_MSG} "To set the default encoding for the multibyte support, type:" - @${ECHO_MSG} " make DEFAULT_ENCODING=<encoding>" - @${ECHO_MSG} "where <encoding> is one of these:" - @${ECHO_MSG} " SQL_ASCII LATIN1 LATIN2 LATIN3 LATIN4 LATIN5" - @${ECHO_MSG} " EUC_JP EUC_CN EUC_KR EUC_TW KOI8" - @${ECHO_MSG} " UNICODE MULE_INTERNAL WIN ALT" -.else - @${ECHO_MSG} "The default encoding is '${DEFAULT_ENCODING}'." -.endif -.else - @${ECHO_MSG} "Building PostgreSQL without multibyte support." -.endif -.if !defined(WITH_JDBC) - @${ECHO_MSG} "To build Java (JDBC) support, type:" - @${ECHO_MSG} " make -DWITH_JDBC" -.else - @${ECHO_MSG} "Building PostgreSQL with \"postgresql.jar\"." -.endif - -post-patch: - @ ${MV} ${WRKSRC}/template/freebsd ${WRKSRC}/template/freebsd.orig - @ ${SED} -e 's#CFLAGS:-O2 -m486 -pipe#CFLAGS:${CFLAGS}#' \ - -e 's#USE_LOCALE:no#USE_LOCALE:yes#' \ - ${WRKSRC}/template/freebsd.orig >> ${WRKSRC}/template/freebsd - @ ${MV} ${WRKSRC}/Makefile.global.in ${WRKSRC}/Makefile.global.in.old - @ ${SED} -e 's=!!PREFIX!!=${PREFIX}=g' \ - ${WRKSRC}/Makefile.global.in.old \ - >> ${WRKSRC}/Makefile.global.in - -post-build: -.if defined(WITH_JDBC) - @ cd ${WRKSRC}/interfaces/jdbc && ${GMAKE} -.if !defined(NOPORTDOCS) - @ cd ${WRKSRC}/interfaces/jdbc && ${GMAKE} examples -.endif -.endif - @ ${ECHO} "------------------------------------------------------------" - @ ${ECHO} "Dump existing databases, before installing new db version !!" - @ ${ECHO} "Detailed instructions, see" - @ ${ECHO} "${WRKDIR}/${DISTNAME}/INSTALL" - @ ${ECHO} "------------------------------------------------------------" - -pre-install: -.if defined(PACKAGE_BUILDING) - ${RM} -rf ${PREFIX}/pgsql -.endif - @ ${MKDIR} ${PREFIX}/pgsql - @ ${SETENV} ${MAKE_ENV} perl ${SCRIPTDIR}/createuser - -post-install: -.if defined(NOPORTDOCS) - @ ( cd ${DOCDIR}; ${GMAKE} man ) -.else - @ ( cd ${DOCDIR}; ${GMAKE} install ) -.endif - @ if [ ! -f ${PREFIX}/pgsql/.profile ]; then \ - ${ECHO} "PATH=${PATH}:${PREFIX}/pgsql/bin" \ - > ${PREFIX}/pgsql/.profile; \ - ${ECHO} "MANPATH=${MANPATH}:${PREFIX}/pgsql/man" \ - >> ${PREFIX}/pgsql/.profile; \ - ${ECHO} "PGLIB=${PREFIX}/pgsql/lib" \ - >> ${PREFIX}/pgsql/.profile; \ - ${ECHO} "# note: PGDATA overwrites the -D startup option" \ - >> ${PREFIX}/pgsql/.profile; \ - ${ECHO} "PGDATA=${PREFIX}/pgsql/data" \ - >> ${PREFIX}/pgsql/.profile; \ - ${ECHO} "DISPLAY=:0" \ - >> ${PREFIX}/pgsql/.profile; \ - ${ECHO} "export PATH MANPATH PGLIB PGDATA DISPLAY" \ - >> ${PREFIX}/pgsql/.profile; \ - ${ECHO} "# if you want to make regression tests use this TZ" \ - >> ${PREFIX}/pgsql/.profile; \ - ${ECHO} "#TZ=PST8PDT" \ - >> ${PREFIX}/pgsql/.profile; \ - ${ECHO} "#export TZ" \ - >> ${PREFIX}/pgsql/.profile; \ - fi - @ ${CHOWN} -R pgsql:pgsql ${PREFIX}/pgsql - @ ${ECHO} 'Initializing PostgreSQL Databases - this may take a few minutes...' - @ ${SETENV} OBJFORMAT=${PORTOBJFORMAT} ${LDCONFIG} -m ${PREFIX}/pgsql/lib - @ su -l pgsql -c 'PATH=${PREFIX}/pgsql/bin:${PATH} LD_LIBRARY_PATH=${PREFIX}/pgsql/lib ${PREFIX}/pgsql/bin/initdb --pglib=${PREFIX}/pgsql/lib --pgdata=${PREFIX}/pgsql/data' - @ ${SED} -e "s=!!PREFIX!!=${PREFIX}=g" < ${FILESDIR}/pgsql.sh.tmpl \ - > ${PREFIX}/etc/rc.d/pgsql.sh - @ ${CHMOD} 554 ${PREFIX}/etc/rc.d/pgsql.sh - @ ${CHOWN} root.pgsql ${PREFIX}/etc/rc.d/pgsql.sh - @ ${INSTALL_DATA} ${FILESDIR}/post-install-notes ${PREFIX}/pgsql -.if defined(WITHOUT_MULTIBYTE) - @${CP} ${TMPPLIST} ${TMPPLIST}.nomulti - @${GREP} -v pgsql/bin/pg_encoding ${TMPPLIST}.nomulti > ${TMPPLIST} -.endif -.if defined(WITH_TCL) - @${CP} ${TMPPLIST} ${TMPPLIST}.notcl - @${CAT} ${PKGDIR}/PLIST.tcl ${TMPPLIST}.notcl > ${TMPPLIST} - @${RM} ${TMPPLIST}.notcl -.endif -.if defined(WITH_JDBC) - @ ${MKDIR} -m 0555 ${PREFIX}/share/java/classes - @ ${INSTALL_DATA} ${WRKSRC}/interfaces/jdbc/postgresql.jar \ - ${PREFIX}/share/java/classes/postgresql.jar - @ ${ECHO_MSG} "---------------------------------------------------------" - @ ${ECHO_MSG} "Putting postgresql.jar in" - @ ${ECHO_MSG} "${PREFIX}/share/java/classes/postgresql.jar" - @ ${ECHO_MSG} "Add this to your CLASSPATH!" - @ ${ECHO_MSG} "ALSO NOTE: path inside jar file modified from 6.5.x:" - @ ${ECHO_MSG} " 'postgresql.*' -> 'org.postgresql.*'!" - @ ${ECHO_MSG} "You will need to modify you applications' props files." - @ ${ECHO_MSG} "---------------------------------------------------------" - @ ${CAT} ${PKGDIR}/PLIST.jdbc >> ${TMPPLIST} -.if !defined(NOPORTDOCS) - @ ${MKDIR} -m 0555 ${PREFIX}/share/examples/pgsql/jdbc - @ ${INSTALL_DATA} ${WRKSRC}/interfaces/jdbc/example/*java \ - ${PREFIX}/share/examples/pgsql/jdbc - @ ${INSTALL_DATA} ${WRKSRC}/interfaces/jdbc/README* \ - ${PREFIX}/share/examples/pgsql/jdbc - @ ${ECHO_MSG} "---------------------------------------------------------" - @ ${ECHO_MSG} "Putting jdbc examples into ${PREFIX}/share/examples/pgsql" - @ ${ECHO_MSG} "---------------------------------------------------------" - @ ${CAT} ${PKGDIR}/PLIST.doc >> ${TMPPLIST} -.endif -.endif -.if !defined(NOPORTDOCS) - ${MKDIR} ${PREFIX}/share/doc/pgsql - @ ${GMAKE} -C ${WRKDIR}/${DISTNAME}/doc install - ${INSTALL_MAN} ${WRKDIR}/${DISTNAME}/doc/FAQ* ${PREFIX}/share/doc/pgsql - ${INSTALL_MAN} ${WRKDIR}/${DISTNAME}/doc/README* ${PREFIX}/share/doc/pgsql - ${INSTALL_MAN} ${WRKDIR}/${DISTNAME}/doc/TODO ${PREFIX}/share/doc/pgsql -# ${INSTALL_MAN} ${WRKDIR}/${DISTNAME}/doc/*ps.gz ${PREFIX}/share/doc/pgsql -.endif -.if !defined(BATCH) - @ more -e ${FILESDIR}/post-install-notes -.endif -.if !defined(DEBUG_FLAGS) -.for file in ecpg pg_dump pg_id pg_passwd pg_version postgres psql - @ strip ${PREFIX}/pgsql/bin/${file} -.endfor -.endif - -.include <bsd.port.mk> diff --git a/databases/postgresql83-server/distinfo b/databases/postgresql83-server/distinfo deleted file mode 100644 index 309ea1e11614..000000000000 --- a/databases/postgresql83-server/distinfo +++ /dev/null @@ -1,4 +0,0 @@ -MD5 (postgresql/postgresql-7.0.2.base.tar.gz) = 871d23b85d9a3599a7ed75dfc7da7ba7 -MD5 (postgresql/postgresql-7.0.2.support.tar.gz) = c21180a6485d85785c8e69f0cbff05dd -MD5 (postgresql/postgresql-7.0.2.docs.tar.gz) = efac1f87463f252e54d72b256885b883 -MD5 (postgresql/postgresql-7.0.2.test.tar.gz) = 3443b3d83194c396f20aee2adc6f93bf diff --git a/databases/postgresql83-server/files/patch-aj b/databases/postgresql83-server/files/patch-aj deleted file mode 100644 index 4231fc94ede9..000000000000 --- a/databases/postgresql83-server/files/patch-aj +++ /dev/null @@ -1,67 +0,0 @@ ---- bin/pg_passwd/pg_passwd.c.orig Mon Apr 17 05:45:18 2000 -+++ bin/pg_passwd/pg_passwd.c Sat May 20 17:54:59 2000 -@@ -18,11 +18,15 @@ - - #endif - -+#ifndef _POSIX_SOURCE -+# define _PASSWORD_LEN 128 /* max length, not containing NULL */ -+#endif -+ - char *comname; - static void usage(FILE *stream); - static void read_pwd_file(char *filename); - static void write_pwd_file(char *filename, char *bkname); --static void encrypt_pwd(char key[9], char salt[3], char passwd[14]); -+static void encrypt_pwd(char key[9], char salt[3], char passwd[_PASSWORD_LEN+1]); - static void prompt_for_username(char *username); - static void prompt_for_password(char *prompt, char *password); - -@@ -150,7 +154,7 @@ - - if (q != NULL) - *(q++) = '\0'; -- if (strlen(p) != 13) -+ if (strlen(p) > _PASSWORD_LEN) - { - fprintf(stderr, "WARNING: %s: line %d: illegal password length.\n", - filename, npwds + 1); -@@ -214,7 +218,7 @@ - } - - static void --encrypt_pwd(char key[9], char salt[3], char passwd[14]) -+encrypt_pwd(char key[9], char salt[3], char passwd[_PASSWORD_LEN+1]) - { - int n; - -@@ -246,9 +250,9 @@ - - #ifdef NOT_USED - static int --check_pwd(char key[9], char passwd[14]) -+check_pwd(char key[9], char passwd[_PASSWORD_LEN+1]) - { -- char shouldbe[14]; -+ char shouldbe[_PASSWORD_LEN+1]; - char salt[3]; - - salt[0] = passwd[0]; -@@ -256,7 +260,7 @@ - salt[2] = '\0'; - encrypt_pwd(key, salt, shouldbe); - -- return strncmp(shouldbe, passwd, 13) == 0 ? 1 : 0; -+ return strncmp(shouldbe, passwd, _PASSWORD_LEN) == 0 ? 1 : 0; - } - - #endif -@@ -332,7 +336,7 @@ - char salt[3]; - char key[9], - key2[9]; -- char e_passwd[14]; -+ char e_passwd[_PASSWORD_LEN+1]; - int i; - - comname = argv[0]; diff --git a/databases/postgresql83-server/files/patch-ar b/databases/postgresql83-server/files/patch-ar deleted file mode 100644 index c5c8096fc141..000000000000 --- a/databases/postgresql83-server/files/patch-ar +++ /dev/null @@ -1,11 +0,0 @@ ---- configure.orig Sun Oct 10 14:37:07 1999 -+++ configure Sun Oct 10 14:37:29 1999 -@@ -1429,7 +1429,7 @@ - ELF_SYS=true - else - rm -rf conftest* -- if test "X$elf" = "Xyes" -+ if test "X$PORTOBJFORMAT" = "Xelf" - then - ELF_SYS=true - else diff --git a/databases/postgresql83-server/files/patch-as b/databases/postgresql83-server/files/patch-as deleted file mode 100644 index 3282168c4aed..000000000000 --- a/databases/postgresql83-server/files/patch-as +++ /dev/null @@ -1,11 +0,0 @@ ---- Makefile.global.in.orig Sun Dec 6 00:08:56 1998 -+++ Makefile.global.in Sat Feb 27 04:23:12 1999 -@@ -79,7 +79,7 @@ - POSTMANDIR= $(POSTGRESDIR)/man - - # Where the formatted documents (e.g., the reference manual) get installed. --POSTDOCDIR= $(POSTGRESDIR)/doc -+POSTDOCDIR= !!PREFIX!!/share/doc/pgsql - - # Where the header files necessary to build frontend programs get installed. - HEADERDIR= $(POSTGRESDIR)/include diff --git a/databases/postgresql83-server/files/patch-at b/databases/postgresql83-server/files/patch-at deleted file mode 100644 index 93e68a708211..000000000000 --- a/databases/postgresql83-server/files/patch-at +++ /dev/null @@ -1,11 +0,0 @@ ---- ../doc/Makefile.orig Sun Nov 29 06:30:13 1998 -+++ ../doc/Makefile Mon Jun 21 17:00:13 1999 -@@ -12,7 +12,7 @@ - # - #---------------------------------------------------------------------------- - --PGDOCS= $(POSTGRESDIR)/doc -+PGDOCS= $(POSTDOCDIR) - SRCDIR= ../src - - TAR= tar diff --git a/databases/postgresql83-server/files/patch-ba b/databases/postgresql83-server/files/patch-ba deleted file mode 100644 index a3b679b882c5..000000000000 --- a/databases/postgresql83-server/files/patch-ba +++ /dev/null @@ -1,25 +0,0 @@ ---- interfaces/jdbc/Makefile.orig Tue Mar 14 16:55:17 2000 -+++ interfaces/jdbc/Makefile Sun Apr 16 21:16:43 2000 -@@ -10,10 +10,10 @@ - - FIND = find - IDL2JAVA = idltojava -fno-cpp -fno-tie --JAR = jar --JAVA = java --JAVAC = javac -g --JAVADOC = javadoc -+JAR = !!JAVA_HOME!!/bin/jar -+JAVA = !!JAVA_HOME!!/bin/java -+JAVAC = !!JAVA_HOME!!/bin/javac -+JAVADOC = !!JAVA_HOME!!/bin/javadoc - RM = rm -f - TOUCH = touch - -@@ -40,6 +40,7 @@ - @echo To compile, type: - @echo " $(MAKE) jdbc2" - @echo ------------------------------------------------------------ -+ $(MAKE) jdbc1 - - msg: - @echo ------------------------------------------------------------ diff --git a/databases/postgresql83-server/files/patch-bb b/databases/postgresql83-server/files/patch-bb deleted file mode 100644 index ea0f1732dcb0..000000000000 --- a/databases/postgresql83-server/files/patch-bb +++ /dev/null @@ -1,13 +0,0 @@ ---- pl/tcl/Makefile~ Sat Apr 29 19:45:42 2000 -+++ pl/tcl/Makefile Sat May 20 22:42:22 2000 -@@ -71,7 +71,9 @@ - CFLAGS+= $(TCL_SHLIB_CFLAGS) $(TCL_DEFS) - - CFLAGS+= -I$(SRCDIR)/include -I$(SRCDIR)/backend $(PGSQL_INCLUDES) -- -+ -+CFLAGS+= -I$(TCL_INCDIR) -+ - # - # Uncomment the following to enable the unknown command lookup - # on the first of all calls to the call handler. See the doc diff --git a/databases/postgresql83-server/files/patch-bc b/databases/postgresql83-server/files/patch-bc deleted file mode 100644 index ff747fb84a2f..000000000000 --- a/databases/postgresql83-server/files/patch-bc +++ /dev/null @@ -1,5 +0,0 @@ ---- bin/pg_ctl/postmaster.opts.default.sample~ Mon Apr 17 05:45:17 2000 -+++ bin/pg_ctl/postmaster.opts.default.sample Tue May 23 02:46:30 2000 -@@ -1 +1 @@ -- -+-i -o "-F" diff --git a/databases/postgresql83-server/files/pgsql.sh.tmpl b/databases/postgresql83-server/files/pgsql.sh.tmpl deleted file mode 100644 index e1673b4850c2..000000000000 --- a/databases/postgresql83-server/files/pgsql.sh.tmpl +++ /dev/null @@ -1,34 +0,0 @@ -#!/bin/sh - -# $FreeBSD$ -# -# For postmaster startup options, edit $PGDATA/postmaster.opts.default -# Preinstalled options are -i -o "-F" - -case $1 in -start) - [ -d !!PREFIX!!/pgsql/lib ] && /sbin/ldconfig -m !!PREFIX!!/pgsql/lib - [ -x !!PREFIX!!/pgsql/bin/pg_ctl ] && { - su -l pgsql -c \ - 'exec !!PREFIX!!/pgsql/bin/pg_ctl -w start > !!PREFIX!!/pgsql/errlog 2>&1' - echo -n ' pgsql' - } - ;; - -stop) - [ -x !!PREFIX!!/pgsql/bin/pg_ctl ] && { - su -l pgsql -c 'exec !!PREFIX!!/pgsql/bin/pg_ctl -w -m fast stop' - } - ;; - -status) - [ -x !!PREFIX!!/pgsql/bin/pg_ctl ] && { - su -l pgsql -c 'exec !!PREFIX!!/pgsql/bin/pg_ctl status' - } - ;; - -*) - echo "usage: `basename $0` {start|stop|status}" >&2 - exit 64 - ;; -esac diff --git a/databases/postgresql83-server/files/post-install-notes b/databases/postgresql83-server/files/post-install-notes deleted file mode 100644 index 289a7651109a..000000000000 --- a/databases/postgresql83-server/files/post-install-notes +++ /dev/null @@ -1,16 +0,0 @@ - -Now that PostgreSQL is installed, you should read the documentation and -implementation guides. These can be found at: - - http://www.PostgreSQL.org/docs - -You may wish to subscribe to the PostgreSQL user-support mailing list. -Send an e-mail to pgsql-questions-request@postgresql.org with the -text "subscribe" in the message body. - -If you built PostgreSQL with TCL support, you can install the port -"pgaccess" to get a TCL/TK based database frontend for database -operations. - -To start PostgreSQL, run the startup script: -$PREFIX/etc/rc.d/pgsql.sh start diff --git a/databases/postgresql83-server/pkg-comment b/databases/postgresql83-server/pkg-comment deleted file mode 100644 index 2125016b133c..000000000000 --- a/databases/postgresql83-server/pkg-comment +++ /dev/null @@ -1 +0,0 @@ -A robust, next generation, object-relational DBMS diff --git a/databases/postgresql83-server/pkg-descr b/databases/postgresql83-server/pkg-descr deleted file mode 100644 index f48a33337e55..000000000000 --- a/databases/postgresql83-server/pkg-descr +++ /dev/null @@ -1,24 +0,0 @@ -PostgreSQL is a robust, next-generation, Object-Relational DBMS (ORDBMS), -derived from the Berkeley Postgres database management system. While -PostgreSQL retains the powerful object-relational data model, rich data types -and easy extensibility of Postgres, it replaces the PostQuel query language -with an extended subset of SQL. - -The original Postgres code was the effort of many graduate students, -undergraduate students, and staff programmers working under the direction of -Professor Michael Stonebraker at the University of California, Berkeley. In -1995, Andrew Yu and Jolly Chen took on the task of converting the DBMS query -language to SQL and created a new database system which came to known as -Postgres95. Many others contributed to the porting, testing, debugging and -enhancement of the Postgres95 code. As the code improved, and 1995 faded into -memory, PostgreSQL was born. - -PostgreSQL development is presently being performed by a team of Internet -developers who are now responsible for all current and future development. The -development team coordinator is Marc G. Fournier (scrappy@PostgreSQL.ORG). -Support is available from the PostgreSQL developer/user community through the -support mailing list (questions@PostgreSQL.ORG). - -PostgreSQL is free and the complete source is available. - -WWW: http://www.postgresql.org diff --git a/databases/postgresql83-server/pkg-install b/databases/postgresql83-server/pkg-install deleted file mode 100644 index 7f3a090fe4b6..000000000000 --- a/databases/postgresql83-server/pkg-install +++ /dev/null @@ -1,44 +0,0 @@ -#! /bin/sh - -# $FreeBSD$ - -PATH=/bin:/usr/sbin - -if [ -z "${DB_DIR}" ]; then - DB_DIR=${PKG_PREFIX}/pgsql/data -fi - -case $2 in -POST-INSTALL) - USER=pgsql - GROUP=${USER} - UID=89 - GID=${UID} - - if pw group show "${GROUP}" 2>/dev/null; then - echo "You already have a group \"${GROUP}\", so I will use it." - else - if pw groupadd ${GROUP} -g ${GID}; then - echo "Added group \"${GROUP}\"." - else - echo "Adding group \"${GROUP}\" failed..." - exit 1 - fi - fi - - if pw user show "${USER}" 2>/dev/null; then - echo "You already have a user \"${USER}\", so I will use it." - else - if pw useradd ${USER} -u ${UID} -g ${GROUP} -h - \ - -d ${DB_DIR} -s /sbin/nologin -c "PostgreSQL Daemon" - then - echo "Added user \"${USER}\"." - else - echo "Adding user \"${USER}\" failed..." - exit 1 - fi - fi - - chown -R ${USER}.${GROUP} ${DB_DIR} - ;; -esac diff --git a/databases/postgresql83-server/pkg-plist b/databases/postgresql83-server/pkg-plist deleted file mode 100644 index 9992da1174ae..000000000000 --- a/databases/postgresql83-server/pkg-plist +++ /dev/null @@ -1,168 +0,0 @@ -etc/rc.d/pgsql.sh -pgsql/.profile -pgsql/bin/createdb -pgsql/bin/createlang -pgsql/bin/createuser -pgsql/bin/dropdb -pgsql/bin/droplang -pgsql/bin/dropuser -pgsql/bin/ecpg -pgsql/bin/initdb -pgsql/bin/initlocation -pgsql/bin/ipcclean -pgsql/bin/pg_ctl -pgsql/bin/pg_dump -pgsql/bin/pg_dumpall -pgsql/bin/pg_encoding -pgsql/bin/pg_id -pgsql/bin/pg_passwd -pgsql/bin/pg_upgrade -pgsql/bin/pg_version -pgsql/bin/postgres -pgsql/bin/postmaster -pgsql/bin/psql -pgsql/bin/vacuumdb -pgsql/data/PG_VERSION -pgsql/data/base/template1/PG_VERSION -pgsql/data/base/template1/pg_aggregate -pgsql/data/base/template1/pg_aggregate_name_type_index -pgsql/data/base/template1/pg_am -pgsql/data/base/template1/pg_am_name_index -pgsql/data/base/template1/pg_amop -pgsql/data/base/template1/pg_amop_opid_index -pgsql/data/base/template1/pg_amop_strategy_index -pgsql/data/base/template1/pg_amproc -pgsql/data/base/template1/pg_attrdef -pgsql/data/base/template1/pg_attrdef_adrelid_index -pgsql/data/base/template1/pg_attribute -pgsql/data/base/template1/pg_attribute_relid_attnam_index -pgsql/data/base/template1/pg_attribute_relid_attnum_index -pgsql/data/base/template1/pg_class -pgsql/data/base/template1/pg_class_oid_index -pgsql/data/base/template1/pg_class_relname_index -pgsql/data/base/template1/pg_description -pgsql/data/base/template1/pg_description_objoid_index -pgsql/data/base/template1/pg_index -pgsql/data/base/template1/pg_index_indexrelid_index -pgsql/data/base/template1/pg_indexes -pgsql/data/base/template1/pg_inheritproc -pgsql/data/base/template1/pg_inherits -pgsql/data/base/template1/pg_inherits_relid_seqno_index -pgsql/data/base/template1/pg_ipl -pgsql/data/base/template1/pg_language -pgsql/data/base/template1/pg_language_name_index -pgsql/data/base/template1/pg_language_oid_index -pgsql/data/base/template1/pg_listener -pgsql/data/base/template1/pg_listener_relname_pid_index -pgsql/data/base/template1/pg_opclass -pgsql/data/base/template1/pg_opclass_deftype_index -pgsql/data/base/template1/pg_opclass_name_index -pgsql/data/base/template1/pg_operator -pgsql/data/base/template1/pg_operator_oid_index -pgsql/data/base/template1/pg_operator_oprname_l_r_k_index -pgsql/data/base/template1/pg_proc -pgsql/data/base/template1/pg_proc_oid_index -pgsql/data/base/template1/pg_proc_proname_narg_type_index -pgsql/data/base/template1/pg_relcheck -pgsql/data/base/template1/pg_relcheck_rcrelid_index -pgsql/data/base/template1/pg_rewrite -pgsql/data/base/template1/pg_rewrite_oid_index -pgsql/data/base/template1/pg_rewrite_rulename_index -pgsql/data/base/template1/pg_rules -pgsql/data/base/template1/pg_statistic -pgsql/data/base/template1/pg_statistic_relid_att_index -pgsql/data/base/template1/pg_tables -pgsql/data/base/template1/pg_trigger -pgsql/data/base/template1/pg_trigger_tgconstrname_index -pgsql/data/base/template1/pg_trigger_tgconstrrelid_index -pgsql/data/base/template1/pg_trigger_tgrelid_index -pgsql/data/base/template1/pg_type -pgsql/data/base/template1/pg_type_oid_index -pgsql/data/base/template1/pg_type_typname_index -pgsql/data/base/template1/pg_user -pgsql/data/base/template1/pg_views -pgsql/data/pg_control -pgsql/data/pg_database -pgsql/data/pg_geqo.sample -pgsql/data/pg_group -pgsql/data/pg_group_name_index -pgsql/data/pg_group_sysid_index -pgsql/data/pg_hba.conf -pgsql/data/pg_log -pgsql/data/pg_shadow -pgsql/data/pg_variable -pgsql/data/postmaster.opts.default -pgsql/include/access/attnum.h -pgsql/include/c.h -pgsql/include/commands/trigger.h -pgsql/include/config.h -pgsql/include/ecpgerrno.h -pgsql/include/ecpglib.h -pgsql/include/ecpgtype.h -pgsql/include/executor/spi.h -pgsql/include/fmgr.h -pgsql/include/lib/dllist.h -pgsql/include/libpgeasy.h -pgsql/include/libpq/libpq-fs.h -pgsql/include/libpq/pqcomm.h -pgsql/include/libpq++/pgconnection.h -pgsql/include/libpq++/pgcursordb.h -pgsql/include/libpq++/pgdatabase.h -pgsql/include/libpq++/pglobject.h -pgsql/include/libpq++/pgtransdb.h -pgsql/include/libpq++.h -pgsql/include/libpq-fe.h -pgsql/include/libpq-int.h -pgsql/include/os.h -pgsql/include/postgres.h -pgsql/include/postgres_ext.h -pgsql/include/pqexpbuffer.h -pgsql/include/sql3types.h -pgsql/include/sqlca.h -pgsql/include/utils/elog.h -pgsql/include/utils/geo_decls.h -pgsql/include/utils/mcxt.h -pgsql/include/utils/palloc.h -pgsql/lib/global1.bki.source -pgsql/lib/global1.description -pgsql/lib/libecpg.a -pgsql/lib/libecpg.so -pgsql/lib/libecpg.so.3 -pgsql/lib/libpgeasy.a -pgsql/lib/libpgeasy.so -pgsql/lib/libpgeasy.so.2 -pgsql/lib/libpq++.a -pgsql/lib/libpq++.so -pgsql/lib/libpq++.so.3 -pgsql/lib/libpq.a -pgsql/lib/libpq.so -pgsql/lib/libpq.so.2 -pgsql/lib/local1_template1.bki.source -pgsql/lib/local1_template1.description -pgsql/lib/pg_geqo.sample -pgsql/lib/pg_hba.conf.sample -pgsql/lib/pg_ident.conf.sample -pgsql/lib/pg_options.sample -pgsql/lib/plpgsql.so -pgsql/lib/postmaster.opts.default.sample -pgsql/post-install-notes -@dirrm pgsql/bin -@dirrm pgsql/data/base/template1 -@dirrm pgsql/data/base -@dirrm pgsql/data/pg_xlog -@dirrm pgsql/data -@dirrm pgsql/include/access -@dirrm pgsql/include/commands -@dirrm pgsql/include/executor -@dirrm pgsql/include/lib -@dirrm pgsql/include/libpq -@dirrm pgsql/include/libpq++ -@dirrm pgsql/include/port/freebsd -@dirrm pgsql/include/port -@dirrm pgsql/include/utils -@dirrm pgsql/include -@dirrm pgsql/lib -@dirrm pgsql/man/man1 -@dirrm pgsql/man/manl -@dirrm pgsql/man -@dirrm pgsql diff --git a/databases/postgresql83-server/pkg-plist.doc b/databases/postgresql83-server/pkg-plist.doc deleted file mode 100644 index 06b7bd9ea116..000000000000 --- a/databases/postgresql83-server/pkg-plist.doc +++ /dev/null @@ -1,888 +0,0 @@ -share/doc/pgsql/FAQ -share/doc/pgsql/FAQ_AIX -share/doc/pgsql/FAQ_BSDI -share/doc/pgsql/FAQ_DEV -share/doc/pgsql/FAQ_DigitalUnix -share/doc/pgsql/FAQ_FreeBSD -share/doc/pgsql/FAQ_HPUX -share/doc/pgsql/FAQ_Irix -share/doc/pgsql/FAQ_Linux -share/doc/pgsql/FAQ_QNX4 -share/doc/pgsql/FAQ_SCO -share/doc/pgsql/FAQ_Solaris -share/doc/pgsql/README.Charsets -share/doc/pgsql/README.NT -share/doc/pgsql/README.fsync -share/doc/pgsql/README.inet -share/doc/pgsql/README.locale -share/doc/pgsql/README.mb -share/doc/pgsql/README.mb.jp -share/doc/pgsql/TODO -share/doc/pgsql/admin/admin.htm -share/doc/pgsql/admin/admin.html -share/doc/pgsql/admin/biblio.htm -share/doc/pgsql/admin/c573.htm -share/doc/pgsql/admin/c573602.htm -share/doc/pgsql/admin/c573680.htm -share/doc/pgsql/admin/c573717.htm -share/doc/pgsql/admin/copyright.htm -share/doc/pgsql/admin/disk.htm -share/doc/pgsql/admin/index.html -share/doc/pgsql/admin/install-win32.htm -share/doc/pgsql/admin/install-win321073.htm -share/doc/pgsql/admin/install-win321082.htm -share/doc/pgsql/admin/install.htm -share/doc/pgsql/admin/install855.htm -share/doc/pgsql/admin/intro-ag.htm -share/doc/pgsql/admin/intro-ag162.htm -share/doc/pgsql/admin/layout.gif -share/doc/pgsql/admin/layout.htm -share/doc/pgsql/admin/manage-ag.htm -share/doc/pgsql/admin/manage-ag1604.htm -share/doc/pgsql/admin/manage-ag1646.htm -share/doc/pgsql/admin/manage-ag1655.htm -share/doc/pgsql/admin/newuser.htm -share/doc/pgsql/admin/notation.htm -share/doc/pgsql/admin/pg-options.htm -share/doc/pgsql/admin/ports.htm -share/doc/pgsql/admin/ports481.htm -share/doc/pgsql/admin/postmaster.htm -share/doc/pgsql/admin/preface.htm -share/doc/pgsql/admin/recovery.htm -share/doc/pgsql/admin/regress.htm -share/doc/pgsql/admin/regress1861.htm -share/doc/pgsql/admin/regress1895.htm -share/doc/pgsql/admin/regress1941.htm -share/doc/pgsql/admin/release.htm -share/doc/pgsql/admin/release2009.htm -share/doc/pgsql/admin/release2020.htm -share/doc/pgsql/admin/release2031.htm -share/doc/pgsql/admin/release2042.htm -share/doc/pgsql/admin/release2124.htm -share/doc/pgsql/admin/release2135.htm -share/doc/pgsql/admin/release2146.htm -share/doc/pgsql/admin/release2187.htm -share/doc/pgsql/admin/release2203.htm -share/doc/pgsql/admin/release2222.htm -share/doc/pgsql/admin/release2266.htm -share/doc/pgsql/admin/release2288.htm -share/doc/pgsql/admin/release2303.htm -share/doc/pgsql/admin/release2312.htm -share/doc/pgsql/admin/release2335.htm -share/doc/pgsql/admin/release2349.htm -share/doc/pgsql/admin/release2352.htm -share/doc/pgsql/admin/release2377.htm -share/doc/pgsql/admin/release2414.htm -share/doc/pgsql/admin/release2421.htm -share/doc/pgsql/admin/release2428.htm -share/doc/pgsql/admin/release2435.htm -share/doc/pgsql/admin/release2439.htm -share/doc/pgsql/admin/runtime.htm -share/doc/pgsql/admin/security.htm -share/doc/pgsql/admin/security1450.htm -share/doc/pgsql/admin/security1485.htm -share/doc/pgsql/admin/security1509.htm -share/doc/pgsql/admin/security1530.htm -share/doc/pgsql/admin/terminology.htm -share/doc/pgsql/admin/trouble.htm -share/doc/pgsql/admin/trouble1721.htm -share/doc/pgsql/admin/trouble1738.htm -share/doc/pgsql/admin/y2k.htm -share/doc/pgsql/postgres/about.htm -share/doc/pgsql/postgres/advanced.htm -share/doc/pgsql/postgres/advanced27923.htm -share/doc/pgsql/postgres/advanced27945.htm -share/doc/pgsql/postgres/app-createdb.htm -share/doc/pgsql/postgres/app-createlang.htm -share/doc/pgsql/postgres/app-createuser.htm -share/doc/pgsql/postgres/app-dropdb.htm -share/doc/pgsql/postgres/app-droplang.htm -share/doc/pgsql/postgres/app-dropuser.htm -share/doc/pgsql/postgres/app-ecpg.htm -share/doc/pgsql/postgres/app-initdb.htm -share/doc/pgsql/postgres/app-initlocation.htm -share/doc/pgsql/postgres/app-ipcclean.htm -share/doc/pgsql/postgres/app-pg-passwd.htm -share/doc/pgsql/postgres/app-pg-upgrade.htm -share/doc/pgsql/postgres/app-pgaccess.htm -share/doc/pgsql/postgres/app-pgadmin.htm -share/doc/pgsql/postgres/app-pgctl.htm -share/doc/pgsql/postgres/app-pgdump.htm -share/doc/pgsql/postgres/app-pgdumpall.htm -share/doc/pgsql/postgres/app-pgtclsh.htm -share/doc/pgsql/postgres/app-pgtksh.htm -share/doc/pgsql/postgres/app-postgres.htm -share/doc/pgsql/postgres/app-postmaster.htm -share/doc/pgsql/postgres/app-psql.htm -share/doc/pgsql/postgres/app-vacuumdb.htm -share/doc/pgsql/postgres/applications.htm -share/doc/pgsql/postgres/arch-pg.htm -share/doc/pgsql/postgres/arch.htm -share/doc/pgsql/postgres/arrays.htm -share/doc/pgsql/postgres/biblio.htm -share/doc/pgsql/postgres/bki.htm -share/doc/pgsql/postgres/bki26573.htm -share/doc/pgsql/postgres/bki26657.htm -share/doc/pgsql/postgres/bki26681.htm -share/doc/pgsql/postgres/bki26742.htm -share/doc/pgsql/postgres/c16883.htm -share/doc/pgsql/postgres/c1688316912.htm -share/doc/pgsql/postgres/c1688316990.htm -share/doc/pgsql/postgres/c1688317027.htm -share/doc/pgsql/postgres/c19986.htm -share/doc/pgsql/postgres/c21722.htm -share/doc/pgsql/postgres/c2172221764.htm -share/doc/pgsql/postgres/c2172221782.htm -share/doc/pgsql/postgres/c2172221924.htm -share/doc/pgsql/postgres/c2172221936.htm -share/doc/pgsql/postgres/c2172221956.htm -share/doc/pgsql/postgres/c2172221961.htm -share/doc/pgsql/postgres/c25129.htm -share/doc/pgsql/postgres/c4091.htm -share/doc/pgsql/postgres/c40914117.htm -share/doc/pgsql/postgres/c40914344.htm -share/doc/pgsql/postgres/c4362.htm -share/doc/pgsql/postgres/c43624375.htm -share/doc/pgsql/postgres/c4888.htm -share/doc/pgsql/postgres/c4933.htm -share/doc/pgsql/postgres/c49334943.htm -share/doc/pgsql/postgres/c49334947.htm -share/doc/pgsql/postgres/catalogs.gif -share/doc/pgsql/postgres/clientserver.gif -share/doc/pgsql/postgres/compiler.htm -share/doc/pgsql/postgres/connections.gif -share/doc/pgsql/postgres/copyright.htm -share/doc/pgsql/postgres/cvs.htm -share/doc/pgsql/postgres/cvs28436.htm -share/doc/pgsql/postgres/cvs28492.htm -share/doc/pgsql/postgres/datatype.htm -share/doc/pgsql/postgres/datatype1038.htm -share/doc/pgsql/postgres/datatype1070.htm -share/doc/pgsql/postgres/datatype1134.htm -share/doc/pgsql/postgres/datatype1649.htm -share/doc/pgsql/postgres/datatype1681.htm -share/doc/pgsql/postgres/datatype1920.htm -share/doc/pgsql/postgres/datetime-appendix.htm -share/doc/pgsql/postgres/datetime-appendix28356.htm -share/doc/pgsql/postgres/dfunc.htm -share/doc/pgsql/postgres/dfunc20136.htm -share/doc/pgsql/postgres/dfunc20146.htm -share/doc/pgsql/postgres/disk.htm -share/doc/pgsql/postgres/docguide.htm -share/doc/pgsql/postgres/docguide28718.htm -share/doc/pgsql/postgres/docguide28749.htm -share/doc/pgsql/postgres/docguide28840.htm -share/doc/pgsql/postgres/docguide28861.htm -share/doc/pgsql/postgres/docguide28887.htm -share/doc/pgsql/postgres/docguide29024.htm -share/doc/pgsql/postgres/docguide29362.htm -share/doc/pgsql/postgres/environ.htm -share/doc/pgsql/postgres/extend.htm -share/doc/pgsql/postgres/extend18852.htm -share/doc/pgsql/postgres/extend18864.htm -share/doc/pgsql/postgres/func-ref.htm -share/doc/pgsql/postgres/functions.htm -share/doc/pgsql/postgres/functions2593.htm -share/doc/pgsql/postgres/functions2733.htm -share/doc/pgsql/postgres/functions2876.htm -share/doc/pgsql/postgres/functions2976.htm -share/doc/pgsql/postgres/functions3443.htm -share/doc/pgsql/postgres/functions3641.htm -share/doc/pgsql/postgres/geqo-biblio.htm -share/doc/pgsql/postgres/geqo.htm -share/doc/pgsql/postgres/geqo25594.htm -share/doc/pgsql/postgres/geqo25617.htm -share/doc/pgsql/postgres/geqo25655.htm -share/doc/pgsql/postgres/gist.htm -share/doc/pgsql/postgres/index.html -share/doc/pgsql/postgres/indices.htm -share/doc/pgsql/postgres/inherit.htm -share/doc/pgsql/postgres/install-win32.htm -share/doc/pgsql/postgres/install-win3217383.htm -share/doc/pgsql/postgres/install-win3217392.htm -share/doc/pgsql/postgres/install.htm -share/doc/pgsql/postgres/install17165.htm -share/doc/pgsql/postgres/intro.htm -share/doc/pgsql/postgres/intro176.htm -share/doc/pgsql/postgres/intro304.htm -share/doc/pgsql/postgres/intro60.htm -share/doc/pgsql/postgres/jdbc.htm -share/doc/pgsql/postgres/jdbc24909.htm -share/doc/pgsql/postgres/jdbc24921.htm -share/doc/pgsql/postgres/jdbc24927.htm -share/doc/pgsql/postgres/jdbc24935.htm -share/doc/pgsql/postgres/jdbc24953.htm -share/doc/pgsql/postgres/jdbc24990.htm -share/doc/pgsql/postgres/jdbc25021.htm -share/doc/pgsql/postgres/jdbc25026.htm -share/doc/pgsql/postgres/jdbc25030.htm -share/doc/pgsql/postgres/jdbc25056.htm -share/doc/pgsql/postgres/jdbc25086.htm -share/doc/pgsql/postgres/largeobjects.htm -share/doc/pgsql/postgres/largeobjects21625.htm -share/doc/pgsql/postgres/largeobjects21628.htm -share/doc/pgsql/postgres/largeobjects21707.htm -share/doc/pgsql/postgres/largeobjects21714.htm -share/doc/pgsql/postgres/largeobjects21718.htm -share/doc/pgsql/postgres/layout.gif -share/doc/pgsql/postgres/layout.htm -share/doc/pgsql/postgres/libpq-chapter.htm -share/doc/pgsql/postgres/libpq-chapter22422.htm -share/doc/pgsql/postgres/libpq-chapter22577.htm -share/doc/pgsql/postgres/libpq-chapter22724.htm -share/doc/pgsql/postgres/libpq-chapter22736.htm -share/doc/pgsql/postgres/libpq-chapter22774.htm -share/doc/pgsql/postgres/libpq-chapter22844.htm -share/doc/pgsql/postgres/libpq-chapter22857.htm -share/doc/pgsql/postgres/libpq-chapter22942.htm -share/doc/pgsql/postgres/libpq-envars.htm -share/doc/pgsql/postgres/libpq-threading.htm -share/doc/pgsql/postgres/libpqplusplus.htm -share/doc/pgsql/postgres/libpqplusplus23034.htm -share/doc/pgsql/postgres/libpqplusplus23044.htm -share/doc/pgsql/postgres/libpqplusplus23074.htm -share/doc/pgsql/postgres/libpqplusplus23179.htm -share/doc/pgsql/postgres/libpqplusplus23202.htm -share/doc/pgsql/postgres/lisp.htm -share/doc/pgsql/postgres/manage-ag.htm -share/doc/pgsql/postgres/manage-ag17914.htm -share/doc/pgsql/postgres/manage-ag17956.htm -share/doc/pgsql/postgres/manage-ag17965.htm -share/doc/pgsql/postgres/manage.htm -share/doc/pgsql/postgres/manage4814.htm -share/doc/pgsql/postgres/manage4838.htm -share/doc/pgsql/postgres/manage4880.htm -share/doc/pgsql/postgres/mvcc.htm -share/doc/pgsql/postgres/mvcc4568.htm -share/doc/pgsql/postgres/mvcc4621.htm -share/doc/pgsql/postgres/mvcc4633.htm -share/doc/pgsql/postgres/mvcc4646.htm -share/doc/pgsql/postgres/mvcc4723.htm -share/doc/pgsql/postgres/mvcc4744.htm -share/doc/pgsql/postgres/newuser.htm -share/doc/pgsql/postgres/notation.htm -share/doc/pgsql/postgres/odbc.htm -share/doc/pgsql/postgres/odbc24433.htm -share/doc/pgsql/postgres/odbc24471.htm -share/doc/pgsql/postgres/odbc24644.htm -share/doc/pgsql/postgres/odbc24666.htm -share/doc/pgsql/postgres/operators.htm -share/doc/pgsql/postgres/operators2127.htm -share/doc/pgsql/postgres/operators2198.htm -share/doc/pgsql/postgres/operators2267.htm -share/doc/pgsql/postgres/operators2377.htm -share/doc/pgsql/postgres/operators2436.htm -share/doc/pgsql/postgres/operators2490.htm -share/doc/pgsql/postgres/overview.htm -share/doc/pgsql/postgres/overview25194.htm -share/doc/pgsql/postgres/overview25219.htm -share/doc/pgsql/postgres/overview25347.htm -share/doc/pgsql/postgres/overview25403.htm -share/doc/pgsql/postgres/overview25457.htm -share/doc/pgsql/postgres/page.htm -share/doc/pgsql/postgres/page26805.htm -share/doc/pgsql/postgres/page26819.htm -share/doc/pgsql/postgres/part-admin.htm -share/doc/pgsql/postgres/part-appendix.htm -share/doc/pgsql/postgres/part-developer.htm -share/doc/pgsql/postgres/part-interfaces.htm -share/doc/pgsql/postgres/part-programmer.htm -share/doc/pgsql/postgres/part-tutorial.htm -share/doc/pgsql/postgres/part-user.htm -share/doc/pgsql/postgres/partial-index.htm -share/doc/pgsql/postgres/pg-options-dev.htm -share/doc/pgsql/postgres/pg-options.htm -share/doc/pgsql/postgres/pgeasy-chapter.htm -share/doc/pgsql/postgres/pgtcl-pgconndefaults.htm -share/doc/pgsql/postgres/pgtcl-pgconnect.htm -share/doc/pgsql/postgres/pgtcl-pgdisconnect.htm -share/doc/pgsql/postgres/pgtcl-pgexec.htm -share/doc/pgsql/postgres/pgtcl-pglisten.htm -share/doc/pgsql/postgres/pgtcl-pgloclose.htm -share/doc/pgsql/postgres/pgtcl-pglocreat.htm -share/doc/pgsql/postgres/pgtcl-pgloexport.htm -share/doc/pgsql/postgres/pgtcl-pgloimport.htm -share/doc/pgsql/postgres/pgtcl-pglolseek.htm -share/doc/pgsql/postgres/pgtcl-pgloopen.htm -share/doc/pgsql/postgres/pgtcl-pgloread.htm -share/doc/pgsql/postgres/pgtcl-pglotell.htm -share/doc/pgsql/postgres/pgtcl-pglounlink.htm -share/doc/pgsql/postgres/pgtcl-pglowrite.htm -share/doc/pgsql/postgres/pgtcl-pgresult.htm -share/doc/pgsql/postgres/pgtcl-pgselect.htm -share/doc/pgsql/postgres/pgtcl.htm -share/doc/pgsql/postgres/pgtcl23317.htm -share/doc/pgsql/postgres/pgtcl23321.htm -share/doc/pgsql/postgres/pl-perl.htm -share/doc/pgsql/postgres/pl-perl4533.htm -share/doc/pgsql/postgres/pl-perl4542.htm -share/doc/pgsql/postgres/ports.htm -share/doc/pgsql/postgres/ports16791.htm -share/doc/pgsql/postgres/postgres.htm -share/doc/pgsql/postgres/postgres.html -share/doc/pgsql/postgres/postmaster.htm -share/doc/pgsql/postgres/preface.htm -share/doc/pgsql/postgres/protocol.htm -share/doc/pgsql/postgres/protocol25770.htm -share/doc/pgsql/postgres/protocol25925.htm -share/doc/pgsql/postgres/protocol25962.htm -share/doc/pgsql/postgres/query.htm -share/doc/pgsql/postgres/query27752.htm -share/doc/pgsql/postgres/query27768.htm -share/doc/pgsql/postgres/query27790.htm -share/doc/pgsql/postgres/query27799.htm -share/doc/pgsql/postgres/query27817.htm -share/doc/pgsql/postgres/query27825.htm -share/doc/pgsql/postgres/query27844.htm -share/doc/pgsql/postgres/query27849.htm -share/doc/pgsql/postgres/query27856.htm -share/doc/pgsql/postgres/recovery.htm -share/doc/pgsql/postgres/regress.htm -share/doc/pgsql/postgres/regress18171.htm -share/doc/pgsql/postgres/regress18205.htm -share/doc/pgsql/postgres/regress18251.htm -share/doc/pgsql/postgres/release.htm -share/doc/pgsql/postgres/release18319.htm -share/doc/pgsql/postgres/release18330.htm -share/doc/pgsql/postgres/release18341.htm -share/doc/pgsql/postgres/release18352.htm -share/doc/pgsql/postgres/release18434.htm -share/doc/pgsql/postgres/release18445.htm -share/doc/pgsql/postgres/release18456.htm -share/doc/pgsql/postgres/release18497.htm -share/doc/pgsql/postgres/release18513.htm -share/doc/pgsql/postgres/release18532.htm -share/doc/pgsql/postgres/release18576.htm -share/doc/pgsql/postgres/release18598.htm -share/doc/pgsql/postgres/release18613.htm -share/doc/pgsql/postgres/release18622.htm -share/doc/pgsql/postgres/release18645.htm -share/doc/pgsql/postgres/release18659.htm -share/doc/pgsql/postgres/release18662.htm -share/doc/pgsql/postgres/release18687.htm -share/doc/pgsql/postgres/release18724.htm -share/doc/pgsql/postgres/release18731.htm -share/doc/pgsql/postgres/release18738.htm -share/doc/pgsql/postgres/release18745.htm -share/doc/pgsql/postgres/release18749.htm -share/doc/pgsql/postgres/rules.htm -share/doc/pgsql/postgres/rules19478.htm -share/doc/pgsql/postgres/rules19639.htm -share/doc/pgsql/postgres/rules19770.htm -share/doc/pgsql/postgres/rules19784.htm -share/doc/pgsql/postgres/runtime.htm -share/doc/pgsql/postgres/security.htm -share/doc/pgsql/postgres/security17760.htm -share/doc/pgsql/postgres/security17795.htm -share/doc/pgsql/postgres/security17819.htm -share/doc/pgsql/postgres/security17840.htm -share/doc/pgsql/postgres/signals.htm -share/doc/pgsql/postgres/spi-spiconnect.htm -share/doc/pgsql/postgres/spi-spicopytuple.htm -share/doc/pgsql/postgres/spi-spiexec.htm -share/doc/pgsql/postgres/spi-spiexecp.htm -share/doc/pgsql/postgres/spi-spifinish.htm -share/doc/pgsql/postgres/spi-spifname.htm -share/doc/pgsql/postgres/spi-spifnumber.htm -share/doc/pgsql/postgres/spi-spigetbinval.htm -share/doc/pgsql/postgres/spi-spigetrelname.htm -share/doc/pgsql/postgres/spi-spigettype.htm -share/doc/pgsql/postgres/spi-spigettypeid.htm -share/doc/pgsql/postgres/spi-spigetvalue.htm -share/doc/pgsql/postgres/spi-spimodifytuple.htm -share/doc/pgsql/postgres/spi-spipalloc.htm -share/doc/pgsql/postgres/spi-spipfree.htm -share/doc/pgsql/postgres/spi-spiprepare.htm -share/doc/pgsql/postgres/spi-spirepalloc.htm -share/doc/pgsql/postgres/spi-spisaveplan.htm -share/doc/pgsql/postgres/spi.htm -share/doc/pgsql/postgres/spi20808.htm -share/doc/pgsql/postgres/spi21521.htm -share/doc/pgsql/postgres/spi21543.htm -share/doc/pgsql/postgres/spi21548.htm -share/doc/pgsql/postgres/sql-abort.htm -share/doc/pgsql/postgres/sql-altergroup.htm -share/doc/pgsql/postgres/sql-altertable.htm -share/doc/pgsql/postgres/sql-alteruser.htm -share/doc/pgsql/postgres/sql-begin.htm -share/doc/pgsql/postgres/sql-close.htm -share/doc/pgsql/postgres/sql-cluster.htm -share/doc/pgsql/postgres/sql-commands.htm -share/doc/pgsql/postgres/sql-comment.htm -share/doc/pgsql/postgres/sql-commit.htm -share/doc/pgsql/postgres/sql-copy.htm -share/doc/pgsql/postgres/sql-createaggregate.htm -share/doc/pgsql/postgres/sql-createconstraint.htm -share/doc/pgsql/postgres/sql-createdatabase.htm -share/doc/pgsql/postgres/sql-createfunction.htm -share/doc/pgsql/postgres/sql-creategroup.htm -share/doc/pgsql/postgres/sql-createindex.htm -share/doc/pgsql/postgres/sql-createlanguage.htm -share/doc/pgsql/postgres/sql-createoperator.htm -share/doc/pgsql/postgres/sql-createrule.htm -share/doc/pgsql/postgres/sql-createsequence.htm -share/doc/pgsql/postgres/sql-createtable.htm -share/doc/pgsql/postgres/sql-createtableas.htm -share/doc/pgsql/postgres/sql-createtrigger.htm -share/doc/pgsql/postgres/sql-createtype.htm -share/doc/pgsql/postgres/sql-createuser.htm -share/doc/pgsql/postgres/sql-createview.htm -share/doc/pgsql/postgres/sql-declare.htm -share/doc/pgsql/postgres/sql-delete.htm -share/doc/pgsql/postgres/sql-dropaggregate.htm -share/doc/pgsql/postgres/sql-dropdatabase.htm -share/doc/pgsql/postgres/sql-dropfunction.htm -share/doc/pgsql/postgres/sql-dropgroup.htm -share/doc/pgsql/postgres/sql-dropindex.htm -share/doc/pgsql/postgres/sql-droplanguage.htm -share/doc/pgsql/postgres/sql-dropoperator.htm -share/doc/pgsql/postgres/sql-droprule.htm -share/doc/pgsql/postgres/sql-dropsequence.htm -share/doc/pgsql/postgres/sql-droptable.htm -share/doc/pgsql/postgres/sql-droptrigger.htm -share/doc/pgsql/postgres/sql-droptype.htm -share/doc/pgsql/postgres/sql-dropuser.htm -share/doc/pgsql/postgres/sql-dropview.htm -share/doc/pgsql/postgres/sql-end.htm -share/doc/pgsql/postgres/sql-explain.htm -share/doc/pgsql/postgres/sql-fetch.htm -share/doc/pgsql/postgres/sql-grant.htm -share/doc/pgsql/postgres/sql-insert.htm -share/doc/pgsql/postgres/sql-language.htm -share/doc/pgsql/postgres/sql-listen.htm -share/doc/pgsql/postgres/sql-load.htm -share/doc/pgsql/postgres/sql-lock.htm -share/doc/pgsql/postgres/sql-move.htm -share/doc/pgsql/postgres/sql-notify.htm -share/doc/pgsql/postgres/sql-reindex.htm -share/doc/pgsql/postgres/sql-reset.htm -share/doc/pgsql/postgres/sql-revoke.htm -share/doc/pgsql/postgres/sql-rollback.htm -share/doc/pgsql/postgres/sql-select.htm -share/doc/pgsql/postgres/sql-selectinto.htm -share/doc/pgsql/postgres/sql-set.htm -share/doc/pgsql/postgres/sql-show.htm -share/doc/pgsql/postgres/sql-truncate.htm -share/doc/pgsql/postgres/sql-unlisten.htm -share/doc/pgsql/postgres/sql-update.htm -share/doc/pgsql/postgres/sql-vacuum.htm -share/doc/pgsql/postgres/sql.htm -share/doc/pgsql/postgres/sql26902.htm -share/doc/pgsql/postgres/sql27020.htm -share/doc/pgsql/postgres/start.htm -share/doc/pgsql/postgres/start27628.htm -share/doc/pgsql/postgres/start27650.htm -share/doc/pgsql/postgres/storage.htm -share/doc/pgsql/postgres/syntax.htm -share/doc/pgsql/postgres/syntax519.htm -share/doc/pgsql/postgres/syntax525.htm -share/doc/pgsql/postgres/syntax543.htm -share/doc/pgsql/postgres/syntax608.htm -share/doc/pgsql/postgres/syntax653.htm -share/doc/pgsql/postgres/syntax658.htm -share/doc/pgsql/postgres/terminology.htm -share/doc/pgsql/postgres/triggers.htm -share/doc/pgsql/postgres/triggers20224.htm -share/doc/pgsql/postgres/triggers20281.htm -share/doc/pgsql/postgres/triggers20290.htm -share/doc/pgsql/postgres/trouble.htm -share/doc/pgsql/postgres/trouble18031.htm -share/doc/pgsql/postgres/trouble18048.htm -share/doc/pgsql/postgres/typeconv.htm -share/doc/pgsql/postgres/typeconv3759.htm -share/doc/pgsql/postgres/typeconv3822.htm -share/doc/pgsql/postgres/typeconv3875.htm -share/doc/pgsql/postgres/typeconv3895.htm -share/doc/pgsql/postgres/utilities.htm -share/doc/pgsql/postgres/xaggr.htm -share/doc/pgsql/postgres/xfunc.htm -share/doc/pgsql/postgres/xfunc19011.htm -share/doc/pgsql/postgres/xfunc19017.htm -share/doc/pgsql/postgres/xfunc19022.htm -share/doc/pgsql/postgres/xfunc19254.htm -share/doc/pgsql/postgres/xindex.htm -share/doc/pgsql/postgres/xoper.htm -share/doc/pgsql/postgres/xplang.htm -share/doc/pgsql/postgres/xtypes.htm -share/doc/pgsql/postgres/y2k.htm -share/doc/pgsql/programmer/arch-pg.htm -share/doc/pgsql/programmer/biblio.htm -share/doc/pgsql/programmer/bki.htm -share/doc/pgsql/programmer/bki8058.htm -share/doc/pgsql/programmer/bki8142.htm -share/doc/pgsql/programmer/bki8166.htm -share/doc/pgsql/programmer/bki8227.htm -share/doc/pgsql/programmer/c1486.htm -share/doc/pgsql/programmer/c5391.htm -share/doc/pgsql/programmer/c53915433.htm -share/doc/pgsql/programmer/c53915451.htm -share/doc/pgsql/programmer/c53915593.htm -share/doc/pgsql/programmer/c53915605.htm -share/doc/pgsql/programmer/c53915625.htm -share/doc/pgsql/programmer/c53915630.htm -share/doc/pgsql/programmer/c6614.htm -share/doc/pgsql/programmer/catalogs.gif -share/doc/pgsql/programmer/compiler.htm -share/doc/pgsql/programmer/connections.gif -share/doc/pgsql/programmer/copyright.htm -share/doc/pgsql/programmer/cvs.htm -share/doc/pgsql/programmer/cvs8365.htm -share/doc/pgsql/programmer/cvs8421.htm -share/doc/pgsql/programmer/dfunc.htm -share/doc/pgsql/programmer/dfunc1679.htm -share/doc/pgsql/programmer/dfunc1689.htm -share/doc/pgsql/programmer/docguide.htm -share/doc/pgsql/programmer/docguide8647.htm -share/doc/pgsql/programmer/docguide8678.htm -share/doc/pgsql/programmer/docguide8769.htm -share/doc/pgsql/programmer/docguide8790.htm -share/doc/pgsql/programmer/docguide8816.htm -share/doc/pgsql/programmer/docguide8953.htm -share/doc/pgsql/programmer/docguide9291.htm -share/doc/pgsql/programmer/extend.htm -share/doc/pgsql/programmer/extend352.htm -share/doc/pgsql/programmer/extend364.htm -share/doc/pgsql/programmer/geqo-biblio.htm -share/doc/pgsql/programmer/geqo.htm -share/doc/pgsql/programmer/geqo7079.htm -share/doc/pgsql/programmer/geqo7102.htm -share/doc/pgsql/programmer/geqo7140.htm -share/doc/pgsql/programmer/gist.htm -share/doc/pgsql/programmer/index.html -share/doc/pgsql/programmer/intro-pg.htm -share/doc/pgsql/programmer/intro-pg167.htm -share/doc/pgsql/programmer/jdbc.htm -share/doc/pgsql/programmer/jdbc6398.htm -share/doc/pgsql/programmer/jdbc6410.htm -share/doc/pgsql/programmer/jdbc6416.htm -share/doc/pgsql/programmer/jdbc6424.htm -share/doc/pgsql/programmer/jdbc6442.htm -share/doc/pgsql/programmer/jdbc6479.htm -share/doc/pgsql/programmer/jdbc6510.htm -share/doc/pgsql/programmer/jdbc6515.htm -share/doc/pgsql/programmer/jdbc6519.htm -share/doc/pgsql/programmer/jdbc6545.htm -share/doc/pgsql/programmer/jdbc6575.htm -share/doc/pgsql/programmer/largeobjects.htm -share/doc/pgsql/programmer/largeobjects3114.htm -share/doc/pgsql/programmer/largeobjects3117.htm -share/doc/pgsql/programmer/largeobjects3196.htm -share/doc/pgsql/programmer/largeobjects3203.htm -share/doc/pgsql/programmer/largeobjects3207.htm -share/doc/pgsql/programmer/libpq-chapter.htm -share/doc/pgsql/programmer/libpq-chapter3419.htm -share/doc/pgsql/programmer/libpq-chapter3574.htm -share/doc/pgsql/programmer/libpq-chapter3721.htm -share/doc/pgsql/programmer/libpq-chapter3733.htm -share/doc/pgsql/programmer/libpq-chapter3771.htm -share/doc/pgsql/programmer/libpq-chapter3841.htm -share/doc/pgsql/programmer/libpq-chapter3854.htm -share/doc/pgsql/programmer/libpq-chapter3939.htm -share/doc/pgsql/programmer/libpq-envars.htm -share/doc/pgsql/programmer/libpq-threading.htm -share/doc/pgsql/programmer/libpqplusplus.htm -share/doc/pgsql/programmer/libpqplusplus4031.htm -share/doc/pgsql/programmer/libpqplusplus4041.htm -share/doc/pgsql/programmer/libpqplusplus4071.htm -share/doc/pgsql/programmer/libpqplusplus4176.htm -share/doc/pgsql/programmer/libpqplusplus4199.htm -share/doc/pgsql/programmer/lisp.htm -share/doc/pgsql/programmer/notation.htm -share/doc/pgsql/programmer/odbc.htm -share/doc/pgsql/programmer/odbc5922.htm -share/doc/pgsql/programmer/odbc5960.htm -share/doc/pgsql/programmer/odbc6133.htm -share/doc/pgsql/programmer/odbc6155.htm -share/doc/pgsql/programmer/overview.htm -share/doc/pgsql/programmer/overview6679.htm -share/doc/pgsql/programmer/overview6704.htm -share/doc/pgsql/programmer/overview6832.htm -share/doc/pgsql/programmer/overview6888.htm -share/doc/pgsql/programmer/overview6942.htm -share/doc/pgsql/programmer/page.htm -share/doc/pgsql/programmer/page8290.htm -share/doc/pgsql/programmer/page8304.htm -share/doc/pgsql/programmer/pg-options-dev.htm -share/doc/pgsql/programmer/pgeasy-chapter.htm -share/doc/pgsql/programmer/pgtcl-pgconndefaults.htm -share/doc/pgsql/programmer/pgtcl-pgconnect.htm -share/doc/pgsql/programmer/pgtcl-pgdisconnect.htm -share/doc/pgsql/programmer/pgtcl-pgexec.htm -share/doc/pgsql/programmer/pgtcl-pglisten.htm -share/doc/pgsql/programmer/pgtcl-pgloclose.htm -share/doc/pgsql/programmer/pgtcl-pglocreat.htm -share/doc/pgsql/programmer/pgtcl-pgloexport.htm -share/doc/pgsql/programmer/pgtcl-pgloimport.htm -share/doc/pgsql/programmer/pgtcl-pglolseek.htm -share/doc/pgsql/programmer/pgtcl-pgloopen.htm -share/doc/pgsql/programmer/pgtcl-pgloread.htm -share/doc/pgsql/programmer/pgtcl-pglotell.htm -share/doc/pgsql/programmer/pgtcl-pglounlink.htm -share/doc/pgsql/programmer/pgtcl-pglowrite.htm -share/doc/pgsql/programmer/pgtcl-pgresult.htm -share/doc/pgsql/programmer/pgtcl-pgselect.htm -share/doc/pgsql/programmer/pgtcl.htm -share/doc/pgsql/programmer/pgtcl4314.htm -share/doc/pgsql/programmer/pgtcl4318.htm -share/doc/pgsql/programmer/preface.htm -share/doc/pgsql/programmer/programmer.htm -share/doc/pgsql/programmer/programmer.html -share/doc/pgsql/programmer/protocol.htm -share/doc/pgsql/programmer/protocol7255.htm -share/doc/pgsql/programmer/protocol7410.htm -share/doc/pgsql/programmer/protocol7447.htm -share/doc/pgsql/programmer/rules.htm -share/doc/pgsql/programmer/rules1139.htm -share/doc/pgsql/programmer/rules1270.htm -share/doc/pgsql/programmer/rules1284.htm -share/doc/pgsql/programmer/rules978.htm -share/doc/pgsql/programmer/signals.htm -share/doc/pgsql/programmer/spi-spiconnect.htm -share/doc/pgsql/programmer/spi-spicopytuple.htm -share/doc/pgsql/programmer/spi-spiexec.htm -share/doc/pgsql/programmer/spi-spiexecp.htm -share/doc/pgsql/programmer/spi-spifinish.htm -share/doc/pgsql/programmer/spi-spifname.htm -share/doc/pgsql/programmer/spi-spifnumber.htm -share/doc/pgsql/programmer/spi-spigetbinval.htm -share/doc/pgsql/programmer/spi-spigetrelname.htm -share/doc/pgsql/programmer/spi-spigettype.htm -share/doc/pgsql/programmer/spi-spigettypeid.htm -share/doc/pgsql/programmer/spi-spigetvalue.htm -share/doc/pgsql/programmer/spi-spimodifytuple.htm -share/doc/pgsql/programmer/spi-spipalloc.htm -share/doc/pgsql/programmer/spi-spipfree.htm -share/doc/pgsql/programmer/spi-spiprepare.htm -share/doc/pgsql/programmer/spi-spirepalloc.htm -share/doc/pgsql/programmer/spi-spisaveplan.htm -share/doc/pgsql/programmer/spi.htm -share/doc/pgsql/programmer/spi2351.htm -share/doc/pgsql/programmer/spi3064.htm -share/doc/pgsql/programmer/spi3086.htm -share/doc/pgsql/programmer/spi3091.htm -share/doc/pgsql/programmer/terminology.htm -share/doc/pgsql/programmer/triggers.htm -share/doc/pgsql/programmer/triggers1767.htm -share/doc/pgsql/programmer/triggers1824.htm -share/doc/pgsql/programmer/triggers1833.htm -share/doc/pgsql/programmer/xaggr.htm -share/doc/pgsql/programmer/xfunc.htm -share/doc/pgsql/programmer/xfunc511.htm -share/doc/pgsql/programmer/xfunc517.htm -share/doc/pgsql/programmer/xfunc522.htm -share/doc/pgsql/programmer/xfunc754.htm -share/doc/pgsql/programmer/xindex.htm -share/doc/pgsql/programmer/xoper.htm -share/doc/pgsql/programmer/xplang.htm -share/doc/pgsql/programmer/xtypes.htm -share/doc/pgsql/programmer/y2k.htm -share/doc/pgsql/tutorial/about.htm -share/doc/pgsql/tutorial/advanced.htm -share/doc/pgsql/tutorial/advanced1511.htm -share/doc/pgsql/tutorial/advanced1533.htm -share/doc/pgsql/tutorial/arch.htm -share/doc/pgsql/tutorial/biblio.htm -share/doc/pgsql/tutorial/clientserver.gif -share/doc/pgsql/tutorial/copyright.htm -share/doc/pgsql/tutorial/f17.htm -share/doc/pgsql/tutorial/index.html -share/doc/pgsql/tutorial/intro.htm -share/doc/pgsql/tutorial/intro172.htm -share/doc/pgsql/tutorial/intro300.htm -share/doc/pgsql/tutorial/intro56.htm -share/doc/pgsql/tutorial/notation.htm -share/doc/pgsql/tutorial/query.htm -share/doc/pgsql/tutorial/query1340.htm -share/doc/pgsql/tutorial/query1356.htm -share/doc/pgsql/tutorial/query1378.htm -share/doc/pgsql/tutorial/query1387.htm -share/doc/pgsql/tutorial/query1405.htm -share/doc/pgsql/tutorial/query1413.htm -share/doc/pgsql/tutorial/query1432.htm -share/doc/pgsql/tutorial/query1437.htm -share/doc/pgsql/tutorial/query1444.htm -share/doc/pgsql/tutorial/sql-language.htm -share/doc/pgsql/tutorial/sql.htm -share/doc/pgsql/tutorial/sql490.htm -share/doc/pgsql/tutorial/sql608.htm -share/doc/pgsql/tutorial/start.htm -share/doc/pgsql/tutorial/start1216.htm -share/doc/pgsql/tutorial/start1238.htm -share/doc/pgsql/tutorial/terminology.htm -share/doc/pgsql/tutorial/tutorial.htm -share/doc/pgsql/tutorial/tutorial.html -share/doc/pgsql/tutorial/y2k.htm -share/doc/pgsql/user/about.htm -share/doc/pgsql/user/app-createdb.htm -share/doc/pgsql/user/app-createlang.htm -share/doc/pgsql/user/app-createuser.htm -share/doc/pgsql/user/app-dropdb.htm -share/doc/pgsql/user/app-droplang.htm -share/doc/pgsql/user/app-dropuser.htm -share/doc/pgsql/user/app-ecpg.htm -share/doc/pgsql/user/app-initdb.htm -share/doc/pgsql/user/app-initlocation.htm -share/doc/pgsql/user/app-ipcclean.htm -share/doc/pgsql/user/app-pg-passwd.htm -share/doc/pgsql/user/app-pg-upgrade.htm -share/doc/pgsql/user/app-pgaccess.htm -share/doc/pgsql/user/app-pgadmin.htm -share/doc/pgsql/user/app-pgctl.htm -share/doc/pgsql/user/app-pgdump.htm -share/doc/pgsql/user/app-pgdumpall.htm -share/doc/pgsql/user/app-pgtclsh.htm -share/doc/pgsql/user/app-pgtksh.htm -share/doc/pgsql/user/app-postgres.htm -share/doc/pgsql/user/app-postmaster.htm -share/doc/pgsql/user/app-psql.htm -share/doc/pgsql/user/app-vacuumdb.htm -share/doc/pgsql/user/applications.htm -share/doc/pgsql/user/arrays.htm -share/doc/pgsql/user/biblio.htm -share/doc/pgsql/user/c4087.htm -share/doc/pgsql/user/c40874113.htm -share/doc/pgsql/user/c40874340.htm -share/doc/pgsql/user/c4358.htm -share/doc/pgsql/user/c43584371.htm -share/doc/pgsql/user/c4884.htm -share/doc/pgsql/user/c4929.htm -share/doc/pgsql/user/c49294939.htm -share/doc/pgsql/user/c49294943.htm -share/doc/pgsql/user/copyright.htm -share/doc/pgsql/user/datatype.htm -share/doc/pgsql/user/datatype1034.htm -share/doc/pgsql/user/datatype1066.htm -share/doc/pgsql/user/datatype1130.htm -share/doc/pgsql/user/datatype1645.htm -share/doc/pgsql/user/datatype1677.htm -share/doc/pgsql/user/datatype1916.htm -share/doc/pgsql/user/datetime-appendix.htm -share/doc/pgsql/user/datetime-appendix16981.htm -share/doc/pgsql/user/environ.htm -share/doc/pgsql/user/functions.htm -share/doc/pgsql/user/functions2589.htm -share/doc/pgsql/user/functions2729.htm -share/doc/pgsql/user/functions2872.htm -share/doc/pgsql/user/functions2972.htm -share/doc/pgsql/user/functions3439.htm -share/doc/pgsql/user/functions3637.htm -share/doc/pgsql/user/index.html -share/doc/pgsql/user/indices.htm -share/doc/pgsql/user/inherit.htm -share/doc/pgsql/user/intro.htm -share/doc/pgsql/user/intro172.htm -share/doc/pgsql/user/intro300.htm -share/doc/pgsql/user/intro56.htm -share/doc/pgsql/user/manage.htm -share/doc/pgsql/user/manage4810.htm -share/doc/pgsql/user/manage4834.htm -share/doc/pgsql/user/manage4876.htm -share/doc/pgsql/user/mvcc.htm -share/doc/pgsql/user/mvcc4564.htm -share/doc/pgsql/user/mvcc4617.htm -share/doc/pgsql/user/mvcc4629.htm -share/doc/pgsql/user/mvcc4642.htm -share/doc/pgsql/user/mvcc4719.htm -share/doc/pgsql/user/mvcc4740.htm -share/doc/pgsql/user/notation.htm -share/doc/pgsql/user/operators.htm -share/doc/pgsql/user/operators2123.htm -share/doc/pgsql/user/operators2194.htm -share/doc/pgsql/user/operators2263.htm -share/doc/pgsql/user/operators2373.htm -share/doc/pgsql/user/operators2432.htm -share/doc/pgsql/user/operators2486.htm -share/doc/pgsql/user/partial-index.htm -share/doc/pgsql/user/pl-perl.htm -share/doc/pgsql/user/pl-perl4529.htm -share/doc/pgsql/user/pl-perl4538.htm -share/doc/pgsql/user/preface.htm -share/doc/pgsql/user/sql-abort.htm -share/doc/pgsql/user/sql-altergroup.htm -share/doc/pgsql/user/sql-altertable.htm -share/doc/pgsql/user/sql-alteruser.htm -share/doc/pgsql/user/sql-begin.htm -share/doc/pgsql/user/sql-close.htm -share/doc/pgsql/user/sql-cluster.htm -share/doc/pgsql/user/sql-commands.htm -share/doc/pgsql/user/sql-comment.htm -share/doc/pgsql/user/sql-commit.htm -share/doc/pgsql/user/sql-copy.htm -share/doc/pgsql/user/sql-createaggregate.htm -share/doc/pgsql/user/sql-createconstraint.htm -share/doc/pgsql/user/sql-createdatabase.htm -share/doc/pgsql/user/sql-createfunction.htm -share/doc/pgsql/user/sql-creategroup.htm -share/doc/pgsql/user/sql-createindex.htm -share/doc/pgsql/user/sql-createlanguage.htm -share/doc/pgsql/user/sql-createoperator.htm -share/doc/pgsql/user/sql-createrule.htm -share/doc/pgsql/user/sql-createsequence.htm -share/doc/pgsql/user/sql-createtable.htm -share/doc/pgsql/user/sql-createtableas.htm -share/doc/pgsql/user/sql-createtrigger.htm -share/doc/pgsql/user/sql-createtype.htm -share/doc/pgsql/user/sql-createuser.htm -share/doc/pgsql/user/sql-createview.htm -share/doc/pgsql/user/sql-declare.htm -share/doc/pgsql/user/sql-delete.htm -share/doc/pgsql/user/sql-dropaggregate.htm -share/doc/pgsql/user/sql-dropdatabase.htm -share/doc/pgsql/user/sql-dropfunction.htm -share/doc/pgsql/user/sql-dropgroup.htm -share/doc/pgsql/user/sql-dropindex.htm -share/doc/pgsql/user/sql-droplanguage.htm -share/doc/pgsql/user/sql-dropoperator.htm -share/doc/pgsql/user/sql-droprule.htm -share/doc/pgsql/user/sql-dropsequence.htm -share/doc/pgsql/user/sql-droptable.htm -share/doc/pgsql/user/sql-droptrigger.htm -share/doc/pgsql/user/sql-droptype.htm -share/doc/pgsql/user/sql-dropuser.htm -share/doc/pgsql/user/sql-dropview.htm -share/doc/pgsql/user/sql-end.htm -share/doc/pgsql/user/sql-explain.htm -share/doc/pgsql/user/sql-fetch.htm -share/doc/pgsql/user/sql-grant.htm -share/doc/pgsql/user/sql-insert.htm -share/doc/pgsql/user/sql-listen.htm -share/doc/pgsql/user/sql-load.htm -share/doc/pgsql/user/sql-lock.htm -share/doc/pgsql/user/sql-move.htm -share/doc/pgsql/user/sql-notify.htm -share/doc/pgsql/user/sql-reindex.htm -share/doc/pgsql/user/sql-reset.htm -share/doc/pgsql/user/sql-revoke.htm -share/doc/pgsql/user/sql-rollback.htm -share/doc/pgsql/user/sql-select.htm -share/doc/pgsql/user/sql-selectinto.htm -share/doc/pgsql/user/sql-set.htm -share/doc/pgsql/user/sql-show.htm -share/doc/pgsql/user/sql-truncate.htm -share/doc/pgsql/user/sql-unlisten.htm -share/doc/pgsql/user/sql-update.htm -share/doc/pgsql/user/sql-vacuum.htm -share/doc/pgsql/user/storage.htm -share/doc/pgsql/user/syntax.htm -share/doc/pgsql/user/syntax515.htm -share/doc/pgsql/user/syntax521.htm -share/doc/pgsql/user/syntax539.htm -share/doc/pgsql/user/syntax604.htm -share/doc/pgsql/user/syntax649.htm -share/doc/pgsql/user/syntax654.htm -share/doc/pgsql/user/terminology.htm -share/doc/pgsql/user/typeconv.htm -share/doc/pgsql/user/typeconv3755.htm -share/doc/pgsql/user/typeconv3818.htm -share/doc/pgsql/user/typeconv3871.htm -share/doc/pgsql/user/typeconv3891.htm -share/doc/pgsql/user/user.htm -share/doc/pgsql/user/user.html -share/doc/pgsql/user/utilities.htm -share/doc/pgsql/user/y2k.htm -@dirrm share/doc/pgsql/admin -@dirrm share/doc/pgsql/postgres -@dirrm share/doc/pgsql/programmer -@dirrm share/doc/pgsql/tutorial -@dirrm share/doc/pgsql/user -@dirrm share/doc/pgsql diff --git a/databases/postgresql83-server/pkg-plist.jdbc b/databases/postgresql83-server/pkg-plist.jdbc deleted file mode 100644 index bef5d75506b4..000000000000 --- a/databases/postgresql83-server/pkg-plist.jdbc +++ /dev/null @@ -1,13 +0,0 @@ -share/examples/pgsql/jdbc/ImageViewer.java -share/examples/pgsql/jdbc/basic.java -share/examples/pgsql/jdbc/blobtest.java -share/examples/pgsql/jdbc/datestyle.java -share/examples/pgsql/jdbc/metadata.java -share/examples/pgsql/jdbc/psql.java -share/examples/pgsql/jdbc/threadsafe.java -share/examples/pgsql/jdbc/README -share/examples/pgsql/jdbc/README_6.3 -@dirrm share/examples/pgsql/jdbc -@dirrm share/examples/pgsql -share/java/classes/postgresql.jar -@unexec rmdir %D/share/java 2>/dev/null || true diff --git a/databases/postgresql83-server/pkg-plist.tcl b/databases/postgresql83-server/pkg-plist.tcl deleted file mode 100644 index b01eaf1571ed..000000000000 --- a/databases/postgresql83-server/pkg-plist.tcl +++ /dev/null @@ -1,141 +0,0 @@ -pgsql/bin/pgaccess -pgsql/bin/pgtclsh -pgsql/bin/pgtksh -pgsql/include/libpgtcl.h -pgsql/lib/libpgtcl.a -pgsql/lib/libpgtcl.so -pgsql/lib/libpgtcl.so.2 -pgsql/lib/pltcl.so -pgsql/pgaccess/images/icon_button.gif -pgsql/pgaccess/images/icon_checkbutton.gif -pgsql/pgaccess/images/icon_entry.gif -pgsql/pgaccess/images/icon_frame.gif -pgsql/pgaccess/images/icon_label.gif -pgsql/pgaccess/images/icon_listbox.gif -pgsql/pgaccess/images/icon_query.gif -pgsql/pgaccess/images/icon_radiobutton.gif -pgsql/pgaccess/images/icon_text.gif -pgsql/pgaccess/lib/database.tcl -pgsql/pgaccess/lib/forms.tcl -pgsql/pgaccess/lib/functions.tcl -pgsql/pgaccess/lib/help/abort.hlp -pgsql/pgaccess/lib/help/add_records.hlp -pgsql/pgaccess/lib/help/alter_table.hlp -pgsql/pgaccess/lib/help/alter_user.hlp -pgsql/pgaccess/lib/help/author.hlp -pgsql/pgaccess/lib/help/begin.hlp -pgsql/pgaccess/lib/help/close.hlp -pgsql/pgaccess/lib/help/cluster.hlp -pgsql/pgaccess/lib/help/commit.hlp -pgsql/pgaccess/lib/help/copy.hlp -pgsql/pgaccess/lib/help/copyrights.hlp -pgsql/pgaccess/lib/help/create_aggregate.hlp -pgsql/pgaccess/lib/help/create_database.hlp -pgsql/pgaccess/lib/help/create_function.hlp -pgsql/pgaccess/lib/help/create_index.hlp -pgsql/pgaccess/lib/help/create_language.hlp -pgsql/pgaccess/lib/help/create_operator.hlp -pgsql/pgaccess/lib/help/create_rule.hlp -pgsql/pgaccess/lib/help/create_sequence.hlp -pgsql/pgaccess/lib/help/create_table.hlp -pgsql/pgaccess/lib/help/create_table_as.hlp -pgsql/pgaccess/lib/help/create_trigger.hlp -pgsql/pgaccess/lib/help/create_type.hlp -pgsql/pgaccess/lib/help/create_user.hlp -pgsql/pgaccess/lib/help/create_view.hlp -pgsql/pgaccess/lib/help/data_types.hlp -pgsql/pgaccess/lib/help/datefunc.hlp -pgsql/pgaccess/lib/help/declare.hlp -pgsql/pgaccess/lib/help/delete.hlp -pgsql/pgaccess/lib/help/drop_aggregate.hlp -pgsql/pgaccess/lib/help/drop_database.hlp -pgsql/pgaccess/lib/help/drop_function.hlp -pgsql/pgaccess/lib/help/drop_index.hlp -pgsql/pgaccess/lib/help/drop_language.hlp -pgsql/pgaccess/lib/help/drop_operator.hlp -pgsql/pgaccess/lib/help/drop_rule.hlp -pgsql/pgaccess/lib/help/drop_sequence.hlp -pgsql/pgaccess/lib/help/drop_table.hlp -pgsql/pgaccess/lib/help/drop_trigger.hlp -pgsql/pgaccess/lib/help/drop_type.hlp -pgsql/pgaccess/lib/help/drop_user.hlp -pgsql/pgaccess/lib/help/drop_view.hlp -pgsql/pgaccess/lib/help/explain.hlp -pgsql/pgaccess/lib/help/fetch.hlp -pgsql/pgaccess/lib/help/form_design.hlp -pgsql/pgaccess/lib/help/forms.hlp -pgsql/pgaccess/lib/help/functions.hlp -pgsql/pgaccess/lib/help/geomfunc.hlp -pgsql/pgaccess/lib/help/grant.hlp -pgsql/pgaccess/lib/help/history.hlp -pgsql/pgaccess/lib/help/index.hlp -pgsql/pgaccess/lib/help/inheritance.hlp -pgsql/pgaccess/lib/help/insert.hlp -pgsql/pgaccess/lib/help/ipv4func.hlp -pgsql/pgaccess/lib/help/isolation.hlp -pgsql/pgaccess/lib/help/keywords.hlp -pgsql/pgaccess/lib/help/listen.hlp -pgsql/pgaccess/lib/help/load.hlp -pgsql/pgaccess/lib/help/lock.hlp -pgsql/pgaccess/lib/help/mathfunc.hlp -pgsql/pgaccess/lib/help/move.hlp -pgsql/pgaccess/lib/help/mvcc.hlp -pgsql/pgaccess/lib/help/new_query.hlp -pgsql/pgaccess/lib/help/new_table.hlp -pgsql/pgaccess/lib/help/notify.hlp -pgsql/pgaccess/lib/help/open_query.hlp -pgsql/pgaccess/lib/help/open_table.hlp -pgsql/pgaccess/lib/help/pgfunctions.hlp -pgsql/pgaccess/lib/help/postgresql.hlp -pgsql/pgaccess/lib/help/queries.hlp -pgsql/pgaccess/lib/help/reports.hlp -pgsql/pgaccess/lib/help/reset.hlp -pgsql/pgaccess/lib/help/revoke.hlp -pgsql/pgaccess/lib/help/rollback.hlp -pgsql/pgaccess/lib/help/schema.hlp -pgsql/pgaccess/lib/help/scripts.hlp -pgsql/pgaccess/lib/help/select.hlp -pgsql/pgaccess/lib/help/select_into.hlp -pgsql/pgaccess/lib/help/sequences.hlp -pgsql/pgaccess/lib/help/set.hlp -pgsql/pgaccess/lib/help/show.hlp -pgsql/pgaccess/lib/help/sql_guide.hlp -pgsql/pgaccess/lib/help/sqlfunc.hlp -pgsql/pgaccess/lib/help/stringfunc.hlp -pgsql/pgaccess/lib/help/tables.hlp -pgsql/pgaccess/lib/help/unlisten.hlp -pgsql/pgaccess/lib/help/update.hlp -pgsql/pgaccess/lib/help/users.hlp -pgsql/pgaccess/lib/help/vacuum.hlp -pgsql/pgaccess/lib/help/view_table_structure.hlp -pgsql/pgaccess/lib/help/views.hlp -pgsql/pgaccess/lib/help/visual_designer.hlp -pgsql/pgaccess/lib/help/y2k.hlp -pgsql/pgaccess/lib/help.tcl -pgsql/pgaccess/lib/languages/czech -pgsql/pgaccess/lib/languages/deutsch -pgsql/pgaccess/lib/languages/francais -pgsql/pgaccess/lib/languages/italiano -pgsql/pgaccess/lib/languages/magyar -pgsql/pgaccess/lib/languages/portugues -pgsql/pgaccess/lib/languages/romana -pgsql/pgaccess/lib/languages/russian.koi8r -pgsql/pgaccess/lib/languages/russian_win -pgsql/pgaccess/lib/languages/spanish -pgsql/pgaccess/lib/mainlib.tcl -pgsql/pgaccess/lib/preferences.tcl -pgsql/pgaccess/lib/queries.tcl -pgsql/pgaccess/lib/reports.tcl -pgsql/pgaccess/lib/schema.tcl -pgsql/pgaccess/lib/scripts.tcl -pgsql/pgaccess/lib/sequences.tcl -pgsql/pgaccess/lib/tables.tcl -pgsql/pgaccess/lib/users.tcl -pgsql/pgaccess/lib/views.tcl -pgsql/pgaccess/lib/visualqb.tcl -pgsql/pgaccess/main.tcl -@dirrm pgsql/pgaccess/images -@dirrm pgsql/pgaccess/lib/help -@dirrm pgsql/pgaccess/lib/languages -@dirrm pgsql/pgaccess/lib -@dirrm pgsql/pgaccess diff --git a/databases/postgresql83-server/scripts/configure b/databases/postgresql83-server/scripts/configure deleted file mode 100644 index 4a92ee450ebe..000000000000 --- a/databases/postgresql83-server/scripts/configure +++ /dev/null @@ -1,7 +0,0 @@ -#! /bin/sh - -# $FreeBSD$ - -cd $WRKSRC || exit 1 - -perl -pi -e "s=!!JAVA_HOME!!=${JAVA_HOME}=; s=!!PREFIX!!=${PREFIX}=" ${WRKSRC}/interfaces/jdbc/Makefile diff --git a/databases/postgresql83-server/scripts/createuser b/databases/postgresql83-server/scripts/createuser deleted file mode 100644 index 2abe201e7a4b..000000000000 --- a/databases/postgresql83-server/scripts/createuser +++ /dev/null @@ -1,50 +0,0 @@ -#!/usr/bin/perl -# - -eval '(exit $?0)' && eval 'exec /usr/bin/perl -S $0 ${1+"$@"}' -& eval 'exec /usr/bin/perl -S $0 $argv:q' -if 0; - -if( $> ) { - print "\nYou must be root to run this step!\n\n"; - exit 1; -} - -if( getpwnam( "pgsql" ) ) { - ( $null, $null, $pgUID ) = getpwnam( "pgsql" ); -} else { - $pgUID = 70; - while( getpwuid( $pgUID ) ) { - $pgUID++; - } -} - -if( getgrnam( "pgsql" ) ) { - ( $null, $null, $pgGID ) = getgrnam( "pgsql" ); -} else { - $pgGID = 70; - while( getgrgid( $pgGID ) ) { - $pgGID++; - } - &append_file( "/etc/group", "pgsql:*:$pgGID:" ); -} - -print "pgsql user using uid $pgUID\n"; -print "pgsql user using gid $pgGID\n"; - -system( "/usr/bin/chpass -a \"pgsql:*:$pgUID:$pgGID\:\:0:0:PostgreSQL pseudo-user:$ENV{'PREFIX'}/pgsql:/bin/sh\"" ); - -sub append_file { - local($file,@list) = @_; - local($LOCK_EX) = 2; - local($LOCK_NB) = 4; - local($LOCK_UN) = 8; - - open(F, ">> $file") || die "$file: $!\n"; - while( ! flock( F, $LOCK_EX | $LOCK_NB ) ) { - exit 1; - } - print F join( "\n", @list) . "\n"; - close F; - flock( F, $LOCK_UN ); -} diff --git a/databases/postgresql84-server/Makefile b/databases/postgresql84-server/Makefile deleted file mode 100644 index 94aa22cad135..000000000000 --- a/databases/postgresql84-server/Makefile +++ /dev/null @@ -1,259 +0,0 @@ -# New ports collection makefile for: PostgreSQL -# Date created: November 13, 1998 -# Whom: Marc G. Fournier <scrappy@FreeBSD.org> -# -# $FreeBSD$ -# - -PORTNAME= postgresql -PORTVERSION= 7.0.2 -CATEGORIES= databases -MASTER_SITES= ftp://ftp.postgresql.org/pub/%SUBDIR%/ \ - ftp://ftp.de.postgresql.org/%SUBDIR%/ \ - ftp://ftp.iodynamics.com/pub/mirror/postgresql/%SUBDIR%/ \ - ftp://ftp.digex.net/pub/packages/database/postgresql/%SUBDIR%/ \ - ftp://ftp.sunet.se/pub/unix/databases/relational/postgresql/%SUBDIR%/ -MASTER_SITE_SUBDIR= source/v${PORTVERSION} -DISTFILES= ${PORTNAME}-${PORTVERSION}.base${EXTRACT_SUFX} \ - ${PORTNAME}-${PORTVERSION}.support${EXTRACT_SUFX} \ - ${PORTNAME}-${PORTVERSION}.docs${EXTRACT_SUFX} -# ${PORTNAME}-${PORTVERSION}.test${EXTRACT_SUFX} -DIST_SUBDIR= postgresql - -MAINTAINER= andreas@FreeBSD.org - -.if ${MACHINE_ARCH} == "alpha" -BROKEN= doesn\'t build on the alpha yet -.endif - -Y2K= http://www.postgresql.org/y2k.html - -INSTALLS_SHLIB= YES -LDCONFIG_DIRS= %%PREFIX%%/pgsql/lib - -# if you want to use the tcl/tk frontend pgaccess, then you need to build -# postgresql with tcl support by typing: make -DWITH_TCL -.if defined(WITH_TCL) -TCL_INCDIR= ${LOCALBASE}/include/tcl8.3 -TK_INCDIR= ${LOCALBASE}/include/tk8.3 -MAKE_ENV= TCL_INCDIR=${TCL_INCDIR} -CONFIGURE_ENV= WISH=${LOCALBASE}/bin/wish8.3 -LIB_DEPENDS= tcl83.1:${PORTSDIR}/lang/tcl83 \ - tk83.1:${PORTSDIR}/x11-toolkits/tk83 -CONFIGURE_TCL= --with-tcl --with-tclconfig="${LOCALBASE}/lib/tcl8.3 ${LOCALBASE}/lib/tk8.3" -.endif - -# if you want to disable the multibyte support, type: -# make -DWITHOUT_MULTIBYTE -# -# if you want to set the default encoding for the multibyte support, type: -# make DEFAULT_ENCODING=<encoding> -# where <encoding> is one of these: -# SQL_ASCII LATIN1 LATIN2 LATIN3 LATIN4 LATIN5 -# EUC_JP EUC_CN EUC_KR EUC_TW KOI8 -# UNICODE MULE_INTERNAL WIN ALT -.if defined(WITHOUT_MULTIBYTE) -CONFIGURE_MULTIBYTE= # none -.elif defined(DEFAULT_ENCODING) -CONFIGURE_MULTIBYTE= --enable-multibyte="${DEFAULT_ENCODING}" -.else -CONFIGURE_MULTIBYTE= --enable-multibyte -.endif - -# if you want jdbc, type make -DWITH_JDBC -# Honors JAVA_HOME if you have it set, and don't want the dependency. -.if defined(WITH_JDBC) -JAVA_HOME?= ${LOCALBASE}/jdk1.1.8 -BUILD_DEPENDS= ${JAVA_HOME}/bin/javac:${PORTSDIR}/java/jdk -SCRIPTS_ENV+= JAVA_HOME=${JAVA_HOME} -.endif - -WRKSRC= ${WRKDIR}/${DISTNAME}/src -DOCDIR= ${WRKDIR}/${DISTNAME}/doc - -USE_GMAKE= YES -MAKEFILE= GNUmakefile -HAS_CONFIGURE= YES -CONFIGURE_ARGS= --prefix=${PREFIX}/pgsql \ - --enable-locale \ - --with-template=`uname -s | ${TR} '[A-Z]' '[a-z]'` \ - --with-includes="${PREFIX}/include ${TCL_INCDIR} ${TK_INCDIR}" \ - ${CONFIGURE_TCL} \ - ${CONFIGURE_MULTIBYTE} \ - --with-libraries=${PREFIX}/lib - -MAN1= createdb.1 createlang.1 createuser.1 dropdb.1 droplang.1 \ - dropuser.1 ecpg.1 initdb.1 initlocation.1 ipcclean.1 pg_ctl.1 \ - pg_dump.1 pg_dumpall.1 pg_passwd.1 pg_upgrade.1 pgaccess.1 \ - pgadmin.1 pgtclsh.1 pgtksh.1 postgres.1 postmaster.1 psql.1 \ - vacuumdb.1 -MANL= abort.l alter_group.l alter_table.l alter_user.l \ - begin.l close.l cluster.l comment.l commit.l copy.l \ - create_aggregate.l create_constraint_trigger.l \ - create_database.l create_function.l create_group.l \ - create_index.l create_language.l create_operator.l \ - create_rule.l create_sequence.l create_table.l \ - create_table_as.l create_trigger.l create_type.l \ - create_user.l create_view.l declare.l delete.l \ - drop_aggregate.l drop_database.l drop_function.l \ - drop_group.l drop_index.l drop_language.l \ - drop_operator.l drop_rule.l drop_sequence.l \ - drop_table.l drop_trigger.l drop_type.l drop_user.l \ - drop_view.l end.l explain.l fetch.l grant.l insert.l \ - listen.l load.l lock.l move.l notify.l reindex.l \ - reset.l revoke.l rollback.l select.l select_into.l \ - set.l show.l truncate.l unlisten.l update.l vacuum.l - -MANPREFIX= ${PREFIX}/pgsql - -pre-fetch: - @${ECHO_MSG} "To install and run postgresql you need to compile kernel with:" - @${ECHO_MSG} " options \"SYSVSHM, SYSVSEM, SYSVMSG\"" -.if !defined(WITH_TCL) - @${ECHO_MSG} "To build the \"PostgreSQL to Tcl interface library\", libpgtcl, type:" - @${ECHO_MSG} " make -DWITH_TCL" -.else - @${ECHO_MSG} "Building PostgreSQL with \"libpgtcl\"." -.endif -.if !defined(WITHOUT_MULTIBYTE) - @${ECHO_MSG} "To disable multibyte support, type:" - @${ECHO_MSG} " make -DWITHOUT_MULTIBYTE" -.if !defined(DEFAULT_ENCODING) - @${ECHO_MSG} "To set the default encoding for the multibyte support, type:" - @${ECHO_MSG} " make DEFAULT_ENCODING=<encoding>" - @${ECHO_MSG} "where <encoding> is one of these:" - @${ECHO_MSG} " SQL_ASCII LATIN1 LATIN2 LATIN3 LATIN4 LATIN5" - @${ECHO_MSG} " EUC_JP EUC_CN EUC_KR EUC_TW KOI8" - @${ECHO_MSG} " UNICODE MULE_INTERNAL WIN ALT" -.else - @${ECHO_MSG} "The default encoding is '${DEFAULT_ENCODING}'." -.endif -.else - @${ECHO_MSG} "Building PostgreSQL without multibyte support." -.endif -.if !defined(WITH_JDBC) - @${ECHO_MSG} "To build Java (JDBC) support, type:" - @${ECHO_MSG} " make -DWITH_JDBC" -.else - @${ECHO_MSG} "Building PostgreSQL with \"postgresql.jar\"." -.endif - -post-patch: - @ ${MV} ${WRKSRC}/template/freebsd ${WRKSRC}/template/freebsd.orig - @ ${SED} -e 's#CFLAGS:-O2 -m486 -pipe#CFLAGS:${CFLAGS}#' \ - -e 's#USE_LOCALE:no#USE_LOCALE:yes#' \ - ${WRKSRC}/template/freebsd.orig >> ${WRKSRC}/template/freebsd - @ ${MV} ${WRKSRC}/Makefile.global.in ${WRKSRC}/Makefile.global.in.old - @ ${SED} -e 's=!!PREFIX!!=${PREFIX}=g' \ - ${WRKSRC}/Makefile.global.in.old \ - >> ${WRKSRC}/Makefile.global.in - -post-build: -.if defined(WITH_JDBC) - @ cd ${WRKSRC}/interfaces/jdbc && ${GMAKE} -.if !defined(NOPORTDOCS) - @ cd ${WRKSRC}/interfaces/jdbc && ${GMAKE} examples -.endif -.endif - @ ${ECHO} "------------------------------------------------------------" - @ ${ECHO} "Dump existing databases, before installing new db version !!" - @ ${ECHO} "Detailed instructions, see" - @ ${ECHO} "${WRKDIR}/${DISTNAME}/INSTALL" - @ ${ECHO} "------------------------------------------------------------" - -pre-install: -.if defined(PACKAGE_BUILDING) - ${RM} -rf ${PREFIX}/pgsql -.endif - @ ${MKDIR} ${PREFIX}/pgsql - @ ${SETENV} ${MAKE_ENV} perl ${SCRIPTDIR}/createuser - -post-install: -.if defined(NOPORTDOCS) - @ ( cd ${DOCDIR}; ${GMAKE} man ) -.else - @ ( cd ${DOCDIR}; ${GMAKE} install ) -.endif - @ if [ ! -f ${PREFIX}/pgsql/.profile ]; then \ - ${ECHO} "PATH=${PATH}:${PREFIX}/pgsql/bin" \ - > ${PREFIX}/pgsql/.profile; \ - ${ECHO} "MANPATH=${MANPATH}:${PREFIX}/pgsql/man" \ - >> ${PREFIX}/pgsql/.profile; \ - ${ECHO} "PGLIB=${PREFIX}/pgsql/lib" \ - >> ${PREFIX}/pgsql/.profile; \ - ${ECHO} "# note: PGDATA overwrites the -D startup option" \ - >> ${PREFIX}/pgsql/.profile; \ - ${ECHO} "PGDATA=${PREFIX}/pgsql/data" \ - >> ${PREFIX}/pgsql/.profile; \ - ${ECHO} "DISPLAY=:0" \ - >> ${PREFIX}/pgsql/.profile; \ - ${ECHO} "export PATH MANPATH PGLIB PGDATA DISPLAY" \ - >> ${PREFIX}/pgsql/.profile; \ - ${ECHO} "# if you want to make regression tests use this TZ" \ - >> ${PREFIX}/pgsql/.profile; \ - ${ECHO} "#TZ=PST8PDT" \ - >> ${PREFIX}/pgsql/.profile; \ - ${ECHO} "#export TZ" \ - >> ${PREFIX}/pgsql/.profile; \ - fi - @ ${CHOWN} -R pgsql:pgsql ${PREFIX}/pgsql - @ ${ECHO} 'Initializing PostgreSQL Databases - this may take a few minutes...' - @ ${SETENV} OBJFORMAT=${PORTOBJFORMAT} ${LDCONFIG} -m ${PREFIX}/pgsql/lib - @ su -l pgsql -c 'PATH=${PREFIX}/pgsql/bin:${PATH} LD_LIBRARY_PATH=${PREFIX}/pgsql/lib ${PREFIX}/pgsql/bin/initdb --pglib=${PREFIX}/pgsql/lib --pgdata=${PREFIX}/pgsql/data' - @ ${SED} -e "s=!!PREFIX!!=${PREFIX}=g" < ${FILESDIR}/pgsql.sh.tmpl \ - > ${PREFIX}/etc/rc.d/pgsql.sh - @ ${CHMOD} 554 ${PREFIX}/etc/rc.d/pgsql.sh - @ ${CHOWN} root.pgsql ${PREFIX}/etc/rc.d/pgsql.sh - @ ${INSTALL_DATA} ${FILESDIR}/post-install-notes ${PREFIX}/pgsql -.if defined(WITHOUT_MULTIBYTE) - @${CP} ${TMPPLIST} ${TMPPLIST}.nomulti - @${GREP} -v pgsql/bin/pg_encoding ${TMPPLIST}.nomulti > ${TMPPLIST} -.endif -.if defined(WITH_TCL) - @${CP} ${TMPPLIST} ${TMPPLIST}.notcl - @${CAT} ${PKGDIR}/PLIST.tcl ${TMPPLIST}.notcl > ${TMPPLIST} - @${RM} ${TMPPLIST}.notcl -.endif -.if defined(WITH_JDBC) - @ ${MKDIR} -m 0555 ${PREFIX}/share/java/classes - @ ${INSTALL_DATA} ${WRKSRC}/interfaces/jdbc/postgresql.jar \ - ${PREFIX}/share/java/classes/postgresql.jar - @ ${ECHO_MSG} "---------------------------------------------------------" - @ ${ECHO_MSG} "Putting postgresql.jar in" - @ ${ECHO_MSG} "${PREFIX}/share/java/classes/postgresql.jar" - @ ${ECHO_MSG} "Add this to your CLASSPATH!" - @ ${ECHO_MSG} "ALSO NOTE: path inside jar file modified from 6.5.x:" - @ ${ECHO_MSG} " 'postgresql.*' -> 'org.postgresql.*'!" - @ ${ECHO_MSG} "You will need to modify you applications' props files." - @ ${ECHO_MSG} "---------------------------------------------------------" - @ ${CAT} ${PKGDIR}/PLIST.jdbc >> ${TMPPLIST} -.if !defined(NOPORTDOCS) - @ ${MKDIR} -m 0555 ${PREFIX}/share/examples/pgsql/jdbc - @ ${INSTALL_DATA} ${WRKSRC}/interfaces/jdbc/example/*java \ - ${PREFIX}/share/examples/pgsql/jdbc - @ ${INSTALL_DATA} ${WRKSRC}/interfaces/jdbc/README* \ - ${PREFIX}/share/examples/pgsql/jdbc - @ ${ECHO_MSG} "---------------------------------------------------------" - @ ${ECHO_MSG} "Putting jdbc examples into ${PREFIX}/share/examples/pgsql" - @ ${ECHO_MSG} "---------------------------------------------------------" - @ ${CAT} ${PKGDIR}/PLIST.doc >> ${TMPPLIST} -.endif -.endif -.if !defined(NOPORTDOCS) - ${MKDIR} ${PREFIX}/share/doc/pgsql - @ ${GMAKE} -C ${WRKDIR}/${DISTNAME}/doc install - ${INSTALL_MAN} ${WRKDIR}/${DISTNAME}/doc/FAQ* ${PREFIX}/share/doc/pgsql - ${INSTALL_MAN} ${WRKDIR}/${DISTNAME}/doc/README* ${PREFIX}/share/doc/pgsql - ${INSTALL_MAN} ${WRKDIR}/${DISTNAME}/doc/TODO ${PREFIX}/share/doc/pgsql -# ${INSTALL_MAN} ${WRKDIR}/${DISTNAME}/doc/*ps.gz ${PREFIX}/share/doc/pgsql -.endif -.if !defined(BATCH) - @ more -e ${FILESDIR}/post-install-notes -.endif -.if !defined(DEBUG_FLAGS) -.for file in ecpg pg_dump pg_id pg_passwd pg_version postgres psql - @ strip ${PREFIX}/pgsql/bin/${file} -.endfor -.endif - -.include <bsd.port.mk> diff --git a/databases/postgresql84-server/distinfo b/databases/postgresql84-server/distinfo deleted file mode 100644 index 309ea1e11614..000000000000 --- a/databases/postgresql84-server/distinfo +++ /dev/null @@ -1,4 +0,0 @@ -MD5 (postgresql/postgresql-7.0.2.base.tar.gz) = 871d23b85d9a3599a7ed75dfc7da7ba7 -MD5 (postgresql/postgresql-7.0.2.support.tar.gz) = c21180a6485d85785c8e69f0cbff05dd -MD5 (postgresql/postgresql-7.0.2.docs.tar.gz) = efac1f87463f252e54d72b256885b883 -MD5 (postgresql/postgresql-7.0.2.test.tar.gz) = 3443b3d83194c396f20aee2adc6f93bf diff --git a/databases/postgresql84-server/files/patch-aj b/databases/postgresql84-server/files/patch-aj deleted file mode 100644 index 4231fc94ede9..000000000000 --- a/databases/postgresql84-server/files/patch-aj +++ /dev/null @@ -1,67 +0,0 @@ ---- bin/pg_passwd/pg_passwd.c.orig Mon Apr 17 05:45:18 2000 -+++ bin/pg_passwd/pg_passwd.c Sat May 20 17:54:59 2000 -@@ -18,11 +18,15 @@ - - #endif - -+#ifndef _POSIX_SOURCE -+# define _PASSWORD_LEN 128 /* max length, not containing NULL */ -+#endif -+ - char *comname; - static void usage(FILE *stream); - static void read_pwd_file(char *filename); - static void write_pwd_file(char *filename, char *bkname); --static void encrypt_pwd(char key[9], char salt[3], char passwd[14]); -+static void encrypt_pwd(char key[9], char salt[3], char passwd[_PASSWORD_LEN+1]); - static void prompt_for_username(char *username); - static void prompt_for_password(char *prompt, char *password); - -@@ -150,7 +154,7 @@ - - if (q != NULL) - *(q++) = '\0'; -- if (strlen(p) != 13) -+ if (strlen(p) > _PASSWORD_LEN) - { - fprintf(stderr, "WARNING: %s: line %d: illegal password length.\n", - filename, npwds + 1); -@@ -214,7 +218,7 @@ - } - - static void --encrypt_pwd(char key[9], char salt[3], char passwd[14]) -+encrypt_pwd(char key[9], char salt[3], char passwd[_PASSWORD_LEN+1]) - { - int n; - -@@ -246,9 +250,9 @@ - - #ifdef NOT_USED - static int --check_pwd(char key[9], char passwd[14]) -+check_pwd(char key[9], char passwd[_PASSWORD_LEN+1]) - { -- char shouldbe[14]; -+ char shouldbe[_PASSWORD_LEN+1]; - char salt[3]; - - salt[0] = passwd[0]; -@@ -256,7 +260,7 @@ - salt[2] = '\0'; - encrypt_pwd(key, salt, shouldbe); - -- return strncmp(shouldbe, passwd, 13) == 0 ? 1 : 0; -+ return strncmp(shouldbe, passwd, _PASSWORD_LEN) == 0 ? 1 : 0; - } - - #endif -@@ -332,7 +336,7 @@ - char salt[3]; - char key[9], - key2[9]; -- char e_passwd[14]; -+ char e_passwd[_PASSWORD_LEN+1]; - int i; - - comname = argv[0]; diff --git a/databases/postgresql84-server/files/patch-ar b/databases/postgresql84-server/files/patch-ar deleted file mode 100644 index c5c8096fc141..000000000000 --- a/databases/postgresql84-server/files/patch-ar +++ /dev/null @@ -1,11 +0,0 @@ ---- configure.orig Sun Oct 10 14:37:07 1999 -+++ configure Sun Oct 10 14:37:29 1999 -@@ -1429,7 +1429,7 @@ - ELF_SYS=true - else - rm -rf conftest* -- if test "X$elf" = "Xyes" -+ if test "X$PORTOBJFORMAT" = "Xelf" - then - ELF_SYS=true - else diff --git a/databases/postgresql84-server/files/patch-as b/databases/postgresql84-server/files/patch-as deleted file mode 100644 index 3282168c4aed..000000000000 --- a/databases/postgresql84-server/files/patch-as +++ /dev/null @@ -1,11 +0,0 @@ ---- Makefile.global.in.orig Sun Dec 6 00:08:56 1998 -+++ Makefile.global.in Sat Feb 27 04:23:12 1999 -@@ -79,7 +79,7 @@ - POSTMANDIR= $(POSTGRESDIR)/man - - # Where the formatted documents (e.g., the reference manual) get installed. --POSTDOCDIR= $(POSTGRESDIR)/doc -+POSTDOCDIR= !!PREFIX!!/share/doc/pgsql - - # Where the header files necessary to build frontend programs get installed. - HEADERDIR= $(POSTGRESDIR)/include diff --git a/databases/postgresql84-server/files/patch-at b/databases/postgresql84-server/files/patch-at deleted file mode 100644 index 93e68a708211..000000000000 --- a/databases/postgresql84-server/files/patch-at +++ /dev/null @@ -1,11 +0,0 @@ ---- ../doc/Makefile.orig Sun Nov 29 06:30:13 1998 -+++ ../doc/Makefile Mon Jun 21 17:00:13 1999 -@@ -12,7 +12,7 @@ - # - #---------------------------------------------------------------------------- - --PGDOCS= $(POSTGRESDIR)/doc -+PGDOCS= $(POSTDOCDIR) - SRCDIR= ../src - - TAR= tar diff --git a/databases/postgresql84-server/files/patch-ba b/databases/postgresql84-server/files/patch-ba deleted file mode 100644 index a3b679b882c5..000000000000 --- a/databases/postgresql84-server/files/patch-ba +++ /dev/null @@ -1,25 +0,0 @@ ---- interfaces/jdbc/Makefile.orig Tue Mar 14 16:55:17 2000 -+++ interfaces/jdbc/Makefile Sun Apr 16 21:16:43 2000 -@@ -10,10 +10,10 @@ - - FIND = find - IDL2JAVA = idltojava -fno-cpp -fno-tie --JAR = jar --JAVA = java --JAVAC = javac -g --JAVADOC = javadoc -+JAR = !!JAVA_HOME!!/bin/jar -+JAVA = !!JAVA_HOME!!/bin/java -+JAVAC = !!JAVA_HOME!!/bin/javac -+JAVADOC = !!JAVA_HOME!!/bin/javadoc - RM = rm -f - TOUCH = touch - -@@ -40,6 +40,7 @@ - @echo To compile, type: - @echo " $(MAKE) jdbc2" - @echo ------------------------------------------------------------ -+ $(MAKE) jdbc1 - - msg: - @echo ------------------------------------------------------------ diff --git a/databases/postgresql84-server/files/patch-bb b/databases/postgresql84-server/files/patch-bb deleted file mode 100644 index ea0f1732dcb0..000000000000 --- a/databases/postgresql84-server/files/patch-bb +++ /dev/null @@ -1,13 +0,0 @@ ---- pl/tcl/Makefile~ Sat Apr 29 19:45:42 2000 -+++ pl/tcl/Makefile Sat May 20 22:42:22 2000 -@@ -71,7 +71,9 @@ - CFLAGS+= $(TCL_SHLIB_CFLAGS) $(TCL_DEFS) - - CFLAGS+= -I$(SRCDIR)/include -I$(SRCDIR)/backend $(PGSQL_INCLUDES) -- -+ -+CFLAGS+= -I$(TCL_INCDIR) -+ - # - # Uncomment the following to enable the unknown command lookup - # on the first of all calls to the call handler. See the doc diff --git a/databases/postgresql84-server/files/patch-bc b/databases/postgresql84-server/files/patch-bc deleted file mode 100644 index ff747fb84a2f..000000000000 --- a/databases/postgresql84-server/files/patch-bc +++ /dev/null @@ -1,5 +0,0 @@ ---- bin/pg_ctl/postmaster.opts.default.sample~ Mon Apr 17 05:45:17 2000 -+++ bin/pg_ctl/postmaster.opts.default.sample Tue May 23 02:46:30 2000 -@@ -1 +1 @@ -- -+-i -o "-F" diff --git a/databases/postgresql84-server/files/pgsql.sh.tmpl b/databases/postgresql84-server/files/pgsql.sh.tmpl deleted file mode 100644 index e1673b4850c2..000000000000 --- a/databases/postgresql84-server/files/pgsql.sh.tmpl +++ /dev/null @@ -1,34 +0,0 @@ -#!/bin/sh - -# $FreeBSD$ -# -# For postmaster startup options, edit $PGDATA/postmaster.opts.default -# Preinstalled options are -i -o "-F" - -case $1 in -start) - [ -d !!PREFIX!!/pgsql/lib ] && /sbin/ldconfig -m !!PREFIX!!/pgsql/lib - [ -x !!PREFIX!!/pgsql/bin/pg_ctl ] && { - su -l pgsql -c \ - 'exec !!PREFIX!!/pgsql/bin/pg_ctl -w start > !!PREFIX!!/pgsql/errlog 2>&1' - echo -n ' pgsql' - } - ;; - -stop) - [ -x !!PREFIX!!/pgsql/bin/pg_ctl ] && { - su -l pgsql -c 'exec !!PREFIX!!/pgsql/bin/pg_ctl -w -m fast stop' - } - ;; - -status) - [ -x !!PREFIX!!/pgsql/bin/pg_ctl ] && { - su -l pgsql -c 'exec !!PREFIX!!/pgsql/bin/pg_ctl status' - } - ;; - -*) - echo "usage: `basename $0` {start|stop|status}" >&2 - exit 64 - ;; -esac diff --git a/databases/postgresql84-server/files/post-install-notes b/databases/postgresql84-server/files/post-install-notes deleted file mode 100644 index 289a7651109a..000000000000 --- a/databases/postgresql84-server/files/post-install-notes +++ /dev/null @@ -1,16 +0,0 @@ - -Now that PostgreSQL is installed, you should read the documentation and -implementation guides. These can be found at: - - http://www.PostgreSQL.org/docs - -You may wish to subscribe to the PostgreSQL user-support mailing list. -Send an e-mail to pgsql-questions-request@postgresql.org with the -text "subscribe" in the message body. - -If you built PostgreSQL with TCL support, you can install the port -"pgaccess" to get a TCL/TK based database frontend for database -operations. - -To start PostgreSQL, run the startup script: -$PREFIX/etc/rc.d/pgsql.sh start diff --git a/databases/postgresql84-server/pkg-comment b/databases/postgresql84-server/pkg-comment deleted file mode 100644 index 2125016b133c..000000000000 --- a/databases/postgresql84-server/pkg-comment +++ /dev/null @@ -1 +0,0 @@ -A robust, next generation, object-relational DBMS diff --git a/databases/postgresql84-server/pkg-descr b/databases/postgresql84-server/pkg-descr deleted file mode 100644 index f48a33337e55..000000000000 --- a/databases/postgresql84-server/pkg-descr +++ /dev/null @@ -1,24 +0,0 @@ -PostgreSQL is a robust, next-generation, Object-Relational DBMS (ORDBMS), -derived from the Berkeley Postgres database management system. While -PostgreSQL retains the powerful object-relational data model, rich data types -and easy extensibility of Postgres, it replaces the PostQuel query language -with an extended subset of SQL. - -The original Postgres code was the effort of many graduate students, -undergraduate students, and staff programmers working under the direction of -Professor Michael Stonebraker at the University of California, Berkeley. In -1995, Andrew Yu and Jolly Chen took on the task of converting the DBMS query -language to SQL and created a new database system which came to known as -Postgres95. Many others contributed to the porting, testing, debugging and -enhancement of the Postgres95 code. As the code improved, and 1995 faded into -memory, PostgreSQL was born. - -PostgreSQL development is presently being performed by a team of Internet -developers who are now responsible for all current and future development. The -development team coordinator is Marc G. Fournier (scrappy@PostgreSQL.ORG). -Support is available from the PostgreSQL developer/user community through the -support mailing list (questions@PostgreSQL.ORG). - -PostgreSQL is free and the complete source is available. - -WWW: http://www.postgresql.org diff --git a/databases/postgresql84-server/pkg-install b/databases/postgresql84-server/pkg-install deleted file mode 100644 index 7f3a090fe4b6..000000000000 --- a/databases/postgresql84-server/pkg-install +++ /dev/null @@ -1,44 +0,0 @@ -#! /bin/sh - -# $FreeBSD$ - -PATH=/bin:/usr/sbin - -if [ -z "${DB_DIR}" ]; then - DB_DIR=${PKG_PREFIX}/pgsql/data -fi - -case $2 in -POST-INSTALL) - USER=pgsql - GROUP=${USER} - UID=89 - GID=${UID} - - if pw group show "${GROUP}" 2>/dev/null; then - echo "You already have a group \"${GROUP}\", so I will use it." - else - if pw groupadd ${GROUP} -g ${GID}; then - echo "Added group \"${GROUP}\"." - else - echo "Adding group \"${GROUP}\" failed..." - exit 1 - fi - fi - - if pw user show "${USER}" 2>/dev/null; then - echo "You already have a user \"${USER}\", so I will use it." - else - if pw useradd ${USER} -u ${UID} -g ${GROUP} -h - \ - -d ${DB_DIR} -s /sbin/nologin -c "PostgreSQL Daemon" - then - echo "Added user \"${USER}\"." - else - echo "Adding user \"${USER}\" failed..." - exit 1 - fi - fi - - chown -R ${USER}.${GROUP} ${DB_DIR} - ;; -esac diff --git a/databases/postgresql84-server/pkg-plist b/databases/postgresql84-server/pkg-plist deleted file mode 100644 index 9992da1174ae..000000000000 --- a/databases/postgresql84-server/pkg-plist +++ /dev/null @@ -1,168 +0,0 @@ -etc/rc.d/pgsql.sh -pgsql/.profile -pgsql/bin/createdb -pgsql/bin/createlang -pgsql/bin/createuser -pgsql/bin/dropdb -pgsql/bin/droplang -pgsql/bin/dropuser -pgsql/bin/ecpg -pgsql/bin/initdb -pgsql/bin/initlocation -pgsql/bin/ipcclean -pgsql/bin/pg_ctl -pgsql/bin/pg_dump -pgsql/bin/pg_dumpall -pgsql/bin/pg_encoding -pgsql/bin/pg_id -pgsql/bin/pg_passwd -pgsql/bin/pg_upgrade -pgsql/bin/pg_version -pgsql/bin/postgres -pgsql/bin/postmaster -pgsql/bin/psql -pgsql/bin/vacuumdb -pgsql/data/PG_VERSION -pgsql/data/base/template1/PG_VERSION -pgsql/data/base/template1/pg_aggregate -pgsql/data/base/template1/pg_aggregate_name_type_index -pgsql/data/base/template1/pg_am -pgsql/data/base/template1/pg_am_name_index -pgsql/data/base/template1/pg_amop -pgsql/data/base/template1/pg_amop_opid_index -pgsql/data/base/template1/pg_amop_strategy_index -pgsql/data/base/template1/pg_amproc -pgsql/data/base/template1/pg_attrdef -pgsql/data/base/template1/pg_attrdef_adrelid_index -pgsql/data/base/template1/pg_attribute -pgsql/data/base/template1/pg_attribute_relid_attnam_index -pgsql/data/base/template1/pg_attribute_relid_attnum_index -pgsql/data/base/template1/pg_class -pgsql/data/base/template1/pg_class_oid_index -pgsql/data/base/template1/pg_class_relname_index -pgsql/data/base/template1/pg_description -pgsql/data/base/template1/pg_description_objoid_index -pgsql/data/base/template1/pg_index -pgsql/data/base/template1/pg_index_indexrelid_index -pgsql/data/base/template1/pg_indexes -pgsql/data/base/template1/pg_inheritproc -pgsql/data/base/template1/pg_inherits -pgsql/data/base/template1/pg_inherits_relid_seqno_index -pgsql/data/base/template1/pg_ipl -pgsql/data/base/template1/pg_language -pgsql/data/base/template1/pg_language_name_index -pgsql/data/base/template1/pg_language_oid_index -pgsql/data/base/template1/pg_listener -pgsql/data/base/template1/pg_listener_relname_pid_index -pgsql/data/base/template1/pg_opclass -pgsql/data/base/template1/pg_opclass_deftype_index -pgsql/data/base/template1/pg_opclass_name_index -pgsql/data/base/template1/pg_operator -pgsql/data/base/template1/pg_operator_oid_index -pgsql/data/base/template1/pg_operator_oprname_l_r_k_index -pgsql/data/base/template1/pg_proc -pgsql/data/base/template1/pg_proc_oid_index -pgsql/data/base/template1/pg_proc_proname_narg_type_index -pgsql/data/base/template1/pg_relcheck -pgsql/data/base/template1/pg_relcheck_rcrelid_index -pgsql/data/base/template1/pg_rewrite -pgsql/data/base/template1/pg_rewrite_oid_index -pgsql/data/base/template1/pg_rewrite_rulename_index -pgsql/data/base/template1/pg_rules -pgsql/data/base/template1/pg_statistic -pgsql/data/base/template1/pg_statistic_relid_att_index -pgsql/data/base/template1/pg_tables -pgsql/data/base/template1/pg_trigger -pgsql/data/base/template1/pg_trigger_tgconstrname_index -pgsql/data/base/template1/pg_trigger_tgconstrrelid_index -pgsql/data/base/template1/pg_trigger_tgrelid_index -pgsql/data/base/template1/pg_type -pgsql/data/base/template1/pg_type_oid_index -pgsql/data/base/template1/pg_type_typname_index -pgsql/data/base/template1/pg_user -pgsql/data/base/template1/pg_views -pgsql/data/pg_control -pgsql/data/pg_database -pgsql/data/pg_geqo.sample -pgsql/data/pg_group -pgsql/data/pg_group_name_index -pgsql/data/pg_group_sysid_index -pgsql/data/pg_hba.conf -pgsql/data/pg_log -pgsql/data/pg_shadow -pgsql/data/pg_variable -pgsql/data/postmaster.opts.default -pgsql/include/access/attnum.h -pgsql/include/c.h -pgsql/include/commands/trigger.h -pgsql/include/config.h -pgsql/include/ecpgerrno.h -pgsql/include/ecpglib.h -pgsql/include/ecpgtype.h -pgsql/include/executor/spi.h -pgsql/include/fmgr.h -pgsql/include/lib/dllist.h -pgsql/include/libpgeasy.h -pgsql/include/libpq/libpq-fs.h -pgsql/include/libpq/pqcomm.h -pgsql/include/libpq++/pgconnection.h -pgsql/include/libpq++/pgcursordb.h -pgsql/include/libpq++/pgdatabase.h -pgsql/include/libpq++/pglobject.h -pgsql/include/libpq++/pgtransdb.h -pgsql/include/libpq++.h -pgsql/include/libpq-fe.h -pgsql/include/libpq-int.h -pgsql/include/os.h -pgsql/include/postgres.h -pgsql/include/postgres_ext.h -pgsql/include/pqexpbuffer.h -pgsql/include/sql3types.h -pgsql/include/sqlca.h -pgsql/include/utils/elog.h -pgsql/include/utils/geo_decls.h -pgsql/include/utils/mcxt.h -pgsql/include/utils/palloc.h -pgsql/lib/global1.bki.source -pgsql/lib/global1.description -pgsql/lib/libecpg.a -pgsql/lib/libecpg.so -pgsql/lib/libecpg.so.3 -pgsql/lib/libpgeasy.a -pgsql/lib/libpgeasy.so -pgsql/lib/libpgeasy.so.2 -pgsql/lib/libpq++.a -pgsql/lib/libpq++.so -pgsql/lib/libpq++.so.3 -pgsql/lib/libpq.a -pgsql/lib/libpq.so -pgsql/lib/libpq.so.2 -pgsql/lib/local1_template1.bki.source -pgsql/lib/local1_template1.description -pgsql/lib/pg_geqo.sample -pgsql/lib/pg_hba.conf.sample -pgsql/lib/pg_ident.conf.sample -pgsql/lib/pg_options.sample -pgsql/lib/plpgsql.so -pgsql/lib/postmaster.opts.default.sample -pgsql/post-install-notes -@dirrm pgsql/bin -@dirrm pgsql/data/base/template1 -@dirrm pgsql/data/base -@dirrm pgsql/data/pg_xlog -@dirrm pgsql/data -@dirrm pgsql/include/access -@dirrm pgsql/include/commands -@dirrm pgsql/include/executor -@dirrm pgsql/include/lib -@dirrm pgsql/include/libpq -@dirrm pgsql/include/libpq++ -@dirrm pgsql/include/port/freebsd -@dirrm pgsql/include/port -@dirrm pgsql/include/utils -@dirrm pgsql/include -@dirrm pgsql/lib -@dirrm pgsql/man/man1 -@dirrm pgsql/man/manl -@dirrm pgsql/man -@dirrm pgsql diff --git a/databases/postgresql84-server/pkg-plist.doc b/databases/postgresql84-server/pkg-plist.doc deleted file mode 100644 index 06b7bd9ea116..000000000000 --- a/databases/postgresql84-server/pkg-plist.doc +++ /dev/null @@ -1,888 +0,0 @@ -share/doc/pgsql/FAQ -share/doc/pgsql/FAQ_AIX -share/doc/pgsql/FAQ_BSDI -share/doc/pgsql/FAQ_DEV -share/doc/pgsql/FAQ_DigitalUnix -share/doc/pgsql/FAQ_FreeBSD -share/doc/pgsql/FAQ_HPUX -share/doc/pgsql/FAQ_Irix -share/doc/pgsql/FAQ_Linux -share/doc/pgsql/FAQ_QNX4 -share/doc/pgsql/FAQ_SCO -share/doc/pgsql/FAQ_Solaris -share/doc/pgsql/README.Charsets -share/doc/pgsql/README.NT -share/doc/pgsql/README.fsync -share/doc/pgsql/README.inet -share/doc/pgsql/README.locale -share/doc/pgsql/README.mb -share/doc/pgsql/README.mb.jp -share/doc/pgsql/TODO -share/doc/pgsql/admin/admin.htm -share/doc/pgsql/admin/admin.html -share/doc/pgsql/admin/biblio.htm -share/doc/pgsql/admin/c573.htm -share/doc/pgsql/admin/c573602.htm -share/doc/pgsql/admin/c573680.htm -share/doc/pgsql/admin/c573717.htm -share/doc/pgsql/admin/copyright.htm -share/doc/pgsql/admin/disk.htm -share/doc/pgsql/admin/index.html -share/doc/pgsql/admin/install-win32.htm -share/doc/pgsql/admin/install-win321073.htm -share/doc/pgsql/admin/install-win321082.htm -share/doc/pgsql/admin/install.htm -share/doc/pgsql/admin/install855.htm -share/doc/pgsql/admin/intro-ag.htm -share/doc/pgsql/admin/intro-ag162.htm -share/doc/pgsql/admin/layout.gif -share/doc/pgsql/admin/layout.htm -share/doc/pgsql/admin/manage-ag.htm -share/doc/pgsql/admin/manage-ag1604.htm -share/doc/pgsql/admin/manage-ag1646.htm -share/doc/pgsql/admin/manage-ag1655.htm -share/doc/pgsql/admin/newuser.htm -share/doc/pgsql/admin/notation.htm -share/doc/pgsql/admin/pg-options.htm -share/doc/pgsql/admin/ports.htm -share/doc/pgsql/admin/ports481.htm -share/doc/pgsql/admin/postmaster.htm -share/doc/pgsql/admin/preface.htm -share/doc/pgsql/admin/recovery.htm -share/doc/pgsql/admin/regress.htm -share/doc/pgsql/admin/regress1861.htm -share/doc/pgsql/admin/regress1895.htm -share/doc/pgsql/admin/regress1941.htm -share/doc/pgsql/admin/release.htm -share/doc/pgsql/admin/release2009.htm -share/doc/pgsql/admin/release2020.htm -share/doc/pgsql/admin/release2031.htm -share/doc/pgsql/admin/release2042.htm -share/doc/pgsql/admin/release2124.htm -share/doc/pgsql/admin/release2135.htm -share/doc/pgsql/admin/release2146.htm -share/doc/pgsql/admin/release2187.htm -share/doc/pgsql/admin/release2203.htm -share/doc/pgsql/admin/release2222.htm -share/doc/pgsql/admin/release2266.htm -share/doc/pgsql/admin/release2288.htm -share/doc/pgsql/admin/release2303.htm -share/doc/pgsql/admin/release2312.htm -share/doc/pgsql/admin/release2335.htm -share/doc/pgsql/admin/release2349.htm -share/doc/pgsql/admin/release2352.htm -share/doc/pgsql/admin/release2377.htm -share/doc/pgsql/admin/release2414.htm -share/doc/pgsql/admin/release2421.htm -share/doc/pgsql/admin/release2428.htm -share/doc/pgsql/admin/release2435.htm -share/doc/pgsql/admin/release2439.htm -share/doc/pgsql/admin/runtime.htm -share/doc/pgsql/admin/security.htm -share/doc/pgsql/admin/security1450.htm -share/doc/pgsql/admin/security1485.htm -share/doc/pgsql/admin/security1509.htm -share/doc/pgsql/admin/security1530.htm -share/doc/pgsql/admin/terminology.htm -share/doc/pgsql/admin/trouble.htm -share/doc/pgsql/admin/trouble1721.htm -share/doc/pgsql/admin/trouble1738.htm -share/doc/pgsql/admin/y2k.htm -share/doc/pgsql/postgres/about.htm -share/doc/pgsql/postgres/advanced.htm -share/doc/pgsql/postgres/advanced27923.htm -share/doc/pgsql/postgres/advanced27945.htm -share/doc/pgsql/postgres/app-createdb.htm -share/doc/pgsql/postgres/app-createlang.htm -share/doc/pgsql/postgres/app-createuser.htm -share/doc/pgsql/postgres/app-dropdb.htm -share/doc/pgsql/postgres/app-droplang.htm -share/doc/pgsql/postgres/app-dropuser.htm -share/doc/pgsql/postgres/app-ecpg.htm -share/doc/pgsql/postgres/app-initdb.htm -share/doc/pgsql/postgres/app-initlocation.htm -share/doc/pgsql/postgres/app-ipcclean.htm -share/doc/pgsql/postgres/app-pg-passwd.htm -share/doc/pgsql/postgres/app-pg-upgrade.htm -share/doc/pgsql/postgres/app-pgaccess.htm -share/doc/pgsql/postgres/app-pgadmin.htm -share/doc/pgsql/postgres/app-pgctl.htm -share/doc/pgsql/postgres/app-pgdump.htm -share/doc/pgsql/postgres/app-pgdumpall.htm -share/doc/pgsql/postgres/app-pgtclsh.htm -share/doc/pgsql/postgres/app-pgtksh.htm -share/doc/pgsql/postgres/app-postgres.htm -share/doc/pgsql/postgres/app-postmaster.htm -share/doc/pgsql/postgres/app-psql.htm -share/doc/pgsql/postgres/app-vacuumdb.htm -share/doc/pgsql/postgres/applications.htm -share/doc/pgsql/postgres/arch-pg.htm -share/doc/pgsql/postgres/arch.htm -share/doc/pgsql/postgres/arrays.htm -share/doc/pgsql/postgres/biblio.htm -share/doc/pgsql/postgres/bki.htm -share/doc/pgsql/postgres/bki26573.htm -share/doc/pgsql/postgres/bki26657.htm -share/doc/pgsql/postgres/bki26681.htm -share/doc/pgsql/postgres/bki26742.htm -share/doc/pgsql/postgres/c16883.htm -share/doc/pgsql/postgres/c1688316912.htm -share/doc/pgsql/postgres/c1688316990.htm -share/doc/pgsql/postgres/c1688317027.htm -share/doc/pgsql/postgres/c19986.htm -share/doc/pgsql/postgres/c21722.htm -share/doc/pgsql/postgres/c2172221764.htm -share/doc/pgsql/postgres/c2172221782.htm -share/doc/pgsql/postgres/c2172221924.htm -share/doc/pgsql/postgres/c2172221936.htm -share/doc/pgsql/postgres/c2172221956.htm -share/doc/pgsql/postgres/c2172221961.htm -share/doc/pgsql/postgres/c25129.htm -share/doc/pgsql/postgres/c4091.htm -share/doc/pgsql/postgres/c40914117.htm -share/doc/pgsql/postgres/c40914344.htm -share/doc/pgsql/postgres/c4362.htm -share/doc/pgsql/postgres/c43624375.htm -share/doc/pgsql/postgres/c4888.htm -share/doc/pgsql/postgres/c4933.htm -share/doc/pgsql/postgres/c49334943.htm -share/doc/pgsql/postgres/c49334947.htm -share/doc/pgsql/postgres/catalogs.gif -share/doc/pgsql/postgres/clientserver.gif -share/doc/pgsql/postgres/compiler.htm -share/doc/pgsql/postgres/connections.gif -share/doc/pgsql/postgres/copyright.htm -share/doc/pgsql/postgres/cvs.htm -share/doc/pgsql/postgres/cvs28436.htm -share/doc/pgsql/postgres/cvs28492.htm -share/doc/pgsql/postgres/datatype.htm -share/doc/pgsql/postgres/datatype1038.htm -share/doc/pgsql/postgres/datatype1070.htm -share/doc/pgsql/postgres/datatype1134.htm -share/doc/pgsql/postgres/datatype1649.htm -share/doc/pgsql/postgres/datatype1681.htm -share/doc/pgsql/postgres/datatype1920.htm -share/doc/pgsql/postgres/datetime-appendix.htm -share/doc/pgsql/postgres/datetime-appendix28356.htm -share/doc/pgsql/postgres/dfunc.htm -share/doc/pgsql/postgres/dfunc20136.htm -share/doc/pgsql/postgres/dfunc20146.htm -share/doc/pgsql/postgres/disk.htm -share/doc/pgsql/postgres/docguide.htm -share/doc/pgsql/postgres/docguide28718.htm -share/doc/pgsql/postgres/docguide28749.htm -share/doc/pgsql/postgres/docguide28840.htm -share/doc/pgsql/postgres/docguide28861.htm -share/doc/pgsql/postgres/docguide28887.htm -share/doc/pgsql/postgres/docguide29024.htm -share/doc/pgsql/postgres/docguide29362.htm -share/doc/pgsql/postgres/environ.htm -share/doc/pgsql/postgres/extend.htm -share/doc/pgsql/postgres/extend18852.htm -share/doc/pgsql/postgres/extend18864.htm -share/doc/pgsql/postgres/func-ref.htm -share/doc/pgsql/postgres/functions.htm -share/doc/pgsql/postgres/functions2593.htm -share/doc/pgsql/postgres/functions2733.htm -share/doc/pgsql/postgres/functions2876.htm -share/doc/pgsql/postgres/functions2976.htm -share/doc/pgsql/postgres/functions3443.htm -share/doc/pgsql/postgres/functions3641.htm -share/doc/pgsql/postgres/geqo-biblio.htm -share/doc/pgsql/postgres/geqo.htm -share/doc/pgsql/postgres/geqo25594.htm -share/doc/pgsql/postgres/geqo25617.htm -share/doc/pgsql/postgres/geqo25655.htm -share/doc/pgsql/postgres/gist.htm -share/doc/pgsql/postgres/index.html -share/doc/pgsql/postgres/indices.htm -share/doc/pgsql/postgres/inherit.htm -share/doc/pgsql/postgres/install-win32.htm -share/doc/pgsql/postgres/install-win3217383.htm -share/doc/pgsql/postgres/install-win3217392.htm -share/doc/pgsql/postgres/install.htm -share/doc/pgsql/postgres/install17165.htm -share/doc/pgsql/postgres/intro.htm -share/doc/pgsql/postgres/intro176.htm -share/doc/pgsql/postgres/intro304.htm -share/doc/pgsql/postgres/intro60.htm -share/doc/pgsql/postgres/jdbc.htm -share/doc/pgsql/postgres/jdbc24909.htm -share/doc/pgsql/postgres/jdbc24921.htm -share/doc/pgsql/postgres/jdbc24927.htm -share/doc/pgsql/postgres/jdbc24935.htm -share/doc/pgsql/postgres/jdbc24953.htm -share/doc/pgsql/postgres/jdbc24990.htm -share/doc/pgsql/postgres/jdbc25021.htm -share/doc/pgsql/postgres/jdbc25026.htm -share/doc/pgsql/postgres/jdbc25030.htm -share/doc/pgsql/postgres/jdbc25056.htm -share/doc/pgsql/postgres/jdbc25086.htm -share/doc/pgsql/postgres/largeobjects.htm -share/doc/pgsql/postgres/largeobjects21625.htm -share/doc/pgsql/postgres/largeobjects21628.htm -share/doc/pgsql/postgres/largeobjects21707.htm -share/doc/pgsql/postgres/largeobjects21714.htm -share/doc/pgsql/postgres/largeobjects21718.htm -share/doc/pgsql/postgres/layout.gif -share/doc/pgsql/postgres/layout.htm -share/doc/pgsql/postgres/libpq-chapter.htm -share/doc/pgsql/postgres/libpq-chapter22422.htm -share/doc/pgsql/postgres/libpq-chapter22577.htm -share/doc/pgsql/postgres/libpq-chapter22724.htm -share/doc/pgsql/postgres/libpq-chapter22736.htm -share/doc/pgsql/postgres/libpq-chapter22774.htm -share/doc/pgsql/postgres/libpq-chapter22844.htm -share/doc/pgsql/postgres/libpq-chapter22857.htm -share/doc/pgsql/postgres/libpq-chapter22942.htm -share/doc/pgsql/postgres/libpq-envars.htm -share/doc/pgsql/postgres/libpq-threading.htm -share/doc/pgsql/postgres/libpqplusplus.htm -share/doc/pgsql/postgres/libpqplusplus23034.htm -share/doc/pgsql/postgres/libpqplusplus23044.htm -share/doc/pgsql/postgres/libpqplusplus23074.htm -share/doc/pgsql/postgres/libpqplusplus23179.htm -share/doc/pgsql/postgres/libpqplusplus23202.htm -share/doc/pgsql/postgres/lisp.htm -share/doc/pgsql/postgres/manage-ag.htm -share/doc/pgsql/postgres/manage-ag17914.htm -share/doc/pgsql/postgres/manage-ag17956.htm -share/doc/pgsql/postgres/manage-ag17965.htm -share/doc/pgsql/postgres/manage.htm -share/doc/pgsql/postgres/manage4814.htm -share/doc/pgsql/postgres/manage4838.htm -share/doc/pgsql/postgres/manage4880.htm -share/doc/pgsql/postgres/mvcc.htm -share/doc/pgsql/postgres/mvcc4568.htm -share/doc/pgsql/postgres/mvcc4621.htm -share/doc/pgsql/postgres/mvcc4633.htm -share/doc/pgsql/postgres/mvcc4646.htm -share/doc/pgsql/postgres/mvcc4723.htm -share/doc/pgsql/postgres/mvcc4744.htm -share/doc/pgsql/postgres/newuser.htm -share/doc/pgsql/postgres/notation.htm -share/doc/pgsql/postgres/odbc.htm -share/doc/pgsql/postgres/odbc24433.htm -share/doc/pgsql/postgres/odbc24471.htm -share/doc/pgsql/postgres/odbc24644.htm -share/doc/pgsql/postgres/odbc24666.htm -share/doc/pgsql/postgres/operators.htm -share/doc/pgsql/postgres/operators2127.htm -share/doc/pgsql/postgres/operators2198.htm -share/doc/pgsql/postgres/operators2267.htm -share/doc/pgsql/postgres/operators2377.htm -share/doc/pgsql/postgres/operators2436.htm -share/doc/pgsql/postgres/operators2490.htm -share/doc/pgsql/postgres/overview.htm -share/doc/pgsql/postgres/overview25194.htm -share/doc/pgsql/postgres/overview25219.htm -share/doc/pgsql/postgres/overview25347.htm -share/doc/pgsql/postgres/overview25403.htm -share/doc/pgsql/postgres/overview25457.htm -share/doc/pgsql/postgres/page.htm -share/doc/pgsql/postgres/page26805.htm -share/doc/pgsql/postgres/page26819.htm -share/doc/pgsql/postgres/part-admin.htm -share/doc/pgsql/postgres/part-appendix.htm -share/doc/pgsql/postgres/part-developer.htm -share/doc/pgsql/postgres/part-interfaces.htm -share/doc/pgsql/postgres/part-programmer.htm -share/doc/pgsql/postgres/part-tutorial.htm -share/doc/pgsql/postgres/part-user.htm -share/doc/pgsql/postgres/partial-index.htm -share/doc/pgsql/postgres/pg-options-dev.htm -share/doc/pgsql/postgres/pg-options.htm -share/doc/pgsql/postgres/pgeasy-chapter.htm -share/doc/pgsql/postgres/pgtcl-pgconndefaults.htm -share/doc/pgsql/postgres/pgtcl-pgconnect.htm -share/doc/pgsql/postgres/pgtcl-pgdisconnect.htm -share/doc/pgsql/postgres/pgtcl-pgexec.htm -share/doc/pgsql/postgres/pgtcl-pglisten.htm -share/doc/pgsql/postgres/pgtcl-pgloclose.htm -share/doc/pgsql/postgres/pgtcl-pglocreat.htm -share/doc/pgsql/postgres/pgtcl-pgloexport.htm -share/doc/pgsql/postgres/pgtcl-pgloimport.htm -share/doc/pgsql/postgres/pgtcl-pglolseek.htm -share/doc/pgsql/postgres/pgtcl-pgloopen.htm -share/doc/pgsql/postgres/pgtcl-pgloread.htm -share/doc/pgsql/postgres/pgtcl-pglotell.htm -share/doc/pgsql/postgres/pgtcl-pglounlink.htm -share/doc/pgsql/postgres/pgtcl-pglowrite.htm -share/doc/pgsql/postgres/pgtcl-pgresult.htm -share/doc/pgsql/postgres/pgtcl-pgselect.htm -share/doc/pgsql/postgres/pgtcl.htm -share/doc/pgsql/postgres/pgtcl23317.htm -share/doc/pgsql/postgres/pgtcl23321.htm -share/doc/pgsql/postgres/pl-perl.htm -share/doc/pgsql/postgres/pl-perl4533.htm -share/doc/pgsql/postgres/pl-perl4542.htm -share/doc/pgsql/postgres/ports.htm -share/doc/pgsql/postgres/ports16791.htm -share/doc/pgsql/postgres/postgres.htm -share/doc/pgsql/postgres/postgres.html -share/doc/pgsql/postgres/postmaster.htm -share/doc/pgsql/postgres/preface.htm -share/doc/pgsql/postgres/protocol.htm -share/doc/pgsql/postgres/protocol25770.htm -share/doc/pgsql/postgres/protocol25925.htm -share/doc/pgsql/postgres/protocol25962.htm -share/doc/pgsql/postgres/query.htm -share/doc/pgsql/postgres/query27752.htm -share/doc/pgsql/postgres/query27768.htm -share/doc/pgsql/postgres/query27790.htm -share/doc/pgsql/postgres/query27799.htm -share/doc/pgsql/postgres/query27817.htm -share/doc/pgsql/postgres/query27825.htm -share/doc/pgsql/postgres/query27844.htm -share/doc/pgsql/postgres/query27849.htm -share/doc/pgsql/postgres/query27856.htm -share/doc/pgsql/postgres/recovery.htm -share/doc/pgsql/postgres/regress.htm -share/doc/pgsql/postgres/regress18171.htm -share/doc/pgsql/postgres/regress18205.htm -share/doc/pgsql/postgres/regress18251.htm -share/doc/pgsql/postgres/release.htm -share/doc/pgsql/postgres/release18319.htm -share/doc/pgsql/postgres/release18330.htm -share/doc/pgsql/postgres/release18341.htm -share/doc/pgsql/postgres/release18352.htm -share/doc/pgsql/postgres/release18434.htm -share/doc/pgsql/postgres/release18445.htm -share/doc/pgsql/postgres/release18456.htm -share/doc/pgsql/postgres/release18497.htm -share/doc/pgsql/postgres/release18513.htm -share/doc/pgsql/postgres/release18532.htm -share/doc/pgsql/postgres/release18576.htm -share/doc/pgsql/postgres/release18598.htm -share/doc/pgsql/postgres/release18613.htm -share/doc/pgsql/postgres/release18622.htm -share/doc/pgsql/postgres/release18645.htm -share/doc/pgsql/postgres/release18659.htm -share/doc/pgsql/postgres/release18662.htm -share/doc/pgsql/postgres/release18687.htm -share/doc/pgsql/postgres/release18724.htm -share/doc/pgsql/postgres/release18731.htm -share/doc/pgsql/postgres/release18738.htm -share/doc/pgsql/postgres/release18745.htm -share/doc/pgsql/postgres/release18749.htm -share/doc/pgsql/postgres/rules.htm -share/doc/pgsql/postgres/rules19478.htm -share/doc/pgsql/postgres/rules19639.htm -share/doc/pgsql/postgres/rules19770.htm -share/doc/pgsql/postgres/rules19784.htm -share/doc/pgsql/postgres/runtime.htm -share/doc/pgsql/postgres/security.htm -share/doc/pgsql/postgres/security17760.htm -share/doc/pgsql/postgres/security17795.htm -share/doc/pgsql/postgres/security17819.htm -share/doc/pgsql/postgres/security17840.htm -share/doc/pgsql/postgres/signals.htm -share/doc/pgsql/postgres/spi-spiconnect.htm -share/doc/pgsql/postgres/spi-spicopytuple.htm -share/doc/pgsql/postgres/spi-spiexec.htm -share/doc/pgsql/postgres/spi-spiexecp.htm -share/doc/pgsql/postgres/spi-spifinish.htm -share/doc/pgsql/postgres/spi-spifname.htm -share/doc/pgsql/postgres/spi-spifnumber.htm -share/doc/pgsql/postgres/spi-spigetbinval.htm -share/doc/pgsql/postgres/spi-spigetrelname.htm -share/doc/pgsql/postgres/spi-spigettype.htm -share/doc/pgsql/postgres/spi-spigettypeid.htm -share/doc/pgsql/postgres/spi-spigetvalue.htm -share/doc/pgsql/postgres/spi-spimodifytuple.htm -share/doc/pgsql/postgres/spi-spipalloc.htm -share/doc/pgsql/postgres/spi-spipfree.htm -share/doc/pgsql/postgres/spi-spiprepare.htm -share/doc/pgsql/postgres/spi-spirepalloc.htm -share/doc/pgsql/postgres/spi-spisaveplan.htm -share/doc/pgsql/postgres/spi.htm -share/doc/pgsql/postgres/spi20808.htm -share/doc/pgsql/postgres/spi21521.htm -share/doc/pgsql/postgres/spi21543.htm -share/doc/pgsql/postgres/spi21548.htm -share/doc/pgsql/postgres/sql-abort.htm -share/doc/pgsql/postgres/sql-altergroup.htm -share/doc/pgsql/postgres/sql-altertable.htm -share/doc/pgsql/postgres/sql-alteruser.htm -share/doc/pgsql/postgres/sql-begin.htm -share/doc/pgsql/postgres/sql-close.htm -share/doc/pgsql/postgres/sql-cluster.htm -share/doc/pgsql/postgres/sql-commands.htm -share/doc/pgsql/postgres/sql-comment.htm -share/doc/pgsql/postgres/sql-commit.htm -share/doc/pgsql/postgres/sql-copy.htm -share/doc/pgsql/postgres/sql-createaggregate.htm -share/doc/pgsql/postgres/sql-createconstraint.htm -share/doc/pgsql/postgres/sql-createdatabase.htm -share/doc/pgsql/postgres/sql-createfunction.htm -share/doc/pgsql/postgres/sql-creategroup.htm -share/doc/pgsql/postgres/sql-createindex.htm -share/doc/pgsql/postgres/sql-createlanguage.htm -share/doc/pgsql/postgres/sql-createoperator.htm -share/doc/pgsql/postgres/sql-createrule.htm -share/doc/pgsql/postgres/sql-createsequence.htm -share/doc/pgsql/postgres/sql-createtable.htm -share/doc/pgsql/postgres/sql-createtableas.htm -share/doc/pgsql/postgres/sql-createtrigger.htm -share/doc/pgsql/postgres/sql-createtype.htm -share/doc/pgsql/postgres/sql-createuser.htm -share/doc/pgsql/postgres/sql-createview.htm -share/doc/pgsql/postgres/sql-declare.htm -share/doc/pgsql/postgres/sql-delete.htm -share/doc/pgsql/postgres/sql-dropaggregate.htm -share/doc/pgsql/postgres/sql-dropdatabase.htm -share/doc/pgsql/postgres/sql-dropfunction.htm -share/doc/pgsql/postgres/sql-dropgroup.htm -share/doc/pgsql/postgres/sql-dropindex.htm -share/doc/pgsql/postgres/sql-droplanguage.htm -share/doc/pgsql/postgres/sql-dropoperator.htm -share/doc/pgsql/postgres/sql-droprule.htm -share/doc/pgsql/postgres/sql-dropsequence.htm -share/doc/pgsql/postgres/sql-droptable.htm -share/doc/pgsql/postgres/sql-droptrigger.htm -share/doc/pgsql/postgres/sql-droptype.htm -share/doc/pgsql/postgres/sql-dropuser.htm -share/doc/pgsql/postgres/sql-dropview.htm -share/doc/pgsql/postgres/sql-end.htm -share/doc/pgsql/postgres/sql-explain.htm -share/doc/pgsql/postgres/sql-fetch.htm -share/doc/pgsql/postgres/sql-grant.htm -share/doc/pgsql/postgres/sql-insert.htm -share/doc/pgsql/postgres/sql-language.htm -share/doc/pgsql/postgres/sql-listen.htm -share/doc/pgsql/postgres/sql-load.htm -share/doc/pgsql/postgres/sql-lock.htm -share/doc/pgsql/postgres/sql-move.htm -share/doc/pgsql/postgres/sql-notify.htm -share/doc/pgsql/postgres/sql-reindex.htm -share/doc/pgsql/postgres/sql-reset.htm -share/doc/pgsql/postgres/sql-revoke.htm -share/doc/pgsql/postgres/sql-rollback.htm -share/doc/pgsql/postgres/sql-select.htm -share/doc/pgsql/postgres/sql-selectinto.htm -share/doc/pgsql/postgres/sql-set.htm -share/doc/pgsql/postgres/sql-show.htm -share/doc/pgsql/postgres/sql-truncate.htm -share/doc/pgsql/postgres/sql-unlisten.htm -share/doc/pgsql/postgres/sql-update.htm -share/doc/pgsql/postgres/sql-vacuum.htm -share/doc/pgsql/postgres/sql.htm -share/doc/pgsql/postgres/sql26902.htm -share/doc/pgsql/postgres/sql27020.htm -share/doc/pgsql/postgres/start.htm -share/doc/pgsql/postgres/start27628.htm -share/doc/pgsql/postgres/start27650.htm -share/doc/pgsql/postgres/storage.htm -share/doc/pgsql/postgres/syntax.htm -share/doc/pgsql/postgres/syntax519.htm -share/doc/pgsql/postgres/syntax525.htm -share/doc/pgsql/postgres/syntax543.htm -share/doc/pgsql/postgres/syntax608.htm -share/doc/pgsql/postgres/syntax653.htm -share/doc/pgsql/postgres/syntax658.htm -share/doc/pgsql/postgres/terminology.htm -share/doc/pgsql/postgres/triggers.htm -share/doc/pgsql/postgres/triggers20224.htm -share/doc/pgsql/postgres/triggers20281.htm -share/doc/pgsql/postgres/triggers20290.htm -share/doc/pgsql/postgres/trouble.htm -share/doc/pgsql/postgres/trouble18031.htm -share/doc/pgsql/postgres/trouble18048.htm -share/doc/pgsql/postgres/typeconv.htm -share/doc/pgsql/postgres/typeconv3759.htm -share/doc/pgsql/postgres/typeconv3822.htm -share/doc/pgsql/postgres/typeconv3875.htm -share/doc/pgsql/postgres/typeconv3895.htm -share/doc/pgsql/postgres/utilities.htm -share/doc/pgsql/postgres/xaggr.htm -share/doc/pgsql/postgres/xfunc.htm -share/doc/pgsql/postgres/xfunc19011.htm -share/doc/pgsql/postgres/xfunc19017.htm -share/doc/pgsql/postgres/xfunc19022.htm -share/doc/pgsql/postgres/xfunc19254.htm -share/doc/pgsql/postgres/xindex.htm -share/doc/pgsql/postgres/xoper.htm -share/doc/pgsql/postgres/xplang.htm -share/doc/pgsql/postgres/xtypes.htm -share/doc/pgsql/postgres/y2k.htm -share/doc/pgsql/programmer/arch-pg.htm -share/doc/pgsql/programmer/biblio.htm -share/doc/pgsql/programmer/bki.htm -share/doc/pgsql/programmer/bki8058.htm -share/doc/pgsql/programmer/bki8142.htm -share/doc/pgsql/programmer/bki8166.htm -share/doc/pgsql/programmer/bki8227.htm -share/doc/pgsql/programmer/c1486.htm -share/doc/pgsql/programmer/c5391.htm -share/doc/pgsql/programmer/c53915433.htm -share/doc/pgsql/programmer/c53915451.htm -share/doc/pgsql/programmer/c53915593.htm -share/doc/pgsql/programmer/c53915605.htm -share/doc/pgsql/programmer/c53915625.htm -share/doc/pgsql/programmer/c53915630.htm -share/doc/pgsql/programmer/c6614.htm -share/doc/pgsql/programmer/catalogs.gif -share/doc/pgsql/programmer/compiler.htm -share/doc/pgsql/programmer/connections.gif -share/doc/pgsql/programmer/copyright.htm -share/doc/pgsql/programmer/cvs.htm -share/doc/pgsql/programmer/cvs8365.htm -share/doc/pgsql/programmer/cvs8421.htm -share/doc/pgsql/programmer/dfunc.htm -share/doc/pgsql/programmer/dfunc1679.htm -share/doc/pgsql/programmer/dfunc1689.htm -share/doc/pgsql/programmer/docguide.htm -share/doc/pgsql/programmer/docguide8647.htm -share/doc/pgsql/programmer/docguide8678.htm -share/doc/pgsql/programmer/docguide8769.htm -share/doc/pgsql/programmer/docguide8790.htm -share/doc/pgsql/programmer/docguide8816.htm -share/doc/pgsql/programmer/docguide8953.htm -share/doc/pgsql/programmer/docguide9291.htm -share/doc/pgsql/programmer/extend.htm -share/doc/pgsql/programmer/extend352.htm -share/doc/pgsql/programmer/extend364.htm -share/doc/pgsql/programmer/geqo-biblio.htm -share/doc/pgsql/programmer/geqo.htm -share/doc/pgsql/programmer/geqo7079.htm -share/doc/pgsql/programmer/geqo7102.htm -share/doc/pgsql/programmer/geqo7140.htm -share/doc/pgsql/programmer/gist.htm -share/doc/pgsql/programmer/index.html -share/doc/pgsql/programmer/intro-pg.htm -share/doc/pgsql/programmer/intro-pg167.htm -share/doc/pgsql/programmer/jdbc.htm -share/doc/pgsql/programmer/jdbc6398.htm -share/doc/pgsql/programmer/jdbc6410.htm -share/doc/pgsql/programmer/jdbc6416.htm -share/doc/pgsql/programmer/jdbc6424.htm -share/doc/pgsql/programmer/jdbc6442.htm -share/doc/pgsql/programmer/jdbc6479.htm -share/doc/pgsql/programmer/jdbc6510.htm -share/doc/pgsql/programmer/jdbc6515.htm -share/doc/pgsql/programmer/jdbc6519.htm -share/doc/pgsql/programmer/jdbc6545.htm -share/doc/pgsql/programmer/jdbc6575.htm -share/doc/pgsql/programmer/largeobjects.htm -share/doc/pgsql/programmer/largeobjects3114.htm -share/doc/pgsql/programmer/largeobjects3117.htm -share/doc/pgsql/programmer/largeobjects3196.htm -share/doc/pgsql/programmer/largeobjects3203.htm -share/doc/pgsql/programmer/largeobjects3207.htm -share/doc/pgsql/programmer/libpq-chapter.htm -share/doc/pgsql/programmer/libpq-chapter3419.htm -share/doc/pgsql/programmer/libpq-chapter3574.htm -share/doc/pgsql/programmer/libpq-chapter3721.htm -share/doc/pgsql/programmer/libpq-chapter3733.htm -share/doc/pgsql/programmer/libpq-chapter3771.htm -share/doc/pgsql/programmer/libpq-chapter3841.htm -share/doc/pgsql/programmer/libpq-chapter3854.htm -share/doc/pgsql/programmer/libpq-chapter3939.htm -share/doc/pgsql/programmer/libpq-envars.htm -share/doc/pgsql/programmer/libpq-threading.htm -share/doc/pgsql/programmer/libpqplusplus.htm -share/doc/pgsql/programmer/libpqplusplus4031.htm -share/doc/pgsql/programmer/libpqplusplus4041.htm -share/doc/pgsql/programmer/libpqplusplus4071.htm -share/doc/pgsql/programmer/libpqplusplus4176.htm -share/doc/pgsql/programmer/libpqplusplus4199.htm -share/doc/pgsql/programmer/lisp.htm -share/doc/pgsql/programmer/notation.htm -share/doc/pgsql/programmer/odbc.htm -share/doc/pgsql/programmer/odbc5922.htm -share/doc/pgsql/programmer/odbc5960.htm -share/doc/pgsql/programmer/odbc6133.htm -share/doc/pgsql/programmer/odbc6155.htm -share/doc/pgsql/programmer/overview.htm -share/doc/pgsql/programmer/overview6679.htm -share/doc/pgsql/programmer/overview6704.htm -share/doc/pgsql/programmer/overview6832.htm -share/doc/pgsql/programmer/overview6888.htm -share/doc/pgsql/programmer/overview6942.htm -share/doc/pgsql/programmer/page.htm -share/doc/pgsql/programmer/page8290.htm -share/doc/pgsql/programmer/page8304.htm -share/doc/pgsql/programmer/pg-options-dev.htm -share/doc/pgsql/programmer/pgeasy-chapter.htm -share/doc/pgsql/programmer/pgtcl-pgconndefaults.htm -share/doc/pgsql/programmer/pgtcl-pgconnect.htm -share/doc/pgsql/programmer/pgtcl-pgdisconnect.htm -share/doc/pgsql/programmer/pgtcl-pgexec.htm -share/doc/pgsql/programmer/pgtcl-pglisten.htm -share/doc/pgsql/programmer/pgtcl-pgloclose.htm -share/doc/pgsql/programmer/pgtcl-pglocreat.htm -share/doc/pgsql/programmer/pgtcl-pgloexport.htm -share/doc/pgsql/programmer/pgtcl-pgloimport.htm -share/doc/pgsql/programmer/pgtcl-pglolseek.htm -share/doc/pgsql/programmer/pgtcl-pgloopen.htm -share/doc/pgsql/programmer/pgtcl-pgloread.htm -share/doc/pgsql/programmer/pgtcl-pglotell.htm -share/doc/pgsql/programmer/pgtcl-pglounlink.htm -share/doc/pgsql/programmer/pgtcl-pglowrite.htm -share/doc/pgsql/programmer/pgtcl-pgresult.htm -share/doc/pgsql/programmer/pgtcl-pgselect.htm -share/doc/pgsql/programmer/pgtcl.htm -share/doc/pgsql/programmer/pgtcl4314.htm -share/doc/pgsql/programmer/pgtcl4318.htm -share/doc/pgsql/programmer/preface.htm -share/doc/pgsql/programmer/programmer.htm -share/doc/pgsql/programmer/programmer.html -share/doc/pgsql/programmer/protocol.htm -share/doc/pgsql/programmer/protocol7255.htm -share/doc/pgsql/programmer/protocol7410.htm -share/doc/pgsql/programmer/protocol7447.htm -share/doc/pgsql/programmer/rules.htm -share/doc/pgsql/programmer/rules1139.htm -share/doc/pgsql/programmer/rules1270.htm -share/doc/pgsql/programmer/rules1284.htm -share/doc/pgsql/programmer/rules978.htm -share/doc/pgsql/programmer/signals.htm -share/doc/pgsql/programmer/spi-spiconnect.htm -share/doc/pgsql/programmer/spi-spicopytuple.htm -share/doc/pgsql/programmer/spi-spiexec.htm -share/doc/pgsql/programmer/spi-spiexecp.htm -share/doc/pgsql/programmer/spi-spifinish.htm -share/doc/pgsql/programmer/spi-spifname.htm -share/doc/pgsql/programmer/spi-spifnumber.htm -share/doc/pgsql/programmer/spi-spigetbinval.htm -share/doc/pgsql/programmer/spi-spigetrelname.htm -share/doc/pgsql/programmer/spi-spigettype.htm -share/doc/pgsql/programmer/spi-spigettypeid.htm -share/doc/pgsql/programmer/spi-spigetvalue.htm -share/doc/pgsql/programmer/spi-spimodifytuple.htm -share/doc/pgsql/programmer/spi-spipalloc.htm -share/doc/pgsql/programmer/spi-spipfree.htm -share/doc/pgsql/programmer/spi-spiprepare.htm -share/doc/pgsql/programmer/spi-spirepalloc.htm -share/doc/pgsql/programmer/spi-spisaveplan.htm -share/doc/pgsql/programmer/spi.htm -share/doc/pgsql/programmer/spi2351.htm -share/doc/pgsql/programmer/spi3064.htm -share/doc/pgsql/programmer/spi3086.htm -share/doc/pgsql/programmer/spi3091.htm -share/doc/pgsql/programmer/terminology.htm -share/doc/pgsql/programmer/triggers.htm -share/doc/pgsql/programmer/triggers1767.htm -share/doc/pgsql/programmer/triggers1824.htm -share/doc/pgsql/programmer/triggers1833.htm -share/doc/pgsql/programmer/xaggr.htm -share/doc/pgsql/programmer/xfunc.htm -share/doc/pgsql/programmer/xfunc511.htm -share/doc/pgsql/programmer/xfunc517.htm -share/doc/pgsql/programmer/xfunc522.htm -share/doc/pgsql/programmer/xfunc754.htm -share/doc/pgsql/programmer/xindex.htm -share/doc/pgsql/programmer/xoper.htm -share/doc/pgsql/programmer/xplang.htm -share/doc/pgsql/programmer/xtypes.htm -share/doc/pgsql/programmer/y2k.htm -share/doc/pgsql/tutorial/about.htm -share/doc/pgsql/tutorial/advanced.htm -share/doc/pgsql/tutorial/advanced1511.htm -share/doc/pgsql/tutorial/advanced1533.htm -share/doc/pgsql/tutorial/arch.htm -share/doc/pgsql/tutorial/biblio.htm -share/doc/pgsql/tutorial/clientserver.gif -share/doc/pgsql/tutorial/copyright.htm -share/doc/pgsql/tutorial/f17.htm -share/doc/pgsql/tutorial/index.html -share/doc/pgsql/tutorial/intro.htm -share/doc/pgsql/tutorial/intro172.htm -share/doc/pgsql/tutorial/intro300.htm -share/doc/pgsql/tutorial/intro56.htm -share/doc/pgsql/tutorial/notation.htm -share/doc/pgsql/tutorial/query.htm -share/doc/pgsql/tutorial/query1340.htm -share/doc/pgsql/tutorial/query1356.htm -share/doc/pgsql/tutorial/query1378.htm -share/doc/pgsql/tutorial/query1387.htm -share/doc/pgsql/tutorial/query1405.htm -share/doc/pgsql/tutorial/query1413.htm -share/doc/pgsql/tutorial/query1432.htm -share/doc/pgsql/tutorial/query1437.htm -share/doc/pgsql/tutorial/query1444.htm -share/doc/pgsql/tutorial/sql-language.htm -share/doc/pgsql/tutorial/sql.htm -share/doc/pgsql/tutorial/sql490.htm -share/doc/pgsql/tutorial/sql608.htm -share/doc/pgsql/tutorial/start.htm -share/doc/pgsql/tutorial/start1216.htm -share/doc/pgsql/tutorial/start1238.htm -share/doc/pgsql/tutorial/terminology.htm -share/doc/pgsql/tutorial/tutorial.htm -share/doc/pgsql/tutorial/tutorial.html -share/doc/pgsql/tutorial/y2k.htm -share/doc/pgsql/user/about.htm -share/doc/pgsql/user/app-createdb.htm -share/doc/pgsql/user/app-createlang.htm -share/doc/pgsql/user/app-createuser.htm -share/doc/pgsql/user/app-dropdb.htm -share/doc/pgsql/user/app-droplang.htm -share/doc/pgsql/user/app-dropuser.htm -share/doc/pgsql/user/app-ecpg.htm -share/doc/pgsql/user/app-initdb.htm -share/doc/pgsql/user/app-initlocation.htm -share/doc/pgsql/user/app-ipcclean.htm -share/doc/pgsql/user/app-pg-passwd.htm -share/doc/pgsql/user/app-pg-upgrade.htm -share/doc/pgsql/user/app-pgaccess.htm -share/doc/pgsql/user/app-pgadmin.htm -share/doc/pgsql/user/app-pgctl.htm -share/doc/pgsql/user/app-pgdump.htm -share/doc/pgsql/user/app-pgdumpall.htm -share/doc/pgsql/user/app-pgtclsh.htm -share/doc/pgsql/user/app-pgtksh.htm -share/doc/pgsql/user/app-postgres.htm -share/doc/pgsql/user/app-postmaster.htm -share/doc/pgsql/user/app-psql.htm -share/doc/pgsql/user/app-vacuumdb.htm -share/doc/pgsql/user/applications.htm -share/doc/pgsql/user/arrays.htm -share/doc/pgsql/user/biblio.htm -share/doc/pgsql/user/c4087.htm -share/doc/pgsql/user/c40874113.htm -share/doc/pgsql/user/c40874340.htm -share/doc/pgsql/user/c4358.htm -share/doc/pgsql/user/c43584371.htm -share/doc/pgsql/user/c4884.htm -share/doc/pgsql/user/c4929.htm -share/doc/pgsql/user/c49294939.htm -share/doc/pgsql/user/c49294943.htm -share/doc/pgsql/user/copyright.htm -share/doc/pgsql/user/datatype.htm -share/doc/pgsql/user/datatype1034.htm -share/doc/pgsql/user/datatype1066.htm -share/doc/pgsql/user/datatype1130.htm -share/doc/pgsql/user/datatype1645.htm -share/doc/pgsql/user/datatype1677.htm -share/doc/pgsql/user/datatype1916.htm -share/doc/pgsql/user/datetime-appendix.htm -share/doc/pgsql/user/datetime-appendix16981.htm -share/doc/pgsql/user/environ.htm -share/doc/pgsql/user/functions.htm -share/doc/pgsql/user/functions2589.htm -share/doc/pgsql/user/functions2729.htm -share/doc/pgsql/user/functions2872.htm -share/doc/pgsql/user/functions2972.htm -share/doc/pgsql/user/functions3439.htm -share/doc/pgsql/user/functions3637.htm -share/doc/pgsql/user/index.html -share/doc/pgsql/user/indices.htm -share/doc/pgsql/user/inherit.htm -share/doc/pgsql/user/intro.htm -share/doc/pgsql/user/intro172.htm -share/doc/pgsql/user/intro300.htm -share/doc/pgsql/user/intro56.htm -share/doc/pgsql/user/manage.htm -share/doc/pgsql/user/manage4810.htm -share/doc/pgsql/user/manage4834.htm -share/doc/pgsql/user/manage4876.htm -share/doc/pgsql/user/mvcc.htm -share/doc/pgsql/user/mvcc4564.htm -share/doc/pgsql/user/mvcc4617.htm -share/doc/pgsql/user/mvcc4629.htm -share/doc/pgsql/user/mvcc4642.htm -share/doc/pgsql/user/mvcc4719.htm -share/doc/pgsql/user/mvcc4740.htm -share/doc/pgsql/user/notation.htm -share/doc/pgsql/user/operators.htm -share/doc/pgsql/user/operators2123.htm -share/doc/pgsql/user/operators2194.htm -share/doc/pgsql/user/operators2263.htm -share/doc/pgsql/user/operators2373.htm -share/doc/pgsql/user/operators2432.htm -share/doc/pgsql/user/operators2486.htm -share/doc/pgsql/user/partial-index.htm -share/doc/pgsql/user/pl-perl.htm -share/doc/pgsql/user/pl-perl4529.htm -share/doc/pgsql/user/pl-perl4538.htm -share/doc/pgsql/user/preface.htm -share/doc/pgsql/user/sql-abort.htm -share/doc/pgsql/user/sql-altergroup.htm -share/doc/pgsql/user/sql-altertable.htm -share/doc/pgsql/user/sql-alteruser.htm -share/doc/pgsql/user/sql-begin.htm -share/doc/pgsql/user/sql-close.htm -share/doc/pgsql/user/sql-cluster.htm -share/doc/pgsql/user/sql-commands.htm -share/doc/pgsql/user/sql-comment.htm -share/doc/pgsql/user/sql-commit.htm -share/doc/pgsql/user/sql-copy.htm -share/doc/pgsql/user/sql-createaggregate.htm -share/doc/pgsql/user/sql-createconstraint.htm -share/doc/pgsql/user/sql-createdatabase.htm -share/doc/pgsql/user/sql-createfunction.htm -share/doc/pgsql/user/sql-creategroup.htm -share/doc/pgsql/user/sql-createindex.htm -share/doc/pgsql/user/sql-createlanguage.htm -share/doc/pgsql/user/sql-createoperator.htm -share/doc/pgsql/user/sql-createrule.htm -share/doc/pgsql/user/sql-createsequence.htm -share/doc/pgsql/user/sql-createtable.htm -share/doc/pgsql/user/sql-createtableas.htm -share/doc/pgsql/user/sql-createtrigger.htm -share/doc/pgsql/user/sql-createtype.htm -share/doc/pgsql/user/sql-createuser.htm -share/doc/pgsql/user/sql-createview.htm -share/doc/pgsql/user/sql-declare.htm -share/doc/pgsql/user/sql-delete.htm -share/doc/pgsql/user/sql-dropaggregate.htm -share/doc/pgsql/user/sql-dropdatabase.htm -share/doc/pgsql/user/sql-dropfunction.htm -share/doc/pgsql/user/sql-dropgroup.htm -share/doc/pgsql/user/sql-dropindex.htm -share/doc/pgsql/user/sql-droplanguage.htm -share/doc/pgsql/user/sql-dropoperator.htm -share/doc/pgsql/user/sql-droprule.htm -share/doc/pgsql/user/sql-dropsequence.htm -share/doc/pgsql/user/sql-droptable.htm -share/doc/pgsql/user/sql-droptrigger.htm -share/doc/pgsql/user/sql-droptype.htm -share/doc/pgsql/user/sql-dropuser.htm -share/doc/pgsql/user/sql-dropview.htm -share/doc/pgsql/user/sql-end.htm -share/doc/pgsql/user/sql-explain.htm -share/doc/pgsql/user/sql-fetch.htm -share/doc/pgsql/user/sql-grant.htm -share/doc/pgsql/user/sql-insert.htm -share/doc/pgsql/user/sql-listen.htm -share/doc/pgsql/user/sql-load.htm -share/doc/pgsql/user/sql-lock.htm -share/doc/pgsql/user/sql-move.htm -share/doc/pgsql/user/sql-notify.htm -share/doc/pgsql/user/sql-reindex.htm -share/doc/pgsql/user/sql-reset.htm -share/doc/pgsql/user/sql-revoke.htm -share/doc/pgsql/user/sql-rollback.htm -share/doc/pgsql/user/sql-select.htm -share/doc/pgsql/user/sql-selectinto.htm -share/doc/pgsql/user/sql-set.htm -share/doc/pgsql/user/sql-show.htm -share/doc/pgsql/user/sql-truncate.htm -share/doc/pgsql/user/sql-unlisten.htm -share/doc/pgsql/user/sql-update.htm -share/doc/pgsql/user/sql-vacuum.htm -share/doc/pgsql/user/storage.htm -share/doc/pgsql/user/syntax.htm -share/doc/pgsql/user/syntax515.htm -share/doc/pgsql/user/syntax521.htm -share/doc/pgsql/user/syntax539.htm -share/doc/pgsql/user/syntax604.htm -share/doc/pgsql/user/syntax649.htm -share/doc/pgsql/user/syntax654.htm -share/doc/pgsql/user/terminology.htm -share/doc/pgsql/user/typeconv.htm -share/doc/pgsql/user/typeconv3755.htm -share/doc/pgsql/user/typeconv3818.htm -share/doc/pgsql/user/typeconv3871.htm -share/doc/pgsql/user/typeconv3891.htm -share/doc/pgsql/user/user.htm -share/doc/pgsql/user/user.html -share/doc/pgsql/user/utilities.htm -share/doc/pgsql/user/y2k.htm -@dirrm share/doc/pgsql/admin -@dirrm share/doc/pgsql/postgres -@dirrm share/doc/pgsql/programmer -@dirrm share/doc/pgsql/tutorial -@dirrm share/doc/pgsql/user -@dirrm share/doc/pgsql diff --git a/databases/postgresql84-server/pkg-plist.jdbc b/databases/postgresql84-server/pkg-plist.jdbc deleted file mode 100644 index bef5d75506b4..000000000000 --- a/databases/postgresql84-server/pkg-plist.jdbc +++ /dev/null @@ -1,13 +0,0 @@ -share/examples/pgsql/jdbc/ImageViewer.java -share/examples/pgsql/jdbc/basic.java -share/examples/pgsql/jdbc/blobtest.java -share/examples/pgsql/jdbc/datestyle.java -share/examples/pgsql/jdbc/metadata.java -share/examples/pgsql/jdbc/psql.java -share/examples/pgsql/jdbc/threadsafe.java -share/examples/pgsql/jdbc/README -share/examples/pgsql/jdbc/README_6.3 -@dirrm share/examples/pgsql/jdbc -@dirrm share/examples/pgsql -share/java/classes/postgresql.jar -@unexec rmdir %D/share/java 2>/dev/null || true diff --git a/databases/postgresql84-server/pkg-plist.tcl b/databases/postgresql84-server/pkg-plist.tcl deleted file mode 100644 index b01eaf1571ed..000000000000 --- a/databases/postgresql84-server/pkg-plist.tcl +++ /dev/null @@ -1,141 +0,0 @@ -pgsql/bin/pgaccess -pgsql/bin/pgtclsh -pgsql/bin/pgtksh -pgsql/include/libpgtcl.h -pgsql/lib/libpgtcl.a -pgsql/lib/libpgtcl.so -pgsql/lib/libpgtcl.so.2 -pgsql/lib/pltcl.so -pgsql/pgaccess/images/icon_button.gif -pgsql/pgaccess/images/icon_checkbutton.gif -pgsql/pgaccess/images/icon_entry.gif -pgsql/pgaccess/images/icon_frame.gif -pgsql/pgaccess/images/icon_label.gif -pgsql/pgaccess/images/icon_listbox.gif -pgsql/pgaccess/images/icon_query.gif -pgsql/pgaccess/images/icon_radiobutton.gif -pgsql/pgaccess/images/icon_text.gif -pgsql/pgaccess/lib/database.tcl -pgsql/pgaccess/lib/forms.tcl -pgsql/pgaccess/lib/functions.tcl -pgsql/pgaccess/lib/help/abort.hlp -pgsql/pgaccess/lib/help/add_records.hlp -pgsql/pgaccess/lib/help/alter_table.hlp -pgsql/pgaccess/lib/help/alter_user.hlp -pgsql/pgaccess/lib/help/author.hlp -pgsql/pgaccess/lib/help/begin.hlp -pgsql/pgaccess/lib/help/close.hlp -pgsql/pgaccess/lib/help/cluster.hlp -pgsql/pgaccess/lib/help/commit.hlp -pgsql/pgaccess/lib/help/copy.hlp -pgsql/pgaccess/lib/help/copyrights.hlp -pgsql/pgaccess/lib/help/create_aggregate.hlp -pgsql/pgaccess/lib/help/create_database.hlp -pgsql/pgaccess/lib/help/create_function.hlp -pgsql/pgaccess/lib/help/create_index.hlp -pgsql/pgaccess/lib/help/create_language.hlp -pgsql/pgaccess/lib/help/create_operator.hlp -pgsql/pgaccess/lib/help/create_rule.hlp -pgsql/pgaccess/lib/help/create_sequence.hlp -pgsql/pgaccess/lib/help/create_table.hlp -pgsql/pgaccess/lib/help/create_table_as.hlp -pgsql/pgaccess/lib/help/create_trigger.hlp -pgsql/pgaccess/lib/help/create_type.hlp -pgsql/pgaccess/lib/help/create_user.hlp -pgsql/pgaccess/lib/help/create_view.hlp -pgsql/pgaccess/lib/help/data_types.hlp -pgsql/pgaccess/lib/help/datefunc.hlp -pgsql/pgaccess/lib/help/declare.hlp -pgsql/pgaccess/lib/help/delete.hlp -pgsql/pgaccess/lib/help/drop_aggregate.hlp -pgsql/pgaccess/lib/help/drop_database.hlp -pgsql/pgaccess/lib/help/drop_function.hlp -pgsql/pgaccess/lib/help/drop_index.hlp -pgsql/pgaccess/lib/help/drop_language.hlp -pgsql/pgaccess/lib/help/drop_operator.hlp -pgsql/pgaccess/lib/help/drop_rule.hlp -pgsql/pgaccess/lib/help/drop_sequence.hlp -pgsql/pgaccess/lib/help/drop_table.hlp -pgsql/pgaccess/lib/help/drop_trigger.hlp -pgsql/pgaccess/lib/help/drop_type.hlp -pgsql/pgaccess/lib/help/drop_user.hlp -pgsql/pgaccess/lib/help/drop_view.hlp -pgsql/pgaccess/lib/help/explain.hlp -pgsql/pgaccess/lib/help/fetch.hlp -pgsql/pgaccess/lib/help/form_design.hlp -pgsql/pgaccess/lib/help/forms.hlp -pgsql/pgaccess/lib/help/functions.hlp -pgsql/pgaccess/lib/help/geomfunc.hlp -pgsql/pgaccess/lib/help/grant.hlp -pgsql/pgaccess/lib/help/history.hlp -pgsql/pgaccess/lib/help/index.hlp -pgsql/pgaccess/lib/help/inheritance.hlp -pgsql/pgaccess/lib/help/insert.hlp -pgsql/pgaccess/lib/help/ipv4func.hlp -pgsql/pgaccess/lib/help/isolation.hlp -pgsql/pgaccess/lib/help/keywords.hlp -pgsql/pgaccess/lib/help/listen.hlp -pgsql/pgaccess/lib/help/load.hlp -pgsql/pgaccess/lib/help/lock.hlp -pgsql/pgaccess/lib/help/mathfunc.hlp -pgsql/pgaccess/lib/help/move.hlp -pgsql/pgaccess/lib/help/mvcc.hlp -pgsql/pgaccess/lib/help/new_query.hlp -pgsql/pgaccess/lib/help/new_table.hlp -pgsql/pgaccess/lib/help/notify.hlp -pgsql/pgaccess/lib/help/open_query.hlp -pgsql/pgaccess/lib/help/open_table.hlp -pgsql/pgaccess/lib/help/pgfunctions.hlp -pgsql/pgaccess/lib/help/postgresql.hlp -pgsql/pgaccess/lib/help/queries.hlp -pgsql/pgaccess/lib/help/reports.hlp -pgsql/pgaccess/lib/help/reset.hlp -pgsql/pgaccess/lib/help/revoke.hlp -pgsql/pgaccess/lib/help/rollback.hlp -pgsql/pgaccess/lib/help/schema.hlp -pgsql/pgaccess/lib/help/scripts.hlp -pgsql/pgaccess/lib/help/select.hlp -pgsql/pgaccess/lib/help/select_into.hlp -pgsql/pgaccess/lib/help/sequences.hlp -pgsql/pgaccess/lib/help/set.hlp -pgsql/pgaccess/lib/help/show.hlp -pgsql/pgaccess/lib/help/sql_guide.hlp -pgsql/pgaccess/lib/help/sqlfunc.hlp -pgsql/pgaccess/lib/help/stringfunc.hlp -pgsql/pgaccess/lib/help/tables.hlp -pgsql/pgaccess/lib/help/unlisten.hlp -pgsql/pgaccess/lib/help/update.hlp -pgsql/pgaccess/lib/help/users.hlp -pgsql/pgaccess/lib/help/vacuum.hlp -pgsql/pgaccess/lib/help/view_table_structure.hlp -pgsql/pgaccess/lib/help/views.hlp -pgsql/pgaccess/lib/help/visual_designer.hlp -pgsql/pgaccess/lib/help/y2k.hlp -pgsql/pgaccess/lib/help.tcl -pgsql/pgaccess/lib/languages/czech -pgsql/pgaccess/lib/languages/deutsch -pgsql/pgaccess/lib/languages/francais -pgsql/pgaccess/lib/languages/italiano -pgsql/pgaccess/lib/languages/magyar -pgsql/pgaccess/lib/languages/portugues -pgsql/pgaccess/lib/languages/romana -pgsql/pgaccess/lib/languages/russian.koi8r -pgsql/pgaccess/lib/languages/russian_win -pgsql/pgaccess/lib/languages/spanish -pgsql/pgaccess/lib/mainlib.tcl -pgsql/pgaccess/lib/preferences.tcl -pgsql/pgaccess/lib/queries.tcl -pgsql/pgaccess/lib/reports.tcl -pgsql/pgaccess/lib/schema.tcl -pgsql/pgaccess/lib/scripts.tcl -pgsql/pgaccess/lib/sequences.tcl -pgsql/pgaccess/lib/tables.tcl -pgsql/pgaccess/lib/users.tcl -pgsql/pgaccess/lib/views.tcl -pgsql/pgaccess/lib/visualqb.tcl -pgsql/pgaccess/main.tcl -@dirrm pgsql/pgaccess/images -@dirrm pgsql/pgaccess/lib/help -@dirrm pgsql/pgaccess/lib/languages -@dirrm pgsql/pgaccess/lib -@dirrm pgsql/pgaccess diff --git a/databases/postgresql84-server/scripts/configure b/databases/postgresql84-server/scripts/configure deleted file mode 100644 index 4a92ee450ebe..000000000000 --- a/databases/postgresql84-server/scripts/configure +++ /dev/null @@ -1,7 +0,0 @@ -#! /bin/sh - -# $FreeBSD$ - -cd $WRKSRC || exit 1 - -perl -pi -e "s=!!JAVA_HOME!!=${JAVA_HOME}=; s=!!PREFIX!!=${PREFIX}=" ${WRKSRC}/interfaces/jdbc/Makefile diff --git a/databases/postgresql84-server/scripts/createuser b/databases/postgresql84-server/scripts/createuser deleted file mode 100644 index 2abe201e7a4b..000000000000 --- a/databases/postgresql84-server/scripts/createuser +++ /dev/null @@ -1,50 +0,0 @@ -#!/usr/bin/perl -# - -eval '(exit $?0)' && eval 'exec /usr/bin/perl -S $0 ${1+"$@"}' -& eval 'exec /usr/bin/perl -S $0 $argv:q' -if 0; - -if( $> ) { - print "\nYou must be root to run this step!\n\n"; - exit 1; -} - -if( getpwnam( "pgsql" ) ) { - ( $null, $null, $pgUID ) = getpwnam( "pgsql" ); -} else { - $pgUID = 70; - while( getpwuid( $pgUID ) ) { - $pgUID++; - } -} - -if( getgrnam( "pgsql" ) ) { - ( $null, $null, $pgGID ) = getgrnam( "pgsql" ); -} else { - $pgGID = 70; - while( getgrgid( $pgGID ) ) { - $pgGID++; - } - &append_file( "/etc/group", "pgsql:*:$pgGID:" ); -} - -print "pgsql user using uid $pgUID\n"; -print "pgsql user using gid $pgGID\n"; - -system( "/usr/bin/chpass -a \"pgsql:*:$pgUID:$pgGID\:\:0:0:PostgreSQL pseudo-user:$ENV{'PREFIX'}/pgsql:/bin/sh\"" ); - -sub append_file { - local($file,@list) = @_; - local($LOCK_EX) = 2; - local($LOCK_NB) = 4; - local($LOCK_UN) = 8; - - open(F, ">> $file") || die "$file: $!\n"; - while( ! flock( F, $LOCK_EX | $LOCK_NB ) ) { - exit 1; - } - print F join( "\n", @list) . "\n"; - close F; - flock( F, $LOCK_UN ); -} diff --git a/databases/postgresql90-server/Makefile b/databases/postgresql90-server/Makefile deleted file mode 100644 index 94aa22cad135..000000000000 --- a/databases/postgresql90-server/Makefile +++ /dev/null @@ -1,259 +0,0 @@ -# New ports collection makefile for: PostgreSQL -# Date created: November 13, 1998 -# Whom: Marc G. Fournier <scrappy@FreeBSD.org> -# -# $FreeBSD$ -# - -PORTNAME= postgresql -PORTVERSION= 7.0.2 -CATEGORIES= databases -MASTER_SITES= ftp://ftp.postgresql.org/pub/%SUBDIR%/ \ - ftp://ftp.de.postgresql.org/%SUBDIR%/ \ - ftp://ftp.iodynamics.com/pub/mirror/postgresql/%SUBDIR%/ \ - ftp://ftp.digex.net/pub/packages/database/postgresql/%SUBDIR%/ \ - ftp://ftp.sunet.se/pub/unix/databases/relational/postgresql/%SUBDIR%/ -MASTER_SITE_SUBDIR= source/v${PORTVERSION} -DISTFILES= ${PORTNAME}-${PORTVERSION}.base${EXTRACT_SUFX} \ - ${PORTNAME}-${PORTVERSION}.support${EXTRACT_SUFX} \ - ${PORTNAME}-${PORTVERSION}.docs${EXTRACT_SUFX} -# ${PORTNAME}-${PORTVERSION}.test${EXTRACT_SUFX} -DIST_SUBDIR= postgresql - -MAINTAINER= andreas@FreeBSD.org - -.if ${MACHINE_ARCH} == "alpha" -BROKEN= doesn\'t build on the alpha yet -.endif - -Y2K= http://www.postgresql.org/y2k.html - -INSTALLS_SHLIB= YES -LDCONFIG_DIRS= %%PREFIX%%/pgsql/lib - -# if you want to use the tcl/tk frontend pgaccess, then you need to build -# postgresql with tcl support by typing: make -DWITH_TCL -.if defined(WITH_TCL) -TCL_INCDIR= ${LOCALBASE}/include/tcl8.3 -TK_INCDIR= ${LOCALBASE}/include/tk8.3 -MAKE_ENV= TCL_INCDIR=${TCL_INCDIR} -CONFIGURE_ENV= WISH=${LOCALBASE}/bin/wish8.3 -LIB_DEPENDS= tcl83.1:${PORTSDIR}/lang/tcl83 \ - tk83.1:${PORTSDIR}/x11-toolkits/tk83 -CONFIGURE_TCL= --with-tcl --with-tclconfig="${LOCALBASE}/lib/tcl8.3 ${LOCALBASE}/lib/tk8.3" -.endif - -# if you want to disable the multibyte support, type: -# make -DWITHOUT_MULTIBYTE -# -# if you want to set the default encoding for the multibyte support, type: -# make DEFAULT_ENCODING=<encoding> -# where <encoding> is one of these: -# SQL_ASCII LATIN1 LATIN2 LATIN3 LATIN4 LATIN5 -# EUC_JP EUC_CN EUC_KR EUC_TW KOI8 -# UNICODE MULE_INTERNAL WIN ALT -.if defined(WITHOUT_MULTIBYTE) -CONFIGURE_MULTIBYTE= # none -.elif defined(DEFAULT_ENCODING) -CONFIGURE_MULTIBYTE= --enable-multibyte="${DEFAULT_ENCODING}" -.else -CONFIGURE_MULTIBYTE= --enable-multibyte -.endif - -# if you want jdbc, type make -DWITH_JDBC -# Honors JAVA_HOME if you have it set, and don't want the dependency. -.if defined(WITH_JDBC) -JAVA_HOME?= ${LOCALBASE}/jdk1.1.8 -BUILD_DEPENDS= ${JAVA_HOME}/bin/javac:${PORTSDIR}/java/jdk -SCRIPTS_ENV+= JAVA_HOME=${JAVA_HOME} -.endif - -WRKSRC= ${WRKDIR}/${DISTNAME}/src -DOCDIR= ${WRKDIR}/${DISTNAME}/doc - -USE_GMAKE= YES -MAKEFILE= GNUmakefile -HAS_CONFIGURE= YES -CONFIGURE_ARGS= --prefix=${PREFIX}/pgsql \ - --enable-locale \ - --with-template=`uname -s | ${TR} '[A-Z]' '[a-z]'` \ - --with-includes="${PREFIX}/include ${TCL_INCDIR} ${TK_INCDIR}" \ - ${CONFIGURE_TCL} \ - ${CONFIGURE_MULTIBYTE} \ - --with-libraries=${PREFIX}/lib - -MAN1= createdb.1 createlang.1 createuser.1 dropdb.1 droplang.1 \ - dropuser.1 ecpg.1 initdb.1 initlocation.1 ipcclean.1 pg_ctl.1 \ - pg_dump.1 pg_dumpall.1 pg_passwd.1 pg_upgrade.1 pgaccess.1 \ - pgadmin.1 pgtclsh.1 pgtksh.1 postgres.1 postmaster.1 psql.1 \ - vacuumdb.1 -MANL= abort.l alter_group.l alter_table.l alter_user.l \ - begin.l close.l cluster.l comment.l commit.l copy.l \ - create_aggregate.l create_constraint_trigger.l \ - create_database.l create_function.l create_group.l \ - create_index.l create_language.l create_operator.l \ - create_rule.l create_sequence.l create_table.l \ - create_table_as.l create_trigger.l create_type.l \ - create_user.l create_view.l declare.l delete.l \ - drop_aggregate.l drop_database.l drop_function.l \ - drop_group.l drop_index.l drop_language.l \ - drop_operator.l drop_rule.l drop_sequence.l \ - drop_table.l drop_trigger.l drop_type.l drop_user.l \ - drop_view.l end.l explain.l fetch.l grant.l insert.l \ - listen.l load.l lock.l move.l notify.l reindex.l \ - reset.l revoke.l rollback.l select.l select_into.l \ - set.l show.l truncate.l unlisten.l update.l vacuum.l - -MANPREFIX= ${PREFIX}/pgsql - -pre-fetch: - @${ECHO_MSG} "To install and run postgresql you need to compile kernel with:" - @${ECHO_MSG} " options \"SYSVSHM, SYSVSEM, SYSVMSG\"" -.if !defined(WITH_TCL) - @${ECHO_MSG} "To build the \"PostgreSQL to Tcl interface library\", libpgtcl, type:" - @${ECHO_MSG} " make -DWITH_TCL" -.else - @${ECHO_MSG} "Building PostgreSQL with \"libpgtcl\"." -.endif -.if !defined(WITHOUT_MULTIBYTE) - @${ECHO_MSG} "To disable multibyte support, type:" - @${ECHO_MSG} " make -DWITHOUT_MULTIBYTE" -.if !defined(DEFAULT_ENCODING) - @${ECHO_MSG} "To set the default encoding for the multibyte support, type:" - @${ECHO_MSG} " make DEFAULT_ENCODING=<encoding>" - @${ECHO_MSG} "where <encoding> is one of these:" - @${ECHO_MSG} " SQL_ASCII LATIN1 LATIN2 LATIN3 LATIN4 LATIN5" - @${ECHO_MSG} " EUC_JP EUC_CN EUC_KR EUC_TW KOI8" - @${ECHO_MSG} " UNICODE MULE_INTERNAL WIN ALT" -.else - @${ECHO_MSG} "The default encoding is '${DEFAULT_ENCODING}'." -.endif -.else - @${ECHO_MSG} "Building PostgreSQL without multibyte support." -.endif -.if !defined(WITH_JDBC) - @${ECHO_MSG} "To build Java (JDBC) support, type:" - @${ECHO_MSG} " make -DWITH_JDBC" -.else - @${ECHO_MSG} "Building PostgreSQL with \"postgresql.jar\"." -.endif - -post-patch: - @ ${MV} ${WRKSRC}/template/freebsd ${WRKSRC}/template/freebsd.orig - @ ${SED} -e 's#CFLAGS:-O2 -m486 -pipe#CFLAGS:${CFLAGS}#' \ - -e 's#USE_LOCALE:no#USE_LOCALE:yes#' \ - ${WRKSRC}/template/freebsd.orig >> ${WRKSRC}/template/freebsd - @ ${MV} ${WRKSRC}/Makefile.global.in ${WRKSRC}/Makefile.global.in.old - @ ${SED} -e 's=!!PREFIX!!=${PREFIX}=g' \ - ${WRKSRC}/Makefile.global.in.old \ - >> ${WRKSRC}/Makefile.global.in - -post-build: -.if defined(WITH_JDBC) - @ cd ${WRKSRC}/interfaces/jdbc && ${GMAKE} -.if !defined(NOPORTDOCS) - @ cd ${WRKSRC}/interfaces/jdbc && ${GMAKE} examples -.endif -.endif - @ ${ECHO} "------------------------------------------------------------" - @ ${ECHO} "Dump existing databases, before installing new db version !!" - @ ${ECHO} "Detailed instructions, see" - @ ${ECHO} "${WRKDIR}/${DISTNAME}/INSTALL" - @ ${ECHO} "------------------------------------------------------------" - -pre-install: -.if defined(PACKAGE_BUILDING) - ${RM} -rf ${PREFIX}/pgsql -.endif - @ ${MKDIR} ${PREFIX}/pgsql - @ ${SETENV} ${MAKE_ENV} perl ${SCRIPTDIR}/createuser - -post-install: -.if defined(NOPORTDOCS) - @ ( cd ${DOCDIR}; ${GMAKE} man ) -.else - @ ( cd ${DOCDIR}; ${GMAKE} install ) -.endif - @ if [ ! -f ${PREFIX}/pgsql/.profile ]; then \ - ${ECHO} "PATH=${PATH}:${PREFIX}/pgsql/bin" \ - > ${PREFIX}/pgsql/.profile; \ - ${ECHO} "MANPATH=${MANPATH}:${PREFIX}/pgsql/man" \ - >> ${PREFIX}/pgsql/.profile; \ - ${ECHO} "PGLIB=${PREFIX}/pgsql/lib" \ - >> ${PREFIX}/pgsql/.profile; \ - ${ECHO} "# note: PGDATA overwrites the -D startup option" \ - >> ${PREFIX}/pgsql/.profile; \ - ${ECHO} "PGDATA=${PREFIX}/pgsql/data" \ - >> ${PREFIX}/pgsql/.profile; \ - ${ECHO} "DISPLAY=:0" \ - >> ${PREFIX}/pgsql/.profile; \ - ${ECHO} "export PATH MANPATH PGLIB PGDATA DISPLAY" \ - >> ${PREFIX}/pgsql/.profile; \ - ${ECHO} "# if you want to make regression tests use this TZ" \ - >> ${PREFIX}/pgsql/.profile; \ - ${ECHO} "#TZ=PST8PDT" \ - >> ${PREFIX}/pgsql/.profile; \ - ${ECHO} "#export TZ" \ - >> ${PREFIX}/pgsql/.profile; \ - fi - @ ${CHOWN} -R pgsql:pgsql ${PREFIX}/pgsql - @ ${ECHO} 'Initializing PostgreSQL Databases - this may take a few minutes...' - @ ${SETENV} OBJFORMAT=${PORTOBJFORMAT} ${LDCONFIG} -m ${PREFIX}/pgsql/lib - @ su -l pgsql -c 'PATH=${PREFIX}/pgsql/bin:${PATH} LD_LIBRARY_PATH=${PREFIX}/pgsql/lib ${PREFIX}/pgsql/bin/initdb --pglib=${PREFIX}/pgsql/lib --pgdata=${PREFIX}/pgsql/data' - @ ${SED} -e "s=!!PREFIX!!=${PREFIX}=g" < ${FILESDIR}/pgsql.sh.tmpl \ - > ${PREFIX}/etc/rc.d/pgsql.sh - @ ${CHMOD} 554 ${PREFIX}/etc/rc.d/pgsql.sh - @ ${CHOWN} root.pgsql ${PREFIX}/etc/rc.d/pgsql.sh - @ ${INSTALL_DATA} ${FILESDIR}/post-install-notes ${PREFIX}/pgsql -.if defined(WITHOUT_MULTIBYTE) - @${CP} ${TMPPLIST} ${TMPPLIST}.nomulti - @${GREP} -v pgsql/bin/pg_encoding ${TMPPLIST}.nomulti > ${TMPPLIST} -.endif -.if defined(WITH_TCL) - @${CP} ${TMPPLIST} ${TMPPLIST}.notcl - @${CAT} ${PKGDIR}/PLIST.tcl ${TMPPLIST}.notcl > ${TMPPLIST} - @${RM} ${TMPPLIST}.notcl -.endif -.if defined(WITH_JDBC) - @ ${MKDIR} -m 0555 ${PREFIX}/share/java/classes - @ ${INSTALL_DATA} ${WRKSRC}/interfaces/jdbc/postgresql.jar \ - ${PREFIX}/share/java/classes/postgresql.jar - @ ${ECHO_MSG} "---------------------------------------------------------" - @ ${ECHO_MSG} "Putting postgresql.jar in" - @ ${ECHO_MSG} "${PREFIX}/share/java/classes/postgresql.jar" - @ ${ECHO_MSG} "Add this to your CLASSPATH!" - @ ${ECHO_MSG} "ALSO NOTE: path inside jar file modified from 6.5.x:" - @ ${ECHO_MSG} " 'postgresql.*' -> 'org.postgresql.*'!" - @ ${ECHO_MSG} "You will need to modify you applications' props files." - @ ${ECHO_MSG} "---------------------------------------------------------" - @ ${CAT} ${PKGDIR}/PLIST.jdbc >> ${TMPPLIST} -.if !defined(NOPORTDOCS) - @ ${MKDIR} -m 0555 ${PREFIX}/share/examples/pgsql/jdbc - @ ${INSTALL_DATA} ${WRKSRC}/interfaces/jdbc/example/*java \ - ${PREFIX}/share/examples/pgsql/jdbc - @ ${INSTALL_DATA} ${WRKSRC}/interfaces/jdbc/README* \ - ${PREFIX}/share/examples/pgsql/jdbc - @ ${ECHO_MSG} "---------------------------------------------------------" - @ ${ECHO_MSG} "Putting jdbc examples into ${PREFIX}/share/examples/pgsql" - @ ${ECHO_MSG} "---------------------------------------------------------" - @ ${CAT} ${PKGDIR}/PLIST.doc >> ${TMPPLIST} -.endif -.endif -.if !defined(NOPORTDOCS) - ${MKDIR} ${PREFIX}/share/doc/pgsql - @ ${GMAKE} -C ${WRKDIR}/${DISTNAME}/doc install - ${INSTALL_MAN} ${WRKDIR}/${DISTNAME}/doc/FAQ* ${PREFIX}/share/doc/pgsql - ${INSTALL_MAN} ${WRKDIR}/${DISTNAME}/doc/README* ${PREFIX}/share/doc/pgsql - ${INSTALL_MAN} ${WRKDIR}/${DISTNAME}/doc/TODO ${PREFIX}/share/doc/pgsql -# ${INSTALL_MAN} ${WRKDIR}/${DISTNAME}/doc/*ps.gz ${PREFIX}/share/doc/pgsql -.endif -.if !defined(BATCH) - @ more -e ${FILESDIR}/post-install-notes -.endif -.if !defined(DEBUG_FLAGS) -.for file in ecpg pg_dump pg_id pg_passwd pg_version postgres psql - @ strip ${PREFIX}/pgsql/bin/${file} -.endfor -.endif - -.include <bsd.port.mk> diff --git a/databases/postgresql90-server/distinfo b/databases/postgresql90-server/distinfo deleted file mode 100644 index 309ea1e11614..000000000000 --- a/databases/postgresql90-server/distinfo +++ /dev/null @@ -1,4 +0,0 @@ -MD5 (postgresql/postgresql-7.0.2.base.tar.gz) = 871d23b85d9a3599a7ed75dfc7da7ba7 -MD5 (postgresql/postgresql-7.0.2.support.tar.gz) = c21180a6485d85785c8e69f0cbff05dd -MD5 (postgresql/postgresql-7.0.2.docs.tar.gz) = efac1f87463f252e54d72b256885b883 -MD5 (postgresql/postgresql-7.0.2.test.tar.gz) = 3443b3d83194c396f20aee2adc6f93bf diff --git a/databases/postgresql90-server/files/patch-aj b/databases/postgresql90-server/files/patch-aj deleted file mode 100644 index 4231fc94ede9..000000000000 --- a/databases/postgresql90-server/files/patch-aj +++ /dev/null @@ -1,67 +0,0 @@ ---- bin/pg_passwd/pg_passwd.c.orig Mon Apr 17 05:45:18 2000 -+++ bin/pg_passwd/pg_passwd.c Sat May 20 17:54:59 2000 -@@ -18,11 +18,15 @@ - - #endif - -+#ifndef _POSIX_SOURCE -+# define _PASSWORD_LEN 128 /* max length, not containing NULL */ -+#endif -+ - char *comname; - static void usage(FILE *stream); - static void read_pwd_file(char *filename); - static void write_pwd_file(char *filename, char *bkname); --static void encrypt_pwd(char key[9], char salt[3], char passwd[14]); -+static void encrypt_pwd(char key[9], char salt[3], char passwd[_PASSWORD_LEN+1]); - static void prompt_for_username(char *username); - static void prompt_for_password(char *prompt, char *password); - -@@ -150,7 +154,7 @@ - - if (q != NULL) - *(q++) = '\0'; -- if (strlen(p) != 13) -+ if (strlen(p) > _PASSWORD_LEN) - { - fprintf(stderr, "WARNING: %s: line %d: illegal password length.\n", - filename, npwds + 1); -@@ -214,7 +218,7 @@ - } - - static void --encrypt_pwd(char key[9], char salt[3], char passwd[14]) -+encrypt_pwd(char key[9], char salt[3], char passwd[_PASSWORD_LEN+1]) - { - int n; - -@@ -246,9 +250,9 @@ - - #ifdef NOT_USED - static int --check_pwd(char key[9], char passwd[14]) -+check_pwd(char key[9], char passwd[_PASSWORD_LEN+1]) - { -- char shouldbe[14]; -+ char shouldbe[_PASSWORD_LEN+1]; - char salt[3]; - - salt[0] = passwd[0]; -@@ -256,7 +260,7 @@ - salt[2] = '\0'; - encrypt_pwd(key, salt, shouldbe); - -- return strncmp(shouldbe, passwd, 13) == 0 ? 1 : 0; -+ return strncmp(shouldbe, passwd, _PASSWORD_LEN) == 0 ? 1 : 0; - } - - #endif -@@ -332,7 +336,7 @@ - char salt[3]; - char key[9], - key2[9]; -- char e_passwd[14]; -+ char e_passwd[_PASSWORD_LEN+1]; - int i; - - comname = argv[0]; diff --git a/databases/postgresql90-server/files/patch-ar b/databases/postgresql90-server/files/patch-ar deleted file mode 100644 index c5c8096fc141..000000000000 --- a/databases/postgresql90-server/files/patch-ar +++ /dev/null @@ -1,11 +0,0 @@ ---- configure.orig Sun Oct 10 14:37:07 1999 -+++ configure Sun Oct 10 14:37:29 1999 -@@ -1429,7 +1429,7 @@ - ELF_SYS=true - else - rm -rf conftest* -- if test "X$elf" = "Xyes" -+ if test "X$PORTOBJFORMAT" = "Xelf" - then - ELF_SYS=true - else diff --git a/databases/postgresql90-server/files/patch-as b/databases/postgresql90-server/files/patch-as deleted file mode 100644 index 3282168c4aed..000000000000 --- a/databases/postgresql90-server/files/patch-as +++ /dev/null @@ -1,11 +0,0 @@ ---- Makefile.global.in.orig Sun Dec 6 00:08:56 1998 -+++ Makefile.global.in Sat Feb 27 04:23:12 1999 -@@ -79,7 +79,7 @@ - POSTMANDIR= $(POSTGRESDIR)/man - - # Where the formatted documents (e.g., the reference manual) get installed. --POSTDOCDIR= $(POSTGRESDIR)/doc -+POSTDOCDIR= !!PREFIX!!/share/doc/pgsql - - # Where the header files necessary to build frontend programs get installed. - HEADERDIR= $(POSTGRESDIR)/include diff --git a/databases/postgresql90-server/files/patch-at b/databases/postgresql90-server/files/patch-at deleted file mode 100644 index 93e68a708211..000000000000 --- a/databases/postgresql90-server/files/patch-at +++ /dev/null @@ -1,11 +0,0 @@ ---- ../doc/Makefile.orig Sun Nov 29 06:30:13 1998 -+++ ../doc/Makefile Mon Jun 21 17:00:13 1999 -@@ -12,7 +12,7 @@ - # - #---------------------------------------------------------------------------- - --PGDOCS= $(POSTGRESDIR)/doc -+PGDOCS= $(POSTDOCDIR) - SRCDIR= ../src - - TAR= tar diff --git a/databases/postgresql90-server/files/patch-ba b/databases/postgresql90-server/files/patch-ba deleted file mode 100644 index a3b679b882c5..000000000000 --- a/databases/postgresql90-server/files/patch-ba +++ /dev/null @@ -1,25 +0,0 @@ ---- interfaces/jdbc/Makefile.orig Tue Mar 14 16:55:17 2000 -+++ interfaces/jdbc/Makefile Sun Apr 16 21:16:43 2000 -@@ -10,10 +10,10 @@ - - FIND = find - IDL2JAVA = idltojava -fno-cpp -fno-tie --JAR = jar --JAVA = java --JAVAC = javac -g --JAVADOC = javadoc -+JAR = !!JAVA_HOME!!/bin/jar -+JAVA = !!JAVA_HOME!!/bin/java -+JAVAC = !!JAVA_HOME!!/bin/javac -+JAVADOC = !!JAVA_HOME!!/bin/javadoc - RM = rm -f - TOUCH = touch - -@@ -40,6 +40,7 @@ - @echo To compile, type: - @echo " $(MAKE) jdbc2" - @echo ------------------------------------------------------------ -+ $(MAKE) jdbc1 - - msg: - @echo ------------------------------------------------------------ diff --git a/databases/postgresql90-server/files/patch-bb b/databases/postgresql90-server/files/patch-bb deleted file mode 100644 index ea0f1732dcb0..000000000000 --- a/databases/postgresql90-server/files/patch-bb +++ /dev/null @@ -1,13 +0,0 @@ ---- pl/tcl/Makefile~ Sat Apr 29 19:45:42 2000 -+++ pl/tcl/Makefile Sat May 20 22:42:22 2000 -@@ -71,7 +71,9 @@ - CFLAGS+= $(TCL_SHLIB_CFLAGS) $(TCL_DEFS) - - CFLAGS+= -I$(SRCDIR)/include -I$(SRCDIR)/backend $(PGSQL_INCLUDES) -- -+ -+CFLAGS+= -I$(TCL_INCDIR) -+ - # - # Uncomment the following to enable the unknown command lookup - # on the first of all calls to the call handler. See the doc diff --git a/databases/postgresql90-server/files/patch-bc b/databases/postgresql90-server/files/patch-bc deleted file mode 100644 index ff747fb84a2f..000000000000 --- a/databases/postgresql90-server/files/patch-bc +++ /dev/null @@ -1,5 +0,0 @@ ---- bin/pg_ctl/postmaster.opts.default.sample~ Mon Apr 17 05:45:17 2000 -+++ bin/pg_ctl/postmaster.opts.default.sample Tue May 23 02:46:30 2000 -@@ -1 +1 @@ -- -+-i -o "-F" diff --git a/databases/postgresql90-server/files/pgsql.sh.tmpl b/databases/postgresql90-server/files/pgsql.sh.tmpl deleted file mode 100644 index e1673b4850c2..000000000000 --- a/databases/postgresql90-server/files/pgsql.sh.tmpl +++ /dev/null @@ -1,34 +0,0 @@ -#!/bin/sh - -# $FreeBSD$ -# -# For postmaster startup options, edit $PGDATA/postmaster.opts.default -# Preinstalled options are -i -o "-F" - -case $1 in -start) - [ -d !!PREFIX!!/pgsql/lib ] && /sbin/ldconfig -m !!PREFIX!!/pgsql/lib - [ -x !!PREFIX!!/pgsql/bin/pg_ctl ] && { - su -l pgsql -c \ - 'exec !!PREFIX!!/pgsql/bin/pg_ctl -w start > !!PREFIX!!/pgsql/errlog 2>&1' - echo -n ' pgsql' - } - ;; - -stop) - [ -x !!PREFIX!!/pgsql/bin/pg_ctl ] && { - su -l pgsql -c 'exec !!PREFIX!!/pgsql/bin/pg_ctl -w -m fast stop' - } - ;; - -status) - [ -x !!PREFIX!!/pgsql/bin/pg_ctl ] && { - su -l pgsql -c 'exec !!PREFIX!!/pgsql/bin/pg_ctl status' - } - ;; - -*) - echo "usage: `basename $0` {start|stop|status}" >&2 - exit 64 - ;; -esac diff --git a/databases/postgresql90-server/files/post-install-notes b/databases/postgresql90-server/files/post-install-notes deleted file mode 100644 index 289a7651109a..000000000000 --- a/databases/postgresql90-server/files/post-install-notes +++ /dev/null @@ -1,16 +0,0 @@ - -Now that PostgreSQL is installed, you should read the documentation and -implementation guides. These can be found at: - - http://www.PostgreSQL.org/docs - -You may wish to subscribe to the PostgreSQL user-support mailing list. -Send an e-mail to pgsql-questions-request@postgresql.org with the -text "subscribe" in the message body. - -If you built PostgreSQL with TCL support, you can install the port -"pgaccess" to get a TCL/TK based database frontend for database -operations. - -To start PostgreSQL, run the startup script: -$PREFIX/etc/rc.d/pgsql.sh start diff --git a/databases/postgresql90-server/pkg-comment b/databases/postgresql90-server/pkg-comment deleted file mode 100644 index 2125016b133c..000000000000 --- a/databases/postgresql90-server/pkg-comment +++ /dev/null @@ -1 +0,0 @@ -A robust, next generation, object-relational DBMS diff --git a/databases/postgresql90-server/pkg-descr b/databases/postgresql90-server/pkg-descr deleted file mode 100644 index f48a33337e55..000000000000 --- a/databases/postgresql90-server/pkg-descr +++ /dev/null @@ -1,24 +0,0 @@ -PostgreSQL is a robust, next-generation, Object-Relational DBMS (ORDBMS), -derived from the Berkeley Postgres database management system. While -PostgreSQL retains the powerful object-relational data model, rich data types -and easy extensibility of Postgres, it replaces the PostQuel query language -with an extended subset of SQL. - -The original Postgres code was the effort of many graduate students, -undergraduate students, and staff programmers working under the direction of -Professor Michael Stonebraker at the University of California, Berkeley. In -1995, Andrew Yu and Jolly Chen took on the task of converting the DBMS query -language to SQL and created a new database system which came to known as -Postgres95. Many others contributed to the porting, testing, debugging and -enhancement of the Postgres95 code. As the code improved, and 1995 faded into -memory, PostgreSQL was born. - -PostgreSQL development is presently being performed by a team of Internet -developers who are now responsible for all current and future development. The -development team coordinator is Marc G. Fournier (scrappy@PostgreSQL.ORG). -Support is available from the PostgreSQL developer/user community through the -support mailing list (questions@PostgreSQL.ORG). - -PostgreSQL is free and the complete source is available. - -WWW: http://www.postgresql.org diff --git a/databases/postgresql90-server/pkg-install b/databases/postgresql90-server/pkg-install deleted file mode 100644 index 7f3a090fe4b6..000000000000 --- a/databases/postgresql90-server/pkg-install +++ /dev/null @@ -1,44 +0,0 @@ -#! /bin/sh - -# $FreeBSD$ - -PATH=/bin:/usr/sbin - -if [ -z "${DB_DIR}" ]; then - DB_DIR=${PKG_PREFIX}/pgsql/data -fi - -case $2 in -POST-INSTALL) - USER=pgsql - GROUP=${USER} - UID=89 - GID=${UID} - - if pw group show "${GROUP}" 2>/dev/null; then - echo "You already have a group \"${GROUP}\", so I will use it." - else - if pw groupadd ${GROUP} -g ${GID}; then - echo "Added group \"${GROUP}\"." - else - echo "Adding group \"${GROUP}\" failed..." - exit 1 - fi - fi - - if pw user show "${USER}" 2>/dev/null; then - echo "You already have a user \"${USER}\", so I will use it." - else - if pw useradd ${USER} -u ${UID} -g ${GROUP} -h - \ - -d ${DB_DIR} -s /sbin/nologin -c "PostgreSQL Daemon" - then - echo "Added user \"${USER}\"." - else - echo "Adding user \"${USER}\" failed..." - exit 1 - fi - fi - - chown -R ${USER}.${GROUP} ${DB_DIR} - ;; -esac diff --git a/databases/postgresql90-server/pkg-plist b/databases/postgresql90-server/pkg-plist deleted file mode 100644 index 9992da1174ae..000000000000 --- a/databases/postgresql90-server/pkg-plist +++ /dev/null @@ -1,168 +0,0 @@ -etc/rc.d/pgsql.sh -pgsql/.profile -pgsql/bin/createdb -pgsql/bin/createlang -pgsql/bin/createuser -pgsql/bin/dropdb -pgsql/bin/droplang -pgsql/bin/dropuser -pgsql/bin/ecpg -pgsql/bin/initdb -pgsql/bin/initlocation -pgsql/bin/ipcclean -pgsql/bin/pg_ctl -pgsql/bin/pg_dump -pgsql/bin/pg_dumpall -pgsql/bin/pg_encoding -pgsql/bin/pg_id -pgsql/bin/pg_passwd -pgsql/bin/pg_upgrade -pgsql/bin/pg_version -pgsql/bin/postgres -pgsql/bin/postmaster -pgsql/bin/psql -pgsql/bin/vacuumdb -pgsql/data/PG_VERSION -pgsql/data/base/template1/PG_VERSION -pgsql/data/base/template1/pg_aggregate -pgsql/data/base/template1/pg_aggregate_name_type_index -pgsql/data/base/template1/pg_am -pgsql/data/base/template1/pg_am_name_index -pgsql/data/base/template1/pg_amop -pgsql/data/base/template1/pg_amop_opid_index -pgsql/data/base/template1/pg_amop_strategy_index -pgsql/data/base/template1/pg_amproc -pgsql/data/base/template1/pg_attrdef -pgsql/data/base/template1/pg_attrdef_adrelid_index -pgsql/data/base/template1/pg_attribute -pgsql/data/base/template1/pg_attribute_relid_attnam_index -pgsql/data/base/template1/pg_attribute_relid_attnum_index -pgsql/data/base/template1/pg_class -pgsql/data/base/template1/pg_class_oid_index -pgsql/data/base/template1/pg_class_relname_index -pgsql/data/base/template1/pg_description -pgsql/data/base/template1/pg_description_objoid_index -pgsql/data/base/template1/pg_index -pgsql/data/base/template1/pg_index_indexrelid_index -pgsql/data/base/template1/pg_indexes -pgsql/data/base/template1/pg_inheritproc -pgsql/data/base/template1/pg_inherits -pgsql/data/base/template1/pg_inherits_relid_seqno_index -pgsql/data/base/template1/pg_ipl -pgsql/data/base/template1/pg_language -pgsql/data/base/template1/pg_language_name_index -pgsql/data/base/template1/pg_language_oid_index -pgsql/data/base/template1/pg_listener -pgsql/data/base/template1/pg_listener_relname_pid_index -pgsql/data/base/template1/pg_opclass -pgsql/data/base/template1/pg_opclass_deftype_index -pgsql/data/base/template1/pg_opclass_name_index -pgsql/data/base/template1/pg_operator -pgsql/data/base/template1/pg_operator_oid_index -pgsql/data/base/template1/pg_operator_oprname_l_r_k_index -pgsql/data/base/template1/pg_proc -pgsql/data/base/template1/pg_proc_oid_index -pgsql/data/base/template1/pg_proc_proname_narg_type_index -pgsql/data/base/template1/pg_relcheck -pgsql/data/base/template1/pg_relcheck_rcrelid_index -pgsql/data/base/template1/pg_rewrite -pgsql/data/base/template1/pg_rewrite_oid_index -pgsql/data/base/template1/pg_rewrite_rulename_index -pgsql/data/base/template1/pg_rules -pgsql/data/base/template1/pg_statistic -pgsql/data/base/template1/pg_statistic_relid_att_index -pgsql/data/base/template1/pg_tables -pgsql/data/base/template1/pg_trigger -pgsql/data/base/template1/pg_trigger_tgconstrname_index -pgsql/data/base/template1/pg_trigger_tgconstrrelid_index -pgsql/data/base/template1/pg_trigger_tgrelid_index -pgsql/data/base/template1/pg_type -pgsql/data/base/template1/pg_type_oid_index -pgsql/data/base/template1/pg_type_typname_index -pgsql/data/base/template1/pg_user -pgsql/data/base/template1/pg_views -pgsql/data/pg_control -pgsql/data/pg_database -pgsql/data/pg_geqo.sample -pgsql/data/pg_group -pgsql/data/pg_group_name_index -pgsql/data/pg_group_sysid_index -pgsql/data/pg_hba.conf -pgsql/data/pg_log -pgsql/data/pg_shadow -pgsql/data/pg_variable -pgsql/data/postmaster.opts.default -pgsql/include/access/attnum.h -pgsql/include/c.h -pgsql/include/commands/trigger.h -pgsql/include/config.h -pgsql/include/ecpgerrno.h -pgsql/include/ecpglib.h -pgsql/include/ecpgtype.h -pgsql/include/executor/spi.h -pgsql/include/fmgr.h -pgsql/include/lib/dllist.h -pgsql/include/libpgeasy.h -pgsql/include/libpq/libpq-fs.h -pgsql/include/libpq/pqcomm.h -pgsql/include/libpq++/pgconnection.h -pgsql/include/libpq++/pgcursordb.h -pgsql/include/libpq++/pgdatabase.h -pgsql/include/libpq++/pglobject.h -pgsql/include/libpq++/pgtransdb.h -pgsql/include/libpq++.h -pgsql/include/libpq-fe.h -pgsql/include/libpq-int.h -pgsql/include/os.h -pgsql/include/postgres.h -pgsql/include/postgres_ext.h -pgsql/include/pqexpbuffer.h -pgsql/include/sql3types.h -pgsql/include/sqlca.h -pgsql/include/utils/elog.h -pgsql/include/utils/geo_decls.h -pgsql/include/utils/mcxt.h -pgsql/include/utils/palloc.h -pgsql/lib/global1.bki.source -pgsql/lib/global1.description -pgsql/lib/libecpg.a -pgsql/lib/libecpg.so -pgsql/lib/libecpg.so.3 -pgsql/lib/libpgeasy.a -pgsql/lib/libpgeasy.so -pgsql/lib/libpgeasy.so.2 -pgsql/lib/libpq++.a -pgsql/lib/libpq++.so -pgsql/lib/libpq++.so.3 -pgsql/lib/libpq.a -pgsql/lib/libpq.so -pgsql/lib/libpq.so.2 -pgsql/lib/local1_template1.bki.source -pgsql/lib/local1_template1.description -pgsql/lib/pg_geqo.sample -pgsql/lib/pg_hba.conf.sample -pgsql/lib/pg_ident.conf.sample -pgsql/lib/pg_options.sample -pgsql/lib/plpgsql.so -pgsql/lib/postmaster.opts.default.sample -pgsql/post-install-notes -@dirrm pgsql/bin -@dirrm pgsql/data/base/template1 -@dirrm pgsql/data/base -@dirrm pgsql/data/pg_xlog -@dirrm pgsql/data -@dirrm pgsql/include/access -@dirrm pgsql/include/commands -@dirrm pgsql/include/executor -@dirrm pgsql/include/lib -@dirrm pgsql/include/libpq -@dirrm pgsql/include/libpq++ -@dirrm pgsql/include/port/freebsd -@dirrm pgsql/include/port -@dirrm pgsql/include/utils -@dirrm pgsql/include -@dirrm pgsql/lib -@dirrm pgsql/man/man1 -@dirrm pgsql/man/manl -@dirrm pgsql/man -@dirrm pgsql diff --git a/databases/postgresql90-server/pkg-plist.doc b/databases/postgresql90-server/pkg-plist.doc deleted file mode 100644 index 06b7bd9ea116..000000000000 --- a/databases/postgresql90-server/pkg-plist.doc +++ /dev/null @@ -1,888 +0,0 @@ -share/doc/pgsql/FAQ -share/doc/pgsql/FAQ_AIX -share/doc/pgsql/FAQ_BSDI -share/doc/pgsql/FAQ_DEV -share/doc/pgsql/FAQ_DigitalUnix -share/doc/pgsql/FAQ_FreeBSD -share/doc/pgsql/FAQ_HPUX -share/doc/pgsql/FAQ_Irix -share/doc/pgsql/FAQ_Linux -share/doc/pgsql/FAQ_QNX4 -share/doc/pgsql/FAQ_SCO -share/doc/pgsql/FAQ_Solaris -share/doc/pgsql/README.Charsets -share/doc/pgsql/README.NT -share/doc/pgsql/README.fsync -share/doc/pgsql/README.inet -share/doc/pgsql/README.locale -share/doc/pgsql/README.mb -share/doc/pgsql/README.mb.jp -share/doc/pgsql/TODO -share/doc/pgsql/admin/admin.htm -share/doc/pgsql/admin/admin.html -share/doc/pgsql/admin/biblio.htm -share/doc/pgsql/admin/c573.htm -share/doc/pgsql/admin/c573602.htm -share/doc/pgsql/admin/c573680.htm -share/doc/pgsql/admin/c573717.htm -share/doc/pgsql/admin/copyright.htm -share/doc/pgsql/admin/disk.htm -share/doc/pgsql/admin/index.html -share/doc/pgsql/admin/install-win32.htm -share/doc/pgsql/admin/install-win321073.htm -share/doc/pgsql/admin/install-win321082.htm -share/doc/pgsql/admin/install.htm -share/doc/pgsql/admin/install855.htm -share/doc/pgsql/admin/intro-ag.htm -share/doc/pgsql/admin/intro-ag162.htm -share/doc/pgsql/admin/layout.gif -share/doc/pgsql/admin/layout.htm -share/doc/pgsql/admin/manage-ag.htm -share/doc/pgsql/admin/manage-ag1604.htm -share/doc/pgsql/admin/manage-ag1646.htm -share/doc/pgsql/admin/manage-ag1655.htm -share/doc/pgsql/admin/newuser.htm -share/doc/pgsql/admin/notation.htm -share/doc/pgsql/admin/pg-options.htm -share/doc/pgsql/admin/ports.htm -share/doc/pgsql/admin/ports481.htm -share/doc/pgsql/admin/postmaster.htm -share/doc/pgsql/admin/preface.htm -share/doc/pgsql/admin/recovery.htm -share/doc/pgsql/admin/regress.htm -share/doc/pgsql/admin/regress1861.htm -share/doc/pgsql/admin/regress1895.htm -share/doc/pgsql/admin/regress1941.htm -share/doc/pgsql/admin/release.htm -share/doc/pgsql/admin/release2009.htm -share/doc/pgsql/admin/release2020.htm -share/doc/pgsql/admin/release2031.htm -share/doc/pgsql/admin/release2042.htm -share/doc/pgsql/admin/release2124.htm -share/doc/pgsql/admin/release2135.htm -share/doc/pgsql/admin/release2146.htm -share/doc/pgsql/admin/release2187.htm -share/doc/pgsql/admin/release2203.htm -share/doc/pgsql/admin/release2222.htm -share/doc/pgsql/admin/release2266.htm -share/doc/pgsql/admin/release2288.htm -share/doc/pgsql/admin/release2303.htm -share/doc/pgsql/admin/release2312.htm -share/doc/pgsql/admin/release2335.htm -share/doc/pgsql/admin/release2349.htm -share/doc/pgsql/admin/release2352.htm -share/doc/pgsql/admin/release2377.htm -share/doc/pgsql/admin/release2414.htm -share/doc/pgsql/admin/release2421.htm -share/doc/pgsql/admin/release2428.htm -share/doc/pgsql/admin/release2435.htm -share/doc/pgsql/admin/release2439.htm -share/doc/pgsql/admin/runtime.htm -share/doc/pgsql/admin/security.htm -share/doc/pgsql/admin/security1450.htm -share/doc/pgsql/admin/security1485.htm -share/doc/pgsql/admin/security1509.htm -share/doc/pgsql/admin/security1530.htm -share/doc/pgsql/admin/terminology.htm -share/doc/pgsql/admin/trouble.htm -share/doc/pgsql/admin/trouble1721.htm -share/doc/pgsql/admin/trouble1738.htm -share/doc/pgsql/admin/y2k.htm -share/doc/pgsql/postgres/about.htm -share/doc/pgsql/postgres/advanced.htm -share/doc/pgsql/postgres/advanced27923.htm -share/doc/pgsql/postgres/advanced27945.htm -share/doc/pgsql/postgres/app-createdb.htm -share/doc/pgsql/postgres/app-createlang.htm -share/doc/pgsql/postgres/app-createuser.htm -share/doc/pgsql/postgres/app-dropdb.htm -share/doc/pgsql/postgres/app-droplang.htm -share/doc/pgsql/postgres/app-dropuser.htm -share/doc/pgsql/postgres/app-ecpg.htm -share/doc/pgsql/postgres/app-initdb.htm -share/doc/pgsql/postgres/app-initlocation.htm -share/doc/pgsql/postgres/app-ipcclean.htm -share/doc/pgsql/postgres/app-pg-passwd.htm -share/doc/pgsql/postgres/app-pg-upgrade.htm -share/doc/pgsql/postgres/app-pgaccess.htm -share/doc/pgsql/postgres/app-pgadmin.htm -share/doc/pgsql/postgres/app-pgctl.htm -share/doc/pgsql/postgres/app-pgdump.htm -share/doc/pgsql/postgres/app-pgdumpall.htm -share/doc/pgsql/postgres/app-pgtclsh.htm -share/doc/pgsql/postgres/app-pgtksh.htm -share/doc/pgsql/postgres/app-postgres.htm -share/doc/pgsql/postgres/app-postmaster.htm -share/doc/pgsql/postgres/app-psql.htm -share/doc/pgsql/postgres/app-vacuumdb.htm -share/doc/pgsql/postgres/applications.htm -share/doc/pgsql/postgres/arch-pg.htm -share/doc/pgsql/postgres/arch.htm -share/doc/pgsql/postgres/arrays.htm -share/doc/pgsql/postgres/biblio.htm -share/doc/pgsql/postgres/bki.htm -share/doc/pgsql/postgres/bki26573.htm -share/doc/pgsql/postgres/bki26657.htm -share/doc/pgsql/postgres/bki26681.htm -share/doc/pgsql/postgres/bki26742.htm -share/doc/pgsql/postgres/c16883.htm -share/doc/pgsql/postgres/c1688316912.htm -share/doc/pgsql/postgres/c1688316990.htm -share/doc/pgsql/postgres/c1688317027.htm -share/doc/pgsql/postgres/c19986.htm -share/doc/pgsql/postgres/c21722.htm -share/doc/pgsql/postgres/c2172221764.htm -share/doc/pgsql/postgres/c2172221782.htm -share/doc/pgsql/postgres/c2172221924.htm -share/doc/pgsql/postgres/c2172221936.htm -share/doc/pgsql/postgres/c2172221956.htm -share/doc/pgsql/postgres/c2172221961.htm -share/doc/pgsql/postgres/c25129.htm -share/doc/pgsql/postgres/c4091.htm -share/doc/pgsql/postgres/c40914117.htm -share/doc/pgsql/postgres/c40914344.htm -share/doc/pgsql/postgres/c4362.htm -share/doc/pgsql/postgres/c43624375.htm -share/doc/pgsql/postgres/c4888.htm -share/doc/pgsql/postgres/c4933.htm -share/doc/pgsql/postgres/c49334943.htm -share/doc/pgsql/postgres/c49334947.htm -share/doc/pgsql/postgres/catalogs.gif -share/doc/pgsql/postgres/clientserver.gif -share/doc/pgsql/postgres/compiler.htm -share/doc/pgsql/postgres/connections.gif -share/doc/pgsql/postgres/copyright.htm -share/doc/pgsql/postgres/cvs.htm -share/doc/pgsql/postgres/cvs28436.htm -share/doc/pgsql/postgres/cvs28492.htm -share/doc/pgsql/postgres/datatype.htm -share/doc/pgsql/postgres/datatype1038.htm -share/doc/pgsql/postgres/datatype1070.htm -share/doc/pgsql/postgres/datatype1134.htm -share/doc/pgsql/postgres/datatype1649.htm -share/doc/pgsql/postgres/datatype1681.htm -share/doc/pgsql/postgres/datatype1920.htm -share/doc/pgsql/postgres/datetime-appendix.htm -share/doc/pgsql/postgres/datetime-appendix28356.htm -share/doc/pgsql/postgres/dfunc.htm -share/doc/pgsql/postgres/dfunc20136.htm -share/doc/pgsql/postgres/dfunc20146.htm -share/doc/pgsql/postgres/disk.htm -share/doc/pgsql/postgres/docguide.htm -share/doc/pgsql/postgres/docguide28718.htm -share/doc/pgsql/postgres/docguide28749.htm -share/doc/pgsql/postgres/docguide28840.htm -share/doc/pgsql/postgres/docguide28861.htm -share/doc/pgsql/postgres/docguide28887.htm -share/doc/pgsql/postgres/docguide29024.htm -share/doc/pgsql/postgres/docguide29362.htm -share/doc/pgsql/postgres/environ.htm -share/doc/pgsql/postgres/extend.htm -share/doc/pgsql/postgres/extend18852.htm -share/doc/pgsql/postgres/extend18864.htm -share/doc/pgsql/postgres/func-ref.htm -share/doc/pgsql/postgres/functions.htm -share/doc/pgsql/postgres/functions2593.htm -share/doc/pgsql/postgres/functions2733.htm -share/doc/pgsql/postgres/functions2876.htm -share/doc/pgsql/postgres/functions2976.htm -share/doc/pgsql/postgres/functions3443.htm -share/doc/pgsql/postgres/functions3641.htm -share/doc/pgsql/postgres/geqo-biblio.htm -share/doc/pgsql/postgres/geqo.htm -share/doc/pgsql/postgres/geqo25594.htm -share/doc/pgsql/postgres/geqo25617.htm -share/doc/pgsql/postgres/geqo25655.htm -share/doc/pgsql/postgres/gist.htm -share/doc/pgsql/postgres/index.html -share/doc/pgsql/postgres/indices.htm -share/doc/pgsql/postgres/inherit.htm -share/doc/pgsql/postgres/install-win32.htm -share/doc/pgsql/postgres/install-win3217383.htm -share/doc/pgsql/postgres/install-win3217392.htm -share/doc/pgsql/postgres/install.htm -share/doc/pgsql/postgres/install17165.htm -share/doc/pgsql/postgres/intro.htm -share/doc/pgsql/postgres/intro176.htm -share/doc/pgsql/postgres/intro304.htm -share/doc/pgsql/postgres/intro60.htm -share/doc/pgsql/postgres/jdbc.htm -share/doc/pgsql/postgres/jdbc24909.htm -share/doc/pgsql/postgres/jdbc24921.htm -share/doc/pgsql/postgres/jdbc24927.htm -share/doc/pgsql/postgres/jdbc24935.htm -share/doc/pgsql/postgres/jdbc24953.htm -share/doc/pgsql/postgres/jdbc24990.htm -share/doc/pgsql/postgres/jdbc25021.htm -share/doc/pgsql/postgres/jdbc25026.htm -share/doc/pgsql/postgres/jdbc25030.htm -share/doc/pgsql/postgres/jdbc25056.htm -share/doc/pgsql/postgres/jdbc25086.htm -share/doc/pgsql/postgres/largeobjects.htm -share/doc/pgsql/postgres/largeobjects21625.htm -share/doc/pgsql/postgres/largeobjects21628.htm -share/doc/pgsql/postgres/largeobjects21707.htm -share/doc/pgsql/postgres/largeobjects21714.htm -share/doc/pgsql/postgres/largeobjects21718.htm -share/doc/pgsql/postgres/layout.gif -share/doc/pgsql/postgres/layout.htm -share/doc/pgsql/postgres/libpq-chapter.htm -share/doc/pgsql/postgres/libpq-chapter22422.htm -share/doc/pgsql/postgres/libpq-chapter22577.htm -share/doc/pgsql/postgres/libpq-chapter22724.htm -share/doc/pgsql/postgres/libpq-chapter22736.htm -share/doc/pgsql/postgres/libpq-chapter22774.htm -share/doc/pgsql/postgres/libpq-chapter22844.htm -share/doc/pgsql/postgres/libpq-chapter22857.htm -share/doc/pgsql/postgres/libpq-chapter22942.htm -share/doc/pgsql/postgres/libpq-envars.htm -share/doc/pgsql/postgres/libpq-threading.htm -share/doc/pgsql/postgres/libpqplusplus.htm -share/doc/pgsql/postgres/libpqplusplus23034.htm -share/doc/pgsql/postgres/libpqplusplus23044.htm -share/doc/pgsql/postgres/libpqplusplus23074.htm -share/doc/pgsql/postgres/libpqplusplus23179.htm -share/doc/pgsql/postgres/libpqplusplus23202.htm -share/doc/pgsql/postgres/lisp.htm -share/doc/pgsql/postgres/manage-ag.htm -share/doc/pgsql/postgres/manage-ag17914.htm -share/doc/pgsql/postgres/manage-ag17956.htm -share/doc/pgsql/postgres/manage-ag17965.htm -share/doc/pgsql/postgres/manage.htm -share/doc/pgsql/postgres/manage4814.htm -share/doc/pgsql/postgres/manage4838.htm -share/doc/pgsql/postgres/manage4880.htm -share/doc/pgsql/postgres/mvcc.htm -share/doc/pgsql/postgres/mvcc4568.htm -share/doc/pgsql/postgres/mvcc4621.htm -share/doc/pgsql/postgres/mvcc4633.htm -share/doc/pgsql/postgres/mvcc4646.htm -share/doc/pgsql/postgres/mvcc4723.htm -share/doc/pgsql/postgres/mvcc4744.htm -share/doc/pgsql/postgres/newuser.htm -share/doc/pgsql/postgres/notation.htm -share/doc/pgsql/postgres/odbc.htm -share/doc/pgsql/postgres/odbc24433.htm -share/doc/pgsql/postgres/odbc24471.htm -share/doc/pgsql/postgres/odbc24644.htm -share/doc/pgsql/postgres/odbc24666.htm -share/doc/pgsql/postgres/operators.htm -share/doc/pgsql/postgres/operators2127.htm -share/doc/pgsql/postgres/operators2198.htm -share/doc/pgsql/postgres/operators2267.htm -share/doc/pgsql/postgres/operators2377.htm -share/doc/pgsql/postgres/operators2436.htm -share/doc/pgsql/postgres/operators2490.htm -share/doc/pgsql/postgres/overview.htm -share/doc/pgsql/postgres/overview25194.htm -share/doc/pgsql/postgres/overview25219.htm -share/doc/pgsql/postgres/overview25347.htm -share/doc/pgsql/postgres/overview25403.htm -share/doc/pgsql/postgres/overview25457.htm -share/doc/pgsql/postgres/page.htm -share/doc/pgsql/postgres/page26805.htm -share/doc/pgsql/postgres/page26819.htm -share/doc/pgsql/postgres/part-admin.htm -share/doc/pgsql/postgres/part-appendix.htm -share/doc/pgsql/postgres/part-developer.htm -share/doc/pgsql/postgres/part-interfaces.htm -share/doc/pgsql/postgres/part-programmer.htm -share/doc/pgsql/postgres/part-tutorial.htm -share/doc/pgsql/postgres/part-user.htm -share/doc/pgsql/postgres/partial-index.htm -share/doc/pgsql/postgres/pg-options-dev.htm -share/doc/pgsql/postgres/pg-options.htm -share/doc/pgsql/postgres/pgeasy-chapter.htm -share/doc/pgsql/postgres/pgtcl-pgconndefaults.htm -share/doc/pgsql/postgres/pgtcl-pgconnect.htm -share/doc/pgsql/postgres/pgtcl-pgdisconnect.htm -share/doc/pgsql/postgres/pgtcl-pgexec.htm -share/doc/pgsql/postgres/pgtcl-pglisten.htm -share/doc/pgsql/postgres/pgtcl-pgloclose.htm -share/doc/pgsql/postgres/pgtcl-pglocreat.htm -share/doc/pgsql/postgres/pgtcl-pgloexport.htm -share/doc/pgsql/postgres/pgtcl-pgloimport.htm -share/doc/pgsql/postgres/pgtcl-pglolseek.htm -share/doc/pgsql/postgres/pgtcl-pgloopen.htm -share/doc/pgsql/postgres/pgtcl-pgloread.htm -share/doc/pgsql/postgres/pgtcl-pglotell.htm -share/doc/pgsql/postgres/pgtcl-pglounlink.htm -share/doc/pgsql/postgres/pgtcl-pglowrite.htm -share/doc/pgsql/postgres/pgtcl-pgresult.htm -share/doc/pgsql/postgres/pgtcl-pgselect.htm -share/doc/pgsql/postgres/pgtcl.htm -share/doc/pgsql/postgres/pgtcl23317.htm -share/doc/pgsql/postgres/pgtcl23321.htm -share/doc/pgsql/postgres/pl-perl.htm -share/doc/pgsql/postgres/pl-perl4533.htm -share/doc/pgsql/postgres/pl-perl4542.htm -share/doc/pgsql/postgres/ports.htm -share/doc/pgsql/postgres/ports16791.htm -share/doc/pgsql/postgres/postgres.htm -share/doc/pgsql/postgres/postgres.html -share/doc/pgsql/postgres/postmaster.htm -share/doc/pgsql/postgres/preface.htm -share/doc/pgsql/postgres/protocol.htm -share/doc/pgsql/postgres/protocol25770.htm -share/doc/pgsql/postgres/protocol25925.htm -share/doc/pgsql/postgres/protocol25962.htm -share/doc/pgsql/postgres/query.htm -share/doc/pgsql/postgres/query27752.htm -share/doc/pgsql/postgres/query27768.htm -share/doc/pgsql/postgres/query27790.htm -share/doc/pgsql/postgres/query27799.htm -share/doc/pgsql/postgres/query27817.htm -share/doc/pgsql/postgres/query27825.htm -share/doc/pgsql/postgres/query27844.htm -share/doc/pgsql/postgres/query27849.htm -share/doc/pgsql/postgres/query27856.htm -share/doc/pgsql/postgres/recovery.htm -share/doc/pgsql/postgres/regress.htm -share/doc/pgsql/postgres/regress18171.htm -share/doc/pgsql/postgres/regress18205.htm -share/doc/pgsql/postgres/regress18251.htm -share/doc/pgsql/postgres/release.htm -share/doc/pgsql/postgres/release18319.htm -share/doc/pgsql/postgres/release18330.htm -share/doc/pgsql/postgres/release18341.htm -share/doc/pgsql/postgres/release18352.htm -share/doc/pgsql/postgres/release18434.htm -share/doc/pgsql/postgres/release18445.htm -share/doc/pgsql/postgres/release18456.htm -share/doc/pgsql/postgres/release18497.htm -share/doc/pgsql/postgres/release18513.htm -share/doc/pgsql/postgres/release18532.htm -share/doc/pgsql/postgres/release18576.htm -share/doc/pgsql/postgres/release18598.htm -share/doc/pgsql/postgres/release18613.htm -share/doc/pgsql/postgres/release18622.htm -share/doc/pgsql/postgres/release18645.htm -share/doc/pgsql/postgres/release18659.htm -share/doc/pgsql/postgres/release18662.htm -share/doc/pgsql/postgres/release18687.htm -share/doc/pgsql/postgres/release18724.htm -share/doc/pgsql/postgres/release18731.htm -share/doc/pgsql/postgres/release18738.htm -share/doc/pgsql/postgres/release18745.htm -share/doc/pgsql/postgres/release18749.htm -share/doc/pgsql/postgres/rules.htm -share/doc/pgsql/postgres/rules19478.htm -share/doc/pgsql/postgres/rules19639.htm -share/doc/pgsql/postgres/rules19770.htm -share/doc/pgsql/postgres/rules19784.htm -share/doc/pgsql/postgres/runtime.htm -share/doc/pgsql/postgres/security.htm -share/doc/pgsql/postgres/security17760.htm -share/doc/pgsql/postgres/security17795.htm -share/doc/pgsql/postgres/security17819.htm -share/doc/pgsql/postgres/security17840.htm -share/doc/pgsql/postgres/signals.htm -share/doc/pgsql/postgres/spi-spiconnect.htm -share/doc/pgsql/postgres/spi-spicopytuple.htm -share/doc/pgsql/postgres/spi-spiexec.htm -share/doc/pgsql/postgres/spi-spiexecp.htm -share/doc/pgsql/postgres/spi-spifinish.htm -share/doc/pgsql/postgres/spi-spifname.htm -share/doc/pgsql/postgres/spi-spifnumber.htm -share/doc/pgsql/postgres/spi-spigetbinval.htm -share/doc/pgsql/postgres/spi-spigetrelname.htm -share/doc/pgsql/postgres/spi-spigettype.htm -share/doc/pgsql/postgres/spi-spigettypeid.htm -share/doc/pgsql/postgres/spi-spigetvalue.htm -share/doc/pgsql/postgres/spi-spimodifytuple.htm -share/doc/pgsql/postgres/spi-spipalloc.htm -share/doc/pgsql/postgres/spi-spipfree.htm -share/doc/pgsql/postgres/spi-spiprepare.htm -share/doc/pgsql/postgres/spi-spirepalloc.htm -share/doc/pgsql/postgres/spi-spisaveplan.htm -share/doc/pgsql/postgres/spi.htm -share/doc/pgsql/postgres/spi20808.htm -share/doc/pgsql/postgres/spi21521.htm -share/doc/pgsql/postgres/spi21543.htm -share/doc/pgsql/postgres/spi21548.htm -share/doc/pgsql/postgres/sql-abort.htm -share/doc/pgsql/postgres/sql-altergroup.htm -share/doc/pgsql/postgres/sql-altertable.htm -share/doc/pgsql/postgres/sql-alteruser.htm -share/doc/pgsql/postgres/sql-begin.htm -share/doc/pgsql/postgres/sql-close.htm -share/doc/pgsql/postgres/sql-cluster.htm -share/doc/pgsql/postgres/sql-commands.htm -share/doc/pgsql/postgres/sql-comment.htm -share/doc/pgsql/postgres/sql-commit.htm -share/doc/pgsql/postgres/sql-copy.htm -share/doc/pgsql/postgres/sql-createaggregate.htm -share/doc/pgsql/postgres/sql-createconstraint.htm -share/doc/pgsql/postgres/sql-createdatabase.htm -share/doc/pgsql/postgres/sql-createfunction.htm -share/doc/pgsql/postgres/sql-creategroup.htm -share/doc/pgsql/postgres/sql-createindex.htm -share/doc/pgsql/postgres/sql-createlanguage.htm -share/doc/pgsql/postgres/sql-createoperator.htm -share/doc/pgsql/postgres/sql-createrule.htm -share/doc/pgsql/postgres/sql-createsequence.htm -share/doc/pgsql/postgres/sql-createtable.htm -share/doc/pgsql/postgres/sql-createtableas.htm -share/doc/pgsql/postgres/sql-createtrigger.htm -share/doc/pgsql/postgres/sql-createtype.htm -share/doc/pgsql/postgres/sql-createuser.htm -share/doc/pgsql/postgres/sql-createview.htm -share/doc/pgsql/postgres/sql-declare.htm -share/doc/pgsql/postgres/sql-delete.htm -share/doc/pgsql/postgres/sql-dropaggregate.htm -share/doc/pgsql/postgres/sql-dropdatabase.htm -share/doc/pgsql/postgres/sql-dropfunction.htm -share/doc/pgsql/postgres/sql-dropgroup.htm -share/doc/pgsql/postgres/sql-dropindex.htm -share/doc/pgsql/postgres/sql-droplanguage.htm -share/doc/pgsql/postgres/sql-dropoperator.htm -share/doc/pgsql/postgres/sql-droprule.htm -share/doc/pgsql/postgres/sql-dropsequence.htm -share/doc/pgsql/postgres/sql-droptable.htm -share/doc/pgsql/postgres/sql-droptrigger.htm -share/doc/pgsql/postgres/sql-droptype.htm -share/doc/pgsql/postgres/sql-dropuser.htm -share/doc/pgsql/postgres/sql-dropview.htm -share/doc/pgsql/postgres/sql-end.htm -share/doc/pgsql/postgres/sql-explain.htm -share/doc/pgsql/postgres/sql-fetch.htm -share/doc/pgsql/postgres/sql-grant.htm -share/doc/pgsql/postgres/sql-insert.htm -share/doc/pgsql/postgres/sql-language.htm -share/doc/pgsql/postgres/sql-listen.htm -share/doc/pgsql/postgres/sql-load.htm -share/doc/pgsql/postgres/sql-lock.htm -share/doc/pgsql/postgres/sql-move.htm -share/doc/pgsql/postgres/sql-notify.htm -share/doc/pgsql/postgres/sql-reindex.htm -share/doc/pgsql/postgres/sql-reset.htm -share/doc/pgsql/postgres/sql-revoke.htm -share/doc/pgsql/postgres/sql-rollback.htm -share/doc/pgsql/postgres/sql-select.htm -share/doc/pgsql/postgres/sql-selectinto.htm -share/doc/pgsql/postgres/sql-set.htm -share/doc/pgsql/postgres/sql-show.htm -share/doc/pgsql/postgres/sql-truncate.htm -share/doc/pgsql/postgres/sql-unlisten.htm -share/doc/pgsql/postgres/sql-update.htm -share/doc/pgsql/postgres/sql-vacuum.htm -share/doc/pgsql/postgres/sql.htm -share/doc/pgsql/postgres/sql26902.htm -share/doc/pgsql/postgres/sql27020.htm -share/doc/pgsql/postgres/start.htm -share/doc/pgsql/postgres/start27628.htm -share/doc/pgsql/postgres/start27650.htm -share/doc/pgsql/postgres/storage.htm -share/doc/pgsql/postgres/syntax.htm -share/doc/pgsql/postgres/syntax519.htm -share/doc/pgsql/postgres/syntax525.htm -share/doc/pgsql/postgres/syntax543.htm -share/doc/pgsql/postgres/syntax608.htm -share/doc/pgsql/postgres/syntax653.htm -share/doc/pgsql/postgres/syntax658.htm -share/doc/pgsql/postgres/terminology.htm -share/doc/pgsql/postgres/triggers.htm -share/doc/pgsql/postgres/triggers20224.htm -share/doc/pgsql/postgres/triggers20281.htm -share/doc/pgsql/postgres/triggers20290.htm -share/doc/pgsql/postgres/trouble.htm -share/doc/pgsql/postgres/trouble18031.htm -share/doc/pgsql/postgres/trouble18048.htm -share/doc/pgsql/postgres/typeconv.htm -share/doc/pgsql/postgres/typeconv3759.htm -share/doc/pgsql/postgres/typeconv3822.htm -share/doc/pgsql/postgres/typeconv3875.htm -share/doc/pgsql/postgres/typeconv3895.htm -share/doc/pgsql/postgres/utilities.htm -share/doc/pgsql/postgres/xaggr.htm -share/doc/pgsql/postgres/xfunc.htm -share/doc/pgsql/postgres/xfunc19011.htm -share/doc/pgsql/postgres/xfunc19017.htm -share/doc/pgsql/postgres/xfunc19022.htm -share/doc/pgsql/postgres/xfunc19254.htm -share/doc/pgsql/postgres/xindex.htm -share/doc/pgsql/postgres/xoper.htm -share/doc/pgsql/postgres/xplang.htm -share/doc/pgsql/postgres/xtypes.htm -share/doc/pgsql/postgres/y2k.htm -share/doc/pgsql/programmer/arch-pg.htm -share/doc/pgsql/programmer/biblio.htm -share/doc/pgsql/programmer/bki.htm -share/doc/pgsql/programmer/bki8058.htm -share/doc/pgsql/programmer/bki8142.htm -share/doc/pgsql/programmer/bki8166.htm -share/doc/pgsql/programmer/bki8227.htm -share/doc/pgsql/programmer/c1486.htm -share/doc/pgsql/programmer/c5391.htm -share/doc/pgsql/programmer/c53915433.htm -share/doc/pgsql/programmer/c53915451.htm -share/doc/pgsql/programmer/c53915593.htm -share/doc/pgsql/programmer/c53915605.htm -share/doc/pgsql/programmer/c53915625.htm -share/doc/pgsql/programmer/c53915630.htm -share/doc/pgsql/programmer/c6614.htm -share/doc/pgsql/programmer/catalogs.gif -share/doc/pgsql/programmer/compiler.htm -share/doc/pgsql/programmer/connections.gif -share/doc/pgsql/programmer/copyright.htm -share/doc/pgsql/programmer/cvs.htm -share/doc/pgsql/programmer/cvs8365.htm -share/doc/pgsql/programmer/cvs8421.htm -share/doc/pgsql/programmer/dfunc.htm -share/doc/pgsql/programmer/dfunc1679.htm -share/doc/pgsql/programmer/dfunc1689.htm -share/doc/pgsql/programmer/docguide.htm -share/doc/pgsql/programmer/docguide8647.htm -share/doc/pgsql/programmer/docguide8678.htm -share/doc/pgsql/programmer/docguide8769.htm -share/doc/pgsql/programmer/docguide8790.htm -share/doc/pgsql/programmer/docguide8816.htm -share/doc/pgsql/programmer/docguide8953.htm -share/doc/pgsql/programmer/docguide9291.htm -share/doc/pgsql/programmer/extend.htm -share/doc/pgsql/programmer/extend352.htm -share/doc/pgsql/programmer/extend364.htm -share/doc/pgsql/programmer/geqo-biblio.htm -share/doc/pgsql/programmer/geqo.htm -share/doc/pgsql/programmer/geqo7079.htm -share/doc/pgsql/programmer/geqo7102.htm -share/doc/pgsql/programmer/geqo7140.htm -share/doc/pgsql/programmer/gist.htm -share/doc/pgsql/programmer/index.html -share/doc/pgsql/programmer/intro-pg.htm -share/doc/pgsql/programmer/intro-pg167.htm -share/doc/pgsql/programmer/jdbc.htm -share/doc/pgsql/programmer/jdbc6398.htm -share/doc/pgsql/programmer/jdbc6410.htm -share/doc/pgsql/programmer/jdbc6416.htm -share/doc/pgsql/programmer/jdbc6424.htm -share/doc/pgsql/programmer/jdbc6442.htm -share/doc/pgsql/programmer/jdbc6479.htm -share/doc/pgsql/programmer/jdbc6510.htm -share/doc/pgsql/programmer/jdbc6515.htm -share/doc/pgsql/programmer/jdbc6519.htm -share/doc/pgsql/programmer/jdbc6545.htm -share/doc/pgsql/programmer/jdbc6575.htm -share/doc/pgsql/programmer/largeobjects.htm -share/doc/pgsql/programmer/largeobjects3114.htm -share/doc/pgsql/programmer/largeobjects3117.htm -share/doc/pgsql/programmer/largeobjects3196.htm -share/doc/pgsql/programmer/largeobjects3203.htm -share/doc/pgsql/programmer/largeobjects3207.htm -share/doc/pgsql/programmer/libpq-chapter.htm -share/doc/pgsql/programmer/libpq-chapter3419.htm -share/doc/pgsql/programmer/libpq-chapter3574.htm -share/doc/pgsql/programmer/libpq-chapter3721.htm -share/doc/pgsql/programmer/libpq-chapter3733.htm -share/doc/pgsql/programmer/libpq-chapter3771.htm -share/doc/pgsql/programmer/libpq-chapter3841.htm -share/doc/pgsql/programmer/libpq-chapter3854.htm -share/doc/pgsql/programmer/libpq-chapter3939.htm -share/doc/pgsql/programmer/libpq-envars.htm -share/doc/pgsql/programmer/libpq-threading.htm -share/doc/pgsql/programmer/libpqplusplus.htm -share/doc/pgsql/programmer/libpqplusplus4031.htm -share/doc/pgsql/programmer/libpqplusplus4041.htm -share/doc/pgsql/programmer/libpqplusplus4071.htm -share/doc/pgsql/programmer/libpqplusplus4176.htm -share/doc/pgsql/programmer/libpqplusplus4199.htm -share/doc/pgsql/programmer/lisp.htm -share/doc/pgsql/programmer/notation.htm -share/doc/pgsql/programmer/odbc.htm -share/doc/pgsql/programmer/odbc5922.htm -share/doc/pgsql/programmer/odbc5960.htm -share/doc/pgsql/programmer/odbc6133.htm -share/doc/pgsql/programmer/odbc6155.htm -share/doc/pgsql/programmer/overview.htm -share/doc/pgsql/programmer/overview6679.htm -share/doc/pgsql/programmer/overview6704.htm -share/doc/pgsql/programmer/overview6832.htm -share/doc/pgsql/programmer/overview6888.htm -share/doc/pgsql/programmer/overview6942.htm -share/doc/pgsql/programmer/page.htm -share/doc/pgsql/programmer/page8290.htm -share/doc/pgsql/programmer/page8304.htm -share/doc/pgsql/programmer/pg-options-dev.htm -share/doc/pgsql/programmer/pgeasy-chapter.htm -share/doc/pgsql/programmer/pgtcl-pgconndefaults.htm -share/doc/pgsql/programmer/pgtcl-pgconnect.htm -share/doc/pgsql/programmer/pgtcl-pgdisconnect.htm -share/doc/pgsql/programmer/pgtcl-pgexec.htm -share/doc/pgsql/programmer/pgtcl-pglisten.htm -share/doc/pgsql/programmer/pgtcl-pgloclose.htm -share/doc/pgsql/programmer/pgtcl-pglocreat.htm -share/doc/pgsql/programmer/pgtcl-pgloexport.htm -share/doc/pgsql/programmer/pgtcl-pgloimport.htm -share/doc/pgsql/programmer/pgtcl-pglolseek.htm -share/doc/pgsql/programmer/pgtcl-pgloopen.htm -share/doc/pgsql/programmer/pgtcl-pgloread.htm -share/doc/pgsql/programmer/pgtcl-pglotell.htm -share/doc/pgsql/programmer/pgtcl-pglounlink.htm -share/doc/pgsql/programmer/pgtcl-pglowrite.htm -share/doc/pgsql/programmer/pgtcl-pgresult.htm -share/doc/pgsql/programmer/pgtcl-pgselect.htm -share/doc/pgsql/programmer/pgtcl.htm -share/doc/pgsql/programmer/pgtcl4314.htm -share/doc/pgsql/programmer/pgtcl4318.htm -share/doc/pgsql/programmer/preface.htm -share/doc/pgsql/programmer/programmer.htm -share/doc/pgsql/programmer/programmer.html -share/doc/pgsql/programmer/protocol.htm -share/doc/pgsql/programmer/protocol7255.htm -share/doc/pgsql/programmer/protocol7410.htm -share/doc/pgsql/programmer/protocol7447.htm -share/doc/pgsql/programmer/rules.htm -share/doc/pgsql/programmer/rules1139.htm -share/doc/pgsql/programmer/rules1270.htm -share/doc/pgsql/programmer/rules1284.htm -share/doc/pgsql/programmer/rules978.htm -share/doc/pgsql/programmer/signals.htm -share/doc/pgsql/programmer/spi-spiconnect.htm -share/doc/pgsql/programmer/spi-spicopytuple.htm -share/doc/pgsql/programmer/spi-spiexec.htm -share/doc/pgsql/programmer/spi-spiexecp.htm -share/doc/pgsql/programmer/spi-spifinish.htm -share/doc/pgsql/programmer/spi-spifname.htm -share/doc/pgsql/programmer/spi-spifnumber.htm -share/doc/pgsql/programmer/spi-spigetbinval.htm -share/doc/pgsql/programmer/spi-spigetrelname.htm -share/doc/pgsql/programmer/spi-spigettype.htm -share/doc/pgsql/programmer/spi-spigettypeid.htm -share/doc/pgsql/programmer/spi-spigetvalue.htm -share/doc/pgsql/programmer/spi-spimodifytuple.htm -share/doc/pgsql/programmer/spi-spipalloc.htm -share/doc/pgsql/programmer/spi-spipfree.htm -share/doc/pgsql/programmer/spi-spiprepare.htm -share/doc/pgsql/programmer/spi-spirepalloc.htm -share/doc/pgsql/programmer/spi-spisaveplan.htm -share/doc/pgsql/programmer/spi.htm -share/doc/pgsql/programmer/spi2351.htm -share/doc/pgsql/programmer/spi3064.htm -share/doc/pgsql/programmer/spi3086.htm -share/doc/pgsql/programmer/spi3091.htm -share/doc/pgsql/programmer/terminology.htm -share/doc/pgsql/programmer/triggers.htm -share/doc/pgsql/programmer/triggers1767.htm -share/doc/pgsql/programmer/triggers1824.htm -share/doc/pgsql/programmer/triggers1833.htm -share/doc/pgsql/programmer/xaggr.htm -share/doc/pgsql/programmer/xfunc.htm -share/doc/pgsql/programmer/xfunc511.htm -share/doc/pgsql/programmer/xfunc517.htm -share/doc/pgsql/programmer/xfunc522.htm -share/doc/pgsql/programmer/xfunc754.htm -share/doc/pgsql/programmer/xindex.htm -share/doc/pgsql/programmer/xoper.htm -share/doc/pgsql/programmer/xplang.htm -share/doc/pgsql/programmer/xtypes.htm -share/doc/pgsql/programmer/y2k.htm -share/doc/pgsql/tutorial/about.htm -share/doc/pgsql/tutorial/advanced.htm -share/doc/pgsql/tutorial/advanced1511.htm -share/doc/pgsql/tutorial/advanced1533.htm -share/doc/pgsql/tutorial/arch.htm -share/doc/pgsql/tutorial/biblio.htm -share/doc/pgsql/tutorial/clientserver.gif -share/doc/pgsql/tutorial/copyright.htm -share/doc/pgsql/tutorial/f17.htm -share/doc/pgsql/tutorial/index.html -share/doc/pgsql/tutorial/intro.htm -share/doc/pgsql/tutorial/intro172.htm -share/doc/pgsql/tutorial/intro300.htm -share/doc/pgsql/tutorial/intro56.htm -share/doc/pgsql/tutorial/notation.htm -share/doc/pgsql/tutorial/query.htm -share/doc/pgsql/tutorial/query1340.htm -share/doc/pgsql/tutorial/query1356.htm -share/doc/pgsql/tutorial/query1378.htm -share/doc/pgsql/tutorial/query1387.htm -share/doc/pgsql/tutorial/query1405.htm -share/doc/pgsql/tutorial/query1413.htm -share/doc/pgsql/tutorial/query1432.htm -share/doc/pgsql/tutorial/query1437.htm -share/doc/pgsql/tutorial/query1444.htm -share/doc/pgsql/tutorial/sql-language.htm -share/doc/pgsql/tutorial/sql.htm -share/doc/pgsql/tutorial/sql490.htm -share/doc/pgsql/tutorial/sql608.htm -share/doc/pgsql/tutorial/start.htm -share/doc/pgsql/tutorial/start1216.htm -share/doc/pgsql/tutorial/start1238.htm -share/doc/pgsql/tutorial/terminology.htm -share/doc/pgsql/tutorial/tutorial.htm -share/doc/pgsql/tutorial/tutorial.html -share/doc/pgsql/tutorial/y2k.htm -share/doc/pgsql/user/about.htm -share/doc/pgsql/user/app-createdb.htm -share/doc/pgsql/user/app-createlang.htm -share/doc/pgsql/user/app-createuser.htm -share/doc/pgsql/user/app-dropdb.htm -share/doc/pgsql/user/app-droplang.htm -share/doc/pgsql/user/app-dropuser.htm -share/doc/pgsql/user/app-ecpg.htm -share/doc/pgsql/user/app-initdb.htm -share/doc/pgsql/user/app-initlocation.htm -share/doc/pgsql/user/app-ipcclean.htm -share/doc/pgsql/user/app-pg-passwd.htm -share/doc/pgsql/user/app-pg-upgrade.htm -share/doc/pgsql/user/app-pgaccess.htm -share/doc/pgsql/user/app-pgadmin.htm -share/doc/pgsql/user/app-pgctl.htm -share/doc/pgsql/user/app-pgdump.htm -share/doc/pgsql/user/app-pgdumpall.htm -share/doc/pgsql/user/app-pgtclsh.htm -share/doc/pgsql/user/app-pgtksh.htm -share/doc/pgsql/user/app-postgres.htm -share/doc/pgsql/user/app-postmaster.htm -share/doc/pgsql/user/app-psql.htm -share/doc/pgsql/user/app-vacuumdb.htm -share/doc/pgsql/user/applications.htm -share/doc/pgsql/user/arrays.htm -share/doc/pgsql/user/biblio.htm -share/doc/pgsql/user/c4087.htm -share/doc/pgsql/user/c40874113.htm -share/doc/pgsql/user/c40874340.htm -share/doc/pgsql/user/c4358.htm -share/doc/pgsql/user/c43584371.htm -share/doc/pgsql/user/c4884.htm -share/doc/pgsql/user/c4929.htm -share/doc/pgsql/user/c49294939.htm -share/doc/pgsql/user/c49294943.htm -share/doc/pgsql/user/copyright.htm -share/doc/pgsql/user/datatype.htm -share/doc/pgsql/user/datatype1034.htm -share/doc/pgsql/user/datatype1066.htm -share/doc/pgsql/user/datatype1130.htm -share/doc/pgsql/user/datatype1645.htm -share/doc/pgsql/user/datatype1677.htm -share/doc/pgsql/user/datatype1916.htm -share/doc/pgsql/user/datetime-appendix.htm -share/doc/pgsql/user/datetime-appendix16981.htm -share/doc/pgsql/user/environ.htm -share/doc/pgsql/user/functions.htm -share/doc/pgsql/user/functions2589.htm -share/doc/pgsql/user/functions2729.htm -share/doc/pgsql/user/functions2872.htm -share/doc/pgsql/user/functions2972.htm -share/doc/pgsql/user/functions3439.htm -share/doc/pgsql/user/functions3637.htm -share/doc/pgsql/user/index.html -share/doc/pgsql/user/indices.htm -share/doc/pgsql/user/inherit.htm -share/doc/pgsql/user/intro.htm -share/doc/pgsql/user/intro172.htm -share/doc/pgsql/user/intro300.htm -share/doc/pgsql/user/intro56.htm -share/doc/pgsql/user/manage.htm -share/doc/pgsql/user/manage4810.htm -share/doc/pgsql/user/manage4834.htm -share/doc/pgsql/user/manage4876.htm -share/doc/pgsql/user/mvcc.htm -share/doc/pgsql/user/mvcc4564.htm -share/doc/pgsql/user/mvcc4617.htm -share/doc/pgsql/user/mvcc4629.htm -share/doc/pgsql/user/mvcc4642.htm -share/doc/pgsql/user/mvcc4719.htm -share/doc/pgsql/user/mvcc4740.htm -share/doc/pgsql/user/notation.htm -share/doc/pgsql/user/operators.htm -share/doc/pgsql/user/operators2123.htm -share/doc/pgsql/user/operators2194.htm -share/doc/pgsql/user/operators2263.htm -share/doc/pgsql/user/operators2373.htm -share/doc/pgsql/user/operators2432.htm -share/doc/pgsql/user/operators2486.htm -share/doc/pgsql/user/partial-index.htm -share/doc/pgsql/user/pl-perl.htm -share/doc/pgsql/user/pl-perl4529.htm -share/doc/pgsql/user/pl-perl4538.htm -share/doc/pgsql/user/preface.htm -share/doc/pgsql/user/sql-abort.htm -share/doc/pgsql/user/sql-altergroup.htm -share/doc/pgsql/user/sql-altertable.htm -share/doc/pgsql/user/sql-alteruser.htm -share/doc/pgsql/user/sql-begin.htm -share/doc/pgsql/user/sql-close.htm -share/doc/pgsql/user/sql-cluster.htm -share/doc/pgsql/user/sql-commands.htm -share/doc/pgsql/user/sql-comment.htm -share/doc/pgsql/user/sql-commit.htm -share/doc/pgsql/user/sql-copy.htm -share/doc/pgsql/user/sql-createaggregate.htm -share/doc/pgsql/user/sql-createconstraint.htm -share/doc/pgsql/user/sql-createdatabase.htm -share/doc/pgsql/user/sql-createfunction.htm -share/doc/pgsql/user/sql-creategroup.htm -share/doc/pgsql/user/sql-createindex.htm -share/doc/pgsql/user/sql-createlanguage.htm -share/doc/pgsql/user/sql-createoperator.htm -share/doc/pgsql/user/sql-createrule.htm -share/doc/pgsql/user/sql-createsequence.htm -share/doc/pgsql/user/sql-createtable.htm -share/doc/pgsql/user/sql-createtableas.htm -share/doc/pgsql/user/sql-createtrigger.htm -share/doc/pgsql/user/sql-createtype.htm -share/doc/pgsql/user/sql-createuser.htm -share/doc/pgsql/user/sql-createview.htm -share/doc/pgsql/user/sql-declare.htm -share/doc/pgsql/user/sql-delete.htm -share/doc/pgsql/user/sql-dropaggregate.htm -share/doc/pgsql/user/sql-dropdatabase.htm -share/doc/pgsql/user/sql-dropfunction.htm -share/doc/pgsql/user/sql-dropgroup.htm -share/doc/pgsql/user/sql-dropindex.htm -share/doc/pgsql/user/sql-droplanguage.htm -share/doc/pgsql/user/sql-dropoperator.htm -share/doc/pgsql/user/sql-droprule.htm -share/doc/pgsql/user/sql-dropsequence.htm -share/doc/pgsql/user/sql-droptable.htm -share/doc/pgsql/user/sql-droptrigger.htm -share/doc/pgsql/user/sql-droptype.htm -share/doc/pgsql/user/sql-dropuser.htm -share/doc/pgsql/user/sql-dropview.htm -share/doc/pgsql/user/sql-end.htm -share/doc/pgsql/user/sql-explain.htm -share/doc/pgsql/user/sql-fetch.htm -share/doc/pgsql/user/sql-grant.htm -share/doc/pgsql/user/sql-insert.htm -share/doc/pgsql/user/sql-listen.htm -share/doc/pgsql/user/sql-load.htm -share/doc/pgsql/user/sql-lock.htm -share/doc/pgsql/user/sql-move.htm -share/doc/pgsql/user/sql-notify.htm -share/doc/pgsql/user/sql-reindex.htm -share/doc/pgsql/user/sql-reset.htm -share/doc/pgsql/user/sql-revoke.htm -share/doc/pgsql/user/sql-rollback.htm -share/doc/pgsql/user/sql-select.htm -share/doc/pgsql/user/sql-selectinto.htm -share/doc/pgsql/user/sql-set.htm -share/doc/pgsql/user/sql-show.htm -share/doc/pgsql/user/sql-truncate.htm -share/doc/pgsql/user/sql-unlisten.htm -share/doc/pgsql/user/sql-update.htm -share/doc/pgsql/user/sql-vacuum.htm -share/doc/pgsql/user/storage.htm -share/doc/pgsql/user/syntax.htm -share/doc/pgsql/user/syntax515.htm -share/doc/pgsql/user/syntax521.htm -share/doc/pgsql/user/syntax539.htm -share/doc/pgsql/user/syntax604.htm -share/doc/pgsql/user/syntax649.htm -share/doc/pgsql/user/syntax654.htm -share/doc/pgsql/user/terminology.htm -share/doc/pgsql/user/typeconv.htm -share/doc/pgsql/user/typeconv3755.htm -share/doc/pgsql/user/typeconv3818.htm -share/doc/pgsql/user/typeconv3871.htm -share/doc/pgsql/user/typeconv3891.htm -share/doc/pgsql/user/user.htm -share/doc/pgsql/user/user.html -share/doc/pgsql/user/utilities.htm -share/doc/pgsql/user/y2k.htm -@dirrm share/doc/pgsql/admin -@dirrm share/doc/pgsql/postgres -@dirrm share/doc/pgsql/programmer -@dirrm share/doc/pgsql/tutorial -@dirrm share/doc/pgsql/user -@dirrm share/doc/pgsql diff --git a/databases/postgresql90-server/pkg-plist.jdbc b/databases/postgresql90-server/pkg-plist.jdbc deleted file mode 100644 index bef5d75506b4..000000000000 --- a/databases/postgresql90-server/pkg-plist.jdbc +++ /dev/null @@ -1,13 +0,0 @@ -share/examples/pgsql/jdbc/ImageViewer.java -share/examples/pgsql/jdbc/basic.java -share/examples/pgsql/jdbc/blobtest.java -share/examples/pgsql/jdbc/datestyle.java -share/examples/pgsql/jdbc/metadata.java -share/examples/pgsql/jdbc/psql.java -share/examples/pgsql/jdbc/threadsafe.java -share/examples/pgsql/jdbc/README -share/examples/pgsql/jdbc/README_6.3 -@dirrm share/examples/pgsql/jdbc -@dirrm share/examples/pgsql -share/java/classes/postgresql.jar -@unexec rmdir %D/share/java 2>/dev/null || true diff --git a/databases/postgresql90-server/pkg-plist.tcl b/databases/postgresql90-server/pkg-plist.tcl deleted file mode 100644 index b01eaf1571ed..000000000000 --- a/databases/postgresql90-server/pkg-plist.tcl +++ /dev/null @@ -1,141 +0,0 @@ -pgsql/bin/pgaccess -pgsql/bin/pgtclsh -pgsql/bin/pgtksh -pgsql/include/libpgtcl.h -pgsql/lib/libpgtcl.a -pgsql/lib/libpgtcl.so -pgsql/lib/libpgtcl.so.2 -pgsql/lib/pltcl.so -pgsql/pgaccess/images/icon_button.gif -pgsql/pgaccess/images/icon_checkbutton.gif -pgsql/pgaccess/images/icon_entry.gif -pgsql/pgaccess/images/icon_frame.gif -pgsql/pgaccess/images/icon_label.gif -pgsql/pgaccess/images/icon_listbox.gif -pgsql/pgaccess/images/icon_query.gif -pgsql/pgaccess/images/icon_radiobutton.gif -pgsql/pgaccess/images/icon_text.gif -pgsql/pgaccess/lib/database.tcl -pgsql/pgaccess/lib/forms.tcl -pgsql/pgaccess/lib/functions.tcl -pgsql/pgaccess/lib/help/abort.hlp -pgsql/pgaccess/lib/help/add_records.hlp -pgsql/pgaccess/lib/help/alter_table.hlp -pgsql/pgaccess/lib/help/alter_user.hlp -pgsql/pgaccess/lib/help/author.hlp -pgsql/pgaccess/lib/help/begin.hlp -pgsql/pgaccess/lib/help/close.hlp -pgsql/pgaccess/lib/help/cluster.hlp -pgsql/pgaccess/lib/help/commit.hlp -pgsql/pgaccess/lib/help/copy.hlp -pgsql/pgaccess/lib/help/copyrights.hlp -pgsql/pgaccess/lib/help/create_aggregate.hlp -pgsql/pgaccess/lib/help/create_database.hlp -pgsql/pgaccess/lib/help/create_function.hlp -pgsql/pgaccess/lib/help/create_index.hlp -pgsql/pgaccess/lib/help/create_language.hlp -pgsql/pgaccess/lib/help/create_operator.hlp -pgsql/pgaccess/lib/help/create_rule.hlp -pgsql/pgaccess/lib/help/create_sequence.hlp -pgsql/pgaccess/lib/help/create_table.hlp -pgsql/pgaccess/lib/help/create_table_as.hlp -pgsql/pgaccess/lib/help/create_trigger.hlp -pgsql/pgaccess/lib/help/create_type.hlp -pgsql/pgaccess/lib/help/create_user.hlp -pgsql/pgaccess/lib/help/create_view.hlp -pgsql/pgaccess/lib/help/data_types.hlp -pgsql/pgaccess/lib/help/datefunc.hlp -pgsql/pgaccess/lib/help/declare.hlp -pgsql/pgaccess/lib/help/delete.hlp -pgsql/pgaccess/lib/help/drop_aggregate.hlp -pgsql/pgaccess/lib/help/drop_database.hlp -pgsql/pgaccess/lib/help/drop_function.hlp -pgsql/pgaccess/lib/help/drop_index.hlp -pgsql/pgaccess/lib/help/drop_language.hlp -pgsql/pgaccess/lib/help/drop_operator.hlp -pgsql/pgaccess/lib/help/drop_rule.hlp -pgsql/pgaccess/lib/help/drop_sequence.hlp -pgsql/pgaccess/lib/help/drop_table.hlp -pgsql/pgaccess/lib/help/drop_trigger.hlp -pgsql/pgaccess/lib/help/drop_type.hlp -pgsql/pgaccess/lib/help/drop_user.hlp -pgsql/pgaccess/lib/help/drop_view.hlp -pgsql/pgaccess/lib/help/explain.hlp -pgsql/pgaccess/lib/help/fetch.hlp -pgsql/pgaccess/lib/help/form_design.hlp -pgsql/pgaccess/lib/help/forms.hlp -pgsql/pgaccess/lib/help/functions.hlp -pgsql/pgaccess/lib/help/geomfunc.hlp -pgsql/pgaccess/lib/help/grant.hlp -pgsql/pgaccess/lib/help/history.hlp -pgsql/pgaccess/lib/help/index.hlp -pgsql/pgaccess/lib/help/inheritance.hlp -pgsql/pgaccess/lib/help/insert.hlp -pgsql/pgaccess/lib/help/ipv4func.hlp -pgsql/pgaccess/lib/help/isolation.hlp -pgsql/pgaccess/lib/help/keywords.hlp -pgsql/pgaccess/lib/help/listen.hlp -pgsql/pgaccess/lib/help/load.hlp -pgsql/pgaccess/lib/help/lock.hlp -pgsql/pgaccess/lib/help/mathfunc.hlp -pgsql/pgaccess/lib/help/move.hlp -pgsql/pgaccess/lib/help/mvcc.hlp -pgsql/pgaccess/lib/help/new_query.hlp -pgsql/pgaccess/lib/help/new_table.hlp -pgsql/pgaccess/lib/help/notify.hlp -pgsql/pgaccess/lib/help/open_query.hlp -pgsql/pgaccess/lib/help/open_table.hlp -pgsql/pgaccess/lib/help/pgfunctions.hlp -pgsql/pgaccess/lib/help/postgresql.hlp -pgsql/pgaccess/lib/help/queries.hlp -pgsql/pgaccess/lib/help/reports.hlp -pgsql/pgaccess/lib/help/reset.hlp -pgsql/pgaccess/lib/help/revoke.hlp -pgsql/pgaccess/lib/help/rollback.hlp -pgsql/pgaccess/lib/help/schema.hlp -pgsql/pgaccess/lib/help/scripts.hlp -pgsql/pgaccess/lib/help/select.hlp -pgsql/pgaccess/lib/help/select_into.hlp -pgsql/pgaccess/lib/help/sequences.hlp -pgsql/pgaccess/lib/help/set.hlp -pgsql/pgaccess/lib/help/show.hlp -pgsql/pgaccess/lib/help/sql_guide.hlp -pgsql/pgaccess/lib/help/sqlfunc.hlp -pgsql/pgaccess/lib/help/stringfunc.hlp -pgsql/pgaccess/lib/help/tables.hlp -pgsql/pgaccess/lib/help/unlisten.hlp -pgsql/pgaccess/lib/help/update.hlp -pgsql/pgaccess/lib/help/users.hlp -pgsql/pgaccess/lib/help/vacuum.hlp -pgsql/pgaccess/lib/help/view_table_structure.hlp -pgsql/pgaccess/lib/help/views.hlp -pgsql/pgaccess/lib/help/visual_designer.hlp -pgsql/pgaccess/lib/help/y2k.hlp -pgsql/pgaccess/lib/help.tcl -pgsql/pgaccess/lib/languages/czech -pgsql/pgaccess/lib/languages/deutsch -pgsql/pgaccess/lib/languages/francais -pgsql/pgaccess/lib/languages/italiano -pgsql/pgaccess/lib/languages/magyar -pgsql/pgaccess/lib/languages/portugues -pgsql/pgaccess/lib/languages/romana -pgsql/pgaccess/lib/languages/russian.koi8r -pgsql/pgaccess/lib/languages/russian_win -pgsql/pgaccess/lib/languages/spanish -pgsql/pgaccess/lib/mainlib.tcl -pgsql/pgaccess/lib/preferences.tcl -pgsql/pgaccess/lib/queries.tcl -pgsql/pgaccess/lib/reports.tcl -pgsql/pgaccess/lib/schema.tcl -pgsql/pgaccess/lib/scripts.tcl -pgsql/pgaccess/lib/sequences.tcl -pgsql/pgaccess/lib/tables.tcl -pgsql/pgaccess/lib/users.tcl -pgsql/pgaccess/lib/views.tcl -pgsql/pgaccess/lib/visualqb.tcl -pgsql/pgaccess/main.tcl -@dirrm pgsql/pgaccess/images -@dirrm pgsql/pgaccess/lib/help -@dirrm pgsql/pgaccess/lib/languages -@dirrm pgsql/pgaccess/lib -@dirrm pgsql/pgaccess diff --git a/databases/postgresql90-server/scripts/configure b/databases/postgresql90-server/scripts/configure deleted file mode 100644 index 4a92ee450ebe..000000000000 --- a/databases/postgresql90-server/scripts/configure +++ /dev/null @@ -1,7 +0,0 @@ -#! /bin/sh - -# $FreeBSD$ - -cd $WRKSRC || exit 1 - -perl -pi -e "s=!!JAVA_HOME!!=${JAVA_HOME}=; s=!!PREFIX!!=${PREFIX}=" ${WRKSRC}/interfaces/jdbc/Makefile diff --git a/databases/postgresql90-server/scripts/createuser b/databases/postgresql90-server/scripts/createuser deleted file mode 100644 index 2abe201e7a4b..000000000000 --- a/databases/postgresql90-server/scripts/createuser +++ /dev/null @@ -1,50 +0,0 @@ -#!/usr/bin/perl -# - -eval '(exit $?0)' && eval 'exec /usr/bin/perl -S $0 ${1+"$@"}' -& eval 'exec /usr/bin/perl -S $0 $argv:q' -if 0; - -if( $> ) { - print "\nYou must be root to run this step!\n\n"; - exit 1; -} - -if( getpwnam( "pgsql" ) ) { - ( $null, $null, $pgUID ) = getpwnam( "pgsql" ); -} else { - $pgUID = 70; - while( getpwuid( $pgUID ) ) { - $pgUID++; - } -} - -if( getgrnam( "pgsql" ) ) { - ( $null, $null, $pgGID ) = getgrnam( "pgsql" ); -} else { - $pgGID = 70; - while( getgrgid( $pgGID ) ) { - $pgGID++; - } - &append_file( "/etc/group", "pgsql:*:$pgGID:" ); -} - -print "pgsql user using uid $pgUID\n"; -print "pgsql user using gid $pgGID\n"; - -system( "/usr/bin/chpass -a \"pgsql:*:$pgUID:$pgGID\:\:0:0:PostgreSQL pseudo-user:$ENV{'PREFIX'}/pgsql:/bin/sh\"" ); - -sub append_file { - local($file,@list) = @_; - local($LOCK_EX) = 2; - local($LOCK_NB) = 4; - local($LOCK_UN) = 8; - - open(F, ">> $file") || die "$file: $!\n"; - while( ! flock( F, $LOCK_EX | $LOCK_NB ) ) { - exit 1; - } - print F join( "\n", @list) . "\n"; - close F; - flock( F, $LOCK_UN ); -} diff --git a/databases/postgresql91-server/Makefile b/databases/postgresql91-server/Makefile deleted file mode 100644 index 94aa22cad135..000000000000 --- a/databases/postgresql91-server/Makefile +++ /dev/null @@ -1,259 +0,0 @@ -# New ports collection makefile for: PostgreSQL -# Date created: November 13, 1998 -# Whom: Marc G. Fournier <scrappy@FreeBSD.org> -# -# $FreeBSD$ -# - -PORTNAME= postgresql -PORTVERSION= 7.0.2 -CATEGORIES= databases -MASTER_SITES= ftp://ftp.postgresql.org/pub/%SUBDIR%/ \ - ftp://ftp.de.postgresql.org/%SUBDIR%/ \ - ftp://ftp.iodynamics.com/pub/mirror/postgresql/%SUBDIR%/ \ - ftp://ftp.digex.net/pub/packages/database/postgresql/%SUBDIR%/ \ - ftp://ftp.sunet.se/pub/unix/databases/relational/postgresql/%SUBDIR%/ -MASTER_SITE_SUBDIR= source/v${PORTVERSION} -DISTFILES= ${PORTNAME}-${PORTVERSION}.base${EXTRACT_SUFX} \ - ${PORTNAME}-${PORTVERSION}.support${EXTRACT_SUFX} \ - ${PORTNAME}-${PORTVERSION}.docs${EXTRACT_SUFX} -# ${PORTNAME}-${PORTVERSION}.test${EXTRACT_SUFX} -DIST_SUBDIR= postgresql - -MAINTAINER= andreas@FreeBSD.org - -.if ${MACHINE_ARCH} == "alpha" -BROKEN= doesn\'t build on the alpha yet -.endif - -Y2K= http://www.postgresql.org/y2k.html - -INSTALLS_SHLIB= YES -LDCONFIG_DIRS= %%PREFIX%%/pgsql/lib - -# if you want to use the tcl/tk frontend pgaccess, then you need to build -# postgresql with tcl support by typing: make -DWITH_TCL -.if defined(WITH_TCL) -TCL_INCDIR= ${LOCALBASE}/include/tcl8.3 -TK_INCDIR= ${LOCALBASE}/include/tk8.3 -MAKE_ENV= TCL_INCDIR=${TCL_INCDIR} -CONFIGURE_ENV= WISH=${LOCALBASE}/bin/wish8.3 -LIB_DEPENDS= tcl83.1:${PORTSDIR}/lang/tcl83 \ - tk83.1:${PORTSDIR}/x11-toolkits/tk83 -CONFIGURE_TCL= --with-tcl --with-tclconfig="${LOCALBASE}/lib/tcl8.3 ${LOCALBASE}/lib/tk8.3" -.endif - -# if you want to disable the multibyte support, type: -# make -DWITHOUT_MULTIBYTE -# -# if you want to set the default encoding for the multibyte support, type: -# make DEFAULT_ENCODING=<encoding> -# where <encoding> is one of these: -# SQL_ASCII LATIN1 LATIN2 LATIN3 LATIN4 LATIN5 -# EUC_JP EUC_CN EUC_KR EUC_TW KOI8 -# UNICODE MULE_INTERNAL WIN ALT -.if defined(WITHOUT_MULTIBYTE) -CONFIGURE_MULTIBYTE= # none -.elif defined(DEFAULT_ENCODING) -CONFIGURE_MULTIBYTE= --enable-multibyte="${DEFAULT_ENCODING}" -.else -CONFIGURE_MULTIBYTE= --enable-multibyte -.endif - -# if you want jdbc, type make -DWITH_JDBC -# Honors JAVA_HOME if you have it set, and don't want the dependency. -.if defined(WITH_JDBC) -JAVA_HOME?= ${LOCALBASE}/jdk1.1.8 -BUILD_DEPENDS= ${JAVA_HOME}/bin/javac:${PORTSDIR}/java/jdk -SCRIPTS_ENV+= JAVA_HOME=${JAVA_HOME} -.endif - -WRKSRC= ${WRKDIR}/${DISTNAME}/src -DOCDIR= ${WRKDIR}/${DISTNAME}/doc - -USE_GMAKE= YES -MAKEFILE= GNUmakefile -HAS_CONFIGURE= YES -CONFIGURE_ARGS= --prefix=${PREFIX}/pgsql \ - --enable-locale \ - --with-template=`uname -s | ${TR} '[A-Z]' '[a-z]'` \ - --with-includes="${PREFIX}/include ${TCL_INCDIR} ${TK_INCDIR}" \ - ${CONFIGURE_TCL} \ - ${CONFIGURE_MULTIBYTE} \ - --with-libraries=${PREFIX}/lib - -MAN1= createdb.1 createlang.1 createuser.1 dropdb.1 droplang.1 \ - dropuser.1 ecpg.1 initdb.1 initlocation.1 ipcclean.1 pg_ctl.1 \ - pg_dump.1 pg_dumpall.1 pg_passwd.1 pg_upgrade.1 pgaccess.1 \ - pgadmin.1 pgtclsh.1 pgtksh.1 postgres.1 postmaster.1 psql.1 \ - vacuumdb.1 -MANL= abort.l alter_group.l alter_table.l alter_user.l \ - begin.l close.l cluster.l comment.l commit.l copy.l \ - create_aggregate.l create_constraint_trigger.l \ - create_database.l create_function.l create_group.l \ - create_index.l create_language.l create_operator.l \ - create_rule.l create_sequence.l create_table.l \ - create_table_as.l create_trigger.l create_type.l \ - create_user.l create_view.l declare.l delete.l \ - drop_aggregate.l drop_database.l drop_function.l \ - drop_group.l drop_index.l drop_language.l \ - drop_operator.l drop_rule.l drop_sequence.l \ - drop_table.l drop_trigger.l drop_type.l drop_user.l \ - drop_view.l end.l explain.l fetch.l grant.l insert.l \ - listen.l load.l lock.l move.l notify.l reindex.l \ - reset.l revoke.l rollback.l select.l select_into.l \ - set.l show.l truncate.l unlisten.l update.l vacuum.l - -MANPREFIX= ${PREFIX}/pgsql - -pre-fetch: - @${ECHO_MSG} "To install and run postgresql you need to compile kernel with:" - @${ECHO_MSG} " options \"SYSVSHM, SYSVSEM, SYSVMSG\"" -.if !defined(WITH_TCL) - @${ECHO_MSG} "To build the \"PostgreSQL to Tcl interface library\", libpgtcl, type:" - @${ECHO_MSG} " make -DWITH_TCL" -.else - @${ECHO_MSG} "Building PostgreSQL with \"libpgtcl\"." -.endif -.if !defined(WITHOUT_MULTIBYTE) - @${ECHO_MSG} "To disable multibyte support, type:" - @${ECHO_MSG} " make -DWITHOUT_MULTIBYTE" -.if !defined(DEFAULT_ENCODING) - @${ECHO_MSG} "To set the default encoding for the multibyte support, type:" - @${ECHO_MSG} " make DEFAULT_ENCODING=<encoding>" - @${ECHO_MSG} "where <encoding> is one of these:" - @${ECHO_MSG} " SQL_ASCII LATIN1 LATIN2 LATIN3 LATIN4 LATIN5" - @${ECHO_MSG} " EUC_JP EUC_CN EUC_KR EUC_TW KOI8" - @${ECHO_MSG} " UNICODE MULE_INTERNAL WIN ALT" -.else - @${ECHO_MSG} "The default encoding is '${DEFAULT_ENCODING}'." -.endif -.else - @${ECHO_MSG} "Building PostgreSQL without multibyte support." -.endif -.if !defined(WITH_JDBC) - @${ECHO_MSG} "To build Java (JDBC) support, type:" - @${ECHO_MSG} " make -DWITH_JDBC" -.else - @${ECHO_MSG} "Building PostgreSQL with \"postgresql.jar\"." -.endif - -post-patch: - @ ${MV} ${WRKSRC}/template/freebsd ${WRKSRC}/template/freebsd.orig - @ ${SED} -e 's#CFLAGS:-O2 -m486 -pipe#CFLAGS:${CFLAGS}#' \ - -e 's#USE_LOCALE:no#USE_LOCALE:yes#' \ - ${WRKSRC}/template/freebsd.orig >> ${WRKSRC}/template/freebsd - @ ${MV} ${WRKSRC}/Makefile.global.in ${WRKSRC}/Makefile.global.in.old - @ ${SED} -e 's=!!PREFIX!!=${PREFIX}=g' \ - ${WRKSRC}/Makefile.global.in.old \ - >> ${WRKSRC}/Makefile.global.in - -post-build: -.if defined(WITH_JDBC) - @ cd ${WRKSRC}/interfaces/jdbc && ${GMAKE} -.if !defined(NOPORTDOCS) - @ cd ${WRKSRC}/interfaces/jdbc && ${GMAKE} examples -.endif -.endif - @ ${ECHO} "------------------------------------------------------------" - @ ${ECHO} "Dump existing databases, before installing new db version !!" - @ ${ECHO} "Detailed instructions, see" - @ ${ECHO} "${WRKDIR}/${DISTNAME}/INSTALL" - @ ${ECHO} "------------------------------------------------------------" - -pre-install: -.if defined(PACKAGE_BUILDING) - ${RM} -rf ${PREFIX}/pgsql -.endif - @ ${MKDIR} ${PREFIX}/pgsql - @ ${SETENV} ${MAKE_ENV} perl ${SCRIPTDIR}/createuser - -post-install: -.if defined(NOPORTDOCS) - @ ( cd ${DOCDIR}; ${GMAKE} man ) -.else - @ ( cd ${DOCDIR}; ${GMAKE} install ) -.endif - @ if [ ! -f ${PREFIX}/pgsql/.profile ]; then \ - ${ECHO} "PATH=${PATH}:${PREFIX}/pgsql/bin" \ - > ${PREFIX}/pgsql/.profile; \ - ${ECHO} "MANPATH=${MANPATH}:${PREFIX}/pgsql/man" \ - >> ${PREFIX}/pgsql/.profile; \ - ${ECHO} "PGLIB=${PREFIX}/pgsql/lib" \ - >> ${PREFIX}/pgsql/.profile; \ - ${ECHO} "# note: PGDATA overwrites the -D startup option" \ - >> ${PREFIX}/pgsql/.profile; \ - ${ECHO} "PGDATA=${PREFIX}/pgsql/data" \ - >> ${PREFIX}/pgsql/.profile; \ - ${ECHO} "DISPLAY=:0" \ - >> ${PREFIX}/pgsql/.profile; \ - ${ECHO} "export PATH MANPATH PGLIB PGDATA DISPLAY" \ - >> ${PREFIX}/pgsql/.profile; \ - ${ECHO} "# if you want to make regression tests use this TZ" \ - >> ${PREFIX}/pgsql/.profile; \ - ${ECHO} "#TZ=PST8PDT" \ - >> ${PREFIX}/pgsql/.profile; \ - ${ECHO} "#export TZ" \ - >> ${PREFIX}/pgsql/.profile; \ - fi - @ ${CHOWN} -R pgsql:pgsql ${PREFIX}/pgsql - @ ${ECHO} 'Initializing PostgreSQL Databases - this may take a few minutes...' - @ ${SETENV} OBJFORMAT=${PORTOBJFORMAT} ${LDCONFIG} -m ${PREFIX}/pgsql/lib - @ su -l pgsql -c 'PATH=${PREFIX}/pgsql/bin:${PATH} LD_LIBRARY_PATH=${PREFIX}/pgsql/lib ${PREFIX}/pgsql/bin/initdb --pglib=${PREFIX}/pgsql/lib --pgdata=${PREFIX}/pgsql/data' - @ ${SED} -e "s=!!PREFIX!!=${PREFIX}=g" < ${FILESDIR}/pgsql.sh.tmpl \ - > ${PREFIX}/etc/rc.d/pgsql.sh - @ ${CHMOD} 554 ${PREFIX}/etc/rc.d/pgsql.sh - @ ${CHOWN} root.pgsql ${PREFIX}/etc/rc.d/pgsql.sh - @ ${INSTALL_DATA} ${FILESDIR}/post-install-notes ${PREFIX}/pgsql -.if defined(WITHOUT_MULTIBYTE) - @${CP} ${TMPPLIST} ${TMPPLIST}.nomulti - @${GREP} -v pgsql/bin/pg_encoding ${TMPPLIST}.nomulti > ${TMPPLIST} -.endif -.if defined(WITH_TCL) - @${CP} ${TMPPLIST} ${TMPPLIST}.notcl - @${CAT} ${PKGDIR}/PLIST.tcl ${TMPPLIST}.notcl > ${TMPPLIST} - @${RM} ${TMPPLIST}.notcl -.endif -.if defined(WITH_JDBC) - @ ${MKDIR} -m 0555 ${PREFIX}/share/java/classes - @ ${INSTALL_DATA} ${WRKSRC}/interfaces/jdbc/postgresql.jar \ - ${PREFIX}/share/java/classes/postgresql.jar - @ ${ECHO_MSG} "---------------------------------------------------------" - @ ${ECHO_MSG} "Putting postgresql.jar in" - @ ${ECHO_MSG} "${PREFIX}/share/java/classes/postgresql.jar" - @ ${ECHO_MSG} "Add this to your CLASSPATH!" - @ ${ECHO_MSG} "ALSO NOTE: path inside jar file modified from 6.5.x:" - @ ${ECHO_MSG} " 'postgresql.*' -> 'org.postgresql.*'!" - @ ${ECHO_MSG} "You will need to modify you applications' props files." - @ ${ECHO_MSG} "---------------------------------------------------------" - @ ${CAT} ${PKGDIR}/PLIST.jdbc >> ${TMPPLIST} -.if !defined(NOPORTDOCS) - @ ${MKDIR} -m 0555 ${PREFIX}/share/examples/pgsql/jdbc - @ ${INSTALL_DATA} ${WRKSRC}/interfaces/jdbc/example/*java \ - ${PREFIX}/share/examples/pgsql/jdbc - @ ${INSTALL_DATA} ${WRKSRC}/interfaces/jdbc/README* \ - ${PREFIX}/share/examples/pgsql/jdbc - @ ${ECHO_MSG} "---------------------------------------------------------" - @ ${ECHO_MSG} "Putting jdbc examples into ${PREFIX}/share/examples/pgsql" - @ ${ECHO_MSG} "---------------------------------------------------------" - @ ${CAT} ${PKGDIR}/PLIST.doc >> ${TMPPLIST} -.endif -.endif -.if !defined(NOPORTDOCS) - ${MKDIR} ${PREFIX}/share/doc/pgsql - @ ${GMAKE} -C ${WRKDIR}/${DISTNAME}/doc install - ${INSTALL_MAN} ${WRKDIR}/${DISTNAME}/doc/FAQ* ${PREFIX}/share/doc/pgsql - ${INSTALL_MAN} ${WRKDIR}/${DISTNAME}/doc/README* ${PREFIX}/share/doc/pgsql - ${INSTALL_MAN} ${WRKDIR}/${DISTNAME}/doc/TODO ${PREFIX}/share/doc/pgsql -# ${INSTALL_MAN} ${WRKDIR}/${DISTNAME}/doc/*ps.gz ${PREFIX}/share/doc/pgsql -.endif -.if !defined(BATCH) - @ more -e ${FILESDIR}/post-install-notes -.endif -.if !defined(DEBUG_FLAGS) -.for file in ecpg pg_dump pg_id pg_passwd pg_version postgres psql - @ strip ${PREFIX}/pgsql/bin/${file} -.endfor -.endif - -.include <bsd.port.mk> diff --git a/databases/postgresql91-server/distinfo b/databases/postgresql91-server/distinfo deleted file mode 100644 index 309ea1e11614..000000000000 --- a/databases/postgresql91-server/distinfo +++ /dev/null @@ -1,4 +0,0 @@ -MD5 (postgresql/postgresql-7.0.2.base.tar.gz) = 871d23b85d9a3599a7ed75dfc7da7ba7 -MD5 (postgresql/postgresql-7.0.2.support.tar.gz) = c21180a6485d85785c8e69f0cbff05dd -MD5 (postgresql/postgresql-7.0.2.docs.tar.gz) = efac1f87463f252e54d72b256885b883 -MD5 (postgresql/postgresql-7.0.2.test.tar.gz) = 3443b3d83194c396f20aee2adc6f93bf diff --git a/databases/postgresql91-server/files/patch-aj b/databases/postgresql91-server/files/patch-aj deleted file mode 100644 index 4231fc94ede9..000000000000 --- a/databases/postgresql91-server/files/patch-aj +++ /dev/null @@ -1,67 +0,0 @@ ---- bin/pg_passwd/pg_passwd.c.orig Mon Apr 17 05:45:18 2000 -+++ bin/pg_passwd/pg_passwd.c Sat May 20 17:54:59 2000 -@@ -18,11 +18,15 @@ - - #endif - -+#ifndef _POSIX_SOURCE -+# define _PASSWORD_LEN 128 /* max length, not containing NULL */ -+#endif -+ - char *comname; - static void usage(FILE *stream); - static void read_pwd_file(char *filename); - static void write_pwd_file(char *filename, char *bkname); --static void encrypt_pwd(char key[9], char salt[3], char passwd[14]); -+static void encrypt_pwd(char key[9], char salt[3], char passwd[_PASSWORD_LEN+1]); - static void prompt_for_username(char *username); - static void prompt_for_password(char *prompt, char *password); - -@@ -150,7 +154,7 @@ - - if (q != NULL) - *(q++) = '\0'; -- if (strlen(p) != 13) -+ if (strlen(p) > _PASSWORD_LEN) - { - fprintf(stderr, "WARNING: %s: line %d: illegal password length.\n", - filename, npwds + 1); -@@ -214,7 +218,7 @@ - } - - static void --encrypt_pwd(char key[9], char salt[3], char passwd[14]) -+encrypt_pwd(char key[9], char salt[3], char passwd[_PASSWORD_LEN+1]) - { - int n; - -@@ -246,9 +250,9 @@ - - #ifdef NOT_USED - static int --check_pwd(char key[9], char passwd[14]) -+check_pwd(char key[9], char passwd[_PASSWORD_LEN+1]) - { -- char shouldbe[14]; -+ char shouldbe[_PASSWORD_LEN+1]; - char salt[3]; - - salt[0] = passwd[0]; -@@ -256,7 +260,7 @@ - salt[2] = '\0'; - encrypt_pwd(key, salt, shouldbe); - -- return strncmp(shouldbe, passwd, 13) == 0 ? 1 : 0; -+ return strncmp(shouldbe, passwd, _PASSWORD_LEN) == 0 ? 1 : 0; - } - - #endif -@@ -332,7 +336,7 @@ - char salt[3]; - char key[9], - key2[9]; -- char e_passwd[14]; -+ char e_passwd[_PASSWORD_LEN+1]; - int i; - - comname = argv[0]; diff --git a/databases/postgresql91-server/files/patch-ar b/databases/postgresql91-server/files/patch-ar deleted file mode 100644 index c5c8096fc141..000000000000 --- a/databases/postgresql91-server/files/patch-ar +++ /dev/null @@ -1,11 +0,0 @@ ---- configure.orig Sun Oct 10 14:37:07 1999 -+++ configure Sun Oct 10 14:37:29 1999 -@@ -1429,7 +1429,7 @@ - ELF_SYS=true - else - rm -rf conftest* -- if test "X$elf" = "Xyes" -+ if test "X$PORTOBJFORMAT" = "Xelf" - then - ELF_SYS=true - else diff --git a/databases/postgresql91-server/files/patch-as b/databases/postgresql91-server/files/patch-as deleted file mode 100644 index 3282168c4aed..000000000000 --- a/databases/postgresql91-server/files/patch-as +++ /dev/null @@ -1,11 +0,0 @@ ---- Makefile.global.in.orig Sun Dec 6 00:08:56 1998 -+++ Makefile.global.in Sat Feb 27 04:23:12 1999 -@@ -79,7 +79,7 @@ - POSTMANDIR= $(POSTGRESDIR)/man - - # Where the formatted documents (e.g., the reference manual) get installed. --POSTDOCDIR= $(POSTGRESDIR)/doc -+POSTDOCDIR= !!PREFIX!!/share/doc/pgsql - - # Where the header files necessary to build frontend programs get installed. - HEADERDIR= $(POSTGRESDIR)/include diff --git a/databases/postgresql91-server/files/patch-at b/databases/postgresql91-server/files/patch-at deleted file mode 100644 index 93e68a708211..000000000000 --- a/databases/postgresql91-server/files/patch-at +++ /dev/null @@ -1,11 +0,0 @@ ---- ../doc/Makefile.orig Sun Nov 29 06:30:13 1998 -+++ ../doc/Makefile Mon Jun 21 17:00:13 1999 -@@ -12,7 +12,7 @@ - # - #---------------------------------------------------------------------------- - --PGDOCS= $(POSTGRESDIR)/doc -+PGDOCS= $(POSTDOCDIR) - SRCDIR= ../src - - TAR= tar diff --git a/databases/postgresql91-server/files/patch-ba b/databases/postgresql91-server/files/patch-ba deleted file mode 100644 index a3b679b882c5..000000000000 --- a/databases/postgresql91-server/files/patch-ba +++ /dev/null @@ -1,25 +0,0 @@ ---- interfaces/jdbc/Makefile.orig Tue Mar 14 16:55:17 2000 -+++ interfaces/jdbc/Makefile Sun Apr 16 21:16:43 2000 -@@ -10,10 +10,10 @@ - - FIND = find - IDL2JAVA = idltojava -fno-cpp -fno-tie --JAR = jar --JAVA = java --JAVAC = javac -g --JAVADOC = javadoc -+JAR = !!JAVA_HOME!!/bin/jar -+JAVA = !!JAVA_HOME!!/bin/java -+JAVAC = !!JAVA_HOME!!/bin/javac -+JAVADOC = !!JAVA_HOME!!/bin/javadoc - RM = rm -f - TOUCH = touch - -@@ -40,6 +40,7 @@ - @echo To compile, type: - @echo " $(MAKE) jdbc2" - @echo ------------------------------------------------------------ -+ $(MAKE) jdbc1 - - msg: - @echo ------------------------------------------------------------ diff --git a/databases/postgresql91-server/files/patch-bb b/databases/postgresql91-server/files/patch-bb deleted file mode 100644 index ea0f1732dcb0..000000000000 --- a/databases/postgresql91-server/files/patch-bb +++ /dev/null @@ -1,13 +0,0 @@ ---- pl/tcl/Makefile~ Sat Apr 29 19:45:42 2000 -+++ pl/tcl/Makefile Sat May 20 22:42:22 2000 -@@ -71,7 +71,9 @@ - CFLAGS+= $(TCL_SHLIB_CFLAGS) $(TCL_DEFS) - - CFLAGS+= -I$(SRCDIR)/include -I$(SRCDIR)/backend $(PGSQL_INCLUDES) -- -+ -+CFLAGS+= -I$(TCL_INCDIR) -+ - # - # Uncomment the following to enable the unknown command lookup - # on the first of all calls to the call handler. See the doc diff --git a/databases/postgresql91-server/files/patch-bc b/databases/postgresql91-server/files/patch-bc deleted file mode 100644 index ff747fb84a2f..000000000000 --- a/databases/postgresql91-server/files/patch-bc +++ /dev/null @@ -1,5 +0,0 @@ ---- bin/pg_ctl/postmaster.opts.default.sample~ Mon Apr 17 05:45:17 2000 -+++ bin/pg_ctl/postmaster.opts.default.sample Tue May 23 02:46:30 2000 -@@ -1 +1 @@ -- -+-i -o "-F" diff --git a/databases/postgresql91-server/files/pgsql.sh.tmpl b/databases/postgresql91-server/files/pgsql.sh.tmpl deleted file mode 100644 index e1673b4850c2..000000000000 --- a/databases/postgresql91-server/files/pgsql.sh.tmpl +++ /dev/null @@ -1,34 +0,0 @@ -#!/bin/sh - -# $FreeBSD$ -# -# For postmaster startup options, edit $PGDATA/postmaster.opts.default -# Preinstalled options are -i -o "-F" - -case $1 in -start) - [ -d !!PREFIX!!/pgsql/lib ] && /sbin/ldconfig -m !!PREFIX!!/pgsql/lib - [ -x !!PREFIX!!/pgsql/bin/pg_ctl ] && { - su -l pgsql -c \ - 'exec !!PREFIX!!/pgsql/bin/pg_ctl -w start > !!PREFIX!!/pgsql/errlog 2>&1' - echo -n ' pgsql' - } - ;; - -stop) - [ -x !!PREFIX!!/pgsql/bin/pg_ctl ] && { - su -l pgsql -c 'exec !!PREFIX!!/pgsql/bin/pg_ctl -w -m fast stop' - } - ;; - -status) - [ -x !!PREFIX!!/pgsql/bin/pg_ctl ] && { - su -l pgsql -c 'exec !!PREFIX!!/pgsql/bin/pg_ctl status' - } - ;; - -*) - echo "usage: `basename $0` {start|stop|status}" >&2 - exit 64 - ;; -esac diff --git a/databases/postgresql91-server/files/post-install-notes b/databases/postgresql91-server/files/post-install-notes deleted file mode 100644 index 289a7651109a..000000000000 --- a/databases/postgresql91-server/files/post-install-notes +++ /dev/null @@ -1,16 +0,0 @@ - -Now that PostgreSQL is installed, you should read the documentation and -implementation guides. These can be found at: - - http://www.PostgreSQL.org/docs - -You may wish to subscribe to the PostgreSQL user-support mailing list. -Send an e-mail to pgsql-questions-request@postgresql.org with the -text "subscribe" in the message body. - -If you built PostgreSQL with TCL support, you can install the port -"pgaccess" to get a TCL/TK based database frontend for database -operations. - -To start PostgreSQL, run the startup script: -$PREFIX/etc/rc.d/pgsql.sh start diff --git a/databases/postgresql91-server/pkg-comment b/databases/postgresql91-server/pkg-comment deleted file mode 100644 index 2125016b133c..000000000000 --- a/databases/postgresql91-server/pkg-comment +++ /dev/null @@ -1 +0,0 @@ -A robust, next generation, object-relational DBMS diff --git a/databases/postgresql91-server/pkg-descr b/databases/postgresql91-server/pkg-descr deleted file mode 100644 index f48a33337e55..000000000000 --- a/databases/postgresql91-server/pkg-descr +++ /dev/null @@ -1,24 +0,0 @@ -PostgreSQL is a robust, next-generation, Object-Relational DBMS (ORDBMS), -derived from the Berkeley Postgres database management system. While -PostgreSQL retains the powerful object-relational data model, rich data types -and easy extensibility of Postgres, it replaces the PostQuel query language -with an extended subset of SQL. - -The original Postgres code was the effort of many graduate students, -undergraduate students, and staff programmers working under the direction of -Professor Michael Stonebraker at the University of California, Berkeley. In -1995, Andrew Yu and Jolly Chen took on the task of converting the DBMS query -language to SQL and created a new database system which came to known as -Postgres95. Many others contributed to the porting, testing, debugging and -enhancement of the Postgres95 code. As the code improved, and 1995 faded into -memory, PostgreSQL was born. - -PostgreSQL development is presently being performed by a team of Internet -developers who are now responsible for all current and future development. The -development team coordinator is Marc G. Fournier (scrappy@PostgreSQL.ORG). -Support is available from the PostgreSQL developer/user community through the -support mailing list (questions@PostgreSQL.ORG). - -PostgreSQL is free and the complete source is available. - -WWW: http://www.postgresql.org diff --git a/databases/postgresql91-server/pkg-install b/databases/postgresql91-server/pkg-install deleted file mode 100644 index 7f3a090fe4b6..000000000000 --- a/databases/postgresql91-server/pkg-install +++ /dev/null @@ -1,44 +0,0 @@ -#! /bin/sh - -# $FreeBSD$ - -PATH=/bin:/usr/sbin - -if [ -z "${DB_DIR}" ]; then - DB_DIR=${PKG_PREFIX}/pgsql/data -fi - -case $2 in -POST-INSTALL) - USER=pgsql - GROUP=${USER} - UID=89 - GID=${UID} - - if pw group show "${GROUP}" 2>/dev/null; then - echo "You already have a group \"${GROUP}\", so I will use it." - else - if pw groupadd ${GROUP} -g ${GID}; then - echo "Added group \"${GROUP}\"." - else - echo "Adding group \"${GROUP}\" failed..." - exit 1 - fi - fi - - if pw user show "${USER}" 2>/dev/null; then - echo "You already have a user \"${USER}\", so I will use it." - else - if pw useradd ${USER} -u ${UID} -g ${GROUP} -h - \ - -d ${DB_DIR} -s /sbin/nologin -c "PostgreSQL Daemon" - then - echo "Added user \"${USER}\"." - else - echo "Adding user \"${USER}\" failed..." - exit 1 - fi - fi - - chown -R ${USER}.${GROUP} ${DB_DIR} - ;; -esac diff --git a/databases/postgresql91-server/pkg-plist b/databases/postgresql91-server/pkg-plist deleted file mode 100644 index 9992da1174ae..000000000000 --- a/databases/postgresql91-server/pkg-plist +++ /dev/null @@ -1,168 +0,0 @@ -etc/rc.d/pgsql.sh -pgsql/.profile -pgsql/bin/createdb -pgsql/bin/createlang -pgsql/bin/createuser -pgsql/bin/dropdb -pgsql/bin/droplang -pgsql/bin/dropuser -pgsql/bin/ecpg -pgsql/bin/initdb -pgsql/bin/initlocation -pgsql/bin/ipcclean -pgsql/bin/pg_ctl -pgsql/bin/pg_dump -pgsql/bin/pg_dumpall -pgsql/bin/pg_encoding -pgsql/bin/pg_id -pgsql/bin/pg_passwd -pgsql/bin/pg_upgrade -pgsql/bin/pg_version -pgsql/bin/postgres -pgsql/bin/postmaster -pgsql/bin/psql -pgsql/bin/vacuumdb -pgsql/data/PG_VERSION -pgsql/data/base/template1/PG_VERSION -pgsql/data/base/template1/pg_aggregate -pgsql/data/base/template1/pg_aggregate_name_type_index -pgsql/data/base/template1/pg_am -pgsql/data/base/template1/pg_am_name_index -pgsql/data/base/template1/pg_amop -pgsql/data/base/template1/pg_amop_opid_index -pgsql/data/base/template1/pg_amop_strategy_index -pgsql/data/base/template1/pg_amproc -pgsql/data/base/template1/pg_attrdef -pgsql/data/base/template1/pg_attrdef_adrelid_index -pgsql/data/base/template1/pg_attribute -pgsql/data/base/template1/pg_attribute_relid_attnam_index -pgsql/data/base/template1/pg_attribute_relid_attnum_index -pgsql/data/base/template1/pg_class -pgsql/data/base/template1/pg_class_oid_index -pgsql/data/base/template1/pg_class_relname_index -pgsql/data/base/template1/pg_description -pgsql/data/base/template1/pg_description_objoid_index -pgsql/data/base/template1/pg_index -pgsql/data/base/template1/pg_index_indexrelid_index -pgsql/data/base/template1/pg_indexes -pgsql/data/base/template1/pg_inheritproc -pgsql/data/base/template1/pg_inherits -pgsql/data/base/template1/pg_inherits_relid_seqno_index -pgsql/data/base/template1/pg_ipl -pgsql/data/base/template1/pg_language -pgsql/data/base/template1/pg_language_name_index -pgsql/data/base/template1/pg_language_oid_index -pgsql/data/base/template1/pg_listener -pgsql/data/base/template1/pg_listener_relname_pid_index -pgsql/data/base/template1/pg_opclass -pgsql/data/base/template1/pg_opclass_deftype_index -pgsql/data/base/template1/pg_opclass_name_index -pgsql/data/base/template1/pg_operator -pgsql/data/base/template1/pg_operator_oid_index -pgsql/data/base/template1/pg_operator_oprname_l_r_k_index -pgsql/data/base/template1/pg_proc -pgsql/data/base/template1/pg_proc_oid_index -pgsql/data/base/template1/pg_proc_proname_narg_type_index -pgsql/data/base/template1/pg_relcheck -pgsql/data/base/template1/pg_relcheck_rcrelid_index -pgsql/data/base/template1/pg_rewrite -pgsql/data/base/template1/pg_rewrite_oid_index -pgsql/data/base/template1/pg_rewrite_rulename_index -pgsql/data/base/template1/pg_rules -pgsql/data/base/template1/pg_statistic -pgsql/data/base/template1/pg_statistic_relid_att_index -pgsql/data/base/template1/pg_tables -pgsql/data/base/template1/pg_trigger -pgsql/data/base/template1/pg_trigger_tgconstrname_index -pgsql/data/base/template1/pg_trigger_tgconstrrelid_index -pgsql/data/base/template1/pg_trigger_tgrelid_index -pgsql/data/base/template1/pg_type -pgsql/data/base/template1/pg_type_oid_index -pgsql/data/base/template1/pg_type_typname_index -pgsql/data/base/template1/pg_user -pgsql/data/base/template1/pg_views -pgsql/data/pg_control -pgsql/data/pg_database -pgsql/data/pg_geqo.sample -pgsql/data/pg_group -pgsql/data/pg_group_name_index -pgsql/data/pg_group_sysid_index -pgsql/data/pg_hba.conf -pgsql/data/pg_log -pgsql/data/pg_shadow -pgsql/data/pg_variable -pgsql/data/postmaster.opts.default -pgsql/include/access/attnum.h -pgsql/include/c.h -pgsql/include/commands/trigger.h -pgsql/include/config.h -pgsql/include/ecpgerrno.h -pgsql/include/ecpglib.h -pgsql/include/ecpgtype.h -pgsql/include/executor/spi.h -pgsql/include/fmgr.h -pgsql/include/lib/dllist.h -pgsql/include/libpgeasy.h -pgsql/include/libpq/libpq-fs.h -pgsql/include/libpq/pqcomm.h -pgsql/include/libpq++/pgconnection.h -pgsql/include/libpq++/pgcursordb.h -pgsql/include/libpq++/pgdatabase.h -pgsql/include/libpq++/pglobject.h -pgsql/include/libpq++/pgtransdb.h -pgsql/include/libpq++.h -pgsql/include/libpq-fe.h -pgsql/include/libpq-int.h -pgsql/include/os.h -pgsql/include/postgres.h -pgsql/include/postgres_ext.h -pgsql/include/pqexpbuffer.h -pgsql/include/sql3types.h -pgsql/include/sqlca.h -pgsql/include/utils/elog.h -pgsql/include/utils/geo_decls.h -pgsql/include/utils/mcxt.h -pgsql/include/utils/palloc.h -pgsql/lib/global1.bki.source -pgsql/lib/global1.description -pgsql/lib/libecpg.a -pgsql/lib/libecpg.so -pgsql/lib/libecpg.so.3 -pgsql/lib/libpgeasy.a -pgsql/lib/libpgeasy.so -pgsql/lib/libpgeasy.so.2 -pgsql/lib/libpq++.a -pgsql/lib/libpq++.so -pgsql/lib/libpq++.so.3 -pgsql/lib/libpq.a -pgsql/lib/libpq.so -pgsql/lib/libpq.so.2 -pgsql/lib/local1_template1.bki.source -pgsql/lib/local1_template1.description -pgsql/lib/pg_geqo.sample -pgsql/lib/pg_hba.conf.sample -pgsql/lib/pg_ident.conf.sample -pgsql/lib/pg_options.sample -pgsql/lib/plpgsql.so -pgsql/lib/postmaster.opts.default.sample -pgsql/post-install-notes -@dirrm pgsql/bin -@dirrm pgsql/data/base/template1 -@dirrm pgsql/data/base -@dirrm pgsql/data/pg_xlog -@dirrm pgsql/data -@dirrm pgsql/include/access -@dirrm pgsql/include/commands -@dirrm pgsql/include/executor -@dirrm pgsql/include/lib -@dirrm pgsql/include/libpq -@dirrm pgsql/include/libpq++ -@dirrm pgsql/include/port/freebsd -@dirrm pgsql/include/port -@dirrm pgsql/include/utils -@dirrm pgsql/include -@dirrm pgsql/lib -@dirrm pgsql/man/man1 -@dirrm pgsql/man/manl -@dirrm pgsql/man -@dirrm pgsql diff --git a/databases/postgresql91-server/pkg-plist.doc b/databases/postgresql91-server/pkg-plist.doc deleted file mode 100644 index 06b7bd9ea116..000000000000 --- a/databases/postgresql91-server/pkg-plist.doc +++ /dev/null @@ -1,888 +0,0 @@ -share/doc/pgsql/FAQ -share/doc/pgsql/FAQ_AIX -share/doc/pgsql/FAQ_BSDI -share/doc/pgsql/FAQ_DEV -share/doc/pgsql/FAQ_DigitalUnix -share/doc/pgsql/FAQ_FreeBSD -share/doc/pgsql/FAQ_HPUX -share/doc/pgsql/FAQ_Irix -share/doc/pgsql/FAQ_Linux -share/doc/pgsql/FAQ_QNX4 -share/doc/pgsql/FAQ_SCO -share/doc/pgsql/FAQ_Solaris -share/doc/pgsql/README.Charsets -share/doc/pgsql/README.NT -share/doc/pgsql/README.fsync -share/doc/pgsql/README.inet -share/doc/pgsql/README.locale -share/doc/pgsql/README.mb -share/doc/pgsql/README.mb.jp -share/doc/pgsql/TODO -share/doc/pgsql/admin/admin.htm -share/doc/pgsql/admin/admin.html -share/doc/pgsql/admin/biblio.htm -share/doc/pgsql/admin/c573.htm -share/doc/pgsql/admin/c573602.htm -share/doc/pgsql/admin/c573680.htm -share/doc/pgsql/admin/c573717.htm -share/doc/pgsql/admin/copyright.htm -share/doc/pgsql/admin/disk.htm -share/doc/pgsql/admin/index.html -share/doc/pgsql/admin/install-win32.htm -share/doc/pgsql/admin/install-win321073.htm -share/doc/pgsql/admin/install-win321082.htm -share/doc/pgsql/admin/install.htm -share/doc/pgsql/admin/install855.htm -share/doc/pgsql/admin/intro-ag.htm -share/doc/pgsql/admin/intro-ag162.htm -share/doc/pgsql/admin/layout.gif -share/doc/pgsql/admin/layout.htm -share/doc/pgsql/admin/manage-ag.htm -share/doc/pgsql/admin/manage-ag1604.htm -share/doc/pgsql/admin/manage-ag1646.htm -share/doc/pgsql/admin/manage-ag1655.htm -share/doc/pgsql/admin/newuser.htm -share/doc/pgsql/admin/notation.htm -share/doc/pgsql/admin/pg-options.htm -share/doc/pgsql/admin/ports.htm -share/doc/pgsql/admin/ports481.htm -share/doc/pgsql/admin/postmaster.htm -share/doc/pgsql/admin/preface.htm -share/doc/pgsql/admin/recovery.htm -share/doc/pgsql/admin/regress.htm -share/doc/pgsql/admin/regress1861.htm -share/doc/pgsql/admin/regress1895.htm -share/doc/pgsql/admin/regress1941.htm -share/doc/pgsql/admin/release.htm -share/doc/pgsql/admin/release2009.htm -share/doc/pgsql/admin/release2020.htm -share/doc/pgsql/admin/release2031.htm -share/doc/pgsql/admin/release2042.htm -share/doc/pgsql/admin/release2124.htm -share/doc/pgsql/admin/release2135.htm -share/doc/pgsql/admin/release2146.htm -share/doc/pgsql/admin/release2187.htm -share/doc/pgsql/admin/release2203.htm -share/doc/pgsql/admin/release2222.htm -share/doc/pgsql/admin/release2266.htm -share/doc/pgsql/admin/release2288.htm -share/doc/pgsql/admin/release2303.htm -share/doc/pgsql/admin/release2312.htm -share/doc/pgsql/admin/release2335.htm -share/doc/pgsql/admin/release2349.htm -share/doc/pgsql/admin/release2352.htm -share/doc/pgsql/admin/release2377.htm -share/doc/pgsql/admin/release2414.htm -share/doc/pgsql/admin/release2421.htm -share/doc/pgsql/admin/release2428.htm -share/doc/pgsql/admin/release2435.htm -share/doc/pgsql/admin/release2439.htm -share/doc/pgsql/admin/runtime.htm -share/doc/pgsql/admin/security.htm -share/doc/pgsql/admin/security1450.htm -share/doc/pgsql/admin/security1485.htm -share/doc/pgsql/admin/security1509.htm -share/doc/pgsql/admin/security1530.htm -share/doc/pgsql/admin/terminology.htm -share/doc/pgsql/admin/trouble.htm -share/doc/pgsql/admin/trouble1721.htm -share/doc/pgsql/admin/trouble1738.htm -share/doc/pgsql/admin/y2k.htm -share/doc/pgsql/postgres/about.htm -share/doc/pgsql/postgres/advanced.htm -share/doc/pgsql/postgres/advanced27923.htm -share/doc/pgsql/postgres/advanced27945.htm -share/doc/pgsql/postgres/app-createdb.htm -share/doc/pgsql/postgres/app-createlang.htm -share/doc/pgsql/postgres/app-createuser.htm -share/doc/pgsql/postgres/app-dropdb.htm -share/doc/pgsql/postgres/app-droplang.htm -share/doc/pgsql/postgres/app-dropuser.htm -share/doc/pgsql/postgres/app-ecpg.htm -share/doc/pgsql/postgres/app-initdb.htm -share/doc/pgsql/postgres/app-initlocation.htm -share/doc/pgsql/postgres/app-ipcclean.htm -share/doc/pgsql/postgres/app-pg-passwd.htm -share/doc/pgsql/postgres/app-pg-upgrade.htm -share/doc/pgsql/postgres/app-pgaccess.htm -share/doc/pgsql/postgres/app-pgadmin.htm -share/doc/pgsql/postgres/app-pgctl.htm -share/doc/pgsql/postgres/app-pgdump.htm -share/doc/pgsql/postgres/app-pgdumpall.htm -share/doc/pgsql/postgres/app-pgtclsh.htm -share/doc/pgsql/postgres/app-pgtksh.htm -share/doc/pgsql/postgres/app-postgres.htm -share/doc/pgsql/postgres/app-postmaster.htm -share/doc/pgsql/postgres/app-psql.htm -share/doc/pgsql/postgres/app-vacuumdb.htm -share/doc/pgsql/postgres/applications.htm -share/doc/pgsql/postgres/arch-pg.htm -share/doc/pgsql/postgres/arch.htm -share/doc/pgsql/postgres/arrays.htm -share/doc/pgsql/postgres/biblio.htm -share/doc/pgsql/postgres/bki.htm -share/doc/pgsql/postgres/bki26573.htm -share/doc/pgsql/postgres/bki26657.htm -share/doc/pgsql/postgres/bki26681.htm -share/doc/pgsql/postgres/bki26742.htm -share/doc/pgsql/postgres/c16883.htm -share/doc/pgsql/postgres/c1688316912.htm -share/doc/pgsql/postgres/c1688316990.htm -share/doc/pgsql/postgres/c1688317027.htm -share/doc/pgsql/postgres/c19986.htm -share/doc/pgsql/postgres/c21722.htm -share/doc/pgsql/postgres/c2172221764.htm -share/doc/pgsql/postgres/c2172221782.htm -share/doc/pgsql/postgres/c2172221924.htm -share/doc/pgsql/postgres/c2172221936.htm -share/doc/pgsql/postgres/c2172221956.htm -share/doc/pgsql/postgres/c2172221961.htm -share/doc/pgsql/postgres/c25129.htm -share/doc/pgsql/postgres/c4091.htm -share/doc/pgsql/postgres/c40914117.htm -share/doc/pgsql/postgres/c40914344.htm -share/doc/pgsql/postgres/c4362.htm -share/doc/pgsql/postgres/c43624375.htm -share/doc/pgsql/postgres/c4888.htm -share/doc/pgsql/postgres/c4933.htm -share/doc/pgsql/postgres/c49334943.htm -share/doc/pgsql/postgres/c49334947.htm -share/doc/pgsql/postgres/catalogs.gif -share/doc/pgsql/postgres/clientserver.gif -share/doc/pgsql/postgres/compiler.htm -share/doc/pgsql/postgres/connections.gif -share/doc/pgsql/postgres/copyright.htm -share/doc/pgsql/postgres/cvs.htm -share/doc/pgsql/postgres/cvs28436.htm -share/doc/pgsql/postgres/cvs28492.htm -share/doc/pgsql/postgres/datatype.htm -share/doc/pgsql/postgres/datatype1038.htm -share/doc/pgsql/postgres/datatype1070.htm -share/doc/pgsql/postgres/datatype1134.htm -share/doc/pgsql/postgres/datatype1649.htm -share/doc/pgsql/postgres/datatype1681.htm -share/doc/pgsql/postgres/datatype1920.htm -share/doc/pgsql/postgres/datetime-appendix.htm -share/doc/pgsql/postgres/datetime-appendix28356.htm -share/doc/pgsql/postgres/dfunc.htm -share/doc/pgsql/postgres/dfunc20136.htm -share/doc/pgsql/postgres/dfunc20146.htm -share/doc/pgsql/postgres/disk.htm -share/doc/pgsql/postgres/docguide.htm -share/doc/pgsql/postgres/docguide28718.htm -share/doc/pgsql/postgres/docguide28749.htm -share/doc/pgsql/postgres/docguide28840.htm -share/doc/pgsql/postgres/docguide28861.htm -share/doc/pgsql/postgres/docguide28887.htm -share/doc/pgsql/postgres/docguide29024.htm -share/doc/pgsql/postgres/docguide29362.htm -share/doc/pgsql/postgres/environ.htm -share/doc/pgsql/postgres/extend.htm -share/doc/pgsql/postgres/extend18852.htm -share/doc/pgsql/postgres/extend18864.htm -share/doc/pgsql/postgres/func-ref.htm -share/doc/pgsql/postgres/functions.htm -share/doc/pgsql/postgres/functions2593.htm -share/doc/pgsql/postgres/functions2733.htm -share/doc/pgsql/postgres/functions2876.htm -share/doc/pgsql/postgres/functions2976.htm -share/doc/pgsql/postgres/functions3443.htm -share/doc/pgsql/postgres/functions3641.htm -share/doc/pgsql/postgres/geqo-biblio.htm -share/doc/pgsql/postgres/geqo.htm -share/doc/pgsql/postgres/geqo25594.htm -share/doc/pgsql/postgres/geqo25617.htm -share/doc/pgsql/postgres/geqo25655.htm -share/doc/pgsql/postgres/gist.htm -share/doc/pgsql/postgres/index.html -share/doc/pgsql/postgres/indices.htm -share/doc/pgsql/postgres/inherit.htm -share/doc/pgsql/postgres/install-win32.htm -share/doc/pgsql/postgres/install-win3217383.htm -share/doc/pgsql/postgres/install-win3217392.htm -share/doc/pgsql/postgres/install.htm -share/doc/pgsql/postgres/install17165.htm -share/doc/pgsql/postgres/intro.htm -share/doc/pgsql/postgres/intro176.htm -share/doc/pgsql/postgres/intro304.htm -share/doc/pgsql/postgres/intro60.htm -share/doc/pgsql/postgres/jdbc.htm -share/doc/pgsql/postgres/jdbc24909.htm -share/doc/pgsql/postgres/jdbc24921.htm -share/doc/pgsql/postgres/jdbc24927.htm -share/doc/pgsql/postgres/jdbc24935.htm -share/doc/pgsql/postgres/jdbc24953.htm -share/doc/pgsql/postgres/jdbc24990.htm -share/doc/pgsql/postgres/jdbc25021.htm -share/doc/pgsql/postgres/jdbc25026.htm -share/doc/pgsql/postgres/jdbc25030.htm -share/doc/pgsql/postgres/jdbc25056.htm -share/doc/pgsql/postgres/jdbc25086.htm -share/doc/pgsql/postgres/largeobjects.htm -share/doc/pgsql/postgres/largeobjects21625.htm -share/doc/pgsql/postgres/largeobjects21628.htm -share/doc/pgsql/postgres/largeobjects21707.htm -share/doc/pgsql/postgres/largeobjects21714.htm -share/doc/pgsql/postgres/largeobjects21718.htm -share/doc/pgsql/postgres/layout.gif -share/doc/pgsql/postgres/layout.htm -share/doc/pgsql/postgres/libpq-chapter.htm -share/doc/pgsql/postgres/libpq-chapter22422.htm -share/doc/pgsql/postgres/libpq-chapter22577.htm -share/doc/pgsql/postgres/libpq-chapter22724.htm -share/doc/pgsql/postgres/libpq-chapter22736.htm -share/doc/pgsql/postgres/libpq-chapter22774.htm -share/doc/pgsql/postgres/libpq-chapter22844.htm -share/doc/pgsql/postgres/libpq-chapter22857.htm -share/doc/pgsql/postgres/libpq-chapter22942.htm -share/doc/pgsql/postgres/libpq-envars.htm -share/doc/pgsql/postgres/libpq-threading.htm -share/doc/pgsql/postgres/libpqplusplus.htm -share/doc/pgsql/postgres/libpqplusplus23034.htm -share/doc/pgsql/postgres/libpqplusplus23044.htm -share/doc/pgsql/postgres/libpqplusplus23074.htm -share/doc/pgsql/postgres/libpqplusplus23179.htm -share/doc/pgsql/postgres/libpqplusplus23202.htm -share/doc/pgsql/postgres/lisp.htm -share/doc/pgsql/postgres/manage-ag.htm -share/doc/pgsql/postgres/manage-ag17914.htm -share/doc/pgsql/postgres/manage-ag17956.htm -share/doc/pgsql/postgres/manage-ag17965.htm -share/doc/pgsql/postgres/manage.htm -share/doc/pgsql/postgres/manage4814.htm -share/doc/pgsql/postgres/manage4838.htm -share/doc/pgsql/postgres/manage4880.htm -share/doc/pgsql/postgres/mvcc.htm -share/doc/pgsql/postgres/mvcc4568.htm -share/doc/pgsql/postgres/mvcc4621.htm -share/doc/pgsql/postgres/mvcc4633.htm -share/doc/pgsql/postgres/mvcc4646.htm -share/doc/pgsql/postgres/mvcc4723.htm -share/doc/pgsql/postgres/mvcc4744.htm -share/doc/pgsql/postgres/newuser.htm -share/doc/pgsql/postgres/notation.htm -share/doc/pgsql/postgres/odbc.htm -share/doc/pgsql/postgres/odbc24433.htm -share/doc/pgsql/postgres/odbc24471.htm -share/doc/pgsql/postgres/odbc24644.htm -share/doc/pgsql/postgres/odbc24666.htm -share/doc/pgsql/postgres/operators.htm -share/doc/pgsql/postgres/operators2127.htm -share/doc/pgsql/postgres/operators2198.htm -share/doc/pgsql/postgres/operators2267.htm -share/doc/pgsql/postgres/operators2377.htm -share/doc/pgsql/postgres/operators2436.htm -share/doc/pgsql/postgres/operators2490.htm -share/doc/pgsql/postgres/overview.htm -share/doc/pgsql/postgres/overview25194.htm -share/doc/pgsql/postgres/overview25219.htm -share/doc/pgsql/postgres/overview25347.htm -share/doc/pgsql/postgres/overview25403.htm -share/doc/pgsql/postgres/overview25457.htm -share/doc/pgsql/postgres/page.htm -share/doc/pgsql/postgres/page26805.htm -share/doc/pgsql/postgres/page26819.htm -share/doc/pgsql/postgres/part-admin.htm -share/doc/pgsql/postgres/part-appendix.htm -share/doc/pgsql/postgres/part-developer.htm -share/doc/pgsql/postgres/part-interfaces.htm -share/doc/pgsql/postgres/part-programmer.htm -share/doc/pgsql/postgres/part-tutorial.htm -share/doc/pgsql/postgres/part-user.htm -share/doc/pgsql/postgres/partial-index.htm -share/doc/pgsql/postgres/pg-options-dev.htm -share/doc/pgsql/postgres/pg-options.htm -share/doc/pgsql/postgres/pgeasy-chapter.htm -share/doc/pgsql/postgres/pgtcl-pgconndefaults.htm -share/doc/pgsql/postgres/pgtcl-pgconnect.htm -share/doc/pgsql/postgres/pgtcl-pgdisconnect.htm -share/doc/pgsql/postgres/pgtcl-pgexec.htm -share/doc/pgsql/postgres/pgtcl-pglisten.htm -share/doc/pgsql/postgres/pgtcl-pgloclose.htm -share/doc/pgsql/postgres/pgtcl-pglocreat.htm -share/doc/pgsql/postgres/pgtcl-pgloexport.htm -share/doc/pgsql/postgres/pgtcl-pgloimport.htm -share/doc/pgsql/postgres/pgtcl-pglolseek.htm -share/doc/pgsql/postgres/pgtcl-pgloopen.htm -share/doc/pgsql/postgres/pgtcl-pgloread.htm -share/doc/pgsql/postgres/pgtcl-pglotell.htm -share/doc/pgsql/postgres/pgtcl-pglounlink.htm -share/doc/pgsql/postgres/pgtcl-pglowrite.htm -share/doc/pgsql/postgres/pgtcl-pgresult.htm -share/doc/pgsql/postgres/pgtcl-pgselect.htm -share/doc/pgsql/postgres/pgtcl.htm -share/doc/pgsql/postgres/pgtcl23317.htm -share/doc/pgsql/postgres/pgtcl23321.htm -share/doc/pgsql/postgres/pl-perl.htm -share/doc/pgsql/postgres/pl-perl4533.htm -share/doc/pgsql/postgres/pl-perl4542.htm -share/doc/pgsql/postgres/ports.htm -share/doc/pgsql/postgres/ports16791.htm -share/doc/pgsql/postgres/postgres.htm -share/doc/pgsql/postgres/postgres.html -share/doc/pgsql/postgres/postmaster.htm -share/doc/pgsql/postgres/preface.htm -share/doc/pgsql/postgres/protocol.htm -share/doc/pgsql/postgres/protocol25770.htm -share/doc/pgsql/postgres/protocol25925.htm -share/doc/pgsql/postgres/protocol25962.htm -share/doc/pgsql/postgres/query.htm -share/doc/pgsql/postgres/query27752.htm -share/doc/pgsql/postgres/query27768.htm -share/doc/pgsql/postgres/query27790.htm -share/doc/pgsql/postgres/query27799.htm -share/doc/pgsql/postgres/query27817.htm -share/doc/pgsql/postgres/query27825.htm -share/doc/pgsql/postgres/query27844.htm -share/doc/pgsql/postgres/query27849.htm -share/doc/pgsql/postgres/query27856.htm -share/doc/pgsql/postgres/recovery.htm -share/doc/pgsql/postgres/regress.htm -share/doc/pgsql/postgres/regress18171.htm -share/doc/pgsql/postgres/regress18205.htm -share/doc/pgsql/postgres/regress18251.htm -share/doc/pgsql/postgres/release.htm -share/doc/pgsql/postgres/release18319.htm -share/doc/pgsql/postgres/release18330.htm -share/doc/pgsql/postgres/release18341.htm -share/doc/pgsql/postgres/release18352.htm -share/doc/pgsql/postgres/release18434.htm -share/doc/pgsql/postgres/release18445.htm -share/doc/pgsql/postgres/release18456.htm -share/doc/pgsql/postgres/release18497.htm -share/doc/pgsql/postgres/release18513.htm -share/doc/pgsql/postgres/release18532.htm -share/doc/pgsql/postgres/release18576.htm -share/doc/pgsql/postgres/release18598.htm -share/doc/pgsql/postgres/release18613.htm -share/doc/pgsql/postgres/release18622.htm -share/doc/pgsql/postgres/release18645.htm -share/doc/pgsql/postgres/release18659.htm -share/doc/pgsql/postgres/release18662.htm -share/doc/pgsql/postgres/release18687.htm -share/doc/pgsql/postgres/release18724.htm -share/doc/pgsql/postgres/release18731.htm -share/doc/pgsql/postgres/release18738.htm -share/doc/pgsql/postgres/release18745.htm -share/doc/pgsql/postgres/release18749.htm -share/doc/pgsql/postgres/rules.htm -share/doc/pgsql/postgres/rules19478.htm -share/doc/pgsql/postgres/rules19639.htm -share/doc/pgsql/postgres/rules19770.htm -share/doc/pgsql/postgres/rules19784.htm -share/doc/pgsql/postgres/runtime.htm -share/doc/pgsql/postgres/security.htm -share/doc/pgsql/postgres/security17760.htm -share/doc/pgsql/postgres/security17795.htm -share/doc/pgsql/postgres/security17819.htm -share/doc/pgsql/postgres/security17840.htm -share/doc/pgsql/postgres/signals.htm -share/doc/pgsql/postgres/spi-spiconnect.htm -share/doc/pgsql/postgres/spi-spicopytuple.htm -share/doc/pgsql/postgres/spi-spiexec.htm -share/doc/pgsql/postgres/spi-spiexecp.htm -share/doc/pgsql/postgres/spi-spifinish.htm -share/doc/pgsql/postgres/spi-spifname.htm -share/doc/pgsql/postgres/spi-spifnumber.htm -share/doc/pgsql/postgres/spi-spigetbinval.htm -share/doc/pgsql/postgres/spi-spigetrelname.htm -share/doc/pgsql/postgres/spi-spigettype.htm -share/doc/pgsql/postgres/spi-spigettypeid.htm -share/doc/pgsql/postgres/spi-spigetvalue.htm -share/doc/pgsql/postgres/spi-spimodifytuple.htm -share/doc/pgsql/postgres/spi-spipalloc.htm -share/doc/pgsql/postgres/spi-spipfree.htm -share/doc/pgsql/postgres/spi-spiprepare.htm -share/doc/pgsql/postgres/spi-spirepalloc.htm -share/doc/pgsql/postgres/spi-spisaveplan.htm -share/doc/pgsql/postgres/spi.htm -share/doc/pgsql/postgres/spi20808.htm -share/doc/pgsql/postgres/spi21521.htm -share/doc/pgsql/postgres/spi21543.htm -share/doc/pgsql/postgres/spi21548.htm -share/doc/pgsql/postgres/sql-abort.htm -share/doc/pgsql/postgres/sql-altergroup.htm -share/doc/pgsql/postgres/sql-altertable.htm -share/doc/pgsql/postgres/sql-alteruser.htm -share/doc/pgsql/postgres/sql-begin.htm -share/doc/pgsql/postgres/sql-close.htm -share/doc/pgsql/postgres/sql-cluster.htm -share/doc/pgsql/postgres/sql-commands.htm -share/doc/pgsql/postgres/sql-comment.htm -share/doc/pgsql/postgres/sql-commit.htm -share/doc/pgsql/postgres/sql-copy.htm -share/doc/pgsql/postgres/sql-createaggregate.htm -share/doc/pgsql/postgres/sql-createconstraint.htm -share/doc/pgsql/postgres/sql-createdatabase.htm -share/doc/pgsql/postgres/sql-createfunction.htm -share/doc/pgsql/postgres/sql-creategroup.htm -share/doc/pgsql/postgres/sql-createindex.htm -share/doc/pgsql/postgres/sql-createlanguage.htm -share/doc/pgsql/postgres/sql-createoperator.htm -share/doc/pgsql/postgres/sql-createrule.htm -share/doc/pgsql/postgres/sql-createsequence.htm -share/doc/pgsql/postgres/sql-createtable.htm -share/doc/pgsql/postgres/sql-createtableas.htm -share/doc/pgsql/postgres/sql-createtrigger.htm -share/doc/pgsql/postgres/sql-createtype.htm -share/doc/pgsql/postgres/sql-createuser.htm -share/doc/pgsql/postgres/sql-createview.htm -share/doc/pgsql/postgres/sql-declare.htm -share/doc/pgsql/postgres/sql-delete.htm -share/doc/pgsql/postgres/sql-dropaggregate.htm -share/doc/pgsql/postgres/sql-dropdatabase.htm -share/doc/pgsql/postgres/sql-dropfunction.htm -share/doc/pgsql/postgres/sql-dropgroup.htm -share/doc/pgsql/postgres/sql-dropindex.htm -share/doc/pgsql/postgres/sql-droplanguage.htm -share/doc/pgsql/postgres/sql-dropoperator.htm -share/doc/pgsql/postgres/sql-droprule.htm -share/doc/pgsql/postgres/sql-dropsequence.htm -share/doc/pgsql/postgres/sql-droptable.htm -share/doc/pgsql/postgres/sql-droptrigger.htm -share/doc/pgsql/postgres/sql-droptype.htm -share/doc/pgsql/postgres/sql-dropuser.htm -share/doc/pgsql/postgres/sql-dropview.htm -share/doc/pgsql/postgres/sql-end.htm -share/doc/pgsql/postgres/sql-explain.htm -share/doc/pgsql/postgres/sql-fetch.htm -share/doc/pgsql/postgres/sql-grant.htm -share/doc/pgsql/postgres/sql-insert.htm -share/doc/pgsql/postgres/sql-language.htm -share/doc/pgsql/postgres/sql-listen.htm -share/doc/pgsql/postgres/sql-load.htm -share/doc/pgsql/postgres/sql-lock.htm -share/doc/pgsql/postgres/sql-move.htm -share/doc/pgsql/postgres/sql-notify.htm -share/doc/pgsql/postgres/sql-reindex.htm -share/doc/pgsql/postgres/sql-reset.htm -share/doc/pgsql/postgres/sql-revoke.htm -share/doc/pgsql/postgres/sql-rollback.htm -share/doc/pgsql/postgres/sql-select.htm -share/doc/pgsql/postgres/sql-selectinto.htm -share/doc/pgsql/postgres/sql-set.htm -share/doc/pgsql/postgres/sql-show.htm -share/doc/pgsql/postgres/sql-truncate.htm -share/doc/pgsql/postgres/sql-unlisten.htm -share/doc/pgsql/postgres/sql-update.htm -share/doc/pgsql/postgres/sql-vacuum.htm -share/doc/pgsql/postgres/sql.htm -share/doc/pgsql/postgres/sql26902.htm -share/doc/pgsql/postgres/sql27020.htm -share/doc/pgsql/postgres/start.htm -share/doc/pgsql/postgres/start27628.htm -share/doc/pgsql/postgres/start27650.htm -share/doc/pgsql/postgres/storage.htm -share/doc/pgsql/postgres/syntax.htm -share/doc/pgsql/postgres/syntax519.htm -share/doc/pgsql/postgres/syntax525.htm -share/doc/pgsql/postgres/syntax543.htm -share/doc/pgsql/postgres/syntax608.htm -share/doc/pgsql/postgres/syntax653.htm -share/doc/pgsql/postgres/syntax658.htm -share/doc/pgsql/postgres/terminology.htm -share/doc/pgsql/postgres/triggers.htm -share/doc/pgsql/postgres/triggers20224.htm -share/doc/pgsql/postgres/triggers20281.htm -share/doc/pgsql/postgres/triggers20290.htm -share/doc/pgsql/postgres/trouble.htm -share/doc/pgsql/postgres/trouble18031.htm -share/doc/pgsql/postgres/trouble18048.htm -share/doc/pgsql/postgres/typeconv.htm -share/doc/pgsql/postgres/typeconv3759.htm -share/doc/pgsql/postgres/typeconv3822.htm -share/doc/pgsql/postgres/typeconv3875.htm -share/doc/pgsql/postgres/typeconv3895.htm -share/doc/pgsql/postgres/utilities.htm -share/doc/pgsql/postgres/xaggr.htm -share/doc/pgsql/postgres/xfunc.htm -share/doc/pgsql/postgres/xfunc19011.htm -share/doc/pgsql/postgres/xfunc19017.htm -share/doc/pgsql/postgres/xfunc19022.htm -share/doc/pgsql/postgres/xfunc19254.htm -share/doc/pgsql/postgres/xindex.htm -share/doc/pgsql/postgres/xoper.htm -share/doc/pgsql/postgres/xplang.htm -share/doc/pgsql/postgres/xtypes.htm -share/doc/pgsql/postgres/y2k.htm -share/doc/pgsql/programmer/arch-pg.htm -share/doc/pgsql/programmer/biblio.htm -share/doc/pgsql/programmer/bki.htm -share/doc/pgsql/programmer/bki8058.htm -share/doc/pgsql/programmer/bki8142.htm -share/doc/pgsql/programmer/bki8166.htm -share/doc/pgsql/programmer/bki8227.htm -share/doc/pgsql/programmer/c1486.htm -share/doc/pgsql/programmer/c5391.htm -share/doc/pgsql/programmer/c53915433.htm -share/doc/pgsql/programmer/c53915451.htm -share/doc/pgsql/programmer/c53915593.htm -share/doc/pgsql/programmer/c53915605.htm -share/doc/pgsql/programmer/c53915625.htm -share/doc/pgsql/programmer/c53915630.htm -share/doc/pgsql/programmer/c6614.htm -share/doc/pgsql/programmer/catalogs.gif -share/doc/pgsql/programmer/compiler.htm -share/doc/pgsql/programmer/connections.gif -share/doc/pgsql/programmer/copyright.htm -share/doc/pgsql/programmer/cvs.htm -share/doc/pgsql/programmer/cvs8365.htm -share/doc/pgsql/programmer/cvs8421.htm -share/doc/pgsql/programmer/dfunc.htm -share/doc/pgsql/programmer/dfunc1679.htm -share/doc/pgsql/programmer/dfunc1689.htm -share/doc/pgsql/programmer/docguide.htm -share/doc/pgsql/programmer/docguide8647.htm -share/doc/pgsql/programmer/docguide8678.htm -share/doc/pgsql/programmer/docguide8769.htm -share/doc/pgsql/programmer/docguide8790.htm -share/doc/pgsql/programmer/docguide8816.htm -share/doc/pgsql/programmer/docguide8953.htm -share/doc/pgsql/programmer/docguide9291.htm -share/doc/pgsql/programmer/extend.htm -share/doc/pgsql/programmer/extend352.htm -share/doc/pgsql/programmer/extend364.htm -share/doc/pgsql/programmer/geqo-biblio.htm -share/doc/pgsql/programmer/geqo.htm -share/doc/pgsql/programmer/geqo7079.htm -share/doc/pgsql/programmer/geqo7102.htm -share/doc/pgsql/programmer/geqo7140.htm -share/doc/pgsql/programmer/gist.htm -share/doc/pgsql/programmer/index.html -share/doc/pgsql/programmer/intro-pg.htm -share/doc/pgsql/programmer/intro-pg167.htm -share/doc/pgsql/programmer/jdbc.htm -share/doc/pgsql/programmer/jdbc6398.htm -share/doc/pgsql/programmer/jdbc6410.htm -share/doc/pgsql/programmer/jdbc6416.htm -share/doc/pgsql/programmer/jdbc6424.htm -share/doc/pgsql/programmer/jdbc6442.htm -share/doc/pgsql/programmer/jdbc6479.htm -share/doc/pgsql/programmer/jdbc6510.htm -share/doc/pgsql/programmer/jdbc6515.htm -share/doc/pgsql/programmer/jdbc6519.htm -share/doc/pgsql/programmer/jdbc6545.htm -share/doc/pgsql/programmer/jdbc6575.htm -share/doc/pgsql/programmer/largeobjects.htm -share/doc/pgsql/programmer/largeobjects3114.htm -share/doc/pgsql/programmer/largeobjects3117.htm -share/doc/pgsql/programmer/largeobjects3196.htm -share/doc/pgsql/programmer/largeobjects3203.htm -share/doc/pgsql/programmer/largeobjects3207.htm -share/doc/pgsql/programmer/libpq-chapter.htm -share/doc/pgsql/programmer/libpq-chapter3419.htm -share/doc/pgsql/programmer/libpq-chapter3574.htm -share/doc/pgsql/programmer/libpq-chapter3721.htm -share/doc/pgsql/programmer/libpq-chapter3733.htm -share/doc/pgsql/programmer/libpq-chapter3771.htm -share/doc/pgsql/programmer/libpq-chapter3841.htm -share/doc/pgsql/programmer/libpq-chapter3854.htm -share/doc/pgsql/programmer/libpq-chapter3939.htm -share/doc/pgsql/programmer/libpq-envars.htm -share/doc/pgsql/programmer/libpq-threading.htm -share/doc/pgsql/programmer/libpqplusplus.htm -share/doc/pgsql/programmer/libpqplusplus4031.htm -share/doc/pgsql/programmer/libpqplusplus4041.htm -share/doc/pgsql/programmer/libpqplusplus4071.htm -share/doc/pgsql/programmer/libpqplusplus4176.htm -share/doc/pgsql/programmer/libpqplusplus4199.htm -share/doc/pgsql/programmer/lisp.htm -share/doc/pgsql/programmer/notation.htm -share/doc/pgsql/programmer/odbc.htm -share/doc/pgsql/programmer/odbc5922.htm -share/doc/pgsql/programmer/odbc5960.htm -share/doc/pgsql/programmer/odbc6133.htm -share/doc/pgsql/programmer/odbc6155.htm -share/doc/pgsql/programmer/overview.htm -share/doc/pgsql/programmer/overview6679.htm -share/doc/pgsql/programmer/overview6704.htm -share/doc/pgsql/programmer/overview6832.htm -share/doc/pgsql/programmer/overview6888.htm -share/doc/pgsql/programmer/overview6942.htm -share/doc/pgsql/programmer/page.htm -share/doc/pgsql/programmer/page8290.htm -share/doc/pgsql/programmer/page8304.htm -share/doc/pgsql/programmer/pg-options-dev.htm -share/doc/pgsql/programmer/pgeasy-chapter.htm -share/doc/pgsql/programmer/pgtcl-pgconndefaults.htm -share/doc/pgsql/programmer/pgtcl-pgconnect.htm -share/doc/pgsql/programmer/pgtcl-pgdisconnect.htm -share/doc/pgsql/programmer/pgtcl-pgexec.htm -share/doc/pgsql/programmer/pgtcl-pglisten.htm -share/doc/pgsql/programmer/pgtcl-pgloclose.htm -share/doc/pgsql/programmer/pgtcl-pglocreat.htm -share/doc/pgsql/programmer/pgtcl-pgloexport.htm -share/doc/pgsql/programmer/pgtcl-pgloimport.htm -share/doc/pgsql/programmer/pgtcl-pglolseek.htm -share/doc/pgsql/programmer/pgtcl-pgloopen.htm -share/doc/pgsql/programmer/pgtcl-pgloread.htm -share/doc/pgsql/programmer/pgtcl-pglotell.htm -share/doc/pgsql/programmer/pgtcl-pglounlink.htm -share/doc/pgsql/programmer/pgtcl-pglowrite.htm -share/doc/pgsql/programmer/pgtcl-pgresult.htm -share/doc/pgsql/programmer/pgtcl-pgselect.htm -share/doc/pgsql/programmer/pgtcl.htm -share/doc/pgsql/programmer/pgtcl4314.htm -share/doc/pgsql/programmer/pgtcl4318.htm -share/doc/pgsql/programmer/preface.htm -share/doc/pgsql/programmer/programmer.htm -share/doc/pgsql/programmer/programmer.html -share/doc/pgsql/programmer/protocol.htm -share/doc/pgsql/programmer/protocol7255.htm -share/doc/pgsql/programmer/protocol7410.htm -share/doc/pgsql/programmer/protocol7447.htm -share/doc/pgsql/programmer/rules.htm -share/doc/pgsql/programmer/rules1139.htm -share/doc/pgsql/programmer/rules1270.htm -share/doc/pgsql/programmer/rules1284.htm -share/doc/pgsql/programmer/rules978.htm -share/doc/pgsql/programmer/signals.htm -share/doc/pgsql/programmer/spi-spiconnect.htm -share/doc/pgsql/programmer/spi-spicopytuple.htm -share/doc/pgsql/programmer/spi-spiexec.htm -share/doc/pgsql/programmer/spi-spiexecp.htm -share/doc/pgsql/programmer/spi-spifinish.htm -share/doc/pgsql/programmer/spi-spifname.htm -share/doc/pgsql/programmer/spi-spifnumber.htm -share/doc/pgsql/programmer/spi-spigetbinval.htm -share/doc/pgsql/programmer/spi-spigetrelname.htm -share/doc/pgsql/programmer/spi-spigettype.htm -share/doc/pgsql/programmer/spi-spigettypeid.htm -share/doc/pgsql/programmer/spi-spigetvalue.htm -share/doc/pgsql/programmer/spi-spimodifytuple.htm -share/doc/pgsql/programmer/spi-spipalloc.htm -share/doc/pgsql/programmer/spi-spipfree.htm -share/doc/pgsql/programmer/spi-spiprepare.htm -share/doc/pgsql/programmer/spi-spirepalloc.htm -share/doc/pgsql/programmer/spi-spisaveplan.htm -share/doc/pgsql/programmer/spi.htm -share/doc/pgsql/programmer/spi2351.htm -share/doc/pgsql/programmer/spi3064.htm -share/doc/pgsql/programmer/spi3086.htm -share/doc/pgsql/programmer/spi3091.htm -share/doc/pgsql/programmer/terminology.htm -share/doc/pgsql/programmer/triggers.htm -share/doc/pgsql/programmer/triggers1767.htm -share/doc/pgsql/programmer/triggers1824.htm -share/doc/pgsql/programmer/triggers1833.htm -share/doc/pgsql/programmer/xaggr.htm -share/doc/pgsql/programmer/xfunc.htm -share/doc/pgsql/programmer/xfunc511.htm -share/doc/pgsql/programmer/xfunc517.htm -share/doc/pgsql/programmer/xfunc522.htm -share/doc/pgsql/programmer/xfunc754.htm -share/doc/pgsql/programmer/xindex.htm -share/doc/pgsql/programmer/xoper.htm -share/doc/pgsql/programmer/xplang.htm -share/doc/pgsql/programmer/xtypes.htm -share/doc/pgsql/programmer/y2k.htm -share/doc/pgsql/tutorial/about.htm -share/doc/pgsql/tutorial/advanced.htm -share/doc/pgsql/tutorial/advanced1511.htm -share/doc/pgsql/tutorial/advanced1533.htm -share/doc/pgsql/tutorial/arch.htm -share/doc/pgsql/tutorial/biblio.htm -share/doc/pgsql/tutorial/clientserver.gif -share/doc/pgsql/tutorial/copyright.htm -share/doc/pgsql/tutorial/f17.htm -share/doc/pgsql/tutorial/index.html -share/doc/pgsql/tutorial/intro.htm -share/doc/pgsql/tutorial/intro172.htm -share/doc/pgsql/tutorial/intro300.htm -share/doc/pgsql/tutorial/intro56.htm -share/doc/pgsql/tutorial/notation.htm -share/doc/pgsql/tutorial/query.htm -share/doc/pgsql/tutorial/query1340.htm -share/doc/pgsql/tutorial/query1356.htm -share/doc/pgsql/tutorial/query1378.htm -share/doc/pgsql/tutorial/query1387.htm -share/doc/pgsql/tutorial/query1405.htm -share/doc/pgsql/tutorial/query1413.htm -share/doc/pgsql/tutorial/query1432.htm -share/doc/pgsql/tutorial/query1437.htm -share/doc/pgsql/tutorial/query1444.htm -share/doc/pgsql/tutorial/sql-language.htm -share/doc/pgsql/tutorial/sql.htm -share/doc/pgsql/tutorial/sql490.htm -share/doc/pgsql/tutorial/sql608.htm -share/doc/pgsql/tutorial/start.htm -share/doc/pgsql/tutorial/start1216.htm -share/doc/pgsql/tutorial/start1238.htm -share/doc/pgsql/tutorial/terminology.htm -share/doc/pgsql/tutorial/tutorial.htm -share/doc/pgsql/tutorial/tutorial.html -share/doc/pgsql/tutorial/y2k.htm -share/doc/pgsql/user/about.htm -share/doc/pgsql/user/app-createdb.htm -share/doc/pgsql/user/app-createlang.htm -share/doc/pgsql/user/app-createuser.htm -share/doc/pgsql/user/app-dropdb.htm -share/doc/pgsql/user/app-droplang.htm -share/doc/pgsql/user/app-dropuser.htm -share/doc/pgsql/user/app-ecpg.htm -share/doc/pgsql/user/app-initdb.htm -share/doc/pgsql/user/app-initlocation.htm -share/doc/pgsql/user/app-ipcclean.htm -share/doc/pgsql/user/app-pg-passwd.htm -share/doc/pgsql/user/app-pg-upgrade.htm -share/doc/pgsql/user/app-pgaccess.htm -share/doc/pgsql/user/app-pgadmin.htm -share/doc/pgsql/user/app-pgctl.htm -share/doc/pgsql/user/app-pgdump.htm -share/doc/pgsql/user/app-pgdumpall.htm -share/doc/pgsql/user/app-pgtclsh.htm -share/doc/pgsql/user/app-pgtksh.htm -share/doc/pgsql/user/app-postgres.htm -share/doc/pgsql/user/app-postmaster.htm -share/doc/pgsql/user/app-psql.htm -share/doc/pgsql/user/app-vacuumdb.htm -share/doc/pgsql/user/applications.htm -share/doc/pgsql/user/arrays.htm -share/doc/pgsql/user/biblio.htm -share/doc/pgsql/user/c4087.htm -share/doc/pgsql/user/c40874113.htm -share/doc/pgsql/user/c40874340.htm -share/doc/pgsql/user/c4358.htm -share/doc/pgsql/user/c43584371.htm -share/doc/pgsql/user/c4884.htm -share/doc/pgsql/user/c4929.htm -share/doc/pgsql/user/c49294939.htm -share/doc/pgsql/user/c49294943.htm -share/doc/pgsql/user/copyright.htm -share/doc/pgsql/user/datatype.htm -share/doc/pgsql/user/datatype1034.htm -share/doc/pgsql/user/datatype1066.htm -share/doc/pgsql/user/datatype1130.htm -share/doc/pgsql/user/datatype1645.htm -share/doc/pgsql/user/datatype1677.htm -share/doc/pgsql/user/datatype1916.htm -share/doc/pgsql/user/datetime-appendix.htm -share/doc/pgsql/user/datetime-appendix16981.htm -share/doc/pgsql/user/environ.htm -share/doc/pgsql/user/functions.htm -share/doc/pgsql/user/functions2589.htm -share/doc/pgsql/user/functions2729.htm -share/doc/pgsql/user/functions2872.htm -share/doc/pgsql/user/functions2972.htm -share/doc/pgsql/user/functions3439.htm -share/doc/pgsql/user/functions3637.htm -share/doc/pgsql/user/index.html -share/doc/pgsql/user/indices.htm -share/doc/pgsql/user/inherit.htm -share/doc/pgsql/user/intro.htm -share/doc/pgsql/user/intro172.htm -share/doc/pgsql/user/intro300.htm -share/doc/pgsql/user/intro56.htm -share/doc/pgsql/user/manage.htm -share/doc/pgsql/user/manage4810.htm -share/doc/pgsql/user/manage4834.htm -share/doc/pgsql/user/manage4876.htm -share/doc/pgsql/user/mvcc.htm -share/doc/pgsql/user/mvcc4564.htm -share/doc/pgsql/user/mvcc4617.htm -share/doc/pgsql/user/mvcc4629.htm -share/doc/pgsql/user/mvcc4642.htm -share/doc/pgsql/user/mvcc4719.htm -share/doc/pgsql/user/mvcc4740.htm -share/doc/pgsql/user/notation.htm -share/doc/pgsql/user/operators.htm -share/doc/pgsql/user/operators2123.htm -share/doc/pgsql/user/operators2194.htm -share/doc/pgsql/user/operators2263.htm -share/doc/pgsql/user/operators2373.htm -share/doc/pgsql/user/operators2432.htm -share/doc/pgsql/user/operators2486.htm -share/doc/pgsql/user/partial-index.htm -share/doc/pgsql/user/pl-perl.htm -share/doc/pgsql/user/pl-perl4529.htm -share/doc/pgsql/user/pl-perl4538.htm -share/doc/pgsql/user/preface.htm -share/doc/pgsql/user/sql-abort.htm -share/doc/pgsql/user/sql-altergroup.htm -share/doc/pgsql/user/sql-altertable.htm -share/doc/pgsql/user/sql-alteruser.htm -share/doc/pgsql/user/sql-begin.htm -share/doc/pgsql/user/sql-close.htm -share/doc/pgsql/user/sql-cluster.htm -share/doc/pgsql/user/sql-commands.htm -share/doc/pgsql/user/sql-comment.htm -share/doc/pgsql/user/sql-commit.htm -share/doc/pgsql/user/sql-copy.htm -share/doc/pgsql/user/sql-createaggregate.htm -share/doc/pgsql/user/sql-createconstraint.htm -share/doc/pgsql/user/sql-createdatabase.htm -share/doc/pgsql/user/sql-createfunction.htm -share/doc/pgsql/user/sql-creategroup.htm -share/doc/pgsql/user/sql-createindex.htm -share/doc/pgsql/user/sql-createlanguage.htm -share/doc/pgsql/user/sql-createoperator.htm -share/doc/pgsql/user/sql-createrule.htm -share/doc/pgsql/user/sql-createsequence.htm -share/doc/pgsql/user/sql-createtable.htm -share/doc/pgsql/user/sql-createtableas.htm -share/doc/pgsql/user/sql-createtrigger.htm -share/doc/pgsql/user/sql-createtype.htm -share/doc/pgsql/user/sql-createuser.htm -share/doc/pgsql/user/sql-createview.htm -share/doc/pgsql/user/sql-declare.htm -share/doc/pgsql/user/sql-delete.htm -share/doc/pgsql/user/sql-dropaggregate.htm -share/doc/pgsql/user/sql-dropdatabase.htm -share/doc/pgsql/user/sql-dropfunction.htm -share/doc/pgsql/user/sql-dropgroup.htm -share/doc/pgsql/user/sql-dropindex.htm -share/doc/pgsql/user/sql-droplanguage.htm -share/doc/pgsql/user/sql-dropoperator.htm -share/doc/pgsql/user/sql-droprule.htm -share/doc/pgsql/user/sql-dropsequence.htm -share/doc/pgsql/user/sql-droptable.htm -share/doc/pgsql/user/sql-droptrigger.htm -share/doc/pgsql/user/sql-droptype.htm -share/doc/pgsql/user/sql-dropuser.htm -share/doc/pgsql/user/sql-dropview.htm -share/doc/pgsql/user/sql-end.htm -share/doc/pgsql/user/sql-explain.htm -share/doc/pgsql/user/sql-fetch.htm -share/doc/pgsql/user/sql-grant.htm -share/doc/pgsql/user/sql-insert.htm -share/doc/pgsql/user/sql-listen.htm -share/doc/pgsql/user/sql-load.htm -share/doc/pgsql/user/sql-lock.htm -share/doc/pgsql/user/sql-move.htm -share/doc/pgsql/user/sql-notify.htm -share/doc/pgsql/user/sql-reindex.htm -share/doc/pgsql/user/sql-reset.htm -share/doc/pgsql/user/sql-revoke.htm -share/doc/pgsql/user/sql-rollback.htm -share/doc/pgsql/user/sql-select.htm -share/doc/pgsql/user/sql-selectinto.htm -share/doc/pgsql/user/sql-set.htm -share/doc/pgsql/user/sql-show.htm -share/doc/pgsql/user/sql-truncate.htm -share/doc/pgsql/user/sql-unlisten.htm -share/doc/pgsql/user/sql-update.htm -share/doc/pgsql/user/sql-vacuum.htm -share/doc/pgsql/user/storage.htm -share/doc/pgsql/user/syntax.htm -share/doc/pgsql/user/syntax515.htm -share/doc/pgsql/user/syntax521.htm -share/doc/pgsql/user/syntax539.htm -share/doc/pgsql/user/syntax604.htm -share/doc/pgsql/user/syntax649.htm -share/doc/pgsql/user/syntax654.htm -share/doc/pgsql/user/terminology.htm -share/doc/pgsql/user/typeconv.htm -share/doc/pgsql/user/typeconv3755.htm -share/doc/pgsql/user/typeconv3818.htm -share/doc/pgsql/user/typeconv3871.htm -share/doc/pgsql/user/typeconv3891.htm -share/doc/pgsql/user/user.htm -share/doc/pgsql/user/user.html -share/doc/pgsql/user/utilities.htm -share/doc/pgsql/user/y2k.htm -@dirrm share/doc/pgsql/admin -@dirrm share/doc/pgsql/postgres -@dirrm share/doc/pgsql/programmer -@dirrm share/doc/pgsql/tutorial -@dirrm share/doc/pgsql/user -@dirrm share/doc/pgsql diff --git a/databases/postgresql91-server/pkg-plist.jdbc b/databases/postgresql91-server/pkg-plist.jdbc deleted file mode 100644 index bef5d75506b4..000000000000 --- a/databases/postgresql91-server/pkg-plist.jdbc +++ /dev/null @@ -1,13 +0,0 @@ -share/examples/pgsql/jdbc/ImageViewer.java -share/examples/pgsql/jdbc/basic.java -share/examples/pgsql/jdbc/blobtest.java -share/examples/pgsql/jdbc/datestyle.java -share/examples/pgsql/jdbc/metadata.java -share/examples/pgsql/jdbc/psql.java -share/examples/pgsql/jdbc/threadsafe.java -share/examples/pgsql/jdbc/README -share/examples/pgsql/jdbc/README_6.3 -@dirrm share/examples/pgsql/jdbc -@dirrm share/examples/pgsql -share/java/classes/postgresql.jar -@unexec rmdir %D/share/java 2>/dev/null || true diff --git a/databases/postgresql91-server/pkg-plist.tcl b/databases/postgresql91-server/pkg-plist.tcl deleted file mode 100644 index b01eaf1571ed..000000000000 --- a/databases/postgresql91-server/pkg-plist.tcl +++ /dev/null @@ -1,141 +0,0 @@ -pgsql/bin/pgaccess -pgsql/bin/pgtclsh -pgsql/bin/pgtksh -pgsql/include/libpgtcl.h -pgsql/lib/libpgtcl.a -pgsql/lib/libpgtcl.so -pgsql/lib/libpgtcl.so.2 -pgsql/lib/pltcl.so -pgsql/pgaccess/images/icon_button.gif -pgsql/pgaccess/images/icon_checkbutton.gif -pgsql/pgaccess/images/icon_entry.gif -pgsql/pgaccess/images/icon_frame.gif -pgsql/pgaccess/images/icon_label.gif -pgsql/pgaccess/images/icon_listbox.gif -pgsql/pgaccess/images/icon_query.gif -pgsql/pgaccess/images/icon_radiobutton.gif -pgsql/pgaccess/images/icon_text.gif -pgsql/pgaccess/lib/database.tcl -pgsql/pgaccess/lib/forms.tcl -pgsql/pgaccess/lib/functions.tcl -pgsql/pgaccess/lib/help/abort.hlp -pgsql/pgaccess/lib/help/add_records.hlp -pgsql/pgaccess/lib/help/alter_table.hlp -pgsql/pgaccess/lib/help/alter_user.hlp -pgsql/pgaccess/lib/help/author.hlp -pgsql/pgaccess/lib/help/begin.hlp -pgsql/pgaccess/lib/help/close.hlp -pgsql/pgaccess/lib/help/cluster.hlp -pgsql/pgaccess/lib/help/commit.hlp -pgsql/pgaccess/lib/help/copy.hlp -pgsql/pgaccess/lib/help/copyrights.hlp -pgsql/pgaccess/lib/help/create_aggregate.hlp -pgsql/pgaccess/lib/help/create_database.hlp -pgsql/pgaccess/lib/help/create_function.hlp -pgsql/pgaccess/lib/help/create_index.hlp -pgsql/pgaccess/lib/help/create_language.hlp -pgsql/pgaccess/lib/help/create_operator.hlp -pgsql/pgaccess/lib/help/create_rule.hlp -pgsql/pgaccess/lib/help/create_sequence.hlp -pgsql/pgaccess/lib/help/create_table.hlp -pgsql/pgaccess/lib/help/create_table_as.hlp -pgsql/pgaccess/lib/help/create_trigger.hlp -pgsql/pgaccess/lib/help/create_type.hlp -pgsql/pgaccess/lib/help/create_user.hlp -pgsql/pgaccess/lib/help/create_view.hlp -pgsql/pgaccess/lib/help/data_types.hlp -pgsql/pgaccess/lib/help/datefunc.hlp -pgsql/pgaccess/lib/help/declare.hlp -pgsql/pgaccess/lib/help/delete.hlp -pgsql/pgaccess/lib/help/drop_aggregate.hlp -pgsql/pgaccess/lib/help/drop_database.hlp -pgsql/pgaccess/lib/help/drop_function.hlp -pgsql/pgaccess/lib/help/drop_index.hlp -pgsql/pgaccess/lib/help/drop_language.hlp -pgsql/pgaccess/lib/help/drop_operator.hlp -pgsql/pgaccess/lib/help/drop_rule.hlp -pgsql/pgaccess/lib/help/drop_sequence.hlp -pgsql/pgaccess/lib/help/drop_table.hlp -pgsql/pgaccess/lib/help/drop_trigger.hlp -pgsql/pgaccess/lib/help/drop_type.hlp -pgsql/pgaccess/lib/help/drop_user.hlp -pgsql/pgaccess/lib/help/drop_view.hlp -pgsql/pgaccess/lib/help/explain.hlp -pgsql/pgaccess/lib/help/fetch.hlp -pgsql/pgaccess/lib/help/form_design.hlp -pgsql/pgaccess/lib/help/forms.hlp -pgsql/pgaccess/lib/help/functions.hlp -pgsql/pgaccess/lib/help/geomfunc.hlp -pgsql/pgaccess/lib/help/grant.hlp -pgsql/pgaccess/lib/help/history.hlp -pgsql/pgaccess/lib/help/index.hlp -pgsql/pgaccess/lib/help/inheritance.hlp -pgsql/pgaccess/lib/help/insert.hlp -pgsql/pgaccess/lib/help/ipv4func.hlp -pgsql/pgaccess/lib/help/isolation.hlp -pgsql/pgaccess/lib/help/keywords.hlp -pgsql/pgaccess/lib/help/listen.hlp -pgsql/pgaccess/lib/help/load.hlp -pgsql/pgaccess/lib/help/lock.hlp -pgsql/pgaccess/lib/help/mathfunc.hlp -pgsql/pgaccess/lib/help/move.hlp -pgsql/pgaccess/lib/help/mvcc.hlp -pgsql/pgaccess/lib/help/new_query.hlp -pgsql/pgaccess/lib/help/new_table.hlp -pgsql/pgaccess/lib/help/notify.hlp -pgsql/pgaccess/lib/help/open_query.hlp -pgsql/pgaccess/lib/help/open_table.hlp -pgsql/pgaccess/lib/help/pgfunctions.hlp -pgsql/pgaccess/lib/help/postgresql.hlp -pgsql/pgaccess/lib/help/queries.hlp -pgsql/pgaccess/lib/help/reports.hlp -pgsql/pgaccess/lib/help/reset.hlp -pgsql/pgaccess/lib/help/revoke.hlp -pgsql/pgaccess/lib/help/rollback.hlp -pgsql/pgaccess/lib/help/schema.hlp -pgsql/pgaccess/lib/help/scripts.hlp -pgsql/pgaccess/lib/help/select.hlp -pgsql/pgaccess/lib/help/select_into.hlp -pgsql/pgaccess/lib/help/sequences.hlp -pgsql/pgaccess/lib/help/set.hlp -pgsql/pgaccess/lib/help/show.hlp -pgsql/pgaccess/lib/help/sql_guide.hlp -pgsql/pgaccess/lib/help/sqlfunc.hlp -pgsql/pgaccess/lib/help/stringfunc.hlp -pgsql/pgaccess/lib/help/tables.hlp -pgsql/pgaccess/lib/help/unlisten.hlp -pgsql/pgaccess/lib/help/update.hlp -pgsql/pgaccess/lib/help/users.hlp -pgsql/pgaccess/lib/help/vacuum.hlp -pgsql/pgaccess/lib/help/view_table_structure.hlp -pgsql/pgaccess/lib/help/views.hlp -pgsql/pgaccess/lib/help/visual_designer.hlp -pgsql/pgaccess/lib/help/y2k.hlp -pgsql/pgaccess/lib/help.tcl -pgsql/pgaccess/lib/languages/czech -pgsql/pgaccess/lib/languages/deutsch -pgsql/pgaccess/lib/languages/francais -pgsql/pgaccess/lib/languages/italiano -pgsql/pgaccess/lib/languages/magyar -pgsql/pgaccess/lib/languages/portugues -pgsql/pgaccess/lib/languages/romana -pgsql/pgaccess/lib/languages/russian.koi8r -pgsql/pgaccess/lib/languages/russian_win -pgsql/pgaccess/lib/languages/spanish -pgsql/pgaccess/lib/mainlib.tcl -pgsql/pgaccess/lib/preferences.tcl -pgsql/pgaccess/lib/queries.tcl -pgsql/pgaccess/lib/reports.tcl -pgsql/pgaccess/lib/schema.tcl -pgsql/pgaccess/lib/scripts.tcl -pgsql/pgaccess/lib/sequences.tcl -pgsql/pgaccess/lib/tables.tcl -pgsql/pgaccess/lib/users.tcl -pgsql/pgaccess/lib/views.tcl -pgsql/pgaccess/lib/visualqb.tcl -pgsql/pgaccess/main.tcl -@dirrm pgsql/pgaccess/images -@dirrm pgsql/pgaccess/lib/help -@dirrm pgsql/pgaccess/lib/languages -@dirrm pgsql/pgaccess/lib -@dirrm pgsql/pgaccess diff --git a/databases/postgresql91-server/scripts/configure b/databases/postgresql91-server/scripts/configure deleted file mode 100644 index 4a92ee450ebe..000000000000 --- a/databases/postgresql91-server/scripts/configure +++ /dev/null @@ -1,7 +0,0 @@ -#! /bin/sh - -# $FreeBSD$ - -cd $WRKSRC || exit 1 - -perl -pi -e "s=!!JAVA_HOME!!=${JAVA_HOME}=; s=!!PREFIX!!=${PREFIX}=" ${WRKSRC}/interfaces/jdbc/Makefile diff --git a/databases/postgresql91-server/scripts/createuser b/databases/postgresql91-server/scripts/createuser deleted file mode 100644 index 2abe201e7a4b..000000000000 --- a/databases/postgresql91-server/scripts/createuser +++ /dev/null @@ -1,50 +0,0 @@ -#!/usr/bin/perl -# - -eval '(exit $?0)' && eval 'exec /usr/bin/perl -S $0 ${1+"$@"}' -& eval 'exec /usr/bin/perl -S $0 $argv:q' -if 0; - -if( $> ) { - print "\nYou must be root to run this step!\n\n"; - exit 1; -} - -if( getpwnam( "pgsql" ) ) { - ( $null, $null, $pgUID ) = getpwnam( "pgsql" ); -} else { - $pgUID = 70; - while( getpwuid( $pgUID ) ) { - $pgUID++; - } -} - -if( getgrnam( "pgsql" ) ) { - ( $null, $null, $pgGID ) = getgrnam( "pgsql" ); -} else { - $pgGID = 70; - while( getgrgid( $pgGID ) ) { - $pgGID++; - } - &append_file( "/etc/group", "pgsql:*:$pgGID:" ); -} - -print "pgsql user using uid $pgUID\n"; -print "pgsql user using gid $pgGID\n"; - -system( "/usr/bin/chpass -a \"pgsql:*:$pgUID:$pgGID\:\:0:0:PostgreSQL pseudo-user:$ENV{'PREFIX'}/pgsql:/bin/sh\"" ); - -sub append_file { - local($file,@list) = @_; - local($LOCK_EX) = 2; - local($LOCK_NB) = 4; - local($LOCK_UN) = 8; - - open(F, ">> $file") || die "$file: $!\n"; - while( ! flock( F, $LOCK_EX | $LOCK_NB ) ) { - exit 1; - } - print F join( "\n", @list) . "\n"; - close F; - flock( F, $LOCK_UN ); -} diff --git a/databases/postgresql92-server/Makefile b/databases/postgresql92-server/Makefile deleted file mode 100644 index 94aa22cad135..000000000000 --- a/databases/postgresql92-server/Makefile +++ /dev/null @@ -1,259 +0,0 @@ -# New ports collection makefile for: PostgreSQL -# Date created: November 13, 1998 -# Whom: Marc G. Fournier <scrappy@FreeBSD.org> -# -# $FreeBSD$ -# - -PORTNAME= postgresql -PORTVERSION= 7.0.2 -CATEGORIES= databases -MASTER_SITES= ftp://ftp.postgresql.org/pub/%SUBDIR%/ \ - ftp://ftp.de.postgresql.org/%SUBDIR%/ \ - ftp://ftp.iodynamics.com/pub/mirror/postgresql/%SUBDIR%/ \ - ftp://ftp.digex.net/pub/packages/database/postgresql/%SUBDIR%/ \ - ftp://ftp.sunet.se/pub/unix/databases/relational/postgresql/%SUBDIR%/ -MASTER_SITE_SUBDIR= source/v${PORTVERSION} -DISTFILES= ${PORTNAME}-${PORTVERSION}.base${EXTRACT_SUFX} \ - ${PORTNAME}-${PORTVERSION}.support${EXTRACT_SUFX} \ - ${PORTNAME}-${PORTVERSION}.docs${EXTRACT_SUFX} -# ${PORTNAME}-${PORTVERSION}.test${EXTRACT_SUFX} -DIST_SUBDIR= postgresql - -MAINTAINER= andreas@FreeBSD.org - -.if ${MACHINE_ARCH} == "alpha" -BROKEN= doesn\'t build on the alpha yet -.endif - -Y2K= http://www.postgresql.org/y2k.html - -INSTALLS_SHLIB= YES -LDCONFIG_DIRS= %%PREFIX%%/pgsql/lib - -# if you want to use the tcl/tk frontend pgaccess, then you need to build -# postgresql with tcl support by typing: make -DWITH_TCL -.if defined(WITH_TCL) -TCL_INCDIR= ${LOCALBASE}/include/tcl8.3 -TK_INCDIR= ${LOCALBASE}/include/tk8.3 -MAKE_ENV= TCL_INCDIR=${TCL_INCDIR} -CONFIGURE_ENV= WISH=${LOCALBASE}/bin/wish8.3 -LIB_DEPENDS= tcl83.1:${PORTSDIR}/lang/tcl83 \ - tk83.1:${PORTSDIR}/x11-toolkits/tk83 -CONFIGURE_TCL= --with-tcl --with-tclconfig="${LOCALBASE}/lib/tcl8.3 ${LOCALBASE}/lib/tk8.3" -.endif - -# if you want to disable the multibyte support, type: -# make -DWITHOUT_MULTIBYTE -# -# if you want to set the default encoding for the multibyte support, type: -# make DEFAULT_ENCODING=<encoding> -# where <encoding> is one of these: -# SQL_ASCII LATIN1 LATIN2 LATIN3 LATIN4 LATIN5 -# EUC_JP EUC_CN EUC_KR EUC_TW KOI8 -# UNICODE MULE_INTERNAL WIN ALT -.if defined(WITHOUT_MULTIBYTE) -CONFIGURE_MULTIBYTE= # none -.elif defined(DEFAULT_ENCODING) -CONFIGURE_MULTIBYTE= --enable-multibyte="${DEFAULT_ENCODING}" -.else -CONFIGURE_MULTIBYTE= --enable-multibyte -.endif - -# if you want jdbc, type make -DWITH_JDBC -# Honors JAVA_HOME if you have it set, and don't want the dependency. -.if defined(WITH_JDBC) -JAVA_HOME?= ${LOCALBASE}/jdk1.1.8 -BUILD_DEPENDS= ${JAVA_HOME}/bin/javac:${PORTSDIR}/java/jdk -SCRIPTS_ENV+= JAVA_HOME=${JAVA_HOME} -.endif - -WRKSRC= ${WRKDIR}/${DISTNAME}/src -DOCDIR= ${WRKDIR}/${DISTNAME}/doc - -USE_GMAKE= YES -MAKEFILE= GNUmakefile -HAS_CONFIGURE= YES -CONFIGURE_ARGS= --prefix=${PREFIX}/pgsql \ - --enable-locale \ - --with-template=`uname -s | ${TR} '[A-Z]' '[a-z]'` \ - --with-includes="${PREFIX}/include ${TCL_INCDIR} ${TK_INCDIR}" \ - ${CONFIGURE_TCL} \ - ${CONFIGURE_MULTIBYTE} \ - --with-libraries=${PREFIX}/lib - -MAN1= createdb.1 createlang.1 createuser.1 dropdb.1 droplang.1 \ - dropuser.1 ecpg.1 initdb.1 initlocation.1 ipcclean.1 pg_ctl.1 \ - pg_dump.1 pg_dumpall.1 pg_passwd.1 pg_upgrade.1 pgaccess.1 \ - pgadmin.1 pgtclsh.1 pgtksh.1 postgres.1 postmaster.1 psql.1 \ - vacuumdb.1 -MANL= abort.l alter_group.l alter_table.l alter_user.l \ - begin.l close.l cluster.l comment.l commit.l copy.l \ - create_aggregate.l create_constraint_trigger.l \ - create_database.l create_function.l create_group.l \ - create_index.l create_language.l create_operator.l \ - create_rule.l create_sequence.l create_table.l \ - create_table_as.l create_trigger.l create_type.l \ - create_user.l create_view.l declare.l delete.l \ - drop_aggregate.l drop_database.l drop_function.l \ - drop_group.l drop_index.l drop_language.l \ - drop_operator.l drop_rule.l drop_sequence.l \ - drop_table.l drop_trigger.l drop_type.l drop_user.l \ - drop_view.l end.l explain.l fetch.l grant.l insert.l \ - listen.l load.l lock.l move.l notify.l reindex.l \ - reset.l revoke.l rollback.l select.l select_into.l \ - set.l show.l truncate.l unlisten.l update.l vacuum.l - -MANPREFIX= ${PREFIX}/pgsql - -pre-fetch: - @${ECHO_MSG} "To install and run postgresql you need to compile kernel with:" - @${ECHO_MSG} " options \"SYSVSHM, SYSVSEM, SYSVMSG\"" -.if !defined(WITH_TCL) - @${ECHO_MSG} "To build the \"PostgreSQL to Tcl interface library\", libpgtcl, type:" - @${ECHO_MSG} " make -DWITH_TCL" -.else - @${ECHO_MSG} "Building PostgreSQL with \"libpgtcl\"." -.endif -.if !defined(WITHOUT_MULTIBYTE) - @${ECHO_MSG} "To disable multibyte support, type:" - @${ECHO_MSG} " make -DWITHOUT_MULTIBYTE" -.if !defined(DEFAULT_ENCODING) - @${ECHO_MSG} "To set the default encoding for the multibyte support, type:" - @${ECHO_MSG} " make DEFAULT_ENCODING=<encoding>" - @${ECHO_MSG} "where <encoding> is one of these:" - @${ECHO_MSG} " SQL_ASCII LATIN1 LATIN2 LATIN3 LATIN4 LATIN5" - @${ECHO_MSG} " EUC_JP EUC_CN EUC_KR EUC_TW KOI8" - @${ECHO_MSG} " UNICODE MULE_INTERNAL WIN ALT" -.else - @${ECHO_MSG} "The default encoding is '${DEFAULT_ENCODING}'." -.endif -.else - @${ECHO_MSG} "Building PostgreSQL without multibyte support." -.endif -.if !defined(WITH_JDBC) - @${ECHO_MSG} "To build Java (JDBC) support, type:" - @${ECHO_MSG} " make -DWITH_JDBC" -.else - @${ECHO_MSG} "Building PostgreSQL with \"postgresql.jar\"." -.endif - -post-patch: - @ ${MV} ${WRKSRC}/template/freebsd ${WRKSRC}/template/freebsd.orig - @ ${SED} -e 's#CFLAGS:-O2 -m486 -pipe#CFLAGS:${CFLAGS}#' \ - -e 's#USE_LOCALE:no#USE_LOCALE:yes#' \ - ${WRKSRC}/template/freebsd.orig >> ${WRKSRC}/template/freebsd - @ ${MV} ${WRKSRC}/Makefile.global.in ${WRKSRC}/Makefile.global.in.old - @ ${SED} -e 's=!!PREFIX!!=${PREFIX}=g' \ - ${WRKSRC}/Makefile.global.in.old \ - >> ${WRKSRC}/Makefile.global.in - -post-build: -.if defined(WITH_JDBC) - @ cd ${WRKSRC}/interfaces/jdbc && ${GMAKE} -.if !defined(NOPORTDOCS) - @ cd ${WRKSRC}/interfaces/jdbc && ${GMAKE} examples -.endif -.endif - @ ${ECHO} "------------------------------------------------------------" - @ ${ECHO} "Dump existing databases, before installing new db version !!" - @ ${ECHO} "Detailed instructions, see" - @ ${ECHO} "${WRKDIR}/${DISTNAME}/INSTALL" - @ ${ECHO} "------------------------------------------------------------" - -pre-install: -.if defined(PACKAGE_BUILDING) - ${RM} -rf ${PREFIX}/pgsql -.endif - @ ${MKDIR} ${PREFIX}/pgsql - @ ${SETENV} ${MAKE_ENV} perl ${SCRIPTDIR}/createuser - -post-install: -.if defined(NOPORTDOCS) - @ ( cd ${DOCDIR}; ${GMAKE} man ) -.else - @ ( cd ${DOCDIR}; ${GMAKE} install ) -.endif - @ if [ ! -f ${PREFIX}/pgsql/.profile ]; then \ - ${ECHO} "PATH=${PATH}:${PREFIX}/pgsql/bin" \ - > ${PREFIX}/pgsql/.profile; \ - ${ECHO} "MANPATH=${MANPATH}:${PREFIX}/pgsql/man" \ - >> ${PREFIX}/pgsql/.profile; \ - ${ECHO} "PGLIB=${PREFIX}/pgsql/lib" \ - >> ${PREFIX}/pgsql/.profile; \ - ${ECHO} "# note: PGDATA overwrites the -D startup option" \ - >> ${PREFIX}/pgsql/.profile; \ - ${ECHO} "PGDATA=${PREFIX}/pgsql/data" \ - >> ${PREFIX}/pgsql/.profile; \ - ${ECHO} "DISPLAY=:0" \ - >> ${PREFIX}/pgsql/.profile; \ - ${ECHO} "export PATH MANPATH PGLIB PGDATA DISPLAY" \ - >> ${PREFIX}/pgsql/.profile; \ - ${ECHO} "# if you want to make regression tests use this TZ" \ - >> ${PREFIX}/pgsql/.profile; \ - ${ECHO} "#TZ=PST8PDT" \ - >> ${PREFIX}/pgsql/.profile; \ - ${ECHO} "#export TZ" \ - >> ${PREFIX}/pgsql/.profile; \ - fi - @ ${CHOWN} -R pgsql:pgsql ${PREFIX}/pgsql - @ ${ECHO} 'Initializing PostgreSQL Databases - this may take a few minutes...' - @ ${SETENV} OBJFORMAT=${PORTOBJFORMAT} ${LDCONFIG} -m ${PREFIX}/pgsql/lib - @ su -l pgsql -c 'PATH=${PREFIX}/pgsql/bin:${PATH} LD_LIBRARY_PATH=${PREFIX}/pgsql/lib ${PREFIX}/pgsql/bin/initdb --pglib=${PREFIX}/pgsql/lib --pgdata=${PREFIX}/pgsql/data' - @ ${SED} -e "s=!!PREFIX!!=${PREFIX}=g" < ${FILESDIR}/pgsql.sh.tmpl \ - > ${PREFIX}/etc/rc.d/pgsql.sh - @ ${CHMOD} 554 ${PREFIX}/etc/rc.d/pgsql.sh - @ ${CHOWN} root.pgsql ${PREFIX}/etc/rc.d/pgsql.sh - @ ${INSTALL_DATA} ${FILESDIR}/post-install-notes ${PREFIX}/pgsql -.if defined(WITHOUT_MULTIBYTE) - @${CP} ${TMPPLIST} ${TMPPLIST}.nomulti - @${GREP} -v pgsql/bin/pg_encoding ${TMPPLIST}.nomulti > ${TMPPLIST} -.endif -.if defined(WITH_TCL) - @${CP} ${TMPPLIST} ${TMPPLIST}.notcl - @${CAT} ${PKGDIR}/PLIST.tcl ${TMPPLIST}.notcl > ${TMPPLIST} - @${RM} ${TMPPLIST}.notcl -.endif -.if defined(WITH_JDBC) - @ ${MKDIR} -m 0555 ${PREFIX}/share/java/classes - @ ${INSTALL_DATA} ${WRKSRC}/interfaces/jdbc/postgresql.jar \ - ${PREFIX}/share/java/classes/postgresql.jar - @ ${ECHO_MSG} "---------------------------------------------------------" - @ ${ECHO_MSG} "Putting postgresql.jar in" - @ ${ECHO_MSG} "${PREFIX}/share/java/classes/postgresql.jar" - @ ${ECHO_MSG} "Add this to your CLASSPATH!" - @ ${ECHO_MSG} "ALSO NOTE: path inside jar file modified from 6.5.x:" - @ ${ECHO_MSG} " 'postgresql.*' -> 'org.postgresql.*'!" - @ ${ECHO_MSG} "You will need to modify you applications' props files." - @ ${ECHO_MSG} "---------------------------------------------------------" - @ ${CAT} ${PKGDIR}/PLIST.jdbc >> ${TMPPLIST} -.if !defined(NOPORTDOCS) - @ ${MKDIR} -m 0555 ${PREFIX}/share/examples/pgsql/jdbc - @ ${INSTALL_DATA} ${WRKSRC}/interfaces/jdbc/example/*java \ - ${PREFIX}/share/examples/pgsql/jdbc - @ ${INSTALL_DATA} ${WRKSRC}/interfaces/jdbc/README* \ - ${PREFIX}/share/examples/pgsql/jdbc - @ ${ECHO_MSG} "---------------------------------------------------------" - @ ${ECHO_MSG} "Putting jdbc examples into ${PREFIX}/share/examples/pgsql" - @ ${ECHO_MSG} "---------------------------------------------------------" - @ ${CAT} ${PKGDIR}/PLIST.doc >> ${TMPPLIST} -.endif -.endif -.if !defined(NOPORTDOCS) - ${MKDIR} ${PREFIX}/share/doc/pgsql - @ ${GMAKE} -C ${WRKDIR}/${DISTNAME}/doc install - ${INSTALL_MAN} ${WRKDIR}/${DISTNAME}/doc/FAQ* ${PREFIX}/share/doc/pgsql - ${INSTALL_MAN} ${WRKDIR}/${DISTNAME}/doc/README* ${PREFIX}/share/doc/pgsql - ${INSTALL_MAN} ${WRKDIR}/${DISTNAME}/doc/TODO ${PREFIX}/share/doc/pgsql -# ${INSTALL_MAN} ${WRKDIR}/${DISTNAME}/doc/*ps.gz ${PREFIX}/share/doc/pgsql -.endif -.if !defined(BATCH) - @ more -e ${FILESDIR}/post-install-notes -.endif -.if !defined(DEBUG_FLAGS) -.for file in ecpg pg_dump pg_id pg_passwd pg_version postgres psql - @ strip ${PREFIX}/pgsql/bin/${file} -.endfor -.endif - -.include <bsd.port.mk> diff --git a/databases/postgresql92-server/distinfo b/databases/postgresql92-server/distinfo deleted file mode 100644 index 309ea1e11614..000000000000 --- a/databases/postgresql92-server/distinfo +++ /dev/null @@ -1,4 +0,0 @@ -MD5 (postgresql/postgresql-7.0.2.base.tar.gz) = 871d23b85d9a3599a7ed75dfc7da7ba7 -MD5 (postgresql/postgresql-7.0.2.support.tar.gz) = c21180a6485d85785c8e69f0cbff05dd -MD5 (postgresql/postgresql-7.0.2.docs.tar.gz) = efac1f87463f252e54d72b256885b883 -MD5 (postgresql/postgresql-7.0.2.test.tar.gz) = 3443b3d83194c396f20aee2adc6f93bf diff --git a/databases/postgresql92-server/files/patch-aj b/databases/postgresql92-server/files/patch-aj deleted file mode 100644 index 4231fc94ede9..000000000000 --- a/databases/postgresql92-server/files/patch-aj +++ /dev/null @@ -1,67 +0,0 @@ ---- bin/pg_passwd/pg_passwd.c.orig Mon Apr 17 05:45:18 2000 -+++ bin/pg_passwd/pg_passwd.c Sat May 20 17:54:59 2000 -@@ -18,11 +18,15 @@ - - #endif - -+#ifndef _POSIX_SOURCE -+# define _PASSWORD_LEN 128 /* max length, not containing NULL */ -+#endif -+ - char *comname; - static void usage(FILE *stream); - static void read_pwd_file(char *filename); - static void write_pwd_file(char *filename, char *bkname); --static void encrypt_pwd(char key[9], char salt[3], char passwd[14]); -+static void encrypt_pwd(char key[9], char salt[3], char passwd[_PASSWORD_LEN+1]); - static void prompt_for_username(char *username); - static void prompt_for_password(char *prompt, char *password); - -@@ -150,7 +154,7 @@ - - if (q != NULL) - *(q++) = '\0'; -- if (strlen(p) != 13) -+ if (strlen(p) > _PASSWORD_LEN) - { - fprintf(stderr, "WARNING: %s: line %d: illegal password length.\n", - filename, npwds + 1); -@@ -214,7 +218,7 @@ - } - - static void --encrypt_pwd(char key[9], char salt[3], char passwd[14]) -+encrypt_pwd(char key[9], char salt[3], char passwd[_PASSWORD_LEN+1]) - { - int n; - -@@ -246,9 +250,9 @@ - - #ifdef NOT_USED - static int --check_pwd(char key[9], char passwd[14]) -+check_pwd(char key[9], char passwd[_PASSWORD_LEN+1]) - { -- char shouldbe[14]; -+ char shouldbe[_PASSWORD_LEN+1]; - char salt[3]; - - salt[0] = passwd[0]; -@@ -256,7 +260,7 @@ - salt[2] = '\0'; - encrypt_pwd(key, salt, shouldbe); - -- return strncmp(shouldbe, passwd, 13) == 0 ? 1 : 0; -+ return strncmp(shouldbe, passwd, _PASSWORD_LEN) == 0 ? 1 : 0; - } - - #endif -@@ -332,7 +336,7 @@ - char salt[3]; - char key[9], - key2[9]; -- char e_passwd[14]; -+ char e_passwd[_PASSWORD_LEN+1]; - int i; - - comname = argv[0]; diff --git a/databases/postgresql92-server/files/patch-ar b/databases/postgresql92-server/files/patch-ar deleted file mode 100644 index c5c8096fc141..000000000000 --- a/databases/postgresql92-server/files/patch-ar +++ /dev/null @@ -1,11 +0,0 @@ ---- configure.orig Sun Oct 10 14:37:07 1999 -+++ configure Sun Oct 10 14:37:29 1999 -@@ -1429,7 +1429,7 @@ - ELF_SYS=true - else - rm -rf conftest* -- if test "X$elf" = "Xyes" -+ if test "X$PORTOBJFORMAT" = "Xelf" - then - ELF_SYS=true - else diff --git a/databases/postgresql92-server/files/patch-as b/databases/postgresql92-server/files/patch-as deleted file mode 100644 index 3282168c4aed..000000000000 --- a/databases/postgresql92-server/files/patch-as +++ /dev/null @@ -1,11 +0,0 @@ ---- Makefile.global.in.orig Sun Dec 6 00:08:56 1998 -+++ Makefile.global.in Sat Feb 27 04:23:12 1999 -@@ -79,7 +79,7 @@ - POSTMANDIR= $(POSTGRESDIR)/man - - # Where the formatted documents (e.g., the reference manual) get installed. --POSTDOCDIR= $(POSTGRESDIR)/doc -+POSTDOCDIR= !!PREFIX!!/share/doc/pgsql - - # Where the header files necessary to build frontend programs get installed. - HEADERDIR= $(POSTGRESDIR)/include diff --git a/databases/postgresql92-server/files/patch-at b/databases/postgresql92-server/files/patch-at deleted file mode 100644 index 93e68a708211..000000000000 --- a/databases/postgresql92-server/files/patch-at +++ /dev/null @@ -1,11 +0,0 @@ ---- ../doc/Makefile.orig Sun Nov 29 06:30:13 1998 -+++ ../doc/Makefile Mon Jun 21 17:00:13 1999 -@@ -12,7 +12,7 @@ - # - #---------------------------------------------------------------------------- - --PGDOCS= $(POSTGRESDIR)/doc -+PGDOCS= $(POSTDOCDIR) - SRCDIR= ../src - - TAR= tar diff --git a/databases/postgresql92-server/files/patch-ba b/databases/postgresql92-server/files/patch-ba deleted file mode 100644 index a3b679b882c5..000000000000 --- a/databases/postgresql92-server/files/patch-ba +++ /dev/null @@ -1,25 +0,0 @@ ---- interfaces/jdbc/Makefile.orig Tue Mar 14 16:55:17 2000 -+++ interfaces/jdbc/Makefile Sun Apr 16 21:16:43 2000 -@@ -10,10 +10,10 @@ - - FIND = find - IDL2JAVA = idltojava -fno-cpp -fno-tie --JAR = jar --JAVA = java --JAVAC = javac -g --JAVADOC = javadoc -+JAR = !!JAVA_HOME!!/bin/jar -+JAVA = !!JAVA_HOME!!/bin/java -+JAVAC = !!JAVA_HOME!!/bin/javac -+JAVADOC = !!JAVA_HOME!!/bin/javadoc - RM = rm -f - TOUCH = touch - -@@ -40,6 +40,7 @@ - @echo To compile, type: - @echo " $(MAKE) jdbc2" - @echo ------------------------------------------------------------ -+ $(MAKE) jdbc1 - - msg: - @echo ------------------------------------------------------------ diff --git a/databases/postgresql92-server/files/patch-bb b/databases/postgresql92-server/files/patch-bb deleted file mode 100644 index ea0f1732dcb0..000000000000 --- a/databases/postgresql92-server/files/patch-bb +++ /dev/null @@ -1,13 +0,0 @@ ---- pl/tcl/Makefile~ Sat Apr 29 19:45:42 2000 -+++ pl/tcl/Makefile Sat May 20 22:42:22 2000 -@@ -71,7 +71,9 @@ - CFLAGS+= $(TCL_SHLIB_CFLAGS) $(TCL_DEFS) - - CFLAGS+= -I$(SRCDIR)/include -I$(SRCDIR)/backend $(PGSQL_INCLUDES) -- -+ -+CFLAGS+= -I$(TCL_INCDIR) -+ - # - # Uncomment the following to enable the unknown command lookup - # on the first of all calls to the call handler. See the doc diff --git a/databases/postgresql92-server/files/patch-bc b/databases/postgresql92-server/files/patch-bc deleted file mode 100644 index ff747fb84a2f..000000000000 --- a/databases/postgresql92-server/files/patch-bc +++ /dev/null @@ -1,5 +0,0 @@ ---- bin/pg_ctl/postmaster.opts.default.sample~ Mon Apr 17 05:45:17 2000 -+++ bin/pg_ctl/postmaster.opts.default.sample Tue May 23 02:46:30 2000 -@@ -1 +1 @@ -- -+-i -o "-F" diff --git a/databases/postgresql92-server/files/pgsql.sh.tmpl b/databases/postgresql92-server/files/pgsql.sh.tmpl deleted file mode 100644 index e1673b4850c2..000000000000 --- a/databases/postgresql92-server/files/pgsql.sh.tmpl +++ /dev/null @@ -1,34 +0,0 @@ -#!/bin/sh - -# $FreeBSD$ -# -# For postmaster startup options, edit $PGDATA/postmaster.opts.default -# Preinstalled options are -i -o "-F" - -case $1 in -start) - [ -d !!PREFIX!!/pgsql/lib ] && /sbin/ldconfig -m !!PREFIX!!/pgsql/lib - [ -x !!PREFIX!!/pgsql/bin/pg_ctl ] && { - su -l pgsql -c \ - 'exec !!PREFIX!!/pgsql/bin/pg_ctl -w start > !!PREFIX!!/pgsql/errlog 2>&1' - echo -n ' pgsql' - } - ;; - -stop) - [ -x !!PREFIX!!/pgsql/bin/pg_ctl ] && { - su -l pgsql -c 'exec !!PREFIX!!/pgsql/bin/pg_ctl -w -m fast stop' - } - ;; - -status) - [ -x !!PREFIX!!/pgsql/bin/pg_ctl ] && { - su -l pgsql -c 'exec !!PREFIX!!/pgsql/bin/pg_ctl status' - } - ;; - -*) - echo "usage: `basename $0` {start|stop|status}" >&2 - exit 64 - ;; -esac diff --git a/databases/postgresql92-server/files/post-install-notes b/databases/postgresql92-server/files/post-install-notes deleted file mode 100644 index 289a7651109a..000000000000 --- a/databases/postgresql92-server/files/post-install-notes +++ /dev/null @@ -1,16 +0,0 @@ - -Now that PostgreSQL is installed, you should read the documentation and -implementation guides. These can be found at: - - http://www.PostgreSQL.org/docs - -You may wish to subscribe to the PostgreSQL user-support mailing list. -Send an e-mail to pgsql-questions-request@postgresql.org with the -text "subscribe" in the message body. - -If you built PostgreSQL with TCL support, you can install the port -"pgaccess" to get a TCL/TK based database frontend for database -operations. - -To start PostgreSQL, run the startup script: -$PREFIX/etc/rc.d/pgsql.sh start diff --git a/databases/postgresql92-server/pkg-comment b/databases/postgresql92-server/pkg-comment deleted file mode 100644 index 2125016b133c..000000000000 --- a/databases/postgresql92-server/pkg-comment +++ /dev/null @@ -1 +0,0 @@ -A robust, next generation, object-relational DBMS diff --git a/databases/postgresql92-server/pkg-descr b/databases/postgresql92-server/pkg-descr deleted file mode 100644 index f48a33337e55..000000000000 --- a/databases/postgresql92-server/pkg-descr +++ /dev/null @@ -1,24 +0,0 @@ -PostgreSQL is a robust, next-generation, Object-Relational DBMS (ORDBMS), -derived from the Berkeley Postgres database management system. While -PostgreSQL retains the powerful object-relational data model, rich data types -and easy extensibility of Postgres, it replaces the PostQuel query language -with an extended subset of SQL. - -The original Postgres code was the effort of many graduate students, -undergraduate students, and staff programmers working under the direction of -Professor Michael Stonebraker at the University of California, Berkeley. In -1995, Andrew Yu and Jolly Chen took on the task of converting the DBMS query -language to SQL and created a new database system which came to known as -Postgres95. Many others contributed to the porting, testing, debugging and -enhancement of the Postgres95 code. As the code improved, and 1995 faded into -memory, PostgreSQL was born. - -PostgreSQL development is presently being performed by a team of Internet -developers who are now responsible for all current and future development. The -development team coordinator is Marc G. Fournier (scrappy@PostgreSQL.ORG). -Support is available from the PostgreSQL developer/user community through the -support mailing list (questions@PostgreSQL.ORG). - -PostgreSQL is free and the complete source is available. - -WWW: http://www.postgresql.org diff --git a/databases/postgresql92-server/pkg-install b/databases/postgresql92-server/pkg-install deleted file mode 100644 index 7f3a090fe4b6..000000000000 --- a/databases/postgresql92-server/pkg-install +++ /dev/null @@ -1,44 +0,0 @@ -#! /bin/sh - -# $FreeBSD$ - -PATH=/bin:/usr/sbin - -if [ -z "${DB_DIR}" ]; then - DB_DIR=${PKG_PREFIX}/pgsql/data -fi - -case $2 in -POST-INSTALL) - USER=pgsql - GROUP=${USER} - UID=89 - GID=${UID} - - if pw group show "${GROUP}" 2>/dev/null; then - echo "You already have a group \"${GROUP}\", so I will use it." - else - if pw groupadd ${GROUP} -g ${GID}; then - echo "Added group \"${GROUP}\"." - else - echo "Adding group \"${GROUP}\" failed..." - exit 1 - fi - fi - - if pw user show "${USER}" 2>/dev/null; then - echo "You already have a user \"${USER}\", so I will use it." - else - if pw useradd ${USER} -u ${UID} -g ${GROUP} -h - \ - -d ${DB_DIR} -s /sbin/nologin -c "PostgreSQL Daemon" - then - echo "Added user \"${USER}\"." - else - echo "Adding user \"${USER}\" failed..." - exit 1 - fi - fi - - chown -R ${USER}.${GROUP} ${DB_DIR} - ;; -esac diff --git a/databases/postgresql92-server/pkg-plist b/databases/postgresql92-server/pkg-plist deleted file mode 100644 index 9992da1174ae..000000000000 --- a/databases/postgresql92-server/pkg-plist +++ /dev/null @@ -1,168 +0,0 @@ -etc/rc.d/pgsql.sh -pgsql/.profile -pgsql/bin/createdb -pgsql/bin/createlang -pgsql/bin/createuser -pgsql/bin/dropdb -pgsql/bin/droplang -pgsql/bin/dropuser -pgsql/bin/ecpg -pgsql/bin/initdb -pgsql/bin/initlocation -pgsql/bin/ipcclean -pgsql/bin/pg_ctl -pgsql/bin/pg_dump -pgsql/bin/pg_dumpall -pgsql/bin/pg_encoding -pgsql/bin/pg_id -pgsql/bin/pg_passwd -pgsql/bin/pg_upgrade -pgsql/bin/pg_version -pgsql/bin/postgres -pgsql/bin/postmaster -pgsql/bin/psql -pgsql/bin/vacuumdb -pgsql/data/PG_VERSION -pgsql/data/base/template1/PG_VERSION -pgsql/data/base/template1/pg_aggregate -pgsql/data/base/template1/pg_aggregate_name_type_index -pgsql/data/base/template1/pg_am -pgsql/data/base/template1/pg_am_name_index -pgsql/data/base/template1/pg_amop -pgsql/data/base/template1/pg_amop_opid_index -pgsql/data/base/template1/pg_amop_strategy_index -pgsql/data/base/template1/pg_amproc -pgsql/data/base/template1/pg_attrdef -pgsql/data/base/template1/pg_attrdef_adrelid_index -pgsql/data/base/template1/pg_attribute -pgsql/data/base/template1/pg_attribute_relid_attnam_index -pgsql/data/base/template1/pg_attribute_relid_attnum_index -pgsql/data/base/template1/pg_class -pgsql/data/base/template1/pg_class_oid_index -pgsql/data/base/template1/pg_class_relname_index -pgsql/data/base/template1/pg_description -pgsql/data/base/template1/pg_description_objoid_index -pgsql/data/base/template1/pg_index -pgsql/data/base/template1/pg_index_indexrelid_index -pgsql/data/base/template1/pg_indexes -pgsql/data/base/template1/pg_inheritproc -pgsql/data/base/template1/pg_inherits -pgsql/data/base/template1/pg_inherits_relid_seqno_index -pgsql/data/base/template1/pg_ipl -pgsql/data/base/template1/pg_language -pgsql/data/base/template1/pg_language_name_index -pgsql/data/base/template1/pg_language_oid_index -pgsql/data/base/template1/pg_listener -pgsql/data/base/template1/pg_listener_relname_pid_index -pgsql/data/base/template1/pg_opclass -pgsql/data/base/template1/pg_opclass_deftype_index -pgsql/data/base/template1/pg_opclass_name_index -pgsql/data/base/template1/pg_operator -pgsql/data/base/template1/pg_operator_oid_index -pgsql/data/base/template1/pg_operator_oprname_l_r_k_index -pgsql/data/base/template1/pg_proc -pgsql/data/base/template1/pg_proc_oid_index -pgsql/data/base/template1/pg_proc_proname_narg_type_index -pgsql/data/base/template1/pg_relcheck -pgsql/data/base/template1/pg_relcheck_rcrelid_index -pgsql/data/base/template1/pg_rewrite -pgsql/data/base/template1/pg_rewrite_oid_index -pgsql/data/base/template1/pg_rewrite_rulename_index -pgsql/data/base/template1/pg_rules -pgsql/data/base/template1/pg_statistic -pgsql/data/base/template1/pg_statistic_relid_att_index -pgsql/data/base/template1/pg_tables -pgsql/data/base/template1/pg_trigger -pgsql/data/base/template1/pg_trigger_tgconstrname_index -pgsql/data/base/template1/pg_trigger_tgconstrrelid_index -pgsql/data/base/template1/pg_trigger_tgrelid_index -pgsql/data/base/template1/pg_type -pgsql/data/base/template1/pg_type_oid_index -pgsql/data/base/template1/pg_type_typname_index -pgsql/data/base/template1/pg_user -pgsql/data/base/template1/pg_views -pgsql/data/pg_control -pgsql/data/pg_database -pgsql/data/pg_geqo.sample -pgsql/data/pg_group -pgsql/data/pg_group_name_index -pgsql/data/pg_group_sysid_index -pgsql/data/pg_hba.conf -pgsql/data/pg_log -pgsql/data/pg_shadow -pgsql/data/pg_variable -pgsql/data/postmaster.opts.default -pgsql/include/access/attnum.h -pgsql/include/c.h -pgsql/include/commands/trigger.h -pgsql/include/config.h -pgsql/include/ecpgerrno.h -pgsql/include/ecpglib.h -pgsql/include/ecpgtype.h -pgsql/include/executor/spi.h -pgsql/include/fmgr.h -pgsql/include/lib/dllist.h -pgsql/include/libpgeasy.h -pgsql/include/libpq/libpq-fs.h -pgsql/include/libpq/pqcomm.h -pgsql/include/libpq++/pgconnection.h -pgsql/include/libpq++/pgcursordb.h -pgsql/include/libpq++/pgdatabase.h -pgsql/include/libpq++/pglobject.h -pgsql/include/libpq++/pgtransdb.h -pgsql/include/libpq++.h -pgsql/include/libpq-fe.h -pgsql/include/libpq-int.h -pgsql/include/os.h -pgsql/include/postgres.h -pgsql/include/postgres_ext.h -pgsql/include/pqexpbuffer.h -pgsql/include/sql3types.h -pgsql/include/sqlca.h -pgsql/include/utils/elog.h -pgsql/include/utils/geo_decls.h -pgsql/include/utils/mcxt.h -pgsql/include/utils/palloc.h -pgsql/lib/global1.bki.source -pgsql/lib/global1.description -pgsql/lib/libecpg.a -pgsql/lib/libecpg.so -pgsql/lib/libecpg.so.3 -pgsql/lib/libpgeasy.a -pgsql/lib/libpgeasy.so -pgsql/lib/libpgeasy.so.2 -pgsql/lib/libpq++.a -pgsql/lib/libpq++.so -pgsql/lib/libpq++.so.3 -pgsql/lib/libpq.a -pgsql/lib/libpq.so -pgsql/lib/libpq.so.2 -pgsql/lib/local1_template1.bki.source -pgsql/lib/local1_template1.description -pgsql/lib/pg_geqo.sample -pgsql/lib/pg_hba.conf.sample -pgsql/lib/pg_ident.conf.sample -pgsql/lib/pg_options.sample -pgsql/lib/plpgsql.so -pgsql/lib/postmaster.opts.default.sample -pgsql/post-install-notes -@dirrm pgsql/bin -@dirrm pgsql/data/base/template1 -@dirrm pgsql/data/base -@dirrm pgsql/data/pg_xlog -@dirrm pgsql/data -@dirrm pgsql/include/access -@dirrm pgsql/include/commands -@dirrm pgsql/include/executor -@dirrm pgsql/include/lib -@dirrm pgsql/include/libpq -@dirrm pgsql/include/libpq++ -@dirrm pgsql/include/port/freebsd -@dirrm pgsql/include/port -@dirrm pgsql/include/utils -@dirrm pgsql/include -@dirrm pgsql/lib -@dirrm pgsql/man/man1 -@dirrm pgsql/man/manl -@dirrm pgsql/man -@dirrm pgsql diff --git a/databases/postgresql92-server/pkg-plist.doc b/databases/postgresql92-server/pkg-plist.doc deleted file mode 100644 index 06b7bd9ea116..000000000000 --- a/databases/postgresql92-server/pkg-plist.doc +++ /dev/null @@ -1,888 +0,0 @@ -share/doc/pgsql/FAQ -share/doc/pgsql/FAQ_AIX -share/doc/pgsql/FAQ_BSDI -share/doc/pgsql/FAQ_DEV -share/doc/pgsql/FAQ_DigitalUnix -share/doc/pgsql/FAQ_FreeBSD -share/doc/pgsql/FAQ_HPUX -share/doc/pgsql/FAQ_Irix -share/doc/pgsql/FAQ_Linux -share/doc/pgsql/FAQ_QNX4 -share/doc/pgsql/FAQ_SCO -share/doc/pgsql/FAQ_Solaris -share/doc/pgsql/README.Charsets -share/doc/pgsql/README.NT -share/doc/pgsql/README.fsync -share/doc/pgsql/README.inet -share/doc/pgsql/README.locale -share/doc/pgsql/README.mb -share/doc/pgsql/README.mb.jp -share/doc/pgsql/TODO -share/doc/pgsql/admin/admin.htm -share/doc/pgsql/admin/admin.html -share/doc/pgsql/admin/biblio.htm -share/doc/pgsql/admin/c573.htm -share/doc/pgsql/admin/c573602.htm -share/doc/pgsql/admin/c573680.htm -share/doc/pgsql/admin/c573717.htm -share/doc/pgsql/admin/copyright.htm -share/doc/pgsql/admin/disk.htm -share/doc/pgsql/admin/index.html -share/doc/pgsql/admin/install-win32.htm -share/doc/pgsql/admin/install-win321073.htm -share/doc/pgsql/admin/install-win321082.htm -share/doc/pgsql/admin/install.htm -share/doc/pgsql/admin/install855.htm -share/doc/pgsql/admin/intro-ag.htm -share/doc/pgsql/admin/intro-ag162.htm -share/doc/pgsql/admin/layout.gif -share/doc/pgsql/admin/layout.htm -share/doc/pgsql/admin/manage-ag.htm -share/doc/pgsql/admin/manage-ag1604.htm -share/doc/pgsql/admin/manage-ag1646.htm -share/doc/pgsql/admin/manage-ag1655.htm -share/doc/pgsql/admin/newuser.htm -share/doc/pgsql/admin/notation.htm -share/doc/pgsql/admin/pg-options.htm -share/doc/pgsql/admin/ports.htm -share/doc/pgsql/admin/ports481.htm -share/doc/pgsql/admin/postmaster.htm -share/doc/pgsql/admin/preface.htm -share/doc/pgsql/admin/recovery.htm -share/doc/pgsql/admin/regress.htm -share/doc/pgsql/admin/regress1861.htm -share/doc/pgsql/admin/regress1895.htm -share/doc/pgsql/admin/regress1941.htm -share/doc/pgsql/admin/release.htm -share/doc/pgsql/admin/release2009.htm -share/doc/pgsql/admin/release2020.htm -share/doc/pgsql/admin/release2031.htm -share/doc/pgsql/admin/release2042.htm -share/doc/pgsql/admin/release2124.htm -share/doc/pgsql/admin/release2135.htm -share/doc/pgsql/admin/release2146.htm -share/doc/pgsql/admin/release2187.htm -share/doc/pgsql/admin/release2203.htm -share/doc/pgsql/admin/release2222.htm -share/doc/pgsql/admin/release2266.htm -share/doc/pgsql/admin/release2288.htm -share/doc/pgsql/admin/release2303.htm -share/doc/pgsql/admin/release2312.htm -share/doc/pgsql/admin/release2335.htm -share/doc/pgsql/admin/release2349.htm -share/doc/pgsql/admin/release2352.htm -share/doc/pgsql/admin/release2377.htm -share/doc/pgsql/admin/release2414.htm -share/doc/pgsql/admin/release2421.htm -share/doc/pgsql/admin/release2428.htm -share/doc/pgsql/admin/release2435.htm -share/doc/pgsql/admin/release2439.htm -share/doc/pgsql/admin/runtime.htm -share/doc/pgsql/admin/security.htm -share/doc/pgsql/admin/security1450.htm -share/doc/pgsql/admin/security1485.htm -share/doc/pgsql/admin/security1509.htm -share/doc/pgsql/admin/security1530.htm -share/doc/pgsql/admin/terminology.htm -share/doc/pgsql/admin/trouble.htm -share/doc/pgsql/admin/trouble1721.htm -share/doc/pgsql/admin/trouble1738.htm -share/doc/pgsql/admin/y2k.htm -share/doc/pgsql/postgres/about.htm -share/doc/pgsql/postgres/advanced.htm -share/doc/pgsql/postgres/advanced27923.htm -share/doc/pgsql/postgres/advanced27945.htm -share/doc/pgsql/postgres/app-createdb.htm -share/doc/pgsql/postgres/app-createlang.htm -share/doc/pgsql/postgres/app-createuser.htm -share/doc/pgsql/postgres/app-dropdb.htm -share/doc/pgsql/postgres/app-droplang.htm -share/doc/pgsql/postgres/app-dropuser.htm -share/doc/pgsql/postgres/app-ecpg.htm -share/doc/pgsql/postgres/app-initdb.htm -share/doc/pgsql/postgres/app-initlocation.htm -share/doc/pgsql/postgres/app-ipcclean.htm -share/doc/pgsql/postgres/app-pg-passwd.htm -share/doc/pgsql/postgres/app-pg-upgrade.htm -share/doc/pgsql/postgres/app-pgaccess.htm -share/doc/pgsql/postgres/app-pgadmin.htm -share/doc/pgsql/postgres/app-pgctl.htm -share/doc/pgsql/postgres/app-pgdump.htm -share/doc/pgsql/postgres/app-pgdumpall.htm -share/doc/pgsql/postgres/app-pgtclsh.htm -share/doc/pgsql/postgres/app-pgtksh.htm -share/doc/pgsql/postgres/app-postgres.htm -share/doc/pgsql/postgres/app-postmaster.htm -share/doc/pgsql/postgres/app-psql.htm -share/doc/pgsql/postgres/app-vacuumdb.htm -share/doc/pgsql/postgres/applications.htm -share/doc/pgsql/postgres/arch-pg.htm -share/doc/pgsql/postgres/arch.htm -share/doc/pgsql/postgres/arrays.htm -share/doc/pgsql/postgres/biblio.htm -share/doc/pgsql/postgres/bki.htm -share/doc/pgsql/postgres/bki26573.htm -share/doc/pgsql/postgres/bki26657.htm -share/doc/pgsql/postgres/bki26681.htm -share/doc/pgsql/postgres/bki26742.htm -share/doc/pgsql/postgres/c16883.htm -share/doc/pgsql/postgres/c1688316912.htm -share/doc/pgsql/postgres/c1688316990.htm -share/doc/pgsql/postgres/c1688317027.htm -share/doc/pgsql/postgres/c19986.htm -share/doc/pgsql/postgres/c21722.htm -share/doc/pgsql/postgres/c2172221764.htm -share/doc/pgsql/postgres/c2172221782.htm -share/doc/pgsql/postgres/c2172221924.htm -share/doc/pgsql/postgres/c2172221936.htm -share/doc/pgsql/postgres/c2172221956.htm -share/doc/pgsql/postgres/c2172221961.htm -share/doc/pgsql/postgres/c25129.htm -share/doc/pgsql/postgres/c4091.htm -share/doc/pgsql/postgres/c40914117.htm -share/doc/pgsql/postgres/c40914344.htm -share/doc/pgsql/postgres/c4362.htm -share/doc/pgsql/postgres/c43624375.htm -share/doc/pgsql/postgres/c4888.htm -share/doc/pgsql/postgres/c4933.htm -share/doc/pgsql/postgres/c49334943.htm -share/doc/pgsql/postgres/c49334947.htm -share/doc/pgsql/postgres/catalogs.gif -share/doc/pgsql/postgres/clientserver.gif -share/doc/pgsql/postgres/compiler.htm -share/doc/pgsql/postgres/connections.gif -share/doc/pgsql/postgres/copyright.htm -share/doc/pgsql/postgres/cvs.htm -share/doc/pgsql/postgres/cvs28436.htm -share/doc/pgsql/postgres/cvs28492.htm -share/doc/pgsql/postgres/datatype.htm -share/doc/pgsql/postgres/datatype1038.htm -share/doc/pgsql/postgres/datatype1070.htm -share/doc/pgsql/postgres/datatype1134.htm -share/doc/pgsql/postgres/datatype1649.htm -share/doc/pgsql/postgres/datatype1681.htm -share/doc/pgsql/postgres/datatype1920.htm -share/doc/pgsql/postgres/datetime-appendix.htm -share/doc/pgsql/postgres/datetime-appendix28356.htm -share/doc/pgsql/postgres/dfunc.htm -share/doc/pgsql/postgres/dfunc20136.htm -share/doc/pgsql/postgres/dfunc20146.htm -share/doc/pgsql/postgres/disk.htm -share/doc/pgsql/postgres/docguide.htm -share/doc/pgsql/postgres/docguide28718.htm -share/doc/pgsql/postgres/docguide28749.htm -share/doc/pgsql/postgres/docguide28840.htm -share/doc/pgsql/postgres/docguide28861.htm -share/doc/pgsql/postgres/docguide28887.htm -share/doc/pgsql/postgres/docguide29024.htm -share/doc/pgsql/postgres/docguide29362.htm -share/doc/pgsql/postgres/environ.htm -share/doc/pgsql/postgres/extend.htm -share/doc/pgsql/postgres/extend18852.htm -share/doc/pgsql/postgres/extend18864.htm -share/doc/pgsql/postgres/func-ref.htm -share/doc/pgsql/postgres/functions.htm -share/doc/pgsql/postgres/functions2593.htm -share/doc/pgsql/postgres/functions2733.htm -share/doc/pgsql/postgres/functions2876.htm -share/doc/pgsql/postgres/functions2976.htm -share/doc/pgsql/postgres/functions3443.htm -share/doc/pgsql/postgres/functions3641.htm -share/doc/pgsql/postgres/geqo-biblio.htm -share/doc/pgsql/postgres/geqo.htm -share/doc/pgsql/postgres/geqo25594.htm -share/doc/pgsql/postgres/geqo25617.htm -share/doc/pgsql/postgres/geqo25655.htm -share/doc/pgsql/postgres/gist.htm -share/doc/pgsql/postgres/index.html -share/doc/pgsql/postgres/indices.htm -share/doc/pgsql/postgres/inherit.htm -share/doc/pgsql/postgres/install-win32.htm -share/doc/pgsql/postgres/install-win3217383.htm -share/doc/pgsql/postgres/install-win3217392.htm -share/doc/pgsql/postgres/install.htm -share/doc/pgsql/postgres/install17165.htm -share/doc/pgsql/postgres/intro.htm -share/doc/pgsql/postgres/intro176.htm -share/doc/pgsql/postgres/intro304.htm -share/doc/pgsql/postgres/intro60.htm -share/doc/pgsql/postgres/jdbc.htm -share/doc/pgsql/postgres/jdbc24909.htm -share/doc/pgsql/postgres/jdbc24921.htm -share/doc/pgsql/postgres/jdbc24927.htm -share/doc/pgsql/postgres/jdbc24935.htm -share/doc/pgsql/postgres/jdbc24953.htm -share/doc/pgsql/postgres/jdbc24990.htm -share/doc/pgsql/postgres/jdbc25021.htm -share/doc/pgsql/postgres/jdbc25026.htm -share/doc/pgsql/postgres/jdbc25030.htm -share/doc/pgsql/postgres/jdbc25056.htm -share/doc/pgsql/postgres/jdbc25086.htm -share/doc/pgsql/postgres/largeobjects.htm -share/doc/pgsql/postgres/largeobjects21625.htm -share/doc/pgsql/postgres/largeobjects21628.htm -share/doc/pgsql/postgres/largeobjects21707.htm -share/doc/pgsql/postgres/largeobjects21714.htm -share/doc/pgsql/postgres/largeobjects21718.htm -share/doc/pgsql/postgres/layout.gif -share/doc/pgsql/postgres/layout.htm -share/doc/pgsql/postgres/libpq-chapter.htm -share/doc/pgsql/postgres/libpq-chapter22422.htm -share/doc/pgsql/postgres/libpq-chapter22577.htm -share/doc/pgsql/postgres/libpq-chapter22724.htm -share/doc/pgsql/postgres/libpq-chapter22736.htm -share/doc/pgsql/postgres/libpq-chapter22774.htm -share/doc/pgsql/postgres/libpq-chapter22844.htm -share/doc/pgsql/postgres/libpq-chapter22857.htm -share/doc/pgsql/postgres/libpq-chapter22942.htm -share/doc/pgsql/postgres/libpq-envars.htm -share/doc/pgsql/postgres/libpq-threading.htm -share/doc/pgsql/postgres/libpqplusplus.htm -share/doc/pgsql/postgres/libpqplusplus23034.htm -share/doc/pgsql/postgres/libpqplusplus23044.htm -share/doc/pgsql/postgres/libpqplusplus23074.htm -share/doc/pgsql/postgres/libpqplusplus23179.htm -share/doc/pgsql/postgres/libpqplusplus23202.htm -share/doc/pgsql/postgres/lisp.htm -share/doc/pgsql/postgres/manage-ag.htm -share/doc/pgsql/postgres/manage-ag17914.htm -share/doc/pgsql/postgres/manage-ag17956.htm -share/doc/pgsql/postgres/manage-ag17965.htm -share/doc/pgsql/postgres/manage.htm -share/doc/pgsql/postgres/manage4814.htm -share/doc/pgsql/postgres/manage4838.htm -share/doc/pgsql/postgres/manage4880.htm -share/doc/pgsql/postgres/mvcc.htm -share/doc/pgsql/postgres/mvcc4568.htm -share/doc/pgsql/postgres/mvcc4621.htm -share/doc/pgsql/postgres/mvcc4633.htm -share/doc/pgsql/postgres/mvcc4646.htm -share/doc/pgsql/postgres/mvcc4723.htm -share/doc/pgsql/postgres/mvcc4744.htm -share/doc/pgsql/postgres/newuser.htm -share/doc/pgsql/postgres/notation.htm -share/doc/pgsql/postgres/odbc.htm -share/doc/pgsql/postgres/odbc24433.htm -share/doc/pgsql/postgres/odbc24471.htm -share/doc/pgsql/postgres/odbc24644.htm -share/doc/pgsql/postgres/odbc24666.htm -share/doc/pgsql/postgres/operators.htm -share/doc/pgsql/postgres/operators2127.htm -share/doc/pgsql/postgres/operators2198.htm -share/doc/pgsql/postgres/operators2267.htm -share/doc/pgsql/postgres/operators2377.htm -share/doc/pgsql/postgres/operators2436.htm -share/doc/pgsql/postgres/operators2490.htm -share/doc/pgsql/postgres/overview.htm -share/doc/pgsql/postgres/overview25194.htm -share/doc/pgsql/postgres/overview25219.htm -share/doc/pgsql/postgres/overview25347.htm -share/doc/pgsql/postgres/overview25403.htm -share/doc/pgsql/postgres/overview25457.htm -share/doc/pgsql/postgres/page.htm -share/doc/pgsql/postgres/page26805.htm -share/doc/pgsql/postgres/page26819.htm -share/doc/pgsql/postgres/part-admin.htm -share/doc/pgsql/postgres/part-appendix.htm -share/doc/pgsql/postgres/part-developer.htm -share/doc/pgsql/postgres/part-interfaces.htm -share/doc/pgsql/postgres/part-programmer.htm -share/doc/pgsql/postgres/part-tutorial.htm -share/doc/pgsql/postgres/part-user.htm -share/doc/pgsql/postgres/partial-index.htm -share/doc/pgsql/postgres/pg-options-dev.htm -share/doc/pgsql/postgres/pg-options.htm -share/doc/pgsql/postgres/pgeasy-chapter.htm -share/doc/pgsql/postgres/pgtcl-pgconndefaults.htm -share/doc/pgsql/postgres/pgtcl-pgconnect.htm -share/doc/pgsql/postgres/pgtcl-pgdisconnect.htm -share/doc/pgsql/postgres/pgtcl-pgexec.htm -share/doc/pgsql/postgres/pgtcl-pglisten.htm -share/doc/pgsql/postgres/pgtcl-pgloclose.htm -share/doc/pgsql/postgres/pgtcl-pglocreat.htm -share/doc/pgsql/postgres/pgtcl-pgloexport.htm -share/doc/pgsql/postgres/pgtcl-pgloimport.htm -share/doc/pgsql/postgres/pgtcl-pglolseek.htm -share/doc/pgsql/postgres/pgtcl-pgloopen.htm -share/doc/pgsql/postgres/pgtcl-pgloread.htm -share/doc/pgsql/postgres/pgtcl-pglotell.htm -share/doc/pgsql/postgres/pgtcl-pglounlink.htm -share/doc/pgsql/postgres/pgtcl-pglowrite.htm -share/doc/pgsql/postgres/pgtcl-pgresult.htm -share/doc/pgsql/postgres/pgtcl-pgselect.htm -share/doc/pgsql/postgres/pgtcl.htm -share/doc/pgsql/postgres/pgtcl23317.htm -share/doc/pgsql/postgres/pgtcl23321.htm -share/doc/pgsql/postgres/pl-perl.htm -share/doc/pgsql/postgres/pl-perl4533.htm -share/doc/pgsql/postgres/pl-perl4542.htm -share/doc/pgsql/postgres/ports.htm -share/doc/pgsql/postgres/ports16791.htm -share/doc/pgsql/postgres/postgres.htm -share/doc/pgsql/postgres/postgres.html -share/doc/pgsql/postgres/postmaster.htm -share/doc/pgsql/postgres/preface.htm -share/doc/pgsql/postgres/protocol.htm -share/doc/pgsql/postgres/protocol25770.htm -share/doc/pgsql/postgres/protocol25925.htm -share/doc/pgsql/postgres/protocol25962.htm -share/doc/pgsql/postgres/query.htm -share/doc/pgsql/postgres/query27752.htm -share/doc/pgsql/postgres/query27768.htm -share/doc/pgsql/postgres/query27790.htm -share/doc/pgsql/postgres/query27799.htm -share/doc/pgsql/postgres/query27817.htm -share/doc/pgsql/postgres/query27825.htm -share/doc/pgsql/postgres/query27844.htm -share/doc/pgsql/postgres/query27849.htm -share/doc/pgsql/postgres/query27856.htm -share/doc/pgsql/postgres/recovery.htm -share/doc/pgsql/postgres/regress.htm -share/doc/pgsql/postgres/regress18171.htm -share/doc/pgsql/postgres/regress18205.htm -share/doc/pgsql/postgres/regress18251.htm -share/doc/pgsql/postgres/release.htm -share/doc/pgsql/postgres/release18319.htm -share/doc/pgsql/postgres/release18330.htm -share/doc/pgsql/postgres/release18341.htm -share/doc/pgsql/postgres/release18352.htm -share/doc/pgsql/postgres/release18434.htm -share/doc/pgsql/postgres/release18445.htm -share/doc/pgsql/postgres/release18456.htm -share/doc/pgsql/postgres/release18497.htm -share/doc/pgsql/postgres/release18513.htm -share/doc/pgsql/postgres/release18532.htm -share/doc/pgsql/postgres/release18576.htm -share/doc/pgsql/postgres/release18598.htm -share/doc/pgsql/postgres/release18613.htm -share/doc/pgsql/postgres/release18622.htm -share/doc/pgsql/postgres/release18645.htm -share/doc/pgsql/postgres/release18659.htm -share/doc/pgsql/postgres/release18662.htm -share/doc/pgsql/postgres/release18687.htm -share/doc/pgsql/postgres/release18724.htm -share/doc/pgsql/postgres/release18731.htm -share/doc/pgsql/postgres/release18738.htm -share/doc/pgsql/postgres/release18745.htm -share/doc/pgsql/postgres/release18749.htm -share/doc/pgsql/postgres/rules.htm -share/doc/pgsql/postgres/rules19478.htm -share/doc/pgsql/postgres/rules19639.htm -share/doc/pgsql/postgres/rules19770.htm -share/doc/pgsql/postgres/rules19784.htm -share/doc/pgsql/postgres/runtime.htm -share/doc/pgsql/postgres/security.htm -share/doc/pgsql/postgres/security17760.htm -share/doc/pgsql/postgres/security17795.htm -share/doc/pgsql/postgres/security17819.htm -share/doc/pgsql/postgres/security17840.htm -share/doc/pgsql/postgres/signals.htm -share/doc/pgsql/postgres/spi-spiconnect.htm -share/doc/pgsql/postgres/spi-spicopytuple.htm -share/doc/pgsql/postgres/spi-spiexec.htm -share/doc/pgsql/postgres/spi-spiexecp.htm -share/doc/pgsql/postgres/spi-spifinish.htm -share/doc/pgsql/postgres/spi-spifname.htm -share/doc/pgsql/postgres/spi-spifnumber.htm -share/doc/pgsql/postgres/spi-spigetbinval.htm -share/doc/pgsql/postgres/spi-spigetrelname.htm -share/doc/pgsql/postgres/spi-spigettype.htm -share/doc/pgsql/postgres/spi-spigettypeid.htm -share/doc/pgsql/postgres/spi-spigetvalue.htm -share/doc/pgsql/postgres/spi-spimodifytuple.htm -share/doc/pgsql/postgres/spi-spipalloc.htm -share/doc/pgsql/postgres/spi-spipfree.htm -share/doc/pgsql/postgres/spi-spiprepare.htm -share/doc/pgsql/postgres/spi-spirepalloc.htm -share/doc/pgsql/postgres/spi-spisaveplan.htm -share/doc/pgsql/postgres/spi.htm -share/doc/pgsql/postgres/spi20808.htm -share/doc/pgsql/postgres/spi21521.htm -share/doc/pgsql/postgres/spi21543.htm -share/doc/pgsql/postgres/spi21548.htm -share/doc/pgsql/postgres/sql-abort.htm -share/doc/pgsql/postgres/sql-altergroup.htm -share/doc/pgsql/postgres/sql-altertable.htm -share/doc/pgsql/postgres/sql-alteruser.htm -share/doc/pgsql/postgres/sql-begin.htm -share/doc/pgsql/postgres/sql-close.htm -share/doc/pgsql/postgres/sql-cluster.htm -share/doc/pgsql/postgres/sql-commands.htm -share/doc/pgsql/postgres/sql-comment.htm -share/doc/pgsql/postgres/sql-commit.htm -share/doc/pgsql/postgres/sql-copy.htm -share/doc/pgsql/postgres/sql-createaggregate.htm -share/doc/pgsql/postgres/sql-createconstraint.htm -share/doc/pgsql/postgres/sql-createdatabase.htm -share/doc/pgsql/postgres/sql-createfunction.htm -share/doc/pgsql/postgres/sql-creategroup.htm -share/doc/pgsql/postgres/sql-createindex.htm -share/doc/pgsql/postgres/sql-createlanguage.htm -share/doc/pgsql/postgres/sql-createoperator.htm -share/doc/pgsql/postgres/sql-createrule.htm -share/doc/pgsql/postgres/sql-createsequence.htm -share/doc/pgsql/postgres/sql-createtable.htm -share/doc/pgsql/postgres/sql-createtableas.htm -share/doc/pgsql/postgres/sql-createtrigger.htm -share/doc/pgsql/postgres/sql-createtype.htm -share/doc/pgsql/postgres/sql-createuser.htm -share/doc/pgsql/postgres/sql-createview.htm -share/doc/pgsql/postgres/sql-declare.htm -share/doc/pgsql/postgres/sql-delete.htm -share/doc/pgsql/postgres/sql-dropaggregate.htm -share/doc/pgsql/postgres/sql-dropdatabase.htm -share/doc/pgsql/postgres/sql-dropfunction.htm -share/doc/pgsql/postgres/sql-dropgroup.htm -share/doc/pgsql/postgres/sql-dropindex.htm -share/doc/pgsql/postgres/sql-droplanguage.htm -share/doc/pgsql/postgres/sql-dropoperator.htm -share/doc/pgsql/postgres/sql-droprule.htm -share/doc/pgsql/postgres/sql-dropsequence.htm -share/doc/pgsql/postgres/sql-droptable.htm -share/doc/pgsql/postgres/sql-droptrigger.htm -share/doc/pgsql/postgres/sql-droptype.htm -share/doc/pgsql/postgres/sql-dropuser.htm -share/doc/pgsql/postgres/sql-dropview.htm -share/doc/pgsql/postgres/sql-end.htm -share/doc/pgsql/postgres/sql-explain.htm -share/doc/pgsql/postgres/sql-fetch.htm -share/doc/pgsql/postgres/sql-grant.htm -share/doc/pgsql/postgres/sql-insert.htm -share/doc/pgsql/postgres/sql-language.htm -share/doc/pgsql/postgres/sql-listen.htm -share/doc/pgsql/postgres/sql-load.htm -share/doc/pgsql/postgres/sql-lock.htm -share/doc/pgsql/postgres/sql-move.htm -share/doc/pgsql/postgres/sql-notify.htm -share/doc/pgsql/postgres/sql-reindex.htm -share/doc/pgsql/postgres/sql-reset.htm -share/doc/pgsql/postgres/sql-revoke.htm -share/doc/pgsql/postgres/sql-rollback.htm -share/doc/pgsql/postgres/sql-select.htm -share/doc/pgsql/postgres/sql-selectinto.htm -share/doc/pgsql/postgres/sql-set.htm -share/doc/pgsql/postgres/sql-show.htm -share/doc/pgsql/postgres/sql-truncate.htm -share/doc/pgsql/postgres/sql-unlisten.htm -share/doc/pgsql/postgres/sql-update.htm -share/doc/pgsql/postgres/sql-vacuum.htm -share/doc/pgsql/postgres/sql.htm -share/doc/pgsql/postgres/sql26902.htm -share/doc/pgsql/postgres/sql27020.htm -share/doc/pgsql/postgres/start.htm -share/doc/pgsql/postgres/start27628.htm -share/doc/pgsql/postgres/start27650.htm -share/doc/pgsql/postgres/storage.htm -share/doc/pgsql/postgres/syntax.htm -share/doc/pgsql/postgres/syntax519.htm -share/doc/pgsql/postgres/syntax525.htm -share/doc/pgsql/postgres/syntax543.htm -share/doc/pgsql/postgres/syntax608.htm -share/doc/pgsql/postgres/syntax653.htm -share/doc/pgsql/postgres/syntax658.htm -share/doc/pgsql/postgres/terminology.htm -share/doc/pgsql/postgres/triggers.htm -share/doc/pgsql/postgres/triggers20224.htm -share/doc/pgsql/postgres/triggers20281.htm -share/doc/pgsql/postgres/triggers20290.htm -share/doc/pgsql/postgres/trouble.htm -share/doc/pgsql/postgres/trouble18031.htm -share/doc/pgsql/postgres/trouble18048.htm -share/doc/pgsql/postgres/typeconv.htm -share/doc/pgsql/postgres/typeconv3759.htm -share/doc/pgsql/postgres/typeconv3822.htm -share/doc/pgsql/postgres/typeconv3875.htm -share/doc/pgsql/postgres/typeconv3895.htm -share/doc/pgsql/postgres/utilities.htm -share/doc/pgsql/postgres/xaggr.htm -share/doc/pgsql/postgres/xfunc.htm -share/doc/pgsql/postgres/xfunc19011.htm -share/doc/pgsql/postgres/xfunc19017.htm -share/doc/pgsql/postgres/xfunc19022.htm -share/doc/pgsql/postgres/xfunc19254.htm -share/doc/pgsql/postgres/xindex.htm -share/doc/pgsql/postgres/xoper.htm -share/doc/pgsql/postgres/xplang.htm -share/doc/pgsql/postgres/xtypes.htm -share/doc/pgsql/postgres/y2k.htm -share/doc/pgsql/programmer/arch-pg.htm -share/doc/pgsql/programmer/biblio.htm -share/doc/pgsql/programmer/bki.htm -share/doc/pgsql/programmer/bki8058.htm -share/doc/pgsql/programmer/bki8142.htm -share/doc/pgsql/programmer/bki8166.htm -share/doc/pgsql/programmer/bki8227.htm -share/doc/pgsql/programmer/c1486.htm -share/doc/pgsql/programmer/c5391.htm -share/doc/pgsql/programmer/c53915433.htm -share/doc/pgsql/programmer/c53915451.htm -share/doc/pgsql/programmer/c53915593.htm -share/doc/pgsql/programmer/c53915605.htm -share/doc/pgsql/programmer/c53915625.htm -share/doc/pgsql/programmer/c53915630.htm -share/doc/pgsql/programmer/c6614.htm -share/doc/pgsql/programmer/catalogs.gif -share/doc/pgsql/programmer/compiler.htm -share/doc/pgsql/programmer/connections.gif -share/doc/pgsql/programmer/copyright.htm -share/doc/pgsql/programmer/cvs.htm -share/doc/pgsql/programmer/cvs8365.htm -share/doc/pgsql/programmer/cvs8421.htm -share/doc/pgsql/programmer/dfunc.htm -share/doc/pgsql/programmer/dfunc1679.htm -share/doc/pgsql/programmer/dfunc1689.htm -share/doc/pgsql/programmer/docguide.htm -share/doc/pgsql/programmer/docguide8647.htm -share/doc/pgsql/programmer/docguide8678.htm -share/doc/pgsql/programmer/docguide8769.htm -share/doc/pgsql/programmer/docguide8790.htm -share/doc/pgsql/programmer/docguide8816.htm -share/doc/pgsql/programmer/docguide8953.htm -share/doc/pgsql/programmer/docguide9291.htm -share/doc/pgsql/programmer/extend.htm -share/doc/pgsql/programmer/extend352.htm -share/doc/pgsql/programmer/extend364.htm -share/doc/pgsql/programmer/geqo-biblio.htm -share/doc/pgsql/programmer/geqo.htm -share/doc/pgsql/programmer/geqo7079.htm -share/doc/pgsql/programmer/geqo7102.htm -share/doc/pgsql/programmer/geqo7140.htm -share/doc/pgsql/programmer/gist.htm -share/doc/pgsql/programmer/index.html -share/doc/pgsql/programmer/intro-pg.htm -share/doc/pgsql/programmer/intro-pg167.htm -share/doc/pgsql/programmer/jdbc.htm -share/doc/pgsql/programmer/jdbc6398.htm -share/doc/pgsql/programmer/jdbc6410.htm -share/doc/pgsql/programmer/jdbc6416.htm -share/doc/pgsql/programmer/jdbc6424.htm -share/doc/pgsql/programmer/jdbc6442.htm -share/doc/pgsql/programmer/jdbc6479.htm -share/doc/pgsql/programmer/jdbc6510.htm -share/doc/pgsql/programmer/jdbc6515.htm -share/doc/pgsql/programmer/jdbc6519.htm -share/doc/pgsql/programmer/jdbc6545.htm -share/doc/pgsql/programmer/jdbc6575.htm -share/doc/pgsql/programmer/largeobjects.htm -share/doc/pgsql/programmer/largeobjects3114.htm -share/doc/pgsql/programmer/largeobjects3117.htm -share/doc/pgsql/programmer/largeobjects3196.htm -share/doc/pgsql/programmer/largeobjects3203.htm -share/doc/pgsql/programmer/largeobjects3207.htm -share/doc/pgsql/programmer/libpq-chapter.htm -share/doc/pgsql/programmer/libpq-chapter3419.htm -share/doc/pgsql/programmer/libpq-chapter3574.htm -share/doc/pgsql/programmer/libpq-chapter3721.htm -share/doc/pgsql/programmer/libpq-chapter3733.htm -share/doc/pgsql/programmer/libpq-chapter3771.htm -share/doc/pgsql/programmer/libpq-chapter3841.htm -share/doc/pgsql/programmer/libpq-chapter3854.htm -share/doc/pgsql/programmer/libpq-chapter3939.htm -share/doc/pgsql/programmer/libpq-envars.htm -share/doc/pgsql/programmer/libpq-threading.htm -share/doc/pgsql/programmer/libpqplusplus.htm -share/doc/pgsql/programmer/libpqplusplus4031.htm -share/doc/pgsql/programmer/libpqplusplus4041.htm -share/doc/pgsql/programmer/libpqplusplus4071.htm -share/doc/pgsql/programmer/libpqplusplus4176.htm -share/doc/pgsql/programmer/libpqplusplus4199.htm -share/doc/pgsql/programmer/lisp.htm -share/doc/pgsql/programmer/notation.htm -share/doc/pgsql/programmer/odbc.htm -share/doc/pgsql/programmer/odbc5922.htm -share/doc/pgsql/programmer/odbc5960.htm -share/doc/pgsql/programmer/odbc6133.htm -share/doc/pgsql/programmer/odbc6155.htm -share/doc/pgsql/programmer/overview.htm -share/doc/pgsql/programmer/overview6679.htm -share/doc/pgsql/programmer/overview6704.htm -share/doc/pgsql/programmer/overview6832.htm -share/doc/pgsql/programmer/overview6888.htm -share/doc/pgsql/programmer/overview6942.htm -share/doc/pgsql/programmer/page.htm -share/doc/pgsql/programmer/page8290.htm -share/doc/pgsql/programmer/page8304.htm -share/doc/pgsql/programmer/pg-options-dev.htm -share/doc/pgsql/programmer/pgeasy-chapter.htm -share/doc/pgsql/programmer/pgtcl-pgconndefaults.htm -share/doc/pgsql/programmer/pgtcl-pgconnect.htm -share/doc/pgsql/programmer/pgtcl-pgdisconnect.htm -share/doc/pgsql/programmer/pgtcl-pgexec.htm -share/doc/pgsql/programmer/pgtcl-pglisten.htm -share/doc/pgsql/programmer/pgtcl-pgloclose.htm -share/doc/pgsql/programmer/pgtcl-pglocreat.htm -share/doc/pgsql/programmer/pgtcl-pgloexport.htm -share/doc/pgsql/programmer/pgtcl-pgloimport.htm -share/doc/pgsql/programmer/pgtcl-pglolseek.htm -share/doc/pgsql/programmer/pgtcl-pgloopen.htm -share/doc/pgsql/programmer/pgtcl-pgloread.htm -share/doc/pgsql/programmer/pgtcl-pglotell.htm -share/doc/pgsql/programmer/pgtcl-pglounlink.htm -share/doc/pgsql/programmer/pgtcl-pglowrite.htm -share/doc/pgsql/programmer/pgtcl-pgresult.htm -share/doc/pgsql/programmer/pgtcl-pgselect.htm -share/doc/pgsql/programmer/pgtcl.htm -share/doc/pgsql/programmer/pgtcl4314.htm -share/doc/pgsql/programmer/pgtcl4318.htm -share/doc/pgsql/programmer/preface.htm -share/doc/pgsql/programmer/programmer.htm -share/doc/pgsql/programmer/programmer.html -share/doc/pgsql/programmer/protocol.htm -share/doc/pgsql/programmer/protocol7255.htm -share/doc/pgsql/programmer/protocol7410.htm -share/doc/pgsql/programmer/protocol7447.htm -share/doc/pgsql/programmer/rules.htm -share/doc/pgsql/programmer/rules1139.htm -share/doc/pgsql/programmer/rules1270.htm -share/doc/pgsql/programmer/rules1284.htm -share/doc/pgsql/programmer/rules978.htm -share/doc/pgsql/programmer/signals.htm -share/doc/pgsql/programmer/spi-spiconnect.htm -share/doc/pgsql/programmer/spi-spicopytuple.htm -share/doc/pgsql/programmer/spi-spiexec.htm -share/doc/pgsql/programmer/spi-spiexecp.htm -share/doc/pgsql/programmer/spi-spifinish.htm -share/doc/pgsql/programmer/spi-spifname.htm -share/doc/pgsql/programmer/spi-spifnumber.htm -share/doc/pgsql/programmer/spi-spigetbinval.htm -share/doc/pgsql/programmer/spi-spigetrelname.htm -share/doc/pgsql/programmer/spi-spigettype.htm -share/doc/pgsql/programmer/spi-spigettypeid.htm -share/doc/pgsql/programmer/spi-spigetvalue.htm -share/doc/pgsql/programmer/spi-spimodifytuple.htm -share/doc/pgsql/programmer/spi-spipalloc.htm -share/doc/pgsql/programmer/spi-spipfree.htm -share/doc/pgsql/programmer/spi-spiprepare.htm -share/doc/pgsql/programmer/spi-spirepalloc.htm -share/doc/pgsql/programmer/spi-spisaveplan.htm -share/doc/pgsql/programmer/spi.htm -share/doc/pgsql/programmer/spi2351.htm -share/doc/pgsql/programmer/spi3064.htm -share/doc/pgsql/programmer/spi3086.htm -share/doc/pgsql/programmer/spi3091.htm -share/doc/pgsql/programmer/terminology.htm -share/doc/pgsql/programmer/triggers.htm -share/doc/pgsql/programmer/triggers1767.htm -share/doc/pgsql/programmer/triggers1824.htm -share/doc/pgsql/programmer/triggers1833.htm -share/doc/pgsql/programmer/xaggr.htm -share/doc/pgsql/programmer/xfunc.htm -share/doc/pgsql/programmer/xfunc511.htm -share/doc/pgsql/programmer/xfunc517.htm -share/doc/pgsql/programmer/xfunc522.htm -share/doc/pgsql/programmer/xfunc754.htm -share/doc/pgsql/programmer/xindex.htm -share/doc/pgsql/programmer/xoper.htm -share/doc/pgsql/programmer/xplang.htm -share/doc/pgsql/programmer/xtypes.htm -share/doc/pgsql/programmer/y2k.htm -share/doc/pgsql/tutorial/about.htm -share/doc/pgsql/tutorial/advanced.htm -share/doc/pgsql/tutorial/advanced1511.htm -share/doc/pgsql/tutorial/advanced1533.htm -share/doc/pgsql/tutorial/arch.htm -share/doc/pgsql/tutorial/biblio.htm -share/doc/pgsql/tutorial/clientserver.gif -share/doc/pgsql/tutorial/copyright.htm -share/doc/pgsql/tutorial/f17.htm -share/doc/pgsql/tutorial/index.html -share/doc/pgsql/tutorial/intro.htm -share/doc/pgsql/tutorial/intro172.htm -share/doc/pgsql/tutorial/intro300.htm -share/doc/pgsql/tutorial/intro56.htm -share/doc/pgsql/tutorial/notation.htm -share/doc/pgsql/tutorial/query.htm -share/doc/pgsql/tutorial/query1340.htm -share/doc/pgsql/tutorial/query1356.htm -share/doc/pgsql/tutorial/query1378.htm -share/doc/pgsql/tutorial/query1387.htm -share/doc/pgsql/tutorial/query1405.htm -share/doc/pgsql/tutorial/query1413.htm -share/doc/pgsql/tutorial/query1432.htm -share/doc/pgsql/tutorial/query1437.htm -share/doc/pgsql/tutorial/query1444.htm -share/doc/pgsql/tutorial/sql-language.htm -share/doc/pgsql/tutorial/sql.htm -share/doc/pgsql/tutorial/sql490.htm -share/doc/pgsql/tutorial/sql608.htm -share/doc/pgsql/tutorial/start.htm -share/doc/pgsql/tutorial/start1216.htm -share/doc/pgsql/tutorial/start1238.htm -share/doc/pgsql/tutorial/terminology.htm -share/doc/pgsql/tutorial/tutorial.htm -share/doc/pgsql/tutorial/tutorial.html -share/doc/pgsql/tutorial/y2k.htm -share/doc/pgsql/user/about.htm -share/doc/pgsql/user/app-createdb.htm -share/doc/pgsql/user/app-createlang.htm -share/doc/pgsql/user/app-createuser.htm -share/doc/pgsql/user/app-dropdb.htm -share/doc/pgsql/user/app-droplang.htm -share/doc/pgsql/user/app-dropuser.htm -share/doc/pgsql/user/app-ecpg.htm -share/doc/pgsql/user/app-initdb.htm -share/doc/pgsql/user/app-initlocation.htm -share/doc/pgsql/user/app-ipcclean.htm -share/doc/pgsql/user/app-pg-passwd.htm -share/doc/pgsql/user/app-pg-upgrade.htm -share/doc/pgsql/user/app-pgaccess.htm -share/doc/pgsql/user/app-pgadmin.htm -share/doc/pgsql/user/app-pgctl.htm -share/doc/pgsql/user/app-pgdump.htm -share/doc/pgsql/user/app-pgdumpall.htm -share/doc/pgsql/user/app-pgtclsh.htm -share/doc/pgsql/user/app-pgtksh.htm -share/doc/pgsql/user/app-postgres.htm -share/doc/pgsql/user/app-postmaster.htm -share/doc/pgsql/user/app-psql.htm -share/doc/pgsql/user/app-vacuumdb.htm -share/doc/pgsql/user/applications.htm -share/doc/pgsql/user/arrays.htm -share/doc/pgsql/user/biblio.htm -share/doc/pgsql/user/c4087.htm -share/doc/pgsql/user/c40874113.htm -share/doc/pgsql/user/c40874340.htm -share/doc/pgsql/user/c4358.htm -share/doc/pgsql/user/c43584371.htm -share/doc/pgsql/user/c4884.htm -share/doc/pgsql/user/c4929.htm -share/doc/pgsql/user/c49294939.htm -share/doc/pgsql/user/c49294943.htm -share/doc/pgsql/user/copyright.htm -share/doc/pgsql/user/datatype.htm -share/doc/pgsql/user/datatype1034.htm -share/doc/pgsql/user/datatype1066.htm -share/doc/pgsql/user/datatype1130.htm -share/doc/pgsql/user/datatype1645.htm -share/doc/pgsql/user/datatype1677.htm -share/doc/pgsql/user/datatype1916.htm -share/doc/pgsql/user/datetime-appendix.htm -share/doc/pgsql/user/datetime-appendix16981.htm -share/doc/pgsql/user/environ.htm -share/doc/pgsql/user/functions.htm -share/doc/pgsql/user/functions2589.htm -share/doc/pgsql/user/functions2729.htm -share/doc/pgsql/user/functions2872.htm -share/doc/pgsql/user/functions2972.htm -share/doc/pgsql/user/functions3439.htm -share/doc/pgsql/user/functions3637.htm -share/doc/pgsql/user/index.html -share/doc/pgsql/user/indices.htm -share/doc/pgsql/user/inherit.htm -share/doc/pgsql/user/intro.htm -share/doc/pgsql/user/intro172.htm -share/doc/pgsql/user/intro300.htm -share/doc/pgsql/user/intro56.htm -share/doc/pgsql/user/manage.htm -share/doc/pgsql/user/manage4810.htm -share/doc/pgsql/user/manage4834.htm -share/doc/pgsql/user/manage4876.htm -share/doc/pgsql/user/mvcc.htm -share/doc/pgsql/user/mvcc4564.htm -share/doc/pgsql/user/mvcc4617.htm -share/doc/pgsql/user/mvcc4629.htm -share/doc/pgsql/user/mvcc4642.htm -share/doc/pgsql/user/mvcc4719.htm -share/doc/pgsql/user/mvcc4740.htm -share/doc/pgsql/user/notation.htm -share/doc/pgsql/user/operators.htm -share/doc/pgsql/user/operators2123.htm -share/doc/pgsql/user/operators2194.htm -share/doc/pgsql/user/operators2263.htm -share/doc/pgsql/user/operators2373.htm -share/doc/pgsql/user/operators2432.htm -share/doc/pgsql/user/operators2486.htm -share/doc/pgsql/user/partial-index.htm -share/doc/pgsql/user/pl-perl.htm -share/doc/pgsql/user/pl-perl4529.htm -share/doc/pgsql/user/pl-perl4538.htm -share/doc/pgsql/user/preface.htm -share/doc/pgsql/user/sql-abort.htm -share/doc/pgsql/user/sql-altergroup.htm -share/doc/pgsql/user/sql-altertable.htm -share/doc/pgsql/user/sql-alteruser.htm -share/doc/pgsql/user/sql-begin.htm -share/doc/pgsql/user/sql-close.htm -share/doc/pgsql/user/sql-cluster.htm -share/doc/pgsql/user/sql-commands.htm -share/doc/pgsql/user/sql-comment.htm -share/doc/pgsql/user/sql-commit.htm -share/doc/pgsql/user/sql-copy.htm -share/doc/pgsql/user/sql-createaggregate.htm -share/doc/pgsql/user/sql-createconstraint.htm -share/doc/pgsql/user/sql-createdatabase.htm -share/doc/pgsql/user/sql-createfunction.htm -share/doc/pgsql/user/sql-creategroup.htm -share/doc/pgsql/user/sql-createindex.htm -share/doc/pgsql/user/sql-createlanguage.htm -share/doc/pgsql/user/sql-createoperator.htm -share/doc/pgsql/user/sql-createrule.htm -share/doc/pgsql/user/sql-createsequence.htm -share/doc/pgsql/user/sql-createtable.htm -share/doc/pgsql/user/sql-createtableas.htm -share/doc/pgsql/user/sql-createtrigger.htm -share/doc/pgsql/user/sql-createtype.htm -share/doc/pgsql/user/sql-createuser.htm -share/doc/pgsql/user/sql-createview.htm -share/doc/pgsql/user/sql-declare.htm -share/doc/pgsql/user/sql-delete.htm -share/doc/pgsql/user/sql-dropaggregate.htm -share/doc/pgsql/user/sql-dropdatabase.htm -share/doc/pgsql/user/sql-dropfunction.htm -share/doc/pgsql/user/sql-dropgroup.htm -share/doc/pgsql/user/sql-dropindex.htm -share/doc/pgsql/user/sql-droplanguage.htm -share/doc/pgsql/user/sql-dropoperator.htm -share/doc/pgsql/user/sql-droprule.htm -share/doc/pgsql/user/sql-dropsequence.htm -share/doc/pgsql/user/sql-droptable.htm -share/doc/pgsql/user/sql-droptrigger.htm -share/doc/pgsql/user/sql-droptype.htm -share/doc/pgsql/user/sql-dropuser.htm -share/doc/pgsql/user/sql-dropview.htm -share/doc/pgsql/user/sql-end.htm -share/doc/pgsql/user/sql-explain.htm -share/doc/pgsql/user/sql-fetch.htm -share/doc/pgsql/user/sql-grant.htm -share/doc/pgsql/user/sql-insert.htm -share/doc/pgsql/user/sql-listen.htm -share/doc/pgsql/user/sql-load.htm -share/doc/pgsql/user/sql-lock.htm -share/doc/pgsql/user/sql-move.htm -share/doc/pgsql/user/sql-notify.htm -share/doc/pgsql/user/sql-reindex.htm -share/doc/pgsql/user/sql-reset.htm -share/doc/pgsql/user/sql-revoke.htm -share/doc/pgsql/user/sql-rollback.htm -share/doc/pgsql/user/sql-select.htm -share/doc/pgsql/user/sql-selectinto.htm -share/doc/pgsql/user/sql-set.htm -share/doc/pgsql/user/sql-show.htm -share/doc/pgsql/user/sql-truncate.htm -share/doc/pgsql/user/sql-unlisten.htm -share/doc/pgsql/user/sql-update.htm -share/doc/pgsql/user/sql-vacuum.htm -share/doc/pgsql/user/storage.htm -share/doc/pgsql/user/syntax.htm -share/doc/pgsql/user/syntax515.htm -share/doc/pgsql/user/syntax521.htm -share/doc/pgsql/user/syntax539.htm -share/doc/pgsql/user/syntax604.htm -share/doc/pgsql/user/syntax649.htm -share/doc/pgsql/user/syntax654.htm -share/doc/pgsql/user/terminology.htm -share/doc/pgsql/user/typeconv.htm -share/doc/pgsql/user/typeconv3755.htm -share/doc/pgsql/user/typeconv3818.htm -share/doc/pgsql/user/typeconv3871.htm -share/doc/pgsql/user/typeconv3891.htm -share/doc/pgsql/user/user.htm -share/doc/pgsql/user/user.html -share/doc/pgsql/user/utilities.htm -share/doc/pgsql/user/y2k.htm -@dirrm share/doc/pgsql/admin -@dirrm share/doc/pgsql/postgres -@dirrm share/doc/pgsql/programmer -@dirrm share/doc/pgsql/tutorial -@dirrm share/doc/pgsql/user -@dirrm share/doc/pgsql diff --git a/databases/postgresql92-server/pkg-plist.jdbc b/databases/postgresql92-server/pkg-plist.jdbc deleted file mode 100644 index bef5d75506b4..000000000000 --- a/databases/postgresql92-server/pkg-plist.jdbc +++ /dev/null @@ -1,13 +0,0 @@ -share/examples/pgsql/jdbc/ImageViewer.java -share/examples/pgsql/jdbc/basic.java -share/examples/pgsql/jdbc/blobtest.java -share/examples/pgsql/jdbc/datestyle.java -share/examples/pgsql/jdbc/metadata.java -share/examples/pgsql/jdbc/psql.java -share/examples/pgsql/jdbc/threadsafe.java -share/examples/pgsql/jdbc/README -share/examples/pgsql/jdbc/README_6.3 -@dirrm share/examples/pgsql/jdbc -@dirrm share/examples/pgsql -share/java/classes/postgresql.jar -@unexec rmdir %D/share/java 2>/dev/null || true diff --git a/databases/postgresql92-server/pkg-plist.tcl b/databases/postgresql92-server/pkg-plist.tcl deleted file mode 100644 index b01eaf1571ed..000000000000 --- a/databases/postgresql92-server/pkg-plist.tcl +++ /dev/null @@ -1,141 +0,0 @@ -pgsql/bin/pgaccess -pgsql/bin/pgtclsh -pgsql/bin/pgtksh -pgsql/include/libpgtcl.h -pgsql/lib/libpgtcl.a -pgsql/lib/libpgtcl.so -pgsql/lib/libpgtcl.so.2 -pgsql/lib/pltcl.so -pgsql/pgaccess/images/icon_button.gif -pgsql/pgaccess/images/icon_checkbutton.gif -pgsql/pgaccess/images/icon_entry.gif -pgsql/pgaccess/images/icon_frame.gif -pgsql/pgaccess/images/icon_label.gif -pgsql/pgaccess/images/icon_listbox.gif -pgsql/pgaccess/images/icon_query.gif -pgsql/pgaccess/images/icon_radiobutton.gif -pgsql/pgaccess/images/icon_text.gif -pgsql/pgaccess/lib/database.tcl -pgsql/pgaccess/lib/forms.tcl -pgsql/pgaccess/lib/functions.tcl -pgsql/pgaccess/lib/help/abort.hlp -pgsql/pgaccess/lib/help/add_records.hlp -pgsql/pgaccess/lib/help/alter_table.hlp -pgsql/pgaccess/lib/help/alter_user.hlp -pgsql/pgaccess/lib/help/author.hlp -pgsql/pgaccess/lib/help/begin.hlp -pgsql/pgaccess/lib/help/close.hlp -pgsql/pgaccess/lib/help/cluster.hlp -pgsql/pgaccess/lib/help/commit.hlp -pgsql/pgaccess/lib/help/copy.hlp -pgsql/pgaccess/lib/help/copyrights.hlp -pgsql/pgaccess/lib/help/create_aggregate.hlp -pgsql/pgaccess/lib/help/create_database.hlp -pgsql/pgaccess/lib/help/create_function.hlp -pgsql/pgaccess/lib/help/create_index.hlp -pgsql/pgaccess/lib/help/create_language.hlp -pgsql/pgaccess/lib/help/create_operator.hlp -pgsql/pgaccess/lib/help/create_rule.hlp -pgsql/pgaccess/lib/help/create_sequence.hlp -pgsql/pgaccess/lib/help/create_table.hlp -pgsql/pgaccess/lib/help/create_table_as.hlp -pgsql/pgaccess/lib/help/create_trigger.hlp -pgsql/pgaccess/lib/help/create_type.hlp -pgsql/pgaccess/lib/help/create_user.hlp -pgsql/pgaccess/lib/help/create_view.hlp -pgsql/pgaccess/lib/help/data_types.hlp -pgsql/pgaccess/lib/help/datefunc.hlp -pgsql/pgaccess/lib/help/declare.hlp -pgsql/pgaccess/lib/help/delete.hlp -pgsql/pgaccess/lib/help/drop_aggregate.hlp -pgsql/pgaccess/lib/help/drop_database.hlp -pgsql/pgaccess/lib/help/drop_function.hlp -pgsql/pgaccess/lib/help/drop_index.hlp -pgsql/pgaccess/lib/help/drop_language.hlp -pgsql/pgaccess/lib/help/drop_operator.hlp -pgsql/pgaccess/lib/help/drop_rule.hlp -pgsql/pgaccess/lib/help/drop_sequence.hlp -pgsql/pgaccess/lib/help/drop_table.hlp -pgsql/pgaccess/lib/help/drop_trigger.hlp -pgsql/pgaccess/lib/help/drop_type.hlp -pgsql/pgaccess/lib/help/drop_user.hlp -pgsql/pgaccess/lib/help/drop_view.hlp -pgsql/pgaccess/lib/help/explain.hlp -pgsql/pgaccess/lib/help/fetch.hlp -pgsql/pgaccess/lib/help/form_design.hlp -pgsql/pgaccess/lib/help/forms.hlp -pgsql/pgaccess/lib/help/functions.hlp -pgsql/pgaccess/lib/help/geomfunc.hlp -pgsql/pgaccess/lib/help/grant.hlp -pgsql/pgaccess/lib/help/history.hlp -pgsql/pgaccess/lib/help/index.hlp -pgsql/pgaccess/lib/help/inheritance.hlp -pgsql/pgaccess/lib/help/insert.hlp -pgsql/pgaccess/lib/help/ipv4func.hlp -pgsql/pgaccess/lib/help/isolation.hlp -pgsql/pgaccess/lib/help/keywords.hlp -pgsql/pgaccess/lib/help/listen.hlp -pgsql/pgaccess/lib/help/load.hlp -pgsql/pgaccess/lib/help/lock.hlp -pgsql/pgaccess/lib/help/mathfunc.hlp -pgsql/pgaccess/lib/help/move.hlp -pgsql/pgaccess/lib/help/mvcc.hlp -pgsql/pgaccess/lib/help/new_query.hlp -pgsql/pgaccess/lib/help/new_table.hlp -pgsql/pgaccess/lib/help/notify.hlp -pgsql/pgaccess/lib/help/open_query.hlp -pgsql/pgaccess/lib/help/open_table.hlp -pgsql/pgaccess/lib/help/pgfunctions.hlp -pgsql/pgaccess/lib/help/postgresql.hlp -pgsql/pgaccess/lib/help/queries.hlp -pgsql/pgaccess/lib/help/reports.hlp -pgsql/pgaccess/lib/help/reset.hlp -pgsql/pgaccess/lib/help/revoke.hlp -pgsql/pgaccess/lib/help/rollback.hlp -pgsql/pgaccess/lib/help/schema.hlp -pgsql/pgaccess/lib/help/scripts.hlp -pgsql/pgaccess/lib/help/select.hlp -pgsql/pgaccess/lib/help/select_into.hlp -pgsql/pgaccess/lib/help/sequences.hlp -pgsql/pgaccess/lib/help/set.hlp -pgsql/pgaccess/lib/help/show.hlp -pgsql/pgaccess/lib/help/sql_guide.hlp -pgsql/pgaccess/lib/help/sqlfunc.hlp -pgsql/pgaccess/lib/help/stringfunc.hlp -pgsql/pgaccess/lib/help/tables.hlp -pgsql/pgaccess/lib/help/unlisten.hlp -pgsql/pgaccess/lib/help/update.hlp -pgsql/pgaccess/lib/help/users.hlp -pgsql/pgaccess/lib/help/vacuum.hlp -pgsql/pgaccess/lib/help/view_table_structure.hlp -pgsql/pgaccess/lib/help/views.hlp -pgsql/pgaccess/lib/help/visual_designer.hlp -pgsql/pgaccess/lib/help/y2k.hlp -pgsql/pgaccess/lib/help.tcl -pgsql/pgaccess/lib/languages/czech -pgsql/pgaccess/lib/languages/deutsch -pgsql/pgaccess/lib/languages/francais -pgsql/pgaccess/lib/languages/italiano -pgsql/pgaccess/lib/languages/magyar -pgsql/pgaccess/lib/languages/portugues -pgsql/pgaccess/lib/languages/romana -pgsql/pgaccess/lib/languages/russian.koi8r -pgsql/pgaccess/lib/languages/russian_win -pgsql/pgaccess/lib/languages/spanish -pgsql/pgaccess/lib/mainlib.tcl -pgsql/pgaccess/lib/preferences.tcl -pgsql/pgaccess/lib/queries.tcl -pgsql/pgaccess/lib/reports.tcl -pgsql/pgaccess/lib/schema.tcl -pgsql/pgaccess/lib/scripts.tcl -pgsql/pgaccess/lib/sequences.tcl -pgsql/pgaccess/lib/tables.tcl -pgsql/pgaccess/lib/users.tcl -pgsql/pgaccess/lib/views.tcl -pgsql/pgaccess/lib/visualqb.tcl -pgsql/pgaccess/main.tcl -@dirrm pgsql/pgaccess/images -@dirrm pgsql/pgaccess/lib/help -@dirrm pgsql/pgaccess/lib/languages -@dirrm pgsql/pgaccess/lib -@dirrm pgsql/pgaccess diff --git a/databases/postgresql92-server/scripts/configure b/databases/postgresql92-server/scripts/configure deleted file mode 100644 index 4a92ee450ebe..000000000000 --- a/databases/postgresql92-server/scripts/configure +++ /dev/null @@ -1,7 +0,0 @@ -#! /bin/sh - -# $FreeBSD$ - -cd $WRKSRC || exit 1 - -perl -pi -e "s=!!JAVA_HOME!!=${JAVA_HOME}=; s=!!PREFIX!!=${PREFIX}=" ${WRKSRC}/interfaces/jdbc/Makefile diff --git a/databases/postgresql92-server/scripts/createuser b/databases/postgresql92-server/scripts/createuser deleted file mode 100644 index 2abe201e7a4b..000000000000 --- a/databases/postgresql92-server/scripts/createuser +++ /dev/null @@ -1,50 +0,0 @@ -#!/usr/bin/perl -# - -eval '(exit $?0)' && eval 'exec /usr/bin/perl -S $0 ${1+"$@"}' -& eval 'exec /usr/bin/perl -S $0 $argv:q' -if 0; - -if( $> ) { - print "\nYou must be root to run this step!\n\n"; - exit 1; -} - -if( getpwnam( "pgsql" ) ) { - ( $null, $null, $pgUID ) = getpwnam( "pgsql" ); -} else { - $pgUID = 70; - while( getpwuid( $pgUID ) ) { - $pgUID++; - } -} - -if( getgrnam( "pgsql" ) ) { - ( $null, $null, $pgGID ) = getgrnam( "pgsql" ); -} else { - $pgGID = 70; - while( getgrgid( $pgGID ) ) { - $pgGID++; - } - &append_file( "/etc/group", "pgsql:*:$pgGID:" ); -} - -print "pgsql user using uid $pgUID\n"; -print "pgsql user using gid $pgGID\n"; - -system( "/usr/bin/chpass -a \"pgsql:*:$pgUID:$pgGID\:\:0:0:PostgreSQL pseudo-user:$ENV{'PREFIX'}/pgsql:/bin/sh\"" ); - -sub append_file { - local($file,@list) = @_; - local($LOCK_EX) = 2; - local($LOCK_NB) = 4; - local($LOCK_UN) = 8; - - open(F, ">> $file") || die "$file: $!\n"; - while( ! flock( F, $LOCK_EX | $LOCK_NB ) ) { - exit 1; - } - print F join( "\n", @list) . "\n"; - close F; - flock( F, $LOCK_UN ); -} diff --git a/databases/py-MySQLdb-devel/Makefile b/databases/py-MySQLdb-devel/Makefile deleted file mode 100644 index b3d983747f6b..000000000000 --- a/databases/py-MySQLdb-devel/Makefile +++ /dev/null @@ -1,43 +0,0 @@ -# New ports collection makefile for: py-MySQLdb -# Date created: 04 April 2000 -# Whom: Maxim Sobolev <sobomax@FreeBSD.org> -# -# $FreeBSD$ -# - -PORTNAME= py-MySQLdb -PORTVERSION= 0.2.2 -CATEGORIES= databases python -MASTER_SITES= http://dustman.net/andy/python/MySQLdb/${PORTVERSION}/ -DISTNAME= MySQLdb-${PORTVERSION} - -MAINTAINER= sobomax@FreeBSD.org - -BUILD_DEPENDS= python:${PORTSDIR}/lang/python -LIB_DEPENDS= mysqlclient.6:${PORTSDIR}/databases/mysql322-client -RUN_DEPENDS= python:${PORTSDIR}/lang/python - -FETCH_BEFORE_ARGS= -b -ALL_TARGET= _mysqlmodule.o - -pre-configure: - @${LN} -s ${LOCALBASE}/lib/python1.5/config/Makefile.pre.in ${WRKSRC}/ - -do-configure: - @cd ${WRKSRC} && ${MAKE} -f Makefile.pre.in boot - -post-build: - @-${LOCALBASE}/bin/python \ - ${LOCALBASE}/lib/python1.5/compileall.py ${WRKSRC} 2>/dev/null - -post-install: - @${INSTALL_DATA} \ - ${WRKSRC}/MySQLdb.pyc ${PREFIX}/lib/python1.5/site-packages -.if !defined(NOPORTDOCS) - @${MKDIR} ${PREFIX}/share/doc/py-MySQLdb/examples - @${INSTALL_MAN} ${WRKSRC}/doc/* ${PREFIX}/share/doc/py-MySQLdb - @${INSTALL_MAN} \ - ${WRKSRC}/examples/* ${PREFIX}/share/doc/py-MySQLdb/examples -.endif - -.include <bsd.port.mk> diff --git a/databases/py-MySQLdb-devel/distinfo b/databases/py-MySQLdb-devel/distinfo deleted file mode 100644 index 465606e1f562..000000000000 --- a/databases/py-MySQLdb-devel/distinfo +++ /dev/null @@ -1 +0,0 @@ -MD5 (MySQLdb-0.2.2.tar.gz) = 39228c0e0f55cd88aea9eb1d15c732f5 diff --git a/databases/py-MySQLdb-devel/pkg-comment b/databases/py-MySQLdb-devel/pkg-comment deleted file mode 100644 index f3e147950f10..000000000000 --- a/databases/py-MySQLdb-devel/pkg-comment +++ /dev/null @@ -1 +0,0 @@ -Access a MySQL database through Python diff --git a/databases/py-MySQLdb-devel/pkg-descr b/databases/py-MySQLdb-devel/pkg-descr deleted file mode 100644 index 5c4095d67f35..000000000000 --- a/databases/py-MySQLdb-devel/pkg-descr +++ /dev/null @@ -1,15 +0,0 @@ -You can easily access a MySQL database through the Python MySQL module. - -This module should be mostly compatible with an older interface written by -Joe Skinner and others. However, the older version is - - a) not thread-friendly (database operations could cause all other threads to - block), - b) written for MySQL 3.21 (does not compile against newer versions without - patches), - c) apparently not actively maintained. - -MySQLdb is a completely new module, distributed free of charge under a license -derived from the Python license. - -WWW: http://dustman.net/andy/python/ diff --git a/databases/py-MySQLdb-devel/pkg-plist b/databases/py-MySQLdb-devel/pkg-plist deleted file mode 100644 index 63472e045e94..000000000000 --- a/databases/py-MySQLdb-devel/pkg-plist +++ /dev/null @@ -1,25 +0,0 @@ -lib/python1.5/site-packages/MySQLdb.pyc -lib/python1.5/site-packages/_mysqlmodule.so -share/doc/py-MySQLdb/MySQLdb-1.html -share/doc/py-MySQLdb/MySQLdb-2.html -share/doc/py-MySQLdb/MySQLdb-3.html -share/doc/py-MySQLdb/MySQLdb-4.html -share/doc/py-MySQLdb/MySQLdb-5.html -share/doc/py-MySQLdb/MySQLdb-6.html -share/doc/py-MySQLdb/MySQLdb-7.html -share/doc/py-MySQLdb/MySQLdb-FAQ-1.html -share/doc/py-MySQLdb/MySQLdb-FAQ-2.html -share/doc/py-MySQLdb/MySQLdb-FAQ-3.html -share/doc/py-MySQLdb/MySQLdb-FAQ.html -share/doc/py-MySQLdb/MySQLdb-FAQ.sgml -share/doc/py-MySQLdb/MySQLdb.html -share/doc/py-MySQLdb/MySQLdb.sgml -share/doc/py-MySQLdb/examples/README -share/doc/py-MySQLdb/examples/dbtrainer0 -share/doc/py-MySQLdb/examples/dbtrainer1 -share/doc/py-MySQLdb/examples/dbtrainer2 -share/doc/py-MySQLdb/examples/dbtrainer3 -share/doc/py-MySQLdb/examples/dbtrainer4 -share/doc/py-MySQLdb/examples/test.sql -@dirrm share/doc/py-MySQLdb/examples -@dirrm share/doc/py-MySQLdb diff --git a/databases/rrdtool/Makefile b/databases/rrdtool/Makefile deleted file mode 100644 index cb3ff0932fee..000000000000 --- a/databases/rrdtool/Makefile +++ /dev/null @@ -1,39 +0,0 @@ -# New ports collection makefile for: rrdtool -# Date created: 20 July 1999 -# Whom: Dmitry Sivachenko <dima@Chg.RU> -# -# $FreeBSD$ -# - -PORTNAME= rrdtool -PORTVERSION= 1.0.24 -CATEGORIES= net -MASTER_SITES= http://ee-staff.ethz.ch/~oetiker/webtools/rrdtool/pub/ - -MAINTAINER= dima@Chg.RU - -USE_PERL5= yes -MAKE_ENV+= PERL=${PERL} - -USE_GMAKE= yes -USE_LIBTOOL= yes -INSTALLS_SHLIB= yes -CONFIGURE_ARGS= --enable-shared=yes -CONFIGURE_ENV= PERL=${PERL} - -MAN1= RRDp.1 RRDs.1 bin_dec_hex.1 rrdcgi.1 rrdcreate.1 rrddump.1 \ - rrdfetch.1 rrdgraph.1 rrdlast.1 rrdresize.1 rrdrestore.1 \ - rrdtool.1 rrdtune.1 rrdtutorial.1 rrdupdate.1 cdeftutorial.1 \ - rpntutorial.1 rrdinfo.1 -MAN3= RRDp.3 RRDs.3 -MAN3PREFIX= ${PREFIX}/lib/perl5/${PERL_VERSION} - -post-install: -.if !defined(BATCH) - @${ECHO} "" - @${ECHO} "############################################################################" - @${ECHO} "# See ${PREFIX}/share/examples/rrdtool for some demonstration code #" - @${ECHO} "############################################################################" -.endif - -.include <bsd.port.mk> diff --git a/databases/rrdtool/distinfo b/databases/rrdtool/distinfo deleted file mode 100644 index b6ae0ecc5b01..000000000000 --- a/databases/rrdtool/distinfo +++ /dev/null @@ -1 +0,0 @@ -MD5 (rrdtool-1.0.24.tar.gz) = 251b2ea132245d02039fe67eae6047da diff --git a/databases/rrdtool/files/patch-aa b/databases/rrdtool/files/patch-aa deleted file mode 100644 index ebf17ddaf33b..000000000000 --- a/databases/rrdtool/files/patch-aa +++ /dev/null @@ -1,12 +0,0 @@ ---- perl-shared/Makefile.PL.orig Tue Jun 13 20:51:17 2000 -+++ perl-shared/Makefile.PL Tue Jun 13 20:51:19 2000 -@@ -10,7 +10,8 @@ - 'NAME' => 'RRDs', - 'VERSION_FROM' => 'RRDs.pm', # finds $VERSION - 'DEFINE' => "-DPERLPATCHLEVEL=$Config{PATCHLEVEL}", -- 'INC' => '-I../src -I../gd1.3', -+ 'CCFLAGS' => "-DHAVE_CONFIG_H", -+ 'INC' => '-I../config -I../src -I../gd1.3', - # where to look for the necessary libraries - # Perl will figure out which one is valid - 'depend' => {'RRDs.c' => "../src/.libs/librrd_private.a"}, diff --git a/databases/rrdtool/files/patch-ab b/databases/rrdtool/files/patch-ab deleted file mode 100644 index 2513bfe423fb..000000000000 --- a/databases/rrdtool/files/patch-ab +++ /dev/null @@ -1,18 +0,0 @@ ---- src/rrd_tool.c.orig Tue Jun 13 20:56:08 2000 -+++ src/rrd_tool.c Tue Jun 13 20:56:10 2000 -@@ -317,12 +317,12 @@ - datai=data; - printf(" "); - for (i = 0; i<ds_cnt;i++) -- printf("%14s",ds_namv[i]); -+ printf("%14s ",ds_namv[i]); - printf ("\n\n"); - for (i = start; i <= end; i += step){ -- printf("%10lu:", i); -+ printf("%10lu: ", i); - for (ii = 0; ii < ds_cnt; ii++) -- printf(" %0.10e", *(datai++)); -+ printf(" %0.10e ", *(datai++)); - printf("\n"); - } - for (i=0;i<ds_cnt;i++) diff --git a/databases/rrdtool/files/patch-ac b/databases/rrdtool/files/patch-ac deleted file mode 100644 index f1318a481dcb..000000000000 --- a/databases/rrdtool/files/patch-ac +++ /dev/null @@ -1,21 +0,0 @@ ---- Makefile.in.orig Tue Jun 13 20:58:24 2000 -+++ Makefile.in Tue Jun 13 20:58:25 2000 -@@ -382,12 +382,12 @@ - - - # lets schedule the perl stuff for installation --install-data-local: -- $(INSTALL) -d -m 755 $(DESTDIR)$(prefix)/lib/perl/auto/RRDs -- $(INSTALL) -m 644 perl-piped/RRDp.pm $(DESTDIR)$(prefix)/lib/perl -- $(INSTALL) -m 644 perl-shared/RRDs.pm $(DESTDIR)$(prefix)/lib/perl -- $(INSTALL) -m 644 perl-shared/blib/arch/auto/RRDs/RRDs.bs $(DESTDIR)$(prefix)/lib/perl/auto/RRDs -- $(INSTALL) -m 755 perl-shared/blib/arch/auto/RRDs/RRDs.@SO_EXT@ $(DESTDIR)$(prefix)/lib/perl/auto/RRDs -+install-data-local: site-perl-inst -+# $(INSTALL) -d -m 755 $(DESTDIR)$(prefix)/lib/perl/auto/RRDs -+# $(INSTALL) -m 644 perl-piped/RRDp.pm $(DESTDIR)$(prefix)/lib/perl -+# $(INSTALL) -m 644 perl-shared/RRDs.pm $(DESTDIR)$(prefix)/lib/perl -+# $(INSTALL) -m 644 perl-shared/blib/arch/auto/RRDs/RRDs.bs $(DESTDIR)$(prefix)/lib/perl/auto/RRDs -+# $(INSTALL) -m 755 perl-shared/blib/arch/auto/RRDs/RRDs.@SO_EXT@ $(DESTDIR)$(prefix)/lib/perl/auto/RRDs - - # rules for building the perl module - perl_piped: perl-piped/Makefile diff --git a/databases/rrdtool/files/patch-ae b/databases/rrdtool/files/patch-ae deleted file mode 100644 index 98feb795d0ff..000000000000 --- a/databases/rrdtool/files/patch-ae +++ /dev/null @@ -1,14 +0,0 @@ ---- doc/Makefile.in.orig Fri Jan 7 20:56:21 2000 -+++ doc/Makefile.in Fri Jan 7 20:57:05 2000 -@@ -96,9 +96,9 @@ - EXTRA_DIST = $(POD) $(HTML) $(TXT) - - # some install rules --idocdir = $(prefix)/doc -+idocdir = $(prefix)/share/doc/rrdtool - idoc_DATA = $(POD) $(TXT) --ihtmldir = $(prefix)/html -+ihtmldir = $(prefix)/share/doc/rrdtool/html - ihtml_DATA = $(HTML) - imandir = $(prefix)/man/man1 - iman_DATA = $(MAN) diff --git a/databases/rrdtool/files/patch-af b/databases/rrdtool/files/patch-af deleted file mode 100644 index a109c319e248..000000000000 --- a/databases/rrdtool/files/patch-af +++ /dev/null @@ -1,11 +0,0 @@ ---- examples/Makefile.in.orig Fri Jan 7 20:58:16 2000 -+++ examples/Makefile.in Fri Jan 7 20:59:13 2000 -@@ -81,7 +81,7 @@ - - EXTRA_DIST = cgi-demo.cgi.in piped-demo.pl.in shared-demo.pl.in stripes.pl.in bigtops.pl.in minmax.pl.in - --examplesdir = $(prefix)/examples -+examplesdir = $(prefix)/share/examples/rrdtool - examples_SCRIPTS = cgi-demo.cgi piped-demo.pl shared-demo.pl stripes.pl bigtops.pl minmax.pl - mkinstalldirs = $(SHELL) $(top_srcdir)/config/mkinstalldirs - CONFIG_HEADER = ../config/config.h diff --git a/databases/rrdtool/files/patch-ag b/databases/rrdtool/files/patch-ag deleted file mode 100644 index 1463213ac6f3..000000000000 --- a/databases/rrdtool/files/patch-ag +++ /dev/null @@ -1,11 +0,0 @@ ---- contrib/Makefile.in.orig Tue Jun 13 21:00:28 2000 -+++ contrib/Makefile.in Tue Jun 13 21:01:04 2000 -@@ -86,7 +86,7 @@ - ZLIB_LIB_DIR = @ZLIB_LIB_DIR@ - - SUBDIRS = log2rrd rrd-file-icon trytime rrdproc rrdlastds add_ds killspike rrdfetchnames --contribdir = $(prefix)/contrib -+contribdir = $(prefix)/share/examples/rrdtool - contrib_DATA = README - EXTRA_DIST = clickgraphs php3 - mkinstalldirs = $(SHELL) $(top_srcdir)/config/mkinstalldirs diff --git a/databases/rrdtool/files/patch-ah b/databases/rrdtool/files/patch-ah deleted file mode 100644 index ba81028f2075..000000000000 --- a/databases/rrdtool/files/patch-ah +++ /dev/null @@ -1,11 +0,0 @@ ---- contrib/log2rrd/Makefile.in.orig Fri Jan 7 21:07:22 2000 -+++ contrib/log2rrd/Makefile.in Fri Jan 7 21:07:45 2000 -@@ -77,7 +77,7 @@ - - EXTRA_DIST = log2rrd.pl.in - --contribdir = $(prefix)/contrib/log2rrd -+contribdir = $(prefix)/share/examples/rrdtool/log2rrd - contrib_DATA = README - contrib_SCRIPTS = log2rrd.pl - mkinstalldirs = $(SHELL) $(top_srcdir)/config/mkinstalldirs diff --git a/databases/rrdtool/files/patch-ai b/databases/rrdtool/files/patch-ai deleted file mode 100644 index 005a791e0dc8..000000000000 --- a/databases/rrdtool/files/patch-ai +++ /dev/null @@ -1,11 +0,0 @@ ---- contrib/rrd-file-icon/Makefile.in.orig Fri Jan 7 21:08:22 2000 -+++ contrib/rrd-file-icon/Makefile.in Fri Jan 7 21:08:46 2000 -@@ -76,7 +76,7 @@ - ZLIB_LIB_DIR = @ZLIB_LIB_DIR@ - - EXTRA_DIST = rrd.png --contribdir = $(prefix)/contrib/rrd-file-icon -+contribdir = $(prefix)/share/examples/rrdtool/rrd-file-icon - contrib_DATA = README rrd.png - mkinstalldirs = $(SHELL) $(top_srcdir)/config/mkinstalldirs - CONFIG_HEADER = ../../config/config.h diff --git a/databases/rrdtool/files/patch-aj b/databases/rrdtool/files/patch-aj deleted file mode 100644 index 6af2fc2b9ba2..000000000000 --- a/databases/rrdtool/files/patch-aj +++ /dev/null @@ -1,11 +0,0 @@ ---- contrib/rrdproc/Makefile.in.orig Fri Jan 7 21:09:17 2000 -+++ contrib/rrdproc/Makefile.in Fri Jan 7 21:09:36 2000 -@@ -76,7 +76,7 @@ - ZLIB_LIB_DIR = @ZLIB_LIB_DIR@ - - EXTRA_DIST = rrdproc.c --contribdir = $(prefix)/contrib/rrdproc -+contribdir = $(prefix)/share/examples/rrdtool/rrdproc - contrib_DATA = README rrdproc.c - mkinstalldirs = $(SHELL) $(top_srcdir)/config/mkinstalldirs - CONFIG_HEADER = ../../config/config.h diff --git a/databases/rrdtool/files/patch-ak b/databases/rrdtool/files/patch-ak deleted file mode 100644 index f998e6995400..000000000000 --- a/databases/rrdtool/files/patch-ak +++ /dev/null @@ -1,11 +0,0 @@ ---- contrib/trytime/Makefile.in.orig Fri Jan 7 21:11:21 2000 -+++ contrib/trytime/Makefile.in Fri Jan 7 21:11:41 2000 -@@ -76,7 +76,7 @@ - ZLIB_LIB_DIR = @ZLIB_LIB_DIR@ - - EXTRA_DIST = trytime.c --contribdir = $(prefix)/contrib/trytime -+contribdir = $(prefix)/share/examples/rrdtool/trytime - contrib_DATA = README trytime.c - mkinstalldirs = $(SHELL) $(top_srcdir)/config/mkinstalldirs - CONFIG_HEADER = ../../config/config.h diff --git a/databases/rrdtool/files/patch-al b/databases/rrdtool/files/patch-al deleted file mode 100644 index c74995d8f0cb..000000000000 --- a/databases/rrdtool/files/patch-al +++ /dev/null @@ -1,11 +0,0 @@ ---- contrib/rrdlastds/Makefile.in.orig Sat Feb 12 18:22:45 2000 -+++ contrib/rrdlastds/Makefile.in Sat Feb 12 18:23:30 2000 -@@ -77,7 +77,7 @@ - - EXTRA_DIST = rrdlastds.pl.in - --contribdir = $(prefix)/contrib/rrdlastds -+contribdir = $(prefix)/share/examples/rrdtool/rrdlastds - contrib_DATA = README - contrib_SCRIPTS = rrdlastds.pl - mkinstalldirs = $(SHELL) $(top_srcdir)/config/mkinstalldirs diff --git a/databases/rrdtool/files/patch-am b/databases/rrdtool/files/patch-am deleted file mode 100644 index c6cae0440881..000000000000 --- a/databases/rrdtool/files/patch-am +++ /dev/null @@ -1,11 +0,0 @@ ---- contrib/add_ds/Makefile.in.orig Sat Feb 12 18:26:00 2000 -+++ contrib/add_ds/Makefile.in Sat Feb 12 18:26:17 2000 -@@ -77,7 +77,7 @@ - - EXTRA_DIST = add_ds.pl.in batch.pl.in - --contribdir = $(prefix)/contrib/add_ds -+contribdir = $(prefix)/share/examples/rrdtool/add_ds - contrib_DATA = README - contrib_SCRIPTS = add_ds.pl batch.pl - mkinstalldirs = $(SHELL) $(top_srcdir)/config/mkinstalldirs diff --git a/databases/rrdtool/files/patch-an b/databases/rrdtool/files/patch-an deleted file mode 100644 index 6d4b4a9cd45d..000000000000 --- a/databases/rrdtool/files/patch-an +++ /dev/null @@ -1,11 +0,0 @@ ---- contrib/killspike/Makefile.in.orig Sat Feb 12 18:27:04 2000 -+++ contrib/killspike/Makefile.in Sat Feb 12 18:27:19 2000 -@@ -77,7 +77,7 @@ - - EXTRA_DIST = killspike.pl.in - --contribdir = $(prefix)/contrib/killspike -+contribdir = $(prefix)/share/examples/rrdtool/killspike - contrib_DATA = README - contrib_SCRIPTS = killspike.pl - mkinstalldirs = $(SHELL) $(top_srcdir)/config/mkinstalldirs diff --git a/databases/rrdtool/files/patch-ao b/databases/rrdtool/files/patch-ao deleted file mode 100644 index 3dc1cc622454..000000000000 --- a/databases/rrdtool/files/patch-ao +++ /dev/null @@ -1,11 +0,0 @@ ---- contrib/rrdfetchnames/Makefile.in.orig Mon Feb 14 23:27:59 2000 -+++ contrib/rrdfetchnames/Makefile.in Mon Feb 14 23:28:17 2000 -@@ -77,7 +77,7 @@ - - EXTRA_DIST = rrdfetchnames.pl.in - --contribdir = $(prefix)/contrib/rrdfetchnames -+contribdir = $(prefix)/share/examples/rrdtool/rrdfetchnames - contrib_DATA = README - contrib_SCRIPTS = rrdfetchnames.pl - mkinstalldirs = $(SHELL) $(top_srcdir)/config/mkinstalldirs diff --git a/databases/rrdtool/pkg-comment b/databases/rrdtool/pkg-comment deleted file mode 100644 index 73242bc78bb6..000000000000 --- a/databases/rrdtool/pkg-comment +++ /dev/null @@ -1 +0,0 @@ -Round Robin Database Tools diff --git a/databases/rrdtool/pkg-descr b/databases/rrdtool/pkg-descr deleted file mode 100644 index ca95d58a230d..000000000000 --- a/databases/rrdtool/pkg-descr +++ /dev/null @@ -1,13 +0,0 @@ -It is pretty easy to gather status information from all sorts of things, -ranging from the temperature in your office to the number of octets which -have passed through the FDDI interface of your router. But it is not so -trivial to store this data in a efficient and systematic manner. This is -where RRDtool kicks in. It lets you log and analyze the data you gather from -all kinds of data-sources (DS). The data analysis part of RRDtool is based -on the ability to quickly generate graphical representations of the data -values collected over a definable time period. - -WWW: http://ee-staff.ethz.ch/~oetiker/webtools/rrdtool/ - ---dima -dima@Chg.RU diff --git a/databases/rrdtool/pkg-plist b/databases/rrdtool/pkg-plist deleted file mode 100644 index 186251ae32bc..000000000000 --- a/databases/rrdtool/pkg-plist +++ /dev/null @@ -1,103 +0,0 @@ -bin/rrdtool -bin/rrdcgi -bin/trytime -lib/librrd.a -lib/librrd.so.0 -lib/librrd.so -include/rrd.h -share/examples/rrdtool/cgi-demo.cgi -share/examples/rrdtool/piped-demo.pl -share/examples/rrdtool/shared-demo.pl -share/examples/rrdtool/stripes.pl -share/examples/rrdtool/bigtops.pl -share/examples/rrdtool/minmax.pl -share/examples/rrdtool/log2rrd/log2rrd.pl -share/examples/rrdtool/log2rrd/README -share/examples/rrdtool/rrd-file-icon/rrd.png -share/examples/rrdtool/rrd-file-icon/README -share/examples/rrdtool/trytime/trytime.c -share/examples/rrdtool/trytime/README -share/examples/rrdtool/rrdproc/rrdproc.c -share/examples/rrdtool/rrdproc/README -share/examples/rrdtool/rrdlastds/README -share/examples/rrdtool/rrdlastds/rrdlastds.pl -share/examples/rrdtool/add_ds/add_ds.pl -share/examples/rrdtool/add_ds/batch.pl -share/examples/rrdtool/add_ds/README -share/examples/rrdtool/killspike/killspike.pl -share/examples/rrdtool/killspike/README -share/examples/rrdtool/rrdfetchnames/rrdfetchnames.pl -share/examples/rrdtool/rrdfetchnames/README -share/examples/rrdtool/README -share/doc/rrdtool/rrdtool.pod -share/doc/rrdtool/rrdinfo.pod -share/doc/rrdtool/rrdlast.pod -share/doc/rrdtool/rrdcreate.pod -share/doc/rrdtool/rrdupdate.pod -share/doc/rrdtool/cdeftutorial.pod -share/doc/rrdtool/rpntutorial.pod -share/doc/rrdtool/rrdgraph.pod -share/doc/rrdtool/bin_dec_hex.pod -share/doc/rrdtool/rrdfetch.pod -share/doc/rrdtool/rrdrestore.pod -share/doc/rrdtool/rrddump.pod -share/doc/rrdtool/rrdtune.pod -share/doc/rrdtool/rrdresize.pod -share/doc/rrdtool/rrdcgi.pod -share/doc/rrdtool/rrdtutorial.pod -share/doc/rrdtool/rrdtool.txt -share/doc/rrdtool/rrdinfo.txt -share/doc/rrdtool/rrdlast.txt -share/doc/rrdtool/rrdcreate.txt -share/doc/rrdtool/rrdupdate.txt -share/doc/rrdtool/cdeftutorial.txt -share/doc/rrdtool/rpntutorial.txt -share/doc/rrdtool/rrdgraph.txt -share/doc/rrdtool/bin_dec_hex.txt -share/doc/rrdtool/rrdfetch.txt -share/doc/rrdtool/rrdrestore.txt -share/doc/rrdtool/rrddump.txt -share/doc/rrdtool/rrdtune.txt -share/doc/rrdtool/rrdresize.txt -share/doc/rrdtool/rrdcgi.txt -share/doc/rrdtool/rrdtutorial.txt -share/doc/rrdtool/RRDs.txt -share/doc/rrdtool/RRDp.txt -share/doc/rrdtool/html/rrdtool.html -share/doc/rrdtool/html/rrdinfo.html -share/doc/rrdtool/html/rrdlast.html -share/doc/rrdtool/html/rrdcreate.html -share/doc/rrdtool/html/rrdupdate.html -share/doc/rrdtool/html/cdeftutorial.html -share/doc/rrdtool/html/rpntutorial.html -share/doc/rrdtool/html/rrdgraph.html -share/doc/rrdtool/html/bin_dec_hex.html -share/doc/rrdtool/html/rrdfetch.html -share/doc/rrdtool/html/rrdrestore.html -share/doc/rrdtool/html/rrddump.html -share/doc/rrdtool/html/rrdtune.html -share/doc/rrdtool/html/rrdresize.html -share/doc/rrdtool/html/rrdcgi.html -share/doc/rrdtool/html/rrdtutorial.html -share/doc/rrdtool/html/RRDs.html -share/doc/rrdtool/html/RRDp.html -lib/perl5/site_perl/%%PERL_VER%%/RRDp.pm -lib/perl5/site_perl/%%PERL_VER%%/%%PERL_ARCH%%/auto/RRDp/.packlist -lib/perl5/site_perl/%%PERL_VER%%/%%PERL_ARCH%%/RRDs.pm -lib/perl5/site_perl/%%PERL_VER%%/%%PERL_ARCH%%/ntmake.pl -lib/perl5/site_perl/%%PERL_VER%%/%%PERL_ARCH%%/auto/RRDs/RRDs.so -lib/perl5/site_perl/%%PERL_VER%%/%%PERL_ARCH%%/auto/RRDs/RRDs.bs -lib/perl5/site_perl/%%PERL_VER%%/%%PERL_ARCH%%/auto/RRDs/.packlist -@dirrm share/examples/rrdtool/log2rrd -@dirrm share/examples/rrdtool/trytime -@dirrm share/examples/rrdtool/rrdproc -@dirrm share/examples/rrdtool/rrd-file-icon -@dirrm share/examples/rrdtool/add_ds -@dirrm share/examples/rrdtool/killspike -@dirrm share/examples/rrdtool/rrdfetchnames -@dirrm share/examples/rrdtool/rrdlastds -@dirrm share/examples/rrdtool -@dirrm share/doc/rrdtool/html -@dirrm share/doc/rrdtool -@dirrm lib/perl5/site_perl/%%PERL_VER%%/%%PERL_ARCH%%/auto/RRDp -@dirrm lib/perl5/site_perl/%%PERL_VER%%/%%PERL_ARCH%%/auto/RRDs diff --git a/databases/rrdtool10/Makefile b/databases/rrdtool10/Makefile deleted file mode 100644 index cb3ff0932fee..000000000000 --- a/databases/rrdtool10/Makefile +++ /dev/null @@ -1,39 +0,0 @@ -# New ports collection makefile for: rrdtool -# Date created: 20 July 1999 -# Whom: Dmitry Sivachenko <dima@Chg.RU> -# -# $FreeBSD$ -# - -PORTNAME= rrdtool -PORTVERSION= 1.0.24 -CATEGORIES= net -MASTER_SITES= http://ee-staff.ethz.ch/~oetiker/webtools/rrdtool/pub/ - -MAINTAINER= dima@Chg.RU - -USE_PERL5= yes -MAKE_ENV+= PERL=${PERL} - -USE_GMAKE= yes -USE_LIBTOOL= yes -INSTALLS_SHLIB= yes -CONFIGURE_ARGS= --enable-shared=yes -CONFIGURE_ENV= PERL=${PERL} - -MAN1= RRDp.1 RRDs.1 bin_dec_hex.1 rrdcgi.1 rrdcreate.1 rrddump.1 \ - rrdfetch.1 rrdgraph.1 rrdlast.1 rrdresize.1 rrdrestore.1 \ - rrdtool.1 rrdtune.1 rrdtutorial.1 rrdupdate.1 cdeftutorial.1 \ - rpntutorial.1 rrdinfo.1 -MAN3= RRDp.3 RRDs.3 -MAN3PREFIX= ${PREFIX}/lib/perl5/${PERL_VERSION} - -post-install: -.if !defined(BATCH) - @${ECHO} "" - @${ECHO} "############################################################################" - @${ECHO} "# See ${PREFIX}/share/examples/rrdtool for some demonstration code #" - @${ECHO} "############################################################################" -.endif - -.include <bsd.port.mk> diff --git a/databases/rrdtool10/distinfo b/databases/rrdtool10/distinfo deleted file mode 100644 index b6ae0ecc5b01..000000000000 --- a/databases/rrdtool10/distinfo +++ /dev/null @@ -1 +0,0 @@ -MD5 (rrdtool-1.0.24.tar.gz) = 251b2ea132245d02039fe67eae6047da diff --git a/databases/rrdtool10/files/patch-aa b/databases/rrdtool10/files/patch-aa deleted file mode 100644 index ebf17ddaf33b..000000000000 --- a/databases/rrdtool10/files/patch-aa +++ /dev/null @@ -1,12 +0,0 @@ ---- perl-shared/Makefile.PL.orig Tue Jun 13 20:51:17 2000 -+++ perl-shared/Makefile.PL Tue Jun 13 20:51:19 2000 -@@ -10,7 +10,8 @@ - 'NAME' => 'RRDs', - 'VERSION_FROM' => 'RRDs.pm', # finds $VERSION - 'DEFINE' => "-DPERLPATCHLEVEL=$Config{PATCHLEVEL}", -- 'INC' => '-I../src -I../gd1.3', -+ 'CCFLAGS' => "-DHAVE_CONFIG_H", -+ 'INC' => '-I../config -I../src -I../gd1.3', - # where to look for the necessary libraries - # Perl will figure out which one is valid - 'depend' => {'RRDs.c' => "../src/.libs/librrd_private.a"}, diff --git a/databases/rrdtool10/files/patch-ab b/databases/rrdtool10/files/patch-ab deleted file mode 100644 index 2513bfe423fb..000000000000 --- a/databases/rrdtool10/files/patch-ab +++ /dev/null @@ -1,18 +0,0 @@ ---- src/rrd_tool.c.orig Tue Jun 13 20:56:08 2000 -+++ src/rrd_tool.c Tue Jun 13 20:56:10 2000 -@@ -317,12 +317,12 @@ - datai=data; - printf(" "); - for (i = 0; i<ds_cnt;i++) -- printf("%14s",ds_namv[i]); -+ printf("%14s ",ds_namv[i]); - printf ("\n\n"); - for (i = start; i <= end; i += step){ -- printf("%10lu:", i); -+ printf("%10lu: ", i); - for (ii = 0; ii < ds_cnt; ii++) -- printf(" %0.10e", *(datai++)); -+ printf(" %0.10e ", *(datai++)); - printf("\n"); - } - for (i=0;i<ds_cnt;i++) diff --git a/databases/rrdtool10/files/patch-ac b/databases/rrdtool10/files/patch-ac deleted file mode 100644 index f1318a481dcb..000000000000 --- a/databases/rrdtool10/files/patch-ac +++ /dev/null @@ -1,21 +0,0 @@ ---- Makefile.in.orig Tue Jun 13 20:58:24 2000 -+++ Makefile.in Tue Jun 13 20:58:25 2000 -@@ -382,12 +382,12 @@ - - - # lets schedule the perl stuff for installation --install-data-local: -- $(INSTALL) -d -m 755 $(DESTDIR)$(prefix)/lib/perl/auto/RRDs -- $(INSTALL) -m 644 perl-piped/RRDp.pm $(DESTDIR)$(prefix)/lib/perl -- $(INSTALL) -m 644 perl-shared/RRDs.pm $(DESTDIR)$(prefix)/lib/perl -- $(INSTALL) -m 644 perl-shared/blib/arch/auto/RRDs/RRDs.bs $(DESTDIR)$(prefix)/lib/perl/auto/RRDs -- $(INSTALL) -m 755 perl-shared/blib/arch/auto/RRDs/RRDs.@SO_EXT@ $(DESTDIR)$(prefix)/lib/perl/auto/RRDs -+install-data-local: site-perl-inst -+# $(INSTALL) -d -m 755 $(DESTDIR)$(prefix)/lib/perl/auto/RRDs -+# $(INSTALL) -m 644 perl-piped/RRDp.pm $(DESTDIR)$(prefix)/lib/perl -+# $(INSTALL) -m 644 perl-shared/RRDs.pm $(DESTDIR)$(prefix)/lib/perl -+# $(INSTALL) -m 644 perl-shared/blib/arch/auto/RRDs/RRDs.bs $(DESTDIR)$(prefix)/lib/perl/auto/RRDs -+# $(INSTALL) -m 755 perl-shared/blib/arch/auto/RRDs/RRDs.@SO_EXT@ $(DESTDIR)$(prefix)/lib/perl/auto/RRDs - - # rules for building the perl module - perl_piped: perl-piped/Makefile diff --git a/databases/rrdtool10/files/patch-ae b/databases/rrdtool10/files/patch-ae deleted file mode 100644 index 98feb795d0ff..000000000000 --- a/databases/rrdtool10/files/patch-ae +++ /dev/null @@ -1,14 +0,0 @@ ---- doc/Makefile.in.orig Fri Jan 7 20:56:21 2000 -+++ doc/Makefile.in Fri Jan 7 20:57:05 2000 -@@ -96,9 +96,9 @@ - EXTRA_DIST = $(POD) $(HTML) $(TXT) - - # some install rules --idocdir = $(prefix)/doc -+idocdir = $(prefix)/share/doc/rrdtool - idoc_DATA = $(POD) $(TXT) --ihtmldir = $(prefix)/html -+ihtmldir = $(prefix)/share/doc/rrdtool/html - ihtml_DATA = $(HTML) - imandir = $(prefix)/man/man1 - iman_DATA = $(MAN) diff --git a/databases/rrdtool10/files/patch-af b/databases/rrdtool10/files/patch-af deleted file mode 100644 index a109c319e248..000000000000 --- a/databases/rrdtool10/files/patch-af +++ /dev/null @@ -1,11 +0,0 @@ ---- examples/Makefile.in.orig Fri Jan 7 20:58:16 2000 -+++ examples/Makefile.in Fri Jan 7 20:59:13 2000 -@@ -81,7 +81,7 @@ - - EXTRA_DIST = cgi-demo.cgi.in piped-demo.pl.in shared-demo.pl.in stripes.pl.in bigtops.pl.in minmax.pl.in - --examplesdir = $(prefix)/examples -+examplesdir = $(prefix)/share/examples/rrdtool - examples_SCRIPTS = cgi-demo.cgi piped-demo.pl shared-demo.pl stripes.pl bigtops.pl minmax.pl - mkinstalldirs = $(SHELL) $(top_srcdir)/config/mkinstalldirs - CONFIG_HEADER = ../config/config.h diff --git a/databases/rrdtool10/files/patch-ag b/databases/rrdtool10/files/patch-ag deleted file mode 100644 index 1463213ac6f3..000000000000 --- a/databases/rrdtool10/files/patch-ag +++ /dev/null @@ -1,11 +0,0 @@ ---- contrib/Makefile.in.orig Tue Jun 13 21:00:28 2000 -+++ contrib/Makefile.in Tue Jun 13 21:01:04 2000 -@@ -86,7 +86,7 @@ - ZLIB_LIB_DIR = @ZLIB_LIB_DIR@ - - SUBDIRS = log2rrd rrd-file-icon trytime rrdproc rrdlastds add_ds killspike rrdfetchnames --contribdir = $(prefix)/contrib -+contribdir = $(prefix)/share/examples/rrdtool - contrib_DATA = README - EXTRA_DIST = clickgraphs php3 - mkinstalldirs = $(SHELL) $(top_srcdir)/config/mkinstalldirs diff --git a/databases/rrdtool10/files/patch-ah b/databases/rrdtool10/files/patch-ah deleted file mode 100644 index ba81028f2075..000000000000 --- a/databases/rrdtool10/files/patch-ah +++ /dev/null @@ -1,11 +0,0 @@ ---- contrib/log2rrd/Makefile.in.orig Fri Jan 7 21:07:22 2000 -+++ contrib/log2rrd/Makefile.in Fri Jan 7 21:07:45 2000 -@@ -77,7 +77,7 @@ - - EXTRA_DIST = log2rrd.pl.in - --contribdir = $(prefix)/contrib/log2rrd -+contribdir = $(prefix)/share/examples/rrdtool/log2rrd - contrib_DATA = README - contrib_SCRIPTS = log2rrd.pl - mkinstalldirs = $(SHELL) $(top_srcdir)/config/mkinstalldirs diff --git a/databases/rrdtool10/files/patch-ai b/databases/rrdtool10/files/patch-ai deleted file mode 100644 index 005a791e0dc8..000000000000 --- a/databases/rrdtool10/files/patch-ai +++ /dev/null @@ -1,11 +0,0 @@ ---- contrib/rrd-file-icon/Makefile.in.orig Fri Jan 7 21:08:22 2000 -+++ contrib/rrd-file-icon/Makefile.in Fri Jan 7 21:08:46 2000 -@@ -76,7 +76,7 @@ - ZLIB_LIB_DIR = @ZLIB_LIB_DIR@ - - EXTRA_DIST = rrd.png --contribdir = $(prefix)/contrib/rrd-file-icon -+contribdir = $(prefix)/share/examples/rrdtool/rrd-file-icon - contrib_DATA = README rrd.png - mkinstalldirs = $(SHELL) $(top_srcdir)/config/mkinstalldirs - CONFIG_HEADER = ../../config/config.h diff --git a/databases/rrdtool10/files/patch-aj b/databases/rrdtool10/files/patch-aj deleted file mode 100644 index 6af2fc2b9ba2..000000000000 --- a/databases/rrdtool10/files/patch-aj +++ /dev/null @@ -1,11 +0,0 @@ ---- contrib/rrdproc/Makefile.in.orig Fri Jan 7 21:09:17 2000 -+++ contrib/rrdproc/Makefile.in Fri Jan 7 21:09:36 2000 -@@ -76,7 +76,7 @@ - ZLIB_LIB_DIR = @ZLIB_LIB_DIR@ - - EXTRA_DIST = rrdproc.c --contribdir = $(prefix)/contrib/rrdproc -+contribdir = $(prefix)/share/examples/rrdtool/rrdproc - contrib_DATA = README rrdproc.c - mkinstalldirs = $(SHELL) $(top_srcdir)/config/mkinstalldirs - CONFIG_HEADER = ../../config/config.h diff --git a/databases/rrdtool10/files/patch-ak b/databases/rrdtool10/files/patch-ak deleted file mode 100644 index f998e6995400..000000000000 --- a/databases/rrdtool10/files/patch-ak +++ /dev/null @@ -1,11 +0,0 @@ ---- contrib/trytime/Makefile.in.orig Fri Jan 7 21:11:21 2000 -+++ contrib/trytime/Makefile.in Fri Jan 7 21:11:41 2000 -@@ -76,7 +76,7 @@ - ZLIB_LIB_DIR = @ZLIB_LIB_DIR@ - - EXTRA_DIST = trytime.c --contribdir = $(prefix)/contrib/trytime -+contribdir = $(prefix)/share/examples/rrdtool/trytime - contrib_DATA = README trytime.c - mkinstalldirs = $(SHELL) $(top_srcdir)/config/mkinstalldirs - CONFIG_HEADER = ../../config/config.h diff --git a/databases/rrdtool10/files/patch-al b/databases/rrdtool10/files/patch-al deleted file mode 100644 index c74995d8f0cb..000000000000 --- a/databases/rrdtool10/files/patch-al +++ /dev/null @@ -1,11 +0,0 @@ ---- contrib/rrdlastds/Makefile.in.orig Sat Feb 12 18:22:45 2000 -+++ contrib/rrdlastds/Makefile.in Sat Feb 12 18:23:30 2000 -@@ -77,7 +77,7 @@ - - EXTRA_DIST = rrdlastds.pl.in - --contribdir = $(prefix)/contrib/rrdlastds -+contribdir = $(prefix)/share/examples/rrdtool/rrdlastds - contrib_DATA = README - contrib_SCRIPTS = rrdlastds.pl - mkinstalldirs = $(SHELL) $(top_srcdir)/config/mkinstalldirs diff --git a/databases/rrdtool10/files/patch-am b/databases/rrdtool10/files/patch-am deleted file mode 100644 index c6cae0440881..000000000000 --- a/databases/rrdtool10/files/patch-am +++ /dev/null @@ -1,11 +0,0 @@ ---- contrib/add_ds/Makefile.in.orig Sat Feb 12 18:26:00 2000 -+++ contrib/add_ds/Makefile.in Sat Feb 12 18:26:17 2000 -@@ -77,7 +77,7 @@ - - EXTRA_DIST = add_ds.pl.in batch.pl.in - --contribdir = $(prefix)/contrib/add_ds -+contribdir = $(prefix)/share/examples/rrdtool/add_ds - contrib_DATA = README - contrib_SCRIPTS = add_ds.pl batch.pl - mkinstalldirs = $(SHELL) $(top_srcdir)/config/mkinstalldirs diff --git a/databases/rrdtool10/files/patch-an b/databases/rrdtool10/files/patch-an deleted file mode 100644 index 6d4b4a9cd45d..000000000000 --- a/databases/rrdtool10/files/patch-an +++ /dev/null @@ -1,11 +0,0 @@ ---- contrib/killspike/Makefile.in.orig Sat Feb 12 18:27:04 2000 -+++ contrib/killspike/Makefile.in Sat Feb 12 18:27:19 2000 -@@ -77,7 +77,7 @@ - - EXTRA_DIST = killspike.pl.in - --contribdir = $(prefix)/contrib/killspike -+contribdir = $(prefix)/share/examples/rrdtool/killspike - contrib_DATA = README - contrib_SCRIPTS = killspike.pl - mkinstalldirs = $(SHELL) $(top_srcdir)/config/mkinstalldirs diff --git a/databases/rrdtool10/files/patch-ao b/databases/rrdtool10/files/patch-ao deleted file mode 100644 index 3dc1cc622454..000000000000 --- a/databases/rrdtool10/files/patch-ao +++ /dev/null @@ -1,11 +0,0 @@ ---- contrib/rrdfetchnames/Makefile.in.orig Mon Feb 14 23:27:59 2000 -+++ contrib/rrdfetchnames/Makefile.in Mon Feb 14 23:28:17 2000 -@@ -77,7 +77,7 @@ - - EXTRA_DIST = rrdfetchnames.pl.in - --contribdir = $(prefix)/contrib/rrdfetchnames -+contribdir = $(prefix)/share/examples/rrdtool/rrdfetchnames - contrib_DATA = README - contrib_SCRIPTS = rrdfetchnames.pl - mkinstalldirs = $(SHELL) $(top_srcdir)/config/mkinstalldirs diff --git a/databases/rrdtool10/pkg-comment b/databases/rrdtool10/pkg-comment deleted file mode 100644 index 73242bc78bb6..000000000000 --- a/databases/rrdtool10/pkg-comment +++ /dev/null @@ -1 +0,0 @@ -Round Robin Database Tools diff --git a/databases/rrdtool10/pkg-descr b/databases/rrdtool10/pkg-descr deleted file mode 100644 index ca95d58a230d..000000000000 --- a/databases/rrdtool10/pkg-descr +++ /dev/null @@ -1,13 +0,0 @@ -It is pretty easy to gather status information from all sorts of things, -ranging from the temperature in your office to the number of octets which -have passed through the FDDI interface of your router. But it is not so -trivial to store this data in a efficient and systematic manner. This is -where RRDtool kicks in. It lets you log and analyze the data you gather from -all kinds of data-sources (DS). The data analysis part of RRDtool is based -on the ability to quickly generate graphical representations of the data -values collected over a definable time period. - -WWW: http://ee-staff.ethz.ch/~oetiker/webtools/rrdtool/ - ---dima -dima@Chg.RU diff --git a/databases/rrdtool10/pkg-plist b/databases/rrdtool10/pkg-plist deleted file mode 100644 index 186251ae32bc..000000000000 --- a/databases/rrdtool10/pkg-plist +++ /dev/null @@ -1,103 +0,0 @@ -bin/rrdtool -bin/rrdcgi -bin/trytime -lib/librrd.a -lib/librrd.so.0 -lib/librrd.so -include/rrd.h -share/examples/rrdtool/cgi-demo.cgi -share/examples/rrdtool/piped-demo.pl -share/examples/rrdtool/shared-demo.pl -share/examples/rrdtool/stripes.pl -share/examples/rrdtool/bigtops.pl -share/examples/rrdtool/minmax.pl -share/examples/rrdtool/log2rrd/log2rrd.pl -share/examples/rrdtool/log2rrd/README -share/examples/rrdtool/rrd-file-icon/rrd.png -share/examples/rrdtool/rrd-file-icon/README -share/examples/rrdtool/trytime/trytime.c -share/examples/rrdtool/trytime/README -share/examples/rrdtool/rrdproc/rrdproc.c -share/examples/rrdtool/rrdproc/README -share/examples/rrdtool/rrdlastds/README -share/examples/rrdtool/rrdlastds/rrdlastds.pl -share/examples/rrdtool/add_ds/add_ds.pl -share/examples/rrdtool/add_ds/batch.pl -share/examples/rrdtool/add_ds/README -share/examples/rrdtool/killspike/killspike.pl -share/examples/rrdtool/killspike/README -share/examples/rrdtool/rrdfetchnames/rrdfetchnames.pl -share/examples/rrdtool/rrdfetchnames/README -share/examples/rrdtool/README -share/doc/rrdtool/rrdtool.pod -share/doc/rrdtool/rrdinfo.pod -share/doc/rrdtool/rrdlast.pod -share/doc/rrdtool/rrdcreate.pod -share/doc/rrdtool/rrdupdate.pod -share/doc/rrdtool/cdeftutorial.pod -share/doc/rrdtool/rpntutorial.pod -share/doc/rrdtool/rrdgraph.pod -share/doc/rrdtool/bin_dec_hex.pod -share/doc/rrdtool/rrdfetch.pod -share/doc/rrdtool/rrdrestore.pod -share/doc/rrdtool/rrddump.pod -share/doc/rrdtool/rrdtune.pod -share/doc/rrdtool/rrdresize.pod -share/doc/rrdtool/rrdcgi.pod -share/doc/rrdtool/rrdtutorial.pod -share/doc/rrdtool/rrdtool.txt -share/doc/rrdtool/rrdinfo.txt -share/doc/rrdtool/rrdlast.txt -share/doc/rrdtool/rrdcreate.txt -share/doc/rrdtool/rrdupdate.txt -share/doc/rrdtool/cdeftutorial.txt -share/doc/rrdtool/rpntutorial.txt -share/doc/rrdtool/rrdgraph.txt -share/doc/rrdtool/bin_dec_hex.txt -share/doc/rrdtool/rrdfetch.txt -share/doc/rrdtool/rrdrestore.txt -share/doc/rrdtool/rrddump.txt -share/doc/rrdtool/rrdtune.txt -share/doc/rrdtool/rrdresize.txt -share/doc/rrdtool/rrdcgi.txt -share/doc/rrdtool/rrdtutorial.txt -share/doc/rrdtool/RRDs.txt -share/doc/rrdtool/RRDp.txt -share/doc/rrdtool/html/rrdtool.html -share/doc/rrdtool/html/rrdinfo.html -share/doc/rrdtool/html/rrdlast.html -share/doc/rrdtool/html/rrdcreate.html -share/doc/rrdtool/html/rrdupdate.html -share/doc/rrdtool/html/cdeftutorial.html -share/doc/rrdtool/html/rpntutorial.html -share/doc/rrdtool/html/rrdgraph.html -share/doc/rrdtool/html/bin_dec_hex.html -share/doc/rrdtool/html/rrdfetch.html -share/doc/rrdtool/html/rrdrestore.html -share/doc/rrdtool/html/rrddump.html -share/doc/rrdtool/html/rrdtune.html -share/doc/rrdtool/html/rrdresize.html -share/doc/rrdtool/html/rrdcgi.html -share/doc/rrdtool/html/rrdtutorial.html -share/doc/rrdtool/html/RRDs.html -share/doc/rrdtool/html/RRDp.html -lib/perl5/site_perl/%%PERL_VER%%/RRDp.pm -lib/perl5/site_perl/%%PERL_VER%%/%%PERL_ARCH%%/auto/RRDp/.packlist -lib/perl5/site_perl/%%PERL_VER%%/%%PERL_ARCH%%/RRDs.pm -lib/perl5/site_perl/%%PERL_VER%%/%%PERL_ARCH%%/ntmake.pl -lib/perl5/site_perl/%%PERL_VER%%/%%PERL_ARCH%%/auto/RRDs/RRDs.so -lib/perl5/site_perl/%%PERL_VER%%/%%PERL_ARCH%%/auto/RRDs/RRDs.bs -lib/perl5/site_perl/%%PERL_VER%%/%%PERL_ARCH%%/auto/RRDs/.packlist -@dirrm share/examples/rrdtool/log2rrd -@dirrm share/examples/rrdtool/trytime -@dirrm share/examples/rrdtool/rrdproc -@dirrm share/examples/rrdtool/rrd-file-icon -@dirrm share/examples/rrdtool/add_ds -@dirrm share/examples/rrdtool/killspike -@dirrm share/examples/rrdtool/rrdfetchnames -@dirrm share/examples/rrdtool/rrdlastds -@dirrm share/examples/rrdtool -@dirrm share/doc/rrdtool/html -@dirrm share/doc/rrdtool -@dirrm lib/perl5/site_perl/%%PERL_VER%%/%%PERL_ARCH%%/auto/RRDp -@dirrm lib/perl5/site_perl/%%PERL_VER%%/%%PERL_ARCH%%/auto/RRDs diff --git a/databases/rubygem-postgres/Makefile b/databases/rubygem-postgres/Makefile deleted file mode 100644 index 514ce8953dc6..000000000000 --- a/databases/rubygem-postgres/Makefile +++ /dev/null @@ -1,47 +0,0 @@ -# New ports collection makefile for: ruby-postgres -# Date created: 19 April 1999 -# Whom: Yasuhiro Fukuma <yasuf@big.or.jp> -# -# $FreeBSD$ -# - -PORTNAME= ruby-postgres -PORTVERSION= 0.5.3 -CATEGORIES= databases -MASTER_SITES= ftp://ftp.netlab.co.jp/pub/lang/ruby/contrib/ \ - ftp://ftp.TokyoNet.AD.JP/pub/misc/ruby/contrib/ \ - ftp://ftp.iij.ad.jp/pub/lang/ruby/contrib/ \ - ftp://blade.nagaokaut.ac.jp/pub/lang/ruby/contrib/ \ - ftp://ftp.krnet.ne.jp/pub/ruby/contrib/ \ - ftp://mirror.nucba.ac.jp/mirror/ruby/contrib/ -DISTNAME= postgres-${PORTVERSION} - -MAINTAINER= yasuf@big.or.jp - -BUILD_DEPENDS= ruby:${PORTSDIR}/lang/ruby -RUN_DEPENDS= ruby:${PORTSDIR}/lang/ruby -LIB_DEPENDS= pq.2:${PORTSDIR}/databases/postgresql - -WRKSRC= ${WRKDIR}/postgres -CONFIGURE_ARGS+= --with-pgsql-include-dir="${PGDIR}/include" \ - --with-pgsql-lib-dir="${PGDIR}/lib" -PLIST_SUB+= RUBY_VER="${RUBY_VER}" RUBY_ARCH="${RUBY_ARCH}" - -RUBY= ${PREFIX}/bin/ruby -RUBY_VER= 1.4 -RUBY_ARCH= ${ARCH}-freebsd${OSREL} - -PGDIR?= ${PREFIX}/pgsql - -do-configure: - @cd ${WRKSRC}; ${SETENV} ${CONFIGURE_ENV} ${RUBY} extconf.rb ${CONFIGURE_ARGS} - -post-install: - ${MKDIR} ${PREFIX}/share/examples/ruby/postgres - ${INSTALL_DATA} ${WRKSRC}/psql*.rb ${PREFIX}/share/examples/ruby/postgres -.if !defined(NOPORTDOCS) - ${MKDIR} ${PREFIX}/share/doc/ruby/postgres - ${INSTALL_DATA} ${WRKSRC}/README* ${WRKSRC}/*.html ${PREFIX}/share/doc/ruby/postgres -.endif - -.include <bsd.port.mk> diff --git a/databases/rubygem-postgres/distinfo b/databases/rubygem-postgres/distinfo deleted file mode 100644 index 1f1ef60baac3..000000000000 --- a/databases/rubygem-postgres/distinfo +++ /dev/null @@ -1 +0,0 @@ -MD5 (postgres-0.5.3.tar.gz) = f34965e627807b9e9ac78e322e3d21f2 diff --git a/databases/rubygem-postgres/pkg-comment b/databases/rubygem-postgres/pkg-comment deleted file mode 100644 index dee7ce026a08..000000000000 --- a/databases/rubygem-postgres/pkg-comment +++ /dev/null @@ -1 +0,0 @@ -Ruby interface to PostgreSQL library diff --git a/databases/rubygem-postgres/pkg-descr b/databases/rubygem-postgres/pkg-descr deleted file mode 100644 index 8fac5ce62d1d..000000000000 --- a/databases/rubygem-postgres/pkg-descr +++ /dev/null @@ -1,4 +0,0 @@ -This is an extention module to access PostgreSQL database from Ruby. - -- Yasuhiro Fukuma -yasuf@big.or.jp diff --git a/databases/rubygem-postgres/pkg-plist b/databases/rubygem-postgres/pkg-plist deleted file mode 100644 index a585c96db95a..000000000000 --- a/databases/rubygem-postgres/pkg-plist +++ /dev/null @@ -1,10 +0,0 @@ -lib/ruby/%%RUBY_VER%%/%%RUBY_ARCH%%/postgres.so -share/examples/ruby/postgres/psql.rb -share/examples/ruby/postgres/psqlHelp.rb -@dirrm share/examples/ruby/postgres -share/doc/ruby/postgres/README -share/doc/ruby/postgres/README.jp -share/doc/ruby/postgres/postgres.html -share/doc/ruby/postgres/postgres.jp.html -@dirrm share/doc/ruby/postgres -@unexec /bin/rmdir %D/share/doc/ruby >/dev/null 2>&1 || true |