diff options
Diffstat (limited to 'databases')
790 files changed, 0 insertions, 49064 deletions
diff --git a/databases/db2/Makefile b/databases/db2/Makefile deleted file mode 100644 index 22b0b1dc4274..000000000000 --- a/databases/db2/Makefile +++ /dev/null @@ -1,40 +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 - -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 58fd9f837cea..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 ea0344b65f75..000000000000 --- a/databases/db33/Makefile +++ /dev/null @@ -1,43 +0,0 @@ -# ports collection makefile for: Berkeley DB v3 -# Date created: 16 August 2000 -# Whom: Sergey Osokin aka oZZ <ozz@FreeBSD.org.ru> -# -# $FreeBSD$ -# - -PORTNAME= db3 -PORTVERSION= 3.2.9 -PORTREVISION= 3 -PORTEPOCH?= 1 -CATEGORIES= databases -MASTER_SITES= http://www.sleepycat.com/update/${PORTVERSION}/ -DISTNAME= db-${PORTVERSION} -DIST_SUBDIR= bdb - -PATCH_SITES= ${MASTER_SITES} -PATCHFILES= patch.${PORTVERSION}.1 patch.${PORTVERSION}.2 -PATCH_DIST_STRIP= -d ${WRKDIR}/${DISTNAME} - -MAINTAINER= ozz@FreeBSD.org.ru - -WRKSRC= ${WRKDIR}/${DISTNAME}/build_unix - -INSTALLS_SHLIB= yes -USE_LIBTOOL= yes -CONFIGURE_SCRIPT= ../dist/configure -LIBTOOLFILES= ${CONFIGURE_SCRIPT} -CONFIGURE_ARGS= --enable-compat185 \ - --enable-dump185 --enable-cxx \ - --enable-dynamic \ - --prefix=${PREFIX} \ - --includedir=${PREFIX}/include/db3 \ - --target=${ARCH}-unknown-freebsd${OSREL} - -pre-patch: - @${PERL} -pi -e 's|-lpthread|${PTHREAD_LIBS}|g' ${WRKSRC}/${CONFIGURE_SCRIPT} - -post-patch: - @${CHMOD} 755 ${WRKSRC}/${CONFIGURE_SCRIPT} - @${PERL} -pi -e "s|%%LOCALBASE%%|${LOCALBASE}|g" ${WRKSRC}/../dist/configure - -.include <bsd.port.mk> diff --git a/databases/db33/distinfo b/databases/db33/distinfo deleted file mode 100644 index 6eeb2e243e88..000000000000 --- a/databases/db33/distinfo +++ /dev/null @@ -1,3 +0,0 @@ -MD5 (bdb/db-3.2.9.tar.gz) = 4df5c7051b11411e0a970f6c91613942 -MD5 (bdb/patch.3.2.9.1) = 9cf113248f29b1e319ae73b266df4986 -MD5 (bdb/patch.3.2.9.2) = f8edd1cf6535cd62f9b8ff81e0474273 diff --git a/databases/db33/files/patch-dist::Makefile.in b/databases/db33/files/patch-dist::Makefile.in deleted file mode 100644 index 5e0f454ea8c0..000000000000 --- a/databases/db33/files/patch-dist::Makefile.in +++ /dev/null @@ -1,145 +0,0 @@ ---- ../dist/Makefile.in.orig Fri Dec 1 02:07:33 2000 -+++ ../dist/Makefile.in Tue Dec 25 13:10:15 2001 -@@ -33,12 +33,12 @@ - - libdb= libdb.a - --libso_base= libdb --libso_linkname= $(libso_base)-$(SOVERSION).la --libso= $(libso_base)-$(SOVERSION).@SOSUFFIX@ --libso_target= $(libso_base)-$(SOVERSION).la -+libso_base= libdb$(SOMAJOR) -+libso_linkname= $(libso_base).la -+libso= $(libso_base).@SOSUFFIX@ -+libso_target= $(libso_base).la - libso_default= $(libso_base).@SOSUFFIX@ --libso_major= $(libso_base)-$(SOMAJOR).@SOSUFFIX@ -+libso_major= $(libso_base).@SOSUFFIX@.2 - - ################################################## - # C++ -@@ -47,12 +47,12 @@ - # You must configure it using: - # --enable-cxx - ################################################## --libcxx= libdb_cxx.a --libxso_base= libdb_cxx --libxso= $(libxso_base)-$(SOVERSION).@SOSUFFIX@ --libxso_target= $(libxso_base)-$(SOVERSION).la -+libcxx= libdb3_cxx.a -+libxso_base= libdb3_cxx -+libxso= $(libxso_base).@SOSUFFIX@ -+libxso_target= $(libxso_base).la - libxso_default= $(libxso_base).@SOSUFFIX@ --libxso_major= $(libxso_base)-$(SOMAJOR).@SOSUFFIX@ -+libxso_major= $(libxso_base).@SOSUFFIX@.2 - - ################################################## - # JAVA -@@ -115,7 +115,7 @@ - bindir= @bindir@ - includedir=@includedir@ - libdir= @libdir@ --docdir= $(prefix)/docs -+docdir= $(prefix)/share/doc/db3 - - dmode= 755 - emode= 555 -@@ -192,8 +192,8 @@ - db_dump@o@ db_load@o@ db_printlog@o@ db_recover@o@ db_stat@o@ \ - db_upgrade@o@ db_verify@o@ util_log@o@ util_sig@o@ - --PROGS= @ADDITIONAL_PROGS@ db_archive db_checkpoint db_deadlock \ -- db_dump db_load db_printlog db_recover db_stat db_upgrade db_verify -+PROGS= @ADDITIONAL_PROGS@ db3_archive db3_checkpoint db3_deadlock \ -+ db3_dump db3_load db3_printlog db3_recover db3_stat db3_upgrade db3_verify - - JAVA_DBSRCS=\ - $(JAVA_DBDIR)/Db.java $(JAVA_DBDIR)/DbAppendRecno.java \ -@@ -279,53 +279,53 @@ - $(CCLINK) -o $@ $(LDFLAGS) $(RPC_SRV) util_log@o@ $(LIBDB_ARGS) $(LIBS) - $(POSTLINK) $@ - --db_archive: db_archive@o@ util_sig@o@ @DEFAULT_LIB@ -+db3_archive: db_archive@o@ util_sig@o@ @DEFAULT_LIB@ - $(CCLINK) -o $@ $(LDFLAGS) \ - db_archive@o@ util_sig@o@ $(LIBDB_ARGS) $(LIBS) - $(POSTLINK) $@ - --db_checkpoint: db_checkpoint@o@ util_log@o@ util_sig@o@ @DEFAULT_LIB@ -+db3_checkpoint: db_checkpoint@o@ util_log@o@ util_sig@o@ @DEFAULT_LIB@ - $(CCLINK) -o $@ $(LDFLAGS) \ - db_checkpoint@o@ util_log@o@ util_sig@o@ $(LIBDB_ARGS) $(LIBS) - $(POSTLINK) $@ - --db_deadlock: db_deadlock@o@ util_log@o@ util_sig@o@ @DEFAULT_LIB@ -+db3_deadlock: db_deadlock@o@ util_log@o@ util_sig@o@ @DEFAULT_LIB@ - $(CCLINK) -o $@ $(LDFLAGS) \ - db_deadlock@o@ util_log@o@ util_sig@o@ $(LIBDB_ARGS) $(LIBS) - $(POSTLINK) $@ - --db_dump: db_dump@o@ util_sig@o@ @DEFAULT_LIB@ -+db3_dump: db_dump@o@ util_sig@o@ @DEFAULT_LIB@ - $(CCLINK) -o $@ $(LDFLAGS) db_dump@o@ util_sig@o@ $(LIBDB_ARGS) $(LIBS) - $(POSTLINK) $@ - --db_dump185: db_dump185@o@ @LIBOBJS@ -+db3_dump185: db_dump185@o@ @LIBOBJS@ - $(CCLINK) -o $@ $(LDFLAGS) db_dump185@o@ @LIBOBJS@ $(DB185LIB) - $(POSTLINK) $@ - --db_load: db_load@o@ util_sig@o@ @DEFAULT_LIB@ -+db3_load: db_load@o@ util_sig@o@ @DEFAULT_LIB@ - $(CCLINK) -o $@ $(LDFLAGS) db_load@o@ util_sig@o@ $(LIBDB_ARGS) $(LIBS) - $(POSTLINK) $@ - --db_printlog: db_printlog@o@ util_sig@o@ @DEFAULT_LIB@ -+db3_printlog: db_printlog@o@ util_sig@o@ @DEFAULT_LIB@ - $(CCLINK) -o $@ $(LDFLAGS) \ - db_printlog@o@ util_sig@o@ $(LIBDB_ARGS) $(LIBS) - $(POSTLINK) $@ - --db_recover: db_recover@o@ util_sig@o@ @DEFAULT_LIB@ -+db3_recover: db_recover@o@ util_sig@o@ @DEFAULT_LIB@ - $(CCLINK) -o $@ $(LDFLAGS) \ - db_recover@o@ util_sig@o@ $(LIBDB_ARGS) $(LIBS) - $(POSTLINK) $@ - --db_stat: db_stat@o@ util_sig@o@ @DEFAULT_LIB@ -+db3_stat: db_stat@o@ util_sig@o@ @DEFAULT_LIB@ - $(CCLINK) -o $@ $(LDFLAGS) db_stat@o@ util_sig@o@ $(LIBDB_ARGS) $(LIBS) - $(POSTLINK) $@ - --db_upgrade: db_upgrade@o@ util_sig@o@ @DEFAULT_LIB@ -+db3_upgrade: db_upgrade@o@ util_sig@o@ @DEFAULT_LIB@ - $(CCLINK) -o $@ $(LDFLAGS) \ - db_upgrade@o@ util_sig@o@ $(LIBDB_ARGS) $(LIBS) - $(POSTLINK) $@ - --db_verify: db_verify@o@ util_sig@o@ @DEFAULT_LIB@ -+db3_verify: db_verify@o@ util_sig@o@ @DEFAULT_LIB@ - $(CCLINK) -o $@ $(LDFLAGS) \ - db_verify@o@ util_sig@o@ $(LIBDB_ARGS) $(LIBS) - $(POSTLINK) $@ -@@ -452,8 +452,8 @@ - @cd $(libdir) && $(rm) -f \ - $(libso_target) $(libso) $(libso_default) $(libso_major) - @$(INSTALLER) $(libso_target) $(libdir) -- @cd $(libdir) && $(ln) -s $(libso) $(libso_default) -- @cd $(libdir) && $(ln) -s $(libso) $(libso_major) -+ @cd $(libdir) && $(chmod) $(fmode) $(libso_major) -+# @cd $(libdir) && $(ln) -s $(libso_major) $(libso_default) - @$(LIBTOOL) --mode=finish $(libdir) - - install_dynamic_cxx: -@@ -463,8 +463,8 @@ - @cd $(libdir) && $(rm) -f \ - $(libxso_target) $(libxso) $(libxso_default) $(libxso_major) - @$(INSTALLER) $(libxso_target) $(libdir) -- @cd $(libdir) && $(ln) -s $(libxso) $(libxso_default) -- @cd $(libdir) && $(ln) -s $(libxso) $(libxso_major) -+ @cd $(libdir) && $(chmod) $(fmode) $(libxso_major) -+# @cd $(libdir) && $(ln) -s $(libxso_major) $(libxso_default) - - install_tcl: - @echo "Installing DB Tcl library: $(libdir) ..." diff --git a/databases/db33/files/patch-dist::configure b/databases/db33/files/patch-dist::configure deleted file mode 100644 index 9e43a30565f8..000000000000 --- a/databases/db33/files/patch-dist::configure +++ /dev/null @@ -1,33 +0,0 @@ ---- ../dist/configure.orig Tue Dec 25 12:41:16 2001 -+++ ../dist/configure Tue Dec 25 12:50:29 2001 -@@ -1626,9 +1626,9 @@ - echo $ac_n "checking libtool configuration""... $ac_c" 1>&6 - echo "configure:1628: checking libtool configuration" >&5 - echo "$ac_t""" 1>&6 -- ${CONFIG_SHELL-/bin/sh} $srcdir/ltconfig \ -- --no-verify $srcdir/ltmain.sh \ -- --output=./libtool $host_os \ -+ ${CONFIG_SHELL-/bin/sh} /usr/local/share/libtool/ltconfig \ -+ --no-verify --disable-ltlibs /usr/local/share/libtool/ltmain.sh $target \ -+ --output=./libtool \ - --disable-static \ - || { echo "configure: error: libtool configure failed" 1>&2; exit 1; } - -@@ -1644,7 +1644,7 @@ - - INSTALLER="\$(LIBTOOL) --mode=install cp" - POSTLINK="\$(LIBTOOL) --mode=execute true" -- SOLINK="\$(LIBTOOL) --mode=link ${SAVE_CC} -avoid-version" -+ SOLINK="\$(LIBTOOL) --mode=link ${SAVE_CC} -version-info ${DB_VERSION_MINOR}" - SOFLAGS="-rpath \$(libdir)" - o=".lo" - fi -@@ -2093,7 +2093,7 @@ - fi - - if test "$db_cv_dump185" = "yes"; then -- ADDITIONAL_PROGS="db_dump185 $ADDITIONAL_PROGS" -+ ADDITIONAL_PROGS="db3_dump185 $ADDITIONAL_PROGS" - fi - - echo $ac_n "checking for pthread_create in "-pthread"""... $ac_c" 1>&6 diff --git a/databases/db33/pkg-comment b/databases/db33/pkg-comment deleted file mode 100644 index d23a3a6733f8..000000000000 --- a/databases/db33/pkg-comment +++ /dev/null @@ -1 +0,0 @@ -The Berkeley DB package, revision 3 diff --git a/databases/db33/pkg-descr b/databases/db33/pkg-descr deleted file mode 100644 index c57853873878..000000000000 --- a/databases/db33/pkg-descr +++ /dev/null @@ -1,13 +0,0 @@ -Revision 3 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 v3 -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 855f9e8f0e8e..000000000000 --- a/databases/db33/pkg-plist +++ /dev/null @@ -1,781 +0,0 @@ -bin/db3_archive -bin/db3_checkpoint -bin/db3_deadlock -bin/db3_dump -bin/db3_dump185 -bin/db3_load -bin/db3_printlog -bin/db3_recover -bin/db3_stat -bin/db3_upgrade -bin/db3_verify -include/db3/db.h -include/db3/db_185.h -include/db3/db_cxx.h -lib/libdb3.so -lib/libdb3.so.2 -lib/libdb3_cxx.so -lib/libdb3_cxx.so.2 -share/doc/db3/api_c/c_index.html -share/doc/db3/api_c/c_pindex.html -share/doc/db3/api_c/db_close.html -share/doc/db3/api_c/db_create.html -share/doc/db3/api_c/db_cursor.html -share/doc/db3/api_c/db_del.html -share/doc/db3/api_c/db_err.html -share/doc/db3/api_c/db_fd.html -share/doc/db3/api_c/db_get.html -share/doc/db3/api_c/db_get_byteswapped.html -share/doc/db3/api_c/db_get_type.html -share/doc/db3/api_c/db_join.html -share/doc/db3/api_c/db_key_range.html -share/doc/db3/api_c/db_lsn.html -share/doc/db3/api_c/db_open.html -share/doc/db3/api_c/db_put.html -share/doc/db3/api_c/db_remove.html -share/doc/db3/api_c/db_rename.html -share/doc/db3/api_c/db_set_append_recno.html -share/doc/db3/api_c/db_set_bt_compare.html -share/doc/db3/api_c/db_set_bt_minkey.html -share/doc/db3/api_c/db_set_bt_prefix.html -share/doc/db3/api_c/db_set_cachesize.html -share/doc/db3/api_c/db_set_dup_compare.html -share/doc/db3/api_c/db_set_errcall.html -share/doc/db3/api_c/db_set_errfile.html -share/doc/db3/api_c/db_set_errpfx.html -share/doc/db3/api_c/db_set_feedback.html -share/doc/db3/api_c/db_set_flags.html -share/doc/db3/api_c/db_set_h_ffactor.html -share/doc/db3/api_c/db_set_h_hash.html -share/doc/db3/api_c/db_set_h_nelem.html -share/doc/db3/api_c/db_set_lorder.html -share/doc/db3/api_c/db_set_malloc.html -share/doc/db3/api_c/db_set_pagesize.html -share/doc/db3/api_c/db_set_paniccall.html -share/doc/db3/api_c/db_set_q_extentsize.html -share/doc/db3/api_c/db_set_re_delim.html -share/doc/db3/api_c/db_set_re_len.html -share/doc/db3/api_c/db_set_re_pad.html -share/doc/db3/api_c/db_set_re_source.html -share/doc/db3/api_c/db_set_realloc.html -share/doc/db3/api_c/db_stat.html -share/doc/db3/api_c/db_sync.html -share/doc/db3/api_c/db_upgrade.html -share/doc/db3/api_c/db_verify.html -share/doc/db3/api_c/dbc_close.html -share/doc/db3/api_c/dbc_count.html -share/doc/db3/api_c/dbc_del.html -share/doc/db3/api_c/dbc_dup.html -share/doc/db3/api_c/dbc_get.html -share/doc/db3/api_c/dbc_put.html -share/doc/db3/api_c/dbm.html -share/doc/db3/api_c/dbt.html -share/doc/db3/api_c/env_close.html -share/doc/db3/api_c/env_create.html -share/doc/db3/api_c/env_open.html -share/doc/db3/api_c/env_remove.html -share/doc/db3/api_c/env_set_cachesize.html -share/doc/db3/api_c/env_set_data_dir.html -share/doc/db3/api_c/env_set_errcall.html -share/doc/db3/api_c/env_set_errfile.html -share/doc/db3/api_c/env_set_errpfx.html -share/doc/db3/api_c/env_set_feedback.html -share/doc/db3/api_c/env_set_flags.html -share/doc/db3/api_c/env_set_lg_bsize.html -share/doc/db3/api_c/env_set_lg_dir.html -share/doc/db3/api_c/env_set_lg_max.html -share/doc/db3/api_c/env_set_lk_conflicts.html -share/doc/db3/api_c/env_set_lk_detect.html -share/doc/db3/api_c/env_set_lk_max.html -share/doc/db3/api_c/env_set_lk_max_lockers.html -share/doc/db3/api_c/env_set_lk_max_locks.html -share/doc/db3/api_c/env_set_lk_max_objects.html -share/doc/db3/api_c/env_set_mp_mmapsize.html -share/doc/db3/api_c/env_set_mutexlocks.html -share/doc/db3/api_c/env_set_pageyield.html -share/doc/db3/api_c/env_set_paniccall.html -share/doc/db3/api_c/env_set_panicstate.html -share/doc/db3/api_c/env_set_rec_init.html -share/doc/db3/api_c/env_set_region_init.html -share/doc/db3/api_c/env_set_server.html -share/doc/db3/api_c/env_set_shm_key.html -share/doc/db3/api_c/env_set_tas_spins.html -share/doc/db3/api_c/env_set_tmp_dir.html -share/doc/db3/api_c/env_set_tx_max.html -share/doc/db3/api_c/env_set_tx_recover.html -share/doc/db3/api_c/env_set_tx_timestamp.html -share/doc/db3/api_c/env_set_verbose.html -share/doc/db3/api_c/env_strerror.html -share/doc/db3/api_c/env_version.html -share/doc/db3/api_c/hsearch.html -share/doc/db3/api_c/lock_detect.html -share/doc/db3/api_c/lock_get.html -share/doc/db3/api_c/lock_id.html -share/doc/db3/api_c/lock_put.html -share/doc/db3/api_c/lock_stat.html -share/doc/db3/api_c/lock_vec.html -share/doc/db3/api_c/log_archive.html -share/doc/db3/api_c/log_compare.html -share/doc/db3/api_c/log_file.html -share/doc/db3/api_c/log_flush.html -share/doc/db3/api_c/log_get.html -share/doc/db3/api_c/log_put.html -share/doc/db3/api_c/log_register.html -share/doc/db3/api_c/log_stat.html -share/doc/db3/api_c/log_unregister.html -share/doc/db3/api_c/memp_fclose.html -share/doc/db3/api_c/memp_fget.html -share/doc/db3/api_c/memp_fopen.html -share/doc/db3/api_c/memp_fput.html -share/doc/db3/api_c/memp_fset.html -share/doc/db3/api_c/memp_fsync.html -share/doc/db3/api_c/memp_register.html -share/doc/db3/api_c/memp_stat.html -share/doc/db3/api_c/memp_sync.html -share/doc/db3/api_c/memp_trickle.html -share/doc/db3/api_c/pindex.src -share/doc/db3/api_c/set_func_close.html -share/doc/db3/api_c/set_func_dirfree.html -share/doc/db3/api_c/set_func_dirlist.html -share/doc/db3/api_c/set_func_exists.html -share/doc/db3/api_c/set_func_free.html -share/doc/db3/api_c/set_func_fsync.html -share/doc/db3/api_c/set_func_ioinfo.html -share/doc/db3/api_c/set_func_malloc.html -share/doc/db3/api_c/set_func_map.html -share/doc/db3/api_c/set_func_open.html -share/doc/db3/api_c/set_func_read.html -share/doc/db3/api_c/set_func_realloc.html -share/doc/db3/api_c/set_func_rename.html -share/doc/db3/api_c/set_func_seek.html -share/doc/db3/api_c/set_func_sleep.html -share/doc/db3/api_c/set_func_unlink.html -share/doc/db3/api_c/set_func_unmap.html -share/doc/db3/api_c/set_func_write.html -share/doc/db3/api_c/set_func_yield.html -share/doc/db3/api_c/txn_abort.html -share/doc/db3/api_c/txn_begin.html -share/doc/db3/api_c/txn_checkpoint.html -share/doc/db3/api_c/txn_commit.html -share/doc/db3/api_c/txn_id.html -share/doc/db3/api_c/txn_prepare.html -share/doc/db3/api_c/txn_stat.html -share/doc/db3/api_cxx/cxx_index.html -share/doc/db3/api_cxx/cxx_pindex.html -share/doc/db3/api_cxx/db_class.html -share/doc/db3/api_cxx/db_close.html -share/doc/db3/api_cxx/db_cursor.html -share/doc/db3/api_cxx/db_del.html -share/doc/db3/api_cxx/db_err.html -share/doc/db3/api_cxx/db_fd.html -share/doc/db3/api_cxx/db_get.html -share/doc/db3/api_cxx/db_get_byteswapped.html -share/doc/db3/api_cxx/db_get_type.html -share/doc/db3/api_cxx/db_join.html -share/doc/db3/api_cxx/db_key_range.html -share/doc/db3/api_cxx/db_open.html -share/doc/db3/api_cxx/db_put.html -share/doc/db3/api_cxx/db_remove.html -share/doc/db3/api_cxx/db_rename.html -share/doc/db3/api_cxx/db_set_append_recno.html -share/doc/db3/api_cxx/db_set_bt_compare.html -share/doc/db3/api_cxx/db_set_bt_minkey.html -share/doc/db3/api_cxx/db_set_bt_prefix.html -share/doc/db3/api_cxx/db_set_cachesize.html -share/doc/db3/api_cxx/db_set_dup_compare.html -share/doc/db3/api_cxx/db_set_errcall.html -share/doc/db3/api_cxx/db_set_errfile.html -share/doc/db3/api_cxx/db_set_errpfx.html -share/doc/db3/api_cxx/db_set_feedback.html -share/doc/db3/api_cxx/db_set_flags.html -share/doc/db3/api_cxx/db_set_h_ffactor.html -share/doc/db3/api_cxx/db_set_h_hash.html -share/doc/db3/api_cxx/db_set_h_nelem.html -share/doc/db3/api_cxx/db_set_lorder.html -share/doc/db3/api_cxx/db_set_malloc.html -share/doc/db3/api_cxx/db_set_pagesize.html -share/doc/db3/api_cxx/db_set_paniccall.html -share/doc/db3/api_cxx/db_set_q_extentsize.html -share/doc/db3/api_cxx/db_set_re_delim.html -share/doc/db3/api_cxx/db_set_re_len.html -share/doc/db3/api_cxx/db_set_re_pad.html -share/doc/db3/api_cxx/db_set_re_source.html -share/doc/db3/api_cxx/db_set_realloc.html -share/doc/db3/api_cxx/db_stat.html -share/doc/db3/api_cxx/db_sync.html -share/doc/db3/api_cxx/db_upgrade.html -share/doc/db3/api_cxx/db_verify.html -share/doc/db3/api_cxx/dbc_class.html -share/doc/db3/api_cxx/dbc_close.html -share/doc/db3/api_cxx/dbc_count.html -share/doc/db3/api_cxx/dbc_del.html -share/doc/db3/api_cxx/dbc_dup.html -share/doc/db3/api_cxx/dbc_get.html -share/doc/db3/api_cxx/dbc_put.html -share/doc/db3/api_cxx/dbenv_class.html -share/doc/db3/api_cxx/dbt_class.html -share/doc/db3/api_cxx/env_close.html -share/doc/db3/api_cxx/env_open.html -share/doc/db3/api_cxx/env_remove.html -share/doc/db3/api_cxx/env_set_cachesize.html -share/doc/db3/api_cxx/env_set_data_dir.html -share/doc/db3/api_cxx/env_set_errcall.html -share/doc/db3/api_cxx/env_set_errfile.html -share/doc/db3/api_cxx/env_set_error_stream.html -share/doc/db3/api_cxx/env_set_errpfx.html -share/doc/db3/api_cxx/env_set_feedback.html -share/doc/db3/api_cxx/env_set_flags.html -share/doc/db3/api_cxx/env_set_lg_bsize.html -share/doc/db3/api_cxx/env_set_lg_dir.html -share/doc/db3/api_cxx/env_set_lg_max.html -share/doc/db3/api_cxx/env_set_lk_conflicts.html -share/doc/db3/api_cxx/env_set_lk_detect.html -share/doc/db3/api_cxx/env_set_lk_max.html -share/doc/db3/api_cxx/env_set_lk_max_lockers.html -share/doc/db3/api_cxx/env_set_lk_max_locks.html -share/doc/db3/api_cxx/env_set_lk_max_objects.html -share/doc/db3/api_cxx/env_set_mp_mmapsize.html -share/doc/db3/api_cxx/env_set_mutexlocks.html -share/doc/db3/api_cxx/env_set_pageyield.html -share/doc/db3/api_cxx/env_set_paniccall.html -share/doc/db3/api_cxx/env_set_panicstate.html -share/doc/db3/api_cxx/env_set_rec_init.html -share/doc/db3/api_cxx/env_set_region_init.html -share/doc/db3/api_cxx/env_set_server.html -share/doc/db3/api_cxx/env_set_shm_key.html -share/doc/db3/api_cxx/env_set_tas_spins.html -share/doc/db3/api_cxx/env_set_tmp_dir.html -share/doc/db3/api_cxx/env_set_tx_max.html -share/doc/db3/api_cxx/env_set_tx_recover.html -share/doc/db3/api_cxx/env_set_tx_timestamp.html -share/doc/db3/api_cxx/env_set_verbose.html -share/doc/db3/api_cxx/env_strerror.html -share/doc/db3/api_cxx/env_version.html -share/doc/db3/api_cxx/except_class.html -share/doc/db3/api_cxx/get_errno.html -share/doc/db3/api_cxx/lock_class.html -share/doc/db3/api_cxx/lock_detect.html -share/doc/db3/api_cxx/lock_get.html -share/doc/db3/api_cxx/lock_id.html -share/doc/db3/api_cxx/lock_put.html -share/doc/db3/api_cxx/lock_stat.html -share/doc/db3/api_cxx/lock_vec.html -share/doc/db3/api_cxx/log_archive.html -share/doc/db3/api_cxx/log_compare.html -share/doc/db3/api_cxx/log_file.html -share/doc/db3/api_cxx/log_flush.html -share/doc/db3/api_cxx/log_get.html -share/doc/db3/api_cxx/log_put.html -share/doc/db3/api_cxx/log_register.html -share/doc/db3/api_cxx/log_stat.html -share/doc/db3/api_cxx/log_unregister.html -share/doc/db3/api_cxx/lsn_class.html -share/doc/db3/api_cxx/memp_fclose.html -share/doc/db3/api_cxx/memp_fget.html -share/doc/db3/api_cxx/memp_fopen.html -share/doc/db3/api_cxx/memp_fput.html -share/doc/db3/api_cxx/memp_fset.html -share/doc/db3/api_cxx/memp_fsync.html -share/doc/db3/api_cxx/memp_register.html -share/doc/db3/api_cxx/memp_stat.html -share/doc/db3/api_cxx/memp_sync.html -share/doc/db3/api_cxx/memp_trickle.html -share/doc/db3/api_cxx/mempfile_class.html -share/doc/db3/api_cxx/pindex.src -share/doc/db3/api_cxx/txn_abort.html -share/doc/db3/api_cxx/txn_begin.html -share/doc/db3/api_cxx/txn_checkpoint.html -share/doc/db3/api_cxx/txn_class.html -share/doc/db3/api_cxx/txn_commit.html -share/doc/db3/api_cxx/txn_id.html -share/doc/db3/api_cxx/txn_prepare.html -share/doc/db3/api_cxx/txn_stat.html -share/doc/db3/api_cxx/what.html -share/doc/db3/api_java/db_class.html -share/doc/db3/api_java/db_close.html -share/doc/db3/api_java/db_cursor.html -share/doc/db3/api_java/db_del.html -share/doc/db3/api_java/db_fd.html -share/doc/db3/api_java/db_get.html -share/doc/db3/api_java/db_get_byteswapped.html -share/doc/db3/api_java/db_get_type.html -share/doc/db3/api_java/db_join.html -share/doc/db3/api_java/db_key_range.html -share/doc/db3/api_java/db_open.html -share/doc/db3/api_java/db_put.html -share/doc/db3/api_java/db_remove.html -share/doc/db3/api_java/db_rename.html -share/doc/db3/api_java/db_set_append_recno.html -share/doc/db3/api_java/db_set_bt_compare.html -share/doc/db3/api_java/db_set_bt_minkey.html -share/doc/db3/api_java/db_set_bt_prefix.html -share/doc/db3/api_java/db_set_cachesize.html -share/doc/db3/api_java/db_set_dup_compare.html -share/doc/db3/api_java/db_set_errcall.html -share/doc/db3/api_java/db_set_errpfx.html -share/doc/db3/api_java/db_set_feedback.html -share/doc/db3/api_java/db_set_flags.html -share/doc/db3/api_java/db_set_h_ffactor.html -share/doc/db3/api_java/db_set_h_hash.html -share/doc/db3/api_java/db_set_h_nelem.html -share/doc/db3/api_java/db_set_lorder.html -share/doc/db3/api_java/db_set_pagesize.html -share/doc/db3/api_java/db_set_q_extentsize.html -share/doc/db3/api_java/db_set_re_delim.html -share/doc/db3/api_java/db_set_re_len.html -share/doc/db3/api_java/db_set_re_pad.html -share/doc/db3/api_java/db_set_re_source.html -share/doc/db3/api_java/db_stat.html -share/doc/db3/api_java/db_sync.html -share/doc/db3/api_java/db_upgrade.html -share/doc/db3/api_java/db_verify.html -share/doc/db3/api_java/dbc_class.html -share/doc/db3/api_java/dbc_close.html -share/doc/db3/api_java/dbc_count.html -share/doc/db3/api_java/dbc_del.html -share/doc/db3/api_java/dbc_dup.html -share/doc/db3/api_java/dbc_get.html -share/doc/db3/api_java/dbc_put.html -share/doc/db3/api_java/dbenv_class.html -share/doc/db3/api_java/dbt_class.html -share/doc/db3/api_java/deadlock_class.html -share/doc/db3/api_java/env_close.html -share/doc/db3/api_java/env_open.html -share/doc/db3/api_java/env_remove.html -share/doc/db3/api_java/env_set_cachesize.html -share/doc/db3/api_java/env_set_data_dir.html -share/doc/db3/api_java/env_set_errcall.html -share/doc/db3/api_java/env_set_error_stream.html -share/doc/db3/api_java/env_set_errpfx.html -share/doc/db3/api_java/env_set_feedback.html -share/doc/db3/api_java/env_set_flags.html -share/doc/db3/api_java/env_set_lg_bsize.html -share/doc/db3/api_java/env_set_lg_dir.html -share/doc/db3/api_java/env_set_lg_max.html -share/doc/db3/api_java/env_set_lk_conflicts.html -share/doc/db3/api_java/env_set_lk_detect.html -share/doc/db3/api_java/env_set_lk_max.html -share/doc/db3/api_java/env_set_lk_max_lockers.html -share/doc/db3/api_java/env_set_lk_max_locks.html -share/doc/db3/api_java/env_set_lk_max_objects.html -share/doc/db3/api_java/env_set_mp_mmapsize.html -share/doc/db3/api_java/env_set_mutexlocks.html -share/doc/db3/api_java/env_set_pageyield.html -share/doc/db3/api_java/env_set_panicstate.html -share/doc/db3/api_java/env_set_rec_init.html -share/doc/db3/api_java/env_set_region_init.html -share/doc/db3/api_java/env_set_server.html -share/doc/db3/api_java/env_set_shm_key.html -share/doc/db3/api_java/env_set_tas_spins.html -share/doc/db3/api_java/env_set_tmp_dir.html -share/doc/db3/api_java/env_set_tx_max.html -share/doc/db3/api_java/env_set_tx_recover.html -share/doc/db3/api_java/env_set_tx_timestamp.html -share/doc/db3/api_java/env_set_verbose.html -share/doc/db3/api_java/env_strerror.html -share/doc/db3/api_java/env_version.html -share/doc/db3/api_java/except_class.html -share/doc/db3/api_java/get_errno.html -share/doc/db3/api_java/java_index.html -share/doc/db3/api_java/java_pindex.html -share/doc/db3/api_java/lock_class.html -share/doc/db3/api_java/lock_detect.html -share/doc/db3/api_java/lock_get.html -share/doc/db3/api_java/lock_id.html -share/doc/db3/api_java/lock_put.html -share/doc/db3/api_java/lock_stat.html -share/doc/db3/api_java/lock_vec.html -share/doc/db3/api_java/log_archive.html -share/doc/db3/api_java/log_compare.html -share/doc/db3/api_java/log_file.html -share/doc/db3/api_java/log_flush.html -share/doc/db3/api_java/log_get.html -share/doc/db3/api_java/log_put.html -share/doc/db3/api_java/log_register.html -share/doc/db3/api_java/log_stat.html -share/doc/db3/api_java/log_unregister.html -share/doc/db3/api_java/lsn_class.html -share/doc/db3/api_java/mem_class.html -share/doc/db3/api_java/memp_fclose.html -share/doc/db3/api_java/memp_fget.html -share/doc/db3/api_java/memp_fopen.html -share/doc/db3/api_java/memp_fput.html -share/doc/db3/api_java/memp_fset.html -share/doc/db3/api_java/memp_fsync.html -share/doc/db3/api_java/memp_register.html -share/doc/db3/api_java/memp_stat.html -share/doc/db3/api_java/memp_sync.html -share/doc/db3/api_java/memp_trickle.html -share/doc/db3/api_java/pindex.src -share/doc/db3/api_java/runrec_class.html -share/doc/db3/api_java/txn_abort.html -share/doc/db3/api_java/txn_begin.html -share/doc/db3/api_java/txn_checkpoint.html -share/doc/db3/api_java/txn_class.html -share/doc/db3/api_java/txn_commit.html -share/doc/db3/api_java/txn_id.html -share/doc/db3/api_java/txn_prepare.html -share/doc/db3/api_java/txn_stat.html -share/doc/db3/api_tcl/db_close.html -share/doc/db3/api_tcl/db_count.html -share/doc/db3/api_tcl/db_cursor.html -share/doc/db3/api_tcl/db_del.html -share/doc/db3/api_tcl/db_get.html -share/doc/db3/api_tcl/db_get_join.html -share/doc/db3/api_tcl/db_get_type.html -share/doc/db3/api_tcl/db_is_byteswapped.html -share/doc/db3/api_tcl/db_join.html -share/doc/db3/api_tcl/db_open.html -share/doc/db3/api_tcl/db_put.html -share/doc/db3/api_tcl/db_remove.html -share/doc/db3/api_tcl/db_rename.html -share/doc/db3/api_tcl/db_stat.html -share/doc/db3/api_tcl/db_sync.html -share/doc/db3/api_tcl/dbc_close.html -share/doc/db3/api_tcl/dbc_del.html -share/doc/db3/api_tcl/dbc_dup.html -share/doc/db3/api_tcl/dbc_get.html -share/doc/db3/api_tcl/dbc_put.html -share/doc/db3/api_tcl/env_close.html -share/doc/db3/api_tcl/env_open.html -share/doc/db3/api_tcl/env_remove.html -share/doc/db3/api_tcl/pindex.src -share/doc/db3/api_tcl/tcl_index.html -share/doc/db3/api_tcl/tcl_pindex.html -share/doc/db3/api_tcl/txn.html -share/doc/db3/api_tcl/txn_abort.html -share/doc/db3/api_tcl/txn_commit.html -share/doc/db3/api_tcl/version.html -share/doc/db3/images/api.gif -share/doc/db3/images/next.gif -share/doc/db3/images/prev.gif -share/doc/db3/images/ps.gif -share/doc/db3/images/ref.gif -share/doc/db3/images/sleepycat.gif -share/doc/db3/index.html -share/doc/db3/ref/am/close.html -share/doc/db3/ref/am/count.html -share/doc/db3/ref/am/curclose.html -share/doc/db3/ref/am/curdel.html -share/doc/db3/ref/am/curdup.html -share/doc/db3/ref/am/curget.html -share/doc/db3/ref/am/curput.html -share/doc/db3/ref/am/cursor.html -share/doc/db3/ref/am/delete.html -share/doc/db3/ref/am/error.html -share/doc/db3/ref/am/get.html -share/doc/db3/ref/am/join.html -share/doc/db3/ref/am/open.html -share/doc/db3/ref/am/opensub.html -share/doc/db3/ref/am/ops.html -share/doc/db3/ref/am/partial.html -share/doc/db3/ref/am/put.html -share/doc/db3/ref/am/stability.html -share/doc/db3/ref/am/stat.html -share/doc/db3/ref/am/sync.html -share/doc/db3/ref/am/upgrade.html -share/doc/db3/ref/am/verify.html -share/doc/db3/ref/am_conf/bt_compare.html -share/doc/db3/ref/am_conf/bt_minkey.html -share/doc/db3/ref/am_conf/bt_prefix.html -share/doc/db3/ref/am_conf/bt_recnum.html -share/doc/db3/ref/am_conf/byteorder.html -share/doc/db3/ref/am_conf/cachesize.html -share/doc/db3/ref/am_conf/dup.html -share/doc/db3/ref/am_conf/extentsize.html -share/doc/db3/ref/am_conf/h_ffactor.html -share/doc/db3/ref/am_conf/h_hash.html -share/doc/db3/ref/am_conf/h_nelem.html -share/doc/db3/ref/am_conf/intro.html -share/doc/db3/ref/am_conf/logrec.html -share/doc/db3/ref/am_conf/malloc.html -share/doc/db3/ref/am_conf/pagesize.html -share/doc/db3/ref/am_conf/re_source.html -share/doc/db3/ref/am_conf/recno.html -share/doc/db3/ref/am_conf/renumber.html -share/doc/db3/ref/am_conf/select.html -share/doc/db3/ref/arch/apis.html -share/doc/db3/ref/arch/bigpic.gif -share/doc/db3/ref/arch/bigpic.html -share/doc/db3/ref/arch/progmodel.html -share/doc/db3/ref/arch/script.html -share/doc/db3/ref/arch/smallpic.gif -share/doc/db3/ref/arch/utilities.html -share/doc/db3/ref/build_unix/aix.html -share/doc/db3/ref/build_unix/conf.html -share/doc/db3/ref/build_unix/flags.html -share/doc/db3/ref/build_unix/freebsd.html -share/doc/db3/ref/build_unix/hpux.html -share/doc/db3/ref/build_unix/install.html -share/doc/db3/ref/build_unix/intro.html -share/doc/db3/ref/build_unix/irix.html -share/doc/db3/ref/build_unix/linux.html -share/doc/db3/ref/build_unix/notes.html -share/doc/db3/ref/build_unix/osf1.html -share/doc/db3/ref/build_unix/qnx.html -share/doc/db3/ref/build_unix/sco.html -share/doc/db3/ref/build_unix/shlib.html -share/doc/db3/ref/build_unix/solaris.html -share/doc/db3/ref/build_unix/sunos.html -share/doc/db3/ref/build_unix/test.html -share/doc/db3/ref/build_unix/ultrix.html -share/doc/db3/ref/build_vxworks/faq.html -share/doc/db3/ref/build_vxworks/intro.html -share/doc/db3/ref/build_vxworks/notes.html -share/doc/db3/ref/build_win/faq.html -share/doc/db3/ref/build_win/intro.html -share/doc/db3/ref/build_win/notes.html -share/doc/db3/ref/build_win/test.html -share/doc/db3/ref/cam/intro.html -share/doc/db3/ref/debug/common.html -share/doc/db3/ref/debug/compile.html -share/doc/db3/ref/debug/intro.html -share/doc/db3/ref/debug/printlog.html -share/doc/db3/ref/debug/runtime.html -share/doc/db3/ref/distrib/layout.html -share/doc/db3/ref/dumpload/format.html -share/doc/db3/ref/dumpload/text.html -share/doc/db3/ref/dumpload/utility.html -share/doc/db3/ref/env/create.html -share/doc/db3/ref/env/error.html -share/doc/db3/ref/env/intro.html -share/doc/db3/ref/env/naming.html -share/doc/db3/ref/env/open.html -share/doc/db3/ref/env/region.html -share/doc/db3/ref/env/remote.html -share/doc/db3/ref/env/security.html -share/doc/db3/ref/install/file.html -share/doc/db3/ref/install/magic.s5.be.txt -share/doc/db3/ref/install/magic.s5.le.txt -share/doc/db3/ref/install/magic.txt -share/doc/db3/ref/intro/data.html -share/doc/db3/ref/intro/dbis.html -share/doc/db3/ref/intro/dbisnot.html -share/doc/db3/ref/intro/distrib.html -share/doc/db3/ref/intro/need.html -share/doc/db3/ref/intro/products.html -share/doc/db3/ref/intro/terrain.html -share/doc/db3/ref/intro/what.html -share/doc/db3/ref/intro/where.html -share/doc/db3/ref/java/compat.html -share/doc/db3/ref/java/conf.html -share/doc/db3/ref/java/faq.html -share/doc/db3/ref/java/program.html -share/doc/db3/ref/lock/am_conv.html -share/doc/db3/ref/lock/cam_conv.html -share/doc/db3/ref/lock/config.html -share/doc/db3/ref/lock/dead.html -share/doc/db3/ref/lock/intro.html -share/doc/db3/ref/lock/max.html -share/doc/db3/ref/lock/nondb.html -share/doc/db3/ref/lock/notxn.html -share/doc/db3/ref/lock/page.html -share/doc/db3/ref/lock/stdmode.html -share/doc/db3/ref/lock/twopl.html -share/doc/db3/ref/log/config.html -share/doc/db3/ref/log/intro.html -share/doc/db3/ref/log/limits.html -share/doc/db3/ref/mp/config.html -share/doc/db3/ref/mp/intro.html -share/doc/db3/ref/perl/intro.html -share/doc/db3/ref/pindex.src -share/doc/db3/ref/program/appsignals.html -share/doc/db3/ref/program/byteorder.html -share/doc/db3/ref/program/compatible.html -share/doc/db3/ref/program/copy.html -share/doc/db3/ref/program/dbsizes.html -share/doc/db3/ref/program/diskspace.html -share/doc/db3/ref/program/environ.html -share/doc/db3/ref/program/errorret.html -share/doc/db3/ref/program/extending.html -share/doc/db3/ref/program/mt.html -share/doc/db3/ref/program/namespace.html -share/doc/db3/ref/program/recimp.html -share/doc/db3/ref/program/runtime.html -share/doc/db3/ref/program/scope.html -share/doc/db3/ref/program/solaris.txt -share/doc/db3/ref/program/version.html -share/doc/db3/ref/refs/bdb_usenix.html -share/doc/db3/ref/refs/bdb_usenix.ps -share/doc/db3/ref/refs/embedded.html -share/doc/db3/ref/refs/hash_usenix.ps -share/doc/db3/ref/refs/libtp_usenix.ps -share/doc/db3/ref/refs/refs.html -share/doc/db3/ref/refs/witold.html -share/doc/db3/ref/rpc/client.html -share/doc/db3/ref/rpc/intro.html -share/doc/db3/ref/rpc/server.html -share/doc/db3/ref/sendmail/intro.html -share/doc/db3/ref/simple_tut/close.html -share/doc/db3/ref/simple_tut/del.html -share/doc/db3/ref/simple_tut/errors.html -share/doc/db3/ref/simple_tut/example.txt -share/doc/db3/ref/simple_tut/get.html -share/doc/db3/ref/simple_tut/handles.html -share/doc/db3/ref/simple_tut/intro.html -share/doc/db3/ref/simple_tut/keydata.html -share/doc/db3/ref/simple_tut/open.html -share/doc/db3/ref/simple_tut/put.html -share/doc/db3/ref/tcl/error.html -share/doc/db3/ref/tcl/faq.html -share/doc/db3/ref/tcl/intro.html -share/doc/db3/ref/tcl/program.html -share/doc/db3/ref/tcl/using.html -share/doc/db3/ref/test/faq.html -share/doc/db3/ref/test/run.html -share/doc/db3/ref/toc.html -share/doc/db3/ref/transapp/admin.html -share/doc/db3/ref/transapp/app.html -share/doc/db3/ref/transapp/archival.html -share/doc/db3/ref/transapp/checkpoint.html -share/doc/db3/ref/transapp/cursor.html -share/doc/db3/ref/transapp/data_open.html -share/doc/db3/ref/transapp/deadlock.html -share/doc/db3/ref/transapp/env_open.html -share/doc/db3/ref/transapp/filesys.html -share/doc/db3/ref/transapp/inc.html -share/doc/db3/ref/transapp/intro.html -share/doc/db3/ref/transapp/logfile.html -share/doc/db3/ref/transapp/put.html -share/doc/db3/ref/transapp/read.html -share/doc/db3/ref/transapp/reclimit.html -share/doc/db3/ref/transapp/recovery.html -share/doc/db3/ref/transapp/term.html -share/doc/db3/ref/transapp/throughput.html -share/doc/db3/ref/transapp/transapp.txt -share/doc/db3/ref/transapp/why.html -share/doc/db3/ref/transapp/writetest.txt -share/doc/db3/ref/txn/config.html -share/doc/db3/ref/txn/intro.html -share/doc/db3/ref/txn/limits.html -share/doc/db3/ref/txn/nested.html -share/doc/db3/ref/txn/other.html -share/doc/db3/ref/upgrade.2.0/convert.html -share/doc/db3/ref/upgrade.2.0/disk.html -share/doc/db3/ref/upgrade.2.0/intro.html -share/doc/db3/ref/upgrade.2.0/system.html -share/doc/db3/ref/upgrade.2.0/toc.html -share/doc/db3/ref/upgrade.3.0/close.html -share/doc/db3/ref/upgrade.3.0/cxx.html -share/doc/db3/ref/upgrade.3.0/db.html -share/doc/db3/ref/upgrade.3.0/db_cxx.html -share/doc/db3/ref/upgrade.3.0/dbenv.html -share/doc/db3/ref/upgrade.3.0/dbenv_cxx.html -share/doc/db3/ref/upgrade.3.0/dbinfo.html -share/doc/db3/ref/upgrade.3.0/disk.html -share/doc/db3/ref/upgrade.3.0/eacces.html -share/doc/db3/ref/upgrade.3.0/eagain.html -share/doc/db3/ref/upgrade.3.0/envopen.html -share/doc/db3/ref/upgrade.3.0/func.html -share/doc/db3/ref/upgrade.3.0/intro.html -share/doc/db3/ref/upgrade.3.0/java.html -share/doc/db3/ref/upgrade.3.0/join.html -share/doc/db3/ref/upgrade.3.0/jump_set.html -share/doc/db3/ref/upgrade.3.0/lock_detect.html -share/doc/db3/ref/upgrade.3.0/lock_notheld.html -share/doc/db3/ref/upgrade.3.0/lock_put.html -share/doc/db3/ref/upgrade.3.0/lock_stat.html -share/doc/db3/ref/upgrade.3.0/log_register.html -share/doc/db3/ref/upgrade.3.0/log_stat.html -share/doc/db3/ref/upgrade.3.0/memp_stat.html -share/doc/db3/ref/upgrade.3.0/open.html -share/doc/db3/ref/upgrade.3.0/rmw.html -share/doc/db3/ref/upgrade.3.0/stat.html -share/doc/db3/ref/upgrade.3.0/toc.html -share/doc/db3/ref/upgrade.3.0/txn_begin.html -share/doc/db3/ref/upgrade.3.0/txn_commit.html -share/doc/db3/ref/upgrade.3.0/txn_stat.html -share/doc/db3/ref/upgrade.3.0/value_set.html -share/doc/db3/ref/upgrade.3.0/xa.html -share/doc/db3/ref/upgrade.3.1/btstat.html -share/doc/db3/ref/upgrade.3.1/config.html -share/doc/db3/ref/upgrade.3.1/disk.html -share/doc/db3/ref/upgrade.3.1/dup.html -share/doc/db3/ref/upgrade.3.1/env.html -share/doc/db3/ref/upgrade.3.1/intro.html -share/doc/db3/ref/upgrade.3.1/log_register.html -share/doc/db3/ref/upgrade.3.1/logalloc.html -share/doc/db3/ref/upgrade.3.1/memp_register.html -share/doc/db3/ref/upgrade.3.1/put.html -share/doc/db3/ref/upgrade.3.1/set_feedback.html -share/doc/db3/ref/upgrade.3.1/set_paniccall.html -share/doc/db3/ref/upgrade.3.1/set_tx_recover.html -share/doc/db3/ref/upgrade.3.1/sysmem.html -share/doc/db3/ref/upgrade.3.1/tcl.html -share/doc/db3/ref/upgrade.3.1/tmp.html -share/doc/db3/ref/upgrade.3.1/toc.html -share/doc/db3/ref/upgrade.3.1/txn_check.html -share/doc/db3/ref/upgrade.3.2/callback.html -share/doc/db3/ref/upgrade.3.2/db_dump.html -share/doc/db3/ref/upgrade.3.2/disk.html -share/doc/db3/ref/upgrade.3.2/handle.html -share/doc/db3/ref/upgrade.3.2/incomplete.html -share/doc/db3/ref/upgrade.3.2/intro.html -share/doc/db3/ref/upgrade.3.2/mutexlock.html -share/doc/db3/ref/upgrade.3.2/notfound.html -share/doc/db3/ref/upgrade.3.2/renumber.html -share/doc/db3/ref/upgrade.3.2/set_flags.html -share/doc/db3/ref/upgrade.3.2/toc.html -share/doc/db3/ref/upgrade.3.2/tx_recover.html -share/doc/db3/ref/upgrade/process.html -share/doc/db3/ref/xa/config.html -share/doc/db3/ref/xa/faq.html -share/doc/db3/ref/xa/intro.html -share/doc/db3/sleepycat/contact.html -share/doc/db3/sleepycat/legal.html -share/doc/db3/sleepycat/license.html -share/doc/db3/utility/berkeley_db_svc.html -share/doc/db3/utility/db_archive.html -share/doc/db3/utility/db_checkpoint.html -share/doc/db3/utility/db_deadlock.html -share/doc/db3/utility/db_dump.html -share/doc/db3/utility/db_load.html -share/doc/db3/utility/db_printlog.html -share/doc/db3/utility/db_recover.html -share/doc/db3/utility/db_stat.html -share/doc/db3/utility/db_upgrade.html -share/doc/db3/utility/db_verify.html -share/doc/db3/utility/index.html -@dirrm include/db3 -@dirrm share/doc/db3/api_c -@dirrm share/doc/db3/api_cxx -@dirrm share/doc/db3/api_java -@dirrm share/doc/db3/api_tcl -@dirrm share/doc/db3/images -@dirrm share/doc/db3/ref/am -@dirrm share/doc/db3/ref/am_conf -@dirrm share/doc/db3/ref/arch -@dirrm share/doc/db3/ref/build_unix -@dirrm share/doc/db3/ref/build_vxworks -@dirrm share/doc/db3/ref/build_win -@dirrm share/doc/db3/ref/cam -@dirrm share/doc/db3/ref/debug -@dirrm share/doc/db3/ref/distrib -@dirrm share/doc/db3/ref/dumpload -@dirrm share/doc/db3/ref/env -@dirrm share/doc/db3/ref/install -@dirrm share/doc/db3/ref/intro -@dirrm share/doc/db3/ref/java -@dirrm share/doc/db3/ref/lock -@dirrm share/doc/db3/ref/log -@dirrm share/doc/db3/ref/mp -@dirrm share/doc/db3/ref/perl -@dirrm share/doc/db3/ref/program -@dirrm share/doc/db3/ref/refs -@dirrm share/doc/db3/ref/rpc -@dirrm share/doc/db3/ref/sendmail -@dirrm share/doc/db3/ref/simple_tut -@dirrm share/doc/db3/ref/tcl -@dirrm share/doc/db3/ref/test -@dirrm share/doc/db3/ref/transapp -@dirrm share/doc/db3/ref/txn -@dirrm share/doc/db3/ref/upgrade -@dirrm share/doc/db3/ref/upgrade.2.0 -@dirrm share/doc/db3/ref/upgrade.3.0 -@dirrm share/doc/db3/ref/upgrade.3.1 -@dirrm share/doc/db3/ref/upgrade.3.2 -@dirrm share/doc/db3/ref/xa -@dirrm share/doc/db3/ref -@dirrm share/doc/db3/sleepycat -@dirrm share/doc/db3/utility -@dirrm share/doc/db3 diff --git a/databases/db41/Makefile b/databases/db41/Makefile deleted file mode 100644 index 11c5ca90cae7..000000000000 --- a/databases/db41/Makefile +++ /dev/null @@ -1,42 +0,0 @@ -# ports collection makefile for: Berkeley DB v4 -# Date created: 16 August 2000 -# Whom: Sergey Osokin aka oZZ <ozz@FreeBSD.org.ru> -# -# $FreeBSD$ -# - -PORTNAME= db4 -PORTVERSION= 4.0.14 -#PORTREVISION= 2 -#PORTEPOCH= 1 -CATEGORIES= databases -MASTER_SITES= http://www.sleepycat.com/update/${PORTVERSION}/ -DISTNAME= db-${PORTVERSION} -DIST_SUBDIR= bdb - -MAINTAINER= ozz@FreeBSD.org.ru - -#PATCH_SITES= ${MASTER_SITES} -#PATCHFILES= patch.${PORTVERSION}.1 patch.${PORTVERSION}.2 -#PATCH_DIST_STRIP= -d ${WRKDIR}/${DISTNAME} - -WRKSRC= ${WRKDIR}/${DISTNAME}/build_unix - -INSTALLS_SHLIB= yes -HAS_CONFIGURE= yes -CONFIGURE_SCRIPT= ../dist/configure -CONFIGURE_ARGS= --enable-compat185 \ - --enable-dump185 --enable-cxx \ - --enable-dynamic \ - --prefix=${PREFIX} \ - --includedir=${PREFIX}/include/db4 \ - --target=${ARCH}-unknown-freebsd${OSREL} - -pre-patch: - @${PERL} -pi -e 's|-lpthread|${PTHREAD_LIBS}|g' ${WRKSRC}/${CONFIGURE_SCRIPT} - -post-patch: - @${CHMOD} 755 ${WRKSRC}/${CONFIGURE_SCRIPT} - @${PERL} -pi -e "s|%%LOCALBASE%%|${LOCALBASE}|g" ${WRKSRC}/../dist/configure - -.include <bsd.port.mk> diff --git a/databases/db41/distinfo b/databases/db41/distinfo deleted file mode 100644 index 09f3d6b59aec..000000000000 --- a/databases/db41/distinfo +++ /dev/null @@ -1 +0,0 @@ -MD5 (bdb/db-4.0.14.tar.gz) = 12262c64fcd64b772e7cffad8e4d0ebc diff --git a/databases/db41/files/patch-dist::Makefile.in b/databases/db41/files/patch-dist::Makefile.in deleted file mode 100644 index 136ab161efdc..000000000000 --- a/databases/db41/files/patch-dist::Makefile.in +++ /dev/null @@ -1,135 +0,0 @@ ---- ../dist/Makefile.in.orig Sat Nov 10 01:48:45 2001 -+++ ../dist/Makefile.in Wed Dec 5 13:38:23 2001 -@@ -11,7 +11,7 @@ - bindir= @bindir@ - includedir=@includedir@ - libdir= @libdir@ --docdir= $(prefix)/docs -+docdir= $(prefix)/share/doc/db4 - - dmode= 755 - emode= 555 -@@ -45,6 +45,7 @@ - SOLINK= @MAKEFILE_SOLINK@ - SOFLAGS= @SOFLAGS@ - SOMAJOR= @DB_VERSION_MAJOR@ -+SOMINOR= @DB_VERSION_MINOR@ - SOVERSION= @DB_VERSION_MAJOR@.@DB_VERSION_MINOR@ - - ################################################## -@@ -60,13 +61,13 @@ - LIBS= @LIBS@ - LIBSO_LIBS= @LIBSO_LIBS@ - --libdb= libdb.a --libso_base= libdb --libso= $(libso_base)-$(SOVERSION).@SOSUFFIX@ --libso_static= $(libso_base)-$(SOVERSION).a --libso_target= $(libso_base)-$(SOVERSION).la -+libdb= libdb4.a -+libso_base= libdb4 -+libso= $(libso_base).@SOSUFFIX@ -+libso_static= $(libso_base).a -+libso_target= $(libso_base).la - libso_default= $(libso_base).@SOSUFFIX@ --libso_major= $(libso_base)-$(SOMAJOR).@SOSUFFIX@ -+libso_major= $(libso_base).@SOSUFFIX@.$(SOMINOR) - - ################################################## - # C++ API. -@@ -79,13 +80,13 @@ - XSOLINK= @MAKEFILE_XSOLINK@ - LIBXSO_LIBS= @LIBXSO_LIBS@ - --libcxx= libdb_cxx.a --libxso_base= libdb_cxx --libxso= $(libxso_base)-$(SOVERSION).@SOSUFFIX@ --libxso_static= $(libxso_base)-$(SOVERSION).a --libxso_target= $(libxso_base)-$(SOVERSION).la -+libcxx= libdb4_cxx.a -+libxso_base= libdb4_cxx -+libxso= $(libxso_base).@SOSUFFIX@ -+libxso_static= $(libxso_base).a -+libxso_target= $(libxso_base).la - libxso_default= $(libxso_base).@SOSUFFIX@ --libxso_major= $(libxso_base)-$(SOMAJOR).@SOSUFFIX@ -+libxso_major= $(libxso_base).@SOSUFFIX@.$(SOMINOR) - - ################################################## - # Java API. -@@ -235,8 +236,8 @@ - db_server_proc@o@ db_server_svc@o@ db_server_util@o@ gen_db_server@o@ - - UTIL_PROGS=\ -- @ADDITIONAL_PROGS@ db_archive db_checkpoint db_deadlock \ -- db_dump db_load db_printlog db_recover db_stat db_upgrade db_verify -+ @ADDITIONAL_PROGS@ db4_archive db4_checkpoint db4_deadlock \ -+ db4_dump db4_load db4_printlog db4_recover db4_stat db4_upgrade db4_verify - - ################################################## - # List of files installed into the library directory. -@@ -330,53 +331,53 @@ - $(RPC_SRV_OBJS) util_log@o@ $(DEF_LIB) $(LIBS) - $(POSTLINK) $@ - --db_archive: db_archive@o@ util_sig@o@ $(DEF_LIB) -+db4_archive: db_archive@o@ util_sig@o@ $(DEF_LIB) - $(CCLINK) -o $@ $(LDFLAGS) \ - db_archive@o@ util_sig@o@ $(DEF_LIB) $(LIBS) - $(POSTLINK) $@ - --db_checkpoint: db_checkpoint@o@ util_log@o@ util_sig@o@ $(DEF_LIB) -+db4_checkpoint: db_checkpoint@o@ util_log@o@ util_sig@o@ $(DEF_LIB) - $(CCLINK) -o $@ $(LDFLAGS) \ - db_checkpoint@o@ util_log@o@ util_sig@o@ $(DEF_LIB) $(LIBS) - $(POSTLINK) $@ - --db_deadlock: db_deadlock@o@ util_log@o@ util_sig@o@ $(DEF_LIB) -+db4_deadlock: db_deadlock@o@ util_log@o@ util_sig@o@ $(DEF_LIB) - $(CCLINK) -o $@ $(LDFLAGS) \ - db_deadlock@o@ util_log@o@ util_sig@o@ $(DEF_LIB) $(LIBS) - $(POSTLINK) $@ - --db_dump: db_dump@o@ util_sig@o@ $(DEF_LIB) -+db4_dump: db_dump@o@ util_sig@o@ $(DEF_LIB) - $(CCLINK) -o $@ $(LDFLAGS) db_dump@o@ util_sig@o@ $(DEF_LIB) $(LIBS) - $(POSTLINK) $@ - --db_dump185: db_dump185@o@ @LIBOBJS@ -+db4_dump185: db_dump185@o@ @LIBOBJS@ - $(CCLINK) -o $@ $(LDFLAGS) db_dump185@o@ @LIBOBJS@ $(DB185LIB) - $(POSTLINK) $@ - --db_load: db_load@o@ util_sig@o@ $(DEF_LIB) -+db4_load: db_load@o@ util_sig@o@ $(DEF_LIB) - $(CCLINK) -o $@ $(LDFLAGS) db_load@o@ util_sig@o@ $(DEF_LIB) $(LIBS) - $(POSTLINK) $@ - --db_printlog: db_printlog@o@ util_sig@o@ $(DEF_LIB) -+db4_printlog: db_printlog@o@ util_sig@o@ $(DEF_LIB) - $(CCLINK) -o $@ $(LDFLAGS) \ - db_printlog@o@ util_sig@o@ $(DEF_LIB) $(LIBS) - $(POSTLINK) $@ - --db_recover: db_recover@o@ util_sig@o@ $(DEF_LIB) -+db4_recover: db_recover@o@ util_sig@o@ $(DEF_LIB) - $(CCLINK) -o $@ $(LDFLAGS) \ - db_recover@o@ util_sig@o@ $(DEF_LIB) $(LIBS) - $(POSTLINK) $@ - --db_stat: db_stat@o@ util_sig@o@ $(DEF_LIB) -+db4_stat: db_stat@o@ util_sig@o@ $(DEF_LIB) - $(CCLINK) -o $@ $(LDFLAGS) db_stat@o@ util_sig@o@ $(DEF_LIB) $(LIBS) - $(POSTLINK) $@ - --db_upgrade: db_upgrade@o@ util_sig@o@ $(DEF_LIB) -+db4_upgrade: db_upgrade@o@ util_sig@o@ $(DEF_LIB) - $(CCLINK) -o $@ $(LDFLAGS) \ - db_upgrade@o@ util_sig@o@ $(DEF_LIB) $(LIBS) - $(POSTLINK) $@ - --db_verify: db_verify@o@ util_sig@o@ $(DEF_LIB) -+db4_verify: db_verify@o@ util_sig@o@ $(DEF_LIB) - $(CCLINK) -o $@ $(LDFLAGS) \ - db_verify@o@ util_sig@o@ $(DEF_LIB) $(LIBS) - $(POSTLINK) $@ diff --git a/databases/db41/files/patch-dist::configure b/databases/db41/files/patch-dist::configure deleted file mode 100644 index 4f2ed615df05..000000000000 --- a/databases/db41/files/patch-dist::configure +++ /dev/null @@ -1,24 +0,0 @@ ---- ../dist/configure.orig Wed Dec 5 13:14:02 2001 -+++ ../dist/configure Wed Dec 5 13:24:01 2001 -@@ -8794,10 +8794,10 @@ - INSTALLER="\$(LIBTOOL) --mode=install cp" - - MAKEFILE_CC="\$(LIBTOOL) --mode=compile ${MAKEFILE_CC}" --MAKEFILE_SOLINK="\$(LIBTOOL) --mode=link ${MAKEFILE_CCLINK} -avoid-version" -+MAKEFILE_SOLINK="\$(LIBTOOL) --mode=link ${MAKEFILE_CCLINK} -version-info ${DB_VERSION_MINOR}" - MAKEFILE_CCLINK="\$(LIBTOOL) --mode=link ${MAKEFILE_CCLINK}" - MAKEFILE_CXX="\$(LIBTOOL) --mode=compile ${MAKEFILE_CXX}" --MAKEFILE_XSOLINK="\$(LIBTOOL) --mode=link ${MAKEFILE_CXXLINK} -avoid-version" -+MAKEFILE_XSOLINK="\$(LIBTOOL) --mode=link ${MAKEFILE_CXXLINK} -version-info ${DB_VERSION_MINOR}" - MAKEFILE_CXXLINK="\$(LIBTOOL) --mode=link ${MAKEFILE_CXXLINK}" - - # Configure for shared libraries, static libraries, or both. If both are -@@ -9511,7 +9511,7 @@ - - # Optional utilities. - if test "$db_cv_dump185" = "yes"; then -- ADDITIONAL_PROGS="db_dump185 $ADDITIONAL_PROGS" -+ ADDITIONAL_PROGS="db4_dump185 $ADDITIONAL_PROGS" - fi - - # Checks for system/compiler characteristics. diff --git a/databases/db41/pkg-comment b/databases/db41/pkg-comment deleted file mode 100644 index 0ea96ff89521..000000000000 --- a/databases/db41/pkg-comment +++ /dev/null @@ -1 +0,0 @@ -The Berkeley DB package, revision 4 diff --git a/databases/db41/pkg-descr b/databases/db41/pkg-descr deleted file mode 100644 index a47006d1fdee..000000000000 --- a/databases/db41/pkg-descr +++ /dev/null @@ -1,13 +0,0 @@ -Revision 4 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 v4 -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 6568248aebb3..000000000000 --- a/databases/db41/pkg-plist +++ /dev/null @@ -1,898 +0,0 @@ -bin/db4_archive -bin/db4_checkpoint -bin/db4_deadlock -bin/db4_dump -bin/db4_dump185 -bin/db4_load -bin/db4_printlog -bin/db4_recover -bin/db4_stat -bin/db4_upgrade -bin/db4_verify -include/db4/cxx_common.h -include/db4/cxx_except.h -include/db4/db.h -include/db4/db_185.h -include/db4/db_cxx.h -lib/libdb4.a -lib/libdb4.la -lib/libdb4.so -lib/libdb4.so.0 -lib/libdb4_cxx.a -lib/libdb4_cxx.la -lib/libdb4_cxx.so -lib/libdb4_cxx.so.0 -share/doc/db4/api_c/c_index.html -share/doc/db4/api_c/c_pindex.html -share/doc/db4/api_c/db_associate.html -share/doc/db4/api_c/db_close.html -share/doc/db4/api_c/db_create.html -share/doc/db4/api_c/db_cursor.html -share/doc/db4/api_c/db_del.html -share/doc/db4/api_c/db_err.html -share/doc/db4/api_c/db_fd.html -share/doc/db4/api_c/db_get.html -share/doc/db4/api_c/db_get_byteswapped.html -share/doc/db4/api_c/db_get_type.html -share/doc/db4/api_c/db_join.html -share/doc/db4/api_c/db_key_range.html -share/doc/db4/api_c/db_lsn.html -share/doc/db4/api_c/db_open.html -share/doc/db4/api_c/db_put.html -share/doc/db4/api_c/db_remove.html -share/doc/db4/api_c/db_rename.html -share/doc/db4/api_c/db_set_alloc.html -share/doc/db4/api_c/db_set_append_recno.html -share/doc/db4/api_c/db_set_bt_compare.html -share/doc/db4/api_c/db_set_bt_minkey.html -share/doc/db4/api_c/db_set_bt_prefix.html -share/doc/db4/api_c/db_set_cachesize.html -share/doc/db4/api_c/db_set_dup_compare.html -share/doc/db4/api_c/db_set_errcall.html -share/doc/db4/api_c/db_set_errfile.html -share/doc/db4/api_c/db_set_errpfx.html -share/doc/db4/api_c/db_set_feedback.html -share/doc/db4/api_c/db_set_flags.html -share/doc/db4/api_c/db_set_h_ffactor.html -share/doc/db4/api_c/db_set_h_hash.html -share/doc/db4/api_c/db_set_h_nelem.html -share/doc/db4/api_c/db_set_lorder.html -share/doc/db4/api_c/db_set_pagesize.html -share/doc/db4/api_c/db_set_paniccall.html -share/doc/db4/api_c/db_set_q_extentsize.html -share/doc/db4/api_c/db_set_re_delim.html -share/doc/db4/api_c/db_set_re_len.html -share/doc/db4/api_c/db_set_re_pad.html -share/doc/db4/api_c/db_set_re_source.html -share/doc/db4/api_c/db_stat.html -share/doc/db4/api_c/db_sync.html -share/doc/db4/api_c/db_truncate.html -share/doc/db4/api_c/db_upgrade.html -share/doc/db4/api_c/db_verify.html -share/doc/db4/api_c/dbc_close.html -share/doc/db4/api_c/dbc_count.html -share/doc/db4/api_c/dbc_del.html -share/doc/db4/api_c/dbc_dup.html -share/doc/db4/api_c/dbc_get.html -share/doc/db4/api_c/dbc_put.html -share/doc/db4/api_c/dbm.html -share/doc/db4/api_c/dbt.html -share/doc/db4/api_c/dbt_bulk.html -share/doc/db4/api_c/env_close.html -share/doc/db4/api_c/env_create.html -share/doc/db4/api_c/env_err.html -share/doc/db4/api_c/env_open.html -share/doc/db4/api_c/env_remove.html -share/doc/db4/api_c/env_set_alloc.html -share/doc/db4/api_c/env_set_cachesize.html -share/doc/db4/api_c/env_set_data_dir.html -share/doc/db4/api_c/env_set_errcall.html -share/doc/db4/api_c/env_set_errfile.html -share/doc/db4/api_c/env_set_errpfx.html -share/doc/db4/api_c/env_set_feedback.html -share/doc/db4/api_c/env_set_flags.html -share/doc/db4/api_c/env_set_lg_bsize.html -share/doc/db4/api_c/env_set_lg_dir.html -share/doc/db4/api_c/env_set_lg_max.html -share/doc/db4/api_c/env_set_lg_regionmax.html -share/doc/db4/api_c/env_set_lk_conflicts.html -share/doc/db4/api_c/env_set_lk_detect.html -share/doc/db4/api_c/env_set_lk_max_lockers.html -share/doc/db4/api_c/env_set_lk_max_locks.html -share/doc/db4/api_c/env_set_lk_max_objects.html -share/doc/db4/api_c/env_set_mp_mmapsize.html -share/doc/db4/api_c/env_set_paniccall.html -share/doc/db4/api_c/env_set_rec_init.html -share/doc/db4/api_c/env_set_rpc_server.html -share/doc/db4/api_c/env_set_shm_key.html -share/doc/db4/api_c/env_set_tas_spins.html -share/doc/db4/api_c/env_set_timeout.html -share/doc/db4/api_c/env_set_tmp_dir.html -share/doc/db4/api_c/env_set_tx_max.html -share/doc/db4/api_c/env_set_tx_recover.html -share/doc/db4/api_c/env_set_tx_timestamp.html -share/doc/db4/api_c/env_set_verbose.html -share/doc/db4/api_c/env_strerror.html -share/doc/db4/api_c/env_version.html -share/doc/db4/api_c/hsearch.html -share/doc/db4/api_c/lock_detect.html -share/doc/db4/api_c/lock_get.html -share/doc/db4/api_c/lock_id.html -share/doc/db4/api_c/lock_id_free.html -share/doc/db4/api_c/lock_put.html -share/doc/db4/api_c/lock_stat.html -share/doc/db4/api_c/lock_vec.html -share/doc/db4/api_c/log_archive.html -share/doc/db4/api_c/log_compare.html -share/doc/db4/api_c/log_cursor.html -share/doc/db4/api_c/log_file.html -share/doc/db4/api_c/log_flush.html -share/doc/db4/api_c/log_put.html -share/doc/db4/api_c/log_register.html -share/doc/db4/api_c/log_stat.html -share/doc/db4/api_c/log_unregister.html -share/doc/db4/api_c/logc_close.html -share/doc/db4/api_c/logc_get.html -share/doc/db4/api_c/memp_fclose.html -share/doc/db4/api_c/memp_fcreate.html -share/doc/db4/api_c/memp_fget.html -share/doc/db4/api_c/memp_fopen.html -share/doc/db4/api_c/memp_fput.html -share/doc/db4/api_c/memp_fset.html -share/doc/db4/api_c/memp_fsync.html -share/doc/db4/api_c/memp_register.html -share/doc/db4/api_c/memp_set_clear_len.html -share/doc/db4/api_c/memp_set_fileid.html -share/doc/db4/api_c/memp_set_ftype.html -share/doc/db4/api_c/memp_set_lsn_offset.html -share/doc/db4/api_c/memp_set_pgcookie.html -share/doc/db4/api_c/memp_stat.html -share/doc/db4/api_c/memp_sync.html -share/doc/db4/api_c/memp_trickle.html -share/doc/db4/api_c/pindex.src -share/doc/db4/api_c/rep_elect.html -share/doc/db4/api_c/rep_message.html -share/doc/db4/api_c/rep_start.html -share/doc/db4/api_c/rep_transport.html -share/doc/db4/api_c/set_func_close.html -share/doc/db4/api_c/set_func_dirfree.html -share/doc/db4/api_c/set_func_dirlist.html -share/doc/db4/api_c/set_func_exists.html -share/doc/db4/api_c/set_func_free.html -share/doc/db4/api_c/set_func_fsync.html -share/doc/db4/api_c/set_func_ioinfo.html -share/doc/db4/api_c/set_func_malloc.html -share/doc/db4/api_c/set_func_map.html -share/doc/db4/api_c/set_func_open.html -share/doc/db4/api_c/set_func_read.html -share/doc/db4/api_c/set_func_realloc.html -share/doc/db4/api_c/set_func_rename.html -share/doc/db4/api_c/set_func_seek.html -share/doc/db4/api_c/set_func_sleep.html -share/doc/db4/api_c/set_func_unlink.html -share/doc/db4/api_c/set_func_unmap.html -share/doc/db4/api_c/set_func_write.html -share/doc/db4/api_c/set_func_yield.html -share/doc/db4/api_c/txn_abort.html -share/doc/db4/api_c/txn_begin.html -share/doc/db4/api_c/txn_checkpoint.html -share/doc/db4/api_c/txn_commit.html -share/doc/db4/api_c/txn_discard.html -share/doc/db4/api_c/txn_id.html -share/doc/db4/api_c/txn_prepare.html -share/doc/db4/api_c/txn_recover.html -share/doc/db4/api_c/txn_set_timeout.html -share/doc/db4/api_c/txn_stat.html -share/doc/db4/api_cxx/c_index.html -share/doc/db4/api_cxx/cxx_pindex.html -share/doc/db4/api_cxx/db_associate.html -share/doc/db4/api_cxx/db_class.html -share/doc/db4/api_cxx/db_close.html -share/doc/db4/api_cxx/db_cursor.html -share/doc/db4/api_cxx/db_del.html -share/doc/db4/api_cxx/db_err.html -share/doc/db4/api_cxx/db_fd.html -share/doc/db4/api_cxx/db_get.html -share/doc/db4/api_cxx/db_get_byteswapped.html -share/doc/db4/api_cxx/db_get_type.html -share/doc/db4/api_cxx/db_join.html -share/doc/db4/api_cxx/db_key_range.html -share/doc/db4/api_cxx/db_open.html -share/doc/db4/api_cxx/db_put.html -share/doc/db4/api_cxx/db_remove.html -share/doc/db4/api_cxx/db_rename.html -share/doc/db4/api_cxx/db_set_alloc.html -share/doc/db4/api_cxx/db_set_append_recno.html -share/doc/db4/api_cxx/db_set_bt_compare.html -share/doc/db4/api_cxx/db_set_bt_minkey.html -share/doc/db4/api_cxx/db_set_bt_prefix.html -share/doc/db4/api_cxx/db_set_cachesize.html -share/doc/db4/api_cxx/db_set_dup_compare.html -share/doc/db4/api_cxx/db_set_errcall.html -share/doc/db4/api_cxx/db_set_errfile.html -share/doc/db4/api_cxx/db_set_errpfx.html -share/doc/db4/api_cxx/db_set_feedback.html -share/doc/db4/api_cxx/db_set_flags.html -share/doc/db4/api_cxx/db_set_h_ffactor.html -share/doc/db4/api_cxx/db_set_h_hash.html -share/doc/db4/api_cxx/db_set_h_nelem.html -share/doc/db4/api_cxx/db_set_lorder.html -share/doc/db4/api_cxx/db_set_pagesize.html -share/doc/db4/api_cxx/db_set_paniccall.html -share/doc/db4/api_cxx/db_set_q_extentsize.html -share/doc/db4/api_cxx/db_set_re_delim.html -share/doc/db4/api_cxx/db_set_re_len.html -share/doc/db4/api_cxx/db_set_re_pad.html -share/doc/db4/api_cxx/db_set_re_source.html -share/doc/db4/api_cxx/db_stat.html -share/doc/db4/api_cxx/db_sync.html -share/doc/db4/api_cxx/db_truncate.html -share/doc/db4/api_cxx/db_upgrade.html -share/doc/db4/api_cxx/db_verify.html -share/doc/db4/api_cxx/dbc_class.html -share/doc/db4/api_cxx/dbc_close.html -share/doc/db4/api_cxx/dbc_count.html -share/doc/db4/api_cxx/dbc_del.html -share/doc/db4/api_cxx/dbc_dup.html -share/doc/db4/api_cxx/dbc_get.html -share/doc/db4/api_cxx/dbc_put.html -share/doc/db4/api_cxx/dbenv_class.html -share/doc/db4/api_cxx/dbt_bulk.html -share/doc/db4/api_cxx/dbt_class.html -share/doc/db4/api_cxx/env_close.html -share/doc/db4/api_cxx/env_err.html -share/doc/db4/api_cxx/env_open.html -share/doc/db4/api_cxx/env_remove.html -share/doc/db4/api_cxx/env_set_alloc.html -share/doc/db4/api_cxx/env_set_cachesize.html -share/doc/db4/api_cxx/env_set_data_dir.html -share/doc/db4/api_cxx/env_set_errcall.html -share/doc/db4/api_cxx/env_set_errfile.html -share/doc/db4/api_cxx/env_set_error_stream.html -share/doc/db4/api_cxx/env_set_errpfx.html -share/doc/db4/api_cxx/env_set_feedback.html -share/doc/db4/api_cxx/env_set_flags.html -share/doc/db4/api_cxx/env_set_lg_bsize.html -share/doc/db4/api_cxx/env_set_lg_dir.html -share/doc/db4/api_cxx/env_set_lg_max.html -share/doc/db4/api_cxx/env_set_lg_regionmax.html -share/doc/db4/api_cxx/env_set_lk_conflicts.html -share/doc/db4/api_cxx/env_set_lk_detect.html -share/doc/db4/api_cxx/env_set_lk_max_lockers.html -share/doc/db4/api_cxx/env_set_lk_max_locks.html -share/doc/db4/api_cxx/env_set_lk_max_objects.html -share/doc/db4/api_cxx/env_set_mp_mmapsize.html -share/doc/db4/api_cxx/env_set_paniccall.html -share/doc/db4/api_cxx/env_set_rec_init.html -share/doc/db4/api_cxx/env_set_rpc_server.html -share/doc/db4/api_cxx/env_set_shm_key.html -share/doc/db4/api_cxx/env_set_tas_spins.html -share/doc/db4/api_cxx/env_set_timeout.html -share/doc/db4/api_cxx/env_set_tmp_dir.html -share/doc/db4/api_cxx/env_set_tx_max.html -share/doc/db4/api_cxx/env_set_tx_recover.html -share/doc/db4/api_cxx/env_set_tx_timestamp.html -share/doc/db4/api_cxx/env_set_verbose.html -share/doc/db4/api_cxx/env_strerror.html -share/doc/db4/api_cxx/env_version.html -share/doc/db4/api_cxx/except_class.html -share/doc/db4/api_cxx/get_dbt.html -share/doc/db4/api_cxx/get_errno.html -share/doc/db4/api_cxx/lock_class.html -share/doc/db4/api_cxx/lock_detect.html -share/doc/db4/api_cxx/lock_get.html -share/doc/db4/api_cxx/lock_id.html -share/doc/db4/api_cxx/lock_id_free.html -share/doc/db4/api_cxx/lock_put.html -share/doc/db4/api_cxx/lock_stat.html -share/doc/db4/api_cxx/lock_vec.html -share/doc/db4/api_cxx/log_archive.html -share/doc/db4/api_cxx/log_compare.html -share/doc/db4/api_cxx/log_cursor.html -share/doc/db4/api_cxx/log_file.html -share/doc/db4/api_cxx/log_flush.html -share/doc/db4/api_cxx/log_put.html -share/doc/db4/api_cxx/log_register.html -share/doc/db4/api_cxx/log_stat.html -share/doc/db4/api_cxx/log_unregister.html -share/doc/db4/api_cxx/logc_class.html -share/doc/db4/api_cxx/logc_close.html -share/doc/db4/api_cxx/logc_get.html -share/doc/db4/api_cxx/lsn_class.html -share/doc/db4/api_cxx/mem_class.html -share/doc/db4/api_cxx/memp_fclose.html -share/doc/db4/api_cxx/memp_fcreate.html -share/doc/db4/api_cxx/memp_fget.html -share/doc/db4/api_cxx/memp_fopen.html -share/doc/db4/api_cxx/memp_fput.html -share/doc/db4/api_cxx/memp_fset.html -share/doc/db4/api_cxx/memp_fsync.html -share/doc/db4/api_cxx/memp_register.html -share/doc/db4/api_cxx/memp_set_clear_len.html -share/doc/db4/api_cxx/memp_set_fileid.html -share/doc/db4/api_cxx/memp_set_ftype.html -share/doc/db4/api_cxx/memp_set_lsn_offset.html -share/doc/db4/api_cxx/memp_set_pgcookie.html -share/doc/db4/api_cxx/memp_stat.html -share/doc/db4/api_cxx/memp_sync.html -share/doc/db4/api_cxx/memp_trickle.html -share/doc/db4/api_cxx/mempfile_class.html -share/doc/db4/api_cxx/pindex.src -share/doc/db4/api_cxx/rep_elect.html -share/doc/db4/api_cxx/rep_message.html -share/doc/db4/api_cxx/rep_start.html -share/doc/db4/api_cxx/rep_transport.html -share/doc/db4/api_cxx/txn_abort.html -share/doc/db4/api_cxx/txn_begin.html -share/doc/db4/api_cxx/txn_checkpoint.html -share/doc/db4/api_cxx/txn_class.html -share/doc/db4/api_cxx/txn_commit.html -share/doc/db4/api_cxx/txn_discard.html -share/doc/db4/api_cxx/txn_id.html -share/doc/db4/api_cxx/txn_prepare.html -share/doc/db4/api_cxx/txn_recover.html -share/doc/db4/api_cxx/txn_set_timeout.html -share/doc/db4/api_cxx/txn_stat.html -share/doc/db4/api_cxx/what.html -share/doc/db4/api_java/c_index.html -share/doc/db4/api_java/db_associate.html -share/doc/db4/api_java/db_class.html -share/doc/db4/api_java/db_close.html -share/doc/db4/api_java/db_cursor.html -share/doc/db4/api_java/db_del.html -share/doc/db4/api_java/db_fd.html -share/doc/db4/api_java/db_get.html -share/doc/db4/api_java/db_get_byteswapped.html -share/doc/db4/api_java/db_get_type.html -share/doc/db4/api_java/db_join.html -share/doc/db4/api_java/db_key_range.html -share/doc/db4/api_java/db_open.html -share/doc/db4/api_java/db_put.html -share/doc/db4/api_java/db_remove.html -share/doc/db4/api_java/db_rename.html -share/doc/db4/api_java/db_set_append_recno.html -share/doc/db4/api_java/db_set_bt_compare.html -share/doc/db4/api_java/db_set_bt_minkey.html -share/doc/db4/api_java/db_set_bt_prefix.html -share/doc/db4/api_java/db_set_cachesize.html -share/doc/db4/api_java/db_set_dup_compare.html -share/doc/db4/api_java/db_set_errcall.html -share/doc/db4/api_java/db_set_errpfx.html -share/doc/db4/api_java/db_set_feedback.html -share/doc/db4/api_java/db_set_flags.html -share/doc/db4/api_java/db_set_h_ffactor.html -share/doc/db4/api_java/db_set_h_hash.html -share/doc/db4/api_java/db_set_h_nelem.html -share/doc/db4/api_java/db_set_lorder.html -share/doc/db4/api_java/db_set_pagesize.html -share/doc/db4/api_java/db_set_q_extentsize.html -share/doc/db4/api_java/db_set_re_delim.html -share/doc/db4/api_java/db_set_re_len.html -share/doc/db4/api_java/db_set_re_pad.html -share/doc/db4/api_java/db_set_re_source.html -share/doc/db4/api_java/db_stat.html -share/doc/db4/api_java/db_sync.html -share/doc/db4/api_java/db_truncate.html -share/doc/db4/api_java/db_upgrade.html -share/doc/db4/api_java/db_verify.html -share/doc/db4/api_java/dbc_class.html -share/doc/db4/api_java/dbc_close.html -share/doc/db4/api_java/dbc_count.html -share/doc/db4/api_java/dbc_del.html -share/doc/db4/api_java/dbc_dup.html -share/doc/db4/api_java/dbc_get.html -share/doc/db4/api_java/dbc_put.html -share/doc/db4/api_java/dbenv_class.html -share/doc/db4/api_java/dbt_bulk_class.html -share/doc/db4/api_java/dbt_class.html -share/doc/db4/api_java/deadlock_class.html -share/doc/db4/api_java/env_close.html -share/doc/db4/api_java/env_open.html -share/doc/db4/api_java/env_remove.html -share/doc/db4/api_java/env_set_cachesize.html -share/doc/db4/api_java/env_set_data_dir.html -share/doc/db4/api_java/env_set_errcall.html -share/doc/db4/api_java/env_set_error_stream.html -share/doc/db4/api_java/env_set_errpfx.html -share/doc/db4/api_java/env_set_feedback.html -share/doc/db4/api_java/env_set_flags.html -share/doc/db4/api_java/env_set_lg_bsize.html -share/doc/db4/api_java/env_set_lg_dir.html -share/doc/db4/api_java/env_set_lg_max.html -share/doc/db4/api_java/env_set_lg_regionmax.html -share/doc/db4/api_java/env_set_lk_conflicts.html -share/doc/db4/api_java/env_set_lk_detect.html -share/doc/db4/api_java/env_set_lk_max_lockers.html -share/doc/db4/api_java/env_set_lk_max_locks.html -share/doc/db4/api_java/env_set_lk_max_objects.html -share/doc/db4/api_java/env_set_mp_mmapsize.html -share/doc/db4/api_java/env_set_rec_init.html -share/doc/db4/api_java/env_set_rpc_server.html -share/doc/db4/api_java/env_set_shm_key.html -share/doc/db4/api_java/env_set_tas_spins.html -share/doc/db4/api_java/env_set_timeout.html -share/doc/db4/api_java/env_set_tmp_dir.html -share/doc/db4/api_java/env_set_tx_max.html -share/doc/db4/api_java/env_set_tx_recover.html -share/doc/db4/api_java/env_set_tx_timestamp.html -share/doc/db4/api_java/env_set_verbose.html -share/doc/db4/api_java/env_strerror.html -share/doc/db4/api_java/env_version.html -share/doc/db4/api_java/except_class.html -share/doc/db4/api_java/get_dbt.html -share/doc/db4/api_java/get_errno.html -share/doc/db4/api_java/java_pindex.html -share/doc/db4/api_java/lock_class.html -share/doc/db4/api_java/lock_detect.html -share/doc/db4/api_java/lock_get.html -share/doc/db4/api_java/lock_id.html -share/doc/db4/api_java/lock_id_free.html -share/doc/db4/api_java/lock_put.html -share/doc/db4/api_java/lock_stat.html -share/doc/db4/api_java/lock_vec.html -share/doc/db4/api_java/log_archive.html -share/doc/db4/api_java/log_compare.html -share/doc/db4/api_java/log_cursor.html -share/doc/db4/api_java/log_file.html -share/doc/db4/api_java/log_flush.html -share/doc/db4/api_java/log_put.html -share/doc/db4/api_java/log_register.html -share/doc/db4/api_java/log_stat.html -share/doc/db4/api_java/log_unregister.html -share/doc/db4/api_java/logc_class.html -share/doc/db4/api_java/logc_close.html -share/doc/db4/api_java/logc_get.html -share/doc/db4/api_java/lsn_class.html -share/doc/db4/api_java/mem_class.html -share/doc/db4/api_java/memp_fclose.html -share/doc/db4/api_java/memp_fopen.html -share/doc/db4/api_java/memp_fsync.html -share/doc/db4/api_java/memp_register.html -share/doc/db4/api_java/memp_stat.html -share/doc/db4/api_java/memp_sync.html -share/doc/db4/api_java/memp_trickle.html -share/doc/db4/api_java/pindex.src -share/doc/db4/api_java/rep_elect.html -share/doc/db4/api_java/rep_message.html -share/doc/db4/api_java/rep_start.html -share/doc/db4/api_java/rep_transport.html -share/doc/db4/api_java/runrec_class.html -share/doc/db4/api_java/txn_abort.html -share/doc/db4/api_java/txn_begin.html -share/doc/db4/api_java/txn_checkpoint.html -share/doc/db4/api_java/txn_class.html -share/doc/db4/api_java/txn_commit.html -share/doc/db4/api_java/txn_discard.html -share/doc/db4/api_java/txn_id.html -share/doc/db4/api_java/txn_prepare.html -share/doc/db4/api_java/txn_recover.html -share/doc/db4/api_java/txn_set_timeout.html -share/doc/db4/api_java/txn_stat.html -share/doc/db4/api_tcl/db_close.html -share/doc/db4/api_tcl/db_count.html -share/doc/db4/api_tcl/db_cursor.html -share/doc/db4/api_tcl/db_del.html -share/doc/db4/api_tcl/db_get.html -share/doc/db4/api_tcl/db_get_join.html -share/doc/db4/api_tcl/db_get_type.html -share/doc/db4/api_tcl/db_is_byteswapped.html -share/doc/db4/api_tcl/db_join.html -share/doc/db4/api_tcl/db_open.html -share/doc/db4/api_tcl/db_put.html -share/doc/db4/api_tcl/db_remove.html -share/doc/db4/api_tcl/db_rename.html -share/doc/db4/api_tcl/db_stat.html -share/doc/db4/api_tcl/db_sync.html -share/doc/db4/api_tcl/db_truncate.html -share/doc/db4/api_tcl/dbc_close.html -share/doc/db4/api_tcl/dbc_del.html -share/doc/db4/api_tcl/dbc_dup.html -share/doc/db4/api_tcl/dbc_get.html -share/doc/db4/api_tcl/dbc_put.html -share/doc/db4/api_tcl/env_close.html -share/doc/db4/api_tcl/env_open.html -share/doc/db4/api_tcl/env_remove.html -share/doc/db4/api_tcl/pindex.src -share/doc/db4/api_tcl/tcl_index.html -share/doc/db4/api_tcl/tcl_pindex.html -share/doc/db4/api_tcl/txn.html -share/doc/db4/api_tcl/txn_abort.html -share/doc/db4/api_tcl/txn_commit.html -share/doc/db4/api_tcl/version.html -share/doc/db4/images/api.gif -share/doc/db4/images/next.gif -share/doc/db4/images/prev.gif -share/doc/db4/images/ps.gif -share/doc/db4/images/ref.gif -share/doc/db4/images/sleepycat.gif -share/doc/db4/index.html -share/doc/db4/ref/am/close.html -share/doc/db4/ref/am/count.html -share/doc/db4/ref/am/curclose.html -share/doc/db4/ref/am/curdel.html -share/doc/db4/ref/am/curdup.html -share/doc/db4/ref/am/curget.html -share/doc/db4/ref/am/curput.html -share/doc/db4/ref/am/cursor.html -share/doc/db4/ref/am/delete.html -share/doc/db4/ref/am/get.html -share/doc/db4/ref/am/join.html -share/doc/db4/ref/am/open.html -share/doc/db4/ref/am/opensub.html -share/doc/db4/ref/am/ops.html -share/doc/db4/ref/am/put.html -share/doc/db4/ref/am/second.html -share/doc/db4/ref/am/stat.html -share/doc/db4/ref/am/sync.html -share/doc/db4/ref/am/truncate.html -share/doc/db4/ref/am/upgrade.html -share/doc/db4/ref/am/verify.html -share/doc/db4/ref/am_conf/bt_compare.html -share/doc/db4/ref/am_conf/bt_minkey.html -share/doc/db4/ref/am_conf/bt_prefix.html -share/doc/db4/ref/am_conf/bt_recnum.html -share/doc/db4/ref/am_conf/byteorder.html -share/doc/db4/ref/am_conf/cachesize.html -share/doc/db4/ref/am_conf/dup.html -share/doc/db4/ref/am_conf/extentsize.html -share/doc/db4/ref/am_conf/h_ffactor.html -share/doc/db4/ref/am_conf/h_hash.html -share/doc/db4/ref/am_conf/h_nelem.html -share/doc/db4/ref/am_conf/intro.html -share/doc/db4/ref/am_conf/logrec.html -share/doc/db4/ref/am_conf/malloc.html -share/doc/db4/ref/am_conf/pagesize.html -share/doc/db4/ref/am_conf/re_source.html -share/doc/db4/ref/am_conf/recno.html -share/doc/db4/ref/am_conf/renumber.html -share/doc/db4/ref/am_conf/select.html -share/doc/db4/ref/am_misc/align.html -share/doc/db4/ref/am_misc/dbsizes.html -share/doc/db4/ref/am_misc/diskspace.html -share/doc/db4/ref/am_misc/error.html -share/doc/db4/ref/am_misc/faq.html -share/doc/db4/ref/am_misc/get_bulk.html -share/doc/db4/ref/am_misc/partial.html -share/doc/db4/ref/am_misc/perm.html -share/doc/db4/ref/am_misc/stability.html -share/doc/db4/ref/am_misc/tune.html -share/doc/db4/ref/arch/apis.html -share/doc/db4/ref/arch/bigpic.gif -share/doc/db4/ref/arch/bigpic.html -share/doc/db4/ref/arch/progmodel.html -share/doc/db4/ref/arch/script.html -share/doc/db4/ref/arch/smallpic.gif -share/doc/db4/ref/arch/utilities.html -share/doc/db4/ref/build_unix/aix.html -share/doc/db4/ref/build_unix/conf.html -share/doc/db4/ref/build_unix/embedix.html -share/doc/db4/ref/build_unix/flags.html -share/doc/db4/ref/build_unix/freebsd.html -share/doc/db4/ref/build_unix/hpux.html -share/doc/db4/ref/build_unix/install.html -share/doc/db4/ref/build_unix/intro.html -share/doc/db4/ref/build_unix/irix.html -share/doc/db4/ref/build_unix/linux.html -share/doc/db4/ref/build_unix/macosx.html -share/doc/db4/ref/build_unix/notes.html -share/doc/db4/ref/build_unix/osf1.html -share/doc/db4/ref/build_unix/qnx.html -share/doc/db4/ref/build_unix/sco.html -share/doc/db4/ref/build_unix/shlib.html -share/doc/db4/ref/build_unix/solaris.html -share/doc/db4/ref/build_unix/sunos.html -share/doc/db4/ref/build_unix/test.html -share/doc/db4/ref/build_unix/ultrix.html -share/doc/db4/ref/build_vxworks/faq.html -share/doc/db4/ref/build_vxworks/intro.html -share/doc/db4/ref/build_vxworks/introae.html -share/doc/db4/ref/build_vxworks/notes.html -share/doc/db4/ref/build_win/faq.html -share/doc/db4/ref/build_win/intro.html -share/doc/db4/ref/build_win/notes.html -share/doc/db4/ref/build_win/test.html -share/doc/db4/ref/cam/intro.html -share/doc/db4/ref/debug/common.html -share/doc/db4/ref/debug/compile.html -share/doc/db4/ref/debug/intro.html -share/doc/db4/ref/debug/printlog.html -share/doc/db4/ref/debug/runtime.html -share/doc/db4/ref/distrib/layout.html -share/doc/db4/ref/dumpload/format.html -share/doc/db4/ref/dumpload/text.html -share/doc/db4/ref/dumpload/utility.html -share/doc/db4/ref/env/create.html -share/doc/db4/ref/env/error.html -share/doc/db4/ref/env/faq.html -share/doc/db4/ref/env/intro.html -share/doc/db4/ref/env/naming.html -share/doc/db4/ref/env/open.html -share/doc/db4/ref/env/region.html -share/doc/db4/ref/env/remote.html -share/doc/db4/ref/env/security.html -share/doc/db4/ref/install/file.html -share/doc/db4/ref/install/magic.s5.be.txt -share/doc/db4/ref/install/magic.s5.le.txt -share/doc/db4/ref/install/magic.txt -share/doc/db4/ref/install/multiple.html -share/doc/db4/ref/install/rpm.html -share/doc/db4/ref/intro/data.html -share/doc/db4/ref/intro/dbis.html -share/doc/db4/ref/intro/dbisnot.html -share/doc/db4/ref/intro/distrib.html -share/doc/db4/ref/intro/need.html -share/doc/db4/ref/intro/products.html -share/doc/db4/ref/intro/terrain.html -share/doc/db4/ref/intro/what.html -share/doc/db4/ref/intro/where.html -share/doc/db4/ref/java/compat.html -share/doc/db4/ref/java/conf.html -share/doc/db4/ref/java/faq.html -share/doc/db4/ref/java/program.html -share/doc/db4/ref/lock/am_conv.html -share/doc/db4/ref/lock/cam_conv.html -share/doc/db4/ref/lock/config.html -share/doc/db4/ref/lock/dead.html -share/doc/db4/ref/lock/intro.html -share/doc/db4/ref/lock/max.html -share/doc/db4/ref/lock/nondb.html -share/doc/db4/ref/lock/notxn.html -share/doc/db4/ref/lock/page.html -share/doc/db4/ref/lock/stdmode.html -share/doc/db4/ref/lock/timeout.html -share/doc/db4/ref/lock/twopl.html -share/doc/db4/ref/log/config.html -share/doc/db4/ref/log/intro.html -share/doc/db4/ref/log/limits.html -share/doc/db4/ref/mp/config.html -share/doc/db4/ref/mp/intro.html -share/doc/db4/ref/perl/intro.html -share/doc/db4/ref/pindex.src -share/doc/db4/ref/program/appsignals.html -share/doc/db4/ref/program/compatible.html -share/doc/db4/ref/program/copy.html -share/doc/db4/ref/program/environ.html -share/doc/db4/ref/program/errorret.html -share/doc/db4/ref/program/extending.html -share/doc/db4/ref/program/mt.html -share/doc/db4/ref/program/namespace.html -share/doc/db4/ref/program/runtime.html -share/doc/db4/ref/program/scope.html -share/doc/db4/ref/program/solaris.txt -share/doc/db4/ref/refs/bdb_usenix.html -share/doc/db4/ref/refs/bdb_usenix.ps -share/doc/db4/ref/refs/embedded.html -share/doc/db4/ref/refs/hash_usenix.ps -share/doc/db4/ref/refs/libtp_usenix.ps -share/doc/db4/ref/refs/refs.html -share/doc/db4/ref/refs/witold.html -share/doc/db4/ref/rep/app.html -share/doc/db4/ref/rep/comm.html -share/doc/db4/ref/rep/elect.html -share/doc/db4/ref/rep/ex.html -share/doc/db4/ref/rep/ex_comm.html -share/doc/db4/ref/rep/ex_rq.html -share/doc/db4/ref/rep/faq.html -share/doc/db4/ref/rep/id.html -share/doc/db4/ref/rep/init.html -share/doc/db4/ref/rep/intro.html -share/doc/db4/ref/rep/logonly.html -share/doc/db4/ref/rep/newsite.html -share/doc/db4/ref/rep/partition.html -share/doc/db4/ref/rep/pri.html -share/doc/db4/ref/rep/trans.html -share/doc/db4/ref/rpc/client.html -share/doc/db4/ref/rpc/intro.html -share/doc/db4/ref/rpc/server.html -share/doc/db4/ref/sendmail/intro.html -share/doc/db4/ref/simple_tut/close.html -share/doc/db4/ref/simple_tut/del.html -share/doc/db4/ref/simple_tut/errors.html -share/doc/db4/ref/simple_tut/example.cs -share/doc/db4/ref/simple_tut/get.html -share/doc/db4/ref/simple_tut/handles.html -share/doc/db4/ref/simple_tut/intro.html -share/doc/db4/ref/simple_tut/keydata.html -share/doc/db4/ref/simple_tut/open.html -share/doc/db4/ref/simple_tut/put.html -share/doc/db4/ref/tcl/error.html -share/doc/db4/ref/tcl/faq.html -share/doc/db4/ref/tcl/intro.html -share/doc/db4/ref/tcl/program.html -share/doc/db4/ref/tcl/using.html -share/doc/db4/ref/test/faq.html -share/doc/db4/ref/test/run.html -share/doc/db4/ref/transapp/admin.html -share/doc/db4/ref/transapp/app.html -share/doc/db4/ref/transapp/archival.html -share/doc/db4/ref/transapp/checkpoint.html -share/doc/db4/ref/transapp/cursor.html -share/doc/db4/ref/transapp/data_open.html -share/doc/db4/ref/transapp/deadlock.html -share/doc/db4/ref/transapp/env_open.html -share/doc/db4/ref/transapp/faq.html -share/doc/db4/ref/transapp/filesys.html -share/doc/db4/ref/transapp/hotfail.html -share/doc/db4/ref/transapp/inc.html -share/doc/db4/ref/transapp/intro.html -share/doc/db4/ref/transapp/logfile.html -share/doc/db4/ref/transapp/nested.html -share/doc/db4/ref/transapp/put.html -share/doc/db4/ref/transapp/read.html -share/doc/db4/ref/transapp/reclimit.html -share/doc/db4/ref/transapp/recovery.html -share/doc/db4/ref/transapp/term.html -share/doc/db4/ref/transapp/throughput.html -share/doc/db4/ref/transapp/transapp.cs -share/doc/db4/ref/transapp/tune.html -share/doc/db4/ref/transapp/why.html -share/doc/db4/ref/transapp/writetest.cs -share/doc/db4/ref/txn/config.html -share/doc/db4/ref/txn/intro.html -share/doc/db4/ref/txn/limits.html -share/doc/db4/ref/txn/other.html -share/doc/db4/ref/upgrade.2.0/convert.html -share/doc/db4/ref/upgrade.2.0/disk.html -share/doc/db4/ref/upgrade.2.0/intro.html -share/doc/db4/ref/upgrade.2.0/system.html -share/doc/db4/ref/upgrade.2.0/toc.html -share/doc/db4/ref/upgrade.3.0/close.html -share/doc/db4/ref/upgrade.3.0/cxx.html -share/doc/db4/ref/upgrade.3.0/db.html -share/doc/db4/ref/upgrade.3.0/db_cxx.html -share/doc/db4/ref/upgrade.3.0/dbenv.html -share/doc/db4/ref/upgrade.3.0/dbenv_cxx.html -share/doc/db4/ref/upgrade.3.0/dbinfo.html -share/doc/db4/ref/upgrade.3.0/disk.html -share/doc/db4/ref/upgrade.3.0/eacces.html -share/doc/db4/ref/upgrade.3.0/eagain.html -share/doc/db4/ref/upgrade.3.0/envopen.html -share/doc/db4/ref/upgrade.3.0/func.html -share/doc/db4/ref/upgrade.3.0/intro.html -share/doc/db4/ref/upgrade.3.0/java.html -share/doc/db4/ref/upgrade.3.0/join.html -share/doc/db4/ref/upgrade.3.0/jump_set.html -share/doc/db4/ref/upgrade.3.0/lock_detect.html -share/doc/db4/ref/upgrade.3.0/lock_notheld.html -share/doc/db4/ref/upgrade.3.0/lock_put.html -share/doc/db4/ref/upgrade.3.0/lock_stat.html -share/doc/db4/ref/upgrade.3.0/log_register.html -share/doc/db4/ref/upgrade.3.0/log_stat.html -share/doc/db4/ref/upgrade.3.0/memp_stat.html -share/doc/db4/ref/upgrade.3.0/open.html -share/doc/db4/ref/upgrade.3.0/rmw.html -share/doc/db4/ref/upgrade.3.0/stat.html -share/doc/db4/ref/upgrade.3.0/toc.html -share/doc/db4/ref/upgrade.3.0/txn_begin.html -share/doc/db4/ref/upgrade.3.0/txn_commit.html -share/doc/db4/ref/upgrade.3.0/txn_stat.html -share/doc/db4/ref/upgrade.3.0/value_set.html -share/doc/db4/ref/upgrade.3.0/xa.html -share/doc/db4/ref/upgrade.3.1/btstat.html -share/doc/db4/ref/upgrade.3.1/config.html -share/doc/db4/ref/upgrade.3.1/disk.html -share/doc/db4/ref/upgrade.3.1/dup.html -share/doc/db4/ref/upgrade.3.1/env.html -share/doc/db4/ref/upgrade.3.1/intro.html -share/doc/db4/ref/upgrade.3.1/log_register.html -share/doc/db4/ref/upgrade.3.1/logalloc.html -share/doc/db4/ref/upgrade.3.1/memp_register.html -share/doc/db4/ref/upgrade.3.1/put.html -share/doc/db4/ref/upgrade.3.1/set_feedback.html -share/doc/db4/ref/upgrade.3.1/set_paniccall.html -share/doc/db4/ref/upgrade.3.1/set_tx_recover.html -share/doc/db4/ref/upgrade.3.1/sysmem.html -share/doc/db4/ref/upgrade.3.1/tcl.html -share/doc/db4/ref/upgrade.3.1/tmp.html -share/doc/db4/ref/upgrade.3.1/toc.html -share/doc/db4/ref/upgrade.3.1/txn_check.html -share/doc/db4/ref/upgrade.3.2/callback.html -share/doc/db4/ref/upgrade.3.2/db_dump.html -share/doc/db4/ref/upgrade.3.2/disk.html -share/doc/db4/ref/upgrade.3.2/handle.html -share/doc/db4/ref/upgrade.3.2/incomplete.html -share/doc/db4/ref/upgrade.3.2/intro.html -share/doc/db4/ref/upgrade.3.2/mutexlock.html -share/doc/db4/ref/upgrade.3.2/notfound.html -share/doc/db4/ref/upgrade.3.2/renumber.html -share/doc/db4/ref/upgrade.3.2/set_flags.html -share/doc/db4/ref/upgrade.3.2/toc.html -share/doc/db4/ref/upgrade.3.2/tx_recover.html -share/doc/db4/ref/upgrade.3.3/alloc.html -share/doc/db4/ref/upgrade.3.3/bigfile.html -share/doc/db4/ref/upgrade.3.3/conflict.html -share/doc/db4/ref/upgrade.3.3/disk.html -share/doc/db4/ref/upgrade.3.3/getswap.html -share/doc/db4/ref/upgrade.3.3/gettype.html -share/doc/db4/ref/upgrade.3.3/intro.html -share/doc/db4/ref/upgrade.3.3/memp_fget.html -share/doc/db4/ref/upgrade.3.3/rpc.html -share/doc/db4/ref/upgrade.3.3/shared.html -share/doc/db4/ref/upgrade.3.3/toc.html -share/doc/db4/ref/upgrade.3.3/txn_prepare.html -share/doc/db4/ref/upgrade.4.0/asr.html -share/doc/db4/ref/upgrade.4.0/cxx.html -share/doc/db4/ref/upgrade.4.0/deadlock.html -share/doc/db4/ref/upgrade.4.0/disk.html -share/doc/db4/ref/upgrade.4.0/env.html -share/doc/db4/ref/upgrade.4.0/intro.html -share/doc/db4/ref/upgrade.4.0/java.html -share/doc/db4/ref/upgrade.4.0/lock.html -share/doc/db4/ref/upgrade.4.0/lock_id_free.html -share/doc/db4/ref/upgrade.4.0/log.html -share/doc/db4/ref/upgrade.4.0/mp.html -share/doc/db4/ref/upgrade.4.0/rpc.html -share/doc/db4/ref/upgrade.4.0/set_lk_max.html -share/doc/db4/ref/upgrade.4.0/toc.html -share/doc/db4/ref/upgrade.4.0/txn.html -share/doc/db4/ref/upgrade/process.html -share/doc/db4/ref/upgrade/version.html -share/doc/db4/ref/xa/build.html -share/doc/db4/ref/xa/faq.html -share/doc/db4/ref/xa/intro.html -share/doc/db4/ref/xa/xa_config.html -share/doc/db4/ref/xa/xa_intro.html -share/doc/db4/reftoc.html -share/doc/db4/sleepycat/contact.html -share/doc/db4/sleepycat/legal.html -share/doc/db4/sleepycat/license.html -share/doc/db4/utility/berkeley_db_svc.html -share/doc/db4/utility/db_archive.html -share/doc/db4/utility/db_checkpoint.html -share/doc/db4/utility/db_deadlock.html -share/doc/db4/utility/db_dump.html -share/doc/db4/utility/db_load.html -share/doc/db4/utility/db_printlog.html -share/doc/db4/utility/db_recover.html -share/doc/db4/utility/db_stat.html -share/doc/db4/utility/db_upgrade.html -share/doc/db4/utility/db_verify.html -share/doc/db4/utility/index.html -@dirrm include/db4 -@dirrm share/doc/db4/ref/am -@dirrm share/doc/db4/ref/am_conf -@dirrm share/doc/db4/ref/am_misc -@dirrm share/doc/db4/ref/arch -@dirrm share/doc/db4/ref/build_unix -@dirrm share/doc/db4/ref/build_vxworks -@dirrm share/doc/db4/ref/build_win -@dirrm share/doc/db4/ref/cam -@dirrm share/doc/db4/ref/debug -@dirrm share/doc/db4/ref/distrib -@dirrm share/doc/db4/ref/dumpload -@dirrm share/doc/db4/ref/env -@dirrm share/doc/db4/ref/install -@dirrm share/doc/db4/ref/intro -@dirrm share/doc/db4/ref/java -@dirrm share/doc/db4/ref/lock -@dirrm share/doc/db4/ref/log -@dirrm share/doc/db4/ref/mp -@dirrm share/doc/db4/ref/perl -@dirrm share/doc/db4/ref/program -@dirrm share/doc/db4/ref/refs -@dirrm share/doc/db4/ref/rep -@dirrm share/doc/db4/ref/rpc -@dirrm share/doc/db4/ref/sendmail -@dirrm share/doc/db4/ref/simple_tut -@dirrm share/doc/db4/ref/splash -@dirrm share/doc/db4/ref/tcl -@dirrm share/doc/db4/ref/test -@dirrm share/doc/db4/ref/transapp -@dirrm share/doc/db4/ref/txn -@dirrm share/doc/db4/ref/upgrade -@dirrm share/doc/db4/ref/upgrade.2.0 -@dirrm share/doc/db4/ref/upgrade.3.0 -@dirrm share/doc/db4/ref/upgrade.3.1 -@dirrm share/doc/db4/ref/upgrade.3.2 -@dirrm share/doc/db4/ref/upgrade.3.3 -@dirrm share/doc/db4/ref/upgrade.4.0 -@dirrm share/doc/db4/ref/xa -@dirrm share/doc/db4/ref -@dirrm share/doc/db4/sleepycat -@dirrm share/doc/db4/api_c -@dirrm share/doc/db4/api_java -@dirrm share/doc/db4/api_cxx -@dirrm share/doc/db4/utility -@dirrm share/doc/db4/api_tcl -@dirrm share/doc/db4/images -@dirrm share/doc/db4 diff --git a/databases/db42/Makefile b/databases/db42/Makefile deleted file mode 100644 index 11c5ca90cae7..000000000000 --- a/databases/db42/Makefile +++ /dev/null @@ -1,42 +0,0 @@ -# ports collection makefile for: Berkeley DB v4 -# Date created: 16 August 2000 -# Whom: Sergey Osokin aka oZZ <ozz@FreeBSD.org.ru> -# -# $FreeBSD$ -# - -PORTNAME= db4 -PORTVERSION= 4.0.14 -#PORTREVISION= 2 -#PORTEPOCH= 1 -CATEGORIES= databases -MASTER_SITES= http://www.sleepycat.com/update/${PORTVERSION}/ -DISTNAME= db-${PORTVERSION} -DIST_SUBDIR= bdb - -MAINTAINER= ozz@FreeBSD.org.ru - -#PATCH_SITES= ${MASTER_SITES} -#PATCHFILES= patch.${PORTVERSION}.1 patch.${PORTVERSION}.2 -#PATCH_DIST_STRIP= -d ${WRKDIR}/${DISTNAME} - -WRKSRC= ${WRKDIR}/${DISTNAME}/build_unix - -INSTALLS_SHLIB= yes -HAS_CONFIGURE= yes -CONFIGURE_SCRIPT= ../dist/configure -CONFIGURE_ARGS= --enable-compat185 \ - --enable-dump185 --enable-cxx \ - --enable-dynamic \ - --prefix=${PREFIX} \ - --includedir=${PREFIX}/include/db4 \ - --target=${ARCH}-unknown-freebsd${OSREL} - -pre-patch: - @${PERL} -pi -e 's|-lpthread|${PTHREAD_LIBS}|g' ${WRKSRC}/${CONFIGURE_SCRIPT} - -post-patch: - @${CHMOD} 755 ${WRKSRC}/${CONFIGURE_SCRIPT} - @${PERL} -pi -e "s|%%LOCALBASE%%|${LOCALBASE}|g" ${WRKSRC}/../dist/configure - -.include <bsd.port.mk> diff --git a/databases/db42/distinfo b/databases/db42/distinfo deleted file mode 100644 index 09f3d6b59aec..000000000000 --- a/databases/db42/distinfo +++ /dev/null @@ -1 +0,0 @@ -MD5 (bdb/db-4.0.14.tar.gz) = 12262c64fcd64b772e7cffad8e4d0ebc diff --git a/databases/db42/files/patch-dist::Makefile.in b/databases/db42/files/patch-dist::Makefile.in deleted file mode 100644 index 136ab161efdc..000000000000 --- a/databases/db42/files/patch-dist::Makefile.in +++ /dev/null @@ -1,135 +0,0 @@ ---- ../dist/Makefile.in.orig Sat Nov 10 01:48:45 2001 -+++ ../dist/Makefile.in Wed Dec 5 13:38:23 2001 -@@ -11,7 +11,7 @@ - bindir= @bindir@ - includedir=@includedir@ - libdir= @libdir@ --docdir= $(prefix)/docs -+docdir= $(prefix)/share/doc/db4 - - dmode= 755 - emode= 555 -@@ -45,6 +45,7 @@ - SOLINK= @MAKEFILE_SOLINK@ - SOFLAGS= @SOFLAGS@ - SOMAJOR= @DB_VERSION_MAJOR@ -+SOMINOR= @DB_VERSION_MINOR@ - SOVERSION= @DB_VERSION_MAJOR@.@DB_VERSION_MINOR@ - - ################################################## -@@ -60,13 +61,13 @@ - LIBS= @LIBS@ - LIBSO_LIBS= @LIBSO_LIBS@ - --libdb= libdb.a --libso_base= libdb --libso= $(libso_base)-$(SOVERSION).@SOSUFFIX@ --libso_static= $(libso_base)-$(SOVERSION).a --libso_target= $(libso_base)-$(SOVERSION).la -+libdb= libdb4.a -+libso_base= libdb4 -+libso= $(libso_base).@SOSUFFIX@ -+libso_static= $(libso_base).a -+libso_target= $(libso_base).la - libso_default= $(libso_base).@SOSUFFIX@ --libso_major= $(libso_base)-$(SOMAJOR).@SOSUFFIX@ -+libso_major= $(libso_base).@SOSUFFIX@.$(SOMINOR) - - ################################################## - # C++ API. -@@ -79,13 +80,13 @@ - XSOLINK= @MAKEFILE_XSOLINK@ - LIBXSO_LIBS= @LIBXSO_LIBS@ - --libcxx= libdb_cxx.a --libxso_base= libdb_cxx --libxso= $(libxso_base)-$(SOVERSION).@SOSUFFIX@ --libxso_static= $(libxso_base)-$(SOVERSION).a --libxso_target= $(libxso_base)-$(SOVERSION).la -+libcxx= libdb4_cxx.a -+libxso_base= libdb4_cxx -+libxso= $(libxso_base).@SOSUFFIX@ -+libxso_static= $(libxso_base).a -+libxso_target= $(libxso_base).la - libxso_default= $(libxso_base).@SOSUFFIX@ --libxso_major= $(libxso_base)-$(SOMAJOR).@SOSUFFIX@ -+libxso_major= $(libxso_base).@SOSUFFIX@.$(SOMINOR) - - ################################################## - # Java API. -@@ -235,8 +236,8 @@ - db_server_proc@o@ db_server_svc@o@ db_server_util@o@ gen_db_server@o@ - - UTIL_PROGS=\ -- @ADDITIONAL_PROGS@ db_archive db_checkpoint db_deadlock \ -- db_dump db_load db_printlog db_recover db_stat db_upgrade db_verify -+ @ADDITIONAL_PROGS@ db4_archive db4_checkpoint db4_deadlock \ -+ db4_dump db4_load db4_printlog db4_recover db4_stat db4_upgrade db4_verify - - ################################################## - # List of files installed into the library directory. -@@ -330,53 +331,53 @@ - $(RPC_SRV_OBJS) util_log@o@ $(DEF_LIB) $(LIBS) - $(POSTLINK) $@ - --db_archive: db_archive@o@ util_sig@o@ $(DEF_LIB) -+db4_archive: db_archive@o@ util_sig@o@ $(DEF_LIB) - $(CCLINK) -o $@ $(LDFLAGS) \ - db_archive@o@ util_sig@o@ $(DEF_LIB) $(LIBS) - $(POSTLINK) $@ - --db_checkpoint: db_checkpoint@o@ util_log@o@ util_sig@o@ $(DEF_LIB) -+db4_checkpoint: db_checkpoint@o@ util_log@o@ util_sig@o@ $(DEF_LIB) - $(CCLINK) -o $@ $(LDFLAGS) \ - db_checkpoint@o@ util_log@o@ util_sig@o@ $(DEF_LIB) $(LIBS) - $(POSTLINK) $@ - --db_deadlock: db_deadlock@o@ util_log@o@ util_sig@o@ $(DEF_LIB) -+db4_deadlock: db_deadlock@o@ util_log@o@ util_sig@o@ $(DEF_LIB) - $(CCLINK) -o $@ $(LDFLAGS) \ - db_deadlock@o@ util_log@o@ util_sig@o@ $(DEF_LIB) $(LIBS) - $(POSTLINK) $@ - --db_dump: db_dump@o@ util_sig@o@ $(DEF_LIB) -+db4_dump: db_dump@o@ util_sig@o@ $(DEF_LIB) - $(CCLINK) -o $@ $(LDFLAGS) db_dump@o@ util_sig@o@ $(DEF_LIB) $(LIBS) - $(POSTLINK) $@ - --db_dump185: db_dump185@o@ @LIBOBJS@ -+db4_dump185: db_dump185@o@ @LIBOBJS@ - $(CCLINK) -o $@ $(LDFLAGS) db_dump185@o@ @LIBOBJS@ $(DB185LIB) - $(POSTLINK) $@ - --db_load: db_load@o@ util_sig@o@ $(DEF_LIB) -+db4_load: db_load@o@ util_sig@o@ $(DEF_LIB) - $(CCLINK) -o $@ $(LDFLAGS) db_load@o@ util_sig@o@ $(DEF_LIB) $(LIBS) - $(POSTLINK) $@ - --db_printlog: db_printlog@o@ util_sig@o@ $(DEF_LIB) -+db4_printlog: db_printlog@o@ util_sig@o@ $(DEF_LIB) - $(CCLINK) -o $@ $(LDFLAGS) \ - db_printlog@o@ util_sig@o@ $(DEF_LIB) $(LIBS) - $(POSTLINK) $@ - --db_recover: db_recover@o@ util_sig@o@ $(DEF_LIB) -+db4_recover: db_recover@o@ util_sig@o@ $(DEF_LIB) - $(CCLINK) -o $@ $(LDFLAGS) \ - db_recover@o@ util_sig@o@ $(DEF_LIB) $(LIBS) - $(POSTLINK) $@ - --db_stat: db_stat@o@ util_sig@o@ $(DEF_LIB) -+db4_stat: db_stat@o@ util_sig@o@ $(DEF_LIB) - $(CCLINK) -o $@ $(LDFLAGS) db_stat@o@ util_sig@o@ $(DEF_LIB) $(LIBS) - $(POSTLINK) $@ - --db_upgrade: db_upgrade@o@ util_sig@o@ $(DEF_LIB) -+db4_upgrade: db_upgrade@o@ util_sig@o@ $(DEF_LIB) - $(CCLINK) -o $@ $(LDFLAGS) \ - db_upgrade@o@ util_sig@o@ $(DEF_LIB) $(LIBS) - $(POSTLINK) $@ - --db_verify: db_verify@o@ util_sig@o@ $(DEF_LIB) -+db4_verify: db_verify@o@ util_sig@o@ $(DEF_LIB) - $(CCLINK) -o $@ $(LDFLAGS) \ - db_verify@o@ util_sig@o@ $(DEF_LIB) $(LIBS) - $(POSTLINK) $@ diff --git a/databases/db42/files/patch-dist::configure b/databases/db42/files/patch-dist::configure deleted file mode 100644 index 4f2ed615df05..000000000000 --- a/databases/db42/files/patch-dist::configure +++ /dev/null @@ -1,24 +0,0 @@ ---- ../dist/configure.orig Wed Dec 5 13:14:02 2001 -+++ ../dist/configure Wed Dec 5 13:24:01 2001 -@@ -8794,10 +8794,10 @@ - INSTALLER="\$(LIBTOOL) --mode=install cp" - - MAKEFILE_CC="\$(LIBTOOL) --mode=compile ${MAKEFILE_CC}" --MAKEFILE_SOLINK="\$(LIBTOOL) --mode=link ${MAKEFILE_CCLINK} -avoid-version" -+MAKEFILE_SOLINK="\$(LIBTOOL) --mode=link ${MAKEFILE_CCLINK} -version-info ${DB_VERSION_MINOR}" - MAKEFILE_CCLINK="\$(LIBTOOL) --mode=link ${MAKEFILE_CCLINK}" - MAKEFILE_CXX="\$(LIBTOOL) --mode=compile ${MAKEFILE_CXX}" --MAKEFILE_XSOLINK="\$(LIBTOOL) --mode=link ${MAKEFILE_CXXLINK} -avoid-version" -+MAKEFILE_XSOLINK="\$(LIBTOOL) --mode=link ${MAKEFILE_CXXLINK} -version-info ${DB_VERSION_MINOR}" - MAKEFILE_CXXLINK="\$(LIBTOOL) --mode=link ${MAKEFILE_CXXLINK}" - - # Configure for shared libraries, static libraries, or both. If both are -@@ -9511,7 +9511,7 @@ - - # Optional utilities. - if test "$db_cv_dump185" = "yes"; then -- ADDITIONAL_PROGS="db_dump185 $ADDITIONAL_PROGS" -+ ADDITIONAL_PROGS="db4_dump185 $ADDITIONAL_PROGS" - fi - - # Checks for system/compiler characteristics. diff --git a/databases/db42/pkg-comment b/databases/db42/pkg-comment deleted file mode 100644 index 0ea96ff89521..000000000000 --- a/databases/db42/pkg-comment +++ /dev/null @@ -1 +0,0 @@ -The Berkeley DB package, revision 4 diff --git a/databases/db42/pkg-descr b/databases/db42/pkg-descr deleted file mode 100644 index a47006d1fdee..000000000000 --- a/databases/db42/pkg-descr +++ /dev/null @@ -1,13 +0,0 @@ -Revision 4 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 v4 -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 6568248aebb3..000000000000 --- a/databases/db42/pkg-plist +++ /dev/null @@ -1,898 +0,0 @@ -bin/db4_archive -bin/db4_checkpoint -bin/db4_deadlock -bin/db4_dump -bin/db4_dump185 -bin/db4_load -bin/db4_printlog -bin/db4_recover -bin/db4_stat -bin/db4_upgrade -bin/db4_verify -include/db4/cxx_common.h -include/db4/cxx_except.h -include/db4/db.h -include/db4/db_185.h -include/db4/db_cxx.h -lib/libdb4.a -lib/libdb4.la -lib/libdb4.so -lib/libdb4.so.0 -lib/libdb4_cxx.a -lib/libdb4_cxx.la -lib/libdb4_cxx.so -lib/libdb4_cxx.so.0 -share/doc/db4/api_c/c_index.html -share/doc/db4/api_c/c_pindex.html -share/doc/db4/api_c/db_associate.html -share/doc/db4/api_c/db_close.html -share/doc/db4/api_c/db_create.html -share/doc/db4/api_c/db_cursor.html -share/doc/db4/api_c/db_del.html -share/doc/db4/api_c/db_err.html -share/doc/db4/api_c/db_fd.html -share/doc/db4/api_c/db_get.html -share/doc/db4/api_c/db_get_byteswapped.html -share/doc/db4/api_c/db_get_type.html -share/doc/db4/api_c/db_join.html -share/doc/db4/api_c/db_key_range.html -share/doc/db4/api_c/db_lsn.html -share/doc/db4/api_c/db_open.html -share/doc/db4/api_c/db_put.html -share/doc/db4/api_c/db_remove.html -share/doc/db4/api_c/db_rename.html -share/doc/db4/api_c/db_set_alloc.html -share/doc/db4/api_c/db_set_append_recno.html -share/doc/db4/api_c/db_set_bt_compare.html -share/doc/db4/api_c/db_set_bt_minkey.html -share/doc/db4/api_c/db_set_bt_prefix.html -share/doc/db4/api_c/db_set_cachesize.html -share/doc/db4/api_c/db_set_dup_compare.html -share/doc/db4/api_c/db_set_errcall.html -share/doc/db4/api_c/db_set_errfile.html -share/doc/db4/api_c/db_set_errpfx.html -share/doc/db4/api_c/db_set_feedback.html -share/doc/db4/api_c/db_set_flags.html -share/doc/db4/api_c/db_set_h_ffactor.html -share/doc/db4/api_c/db_set_h_hash.html -share/doc/db4/api_c/db_set_h_nelem.html -share/doc/db4/api_c/db_set_lorder.html -share/doc/db4/api_c/db_set_pagesize.html -share/doc/db4/api_c/db_set_paniccall.html -share/doc/db4/api_c/db_set_q_extentsize.html -share/doc/db4/api_c/db_set_re_delim.html -share/doc/db4/api_c/db_set_re_len.html -share/doc/db4/api_c/db_set_re_pad.html -share/doc/db4/api_c/db_set_re_source.html -share/doc/db4/api_c/db_stat.html -share/doc/db4/api_c/db_sync.html -share/doc/db4/api_c/db_truncate.html -share/doc/db4/api_c/db_upgrade.html -share/doc/db4/api_c/db_verify.html -share/doc/db4/api_c/dbc_close.html -share/doc/db4/api_c/dbc_count.html -share/doc/db4/api_c/dbc_del.html -share/doc/db4/api_c/dbc_dup.html -share/doc/db4/api_c/dbc_get.html -share/doc/db4/api_c/dbc_put.html -share/doc/db4/api_c/dbm.html -share/doc/db4/api_c/dbt.html -share/doc/db4/api_c/dbt_bulk.html -share/doc/db4/api_c/env_close.html -share/doc/db4/api_c/env_create.html -share/doc/db4/api_c/env_err.html -share/doc/db4/api_c/env_open.html -share/doc/db4/api_c/env_remove.html -share/doc/db4/api_c/env_set_alloc.html -share/doc/db4/api_c/env_set_cachesize.html -share/doc/db4/api_c/env_set_data_dir.html -share/doc/db4/api_c/env_set_errcall.html -share/doc/db4/api_c/env_set_errfile.html -share/doc/db4/api_c/env_set_errpfx.html -share/doc/db4/api_c/env_set_feedback.html -share/doc/db4/api_c/env_set_flags.html -share/doc/db4/api_c/env_set_lg_bsize.html -share/doc/db4/api_c/env_set_lg_dir.html -share/doc/db4/api_c/env_set_lg_max.html -share/doc/db4/api_c/env_set_lg_regionmax.html -share/doc/db4/api_c/env_set_lk_conflicts.html -share/doc/db4/api_c/env_set_lk_detect.html -share/doc/db4/api_c/env_set_lk_max_lockers.html -share/doc/db4/api_c/env_set_lk_max_locks.html -share/doc/db4/api_c/env_set_lk_max_objects.html -share/doc/db4/api_c/env_set_mp_mmapsize.html -share/doc/db4/api_c/env_set_paniccall.html -share/doc/db4/api_c/env_set_rec_init.html -share/doc/db4/api_c/env_set_rpc_server.html -share/doc/db4/api_c/env_set_shm_key.html -share/doc/db4/api_c/env_set_tas_spins.html -share/doc/db4/api_c/env_set_timeout.html -share/doc/db4/api_c/env_set_tmp_dir.html -share/doc/db4/api_c/env_set_tx_max.html -share/doc/db4/api_c/env_set_tx_recover.html -share/doc/db4/api_c/env_set_tx_timestamp.html -share/doc/db4/api_c/env_set_verbose.html -share/doc/db4/api_c/env_strerror.html -share/doc/db4/api_c/env_version.html -share/doc/db4/api_c/hsearch.html -share/doc/db4/api_c/lock_detect.html -share/doc/db4/api_c/lock_get.html -share/doc/db4/api_c/lock_id.html -share/doc/db4/api_c/lock_id_free.html -share/doc/db4/api_c/lock_put.html -share/doc/db4/api_c/lock_stat.html -share/doc/db4/api_c/lock_vec.html -share/doc/db4/api_c/log_archive.html -share/doc/db4/api_c/log_compare.html -share/doc/db4/api_c/log_cursor.html -share/doc/db4/api_c/log_file.html -share/doc/db4/api_c/log_flush.html -share/doc/db4/api_c/log_put.html -share/doc/db4/api_c/log_register.html -share/doc/db4/api_c/log_stat.html -share/doc/db4/api_c/log_unregister.html -share/doc/db4/api_c/logc_close.html -share/doc/db4/api_c/logc_get.html -share/doc/db4/api_c/memp_fclose.html -share/doc/db4/api_c/memp_fcreate.html -share/doc/db4/api_c/memp_fget.html -share/doc/db4/api_c/memp_fopen.html -share/doc/db4/api_c/memp_fput.html -share/doc/db4/api_c/memp_fset.html -share/doc/db4/api_c/memp_fsync.html -share/doc/db4/api_c/memp_register.html -share/doc/db4/api_c/memp_set_clear_len.html -share/doc/db4/api_c/memp_set_fileid.html -share/doc/db4/api_c/memp_set_ftype.html -share/doc/db4/api_c/memp_set_lsn_offset.html -share/doc/db4/api_c/memp_set_pgcookie.html -share/doc/db4/api_c/memp_stat.html -share/doc/db4/api_c/memp_sync.html -share/doc/db4/api_c/memp_trickle.html -share/doc/db4/api_c/pindex.src -share/doc/db4/api_c/rep_elect.html -share/doc/db4/api_c/rep_message.html -share/doc/db4/api_c/rep_start.html -share/doc/db4/api_c/rep_transport.html -share/doc/db4/api_c/set_func_close.html -share/doc/db4/api_c/set_func_dirfree.html -share/doc/db4/api_c/set_func_dirlist.html -share/doc/db4/api_c/set_func_exists.html -share/doc/db4/api_c/set_func_free.html -share/doc/db4/api_c/set_func_fsync.html -share/doc/db4/api_c/set_func_ioinfo.html -share/doc/db4/api_c/set_func_malloc.html -share/doc/db4/api_c/set_func_map.html -share/doc/db4/api_c/set_func_open.html -share/doc/db4/api_c/set_func_read.html -share/doc/db4/api_c/set_func_realloc.html -share/doc/db4/api_c/set_func_rename.html -share/doc/db4/api_c/set_func_seek.html -share/doc/db4/api_c/set_func_sleep.html -share/doc/db4/api_c/set_func_unlink.html -share/doc/db4/api_c/set_func_unmap.html -share/doc/db4/api_c/set_func_write.html -share/doc/db4/api_c/set_func_yield.html -share/doc/db4/api_c/txn_abort.html -share/doc/db4/api_c/txn_begin.html -share/doc/db4/api_c/txn_checkpoint.html -share/doc/db4/api_c/txn_commit.html -share/doc/db4/api_c/txn_discard.html -share/doc/db4/api_c/txn_id.html -share/doc/db4/api_c/txn_prepare.html -share/doc/db4/api_c/txn_recover.html -share/doc/db4/api_c/txn_set_timeout.html -share/doc/db4/api_c/txn_stat.html -share/doc/db4/api_cxx/c_index.html -share/doc/db4/api_cxx/cxx_pindex.html -share/doc/db4/api_cxx/db_associate.html -share/doc/db4/api_cxx/db_class.html -share/doc/db4/api_cxx/db_close.html -share/doc/db4/api_cxx/db_cursor.html -share/doc/db4/api_cxx/db_del.html -share/doc/db4/api_cxx/db_err.html -share/doc/db4/api_cxx/db_fd.html -share/doc/db4/api_cxx/db_get.html -share/doc/db4/api_cxx/db_get_byteswapped.html -share/doc/db4/api_cxx/db_get_type.html -share/doc/db4/api_cxx/db_join.html -share/doc/db4/api_cxx/db_key_range.html -share/doc/db4/api_cxx/db_open.html -share/doc/db4/api_cxx/db_put.html -share/doc/db4/api_cxx/db_remove.html -share/doc/db4/api_cxx/db_rename.html -share/doc/db4/api_cxx/db_set_alloc.html -share/doc/db4/api_cxx/db_set_append_recno.html -share/doc/db4/api_cxx/db_set_bt_compare.html -share/doc/db4/api_cxx/db_set_bt_minkey.html -share/doc/db4/api_cxx/db_set_bt_prefix.html -share/doc/db4/api_cxx/db_set_cachesize.html -share/doc/db4/api_cxx/db_set_dup_compare.html -share/doc/db4/api_cxx/db_set_errcall.html -share/doc/db4/api_cxx/db_set_errfile.html -share/doc/db4/api_cxx/db_set_errpfx.html -share/doc/db4/api_cxx/db_set_feedback.html -share/doc/db4/api_cxx/db_set_flags.html -share/doc/db4/api_cxx/db_set_h_ffactor.html -share/doc/db4/api_cxx/db_set_h_hash.html -share/doc/db4/api_cxx/db_set_h_nelem.html -share/doc/db4/api_cxx/db_set_lorder.html -share/doc/db4/api_cxx/db_set_pagesize.html -share/doc/db4/api_cxx/db_set_paniccall.html -share/doc/db4/api_cxx/db_set_q_extentsize.html -share/doc/db4/api_cxx/db_set_re_delim.html -share/doc/db4/api_cxx/db_set_re_len.html -share/doc/db4/api_cxx/db_set_re_pad.html -share/doc/db4/api_cxx/db_set_re_source.html -share/doc/db4/api_cxx/db_stat.html -share/doc/db4/api_cxx/db_sync.html -share/doc/db4/api_cxx/db_truncate.html -share/doc/db4/api_cxx/db_upgrade.html -share/doc/db4/api_cxx/db_verify.html -share/doc/db4/api_cxx/dbc_class.html -share/doc/db4/api_cxx/dbc_close.html -share/doc/db4/api_cxx/dbc_count.html -share/doc/db4/api_cxx/dbc_del.html -share/doc/db4/api_cxx/dbc_dup.html -share/doc/db4/api_cxx/dbc_get.html -share/doc/db4/api_cxx/dbc_put.html -share/doc/db4/api_cxx/dbenv_class.html -share/doc/db4/api_cxx/dbt_bulk.html -share/doc/db4/api_cxx/dbt_class.html -share/doc/db4/api_cxx/env_close.html -share/doc/db4/api_cxx/env_err.html -share/doc/db4/api_cxx/env_open.html -share/doc/db4/api_cxx/env_remove.html -share/doc/db4/api_cxx/env_set_alloc.html -share/doc/db4/api_cxx/env_set_cachesize.html -share/doc/db4/api_cxx/env_set_data_dir.html -share/doc/db4/api_cxx/env_set_errcall.html -share/doc/db4/api_cxx/env_set_errfile.html -share/doc/db4/api_cxx/env_set_error_stream.html -share/doc/db4/api_cxx/env_set_errpfx.html -share/doc/db4/api_cxx/env_set_feedback.html -share/doc/db4/api_cxx/env_set_flags.html -share/doc/db4/api_cxx/env_set_lg_bsize.html -share/doc/db4/api_cxx/env_set_lg_dir.html -share/doc/db4/api_cxx/env_set_lg_max.html -share/doc/db4/api_cxx/env_set_lg_regionmax.html -share/doc/db4/api_cxx/env_set_lk_conflicts.html -share/doc/db4/api_cxx/env_set_lk_detect.html -share/doc/db4/api_cxx/env_set_lk_max_lockers.html -share/doc/db4/api_cxx/env_set_lk_max_locks.html -share/doc/db4/api_cxx/env_set_lk_max_objects.html -share/doc/db4/api_cxx/env_set_mp_mmapsize.html -share/doc/db4/api_cxx/env_set_paniccall.html -share/doc/db4/api_cxx/env_set_rec_init.html -share/doc/db4/api_cxx/env_set_rpc_server.html -share/doc/db4/api_cxx/env_set_shm_key.html -share/doc/db4/api_cxx/env_set_tas_spins.html -share/doc/db4/api_cxx/env_set_timeout.html -share/doc/db4/api_cxx/env_set_tmp_dir.html -share/doc/db4/api_cxx/env_set_tx_max.html -share/doc/db4/api_cxx/env_set_tx_recover.html -share/doc/db4/api_cxx/env_set_tx_timestamp.html -share/doc/db4/api_cxx/env_set_verbose.html -share/doc/db4/api_cxx/env_strerror.html -share/doc/db4/api_cxx/env_version.html -share/doc/db4/api_cxx/except_class.html -share/doc/db4/api_cxx/get_dbt.html -share/doc/db4/api_cxx/get_errno.html -share/doc/db4/api_cxx/lock_class.html -share/doc/db4/api_cxx/lock_detect.html -share/doc/db4/api_cxx/lock_get.html -share/doc/db4/api_cxx/lock_id.html -share/doc/db4/api_cxx/lock_id_free.html -share/doc/db4/api_cxx/lock_put.html -share/doc/db4/api_cxx/lock_stat.html -share/doc/db4/api_cxx/lock_vec.html -share/doc/db4/api_cxx/log_archive.html -share/doc/db4/api_cxx/log_compare.html -share/doc/db4/api_cxx/log_cursor.html -share/doc/db4/api_cxx/log_file.html -share/doc/db4/api_cxx/log_flush.html -share/doc/db4/api_cxx/log_put.html -share/doc/db4/api_cxx/log_register.html -share/doc/db4/api_cxx/log_stat.html -share/doc/db4/api_cxx/log_unregister.html -share/doc/db4/api_cxx/logc_class.html -share/doc/db4/api_cxx/logc_close.html -share/doc/db4/api_cxx/logc_get.html -share/doc/db4/api_cxx/lsn_class.html -share/doc/db4/api_cxx/mem_class.html -share/doc/db4/api_cxx/memp_fclose.html -share/doc/db4/api_cxx/memp_fcreate.html -share/doc/db4/api_cxx/memp_fget.html -share/doc/db4/api_cxx/memp_fopen.html -share/doc/db4/api_cxx/memp_fput.html -share/doc/db4/api_cxx/memp_fset.html -share/doc/db4/api_cxx/memp_fsync.html -share/doc/db4/api_cxx/memp_register.html -share/doc/db4/api_cxx/memp_set_clear_len.html -share/doc/db4/api_cxx/memp_set_fileid.html -share/doc/db4/api_cxx/memp_set_ftype.html -share/doc/db4/api_cxx/memp_set_lsn_offset.html -share/doc/db4/api_cxx/memp_set_pgcookie.html -share/doc/db4/api_cxx/memp_stat.html -share/doc/db4/api_cxx/memp_sync.html -share/doc/db4/api_cxx/memp_trickle.html -share/doc/db4/api_cxx/mempfile_class.html -share/doc/db4/api_cxx/pindex.src -share/doc/db4/api_cxx/rep_elect.html -share/doc/db4/api_cxx/rep_message.html -share/doc/db4/api_cxx/rep_start.html -share/doc/db4/api_cxx/rep_transport.html -share/doc/db4/api_cxx/txn_abort.html -share/doc/db4/api_cxx/txn_begin.html -share/doc/db4/api_cxx/txn_checkpoint.html -share/doc/db4/api_cxx/txn_class.html -share/doc/db4/api_cxx/txn_commit.html -share/doc/db4/api_cxx/txn_discard.html -share/doc/db4/api_cxx/txn_id.html -share/doc/db4/api_cxx/txn_prepare.html -share/doc/db4/api_cxx/txn_recover.html -share/doc/db4/api_cxx/txn_set_timeout.html -share/doc/db4/api_cxx/txn_stat.html -share/doc/db4/api_cxx/what.html -share/doc/db4/api_java/c_index.html -share/doc/db4/api_java/db_associate.html -share/doc/db4/api_java/db_class.html -share/doc/db4/api_java/db_close.html -share/doc/db4/api_java/db_cursor.html -share/doc/db4/api_java/db_del.html -share/doc/db4/api_java/db_fd.html -share/doc/db4/api_java/db_get.html -share/doc/db4/api_java/db_get_byteswapped.html -share/doc/db4/api_java/db_get_type.html -share/doc/db4/api_java/db_join.html -share/doc/db4/api_java/db_key_range.html -share/doc/db4/api_java/db_open.html -share/doc/db4/api_java/db_put.html -share/doc/db4/api_java/db_remove.html -share/doc/db4/api_java/db_rename.html -share/doc/db4/api_java/db_set_append_recno.html -share/doc/db4/api_java/db_set_bt_compare.html -share/doc/db4/api_java/db_set_bt_minkey.html -share/doc/db4/api_java/db_set_bt_prefix.html -share/doc/db4/api_java/db_set_cachesize.html -share/doc/db4/api_java/db_set_dup_compare.html -share/doc/db4/api_java/db_set_errcall.html -share/doc/db4/api_java/db_set_errpfx.html -share/doc/db4/api_java/db_set_feedback.html -share/doc/db4/api_java/db_set_flags.html -share/doc/db4/api_java/db_set_h_ffactor.html -share/doc/db4/api_java/db_set_h_hash.html -share/doc/db4/api_java/db_set_h_nelem.html -share/doc/db4/api_java/db_set_lorder.html -share/doc/db4/api_java/db_set_pagesize.html -share/doc/db4/api_java/db_set_q_extentsize.html -share/doc/db4/api_java/db_set_re_delim.html -share/doc/db4/api_java/db_set_re_len.html -share/doc/db4/api_java/db_set_re_pad.html -share/doc/db4/api_java/db_set_re_source.html -share/doc/db4/api_java/db_stat.html -share/doc/db4/api_java/db_sync.html -share/doc/db4/api_java/db_truncate.html -share/doc/db4/api_java/db_upgrade.html -share/doc/db4/api_java/db_verify.html -share/doc/db4/api_java/dbc_class.html -share/doc/db4/api_java/dbc_close.html -share/doc/db4/api_java/dbc_count.html -share/doc/db4/api_java/dbc_del.html -share/doc/db4/api_java/dbc_dup.html -share/doc/db4/api_java/dbc_get.html -share/doc/db4/api_java/dbc_put.html -share/doc/db4/api_java/dbenv_class.html -share/doc/db4/api_java/dbt_bulk_class.html -share/doc/db4/api_java/dbt_class.html -share/doc/db4/api_java/deadlock_class.html -share/doc/db4/api_java/env_close.html -share/doc/db4/api_java/env_open.html -share/doc/db4/api_java/env_remove.html -share/doc/db4/api_java/env_set_cachesize.html -share/doc/db4/api_java/env_set_data_dir.html -share/doc/db4/api_java/env_set_errcall.html -share/doc/db4/api_java/env_set_error_stream.html -share/doc/db4/api_java/env_set_errpfx.html -share/doc/db4/api_java/env_set_feedback.html -share/doc/db4/api_java/env_set_flags.html -share/doc/db4/api_java/env_set_lg_bsize.html -share/doc/db4/api_java/env_set_lg_dir.html -share/doc/db4/api_java/env_set_lg_max.html -share/doc/db4/api_java/env_set_lg_regionmax.html -share/doc/db4/api_java/env_set_lk_conflicts.html -share/doc/db4/api_java/env_set_lk_detect.html -share/doc/db4/api_java/env_set_lk_max_lockers.html -share/doc/db4/api_java/env_set_lk_max_locks.html -share/doc/db4/api_java/env_set_lk_max_objects.html -share/doc/db4/api_java/env_set_mp_mmapsize.html -share/doc/db4/api_java/env_set_rec_init.html -share/doc/db4/api_java/env_set_rpc_server.html -share/doc/db4/api_java/env_set_shm_key.html -share/doc/db4/api_java/env_set_tas_spins.html -share/doc/db4/api_java/env_set_timeout.html -share/doc/db4/api_java/env_set_tmp_dir.html -share/doc/db4/api_java/env_set_tx_max.html -share/doc/db4/api_java/env_set_tx_recover.html -share/doc/db4/api_java/env_set_tx_timestamp.html -share/doc/db4/api_java/env_set_verbose.html -share/doc/db4/api_java/env_strerror.html -share/doc/db4/api_java/env_version.html -share/doc/db4/api_java/except_class.html -share/doc/db4/api_java/get_dbt.html -share/doc/db4/api_java/get_errno.html -share/doc/db4/api_java/java_pindex.html -share/doc/db4/api_java/lock_class.html -share/doc/db4/api_java/lock_detect.html -share/doc/db4/api_java/lock_get.html -share/doc/db4/api_java/lock_id.html -share/doc/db4/api_java/lock_id_free.html -share/doc/db4/api_java/lock_put.html -share/doc/db4/api_java/lock_stat.html -share/doc/db4/api_java/lock_vec.html -share/doc/db4/api_java/log_archive.html -share/doc/db4/api_java/log_compare.html -share/doc/db4/api_java/log_cursor.html -share/doc/db4/api_java/log_file.html -share/doc/db4/api_java/log_flush.html -share/doc/db4/api_java/log_put.html -share/doc/db4/api_java/log_register.html -share/doc/db4/api_java/log_stat.html -share/doc/db4/api_java/log_unregister.html -share/doc/db4/api_java/logc_class.html -share/doc/db4/api_java/logc_close.html -share/doc/db4/api_java/logc_get.html -share/doc/db4/api_java/lsn_class.html -share/doc/db4/api_java/mem_class.html -share/doc/db4/api_java/memp_fclose.html -share/doc/db4/api_java/memp_fopen.html -share/doc/db4/api_java/memp_fsync.html -share/doc/db4/api_java/memp_register.html -share/doc/db4/api_java/memp_stat.html -share/doc/db4/api_java/memp_sync.html -share/doc/db4/api_java/memp_trickle.html -share/doc/db4/api_java/pindex.src -share/doc/db4/api_java/rep_elect.html -share/doc/db4/api_java/rep_message.html -share/doc/db4/api_java/rep_start.html -share/doc/db4/api_java/rep_transport.html -share/doc/db4/api_java/runrec_class.html -share/doc/db4/api_java/txn_abort.html -share/doc/db4/api_java/txn_begin.html -share/doc/db4/api_java/txn_checkpoint.html -share/doc/db4/api_java/txn_class.html -share/doc/db4/api_java/txn_commit.html -share/doc/db4/api_java/txn_discard.html -share/doc/db4/api_java/txn_id.html -share/doc/db4/api_java/txn_prepare.html -share/doc/db4/api_java/txn_recover.html -share/doc/db4/api_java/txn_set_timeout.html -share/doc/db4/api_java/txn_stat.html -share/doc/db4/api_tcl/db_close.html -share/doc/db4/api_tcl/db_count.html -share/doc/db4/api_tcl/db_cursor.html -share/doc/db4/api_tcl/db_del.html -share/doc/db4/api_tcl/db_get.html -share/doc/db4/api_tcl/db_get_join.html -share/doc/db4/api_tcl/db_get_type.html -share/doc/db4/api_tcl/db_is_byteswapped.html -share/doc/db4/api_tcl/db_join.html -share/doc/db4/api_tcl/db_open.html -share/doc/db4/api_tcl/db_put.html -share/doc/db4/api_tcl/db_remove.html -share/doc/db4/api_tcl/db_rename.html -share/doc/db4/api_tcl/db_stat.html -share/doc/db4/api_tcl/db_sync.html -share/doc/db4/api_tcl/db_truncate.html -share/doc/db4/api_tcl/dbc_close.html -share/doc/db4/api_tcl/dbc_del.html -share/doc/db4/api_tcl/dbc_dup.html -share/doc/db4/api_tcl/dbc_get.html -share/doc/db4/api_tcl/dbc_put.html -share/doc/db4/api_tcl/env_close.html -share/doc/db4/api_tcl/env_open.html -share/doc/db4/api_tcl/env_remove.html -share/doc/db4/api_tcl/pindex.src -share/doc/db4/api_tcl/tcl_index.html -share/doc/db4/api_tcl/tcl_pindex.html -share/doc/db4/api_tcl/txn.html -share/doc/db4/api_tcl/txn_abort.html -share/doc/db4/api_tcl/txn_commit.html -share/doc/db4/api_tcl/version.html -share/doc/db4/images/api.gif -share/doc/db4/images/next.gif -share/doc/db4/images/prev.gif -share/doc/db4/images/ps.gif -share/doc/db4/images/ref.gif -share/doc/db4/images/sleepycat.gif -share/doc/db4/index.html -share/doc/db4/ref/am/close.html -share/doc/db4/ref/am/count.html -share/doc/db4/ref/am/curclose.html -share/doc/db4/ref/am/curdel.html -share/doc/db4/ref/am/curdup.html -share/doc/db4/ref/am/curget.html -share/doc/db4/ref/am/curput.html -share/doc/db4/ref/am/cursor.html -share/doc/db4/ref/am/delete.html -share/doc/db4/ref/am/get.html -share/doc/db4/ref/am/join.html -share/doc/db4/ref/am/open.html -share/doc/db4/ref/am/opensub.html -share/doc/db4/ref/am/ops.html -share/doc/db4/ref/am/put.html -share/doc/db4/ref/am/second.html -share/doc/db4/ref/am/stat.html -share/doc/db4/ref/am/sync.html -share/doc/db4/ref/am/truncate.html -share/doc/db4/ref/am/upgrade.html -share/doc/db4/ref/am/verify.html -share/doc/db4/ref/am_conf/bt_compare.html -share/doc/db4/ref/am_conf/bt_minkey.html -share/doc/db4/ref/am_conf/bt_prefix.html -share/doc/db4/ref/am_conf/bt_recnum.html -share/doc/db4/ref/am_conf/byteorder.html -share/doc/db4/ref/am_conf/cachesize.html -share/doc/db4/ref/am_conf/dup.html -share/doc/db4/ref/am_conf/extentsize.html -share/doc/db4/ref/am_conf/h_ffactor.html -share/doc/db4/ref/am_conf/h_hash.html -share/doc/db4/ref/am_conf/h_nelem.html -share/doc/db4/ref/am_conf/intro.html -share/doc/db4/ref/am_conf/logrec.html -share/doc/db4/ref/am_conf/malloc.html -share/doc/db4/ref/am_conf/pagesize.html -share/doc/db4/ref/am_conf/re_source.html -share/doc/db4/ref/am_conf/recno.html -share/doc/db4/ref/am_conf/renumber.html -share/doc/db4/ref/am_conf/select.html -share/doc/db4/ref/am_misc/align.html -share/doc/db4/ref/am_misc/dbsizes.html -share/doc/db4/ref/am_misc/diskspace.html -share/doc/db4/ref/am_misc/error.html -share/doc/db4/ref/am_misc/faq.html -share/doc/db4/ref/am_misc/get_bulk.html -share/doc/db4/ref/am_misc/partial.html -share/doc/db4/ref/am_misc/perm.html -share/doc/db4/ref/am_misc/stability.html -share/doc/db4/ref/am_misc/tune.html -share/doc/db4/ref/arch/apis.html -share/doc/db4/ref/arch/bigpic.gif -share/doc/db4/ref/arch/bigpic.html -share/doc/db4/ref/arch/progmodel.html -share/doc/db4/ref/arch/script.html -share/doc/db4/ref/arch/smallpic.gif -share/doc/db4/ref/arch/utilities.html -share/doc/db4/ref/build_unix/aix.html -share/doc/db4/ref/build_unix/conf.html -share/doc/db4/ref/build_unix/embedix.html -share/doc/db4/ref/build_unix/flags.html -share/doc/db4/ref/build_unix/freebsd.html -share/doc/db4/ref/build_unix/hpux.html -share/doc/db4/ref/build_unix/install.html -share/doc/db4/ref/build_unix/intro.html -share/doc/db4/ref/build_unix/irix.html -share/doc/db4/ref/build_unix/linux.html -share/doc/db4/ref/build_unix/macosx.html -share/doc/db4/ref/build_unix/notes.html -share/doc/db4/ref/build_unix/osf1.html -share/doc/db4/ref/build_unix/qnx.html -share/doc/db4/ref/build_unix/sco.html -share/doc/db4/ref/build_unix/shlib.html -share/doc/db4/ref/build_unix/solaris.html -share/doc/db4/ref/build_unix/sunos.html -share/doc/db4/ref/build_unix/test.html -share/doc/db4/ref/build_unix/ultrix.html -share/doc/db4/ref/build_vxworks/faq.html -share/doc/db4/ref/build_vxworks/intro.html -share/doc/db4/ref/build_vxworks/introae.html -share/doc/db4/ref/build_vxworks/notes.html -share/doc/db4/ref/build_win/faq.html -share/doc/db4/ref/build_win/intro.html -share/doc/db4/ref/build_win/notes.html -share/doc/db4/ref/build_win/test.html -share/doc/db4/ref/cam/intro.html -share/doc/db4/ref/debug/common.html -share/doc/db4/ref/debug/compile.html -share/doc/db4/ref/debug/intro.html -share/doc/db4/ref/debug/printlog.html -share/doc/db4/ref/debug/runtime.html -share/doc/db4/ref/distrib/layout.html -share/doc/db4/ref/dumpload/format.html -share/doc/db4/ref/dumpload/text.html -share/doc/db4/ref/dumpload/utility.html -share/doc/db4/ref/env/create.html -share/doc/db4/ref/env/error.html -share/doc/db4/ref/env/faq.html -share/doc/db4/ref/env/intro.html -share/doc/db4/ref/env/naming.html -share/doc/db4/ref/env/open.html -share/doc/db4/ref/env/region.html -share/doc/db4/ref/env/remote.html -share/doc/db4/ref/env/security.html -share/doc/db4/ref/install/file.html -share/doc/db4/ref/install/magic.s5.be.txt -share/doc/db4/ref/install/magic.s5.le.txt -share/doc/db4/ref/install/magic.txt -share/doc/db4/ref/install/multiple.html -share/doc/db4/ref/install/rpm.html -share/doc/db4/ref/intro/data.html -share/doc/db4/ref/intro/dbis.html -share/doc/db4/ref/intro/dbisnot.html -share/doc/db4/ref/intro/distrib.html -share/doc/db4/ref/intro/need.html -share/doc/db4/ref/intro/products.html -share/doc/db4/ref/intro/terrain.html -share/doc/db4/ref/intro/what.html -share/doc/db4/ref/intro/where.html -share/doc/db4/ref/java/compat.html -share/doc/db4/ref/java/conf.html -share/doc/db4/ref/java/faq.html -share/doc/db4/ref/java/program.html -share/doc/db4/ref/lock/am_conv.html -share/doc/db4/ref/lock/cam_conv.html -share/doc/db4/ref/lock/config.html -share/doc/db4/ref/lock/dead.html -share/doc/db4/ref/lock/intro.html -share/doc/db4/ref/lock/max.html -share/doc/db4/ref/lock/nondb.html -share/doc/db4/ref/lock/notxn.html -share/doc/db4/ref/lock/page.html -share/doc/db4/ref/lock/stdmode.html -share/doc/db4/ref/lock/timeout.html -share/doc/db4/ref/lock/twopl.html -share/doc/db4/ref/log/config.html -share/doc/db4/ref/log/intro.html -share/doc/db4/ref/log/limits.html -share/doc/db4/ref/mp/config.html -share/doc/db4/ref/mp/intro.html -share/doc/db4/ref/perl/intro.html -share/doc/db4/ref/pindex.src -share/doc/db4/ref/program/appsignals.html -share/doc/db4/ref/program/compatible.html -share/doc/db4/ref/program/copy.html -share/doc/db4/ref/program/environ.html -share/doc/db4/ref/program/errorret.html -share/doc/db4/ref/program/extending.html -share/doc/db4/ref/program/mt.html -share/doc/db4/ref/program/namespace.html -share/doc/db4/ref/program/runtime.html -share/doc/db4/ref/program/scope.html -share/doc/db4/ref/program/solaris.txt -share/doc/db4/ref/refs/bdb_usenix.html -share/doc/db4/ref/refs/bdb_usenix.ps -share/doc/db4/ref/refs/embedded.html -share/doc/db4/ref/refs/hash_usenix.ps -share/doc/db4/ref/refs/libtp_usenix.ps -share/doc/db4/ref/refs/refs.html -share/doc/db4/ref/refs/witold.html -share/doc/db4/ref/rep/app.html -share/doc/db4/ref/rep/comm.html -share/doc/db4/ref/rep/elect.html -share/doc/db4/ref/rep/ex.html -share/doc/db4/ref/rep/ex_comm.html -share/doc/db4/ref/rep/ex_rq.html -share/doc/db4/ref/rep/faq.html -share/doc/db4/ref/rep/id.html -share/doc/db4/ref/rep/init.html -share/doc/db4/ref/rep/intro.html -share/doc/db4/ref/rep/logonly.html -share/doc/db4/ref/rep/newsite.html -share/doc/db4/ref/rep/partition.html -share/doc/db4/ref/rep/pri.html -share/doc/db4/ref/rep/trans.html -share/doc/db4/ref/rpc/client.html -share/doc/db4/ref/rpc/intro.html -share/doc/db4/ref/rpc/server.html -share/doc/db4/ref/sendmail/intro.html -share/doc/db4/ref/simple_tut/close.html -share/doc/db4/ref/simple_tut/del.html -share/doc/db4/ref/simple_tut/errors.html -share/doc/db4/ref/simple_tut/example.cs -share/doc/db4/ref/simple_tut/get.html -share/doc/db4/ref/simple_tut/handles.html -share/doc/db4/ref/simple_tut/intro.html -share/doc/db4/ref/simple_tut/keydata.html -share/doc/db4/ref/simple_tut/open.html -share/doc/db4/ref/simple_tut/put.html -share/doc/db4/ref/tcl/error.html -share/doc/db4/ref/tcl/faq.html -share/doc/db4/ref/tcl/intro.html -share/doc/db4/ref/tcl/program.html -share/doc/db4/ref/tcl/using.html -share/doc/db4/ref/test/faq.html -share/doc/db4/ref/test/run.html -share/doc/db4/ref/transapp/admin.html -share/doc/db4/ref/transapp/app.html -share/doc/db4/ref/transapp/archival.html -share/doc/db4/ref/transapp/checkpoint.html -share/doc/db4/ref/transapp/cursor.html -share/doc/db4/ref/transapp/data_open.html -share/doc/db4/ref/transapp/deadlock.html -share/doc/db4/ref/transapp/env_open.html -share/doc/db4/ref/transapp/faq.html -share/doc/db4/ref/transapp/filesys.html -share/doc/db4/ref/transapp/hotfail.html -share/doc/db4/ref/transapp/inc.html -share/doc/db4/ref/transapp/intro.html -share/doc/db4/ref/transapp/logfile.html -share/doc/db4/ref/transapp/nested.html -share/doc/db4/ref/transapp/put.html -share/doc/db4/ref/transapp/read.html -share/doc/db4/ref/transapp/reclimit.html -share/doc/db4/ref/transapp/recovery.html -share/doc/db4/ref/transapp/term.html -share/doc/db4/ref/transapp/throughput.html -share/doc/db4/ref/transapp/transapp.cs -share/doc/db4/ref/transapp/tune.html -share/doc/db4/ref/transapp/why.html -share/doc/db4/ref/transapp/writetest.cs -share/doc/db4/ref/txn/config.html -share/doc/db4/ref/txn/intro.html -share/doc/db4/ref/txn/limits.html -share/doc/db4/ref/txn/other.html -share/doc/db4/ref/upgrade.2.0/convert.html -share/doc/db4/ref/upgrade.2.0/disk.html -share/doc/db4/ref/upgrade.2.0/intro.html -share/doc/db4/ref/upgrade.2.0/system.html -share/doc/db4/ref/upgrade.2.0/toc.html -share/doc/db4/ref/upgrade.3.0/close.html -share/doc/db4/ref/upgrade.3.0/cxx.html -share/doc/db4/ref/upgrade.3.0/db.html -share/doc/db4/ref/upgrade.3.0/db_cxx.html -share/doc/db4/ref/upgrade.3.0/dbenv.html -share/doc/db4/ref/upgrade.3.0/dbenv_cxx.html -share/doc/db4/ref/upgrade.3.0/dbinfo.html -share/doc/db4/ref/upgrade.3.0/disk.html -share/doc/db4/ref/upgrade.3.0/eacces.html -share/doc/db4/ref/upgrade.3.0/eagain.html -share/doc/db4/ref/upgrade.3.0/envopen.html -share/doc/db4/ref/upgrade.3.0/func.html -share/doc/db4/ref/upgrade.3.0/intro.html -share/doc/db4/ref/upgrade.3.0/java.html -share/doc/db4/ref/upgrade.3.0/join.html -share/doc/db4/ref/upgrade.3.0/jump_set.html -share/doc/db4/ref/upgrade.3.0/lock_detect.html -share/doc/db4/ref/upgrade.3.0/lock_notheld.html -share/doc/db4/ref/upgrade.3.0/lock_put.html -share/doc/db4/ref/upgrade.3.0/lock_stat.html -share/doc/db4/ref/upgrade.3.0/log_register.html -share/doc/db4/ref/upgrade.3.0/log_stat.html -share/doc/db4/ref/upgrade.3.0/memp_stat.html -share/doc/db4/ref/upgrade.3.0/open.html -share/doc/db4/ref/upgrade.3.0/rmw.html -share/doc/db4/ref/upgrade.3.0/stat.html -share/doc/db4/ref/upgrade.3.0/toc.html -share/doc/db4/ref/upgrade.3.0/txn_begin.html -share/doc/db4/ref/upgrade.3.0/txn_commit.html -share/doc/db4/ref/upgrade.3.0/txn_stat.html -share/doc/db4/ref/upgrade.3.0/value_set.html -share/doc/db4/ref/upgrade.3.0/xa.html -share/doc/db4/ref/upgrade.3.1/btstat.html -share/doc/db4/ref/upgrade.3.1/config.html -share/doc/db4/ref/upgrade.3.1/disk.html -share/doc/db4/ref/upgrade.3.1/dup.html -share/doc/db4/ref/upgrade.3.1/env.html -share/doc/db4/ref/upgrade.3.1/intro.html -share/doc/db4/ref/upgrade.3.1/log_register.html -share/doc/db4/ref/upgrade.3.1/logalloc.html -share/doc/db4/ref/upgrade.3.1/memp_register.html -share/doc/db4/ref/upgrade.3.1/put.html -share/doc/db4/ref/upgrade.3.1/set_feedback.html -share/doc/db4/ref/upgrade.3.1/set_paniccall.html -share/doc/db4/ref/upgrade.3.1/set_tx_recover.html -share/doc/db4/ref/upgrade.3.1/sysmem.html -share/doc/db4/ref/upgrade.3.1/tcl.html -share/doc/db4/ref/upgrade.3.1/tmp.html -share/doc/db4/ref/upgrade.3.1/toc.html -share/doc/db4/ref/upgrade.3.1/txn_check.html -share/doc/db4/ref/upgrade.3.2/callback.html -share/doc/db4/ref/upgrade.3.2/db_dump.html -share/doc/db4/ref/upgrade.3.2/disk.html -share/doc/db4/ref/upgrade.3.2/handle.html -share/doc/db4/ref/upgrade.3.2/incomplete.html -share/doc/db4/ref/upgrade.3.2/intro.html -share/doc/db4/ref/upgrade.3.2/mutexlock.html -share/doc/db4/ref/upgrade.3.2/notfound.html -share/doc/db4/ref/upgrade.3.2/renumber.html -share/doc/db4/ref/upgrade.3.2/set_flags.html -share/doc/db4/ref/upgrade.3.2/toc.html -share/doc/db4/ref/upgrade.3.2/tx_recover.html -share/doc/db4/ref/upgrade.3.3/alloc.html -share/doc/db4/ref/upgrade.3.3/bigfile.html -share/doc/db4/ref/upgrade.3.3/conflict.html -share/doc/db4/ref/upgrade.3.3/disk.html -share/doc/db4/ref/upgrade.3.3/getswap.html -share/doc/db4/ref/upgrade.3.3/gettype.html -share/doc/db4/ref/upgrade.3.3/intro.html -share/doc/db4/ref/upgrade.3.3/memp_fget.html -share/doc/db4/ref/upgrade.3.3/rpc.html -share/doc/db4/ref/upgrade.3.3/shared.html -share/doc/db4/ref/upgrade.3.3/toc.html -share/doc/db4/ref/upgrade.3.3/txn_prepare.html -share/doc/db4/ref/upgrade.4.0/asr.html -share/doc/db4/ref/upgrade.4.0/cxx.html -share/doc/db4/ref/upgrade.4.0/deadlock.html -share/doc/db4/ref/upgrade.4.0/disk.html -share/doc/db4/ref/upgrade.4.0/env.html -share/doc/db4/ref/upgrade.4.0/intro.html -share/doc/db4/ref/upgrade.4.0/java.html -share/doc/db4/ref/upgrade.4.0/lock.html -share/doc/db4/ref/upgrade.4.0/lock_id_free.html -share/doc/db4/ref/upgrade.4.0/log.html -share/doc/db4/ref/upgrade.4.0/mp.html -share/doc/db4/ref/upgrade.4.0/rpc.html -share/doc/db4/ref/upgrade.4.0/set_lk_max.html -share/doc/db4/ref/upgrade.4.0/toc.html -share/doc/db4/ref/upgrade.4.0/txn.html -share/doc/db4/ref/upgrade/process.html -share/doc/db4/ref/upgrade/version.html -share/doc/db4/ref/xa/build.html -share/doc/db4/ref/xa/faq.html -share/doc/db4/ref/xa/intro.html -share/doc/db4/ref/xa/xa_config.html -share/doc/db4/ref/xa/xa_intro.html -share/doc/db4/reftoc.html -share/doc/db4/sleepycat/contact.html -share/doc/db4/sleepycat/legal.html -share/doc/db4/sleepycat/license.html -share/doc/db4/utility/berkeley_db_svc.html -share/doc/db4/utility/db_archive.html -share/doc/db4/utility/db_checkpoint.html -share/doc/db4/utility/db_deadlock.html -share/doc/db4/utility/db_dump.html -share/doc/db4/utility/db_load.html -share/doc/db4/utility/db_printlog.html -share/doc/db4/utility/db_recover.html -share/doc/db4/utility/db_stat.html -share/doc/db4/utility/db_upgrade.html -share/doc/db4/utility/db_verify.html -share/doc/db4/utility/index.html -@dirrm include/db4 -@dirrm share/doc/db4/ref/am -@dirrm share/doc/db4/ref/am_conf -@dirrm share/doc/db4/ref/am_misc -@dirrm share/doc/db4/ref/arch -@dirrm share/doc/db4/ref/build_unix -@dirrm share/doc/db4/ref/build_vxworks -@dirrm share/doc/db4/ref/build_win -@dirrm share/doc/db4/ref/cam -@dirrm share/doc/db4/ref/debug -@dirrm share/doc/db4/ref/distrib -@dirrm share/doc/db4/ref/dumpload -@dirrm share/doc/db4/ref/env -@dirrm share/doc/db4/ref/install -@dirrm share/doc/db4/ref/intro -@dirrm share/doc/db4/ref/java -@dirrm share/doc/db4/ref/lock -@dirrm share/doc/db4/ref/log -@dirrm share/doc/db4/ref/mp -@dirrm share/doc/db4/ref/perl -@dirrm share/doc/db4/ref/program -@dirrm share/doc/db4/ref/refs -@dirrm share/doc/db4/ref/rep -@dirrm share/doc/db4/ref/rpc -@dirrm share/doc/db4/ref/sendmail -@dirrm share/doc/db4/ref/simple_tut -@dirrm share/doc/db4/ref/splash -@dirrm share/doc/db4/ref/tcl -@dirrm share/doc/db4/ref/test -@dirrm share/doc/db4/ref/transapp -@dirrm share/doc/db4/ref/txn -@dirrm share/doc/db4/ref/upgrade -@dirrm share/doc/db4/ref/upgrade.2.0 -@dirrm share/doc/db4/ref/upgrade.3.0 -@dirrm share/doc/db4/ref/upgrade.3.1 -@dirrm share/doc/db4/ref/upgrade.3.2 -@dirrm share/doc/db4/ref/upgrade.3.3 -@dirrm share/doc/db4/ref/upgrade.4.0 -@dirrm share/doc/db4/ref/xa -@dirrm share/doc/db4/ref -@dirrm share/doc/db4/sleepycat -@dirrm share/doc/db4/api_c -@dirrm share/doc/db4/api_java -@dirrm share/doc/db4/api_cxx -@dirrm share/doc/db4/utility -@dirrm share/doc/db4/api_tcl -@dirrm share/doc/db4/images -@dirrm share/doc/db4 diff --git a/databases/db43/Makefile b/databases/db43/Makefile deleted file mode 100644 index 11c5ca90cae7..000000000000 --- a/databases/db43/Makefile +++ /dev/null @@ -1,42 +0,0 @@ -# ports collection makefile for: Berkeley DB v4 -# Date created: 16 August 2000 -# Whom: Sergey Osokin aka oZZ <ozz@FreeBSD.org.ru> -# -# $FreeBSD$ -# - -PORTNAME= db4 -PORTVERSION= 4.0.14 -#PORTREVISION= 2 -#PORTEPOCH= 1 -CATEGORIES= databases -MASTER_SITES= http://www.sleepycat.com/update/${PORTVERSION}/ -DISTNAME= db-${PORTVERSION} -DIST_SUBDIR= bdb - -MAINTAINER= ozz@FreeBSD.org.ru - -#PATCH_SITES= ${MASTER_SITES} -#PATCHFILES= patch.${PORTVERSION}.1 patch.${PORTVERSION}.2 -#PATCH_DIST_STRIP= -d ${WRKDIR}/${DISTNAME} - -WRKSRC= ${WRKDIR}/${DISTNAME}/build_unix - -INSTALLS_SHLIB= yes -HAS_CONFIGURE= yes -CONFIGURE_SCRIPT= ../dist/configure -CONFIGURE_ARGS= --enable-compat185 \ - --enable-dump185 --enable-cxx \ - --enable-dynamic \ - --prefix=${PREFIX} \ - --includedir=${PREFIX}/include/db4 \ - --target=${ARCH}-unknown-freebsd${OSREL} - -pre-patch: - @${PERL} -pi -e 's|-lpthread|${PTHREAD_LIBS}|g' ${WRKSRC}/${CONFIGURE_SCRIPT} - -post-patch: - @${CHMOD} 755 ${WRKSRC}/${CONFIGURE_SCRIPT} - @${PERL} -pi -e "s|%%LOCALBASE%%|${LOCALBASE}|g" ${WRKSRC}/../dist/configure - -.include <bsd.port.mk> diff --git a/databases/db43/distinfo b/databases/db43/distinfo deleted file mode 100644 index 09f3d6b59aec..000000000000 --- a/databases/db43/distinfo +++ /dev/null @@ -1 +0,0 @@ -MD5 (bdb/db-4.0.14.tar.gz) = 12262c64fcd64b772e7cffad8e4d0ebc diff --git a/databases/db43/files/patch-dist::Makefile.in b/databases/db43/files/patch-dist::Makefile.in deleted file mode 100644 index 136ab161efdc..000000000000 --- a/databases/db43/files/patch-dist::Makefile.in +++ /dev/null @@ -1,135 +0,0 @@ ---- ../dist/Makefile.in.orig Sat Nov 10 01:48:45 2001 -+++ ../dist/Makefile.in Wed Dec 5 13:38:23 2001 -@@ -11,7 +11,7 @@ - bindir= @bindir@ - includedir=@includedir@ - libdir= @libdir@ --docdir= $(prefix)/docs -+docdir= $(prefix)/share/doc/db4 - - dmode= 755 - emode= 555 -@@ -45,6 +45,7 @@ - SOLINK= @MAKEFILE_SOLINK@ - SOFLAGS= @SOFLAGS@ - SOMAJOR= @DB_VERSION_MAJOR@ -+SOMINOR= @DB_VERSION_MINOR@ - SOVERSION= @DB_VERSION_MAJOR@.@DB_VERSION_MINOR@ - - ################################################## -@@ -60,13 +61,13 @@ - LIBS= @LIBS@ - LIBSO_LIBS= @LIBSO_LIBS@ - --libdb= libdb.a --libso_base= libdb --libso= $(libso_base)-$(SOVERSION).@SOSUFFIX@ --libso_static= $(libso_base)-$(SOVERSION).a --libso_target= $(libso_base)-$(SOVERSION).la -+libdb= libdb4.a -+libso_base= libdb4 -+libso= $(libso_base).@SOSUFFIX@ -+libso_static= $(libso_base).a -+libso_target= $(libso_base).la - libso_default= $(libso_base).@SOSUFFIX@ --libso_major= $(libso_base)-$(SOMAJOR).@SOSUFFIX@ -+libso_major= $(libso_base).@SOSUFFIX@.$(SOMINOR) - - ################################################## - # C++ API. -@@ -79,13 +80,13 @@ - XSOLINK= @MAKEFILE_XSOLINK@ - LIBXSO_LIBS= @LIBXSO_LIBS@ - --libcxx= libdb_cxx.a --libxso_base= libdb_cxx --libxso= $(libxso_base)-$(SOVERSION).@SOSUFFIX@ --libxso_static= $(libxso_base)-$(SOVERSION).a --libxso_target= $(libxso_base)-$(SOVERSION).la -+libcxx= libdb4_cxx.a -+libxso_base= libdb4_cxx -+libxso= $(libxso_base).@SOSUFFIX@ -+libxso_static= $(libxso_base).a -+libxso_target= $(libxso_base).la - libxso_default= $(libxso_base).@SOSUFFIX@ --libxso_major= $(libxso_base)-$(SOMAJOR).@SOSUFFIX@ -+libxso_major= $(libxso_base).@SOSUFFIX@.$(SOMINOR) - - ################################################## - # Java API. -@@ -235,8 +236,8 @@ - db_server_proc@o@ db_server_svc@o@ db_server_util@o@ gen_db_server@o@ - - UTIL_PROGS=\ -- @ADDITIONAL_PROGS@ db_archive db_checkpoint db_deadlock \ -- db_dump db_load db_printlog db_recover db_stat db_upgrade db_verify -+ @ADDITIONAL_PROGS@ db4_archive db4_checkpoint db4_deadlock \ -+ db4_dump db4_load db4_printlog db4_recover db4_stat db4_upgrade db4_verify - - ################################################## - # List of files installed into the library directory. -@@ -330,53 +331,53 @@ - $(RPC_SRV_OBJS) util_log@o@ $(DEF_LIB) $(LIBS) - $(POSTLINK) $@ - --db_archive: db_archive@o@ util_sig@o@ $(DEF_LIB) -+db4_archive: db_archive@o@ util_sig@o@ $(DEF_LIB) - $(CCLINK) -o $@ $(LDFLAGS) \ - db_archive@o@ util_sig@o@ $(DEF_LIB) $(LIBS) - $(POSTLINK) $@ - --db_checkpoint: db_checkpoint@o@ util_log@o@ util_sig@o@ $(DEF_LIB) -+db4_checkpoint: db_checkpoint@o@ util_log@o@ util_sig@o@ $(DEF_LIB) - $(CCLINK) -o $@ $(LDFLAGS) \ - db_checkpoint@o@ util_log@o@ util_sig@o@ $(DEF_LIB) $(LIBS) - $(POSTLINK) $@ - --db_deadlock: db_deadlock@o@ util_log@o@ util_sig@o@ $(DEF_LIB) -+db4_deadlock: db_deadlock@o@ util_log@o@ util_sig@o@ $(DEF_LIB) - $(CCLINK) -o $@ $(LDFLAGS) \ - db_deadlock@o@ util_log@o@ util_sig@o@ $(DEF_LIB) $(LIBS) - $(POSTLINK) $@ - --db_dump: db_dump@o@ util_sig@o@ $(DEF_LIB) -+db4_dump: db_dump@o@ util_sig@o@ $(DEF_LIB) - $(CCLINK) -o $@ $(LDFLAGS) db_dump@o@ util_sig@o@ $(DEF_LIB) $(LIBS) - $(POSTLINK) $@ - --db_dump185: db_dump185@o@ @LIBOBJS@ -+db4_dump185: db_dump185@o@ @LIBOBJS@ - $(CCLINK) -o $@ $(LDFLAGS) db_dump185@o@ @LIBOBJS@ $(DB185LIB) - $(POSTLINK) $@ - --db_load: db_load@o@ util_sig@o@ $(DEF_LIB) -+db4_load: db_load@o@ util_sig@o@ $(DEF_LIB) - $(CCLINK) -o $@ $(LDFLAGS) db_load@o@ util_sig@o@ $(DEF_LIB) $(LIBS) - $(POSTLINK) $@ - --db_printlog: db_printlog@o@ util_sig@o@ $(DEF_LIB) -+db4_printlog: db_printlog@o@ util_sig@o@ $(DEF_LIB) - $(CCLINK) -o $@ $(LDFLAGS) \ - db_printlog@o@ util_sig@o@ $(DEF_LIB) $(LIBS) - $(POSTLINK) $@ - --db_recover: db_recover@o@ util_sig@o@ $(DEF_LIB) -+db4_recover: db_recover@o@ util_sig@o@ $(DEF_LIB) - $(CCLINK) -o $@ $(LDFLAGS) \ - db_recover@o@ util_sig@o@ $(DEF_LIB) $(LIBS) - $(POSTLINK) $@ - --db_stat: db_stat@o@ util_sig@o@ $(DEF_LIB) -+db4_stat: db_stat@o@ util_sig@o@ $(DEF_LIB) - $(CCLINK) -o $@ $(LDFLAGS) db_stat@o@ util_sig@o@ $(DEF_LIB) $(LIBS) - $(POSTLINK) $@ - --db_upgrade: db_upgrade@o@ util_sig@o@ $(DEF_LIB) -+db4_upgrade: db_upgrade@o@ util_sig@o@ $(DEF_LIB) - $(CCLINK) -o $@ $(LDFLAGS) \ - db_upgrade@o@ util_sig@o@ $(DEF_LIB) $(LIBS) - $(POSTLINK) $@ - --db_verify: db_verify@o@ util_sig@o@ $(DEF_LIB) -+db4_verify: db_verify@o@ util_sig@o@ $(DEF_LIB) - $(CCLINK) -o $@ $(LDFLAGS) \ - db_verify@o@ util_sig@o@ $(DEF_LIB) $(LIBS) - $(POSTLINK) $@ diff --git a/databases/db43/files/patch-dist::configure b/databases/db43/files/patch-dist::configure deleted file mode 100644 index 4f2ed615df05..000000000000 --- a/databases/db43/files/patch-dist::configure +++ /dev/null @@ -1,24 +0,0 @@ ---- ../dist/configure.orig Wed Dec 5 13:14:02 2001 -+++ ../dist/configure Wed Dec 5 13:24:01 2001 -@@ -8794,10 +8794,10 @@ - INSTALLER="\$(LIBTOOL) --mode=install cp" - - MAKEFILE_CC="\$(LIBTOOL) --mode=compile ${MAKEFILE_CC}" --MAKEFILE_SOLINK="\$(LIBTOOL) --mode=link ${MAKEFILE_CCLINK} -avoid-version" -+MAKEFILE_SOLINK="\$(LIBTOOL) --mode=link ${MAKEFILE_CCLINK} -version-info ${DB_VERSION_MINOR}" - MAKEFILE_CCLINK="\$(LIBTOOL) --mode=link ${MAKEFILE_CCLINK}" - MAKEFILE_CXX="\$(LIBTOOL) --mode=compile ${MAKEFILE_CXX}" --MAKEFILE_XSOLINK="\$(LIBTOOL) --mode=link ${MAKEFILE_CXXLINK} -avoid-version" -+MAKEFILE_XSOLINK="\$(LIBTOOL) --mode=link ${MAKEFILE_CXXLINK} -version-info ${DB_VERSION_MINOR}" - MAKEFILE_CXXLINK="\$(LIBTOOL) --mode=link ${MAKEFILE_CXXLINK}" - - # Configure for shared libraries, static libraries, or both. If both are -@@ -9511,7 +9511,7 @@ - - # Optional utilities. - if test "$db_cv_dump185" = "yes"; then -- ADDITIONAL_PROGS="db_dump185 $ADDITIONAL_PROGS" -+ ADDITIONAL_PROGS="db4_dump185 $ADDITIONAL_PROGS" - fi - - # Checks for system/compiler characteristics. diff --git a/databases/db43/pkg-comment b/databases/db43/pkg-comment deleted file mode 100644 index 0ea96ff89521..000000000000 --- a/databases/db43/pkg-comment +++ /dev/null @@ -1 +0,0 @@ -The Berkeley DB package, revision 4 diff --git a/databases/db43/pkg-descr b/databases/db43/pkg-descr deleted file mode 100644 index a47006d1fdee..000000000000 --- a/databases/db43/pkg-descr +++ /dev/null @@ -1,13 +0,0 @@ -Revision 4 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 v4 -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 6568248aebb3..000000000000 --- a/databases/db43/pkg-plist +++ /dev/null @@ -1,898 +0,0 @@ -bin/db4_archive -bin/db4_checkpoint -bin/db4_deadlock -bin/db4_dump -bin/db4_dump185 -bin/db4_load -bin/db4_printlog -bin/db4_recover -bin/db4_stat -bin/db4_upgrade -bin/db4_verify -include/db4/cxx_common.h -include/db4/cxx_except.h -include/db4/db.h -include/db4/db_185.h -include/db4/db_cxx.h -lib/libdb4.a -lib/libdb4.la -lib/libdb4.so -lib/libdb4.so.0 -lib/libdb4_cxx.a -lib/libdb4_cxx.la -lib/libdb4_cxx.so -lib/libdb4_cxx.so.0 -share/doc/db4/api_c/c_index.html -share/doc/db4/api_c/c_pindex.html -share/doc/db4/api_c/db_associate.html -share/doc/db4/api_c/db_close.html -share/doc/db4/api_c/db_create.html -share/doc/db4/api_c/db_cursor.html -share/doc/db4/api_c/db_del.html -share/doc/db4/api_c/db_err.html -share/doc/db4/api_c/db_fd.html -share/doc/db4/api_c/db_get.html -share/doc/db4/api_c/db_get_byteswapped.html -share/doc/db4/api_c/db_get_type.html -share/doc/db4/api_c/db_join.html -share/doc/db4/api_c/db_key_range.html -share/doc/db4/api_c/db_lsn.html -share/doc/db4/api_c/db_open.html -share/doc/db4/api_c/db_put.html -share/doc/db4/api_c/db_remove.html -share/doc/db4/api_c/db_rename.html -share/doc/db4/api_c/db_set_alloc.html -share/doc/db4/api_c/db_set_append_recno.html -share/doc/db4/api_c/db_set_bt_compare.html -share/doc/db4/api_c/db_set_bt_minkey.html -share/doc/db4/api_c/db_set_bt_prefix.html -share/doc/db4/api_c/db_set_cachesize.html -share/doc/db4/api_c/db_set_dup_compare.html -share/doc/db4/api_c/db_set_errcall.html -share/doc/db4/api_c/db_set_errfile.html -share/doc/db4/api_c/db_set_errpfx.html -share/doc/db4/api_c/db_set_feedback.html -share/doc/db4/api_c/db_set_flags.html -share/doc/db4/api_c/db_set_h_ffactor.html -share/doc/db4/api_c/db_set_h_hash.html -share/doc/db4/api_c/db_set_h_nelem.html -share/doc/db4/api_c/db_set_lorder.html -share/doc/db4/api_c/db_set_pagesize.html -share/doc/db4/api_c/db_set_paniccall.html -share/doc/db4/api_c/db_set_q_extentsize.html -share/doc/db4/api_c/db_set_re_delim.html -share/doc/db4/api_c/db_set_re_len.html -share/doc/db4/api_c/db_set_re_pad.html -share/doc/db4/api_c/db_set_re_source.html -share/doc/db4/api_c/db_stat.html -share/doc/db4/api_c/db_sync.html -share/doc/db4/api_c/db_truncate.html -share/doc/db4/api_c/db_upgrade.html -share/doc/db4/api_c/db_verify.html -share/doc/db4/api_c/dbc_close.html -share/doc/db4/api_c/dbc_count.html -share/doc/db4/api_c/dbc_del.html -share/doc/db4/api_c/dbc_dup.html -share/doc/db4/api_c/dbc_get.html -share/doc/db4/api_c/dbc_put.html -share/doc/db4/api_c/dbm.html -share/doc/db4/api_c/dbt.html -share/doc/db4/api_c/dbt_bulk.html -share/doc/db4/api_c/env_close.html -share/doc/db4/api_c/env_create.html -share/doc/db4/api_c/env_err.html -share/doc/db4/api_c/env_open.html -share/doc/db4/api_c/env_remove.html -share/doc/db4/api_c/env_set_alloc.html -share/doc/db4/api_c/env_set_cachesize.html -share/doc/db4/api_c/env_set_data_dir.html -share/doc/db4/api_c/env_set_errcall.html -share/doc/db4/api_c/env_set_errfile.html -share/doc/db4/api_c/env_set_errpfx.html -share/doc/db4/api_c/env_set_feedback.html -share/doc/db4/api_c/env_set_flags.html -share/doc/db4/api_c/env_set_lg_bsize.html -share/doc/db4/api_c/env_set_lg_dir.html -share/doc/db4/api_c/env_set_lg_max.html -share/doc/db4/api_c/env_set_lg_regionmax.html -share/doc/db4/api_c/env_set_lk_conflicts.html -share/doc/db4/api_c/env_set_lk_detect.html -share/doc/db4/api_c/env_set_lk_max_lockers.html -share/doc/db4/api_c/env_set_lk_max_locks.html -share/doc/db4/api_c/env_set_lk_max_objects.html -share/doc/db4/api_c/env_set_mp_mmapsize.html -share/doc/db4/api_c/env_set_paniccall.html -share/doc/db4/api_c/env_set_rec_init.html -share/doc/db4/api_c/env_set_rpc_server.html -share/doc/db4/api_c/env_set_shm_key.html -share/doc/db4/api_c/env_set_tas_spins.html -share/doc/db4/api_c/env_set_timeout.html -share/doc/db4/api_c/env_set_tmp_dir.html -share/doc/db4/api_c/env_set_tx_max.html -share/doc/db4/api_c/env_set_tx_recover.html -share/doc/db4/api_c/env_set_tx_timestamp.html -share/doc/db4/api_c/env_set_verbose.html -share/doc/db4/api_c/env_strerror.html -share/doc/db4/api_c/env_version.html -share/doc/db4/api_c/hsearch.html -share/doc/db4/api_c/lock_detect.html -share/doc/db4/api_c/lock_get.html -share/doc/db4/api_c/lock_id.html -share/doc/db4/api_c/lock_id_free.html -share/doc/db4/api_c/lock_put.html -share/doc/db4/api_c/lock_stat.html -share/doc/db4/api_c/lock_vec.html -share/doc/db4/api_c/log_archive.html -share/doc/db4/api_c/log_compare.html -share/doc/db4/api_c/log_cursor.html -share/doc/db4/api_c/log_file.html -share/doc/db4/api_c/log_flush.html -share/doc/db4/api_c/log_put.html -share/doc/db4/api_c/log_register.html -share/doc/db4/api_c/log_stat.html -share/doc/db4/api_c/log_unregister.html -share/doc/db4/api_c/logc_close.html -share/doc/db4/api_c/logc_get.html -share/doc/db4/api_c/memp_fclose.html -share/doc/db4/api_c/memp_fcreate.html -share/doc/db4/api_c/memp_fget.html -share/doc/db4/api_c/memp_fopen.html -share/doc/db4/api_c/memp_fput.html -share/doc/db4/api_c/memp_fset.html -share/doc/db4/api_c/memp_fsync.html -share/doc/db4/api_c/memp_register.html -share/doc/db4/api_c/memp_set_clear_len.html -share/doc/db4/api_c/memp_set_fileid.html -share/doc/db4/api_c/memp_set_ftype.html -share/doc/db4/api_c/memp_set_lsn_offset.html -share/doc/db4/api_c/memp_set_pgcookie.html -share/doc/db4/api_c/memp_stat.html -share/doc/db4/api_c/memp_sync.html -share/doc/db4/api_c/memp_trickle.html -share/doc/db4/api_c/pindex.src -share/doc/db4/api_c/rep_elect.html -share/doc/db4/api_c/rep_message.html -share/doc/db4/api_c/rep_start.html -share/doc/db4/api_c/rep_transport.html -share/doc/db4/api_c/set_func_close.html -share/doc/db4/api_c/set_func_dirfree.html -share/doc/db4/api_c/set_func_dirlist.html -share/doc/db4/api_c/set_func_exists.html -share/doc/db4/api_c/set_func_free.html -share/doc/db4/api_c/set_func_fsync.html -share/doc/db4/api_c/set_func_ioinfo.html -share/doc/db4/api_c/set_func_malloc.html -share/doc/db4/api_c/set_func_map.html -share/doc/db4/api_c/set_func_open.html -share/doc/db4/api_c/set_func_read.html -share/doc/db4/api_c/set_func_realloc.html -share/doc/db4/api_c/set_func_rename.html -share/doc/db4/api_c/set_func_seek.html -share/doc/db4/api_c/set_func_sleep.html -share/doc/db4/api_c/set_func_unlink.html -share/doc/db4/api_c/set_func_unmap.html -share/doc/db4/api_c/set_func_write.html -share/doc/db4/api_c/set_func_yield.html -share/doc/db4/api_c/txn_abort.html -share/doc/db4/api_c/txn_begin.html -share/doc/db4/api_c/txn_checkpoint.html -share/doc/db4/api_c/txn_commit.html -share/doc/db4/api_c/txn_discard.html -share/doc/db4/api_c/txn_id.html -share/doc/db4/api_c/txn_prepare.html -share/doc/db4/api_c/txn_recover.html -share/doc/db4/api_c/txn_set_timeout.html -share/doc/db4/api_c/txn_stat.html -share/doc/db4/api_cxx/c_index.html -share/doc/db4/api_cxx/cxx_pindex.html -share/doc/db4/api_cxx/db_associate.html -share/doc/db4/api_cxx/db_class.html -share/doc/db4/api_cxx/db_close.html -share/doc/db4/api_cxx/db_cursor.html -share/doc/db4/api_cxx/db_del.html -share/doc/db4/api_cxx/db_err.html -share/doc/db4/api_cxx/db_fd.html -share/doc/db4/api_cxx/db_get.html -share/doc/db4/api_cxx/db_get_byteswapped.html -share/doc/db4/api_cxx/db_get_type.html -share/doc/db4/api_cxx/db_join.html -share/doc/db4/api_cxx/db_key_range.html -share/doc/db4/api_cxx/db_open.html -share/doc/db4/api_cxx/db_put.html -share/doc/db4/api_cxx/db_remove.html -share/doc/db4/api_cxx/db_rename.html -share/doc/db4/api_cxx/db_set_alloc.html -share/doc/db4/api_cxx/db_set_append_recno.html -share/doc/db4/api_cxx/db_set_bt_compare.html -share/doc/db4/api_cxx/db_set_bt_minkey.html -share/doc/db4/api_cxx/db_set_bt_prefix.html -share/doc/db4/api_cxx/db_set_cachesize.html -share/doc/db4/api_cxx/db_set_dup_compare.html -share/doc/db4/api_cxx/db_set_errcall.html -share/doc/db4/api_cxx/db_set_errfile.html -share/doc/db4/api_cxx/db_set_errpfx.html -share/doc/db4/api_cxx/db_set_feedback.html -share/doc/db4/api_cxx/db_set_flags.html -share/doc/db4/api_cxx/db_set_h_ffactor.html -share/doc/db4/api_cxx/db_set_h_hash.html -share/doc/db4/api_cxx/db_set_h_nelem.html -share/doc/db4/api_cxx/db_set_lorder.html -share/doc/db4/api_cxx/db_set_pagesize.html -share/doc/db4/api_cxx/db_set_paniccall.html -share/doc/db4/api_cxx/db_set_q_extentsize.html -share/doc/db4/api_cxx/db_set_re_delim.html -share/doc/db4/api_cxx/db_set_re_len.html -share/doc/db4/api_cxx/db_set_re_pad.html -share/doc/db4/api_cxx/db_set_re_source.html -share/doc/db4/api_cxx/db_stat.html -share/doc/db4/api_cxx/db_sync.html -share/doc/db4/api_cxx/db_truncate.html -share/doc/db4/api_cxx/db_upgrade.html -share/doc/db4/api_cxx/db_verify.html -share/doc/db4/api_cxx/dbc_class.html -share/doc/db4/api_cxx/dbc_close.html -share/doc/db4/api_cxx/dbc_count.html -share/doc/db4/api_cxx/dbc_del.html -share/doc/db4/api_cxx/dbc_dup.html -share/doc/db4/api_cxx/dbc_get.html -share/doc/db4/api_cxx/dbc_put.html -share/doc/db4/api_cxx/dbenv_class.html -share/doc/db4/api_cxx/dbt_bulk.html -share/doc/db4/api_cxx/dbt_class.html -share/doc/db4/api_cxx/env_close.html -share/doc/db4/api_cxx/env_err.html -share/doc/db4/api_cxx/env_open.html -share/doc/db4/api_cxx/env_remove.html -share/doc/db4/api_cxx/env_set_alloc.html -share/doc/db4/api_cxx/env_set_cachesize.html -share/doc/db4/api_cxx/env_set_data_dir.html -share/doc/db4/api_cxx/env_set_errcall.html -share/doc/db4/api_cxx/env_set_errfile.html -share/doc/db4/api_cxx/env_set_error_stream.html -share/doc/db4/api_cxx/env_set_errpfx.html -share/doc/db4/api_cxx/env_set_feedback.html -share/doc/db4/api_cxx/env_set_flags.html -share/doc/db4/api_cxx/env_set_lg_bsize.html -share/doc/db4/api_cxx/env_set_lg_dir.html -share/doc/db4/api_cxx/env_set_lg_max.html -share/doc/db4/api_cxx/env_set_lg_regionmax.html -share/doc/db4/api_cxx/env_set_lk_conflicts.html -share/doc/db4/api_cxx/env_set_lk_detect.html -share/doc/db4/api_cxx/env_set_lk_max_lockers.html -share/doc/db4/api_cxx/env_set_lk_max_locks.html -share/doc/db4/api_cxx/env_set_lk_max_objects.html -share/doc/db4/api_cxx/env_set_mp_mmapsize.html -share/doc/db4/api_cxx/env_set_paniccall.html -share/doc/db4/api_cxx/env_set_rec_init.html -share/doc/db4/api_cxx/env_set_rpc_server.html -share/doc/db4/api_cxx/env_set_shm_key.html -share/doc/db4/api_cxx/env_set_tas_spins.html -share/doc/db4/api_cxx/env_set_timeout.html -share/doc/db4/api_cxx/env_set_tmp_dir.html -share/doc/db4/api_cxx/env_set_tx_max.html -share/doc/db4/api_cxx/env_set_tx_recover.html -share/doc/db4/api_cxx/env_set_tx_timestamp.html -share/doc/db4/api_cxx/env_set_verbose.html -share/doc/db4/api_cxx/env_strerror.html -share/doc/db4/api_cxx/env_version.html -share/doc/db4/api_cxx/except_class.html -share/doc/db4/api_cxx/get_dbt.html -share/doc/db4/api_cxx/get_errno.html -share/doc/db4/api_cxx/lock_class.html -share/doc/db4/api_cxx/lock_detect.html -share/doc/db4/api_cxx/lock_get.html -share/doc/db4/api_cxx/lock_id.html -share/doc/db4/api_cxx/lock_id_free.html -share/doc/db4/api_cxx/lock_put.html -share/doc/db4/api_cxx/lock_stat.html -share/doc/db4/api_cxx/lock_vec.html -share/doc/db4/api_cxx/log_archive.html -share/doc/db4/api_cxx/log_compare.html -share/doc/db4/api_cxx/log_cursor.html -share/doc/db4/api_cxx/log_file.html -share/doc/db4/api_cxx/log_flush.html -share/doc/db4/api_cxx/log_put.html -share/doc/db4/api_cxx/log_register.html -share/doc/db4/api_cxx/log_stat.html -share/doc/db4/api_cxx/log_unregister.html -share/doc/db4/api_cxx/logc_class.html -share/doc/db4/api_cxx/logc_close.html -share/doc/db4/api_cxx/logc_get.html -share/doc/db4/api_cxx/lsn_class.html -share/doc/db4/api_cxx/mem_class.html -share/doc/db4/api_cxx/memp_fclose.html -share/doc/db4/api_cxx/memp_fcreate.html -share/doc/db4/api_cxx/memp_fget.html -share/doc/db4/api_cxx/memp_fopen.html -share/doc/db4/api_cxx/memp_fput.html -share/doc/db4/api_cxx/memp_fset.html -share/doc/db4/api_cxx/memp_fsync.html -share/doc/db4/api_cxx/memp_register.html -share/doc/db4/api_cxx/memp_set_clear_len.html -share/doc/db4/api_cxx/memp_set_fileid.html -share/doc/db4/api_cxx/memp_set_ftype.html -share/doc/db4/api_cxx/memp_set_lsn_offset.html -share/doc/db4/api_cxx/memp_set_pgcookie.html -share/doc/db4/api_cxx/memp_stat.html -share/doc/db4/api_cxx/memp_sync.html -share/doc/db4/api_cxx/memp_trickle.html -share/doc/db4/api_cxx/mempfile_class.html -share/doc/db4/api_cxx/pindex.src -share/doc/db4/api_cxx/rep_elect.html -share/doc/db4/api_cxx/rep_message.html -share/doc/db4/api_cxx/rep_start.html -share/doc/db4/api_cxx/rep_transport.html -share/doc/db4/api_cxx/txn_abort.html -share/doc/db4/api_cxx/txn_begin.html -share/doc/db4/api_cxx/txn_checkpoint.html -share/doc/db4/api_cxx/txn_class.html -share/doc/db4/api_cxx/txn_commit.html -share/doc/db4/api_cxx/txn_discard.html -share/doc/db4/api_cxx/txn_id.html -share/doc/db4/api_cxx/txn_prepare.html -share/doc/db4/api_cxx/txn_recover.html -share/doc/db4/api_cxx/txn_set_timeout.html -share/doc/db4/api_cxx/txn_stat.html -share/doc/db4/api_cxx/what.html -share/doc/db4/api_java/c_index.html -share/doc/db4/api_java/db_associate.html -share/doc/db4/api_java/db_class.html -share/doc/db4/api_java/db_close.html -share/doc/db4/api_java/db_cursor.html -share/doc/db4/api_java/db_del.html -share/doc/db4/api_java/db_fd.html -share/doc/db4/api_java/db_get.html -share/doc/db4/api_java/db_get_byteswapped.html -share/doc/db4/api_java/db_get_type.html -share/doc/db4/api_java/db_join.html -share/doc/db4/api_java/db_key_range.html -share/doc/db4/api_java/db_open.html -share/doc/db4/api_java/db_put.html -share/doc/db4/api_java/db_remove.html -share/doc/db4/api_java/db_rename.html -share/doc/db4/api_java/db_set_append_recno.html -share/doc/db4/api_java/db_set_bt_compare.html -share/doc/db4/api_java/db_set_bt_minkey.html -share/doc/db4/api_java/db_set_bt_prefix.html -share/doc/db4/api_java/db_set_cachesize.html -share/doc/db4/api_java/db_set_dup_compare.html -share/doc/db4/api_java/db_set_errcall.html -share/doc/db4/api_java/db_set_errpfx.html -share/doc/db4/api_java/db_set_feedback.html -share/doc/db4/api_java/db_set_flags.html -share/doc/db4/api_java/db_set_h_ffactor.html -share/doc/db4/api_java/db_set_h_hash.html -share/doc/db4/api_java/db_set_h_nelem.html -share/doc/db4/api_java/db_set_lorder.html -share/doc/db4/api_java/db_set_pagesize.html -share/doc/db4/api_java/db_set_q_extentsize.html -share/doc/db4/api_java/db_set_re_delim.html -share/doc/db4/api_java/db_set_re_len.html -share/doc/db4/api_java/db_set_re_pad.html -share/doc/db4/api_java/db_set_re_source.html -share/doc/db4/api_java/db_stat.html -share/doc/db4/api_java/db_sync.html -share/doc/db4/api_java/db_truncate.html -share/doc/db4/api_java/db_upgrade.html -share/doc/db4/api_java/db_verify.html -share/doc/db4/api_java/dbc_class.html -share/doc/db4/api_java/dbc_close.html -share/doc/db4/api_java/dbc_count.html -share/doc/db4/api_java/dbc_del.html -share/doc/db4/api_java/dbc_dup.html -share/doc/db4/api_java/dbc_get.html -share/doc/db4/api_java/dbc_put.html -share/doc/db4/api_java/dbenv_class.html -share/doc/db4/api_java/dbt_bulk_class.html -share/doc/db4/api_java/dbt_class.html -share/doc/db4/api_java/deadlock_class.html -share/doc/db4/api_java/env_close.html -share/doc/db4/api_java/env_open.html -share/doc/db4/api_java/env_remove.html -share/doc/db4/api_java/env_set_cachesize.html -share/doc/db4/api_java/env_set_data_dir.html -share/doc/db4/api_java/env_set_errcall.html -share/doc/db4/api_java/env_set_error_stream.html -share/doc/db4/api_java/env_set_errpfx.html -share/doc/db4/api_java/env_set_feedback.html -share/doc/db4/api_java/env_set_flags.html -share/doc/db4/api_java/env_set_lg_bsize.html -share/doc/db4/api_java/env_set_lg_dir.html -share/doc/db4/api_java/env_set_lg_max.html -share/doc/db4/api_java/env_set_lg_regionmax.html -share/doc/db4/api_java/env_set_lk_conflicts.html -share/doc/db4/api_java/env_set_lk_detect.html -share/doc/db4/api_java/env_set_lk_max_lockers.html -share/doc/db4/api_java/env_set_lk_max_locks.html -share/doc/db4/api_java/env_set_lk_max_objects.html -share/doc/db4/api_java/env_set_mp_mmapsize.html -share/doc/db4/api_java/env_set_rec_init.html -share/doc/db4/api_java/env_set_rpc_server.html -share/doc/db4/api_java/env_set_shm_key.html -share/doc/db4/api_java/env_set_tas_spins.html -share/doc/db4/api_java/env_set_timeout.html -share/doc/db4/api_java/env_set_tmp_dir.html -share/doc/db4/api_java/env_set_tx_max.html -share/doc/db4/api_java/env_set_tx_recover.html -share/doc/db4/api_java/env_set_tx_timestamp.html -share/doc/db4/api_java/env_set_verbose.html -share/doc/db4/api_java/env_strerror.html -share/doc/db4/api_java/env_version.html -share/doc/db4/api_java/except_class.html -share/doc/db4/api_java/get_dbt.html -share/doc/db4/api_java/get_errno.html -share/doc/db4/api_java/java_pindex.html -share/doc/db4/api_java/lock_class.html -share/doc/db4/api_java/lock_detect.html -share/doc/db4/api_java/lock_get.html -share/doc/db4/api_java/lock_id.html -share/doc/db4/api_java/lock_id_free.html -share/doc/db4/api_java/lock_put.html -share/doc/db4/api_java/lock_stat.html -share/doc/db4/api_java/lock_vec.html -share/doc/db4/api_java/log_archive.html -share/doc/db4/api_java/log_compare.html -share/doc/db4/api_java/log_cursor.html -share/doc/db4/api_java/log_file.html -share/doc/db4/api_java/log_flush.html -share/doc/db4/api_java/log_put.html -share/doc/db4/api_java/log_register.html -share/doc/db4/api_java/log_stat.html -share/doc/db4/api_java/log_unregister.html -share/doc/db4/api_java/logc_class.html -share/doc/db4/api_java/logc_close.html -share/doc/db4/api_java/logc_get.html -share/doc/db4/api_java/lsn_class.html -share/doc/db4/api_java/mem_class.html -share/doc/db4/api_java/memp_fclose.html -share/doc/db4/api_java/memp_fopen.html -share/doc/db4/api_java/memp_fsync.html -share/doc/db4/api_java/memp_register.html -share/doc/db4/api_java/memp_stat.html -share/doc/db4/api_java/memp_sync.html -share/doc/db4/api_java/memp_trickle.html -share/doc/db4/api_java/pindex.src -share/doc/db4/api_java/rep_elect.html -share/doc/db4/api_java/rep_message.html -share/doc/db4/api_java/rep_start.html -share/doc/db4/api_java/rep_transport.html -share/doc/db4/api_java/runrec_class.html -share/doc/db4/api_java/txn_abort.html -share/doc/db4/api_java/txn_begin.html -share/doc/db4/api_java/txn_checkpoint.html -share/doc/db4/api_java/txn_class.html -share/doc/db4/api_java/txn_commit.html -share/doc/db4/api_java/txn_discard.html -share/doc/db4/api_java/txn_id.html -share/doc/db4/api_java/txn_prepare.html -share/doc/db4/api_java/txn_recover.html -share/doc/db4/api_java/txn_set_timeout.html -share/doc/db4/api_java/txn_stat.html -share/doc/db4/api_tcl/db_close.html -share/doc/db4/api_tcl/db_count.html -share/doc/db4/api_tcl/db_cursor.html -share/doc/db4/api_tcl/db_del.html -share/doc/db4/api_tcl/db_get.html -share/doc/db4/api_tcl/db_get_join.html -share/doc/db4/api_tcl/db_get_type.html -share/doc/db4/api_tcl/db_is_byteswapped.html -share/doc/db4/api_tcl/db_join.html -share/doc/db4/api_tcl/db_open.html -share/doc/db4/api_tcl/db_put.html -share/doc/db4/api_tcl/db_remove.html -share/doc/db4/api_tcl/db_rename.html -share/doc/db4/api_tcl/db_stat.html -share/doc/db4/api_tcl/db_sync.html -share/doc/db4/api_tcl/db_truncate.html -share/doc/db4/api_tcl/dbc_close.html -share/doc/db4/api_tcl/dbc_del.html -share/doc/db4/api_tcl/dbc_dup.html -share/doc/db4/api_tcl/dbc_get.html -share/doc/db4/api_tcl/dbc_put.html -share/doc/db4/api_tcl/env_close.html -share/doc/db4/api_tcl/env_open.html -share/doc/db4/api_tcl/env_remove.html -share/doc/db4/api_tcl/pindex.src -share/doc/db4/api_tcl/tcl_index.html -share/doc/db4/api_tcl/tcl_pindex.html -share/doc/db4/api_tcl/txn.html -share/doc/db4/api_tcl/txn_abort.html -share/doc/db4/api_tcl/txn_commit.html -share/doc/db4/api_tcl/version.html -share/doc/db4/images/api.gif -share/doc/db4/images/next.gif -share/doc/db4/images/prev.gif -share/doc/db4/images/ps.gif -share/doc/db4/images/ref.gif -share/doc/db4/images/sleepycat.gif -share/doc/db4/index.html -share/doc/db4/ref/am/close.html -share/doc/db4/ref/am/count.html -share/doc/db4/ref/am/curclose.html -share/doc/db4/ref/am/curdel.html -share/doc/db4/ref/am/curdup.html -share/doc/db4/ref/am/curget.html -share/doc/db4/ref/am/curput.html -share/doc/db4/ref/am/cursor.html -share/doc/db4/ref/am/delete.html -share/doc/db4/ref/am/get.html -share/doc/db4/ref/am/join.html -share/doc/db4/ref/am/open.html -share/doc/db4/ref/am/opensub.html -share/doc/db4/ref/am/ops.html -share/doc/db4/ref/am/put.html -share/doc/db4/ref/am/second.html -share/doc/db4/ref/am/stat.html -share/doc/db4/ref/am/sync.html -share/doc/db4/ref/am/truncate.html -share/doc/db4/ref/am/upgrade.html -share/doc/db4/ref/am/verify.html -share/doc/db4/ref/am_conf/bt_compare.html -share/doc/db4/ref/am_conf/bt_minkey.html -share/doc/db4/ref/am_conf/bt_prefix.html -share/doc/db4/ref/am_conf/bt_recnum.html -share/doc/db4/ref/am_conf/byteorder.html -share/doc/db4/ref/am_conf/cachesize.html -share/doc/db4/ref/am_conf/dup.html -share/doc/db4/ref/am_conf/extentsize.html -share/doc/db4/ref/am_conf/h_ffactor.html -share/doc/db4/ref/am_conf/h_hash.html -share/doc/db4/ref/am_conf/h_nelem.html -share/doc/db4/ref/am_conf/intro.html -share/doc/db4/ref/am_conf/logrec.html -share/doc/db4/ref/am_conf/malloc.html -share/doc/db4/ref/am_conf/pagesize.html -share/doc/db4/ref/am_conf/re_source.html -share/doc/db4/ref/am_conf/recno.html -share/doc/db4/ref/am_conf/renumber.html -share/doc/db4/ref/am_conf/select.html -share/doc/db4/ref/am_misc/align.html -share/doc/db4/ref/am_misc/dbsizes.html -share/doc/db4/ref/am_misc/diskspace.html -share/doc/db4/ref/am_misc/error.html -share/doc/db4/ref/am_misc/faq.html -share/doc/db4/ref/am_misc/get_bulk.html -share/doc/db4/ref/am_misc/partial.html -share/doc/db4/ref/am_misc/perm.html -share/doc/db4/ref/am_misc/stability.html -share/doc/db4/ref/am_misc/tune.html -share/doc/db4/ref/arch/apis.html -share/doc/db4/ref/arch/bigpic.gif -share/doc/db4/ref/arch/bigpic.html -share/doc/db4/ref/arch/progmodel.html -share/doc/db4/ref/arch/script.html -share/doc/db4/ref/arch/smallpic.gif -share/doc/db4/ref/arch/utilities.html -share/doc/db4/ref/build_unix/aix.html -share/doc/db4/ref/build_unix/conf.html -share/doc/db4/ref/build_unix/embedix.html -share/doc/db4/ref/build_unix/flags.html -share/doc/db4/ref/build_unix/freebsd.html -share/doc/db4/ref/build_unix/hpux.html -share/doc/db4/ref/build_unix/install.html -share/doc/db4/ref/build_unix/intro.html -share/doc/db4/ref/build_unix/irix.html -share/doc/db4/ref/build_unix/linux.html -share/doc/db4/ref/build_unix/macosx.html -share/doc/db4/ref/build_unix/notes.html -share/doc/db4/ref/build_unix/osf1.html -share/doc/db4/ref/build_unix/qnx.html -share/doc/db4/ref/build_unix/sco.html -share/doc/db4/ref/build_unix/shlib.html -share/doc/db4/ref/build_unix/solaris.html -share/doc/db4/ref/build_unix/sunos.html -share/doc/db4/ref/build_unix/test.html -share/doc/db4/ref/build_unix/ultrix.html -share/doc/db4/ref/build_vxworks/faq.html -share/doc/db4/ref/build_vxworks/intro.html -share/doc/db4/ref/build_vxworks/introae.html -share/doc/db4/ref/build_vxworks/notes.html -share/doc/db4/ref/build_win/faq.html -share/doc/db4/ref/build_win/intro.html -share/doc/db4/ref/build_win/notes.html -share/doc/db4/ref/build_win/test.html -share/doc/db4/ref/cam/intro.html -share/doc/db4/ref/debug/common.html -share/doc/db4/ref/debug/compile.html -share/doc/db4/ref/debug/intro.html -share/doc/db4/ref/debug/printlog.html -share/doc/db4/ref/debug/runtime.html -share/doc/db4/ref/distrib/layout.html -share/doc/db4/ref/dumpload/format.html -share/doc/db4/ref/dumpload/text.html -share/doc/db4/ref/dumpload/utility.html -share/doc/db4/ref/env/create.html -share/doc/db4/ref/env/error.html -share/doc/db4/ref/env/faq.html -share/doc/db4/ref/env/intro.html -share/doc/db4/ref/env/naming.html -share/doc/db4/ref/env/open.html -share/doc/db4/ref/env/region.html -share/doc/db4/ref/env/remote.html -share/doc/db4/ref/env/security.html -share/doc/db4/ref/install/file.html -share/doc/db4/ref/install/magic.s5.be.txt -share/doc/db4/ref/install/magic.s5.le.txt -share/doc/db4/ref/install/magic.txt -share/doc/db4/ref/install/multiple.html -share/doc/db4/ref/install/rpm.html -share/doc/db4/ref/intro/data.html -share/doc/db4/ref/intro/dbis.html -share/doc/db4/ref/intro/dbisnot.html -share/doc/db4/ref/intro/distrib.html -share/doc/db4/ref/intro/need.html -share/doc/db4/ref/intro/products.html -share/doc/db4/ref/intro/terrain.html -share/doc/db4/ref/intro/what.html -share/doc/db4/ref/intro/where.html -share/doc/db4/ref/java/compat.html -share/doc/db4/ref/java/conf.html -share/doc/db4/ref/java/faq.html -share/doc/db4/ref/java/program.html -share/doc/db4/ref/lock/am_conv.html -share/doc/db4/ref/lock/cam_conv.html -share/doc/db4/ref/lock/config.html -share/doc/db4/ref/lock/dead.html -share/doc/db4/ref/lock/intro.html -share/doc/db4/ref/lock/max.html -share/doc/db4/ref/lock/nondb.html -share/doc/db4/ref/lock/notxn.html -share/doc/db4/ref/lock/page.html -share/doc/db4/ref/lock/stdmode.html -share/doc/db4/ref/lock/timeout.html -share/doc/db4/ref/lock/twopl.html -share/doc/db4/ref/log/config.html -share/doc/db4/ref/log/intro.html -share/doc/db4/ref/log/limits.html -share/doc/db4/ref/mp/config.html -share/doc/db4/ref/mp/intro.html -share/doc/db4/ref/perl/intro.html -share/doc/db4/ref/pindex.src -share/doc/db4/ref/program/appsignals.html -share/doc/db4/ref/program/compatible.html -share/doc/db4/ref/program/copy.html -share/doc/db4/ref/program/environ.html -share/doc/db4/ref/program/errorret.html -share/doc/db4/ref/program/extending.html -share/doc/db4/ref/program/mt.html -share/doc/db4/ref/program/namespace.html -share/doc/db4/ref/program/runtime.html -share/doc/db4/ref/program/scope.html -share/doc/db4/ref/program/solaris.txt -share/doc/db4/ref/refs/bdb_usenix.html -share/doc/db4/ref/refs/bdb_usenix.ps -share/doc/db4/ref/refs/embedded.html -share/doc/db4/ref/refs/hash_usenix.ps -share/doc/db4/ref/refs/libtp_usenix.ps -share/doc/db4/ref/refs/refs.html -share/doc/db4/ref/refs/witold.html -share/doc/db4/ref/rep/app.html -share/doc/db4/ref/rep/comm.html -share/doc/db4/ref/rep/elect.html -share/doc/db4/ref/rep/ex.html -share/doc/db4/ref/rep/ex_comm.html -share/doc/db4/ref/rep/ex_rq.html -share/doc/db4/ref/rep/faq.html -share/doc/db4/ref/rep/id.html -share/doc/db4/ref/rep/init.html -share/doc/db4/ref/rep/intro.html -share/doc/db4/ref/rep/logonly.html -share/doc/db4/ref/rep/newsite.html -share/doc/db4/ref/rep/partition.html -share/doc/db4/ref/rep/pri.html -share/doc/db4/ref/rep/trans.html -share/doc/db4/ref/rpc/client.html -share/doc/db4/ref/rpc/intro.html -share/doc/db4/ref/rpc/server.html -share/doc/db4/ref/sendmail/intro.html -share/doc/db4/ref/simple_tut/close.html -share/doc/db4/ref/simple_tut/del.html -share/doc/db4/ref/simple_tut/errors.html -share/doc/db4/ref/simple_tut/example.cs -share/doc/db4/ref/simple_tut/get.html -share/doc/db4/ref/simple_tut/handles.html -share/doc/db4/ref/simple_tut/intro.html -share/doc/db4/ref/simple_tut/keydata.html -share/doc/db4/ref/simple_tut/open.html -share/doc/db4/ref/simple_tut/put.html -share/doc/db4/ref/tcl/error.html -share/doc/db4/ref/tcl/faq.html -share/doc/db4/ref/tcl/intro.html -share/doc/db4/ref/tcl/program.html -share/doc/db4/ref/tcl/using.html -share/doc/db4/ref/test/faq.html -share/doc/db4/ref/test/run.html -share/doc/db4/ref/transapp/admin.html -share/doc/db4/ref/transapp/app.html -share/doc/db4/ref/transapp/archival.html -share/doc/db4/ref/transapp/checkpoint.html -share/doc/db4/ref/transapp/cursor.html -share/doc/db4/ref/transapp/data_open.html -share/doc/db4/ref/transapp/deadlock.html -share/doc/db4/ref/transapp/env_open.html -share/doc/db4/ref/transapp/faq.html -share/doc/db4/ref/transapp/filesys.html -share/doc/db4/ref/transapp/hotfail.html -share/doc/db4/ref/transapp/inc.html -share/doc/db4/ref/transapp/intro.html -share/doc/db4/ref/transapp/logfile.html -share/doc/db4/ref/transapp/nested.html -share/doc/db4/ref/transapp/put.html -share/doc/db4/ref/transapp/read.html -share/doc/db4/ref/transapp/reclimit.html -share/doc/db4/ref/transapp/recovery.html -share/doc/db4/ref/transapp/term.html -share/doc/db4/ref/transapp/throughput.html -share/doc/db4/ref/transapp/transapp.cs -share/doc/db4/ref/transapp/tune.html -share/doc/db4/ref/transapp/why.html -share/doc/db4/ref/transapp/writetest.cs -share/doc/db4/ref/txn/config.html -share/doc/db4/ref/txn/intro.html -share/doc/db4/ref/txn/limits.html -share/doc/db4/ref/txn/other.html -share/doc/db4/ref/upgrade.2.0/convert.html -share/doc/db4/ref/upgrade.2.0/disk.html -share/doc/db4/ref/upgrade.2.0/intro.html -share/doc/db4/ref/upgrade.2.0/system.html -share/doc/db4/ref/upgrade.2.0/toc.html -share/doc/db4/ref/upgrade.3.0/close.html -share/doc/db4/ref/upgrade.3.0/cxx.html -share/doc/db4/ref/upgrade.3.0/db.html -share/doc/db4/ref/upgrade.3.0/db_cxx.html -share/doc/db4/ref/upgrade.3.0/dbenv.html -share/doc/db4/ref/upgrade.3.0/dbenv_cxx.html -share/doc/db4/ref/upgrade.3.0/dbinfo.html -share/doc/db4/ref/upgrade.3.0/disk.html -share/doc/db4/ref/upgrade.3.0/eacces.html -share/doc/db4/ref/upgrade.3.0/eagain.html -share/doc/db4/ref/upgrade.3.0/envopen.html -share/doc/db4/ref/upgrade.3.0/func.html -share/doc/db4/ref/upgrade.3.0/intro.html -share/doc/db4/ref/upgrade.3.0/java.html -share/doc/db4/ref/upgrade.3.0/join.html -share/doc/db4/ref/upgrade.3.0/jump_set.html -share/doc/db4/ref/upgrade.3.0/lock_detect.html -share/doc/db4/ref/upgrade.3.0/lock_notheld.html -share/doc/db4/ref/upgrade.3.0/lock_put.html -share/doc/db4/ref/upgrade.3.0/lock_stat.html -share/doc/db4/ref/upgrade.3.0/log_register.html -share/doc/db4/ref/upgrade.3.0/log_stat.html -share/doc/db4/ref/upgrade.3.0/memp_stat.html -share/doc/db4/ref/upgrade.3.0/open.html -share/doc/db4/ref/upgrade.3.0/rmw.html -share/doc/db4/ref/upgrade.3.0/stat.html -share/doc/db4/ref/upgrade.3.0/toc.html -share/doc/db4/ref/upgrade.3.0/txn_begin.html -share/doc/db4/ref/upgrade.3.0/txn_commit.html -share/doc/db4/ref/upgrade.3.0/txn_stat.html -share/doc/db4/ref/upgrade.3.0/value_set.html -share/doc/db4/ref/upgrade.3.0/xa.html -share/doc/db4/ref/upgrade.3.1/btstat.html -share/doc/db4/ref/upgrade.3.1/config.html -share/doc/db4/ref/upgrade.3.1/disk.html -share/doc/db4/ref/upgrade.3.1/dup.html -share/doc/db4/ref/upgrade.3.1/env.html -share/doc/db4/ref/upgrade.3.1/intro.html -share/doc/db4/ref/upgrade.3.1/log_register.html -share/doc/db4/ref/upgrade.3.1/logalloc.html -share/doc/db4/ref/upgrade.3.1/memp_register.html -share/doc/db4/ref/upgrade.3.1/put.html -share/doc/db4/ref/upgrade.3.1/set_feedback.html -share/doc/db4/ref/upgrade.3.1/set_paniccall.html -share/doc/db4/ref/upgrade.3.1/set_tx_recover.html -share/doc/db4/ref/upgrade.3.1/sysmem.html -share/doc/db4/ref/upgrade.3.1/tcl.html -share/doc/db4/ref/upgrade.3.1/tmp.html -share/doc/db4/ref/upgrade.3.1/toc.html -share/doc/db4/ref/upgrade.3.1/txn_check.html -share/doc/db4/ref/upgrade.3.2/callback.html -share/doc/db4/ref/upgrade.3.2/db_dump.html -share/doc/db4/ref/upgrade.3.2/disk.html -share/doc/db4/ref/upgrade.3.2/handle.html -share/doc/db4/ref/upgrade.3.2/incomplete.html -share/doc/db4/ref/upgrade.3.2/intro.html -share/doc/db4/ref/upgrade.3.2/mutexlock.html -share/doc/db4/ref/upgrade.3.2/notfound.html -share/doc/db4/ref/upgrade.3.2/renumber.html -share/doc/db4/ref/upgrade.3.2/set_flags.html -share/doc/db4/ref/upgrade.3.2/toc.html -share/doc/db4/ref/upgrade.3.2/tx_recover.html -share/doc/db4/ref/upgrade.3.3/alloc.html -share/doc/db4/ref/upgrade.3.3/bigfile.html -share/doc/db4/ref/upgrade.3.3/conflict.html -share/doc/db4/ref/upgrade.3.3/disk.html -share/doc/db4/ref/upgrade.3.3/getswap.html -share/doc/db4/ref/upgrade.3.3/gettype.html -share/doc/db4/ref/upgrade.3.3/intro.html -share/doc/db4/ref/upgrade.3.3/memp_fget.html -share/doc/db4/ref/upgrade.3.3/rpc.html -share/doc/db4/ref/upgrade.3.3/shared.html -share/doc/db4/ref/upgrade.3.3/toc.html -share/doc/db4/ref/upgrade.3.3/txn_prepare.html -share/doc/db4/ref/upgrade.4.0/asr.html -share/doc/db4/ref/upgrade.4.0/cxx.html -share/doc/db4/ref/upgrade.4.0/deadlock.html -share/doc/db4/ref/upgrade.4.0/disk.html -share/doc/db4/ref/upgrade.4.0/env.html -share/doc/db4/ref/upgrade.4.0/intro.html -share/doc/db4/ref/upgrade.4.0/java.html -share/doc/db4/ref/upgrade.4.0/lock.html -share/doc/db4/ref/upgrade.4.0/lock_id_free.html -share/doc/db4/ref/upgrade.4.0/log.html -share/doc/db4/ref/upgrade.4.0/mp.html -share/doc/db4/ref/upgrade.4.0/rpc.html -share/doc/db4/ref/upgrade.4.0/set_lk_max.html -share/doc/db4/ref/upgrade.4.0/toc.html -share/doc/db4/ref/upgrade.4.0/txn.html -share/doc/db4/ref/upgrade/process.html -share/doc/db4/ref/upgrade/version.html -share/doc/db4/ref/xa/build.html -share/doc/db4/ref/xa/faq.html -share/doc/db4/ref/xa/intro.html -share/doc/db4/ref/xa/xa_config.html -share/doc/db4/ref/xa/xa_intro.html -share/doc/db4/reftoc.html -share/doc/db4/sleepycat/contact.html -share/doc/db4/sleepycat/legal.html -share/doc/db4/sleepycat/license.html -share/doc/db4/utility/berkeley_db_svc.html -share/doc/db4/utility/db_archive.html -share/doc/db4/utility/db_checkpoint.html -share/doc/db4/utility/db_deadlock.html -share/doc/db4/utility/db_dump.html -share/doc/db4/utility/db_load.html -share/doc/db4/utility/db_printlog.html -share/doc/db4/utility/db_recover.html -share/doc/db4/utility/db_stat.html -share/doc/db4/utility/db_upgrade.html -share/doc/db4/utility/db_verify.html -share/doc/db4/utility/index.html -@dirrm include/db4 -@dirrm share/doc/db4/ref/am -@dirrm share/doc/db4/ref/am_conf -@dirrm share/doc/db4/ref/am_misc -@dirrm share/doc/db4/ref/arch -@dirrm share/doc/db4/ref/build_unix -@dirrm share/doc/db4/ref/build_vxworks -@dirrm share/doc/db4/ref/build_win -@dirrm share/doc/db4/ref/cam -@dirrm share/doc/db4/ref/debug -@dirrm share/doc/db4/ref/distrib -@dirrm share/doc/db4/ref/dumpload -@dirrm share/doc/db4/ref/env -@dirrm share/doc/db4/ref/install -@dirrm share/doc/db4/ref/intro -@dirrm share/doc/db4/ref/java -@dirrm share/doc/db4/ref/lock -@dirrm share/doc/db4/ref/log -@dirrm share/doc/db4/ref/mp -@dirrm share/doc/db4/ref/perl -@dirrm share/doc/db4/ref/program -@dirrm share/doc/db4/ref/refs -@dirrm share/doc/db4/ref/rep -@dirrm share/doc/db4/ref/rpc -@dirrm share/doc/db4/ref/sendmail -@dirrm share/doc/db4/ref/simple_tut -@dirrm share/doc/db4/ref/splash -@dirrm share/doc/db4/ref/tcl -@dirrm share/doc/db4/ref/test -@dirrm share/doc/db4/ref/transapp -@dirrm share/doc/db4/ref/txn -@dirrm share/doc/db4/ref/upgrade -@dirrm share/doc/db4/ref/upgrade.2.0 -@dirrm share/doc/db4/ref/upgrade.3.0 -@dirrm share/doc/db4/ref/upgrade.3.1 -@dirrm share/doc/db4/ref/upgrade.3.2 -@dirrm share/doc/db4/ref/upgrade.3.3 -@dirrm share/doc/db4/ref/upgrade.4.0 -@dirrm share/doc/db4/ref/xa -@dirrm share/doc/db4/ref -@dirrm share/doc/db4/sleepycat -@dirrm share/doc/db4/api_c -@dirrm share/doc/db4/api_java -@dirrm share/doc/db4/api_cxx -@dirrm share/doc/db4/utility -@dirrm share/doc/db4/api_tcl -@dirrm share/doc/db4/images -@dirrm share/doc/db4 diff --git a/databases/db44/Makefile b/databases/db44/Makefile deleted file mode 100644 index 11c5ca90cae7..000000000000 --- a/databases/db44/Makefile +++ /dev/null @@ -1,42 +0,0 @@ -# ports collection makefile for: Berkeley DB v4 -# Date created: 16 August 2000 -# Whom: Sergey Osokin aka oZZ <ozz@FreeBSD.org.ru> -# -# $FreeBSD$ -# - -PORTNAME= db4 -PORTVERSION= 4.0.14 -#PORTREVISION= 2 -#PORTEPOCH= 1 -CATEGORIES= databases -MASTER_SITES= http://www.sleepycat.com/update/${PORTVERSION}/ -DISTNAME= db-${PORTVERSION} -DIST_SUBDIR= bdb - -MAINTAINER= ozz@FreeBSD.org.ru - -#PATCH_SITES= ${MASTER_SITES} -#PATCHFILES= patch.${PORTVERSION}.1 patch.${PORTVERSION}.2 -#PATCH_DIST_STRIP= -d ${WRKDIR}/${DISTNAME} - -WRKSRC= ${WRKDIR}/${DISTNAME}/build_unix - -INSTALLS_SHLIB= yes -HAS_CONFIGURE= yes -CONFIGURE_SCRIPT= ../dist/configure -CONFIGURE_ARGS= --enable-compat185 \ - --enable-dump185 --enable-cxx \ - --enable-dynamic \ - --prefix=${PREFIX} \ - --includedir=${PREFIX}/include/db4 \ - --target=${ARCH}-unknown-freebsd${OSREL} - -pre-patch: - @${PERL} -pi -e 's|-lpthread|${PTHREAD_LIBS}|g' ${WRKSRC}/${CONFIGURE_SCRIPT} - -post-patch: - @${CHMOD} 755 ${WRKSRC}/${CONFIGURE_SCRIPT} - @${PERL} -pi -e "s|%%LOCALBASE%%|${LOCALBASE}|g" ${WRKSRC}/../dist/configure - -.include <bsd.port.mk> diff --git a/databases/db44/distinfo b/databases/db44/distinfo deleted file mode 100644 index 09f3d6b59aec..000000000000 --- a/databases/db44/distinfo +++ /dev/null @@ -1 +0,0 @@ -MD5 (bdb/db-4.0.14.tar.gz) = 12262c64fcd64b772e7cffad8e4d0ebc diff --git a/databases/db44/files/patch-dist::Makefile.in b/databases/db44/files/patch-dist::Makefile.in deleted file mode 100644 index 136ab161efdc..000000000000 --- a/databases/db44/files/patch-dist::Makefile.in +++ /dev/null @@ -1,135 +0,0 @@ ---- ../dist/Makefile.in.orig Sat Nov 10 01:48:45 2001 -+++ ../dist/Makefile.in Wed Dec 5 13:38:23 2001 -@@ -11,7 +11,7 @@ - bindir= @bindir@ - includedir=@includedir@ - libdir= @libdir@ --docdir= $(prefix)/docs -+docdir= $(prefix)/share/doc/db4 - - dmode= 755 - emode= 555 -@@ -45,6 +45,7 @@ - SOLINK= @MAKEFILE_SOLINK@ - SOFLAGS= @SOFLAGS@ - SOMAJOR= @DB_VERSION_MAJOR@ -+SOMINOR= @DB_VERSION_MINOR@ - SOVERSION= @DB_VERSION_MAJOR@.@DB_VERSION_MINOR@ - - ################################################## -@@ -60,13 +61,13 @@ - LIBS= @LIBS@ - LIBSO_LIBS= @LIBSO_LIBS@ - --libdb= libdb.a --libso_base= libdb --libso= $(libso_base)-$(SOVERSION).@SOSUFFIX@ --libso_static= $(libso_base)-$(SOVERSION).a --libso_target= $(libso_base)-$(SOVERSION).la -+libdb= libdb4.a -+libso_base= libdb4 -+libso= $(libso_base).@SOSUFFIX@ -+libso_static= $(libso_base).a -+libso_target= $(libso_base).la - libso_default= $(libso_base).@SOSUFFIX@ --libso_major= $(libso_base)-$(SOMAJOR).@SOSUFFIX@ -+libso_major= $(libso_base).@SOSUFFIX@.$(SOMINOR) - - ################################################## - # C++ API. -@@ -79,13 +80,13 @@ - XSOLINK= @MAKEFILE_XSOLINK@ - LIBXSO_LIBS= @LIBXSO_LIBS@ - --libcxx= libdb_cxx.a --libxso_base= libdb_cxx --libxso= $(libxso_base)-$(SOVERSION).@SOSUFFIX@ --libxso_static= $(libxso_base)-$(SOVERSION).a --libxso_target= $(libxso_base)-$(SOVERSION).la -+libcxx= libdb4_cxx.a -+libxso_base= libdb4_cxx -+libxso= $(libxso_base).@SOSUFFIX@ -+libxso_static= $(libxso_base).a -+libxso_target= $(libxso_base).la - libxso_default= $(libxso_base).@SOSUFFIX@ --libxso_major= $(libxso_base)-$(SOMAJOR).@SOSUFFIX@ -+libxso_major= $(libxso_base).@SOSUFFIX@.$(SOMINOR) - - ################################################## - # Java API. -@@ -235,8 +236,8 @@ - db_server_proc@o@ db_server_svc@o@ db_server_util@o@ gen_db_server@o@ - - UTIL_PROGS=\ -- @ADDITIONAL_PROGS@ db_archive db_checkpoint db_deadlock \ -- db_dump db_load db_printlog db_recover db_stat db_upgrade db_verify -+ @ADDITIONAL_PROGS@ db4_archive db4_checkpoint db4_deadlock \ -+ db4_dump db4_load db4_printlog db4_recover db4_stat db4_upgrade db4_verify - - ################################################## - # List of files installed into the library directory. -@@ -330,53 +331,53 @@ - $(RPC_SRV_OBJS) util_log@o@ $(DEF_LIB) $(LIBS) - $(POSTLINK) $@ - --db_archive: db_archive@o@ util_sig@o@ $(DEF_LIB) -+db4_archive: db_archive@o@ util_sig@o@ $(DEF_LIB) - $(CCLINK) -o $@ $(LDFLAGS) \ - db_archive@o@ util_sig@o@ $(DEF_LIB) $(LIBS) - $(POSTLINK) $@ - --db_checkpoint: db_checkpoint@o@ util_log@o@ util_sig@o@ $(DEF_LIB) -+db4_checkpoint: db_checkpoint@o@ util_log@o@ util_sig@o@ $(DEF_LIB) - $(CCLINK) -o $@ $(LDFLAGS) \ - db_checkpoint@o@ util_log@o@ util_sig@o@ $(DEF_LIB) $(LIBS) - $(POSTLINK) $@ - --db_deadlock: db_deadlock@o@ util_log@o@ util_sig@o@ $(DEF_LIB) -+db4_deadlock: db_deadlock@o@ util_log@o@ util_sig@o@ $(DEF_LIB) - $(CCLINK) -o $@ $(LDFLAGS) \ - db_deadlock@o@ util_log@o@ util_sig@o@ $(DEF_LIB) $(LIBS) - $(POSTLINK) $@ - --db_dump: db_dump@o@ util_sig@o@ $(DEF_LIB) -+db4_dump: db_dump@o@ util_sig@o@ $(DEF_LIB) - $(CCLINK) -o $@ $(LDFLAGS) db_dump@o@ util_sig@o@ $(DEF_LIB) $(LIBS) - $(POSTLINK) $@ - --db_dump185: db_dump185@o@ @LIBOBJS@ -+db4_dump185: db_dump185@o@ @LIBOBJS@ - $(CCLINK) -o $@ $(LDFLAGS) db_dump185@o@ @LIBOBJS@ $(DB185LIB) - $(POSTLINK) $@ - --db_load: db_load@o@ util_sig@o@ $(DEF_LIB) -+db4_load: db_load@o@ util_sig@o@ $(DEF_LIB) - $(CCLINK) -o $@ $(LDFLAGS) db_load@o@ util_sig@o@ $(DEF_LIB) $(LIBS) - $(POSTLINK) $@ - --db_printlog: db_printlog@o@ util_sig@o@ $(DEF_LIB) -+db4_printlog: db_printlog@o@ util_sig@o@ $(DEF_LIB) - $(CCLINK) -o $@ $(LDFLAGS) \ - db_printlog@o@ util_sig@o@ $(DEF_LIB) $(LIBS) - $(POSTLINK) $@ - --db_recover: db_recover@o@ util_sig@o@ $(DEF_LIB) -+db4_recover: db_recover@o@ util_sig@o@ $(DEF_LIB) - $(CCLINK) -o $@ $(LDFLAGS) \ - db_recover@o@ util_sig@o@ $(DEF_LIB) $(LIBS) - $(POSTLINK) $@ - --db_stat: db_stat@o@ util_sig@o@ $(DEF_LIB) -+db4_stat: db_stat@o@ util_sig@o@ $(DEF_LIB) - $(CCLINK) -o $@ $(LDFLAGS) db_stat@o@ util_sig@o@ $(DEF_LIB) $(LIBS) - $(POSTLINK) $@ - --db_upgrade: db_upgrade@o@ util_sig@o@ $(DEF_LIB) -+db4_upgrade: db_upgrade@o@ util_sig@o@ $(DEF_LIB) - $(CCLINK) -o $@ $(LDFLAGS) \ - db_upgrade@o@ util_sig@o@ $(DEF_LIB) $(LIBS) - $(POSTLINK) $@ - --db_verify: db_verify@o@ util_sig@o@ $(DEF_LIB) -+db4_verify: db_verify@o@ util_sig@o@ $(DEF_LIB) - $(CCLINK) -o $@ $(LDFLAGS) \ - db_verify@o@ util_sig@o@ $(DEF_LIB) $(LIBS) - $(POSTLINK) $@ diff --git a/databases/db44/files/patch-dist::configure b/databases/db44/files/patch-dist::configure deleted file mode 100644 index 4f2ed615df05..000000000000 --- a/databases/db44/files/patch-dist::configure +++ /dev/null @@ -1,24 +0,0 @@ ---- ../dist/configure.orig Wed Dec 5 13:14:02 2001 -+++ ../dist/configure Wed Dec 5 13:24:01 2001 -@@ -8794,10 +8794,10 @@ - INSTALLER="\$(LIBTOOL) --mode=install cp" - - MAKEFILE_CC="\$(LIBTOOL) --mode=compile ${MAKEFILE_CC}" --MAKEFILE_SOLINK="\$(LIBTOOL) --mode=link ${MAKEFILE_CCLINK} -avoid-version" -+MAKEFILE_SOLINK="\$(LIBTOOL) --mode=link ${MAKEFILE_CCLINK} -version-info ${DB_VERSION_MINOR}" - MAKEFILE_CCLINK="\$(LIBTOOL) --mode=link ${MAKEFILE_CCLINK}" - MAKEFILE_CXX="\$(LIBTOOL) --mode=compile ${MAKEFILE_CXX}" --MAKEFILE_XSOLINK="\$(LIBTOOL) --mode=link ${MAKEFILE_CXXLINK} -avoid-version" -+MAKEFILE_XSOLINK="\$(LIBTOOL) --mode=link ${MAKEFILE_CXXLINK} -version-info ${DB_VERSION_MINOR}" - MAKEFILE_CXXLINK="\$(LIBTOOL) --mode=link ${MAKEFILE_CXXLINK}" - - # Configure for shared libraries, static libraries, or both. If both are -@@ -9511,7 +9511,7 @@ - - # Optional utilities. - if test "$db_cv_dump185" = "yes"; then -- ADDITIONAL_PROGS="db_dump185 $ADDITIONAL_PROGS" -+ ADDITIONAL_PROGS="db4_dump185 $ADDITIONAL_PROGS" - fi - - # Checks for system/compiler characteristics. diff --git a/databases/db44/pkg-comment b/databases/db44/pkg-comment deleted file mode 100644 index 0ea96ff89521..000000000000 --- a/databases/db44/pkg-comment +++ /dev/null @@ -1 +0,0 @@ -The Berkeley DB package, revision 4 diff --git a/databases/db44/pkg-descr b/databases/db44/pkg-descr deleted file mode 100644 index a47006d1fdee..000000000000 --- a/databases/db44/pkg-descr +++ /dev/null @@ -1,13 +0,0 @@ -Revision 4 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 v4 -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 6568248aebb3..000000000000 --- a/databases/db44/pkg-plist +++ /dev/null @@ -1,898 +0,0 @@ -bin/db4_archive -bin/db4_checkpoint -bin/db4_deadlock -bin/db4_dump -bin/db4_dump185 -bin/db4_load -bin/db4_printlog -bin/db4_recover -bin/db4_stat -bin/db4_upgrade -bin/db4_verify -include/db4/cxx_common.h -include/db4/cxx_except.h -include/db4/db.h -include/db4/db_185.h -include/db4/db_cxx.h -lib/libdb4.a -lib/libdb4.la -lib/libdb4.so -lib/libdb4.so.0 -lib/libdb4_cxx.a -lib/libdb4_cxx.la -lib/libdb4_cxx.so -lib/libdb4_cxx.so.0 -share/doc/db4/api_c/c_index.html -share/doc/db4/api_c/c_pindex.html -share/doc/db4/api_c/db_associate.html -share/doc/db4/api_c/db_close.html -share/doc/db4/api_c/db_create.html -share/doc/db4/api_c/db_cursor.html -share/doc/db4/api_c/db_del.html -share/doc/db4/api_c/db_err.html -share/doc/db4/api_c/db_fd.html -share/doc/db4/api_c/db_get.html -share/doc/db4/api_c/db_get_byteswapped.html -share/doc/db4/api_c/db_get_type.html -share/doc/db4/api_c/db_join.html -share/doc/db4/api_c/db_key_range.html -share/doc/db4/api_c/db_lsn.html -share/doc/db4/api_c/db_open.html -share/doc/db4/api_c/db_put.html -share/doc/db4/api_c/db_remove.html -share/doc/db4/api_c/db_rename.html -share/doc/db4/api_c/db_set_alloc.html -share/doc/db4/api_c/db_set_append_recno.html -share/doc/db4/api_c/db_set_bt_compare.html -share/doc/db4/api_c/db_set_bt_minkey.html -share/doc/db4/api_c/db_set_bt_prefix.html -share/doc/db4/api_c/db_set_cachesize.html -share/doc/db4/api_c/db_set_dup_compare.html -share/doc/db4/api_c/db_set_errcall.html -share/doc/db4/api_c/db_set_errfile.html -share/doc/db4/api_c/db_set_errpfx.html -share/doc/db4/api_c/db_set_feedback.html -share/doc/db4/api_c/db_set_flags.html -share/doc/db4/api_c/db_set_h_ffactor.html -share/doc/db4/api_c/db_set_h_hash.html -share/doc/db4/api_c/db_set_h_nelem.html -share/doc/db4/api_c/db_set_lorder.html -share/doc/db4/api_c/db_set_pagesize.html -share/doc/db4/api_c/db_set_paniccall.html -share/doc/db4/api_c/db_set_q_extentsize.html -share/doc/db4/api_c/db_set_re_delim.html -share/doc/db4/api_c/db_set_re_len.html -share/doc/db4/api_c/db_set_re_pad.html -share/doc/db4/api_c/db_set_re_source.html -share/doc/db4/api_c/db_stat.html -share/doc/db4/api_c/db_sync.html -share/doc/db4/api_c/db_truncate.html -share/doc/db4/api_c/db_upgrade.html -share/doc/db4/api_c/db_verify.html -share/doc/db4/api_c/dbc_close.html -share/doc/db4/api_c/dbc_count.html -share/doc/db4/api_c/dbc_del.html -share/doc/db4/api_c/dbc_dup.html -share/doc/db4/api_c/dbc_get.html -share/doc/db4/api_c/dbc_put.html -share/doc/db4/api_c/dbm.html -share/doc/db4/api_c/dbt.html -share/doc/db4/api_c/dbt_bulk.html -share/doc/db4/api_c/env_close.html -share/doc/db4/api_c/env_create.html -share/doc/db4/api_c/env_err.html -share/doc/db4/api_c/env_open.html -share/doc/db4/api_c/env_remove.html -share/doc/db4/api_c/env_set_alloc.html -share/doc/db4/api_c/env_set_cachesize.html -share/doc/db4/api_c/env_set_data_dir.html -share/doc/db4/api_c/env_set_errcall.html -share/doc/db4/api_c/env_set_errfile.html -share/doc/db4/api_c/env_set_errpfx.html -share/doc/db4/api_c/env_set_feedback.html -share/doc/db4/api_c/env_set_flags.html -share/doc/db4/api_c/env_set_lg_bsize.html -share/doc/db4/api_c/env_set_lg_dir.html -share/doc/db4/api_c/env_set_lg_max.html -share/doc/db4/api_c/env_set_lg_regionmax.html -share/doc/db4/api_c/env_set_lk_conflicts.html -share/doc/db4/api_c/env_set_lk_detect.html -share/doc/db4/api_c/env_set_lk_max_lockers.html -share/doc/db4/api_c/env_set_lk_max_locks.html -share/doc/db4/api_c/env_set_lk_max_objects.html -share/doc/db4/api_c/env_set_mp_mmapsize.html -share/doc/db4/api_c/env_set_paniccall.html -share/doc/db4/api_c/env_set_rec_init.html -share/doc/db4/api_c/env_set_rpc_server.html -share/doc/db4/api_c/env_set_shm_key.html -share/doc/db4/api_c/env_set_tas_spins.html -share/doc/db4/api_c/env_set_timeout.html -share/doc/db4/api_c/env_set_tmp_dir.html -share/doc/db4/api_c/env_set_tx_max.html -share/doc/db4/api_c/env_set_tx_recover.html -share/doc/db4/api_c/env_set_tx_timestamp.html -share/doc/db4/api_c/env_set_verbose.html -share/doc/db4/api_c/env_strerror.html -share/doc/db4/api_c/env_version.html -share/doc/db4/api_c/hsearch.html -share/doc/db4/api_c/lock_detect.html -share/doc/db4/api_c/lock_get.html -share/doc/db4/api_c/lock_id.html -share/doc/db4/api_c/lock_id_free.html -share/doc/db4/api_c/lock_put.html -share/doc/db4/api_c/lock_stat.html -share/doc/db4/api_c/lock_vec.html -share/doc/db4/api_c/log_archive.html -share/doc/db4/api_c/log_compare.html -share/doc/db4/api_c/log_cursor.html -share/doc/db4/api_c/log_file.html -share/doc/db4/api_c/log_flush.html -share/doc/db4/api_c/log_put.html -share/doc/db4/api_c/log_register.html -share/doc/db4/api_c/log_stat.html -share/doc/db4/api_c/log_unregister.html -share/doc/db4/api_c/logc_close.html -share/doc/db4/api_c/logc_get.html -share/doc/db4/api_c/memp_fclose.html -share/doc/db4/api_c/memp_fcreate.html -share/doc/db4/api_c/memp_fget.html -share/doc/db4/api_c/memp_fopen.html -share/doc/db4/api_c/memp_fput.html -share/doc/db4/api_c/memp_fset.html -share/doc/db4/api_c/memp_fsync.html -share/doc/db4/api_c/memp_register.html -share/doc/db4/api_c/memp_set_clear_len.html -share/doc/db4/api_c/memp_set_fileid.html -share/doc/db4/api_c/memp_set_ftype.html -share/doc/db4/api_c/memp_set_lsn_offset.html -share/doc/db4/api_c/memp_set_pgcookie.html -share/doc/db4/api_c/memp_stat.html -share/doc/db4/api_c/memp_sync.html -share/doc/db4/api_c/memp_trickle.html -share/doc/db4/api_c/pindex.src -share/doc/db4/api_c/rep_elect.html -share/doc/db4/api_c/rep_message.html -share/doc/db4/api_c/rep_start.html -share/doc/db4/api_c/rep_transport.html -share/doc/db4/api_c/set_func_close.html -share/doc/db4/api_c/set_func_dirfree.html -share/doc/db4/api_c/set_func_dirlist.html -share/doc/db4/api_c/set_func_exists.html -share/doc/db4/api_c/set_func_free.html -share/doc/db4/api_c/set_func_fsync.html -share/doc/db4/api_c/set_func_ioinfo.html -share/doc/db4/api_c/set_func_malloc.html -share/doc/db4/api_c/set_func_map.html -share/doc/db4/api_c/set_func_open.html -share/doc/db4/api_c/set_func_read.html -share/doc/db4/api_c/set_func_realloc.html -share/doc/db4/api_c/set_func_rename.html -share/doc/db4/api_c/set_func_seek.html -share/doc/db4/api_c/set_func_sleep.html -share/doc/db4/api_c/set_func_unlink.html -share/doc/db4/api_c/set_func_unmap.html -share/doc/db4/api_c/set_func_write.html -share/doc/db4/api_c/set_func_yield.html -share/doc/db4/api_c/txn_abort.html -share/doc/db4/api_c/txn_begin.html -share/doc/db4/api_c/txn_checkpoint.html -share/doc/db4/api_c/txn_commit.html -share/doc/db4/api_c/txn_discard.html -share/doc/db4/api_c/txn_id.html -share/doc/db4/api_c/txn_prepare.html -share/doc/db4/api_c/txn_recover.html -share/doc/db4/api_c/txn_set_timeout.html -share/doc/db4/api_c/txn_stat.html -share/doc/db4/api_cxx/c_index.html -share/doc/db4/api_cxx/cxx_pindex.html -share/doc/db4/api_cxx/db_associate.html -share/doc/db4/api_cxx/db_class.html -share/doc/db4/api_cxx/db_close.html -share/doc/db4/api_cxx/db_cursor.html -share/doc/db4/api_cxx/db_del.html -share/doc/db4/api_cxx/db_err.html -share/doc/db4/api_cxx/db_fd.html -share/doc/db4/api_cxx/db_get.html -share/doc/db4/api_cxx/db_get_byteswapped.html -share/doc/db4/api_cxx/db_get_type.html -share/doc/db4/api_cxx/db_join.html -share/doc/db4/api_cxx/db_key_range.html -share/doc/db4/api_cxx/db_open.html -share/doc/db4/api_cxx/db_put.html -share/doc/db4/api_cxx/db_remove.html -share/doc/db4/api_cxx/db_rename.html -share/doc/db4/api_cxx/db_set_alloc.html -share/doc/db4/api_cxx/db_set_append_recno.html -share/doc/db4/api_cxx/db_set_bt_compare.html -share/doc/db4/api_cxx/db_set_bt_minkey.html -share/doc/db4/api_cxx/db_set_bt_prefix.html -share/doc/db4/api_cxx/db_set_cachesize.html -share/doc/db4/api_cxx/db_set_dup_compare.html -share/doc/db4/api_cxx/db_set_errcall.html -share/doc/db4/api_cxx/db_set_errfile.html -share/doc/db4/api_cxx/db_set_errpfx.html -share/doc/db4/api_cxx/db_set_feedback.html -share/doc/db4/api_cxx/db_set_flags.html -share/doc/db4/api_cxx/db_set_h_ffactor.html -share/doc/db4/api_cxx/db_set_h_hash.html -share/doc/db4/api_cxx/db_set_h_nelem.html -share/doc/db4/api_cxx/db_set_lorder.html -share/doc/db4/api_cxx/db_set_pagesize.html -share/doc/db4/api_cxx/db_set_paniccall.html -share/doc/db4/api_cxx/db_set_q_extentsize.html -share/doc/db4/api_cxx/db_set_re_delim.html -share/doc/db4/api_cxx/db_set_re_len.html -share/doc/db4/api_cxx/db_set_re_pad.html -share/doc/db4/api_cxx/db_set_re_source.html -share/doc/db4/api_cxx/db_stat.html -share/doc/db4/api_cxx/db_sync.html -share/doc/db4/api_cxx/db_truncate.html -share/doc/db4/api_cxx/db_upgrade.html -share/doc/db4/api_cxx/db_verify.html -share/doc/db4/api_cxx/dbc_class.html -share/doc/db4/api_cxx/dbc_close.html -share/doc/db4/api_cxx/dbc_count.html -share/doc/db4/api_cxx/dbc_del.html -share/doc/db4/api_cxx/dbc_dup.html -share/doc/db4/api_cxx/dbc_get.html -share/doc/db4/api_cxx/dbc_put.html -share/doc/db4/api_cxx/dbenv_class.html -share/doc/db4/api_cxx/dbt_bulk.html -share/doc/db4/api_cxx/dbt_class.html -share/doc/db4/api_cxx/env_close.html -share/doc/db4/api_cxx/env_err.html -share/doc/db4/api_cxx/env_open.html -share/doc/db4/api_cxx/env_remove.html -share/doc/db4/api_cxx/env_set_alloc.html -share/doc/db4/api_cxx/env_set_cachesize.html -share/doc/db4/api_cxx/env_set_data_dir.html -share/doc/db4/api_cxx/env_set_errcall.html -share/doc/db4/api_cxx/env_set_errfile.html -share/doc/db4/api_cxx/env_set_error_stream.html -share/doc/db4/api_cxx/env_set_errpfx.html -share/doc/db4/api_cxx/env_set_feedback.html -share/doc/db4/api_cxx/env_set_flags.html -share/doc/db4/api_cxx/env_set_lg_bsize.html -share/doc/db4/api_cxx/env_set_lg_dir.html -share/doc/db4/api_cxx/env_set_lg_max.html -share/doc/db4/api_cxx/env_set_lg_regionmax.html -share/doc/db4/api_cxx/env_set_lk_conflicts.html -share/doc/db4/api_cxx/env_set_lk_detect.html -share/doc/db4/api_cxx/env_set_lk_max_lockers.html -share/doc/db4/api_cxx/env_set_lk_max_locks.html -share/doc/db4/api_cxx/env_set_lk_max_objects.html -share/doc/db4/api_cxx/env_set_mp_mmapsize.html -share/doc/db4/api_cxx/env_set_paniccall.html -share/doc/db4/api_cxx/env_set_rec_init.html -share/doc/db4/api_cxx/env_set_rpc_server.html -share/doc/db4/api_cxx/env_set_shm_key.html -share/doc/db4/api_cxx/env_set_tas_spins.html -share/doc/db4/api_cxx/env_set_timeout.html -share/doc/db4/api_cxx/env_set_tmp_dir.html -share/doc/db4/api_cxx/env_set_tx_max.html -share/doc/db4/api_cxx/env_set_tx_recover.html -share/doc/db4/api_cxx/env_set_tx_timestamp.html -share/doc/db4/api_cxx/env_set_verbose.html -share/doc/db4/api_cxx/env_strerror.html -share/doc/db4/api_cxx/env_version.html -share/doc/db4/api_cxx/except_class.html -share/doc/db4/api_cxx/get_dbt.html -share/doc/db4/api_cxx/get_errno.html -share/doc/db4/api_cxx/lock_class.html -share/doc/db4/api_cxx/lock_detect.html -share/doc/db4/api_cxx/lock_get.html -share/doc/db4/api_cxx/lock_id.html -share/doc/db4/api_cxx/lock_id_free.html -share/doc/db4/api_cxx/lock_put.html -share/doc/db4/api_cxx/lock_stat.html -share/doc/db4/api_cxx/lock_vec.html -share/doc/db4/api_cxx/log_archive.html -share/doc/db4/api_cxx/log_compare.html -share/doc/db4/api_cxx/log_cursor.html -share/doc/db4/api_cxx/log_file.html -share/doc/db4/api_cxx/log_flush.html -share/doc/db4/api_cxx/log_put.html -share/doc/db4/api_cxx/log_register.html -share/doc/db4/api_cxx/log_stat.html -share/doc/db4/api_cxx/log_unregister.html -share/doc/db4/api_cxx/logc_class.html -share/doc/db4/api_cxx/logc_close.html -share/doc/db4/api_cxx/logc_get.html -share/doc/db4/api_cxx/lsn_class.html -share/doc/db4/api_cxx/mem_class.html -share/doc/db4/api_cxx/memp_fclose.html -share/doc/db4/api_cxx/memp_fcreate.html -share/doc/db4/api_cxx/memp_fget.html -share/doc/db4/api_cxx/memp_fopen.html -share/doc/db4/api_cxx/memp_fput.html -share/doc/db4/api_cxx/memp_fset.html -share/doc/db4/api_cxx/memp_fsync.html -share/doc/db4/api_cxx/memp_register.html -share/doc/db4/api_cxx/memp_set_clear_len.html -share/doc/db4/api_cxx/memp_set_fileid.html -share/doc/db4/api_cxx/memp_set_ftype.html -share/doc/db4/api_cxx/memp_set_lsn_offset.html -share/doc/db4/api_cxx/memp_set_pgcookie.html -share/doc/db4/api_cxx/memp_stat.html -share/doc/db4/api_cxx/memp_sync.html -share/doc/db4/api_cxx/memp_trickle.html -share/doc/db4/api_cxx/mempfile_class.html -share/doc/db4/api_cxx/pindex.src -share/doc/db4/api_cxx/rep_elect.html -share/doc/db4/api_cxx/rep_message.html -share/doc/db4/api_cxx/rep_start.html -share/doc/db4/api_cxx/rep_transport.html -share/doc/db4/api_cxx/txn_abort.html -share/doc/db4/api_cxx/txn_begin.html -share/doc/db4/api_cxx/txn_checkpoint.html -share/doc/db4/api_cxx/txn_class.html -share/doc/db4/api_cxx/txn_commit.html -share/doc/db4/api_cxx/txn_discard.html -share/doc/db4/api_cxx/txn_id.html -share/doc/db4/api_cxx/txn_prepare.html -share/doc/db4/api_cxx/txn_recover.html -share/doc/db4/api_cxx/txn_set_timeout.html -share/doc/db4/api_cxx/txn_stat.html -share/doc/db4/api_cxx/what.html -share/doc/db4/api_java/c_index.html -share/doc/db4/api_java/db_associate.html -share/doc/db4/api_java/db_class.html -share/doc/db4/api_java/db_close.html -share/doc/db4/api_java/db_cursor.html -share/doc/db4/api_java/db_del.html -share/doc/db4/api_java/db_fd.html -share/doc/db4/api_java/db_get.html -share/doc/db4/api_java/db_get_byteswapped.html -share/doc/db4/api_java/db_get_type.html -share/doc/db4/api_java/db_join.html -share/doc/db4/api_java/db_key_range.html -share/doc/db4/api_java/db_open.html -share/doc/db4/api_java/db_put.html -share/doc/db4/api_java/db_remove.html -share/doc/db4/api_java/db_rename.html -share/doc/db4/api_java/db_set_append_recno.html -share/doc/db4/api_java/db_set_bt_compare.html -share/doc/db4/api_java/db_set_bt_minkey.html -share/doc/db4/api_java/db_set_bt_prefix.html -share/doc/db4/api_java/db_set_cachesize.html -share/doc/db4/api_java/db_set_dup_compare.html -share/doc/db4/api_java/db_set_errcall.html -share/doc/db4/api_java/db_set_errpfx.html -share/doc/db4/api_java/db_set_feedback.html -share/doc/db4/api_java/db_set_flags.html -share/doc/db4/api_java/db_set_h_ffactor.html -share/doc/db4/api_java/db_set_h_hash.html -share/doc/db4/api_java/db_set_h_nelem.html -share/doc/db4/api_java/db_set_lorder.html -share/doc/db4/api_java/db_set_pagesize.html -share/doc/db4/api_java/db_set_q_extentsize.html -share/doc/db4/api_java/db_set_re_delim.html -share/doc/db4/api_java/db_set_re_len.html -share/doc/db4/api_java/db_set_re_pad.html -share/doc/db4/api_java/db_set_re_source.html -share/doc/db4/api_java/db_stat.html -share/doc/db4/api_java/db_sync.html -share/doc/db4/api_java/db_truncate.html -share/doc/db4/api_java/db_upgrade.html -share/doc/db4/api_java/db_verify.html -share/doc/db4/api_java/dbc_class.html -share/doc/db4/api_java/dbc_close.html -share/doc/db4/api_java/dbc_count.html -share/doc/db4/api_java/dbc_del.html -share/doc/db4/api_java/dbc_dup.html -share/doc/db4/api_java/dbc_get.html -share/doc/db4/api_java/dbc_put.html -share/doc/db4/api_java/dbenv_class.html -share/doc/db4/api_java/dbt_bulk_class.html -share/doc/db4/api_java/dbt_class.html -share/doc/db4/api_java/deadlock_class.html -share/doc/db4/api_java/env_close.html -share/doc/db4/api_java/env_open.html -share/doc/db4/api_java/env_remove.html -share/doc/db4/api_java/env_set_cachesize.html -share/doc/db4/api_java/env_set_data_dir.html -share/doc/db4/api_java/env_set_errcall.html -share/doc/db4/api_java/env_set_error_stream.html -share/doc/db4/api_java/env_set_errpfx.html -share/doc/db4/api_java/env_set_feedback.html -share/doc/db4/api_java/env_set_flags.html -share/doc/db4/api_java/env_set_lg_bsize.html -share/doc/db4/api_java/env_set_lg_dir.html -share/doc/db4/api_java/env_set_lg_max.html -share/doc/db4/api_java/env_set_lg_regionmax.html -share/doc/db4/api_java/env_set_lk_conflicts.html -share/doc/db4/api_java/env_set_lk_detect.html -share/doc/db4/api_java/env_set_lk_max_lockers.html -share/doc/db4/api_java/env_set_lk_max_locks.html -share/doc/db4/api_java/env_set_lk_max_objects.html -share/doc/db4/api_java/env_set_mp_mmapsize.html -share/doc/db4/api_java/env_set_rec_init.html -share/doc/db4/api_java/env_set_rpc_server.html -share/doc/db4/api_java/env_set_shm_key.html -share/doc/db4/api_java/env_set_tas_spins.html -share/doc/db4/api_java/env_set_timeout.html -share/doc/db4/api_java/env_set_tmp_dir.html -share/doc/db4/api_java/env_set_tx_max.html -share/doc/db4/api_java/env_set_tx_recover.html -share/doc/db4/api_java/env_set_tx_timestamp.html -share/doc/db4/api_java/env_set_verbose.html -share/doc/db4/api_java/env_strerror.html -share/doc/db4/api_java/env_version.html -share/doc/db4/api_java/except_class.html -share/doc/db4/api_java/get_dbt.html -share/doc/db4/api_java/get_errno.html -share/doc/db4/api_java/java_pindex.html -share/doc/db4/api_java/lock_class.html -share/doc/db4/api_java/lock_detect.html -share/doc/db4/api_java/lock_get.html -share/doc/db4/api_java/lock_id.html -share/doc/db4/api_java/lock_id_free.html -share/doc/db4/api_java/lock_put.html -share/doc/db4/api_java/lock_stat.html -share/doc/db4/api_java/lock_vec.html -share/doc/db4/api_java/log_archive.html -share/doc/db4/api_java/log_compare.html -share/doc/db4/api_java/log_cursor.html -share/doc/db4/api_java/log_file.html -share/doc/db4/api_java/log_flush.html -share/doc/db4/api_java/log_put.html -share/doc/db4/api_java/log_register.html -share/doc/db4/api_java/log_stat.html -share/doc/db4/api_java/log_unregister.html -share/doc/db4/api_java/logc_class.html -share/doc/db4/api_java/logc_close.html -share/doc/db4/api_java/logc_get.html -share/doc/db4/api_java/lsn_class.html -share/doc/db4/api_java/mem_class.html -share/doc/db4/api_java/memp_fclose.html -share/doc/db4/api_java/memp_fopen.html -share/doc/db4/api_java/memp_fsync.html -share/doc/db4/api_java/memp_register.html -share/doc/db4/api_java/memp_stat.html -share/doc/db4/api_java/memp_sync.html -share/doc/db4/api_java/memp_trickle.html -share/doc/db4/api_java/pindex.src -share/doc/db4/api_java/rep_elect.html -share/doc/db4/api_java/rep_message.html -share/doc/db4/api_java/rep_start.html -share/doc/db4/api_java/rep_transport.html -share/doc/db4/api_java/runrec_class.html -share/doc/db4/api_java/txn_abort.html -share/doc/db4/api_java/txn_begin.html -share/doc/db4/api_java/txn_checkpoint.html -share/doc/db4/api_java/txn_class.html -share/doc/db4/api_java/txn_commit.html -share/doc/db4/api_java/txn_discard.html -share/doc/db4/api_java/txn_id.html -share/doc/db4/api_java/txn_prepare.html -share/doc/db4/api_java/txn_recover.html -share/doc/db4/api_java/txn_set_timeout.html -share/doc/db4/api_java/txn_stat.html -share/doc/db4/api_tcl/db_close.html -share/doc/db4/api_tcl/db_count.html -share/doc/db4/api_tcl/db_cursor.html -share/doc/db4/api_tcl/db_del.html -share/doc/db4/api_tcl/db_get.html -share/doc/db4/api_tcl/db_get_join.html -share/doc/db4/api_tcl/db_get_type.html -share/doc/db4/api_tcl/db_is_byteswapped.html -share/doc/db4/api_tcl/db_join.html -share/doc/db4/api_tcl/db_open.html -share/doc/db4/api_tcl/db_put.html -share/doc/db4/api_tcl/db_remove.html -share/doc/db4/api_tcl/db_rename.html -share/doc/db4/api_tcl/db_stat.html -share/doc/db4/api_tcl/db_sync.html -share/doc/db4/api_tcl/db_truncate.html -share/doc/db4/api_tcl/dbc_close.html -share/doc/db4/api_tcl/dbc_del.html -share/doc/db4/api_tcl/dbc_dup.html -share/doc/db4/api_tcl/dbc_get.html -share/doc/db4/api_tcl/dbc_put.html -share/doc/db4/api_tcl/env_close.html -share/doc/db4/api_tcl/env_open.html -share/doc/db4/api_tcl/env_remove.html -share/doc/db4/api_tcl/pindex.src -share/doc/db4/api_tcl/tcl_index.html -share/doc/db4/api_tcl/tcl_pindex.html -share/doc/db4/api_tcl/txn.html -share/doc/db4/api_tcl/txn_abort.html -share/doc/db4/api_tcl/txn_commit.html -share/doc/db4/api_tcl/version.html -share/doc/db4/images/api.gif -share/doc/db4/images/next.gif -share/doc/db4/images/prev.gif -share/doc/db4/images/ps.gif -share/doc/db4/images/ref.gif -share/doc/db4/images/sleepycat.gif -share/doc/db4/index.html -share/doc/db4/ref/am/close.html -share/doc/db4/ref/am/count.html -share/doc/db4/ref/am/curclose.html -share/doc/db4/ref/am/curdel.html -share/doc/db4/ref/am/curdup.html -share/doc/db4/ref/am/curget.html -share/doc/db4/ref/am/curput.html -share/doc/db4/ref/am/cursor.html -share/doc/db4/ref/am/delete.html -share/doc/db4/ref/am/get.html -share/doc/db4/ref/am/join.html -share/doc/db4/ref/am/open.html -share/doc/db4/ref/am/opensub.html -share/doc/db4/ref/am/ops.html -share/doc/db4/ref/am/put.html -share/doc/db4/ref/am/second.html -share/doc/db4/ref/am/stat.html -share/doc/db4/ref/am/sync.html -share/doc/db4/ref/am/truncate.html -share/doc/db4/ref/am/upgrade.html -share/doc/db4/ref/am/verify.html -share/doc/db4/ref/am_conf/bt_compare.html -share/doc/db4/ref/am_conf/bt_minkey.html -share/doc/db4/ref/am_conf/bt_prefix.html -share/doc/db4/ref/am_conf/bt_recnum.html -share/doc/db4/ref/am_conf/byteorder.html -share/doc/db4/ref/am_conf/cachesize.html -share/doc/db4/ref/am_conf/dup.html -share/doc/db4/ref/am_conf/extentsize.html -share/doc/db4/ref/am_conf/h_ffactor.html -share/doc/db4/ref/am_conf/h_hash.html -share/doc/db4/ref/am_conf/h_nelem.html -share/doc/db4/ref/am_conf/intro.html -share/doc/db4/ref/am_conf/logrec.html -share/doc/db4/ref/am_conf/malloc.html -share/doc/db4/ref/am_conf/pagesize.html -share/doc/db4/ref/am_conf/re_source.html -share/doc/db4/ref/am_conf/recno.html -share/doc/db4/ref/am_conf/renumber.html -share/doc/db4/ref/am_conf/select.html -share/doc/db4/ref/am_misc/align.html -share/doc/db4/ref/am_misc/dbsizes.html -share/doc/db4/ref/am_misc/diskspace.html -share/doc/db4/ref/am_misc/error.html -share/doc/db4/ref/am_misc/faq.html -share/doc/db4/ref/am_misc/get_bulk.html -share/doc/db4/ref/am_misc/partial.html -share/doc/db4/ref/am_misc/perm.html -share/doc/db4/ref/am_misc/stability.html -share/doc/db4/ref/am_misc/tune.html -share/doc/db4/ref/arch/apis.html -share/doc/db4/ref/arch/bigpic.gif -share/doc/db4/ref/arch/bigpic.html -share/doc/db4/ref/arch/progmodel.html -share/doc/db4/ref/arch/script.html -share/doc/db4/ref/arch/smallpic.gif -share/doc/db4/ref/arch/utilities.html -share/doc/db4/ref/build_unix/aix.html -share/doc/db4/ref/build_unix/conf.html -share/doc/db4/ref/build_unix/embedix.html -share/doc/db4/ref/build_unix/flags.html -share/doc/db4/ref/build_unix/freebsd.html -share/doc/db4/ref/build_unix/hpux.html -share/doc/db4/ref/build_unix/install.html -share/doc/db4/ref/build_unix/intro.html -share/doc/db4/ref/build_unix/irix.html -share/doc/db4/ref/build_unix/linux.html -share/doc/db4/ref/build_unix/macosx.html -share/doc/db4/ref/build_unix/notes.html -share/doc/db4/ref/build_unix/osf1.html -share/doc/db4/ref/build_unix/qnx.html -share/doc/db4/ref/build_unix/sco.html -share/doc/db4/ref/build_unix/shlib.html -share/doc/db4/ref/build_unix/solaris.html -share/doc/db4/ref/build_unix/sunos.html -share/doc/db4/ref/build_unix/test.html -share/doc/db4/ref/build_unix/ultrix.html -share/doc/db4/ref/build_vxworks/faq.html -share/doc/db4/ref/build_vxworks/intro.html -share/doc/db4/ref/build_vxworks/introae.html -share/doc/db4/ref/build_vxworks/notes.html -share/doc/db4/ref/build_win/faq.html -share/doc/db4/ref/build_win/intro.html -share/doc/db4/ref/build_win/notes.html -share/doc/db4/ref/build_win/test.html -share/doc/db4/ref/cam/intro.html -share/doc/db4/ref/debug/common.html -share/doc/db4/ref/debug/compile.html -share/doc/db4/ref/debug/intro.html -share/doc/db4/ref/debug/printlog.html -share/doc/db4/ref/debug/runtime.html -share/doc/db4/ref/distrib/layout.html -share/doc/db4/ref/dumpload/format.html -share/doc/db4/ref/dumpload/text.html -share/doc/db4/ref/dumpload/utility.html -share/doc/db4/ref/env/create.html -share/doc/db4/ref/env/error.html -share/doc/db4/ref/env/faq.html -share/doc/db4/ref/env/intro.html -share/doc/db4/ref/env/naming.html -share/doc/db4/ref/env/open.html -share/doc/db4/ref/env/region.html -share/doc/db4/ref/env/remote.html -share/doc/db4/ref/env/security.html -share/doc/db4/ref/install/file.html -share/doc/db4/ref/install/magic.s5.be.txt -share/doc/db4/ref/install/magic.s5.le.txt -share/doc/db4/ref/install/magic.txt -share/doc/db4/ref/install/multiple.html -share/doc/db4/ref/install/rpm.html -share/doc/db4/ref/intro/data.html -share/doc/db4/ref/intro/dbis.html -share/doc/db4/ref/intro/dbisnot.html -share/doc/db4/ref/intro/distrib.html -share/doc/db4/ref/intro/need.html -share/doc/db4/ref/intro/products.html -share/doc/db4/ref/intro/terrain.html -share/doc/db4/ref/intro/what.html -share/doc/db4/ref/intro/where.html -share/doc/db4/ref/java/compat.html -share/doc/db4/ref/java/conf.html -share/doc/db4/ref/java/faq.html -share/doc/db4/ref/java/program.html -share/doc/db4/ref/lock/am_conv.html -share/doc/db4/ref/lock/cam_conv.html -share/doc/db4/ref/lock/config.html -share/doc/db4/ref/lock/dead.html -share/doc/db4/ref/lock/intro.html -share/doc/db4/ref/lock/max.html -share/doc/db4/ref/lock/nondb.html -share/doc/db4/ref/lock/notxn.html -share/doc/db4/ref/lock/page.html -share/doc/db4/ref/lock/stdmode.html -share/doc/db4/ref/lock/timeout.html -share/doc/db4/ref/lock/twopl.html -share/doc/db4/ref/log/config.html -share/doc/db4/ref/log/intro.html -share/doc/db4/ref/log/limits.html -share/doc/db4/ref/mp/config.html -share/doc/db4/ref/mp/intro.html -share/doc/db4/ref/perl/intro.html -share/doc/db4/ref/pindex.src -share/doc/db4/ref/program/appsignals.html -share/doc/db4/ref/program/compatible.html -share/doc/db4/ref/program/copy.html -share/doc/db4/ref/program/environ.html -share/doc/db4/ref/program/errorret.html -share/doc/db4/ref/program/extending.html -share/doc/db4/ref/program/mt.html -share/doc/db4/ref/program/namespace.html -share/doc/db4/ref/program/runtime.html -share/doc/db4/ref/program/scope.html -share/doc/db4/ref/program/solaris.txt -share/doc/db4/ref/refs/bdb_usenix.html -share/doc/db4/ref/refs/bdb_usenix.ps -share/doc/db4/ref/refs/embedded.html -share/doc/db4/ref/refs/hash_usenix.ps -share/doc/db4/ref/refs/libtp_usenix.ps -share/doc/db4/ref/refs/refs.html -share/doc/db4/ref/refs/witold.html -share/doc/db4/ref/rep/app.html -share/doc/db4/ref/rep/comm.html -share/doc/db4/ref/rep/elect.html -share/doc/db4/ref/rep/ex.html -share/doc/db4/ref/rep/ex_comm.html -share/doc/db4/ref/rep/ex_rq.html -share/doc/db4/ref/rep/faq.html -share/doc/db4/ref/rep/id.html -share/doc/db4/ref/rep/init.html -share/doc/db4/ref/rep/intro.html -share/doc/db4/ref/rep/logonly.html -share/doc/db4/ref/rep/newsite.html -share/doc/db4/ref/rep/partition.html -share/doc/db4/ref/rep/pri.html -share/doc/db4/ref/rep/trans.html -share/doc/db4/ref/rpc/client.html -share/doc/db4/ref/rpc/intro.html -share/doc/db4/ref/rpc/server.html -share/doc/db4/ref/sendmail/intro.html -share/doc/db4/ref/simple_tut/close.html -share/doc/db4/ref/simple_tut/del.html -share/doc/db4/ref/simple_tut/errors.html -share/doc/db4/ref/simple_tut/example.cs -share/doc/db4/ref/simple_tut/get.html -share/doc/db4/ref/simple_tut/handles.html -share/doc/db4/ref/simple_tut/intro.html -share/doc/db4/ref/simple_tut/keydata.html -share/doc/db4/ref/simple_tut/open.html -share/doc/db4/ref/simple_tut/put.html -share/doc/db4/ref/tcl/error.html -share/doc/db4/ref/tcl/faq.html -share/doc/db4/ref/tcl/intro.html -share/doc/db4/ref/tcl/program.html -share/doc/db4/ref/tcl/using.html -share/doc/db4/ref/test/faq.html -share/doc/db4/ref/test/run.html -share/doc/db4/ref/transapp/admin.html -share/doc/db4/ref/transapp/app.html -share/doc/db4/ref/transapp/archival.html -share/doc/db4/ref/transapp/checkpoint.html -share/doc/db4/ref/transapp/cursor.html -share/doc/db4/ref/transapp/data_open.html -share/doc/db4/ref/transapp/deadlock.html -share/doc/db4/ref/transapp/env_open.html -share/doc/db4/ref/transapp/faq.html -share/doc/db4/ref/transapp/filesys.html -share/doc/db4/ref/transapp/hotfail.html -share/doc/db4/ref/transapp/inc.html -share/doc/db4/ref/transapp/intro.html -share/doc/db4/ref/transapp/logfile.html -share/doc/db4/ref/transapp/nested.html -share/doc/db4/ref/transapp/put.html -share/doc/db4/ref/transapp/read.html -share/doc/db4/ref/transapp/reclimit.html -share/doc/db4/ref/transapp/recovery.html -share/doc/db4/ref/transapp/term.html -share/doc/db4/ref/transapp/throughput.html -share/doc/db4/ref/transapp/transapp.cs -share/doc/db4/ref/transapp/tune.html -share/doc/db4/ref/transapp/why.html -share/doc/db4/ref/transapp/writetest.cs -share/doc/db4/ref/txn/config.html -share/doc/db4/ref/txn/intro.html -share/doc/db4/ref/txn/limits.html -share/doc/db4/ref/txn/other.html -share/doc/db4/ref/upgrade.2.0/convert.html -share/doc/db4/ref/upgrade.2.0/disk.html -share/doc/db4/ref/upgrade.2.0/intro.html -share/doc/db4/ref/upgrade.2.0/system.html -share/doc/db4/ref/upgrade.2.0/toc.html -share/doc/db4/ref/upgrade.3.0/close.html -share/doc/db4/ref/upgrade.3.0/cxx.html -share/doc/db4/ref/upgrade.3.0/db.html -share/doc/db4/ref/upgrade.3.0/db_cxx.html -share/doc/db4/ref/upgrade.3.0/dbenv.html -share/doc/db4/ref/upgrade.3.0/dbenv_cxx.html -share/doc/db4/ref/upgrade.3.0/dbinfo.html -share/doc/db4/ref/upgrade.3.0/disk.html -share/doc/db4/ref/upgrade.3.0/eacces.html -share/doc/db4/ref/upgrade.3.0/eagain.html -share/doc/db4/ref/upgrade.3.0/envopen.html -share/doc/db4/ref/upgrade.3.0/func.html -share/doc/db4/ref/upgrade.3.0/intro.html -share/doc/db4/ref/upgrade.3.0/java.html -share/doc/db4/ref/upgrade.3.0/join.html -share/doc/db4/ref/upgrade.3.0/jump_set.html -share/doc/db4/ref/upgrade.3.0/lock_detect.html -share/doc/db4/ref/upgrade.3.0/lock_notheld.html -share/doc/db4/ref/upgrade.3.0/lock_put.html -share/doc/db4/ref/upgrade.3.0/lock_stat.html -share/doc/db4/ref/upgrade.3.0/log_register.html -share/doc/db4/ref/upgrade.3.0/log_stat.html -share/doc/db4/ref/upgrade.3.0/memp_stat.html -share/doc/db4/ref/upgrade.3.0/open.html -share/doc/db4/ref/upgrade.3.0/rmw.html -share/doc/db4/ref/upgrade.3.0/stat.html -share/doc/db4/ref/upgrade.3.0/toc.html -share/doc/db4/ref/upgrade.3.0/txn_begin.html -share/doc/db4/ref/upgrade.3.0/txn_commit.html -share/doc/db4/ref/upgrade.3.0/txn_stat.html -share/doc/db4/ref/upgrade.3.0/value_set.html -share/doc/db4/ref/upgrade.3.0/xa.html -share/doc/db4/ref/upgrade.3.1/btstat.html -share/doc/db4/ref/upgrade.3.1/config.html -share/doc/db4/ref/upgrade.3.1/disk.html -share/doc/db4/ref/upgrade.3.1/dup.html -share/doc/db4/ref/upgrade.3.1/env.html -share/doc/db4/ref/upgrade.3.1/intro.html -share/doc/db4/ref/upgrade.3.1/log_register.html -share/doc/db4/ref/upgrade.3.1/logalloc.html -share/doc/db4/ref/upgrade.3.1/memp_register.html -share/doc/db4/ref/upgrade.3.1/put.html -share/doc/db4/ref/upgrade.3.1/set_feedback.html -share/doc/db4/ref/upgrade.3.1/set_paniccall.html -share/doc/db4/ref/upgrade.3.1/set_tx_recover.html -share/doc/db4/ref/upgrade.3.1/sysmem.html -share/doc/db4/ref/upgrade.3.1/tcl.html -share/doc/db4/ref/upgrade.3.1/tmp.html -share/doc/db4/ref/upgrade.3.1/toc.html -share/doc/db4/ref/upgrade.3.1/txn_check.html -share/doc/db4/ref/upgrade.3.2/callback.html -share/doc/db4/ref/upgrade.3.2/db_dump.html -share/doc/db4/ref/upgrade.3.2/disk.html -share/doc/db4/ref/upgrade.3.2/handle.html -share/doc/db4/ref/upgrade.3.2/incomplete.html -share/doc/db4/ref/upgrade.3.2/intro.html -share/doc/db4/ref/upgrade.3.2/mutexlock.html -share/doc/db4/ref/upgrade.3.2/notfound.html -share/doc/db4/ref/upgrade.3.2/renumber.html -share/doc/db4/ref/upgrade.3.2/set_flags.html -share/doc/db4/ref/upgrade.3.2/toc.html -share/doc/db4/ref/upgrade.3.2/tx_recover.html -share/doc/db4/ref/upgrade.3.3/alloc.html -share/doc/db4/ref/upgrade.3.3/bigfile.html -share/doc/db4/ref/upgrade.3.3/conflict.html -share/doc/db4/ref/upgrade.3.3/disk.html -share/doc/db4/ref/upgrade.3.3/getswap.html -share/doc/db4/ref/upgrade.3.3/gettype.html -share/doc/db4/ref/upgrade.3.3/intro.html -share/doc/db4/ref/upgrade.3.3/memp_fget.html -share/doc/db4/ref/upgrade.3.3/rpc.html -share/doc/db4/ref/upgrade.3.3/shared.html -share/doc/db4/ref/upgrade.3.3/toc.html -share/doc/db4/ref/upgrade.3.3/txn_prepare.html -share/doc/db4/ref/upgrade.4.0/asr.html -share/doc/db4/ref/upgrade.4.0/cxx.html -share/doc/db4/ref/upgrade.4.0/deadlock.html -share/doc/db4/ref/upgrade.4.0/disk.html -share/doc/db4/ref/upgrade.4.0/env.html -share/doc/db4/ref/upgrade.4.0/intro.html -share/doc/db4/ref/upgrade.4.0/java.html -share/doc/db4/ref/upgrade.4.0/lock.html -share/doc/db4/ref/upgrade.4.0/lock_id_free.html -share/doc/db4/ref/upgrade.4.0/log.html -share/doc/db4/ref/upgrade.4.0/mp.html -share/doc/db4/ref/upgrade.4.0/rpc.html -share/doc/db4/ref/upgrade.4.0/set_lk_max.html -share/doc/db4/ref/upgrade.4.0/toc.html -share/doc/db4/ref/upgrade.4.0/txn.html -share/doc/db4/ref/upgrade/process.html -share/doc/db4/ref/upgrade/version.html -share/doc/db4/ref/xa/build.html -share/doc/db4/ref/xa/faq.html -share/doc/db4/ref/xa/intro.html -share/doc/db4/ref/xa/xa_config.html -share/doc/db4/ref/xa/xa_intro.html -share/doc/db4/reftoc.html -share/doc/db4/sleepycat/contact.html -share/doc/db4/sleepycat/legal.html -share/doc/db4/sleepycat/license.html -share/doc/db4/utility/berkeley_db_svc.html -share/doc/db4/utility/db_archive.html -share/doc/db4/utility/db_checkpoint.html -share/doc/db4/utility/db_deadlock.html -share/doc/db4/utility/db_dump.html -share/doc/db4/utility/db_load.html -share/doc/db4/utility/db_printlog.html -share/doc/db4/utility/db_recover.html -share/doc/db4/utility/db_stat.html -share/doc/db4/utility/db_upgrade.html -share/doc/db4/utility/db_verify.html -share/doc/db4/utility/index.html -@dirrm include/db4 -@dirrm share/doc/db4/ref/am -@dirrm share/doc/db4/ref/am_conf -@dirrm share/doc/db4/ref/am_misc -@dirrm share/doc/db4/ref/arch -@dirrm share/doc/db4/ref/build_unix -@dirrm share/doc/db4/ref/build_vxworks -@dirrm share/doc/db4/ref/build_win -@dirrm share/doc/db4/ref/cam -@dirrm share/doc/db4/ref/debug -@dirrm share/doc/db4/ref/distrib -@dirrm share/doc/db4/ref/dumpload -@dirrm share/doc/db4/ref/env -@dirrm share/doc/db4/ref/install -@dirrm share/doc/db4/ref/intro -@dirrm share/doc/db4/ref/java -@dirrm share/doc/db4/ref/lock -@dirrm share/doc/db4/ref/log -@dirrm share/doc/db4/ref/mp -@dirrm share/doc/db4/ref/perl -@dirrm share/doc/db4/ref/program -@dirrm share/doc/db4/ref/refs -@dirrm share/doc/db4/ref/rep -@dirrm share/doc/db4/ref/rpc -@dirrm share/doc/db4/ref/sendmail -@dirrm share/doc/db4/ref/simple_tut -@dirrm share/doc/db4/ref/splash -@dirrm share/doc/db4/ref/tcl -@dirrm share/doc/db4/ref/test -@dirrm share/doc/db4/ref/transapp -@dirrm share/doc/db4/ref/txn -@dirrm share/doc/db4/ref/upgrade -@dirrm share/doc/db4/ref/upgrade.2.0 -@dirrm share/doc/db4/ref/upgrade.3.0 -@dirrm share/doc/db4/ref/upgrade.3.1 -@dirrm share/doc/db4/ref/upgrade.3.2 -@dirrm share/doc/db4/ref/upgrade.3.3 -@dirrm share/doc/db4/ref/upgrade.4.0 -@dirrm share/doc/db4/ref/xa -@dirrm share/doc/db4/ref -@dirrm share/doc/db4/sleepycat -@dirrm share/doc/db4/api_c -@dirrm share/doc/db4/api_java -@dirrm share/doc/db4/api_cxx -@dirrm share/doc/db4/utility -@dirrm share/doc/db4/api_tcl -@dirrm share/doc/db4/images -@dirrm share/doc/db4 diff --git a/databases/db45/Makefile b/databases/db45/Makefile deleted file mode 100644 index 11c5ca90cae7..000000000000 --- a/databases/db45/Makefile +++ /dev/null @@ -1,42 +0,0 @@ -# ports collection makefile for: Berkeley DB v4 -# Date created: 16 August 2000 -# Whom: Sergey Osokin aka oZZ <ozz@FreeBSD.org.ru> -# -# $FreeBSD$ -# - -PORTNAME= db4 -PORTVERSION= 4.0.14 -#PORTREVISION= 2 -#PORTEPOCH= 1 -CATEGORIES= databases -MASTER_SITES= http://www.sleepycat.com/update/${PORTVERSION}/ -DISTNAME= db-${PORTVERSION} -DIST_SUBDIR= bdb - -MAINTAINER= ozz@FreeBSD.org.ru - -#PATCH_SITES= ${MASTER_SITES} -#PATCHFILES= patch.${PORTVERSION}.1 patch.${PORTVERSION}.2 -#PATCH_DIST_STRIP= -d ${WRKDIR}/${DISTNAME} - -WRKSRC= ${WRKDIR}/${DISTNAME}/build_unix - -INSTALLS_SHLIB= yes -HAS_CONFIGURE= yes -CONFIGURE_SCRIPT= ../dist/configure -CONFIGURE_ARGS= --enable-compat185 \ - --enable-dump185 --enable-cxx \ - --enable-dynamic \ - --prefix=${PREFIX} \ - --includedir=${PREFIX}/include/db4 \ - --target=${ARCH}-unknown-freebsd${OSREL} - -pre-patch: - @${PERL} -pi -e 's|-lpthread|${PTHREAD_LIBS}|g' ${WRKSRC}/${CONFIGURE_SCRIPT} - -post-patch: - @${CHMOD} 755 ${WRKSRC}/${CONFIGURE_SCRIPT} - @${PERL} -pi -e "s|%%LOCALBASE%%|${LOCALBASE}|g" ${WRKSRC}/../dist/configure - -.include <bsd.port.mk> diff --git a/databases/db45/distinfo b/databases/db45/distinfo deleted file mode 100644 index 09f3d6b59aec..000000000000 --- a/databases/db45/distinfo +++ /dev/null @@ -1 +0,0 @@ -MD5 (bdb/db-4.0.14.tar.gz) = 12262c64fcd64b772e7cffad8e4d0ebc diff --git a/databases/db45/files/patch-dist::Makefile.in b/databases/db45/files/patch-dist::Makefile.in deleted file mode 100644 index 136ab161efdc..000000000000 --- a/databases/db45/files/patch-dist::Makefile.in +++ /dev/null @@ -1,135 +0,0 @@ ---- ../dist/Makefile.in.orig Sat Nov 10 01:48:45 2001 -+++ ../dist/Makefile.in Wed Dec 5 13:38:23 2001 -@@ -11,7 +11,7 @@ - bindir= @bindir@ - includedir=@includedir@ - libdir= @libdir@ --docdir= $(prefix)/docs -+docdir= $(prefix)/share/doc/db4 - - dmode= 755 - emode= 555 -@@ -45,6 +45,7 @@ - SOLINK= @MAKEFILE_SOLINK@ - SOFLAGS= @SOFLAGS@ - SOMAJOR= @DB_VERSION_MAJOR@ -+SOMINOR= @DB_VERSION_MINOR@ - SOVERSION= @DB_VERSION_MAJOR@.@DB_VERSION_MINOR@ - - ################################################## -@@ -60,13 +61,13 @@ - LIBS= @LIBS@ - LIBSO_LIBS= @LIBSO_LIBS@ - --libdb= libdb.a --libso_base= libdb --libso= $(libso_base)-$(SOVERSION).@SOSUFFIX@ --libso_static= $(libso_base)-$(SOVERSION).a --libso_target= $(libso_base)-$(SOVERSION).la -+libdb= libdb4.a -+libso_base= libdb4 -+libso= $(libso_base).@SOSUFFIX@ -+libso_static= $(libso_base).a -+libso_target= $(libso_base).la - libso_default= $(libso_base).@SOSUFFIX@ --libso_major= $(libso_base)-$(SOMAJOR).@SOSUFFIX@ -+libso_major= $(libso_base).@SOSUFFIX@.$(SOMINOR) - - ################################################## - # C++ API. -@@ -79,13 +80,13 @@ - XSOLINK= @MAKEFILE_XSOLINK@ - LIBXSO_LIBS= @LIBXSO_LIBS@ - --libcxx= libdb_cxx.a --libxso_base= libdb_cxx --libxso= $(libxso_base)-$(SOVERSION).@SOSUFFIX@ --libxso_static= $(libxso_base)-$(SOVERSION).a --libxso_target= $(libxso_base)-$(SOVERSION).la -+libcxx= libdb4_cxx.a -+libxso_base= libdb4_cxx -+libxso= $(libxso_base).@SOSUFFIX@ -+libxso_static= $(libxso_base).a -+libxso_target= $(libxso_base).la - libxso_default= $(libxso_base).@SOSUFFIX@ --libxso_major= $(libxso_base)-$(SOMAJOR).@SOSUFFIX@ -+libxso_major= $(libxso_base).@SOSUFFIX@.$(SOMINOR) - - ################################################## - # Java API. -@@ -235,8 +236,8 @@ - db_server_proc@o@ db_server_svc@o@ db_server_util@o@ gen_db_server@o@ - - UTIL_PROGS=\ -- @ADDITIONAL_PROGS@ db_archive db_checkpoint db_deadlock \ -- db_dump db_load db_printlog db_recover db_stat db_upgrade db_verify -+ @ADDITIONAL_PROGS@ db4_archive db4_checkpoint db4_deadlock \ -+ db4_dump db4_load db4_printlog db4_recover db4_stat db4_upgrade db4_verify - - ################################################## - # List of files installed into the library directory. -@@ -330,53 +331,53 @@ - $(RPC_SRV_OBJS) util_log@o@ $(DEF_LIB) $(LIBS) - $(POSTLINK) $@ - --db_archive: db_archive@o@ util_sig@o@ $(DEF_LIB) -+db4_archive: db_archive@o@ util_sig@o@ $(DEF_LIB) - $(CCLINK) -o $@ $(LDFLAGS) \ - db_archive@o@ util_sig@o@ $(DEF_LIB) $(LIBS) - $(POSTLINK) $@ - --db_checkpoint: db_checkpoint@o@ util_log@o@ util_sig@o@ $(DEF_LIB) -+db4_checkpoint: db_checkpoint@o@ util_log@o@ util_sig@o@ $(DEF_LIB) - $(CCLINK) -o $@ $(LDFLAGS) \ - db_checkpoint@o@ util_log@o@ util_sig@o@ $(DEF_LIB) $(LIBS) - $(POSTLINK) $@ - --db_deadlock: db_deadlock@o@ util_log@o@ util_sig@o@ $(DEF_LIB) -+db4_deadlock: db_deadlock@o@ util_log@o@ util_sig@o@ $(DEF_LIB) - $(CCLINK) -o $@ $(LDFLAGS) \ - db_deadlock@o@ util_log@o@ util_sig@o@ $(DEF_LIB) $(LIBS) - $(POSTLINK) $@ - --db_dump: db_dump@o@ util_sig@o@ $(DEF_LIB) -+db4_dump: db_dump@o@ util_sig@o@ $(DEF_LIB) - $(CCLINK) -o $@ $(LDFLAGS) db_dump@o@ util_sig@o@ $(DEF_LIB) $(LIBS) - $(POSTLINK) $@ - --db_dump185: db_dump185@o@ @LIBOBJS@ -+db4_dump185: db_dump185@o@ @LIBOBJS@ - $(CCLINK) -o $@ $(LDFLAGS) db_dump185@o@ @LIBOBJS@ $(DB185LIB) - $(POSTLINK) $@ - --db_load: db_load@o@ util_sig@o@ $(DEF_LIB) -+db4_load: db_load@o@ util_sig@o@ $(DEF_LIB) - $(CCLINK) -o $@ $(LDFLAGS) db_load@o@ util_sig@o@ $(DEF_LIB) $(LIBS) - $(POSTLINK) $@ - --db_printlog: db_printlog@o@ util_sig@o@ $(DEF_LIB) -+db4_printlog: db_printlog@o@ util_sig@o@ $(DEF_LIB) - $(CCLINK) -o $@ $(LDFLAGS) \ - db_printlog@o@ util_sig@o@ $(DEF_LIB) $(LIBS) - $(POSTLINK) $@ - --db_recover: db_recover@o@ util_sig@o@ $(DEF_LIB) -+db4_recover: db_recover@o@ util_sig@o@ $(DEF_LIB) - $(CCLINK) -o $@ $(LDFLAGS) \ - db_recover@o@ util_sig@o@ $(DEF_LIB) $(LIBS) - $(POSTLINK) $@ - --db_stat: db_stat@o@ util_sig@o@ $(DEF_LIB) -+db4_stat: db_stat@o@ util_sig@o@ $(DEF_LIB) - $(CCLINK) -o $@ $(LDFLAGS) db_stat@o@ util_sig@o@ $(DEF_LIB) $(LIBS) - $(POSTLINK) $@ - --db_upgrade: db_upgrade@o@ util_sig@o@ $(DEF_LIB) -+db4_upgrade: db_upgrade@o@ util_sig@o@ $(DEF_LIB) - $(CCLINK) -o $@ $(LDFLAGS) \ - db_upgrade@o@ util_sig@o@ $(DEF_LIB) $(LIBS) - $(POSTLINK) $@ - --db_verify: db_verify@o@ util_sig@o@ $(DEF_LIB) -+db4_verify: db_verify@o@ util_sig@o@ $(DEF_LIB) - $(CCLINK) -o $@ $(LDFLAGS) \ - db_verify@o@ util_sig@o@ $(DEF_LIB) $(LIBS) - $(POSTLINK) $@ diff --git a/databases/db45/files/patch-dist::configure b/databases/db45/files/patch-dist::configure deleted file mode 100644 index 4f2ed615df05..000000000000 --- a/databases/db45/files/patch-dist::configure +++ /dev/null @@ -1,24 +0,0 @@ ---- ../dist/configure.orig Wed Dec 5 13:14:02 2001 -+++ ../dist/configure Wed Dec 5 13:24:01 2001 -@@ -8794,10 +8794,10 @@ - INSTALLER="\$(LIBTOOL) --mode=install cp" - - MAKEFILE_CC="\$(LIBTOOL) --mode=compile ${MAKEFILE_CC}" --MAKEFILE_SOLINK="\$(LIBTOOL) --mode=link ${MAKEFILE_CCLINK} -avoid-version" -+MAKEFILE_SOLINK="\$(LIBTOOL) --mode=link ${MAKEFILE_CCLINK} -version-info ${DB_VERSION_MINOR}" - MAKEFILE_CCLINK="\$(LIBTOOL) --mode=link ${MAKEFILE_CCLINK}" - MAKEFILE_CXX="\$(LIBTOOL) --mode=compile ${MAKEFILE_CXX}" --MAKEFILE_XSOLINK="\$(LIBTOOL) --mode=link ${MAKEFILE_CXXLINK} -avoid-version" -+MAKEFILE_XSOLINK="\$(LIBTOOL) --mode=link ${MAKEFILE_CXXLINK} -version-info ${DB_VERSION_MINOR}" - MAKEFILE_CXXLINK="\$(LIBTOOL) --mode=link ${MAKEFILE_CXXLINK}" - - # Configure for shared libraries, static libraries, or both. If both are -@@ -9511,7 +9511,7 @@ - - # Optional utilities. - if test "$db_cv_dump185" = "yes"; then -- ADDITIONAL_PROGS="db_dump185 $ADDITIONAL_PROGS" -+ ADDITIONAL_PROGS="db4_dump185 $ADDITIONAL_PROGS" - fi - - # Checks for system/compiler characteristics. diff --git a/databases/db45/pkg-comment b/databases/db45/pkg-comment deleted file mode 100644 index 0ea96ff89521..000000000000 --- a/databases/db45/pkg-comment +++ /dev/null @@ -1 +0,0 @@ -The Berkeley DB package, revision 4 diff --git a/databases/db45/pkg-descr b/databases/db45/pkg-descr deleted file mode 100644 index a47006d1fdee..000000000000 --- a/databases/db45/pkg-descr +++ /dev/null @@ -1,13 +0,0 @@ -Revision 4 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 v4 -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 6568248aebb3..000000000000 --- a/databases/db45/pkg-plist +++ /dev/null @@ -1,898 +0,0 @@ -bin/db4_archive -bin/db4_checkpoint -bin/db4_deadlock -bin/db4_dump -bin/db4_dump185 -bin/db4_load -bin/db4_printlog -bin/db4_recover -bin/db4_stat -bin/db4_upgrade -bin/db4_verify -include/db4/cxx_common.h -include/db4/cxx_except.h -include/db4/db.h -include/db4/db_185.h -include/db4/db_cxx.h -lib/libdb4.a -lib/libdb4.la -lib/libdb4.so -lib/libdb4.so.0 -lib/libdb4_cxx.a -lib/libdb4_cxx.la -lib/libdb4_cxx.so -lib/libdb4_cxx.so.0 -share/doc/db4/api_c/c_index.html -share/doc/db4/api_c/c_pindex.html -share/doc/db4/api_c/db_associate.html -share/doc/db4/api_c/db_close.html -share/doc/db4/api_c/db_create.html -share/doc/db4/api_c/db_cursor.html -share/doc/db4/api_c/db_del.html -share/doc/db4/api_c/db_err.html -share/doc/db4/api_c/db_fd.html -share/doc/db4/api_c/db_get.html -share/doc/db4/api_c/db_get_byteswapped.html -share/doc/db4/api_c/db_get_type.html -share/doc/db4/api_c/db_join.html -share/doc/db4/api_c/db_key_range.html -share/doc/db4/api_c/db_lsn.html -share/doc/db4/api_c/db_open.html -share/doc/db4/api_c/db_put.html -share/doc/db4/api_c/db_remove.html -share/doc/db4/api_c/db_rename.html -share/doc/db4/api_c/db_set_alloc.html -share/doc/db4/api_c/db_set_append_recno.html -share/doc/db4/api_c/db_set_bt_compare.html -share/doc/db4/api_c/db_set_bt_minkey.html -share/doc/db4/api_c/db_set_bt_prefix.html -share/doc/db4/api_c/db_set_cachesize.html -share/doc/db4/api_c/db_set_dup_compare.html -share/doc/db4/api_c/db_set_errcall.html -share/doc/db4/api_c/db_set_errfile.html -share/doc/db4/api_c/db_set_errpfx.html -share/doc/db4/api_c/db_set_feedback.html -share/doc/db4/api_c/db_set_flags.html -share/doc/db4/api_c/db_set_h_ffactor.html -share/doc/db4/api_c/db_set_h_hash.html -share/doc/db4/api_c/db_set_h_nelem.html -share/doc/db4/api_c/db_set_lorder.html -share/doc/db4/api_c/db_set_pagesize.html -share/doc/db4/api_c/db_set_paniccall.html -share/doc/db4/api_c/db_set_q_extentsize.html -share/doc/db4/api_c/db_set_re_delim.html -share/doc/db4/api_c/db_set_re_len.html -share/doc/db4/api_c/db_set_re_pad.html -share/doc/db4/api_c/db_set_re_source.html -share/doc/db4/api_c/db_stat.html -share/doc/db4/api_c/db_sync.html -share/doc/db4/api_c/db_truncate.html -share/doc/db4/api_c/db_upgrade.html -share/doc/db4/api_c/db_verify.html -share/doc/db4/api_c/dbc_close.html -share/doc/db4/api_c/dbc_count.html -share/doc/db4/api_c/dbc_del.html -share/doc/db4/api_c/dbc_dup.html -share/doc/db4/api_c/dbc_get.html -share/doc/db4/api_c/dbc_put.html -share/doc/db4/api_c/dbm.html -share/doc/db4/api_c/dbt.html -share/doc/db4/api_c/dbt_bulk.html -share/doc/db4/api_c/env_close.html -share/doc/db4/api_c/env_create.html -share/doc/db4/api_c/env_err.html -share/doc/db4/api_c/env_open.html -share/doc/db4/api_c/env_remove.html -share/doc/db4/api_c/env_set_alloc.html -share/doc/db4/api_c/env_set_cachesize.html -share/doc/db4/api_c/env_set_data_dir.html -share/doc/db4/api_c/env_set_errcall.html -share/doc/db4/api_c/env_set_errfile.html -share/doc/db4/api_c/env_set_errpfx.html -share/doc/db4/api_c/env_set_feedback.html -share/doc/db4/api_c/env_set_flags.html -share/doc/db4/api_c/env_set_lg_bsize.html -share/doc/db4/api_c/env_set_lg_dir.html -share/doc/db4/api_c/env_set_lg_max.html -share/doc/db4/api_c/env_set_lg_regionmax.html -share/doc/db4/api_c/env_set_lk_conflicts.html -share/doc/db4/api_c/env_set_lk_detect.html -share/doc/db4/api_c/env_set_lk_max_lockers.html -share/doc/db4/api_c/env_set_lk_max_locks.html -share/doc/db4/api_c/env_set_lk_max_objects.html -share/doc/db4/api_c/env_set_mp_mmapsize.html -share/doc/db4/api_c/env_set_paniccall.html -share/doc/db4/api_c/env_set_rec_init.html -share/doc/db4/api_c/env_set_rpc_server.html -share/doc/db4/api_c/env_set_shm_key.html -share/doc/db4/api_c/env_set_tas_spins.html -share/doc/db4/api_c/env_set_timeout.html -share/doc/db4/api_c/env_set_tmp_dir.html -share/doc/db4/api_c/env_set_tx_max.html -share/doc/db4/api_c/env_set_tx_recover.html -share/doc/db4/api_c/env_set_tx_timestamp.html -share/doc/db4/api_c/env_set_verbose.html -share/doc/db4/api_c/env_strerror.html -share/doc/db4/api_c/env_version.html -share/doc/db4/api_c/hsearch.html -share/doc/db4/api_c/lock_detect.html -share/doc/db4/api_c/lock_get.html -share/doc/db4/api_c/lock_id.html -share/doc/db4/api_c/lock_id_free.html -share/doc/db4/api_c/lock_put.html -share/doc/db4/api_c/lock_stat.html -share/doc/db4/api_c/lock_vec.html -share/doc/db4/api_c/log_archive.html -share/doc/db4/api_c/log_compare.html -share/doc/db4/api_c/log_cursor.html -share/doc/db4/api_c/log_file.html -share/doc/db4/api_c/log_flush.html -share/doc/db4/api_c/log_put.html -share/doc/db4/api_c/log_register.html -share/doc/db4/api_c/log_stat.html -share/doc/db4/api_c/log_unregister.html -share/doc/db4/api_c/logc_close.html -share/doc/db4/api_c/logc_get.html -share/doc/db4/api_c/memp_fclose.html -share/doc/db4/api_c/memp_fcreate.html -share/doc/db4/api_c/memp_fget.html -share/doc/db4/api_c/memp_fopen.html -share/doc/db4/api_c/memp_fput.html -share/doc/db4/api_c/memp_fset.html -share/doc/db4/api_c/memp_fsync.html -share/doc/db4/api_c/memp_register.html -share/doc/db4/api_c/memp_set_clear_len.html -share/doc/db4/api_c/memp_set_fileid.html -share/doc/db4/api_c/memp_set_ftype.html -share/doc/db4/api_c/memp_set_lsn_offset.html -share/doc/db4/api_c/memp_set_pgcookie.html -share/doc/db4/api_c/memp_stat.html -share/doc/db4/api_c/memp_sync.html -share/doc/db4/api_c/memp_trickle.html -share/doc/db4/api_c/pindex.src -share/doc/db4/api_c/rep_elect.html -share/doc/db4/api_c/rep_message.html -share/doc/db4/api_c/rep_start.html -share/doc/db4/api_c/rep_transport.html -share/doc/db4/api_c/set_func_close.html -share/doc/db4/api_c/set_func_dirfree.html -share/doc/db4/api_c/set_func_dirlist.html -share/doc/db4/api_c/set_func_exists.html -share/doc/db4/api_c/set_func_free.html -share/doc/db4/api_c/set_func_fsync.html -share/doc/db4/api_c/set_func_ioinfo.html -share/doc/db4/api_c/set_func_malloc.html -share/doc/db4/api_c/set_func_map.html -share/doc/db4/api_c/set_func_open.html -share/doc/db4/api_c/set_func_read.html -share/doc/db4/api_c/set_func_realloc.html -share/doc/db4/api_c/set_func_rename.html -share/doc/db4/api_c/set_func_seek.html -share/doc/db4/api_c/set_func_sleep.html -share/doc/db4/api_c/set_func_unlink.html -share/doc/db4/api_c/set_func_unmap.html -share/doc/db4/api_c/set_func_write.html -share/doc/db4/api_c/set_func_yield.html -share/doc/db4/api_c/txn_abort.html -share/doc/db4/api_c/txn_begin.html -share/doc/db4/api_c/txn_checkpoint.html -share/doc/db4/api_c/txn_commit.html -share/doc/db4/api_c/txn_discard.html -share/doc/db4/api_c/txn_id.html -share/doc/db4/api_c/txn_prepare.html -share/doc/db4/api_c/txn_recover.html -share/doc/db4/api_c/txn_set_timeout.html -share/doc/db4/api_c/txn_stat.html -share/doc/db4/api_cxx/c_index.html -share/doc/db4/api_cxx/cxx_pindex.html -share/doc/db4/api_cxx/db_associate.html -share/doc/db4/api_cxx/db_class.html -share/doc/db4/api_cxx/db_close.html -share/doc/db4/api_cxx/db_cursor.html -share/doc/db4/api_cxx/db_del.html -share/doc/db4/api_cxx/db_err.html -share/doc/db4/api_cxx/db_fd.html -share/doc/db4/api_cxx/db_get.html -share/doc/db4/api_cxx/db_get_byteswapped.html -share/doc/db4/api_cxx/db_get_type.html -share/doc/db4/api_cxx/db_join.html -share/doc/db4/api_cxx/db_key_range.html -share/doc/db4/api_cxx/db_open.html -share/doc/db4/api_cxx/db_put.html -share/doc/db4/api_cxx/db_remove.html -share/doc/db4/api_cxx/db_rename.html -share/doc/db4/api_cxx/db_set_alloc.html -share/doc/db4/api_cxx/db_set_append_recno.html -share/doc/db4/api_cxx/db_set_bt_compare.html -share/doc/db4/api_cxx/db_set_bt_minkey.html -share/doc/db4/api_cxx/db_set_bt_prefix.html -share/doc/db4/api_cxx/db_set_cachesize.html -share/doc/db4/api_cxx/db_set_dup_compare.html -share/doc/db4/api_cxx/db_set_errcall.html -share/doc/db4/api_cxx/db_set_errfile.html -share/doc/db4/api_cxx/db_set_errpfx.html -share/doc/db4/api_cxx/db_set_feedback.html -share/doc/db4/api_cxx/db_set_flags.html -share/doc/db4/api_cxx/db_set_h_ffactor.html -share/doc/db4/api_cxx/db_set_h_hash.html -share/doc/db4/api_cxx/db_set_h_nelem.html -share/doc/db4/api_cxx/db_set_lorder.html -share/doc/db4/api_cxx/db_set_pagesize.html -share/doc/db4/api_cxx/db_set_paniccall.html -share/doc/db4/api_cxx/db_set_q_extentsize.html -share/doc/db4/api_cxx/db_set_re_delim.html -share/doc/db4/api_cxx/db_set_re_len.html -share/doc/db4/api_cxx/db_set_re_pad.html -share/doc/db4/api_cxx/db_set_re_source.html -share/doc/db4/api_cxx/db_stat.html -share/doc/db4/api_cxx/db_sync.html -share/doc/db4/api_cxx/db_truncate.html -share/doc/db4/api_cxx/db_upgrade.html -share/doc/db4/api_cxx/db_verify.html -share/doc/db4/api_cxx/dbc_class.html -share/doc/db4/api_cxx/dbc_close.html -share/doc/db4/api_cxx/dbc_count.html -share/doc/db4/api_cxx/dbc_del.html -share/doc/db4/api_cxx/dbc_dup.html -share/doc/db4/api_cxx/dbc_get.html -share/doc/db4/api_cxx/dbc_put.html -share/doc/db4/api_cxx/dbenv_class.html -share/doc/db4/api_cxx/dbt_bulk.html -share/doc/db4/api_cxx/dbt_class.html -share/doc/db4/api_cxx/env_close.html -share/doc/db4/api_cxx/env_err.html -share/doc/db4/api_cxx/env_open.html -share/doc/db4/api_cxx/env_remove.html -share/doc/db4/api_cxx/env_set_alloc.html -share/doc/db4/api_cxx/env_set_cachesize.html -share/doc/db4/api_cxx/env_set_data_dir.html -share/doc/db4/api_cxx/env_set_errcall.html -share/doc/db4/api_cxx/env_set_errfile.html -share/doc/db4/api_cxx/env_set_error_stream.html -share/doc/db4/api_cxx/env_set_errpfx.html -share/doc/db4/api_cxx/env_set_feedback.html -share/doc/db4/api_cxx/env_set_flags.html -share/doc/db4/api_cxx/env_set_lg_bsize.html -share/doc/db4/api_cxx/env_set_lg_dir.html -share/doc/db4/api_cxx/env_set_lg_max.html -share/doc/db4/api_cxx/env_set_lg_regionmax.html -share/doc/db4/api_cxx/env_set_lk_conflicts.html -share/doc/db4/api_cxx/env_set_lk_detect.html -share/doc/db4/api_cxx/env_set_lk_max_lockers.html -share/doc/db4/api_cxx/env_set_lk_max_locks.html -share/doc/db4/api_cxx/env_set_lk_max_objects.html -share/doc/db4/api_cxx/env_set_mp_mmapsize.html -share/doc/db4/api_cxx/env_set_paniccall.html -share/doc/db4/api_cxx/env_set_rec_init.html -share/doc/db4/api_cxx/env_set_rpc_server.html -share/doc/db4/api_cxx/env_set_shm_key.html -share/doc/db4/api_cxx/env_set_tas_spins.html -share/doc/db4/api_cxx/env_set_timeout.html -share/doc/db4/api_cxx/env_set_tmp_dir.html -share/doc/db4/api_cxx/env_set_tx_max.html -share/doc/db4/api_cxx/env_set_tx_recover.html -share/doc/db4/api_cxx/env_set_tx_timestamp.html -share/doc/db4/api_cxx/env_set_verbose.html -share/doc/db4/api_cxx/env_strerror.html -share/doc/db4/api_cxx/env_version.html -share/doc/db4/api_cxx/except_class.html -share/doc/db4/api_cxx/get_dbt.html -share/doc/db4/api_cxx/get_errno.html -share/doc/db4/api_cxx/lock_class.html -share/doc/db4/api_cxx/lock_detect.html -share/doc/db4/api_cxx/lock_get.html -share/doc/db4/api_cxx/lock_id.html -share/doc/db4/api_cxx/lock_id_free.html -share/doc/db4/api_cxx/lock_put.html -share/doc/db4/api_cxx/lock_stat.html -share/doc/db4/api_cxx/lock_vec.html -share/doc/db4/api_cxx/log_archive.html -share/doc/db4/api_cxx/log_compare.html -share/doc/db4/api_cxx/log_cursor.html -share/doc/db4/api_cxx/log_file.html -share/doc/db4/api_cxx/log_flush.html -share/doc/db4/api_cxx/log_put.html -share/doc/db4/api_cxx/log_register.html -share/doc/db4/api_cxx/log_stat.html -share/doc/db4/api_cxx/log_unregister.html -share/doc/db4/api_cxx/logc_class.html -share/doc/db4/api_cxx/logc_close.html -share/doc/db4/api_cxx/logc_get.html -share/doc/db4/api_cxx/lsn_class.html -share/doc/db4/api_cxx/mem_class.html -share/doc/db4/api_cxx/memp_fclose.html -share/doc/db4/api_cxx/memp_fcreate.html -share/doc/db4/api_cxx/memp_fget.html -share/doc/db4/api_cxx/memp_fopen.html -share/doc/db4/api_cxx/memp_fput.html -share/doc/db4/api_cxx/memp_fset.html -share/doc/db4/api_cxx/memp_fsync.html -share/doc/db4/api_cxx/memp_register.html -share/doc/db4/api_cxx/memp_set_clear_len.html -share/doc/db4/api_cxx/memp_set_fileid.html -share/doc/db4/api_cxx/memp_set_ftype.html -share/doc/db4/api_cxx/memp_set_lsn_offset.html -share/doc/db4/api_cxx/memp_set_pgcookie.html -share/doc/db4/api_cxx/memp_stat.html -share/doc/db4/api_cxx/memp_sync.html -share/doc/db4/api_cxx/memp_trickle.html -share/doc/db4/api_cxx/mempfile_class.html -share/doc/db4/api_cxx/pindex.src -share/doc/db4/api_cxx/rep_elect.html -share/doc/db4/api_cxx/rep_message.html -share/doc/db4/api_cxx/rep_start.html -share/doc/db4/api_cxx/rep_transport.html -share/doc/db4/api_cxx/txn_abort.html -share/doc/db4/api_cxx/txn_begin.html -share/doc/db4/api_cxx/txn_checkpoint.html -share/doc/db4/api_cxx/txn_class.html -share/doc/db4/api_cxx/txn_commit.html -share/doc/db4/api_cxx/txn_discard.html -share/doc/db4/api_cxx/txn_id.html -share/doc/db4/api_cxx/txn_prepare.html -share/doc/db4/api_cxx/txn_recover.html -share/doc/db4/api_cxx/txn_set_timeout.html -share/doc/db4/api_cxx/txn_stat.html -share/doc/db4/api_cxx/what.html -share/doc/db4/api_java/c_index.html -share/doc/db4/api_java/db_associate.html -share/doc/db4/api_java/db_class.html -share/doc/db4/api_java/db_close.html -share/doc/db4/api_java/db_cursor.html -share/doc/db4/api_java/db_del.html -share/doc/db4/api_java/db_fd.html -share/doc/db4/api_java/db_get.html -share/doc/db4/api_java/db_get_byteswapped.html -share/doc/db4/api_java/db_get_type.html -share/doc/db4/api_java/db_join.html -share/doc/db4/api_java/db_key_range.html -share/doc/db4/api_java/db_open.html -share/doc/db4/api_java/db_put.html -share/doc/db4/api_java/db_remove.html -share/doc/db4/api_java/db_rename.html -share/doc/db4/api_java/db_set_append_recno.html -share/doc/db4/api_java/db_set_bt_compare.html -share/doc/db4/api_java/db_set_bt_minkey.html -share/doc/db4/api_java/db_set_bt_prefix.html -share/doc/db4/api_java/db_set_cachesize.html -share/doc/db4/api_java/db_set_dup_compare.html -share/doc/db4/api_java/db_set_errcall.html -share/doc/db4/api_java/db_set_errpfx.html -share/doc/db4/api_java/db_set_feedback.html -share/doc/db4/api_java/db_set_flags.html -share/doc/db4/api_java/db_set_h_ffactor.html -share/doc/db4/api_java/db_set_h_hash.html -share/doc/db4/api_java/db_set_h_nelem.html -share/doc/db4/api_java/db_set_lorder.html -share/doc/db4/api_java/db_set_pagesize.html -share/doc/db4/api_java/db_set_q_extentsize.html -share/doc/db4/api_java/db_set_re_delim.html -share/doc/db4/api_java/db_set_re_len.html -share/doc/db4/api_java/db_set_re_pad.html -share/doc/db4/api_java/db_set_re_source.html -share/doc/db4/api_java/db_stat.html -share/doc/db4/api_java/db_sync.html -share/doc/db4/api_java/db_truncate.html -share/doc/db4/api_java/db_upgrade.html -share/doc/db4/api_java/db_verify.html -share/doc/db4/api_java/dbc_class.html -share/doc/db4/api_java/dbc_close.html -share/doc/db4/api_java/dbc_count.html -share/doc/db4/api_java/dbc_del.html -share/doc/db4/api_java/dbc_dup.html -share/doc/db4/api_java/dbc_get.html -share/doc/db4/api_java/dbc_put.html -share/doc/db4/api_java/dbenv_class.html -share/doc/db4/api_java/dbt_bulk_class.html -share/doc/db4/api_java/dbt_class.html -share/doc/db4/api_java/deadlock_class.html -share/doc/db4/api_java/env_close.html -share/doc/db4/api_java/env_open.html -share/doc/db4/api_java/env_remove.html -share/doc/db4/api_java/env_set_cachesize.html -share/doc/db4/api_java/env_set_data_dir.html -share/doc/db4/api_java/env_set_errcall.html -share/doc/db4/api_java/env_set_error_stream.html -share/doc/db4/api_java/env_set_errpfx.html -share/doc/db4/api_java/env_set_feedback.html -share/doc/db4/api_java/env_set_flags.html -share/doc/db4/api_java/env_set_lg_bsize.html -share/doc/db4/api_java/env_set_lg_dir.html -share/doc/db4/api_java/env_set_lg_max.html -share/doc/db4/api_java/env_set_lg_regionmax.html -share/doc/db4/api_java/env_set_lk_conflicts.html -share/doc/db4/api_java/env_set_lk_detect.html -share/doc/db4/api_java/env_set_lk_max_lockers.html -share/doc/db4/api_java/env_set_lk_max_locks.html -share/doc/db4/api_java/env_set_lk_max_objects.html -share/doc/db4/api_java/env_set_mp_mmapsize.html -share/doc/db4/api_java/env_set_rec_init.html -share/doc/db4/api_java/env_set_rpc_server.html -share/doc/db4/api_java/env_set_shm_key.html -share/doc/db4/api_java/env_set_tas_spins.html -share/doc/db4/api_java/env_set_timeout.html -share/doc/db4/api_java/env_set_tmp_dir.html -share/doc/db4/api_java/env_set_tx_max.html -share/doc/db4/api_java/env_set_tx_recover.html -share/doc/db4/api_java/env_set_tx_timestamp.html -share/doc/db4/api_java/env_set_verbose.html -share/doc/db4/api_java/env_strerror.html -share/doc/db4/api_java/env_version.html -share/doc/db4/api_java/except_class.html -share/doc/db4/api_java/get_dbt.html -share/doc/db4/api_java/get_errno.html -share/doc/db4/api_java/java_pindex.html -share/doc/db4/api_java/lock_class.html -share/doc/db4/api_java/lock_detect.html -share/doc/db4/api_java/lock_get.html -share/doc/db4/api_java/lock_id.html -share/doc/db4/api_java/lock_id_free.html -share/doc/db4/api_java/lock_put.html -share/doc/db4/api_java/lock_stat.html -share/doc/db4/api_java/lock_vec.html -share/doc/db4/api_java/log_archive.html -share/doc/db4/api_java/log_compare.html -share/doc/db4/api_java/log_cursor.html -share/doc/db4/api_java/log_file.html -share/doc/db4/api_java/log_flush.html -share/doc/db4/api_java/log_put.html -share/doc/db4/api_java/log_register.html -share/doc/db4/api_java/log_stat.html -share/doc/db4/api_java/log_unregister.html -share/doc/db4/api_java/logc_class.html -share/doc/db4/api_java/logc_close.html -share/doc/db4/api_java/logc_get.html -share/doc/db4/api_java/lsn_class.html -share/doc/db4/api_java/mem_class.html -share/doc/db4/api_java/memp_fclose.html -share/doc/db4/api_java/memp_fopen.html -share/doc/db4/api_java/memp_fsync.html -share/doc/db4/api_java/memp_register.html -share/doc/db4/api_java/memp_stat.html -share/doc/db4/api_java/memp_sync.html -share/doc/db4/api_java/memp_trickle.html -share/doc/db4/api_java/pindex.src -share/doc/db4/api_java/rep_elect.html -share/doc/db4/api_java/rep_message.html -share/doc/db4/api_java/rep_start.html -share/doc/db4/api_java/rep_transport.html -share/doc/db4/api_java/runrec_class.html -share/doc/db4/api_java/txn_abort.html -share/doc/db4/api_java/txn_begin.html -share/doc/db4/api_java/txn_checkpoint.html -share/doc/db4/api_java/txn_class.html -share/doc/db4/api_java/txn_commit.html -share/doc/db4/api_java/txn_discard.html -share/doc/db4/api_java/txn_id.html -share/doc/db4/api_java/txn_prepare.html -share/doc/db4/api_java/txn_recover.html -share/doc/db4/api_java/txn_set_timeout.html -share/doc/db4/api_java/txn_stat.html -share/doc/db4/api_tcl/db_close.html -share/doc/db4/api_tcl/db_count.html -share/doc/db4/api_tcl/db_cursor.html -share/doc/db4/api_tcl/db_del.html -share/doc/db4/api_tcl/db_get.html -share/doc/db4/api_tcl/db_get_join.html -share/doc/db4/api_tcl/db_get_type.html -share/doc/db4/api_tcl/db_is_byteswapped.html -share/doc/db4/api_tcl/db_join.html -share/doc/db4/api_tcl/db_open.html -share/doc/db4/api_tcl/db_put.html -share/doc/db4/api_tcl/db_remove.html -share/doc/db4/api_tcl/db_rename.html -share/doc/db4/api_tcl/db_stat.html -share/doc/db4/api_tcl/db_sync.html -share/doc/db4/api_tcl/db_truncate.html -share/doc/db4/api_tcl/dbc_close.html -share/doc/db4/api_tcl/dbc_del.html -share/doc/db4/api_tcl/dbc_dup.html -share/doc/db4/api_tcl/dbc_get.html -share/doc/db4/api_tcl/dbc_put.html -share/doc/db4/api_tcl/env_close.html -share/doc/db4/api_tcl/env_open.html -share/doc/db4/api_tcl/env_remove.html -share/doc/db4/api_tcl/pindex.src -share/doc/db4/api_tcl/tcl_index.html -share/doc/db4/api_tcl/tcl_pindex.html -share/doc/db4/api_tcl/txn.html -share/doc/db4/api_tcl/txn_abort.html -share/doc/db4/api_tcl/txn_commit.html -share/doc/db4/api_tcl/version.html -share/doc/db4/images/api.gif -share/doc/db4/images/next.gif -share/doc/db4/images/prev.gif -share/doc/db4/images/ps.gif -share/doc/db4/images/ref.gif -share/doc/db4/images/sleepycat.gif -share/doc/db4/index.html -share/doc/db4/ref/am/close.html -share/doc/db4/ref/am/count.html -share/doc/db4/ref/am/curclose.html -share/doc/db4/ref/am/curdel.html -share/doc/db4/ref/am/curdup.html -share/doc/db4/ref/am/curget.html -share/doc/db4/ref/am/curput.html -share/doc/db4/ref/am/cursor.html -share/doc/db4/ref/am/delete.html -share/doc/db4/ref/am/get.html -share/doc/db4/ref/am/join.html -share/doc/db4/ref/am/open.html -share/doc/db4/ref/am/opensub.html -share/doc/db4/ref/am/ops.html -share/doc/db4/ref/am/put.html -share/doc/db4/ref/am/second.html -share/doc/db4/ref/am/stat.html -share/doc/db4/ref/am/sync.html -share/doc/db4/ref/am/truncate.html -share/doc/db4/ref/am/upgrade.html -share/doc/db4/ref/am/verify.html -share/doc/db4/ref/am_conf/bt_compare.html -share/doc/db4/ref/am_conf/bt_minkey.html -share/doc/db4/ref/am_conf/bt_prefix.html -share/doc/db4/ref/am_conf/bt_recnum.html -share/doc/db4/ref/am_conf/byteorder.html -share/doc/db4/ref/am_conf/cachesize.html -share/doc/db4/ref/am_conf/dup.html -share/doc/db4/ref/am_conf/extentsize.html -share/doc/db4/ref/am_conf/h_ffactor.html -share/doc/db4/ref/am_conf/h_hash.html -share/doc/db4/ref/am_conf/h_nelem.html -share/doc/db4/ref/am_conf/intro.html -share/doc/db4/ref/am_conf/logrec.html -share/doc/db4/ref/am_conf/malloc.html -share/doc/db4/ref/am_conf/pagesize.html -share/doc/db4/ref/am_conf/re_source.html -share/doc/db4/ref/am_conf/recno.html -share/doc/db4/ref/am_conf/renumber.html -share/doc/db4/ref/am_conf/select.html -share/doc/db4/ref/am_misc/align.html -share/doc/db4/ref/am_misc/dbsizes.html -share/doc/db4/ref/am_misc/diskspace.html -share/doc/db4/ref/am_misc/error.html -share/doc/db4/ref/am_misc/faq.html -share/doc/db4/ref/am_misc/get_bulk.html -share/doc/db4/ref/am_misc/partial.html -share/doc/db4/ref/am_misc/perm.html -share/doc/db4/ref/am_misc/stability.html -share/doc/db4/ref/am_misc/tune.html -share/doc/db4/ref/arch/apis.html -share/doc/db4/ref/arch/bigpic.gif -share/doc/db4/ref/arch/bigpic.html -share/doc/db4/ref/arch/progmodel.html -share/doc/db4/ref/arch/script.html -share/doc/db4/ref/arch/smallpic.gif -share/doc/db4/ref/arch/utilities.html -share/doc/db4/ref/build_unix/aix.html -share/doc/db4/ref/build_unix/conf.html -share/doc/db4/ref/build_unix/embedix.html -share/doc/db4/ref/build_unix/flags.html -share/doc/db4/ref/build_unix/freebsd.html -share/doc/db4/ref/build_unix/hpux.html -share/doc/db4/ref/build_unix/install.html -share/doc/db4/ref/build_unix/intro.html -share/doc/db4/ref/build_unix/irix.html -share/doc/db4/ref/build_unix/linux.html -share/doc/db4/ref/build_unix/macosx.html -share/doc/db4/ref/build_unix/notes.html -share/doc/db4/ref/build_unix/osf1.html -share/doc/db4/ref/build_unix/qnx.html -share/doc/db4/ref/build_unix/sco.html -share/doc/db4/ref/build_unix/shlib.html -share/doc/db4/ref/build_unix/solaris.html -share/doc/db4/ref/build_unix/sunos.html -share/doc/db4/ref/build_unix/test.html -share/doc/db4/ref/build_unix/ultrix.html -share/doc/db4/ref/build_vxworks/faq.html -share/doc/db4/ref/build_vxworks/intro.html -share/doc/db4/ref/build_vxworks/introae.html -share/doc/db4/ref/build_vxworks/notes.html -share/doc/db4/ref/build_win/faq.html -share/doc/db4/ref/build_win/intro.html -share/doc/db4/ref/build_win/notes.html -share/doc/db4/ref/build_win/test.html -share/doc/db4/ref/cam/intro.html -share/doc/db4/ref/debug/common.html -share/doc/db4/ref/debug/compile.html -share/doc/db4/ref/debug/intro.html -share/doc/db4/ref/debug/printlog.html -share/doc/db4/ref/debug/runtime.html -share/doc/db4/ref/distrib/layout.html -share/doc/db4/ref/dumpload/format.html -share/doc/db4/ref/dumpload/text.html -share/doc/db4/ref/dumpload/utility.html -share/doc/db4/ref/env/create.html -share/doc/db4/ref/env/error.html -share/doc/db4/ref/env/faq.html -share/doc/db4/ref/env/intro.html -share/doc/db4/ref/env/naming.html -share/doc/db4/ref/env/open.html -share/doc/db4/ref/env/region.html -share/doc/db4/ref/env/remote.html -share/doc/db4/ref/env/security.html -share/doc/db4/ref/install/file.html -share/doc/db4/ref/install/magic.s5.be.txt -share/doc/db4/ref/install/magic.s5.le.txt -share/doc/db4/ref/install/magic.txt -share/doc/db4/ref/install/multiple.html -share/doc/db4/ref/install/rpm.html -share/doc/db4/ref/intro/data.html -share/doc/db4/ref/intro/dbis.html -share/doc/db4/ref/intro/dbisnot.html -share/doc/db4/ref/intro/distrib.html -share/doc/db4/ref/intro/need.html -share/doc/db4/ref/intro/products.html -share/doc/db4/ref/intro/terrain.html -share/doc/db4/ref/intro/what.html -share/doc/db4/ref/intro/where.html -share/doc/db4/ref/java/compat.html -share/doc/db4/ref/java/conf.html -share/doc/db4/ref/java/faq.html -share/doc/db4/ref/java/program.html -share/doc/db4/ref/lock/am_conv.html -share/doc/db4/ref/lock/cam_conv.html -share/doc/db4/ref/lock/config.html -share/doc/db4/ref/lock/dead.html -share/doc/db4/ref/lock/intro.html -share/doc/db4/ref/lock/max.html -share/doc/db4/ref/lock/nondb.html -share/doc/db4/ref/lock/notxn.html -share/doc/db4/ref/lock/page.html -share/doc/db4/ref/lock/stdmode.html -share/doc/db4/ref/lock/timeout.html -share/doc/db4/ref/lock/twopl.html -share/doc/db4/ref/log/config.html -share/doc/db4/ref/log/intro.html -share/doc/db4/ref/log/limits.html -share/doc/db4/ref/mp/config.html -share/doc/db4/ref/mp/intro.html -share/doc/db4/ref/perl/intro.html -share/doc/db4/ref/pindex.src -share/doc/db4/ref/program/appsignals.html -share/doc/db4/ref/program/compatible.html -share/doc/db4/ref/program/copy.html -share/doc/db4/ref/program/environ.html -share/doc/db4/ref/program/errorret.html -share/doc/db4/ref/program/extending.html -share/doc/db4/ref/program/mt.html -share/doc/db4/ref/program/namespace.html -share/doc/db4/ref/program/runtime.html -share/doc/db4/ref/program/scope.html -share/doc/db4/ref/program/solaris.txt -share/doc/db4/ref/refs/bdb_usenix.html -share/doc/db4/ref/refs/bdb_usenix.ps -share/doc/db4/ref/refs/embedded.html -share/doc/db4/ref/refs/hash_usenix.ps -share/doc/db4/ref/refs/libtp_usenix.ps -share/doc/db4/ref/refs/refs.html -share/doc/db4/ref/refs/witold.html -share/doc/db4/ref/rep/app.html -share/doc/db4/ref/rep/comm.html -share/doc/db4/ref/rep/elect.html -share/doc/db4/ref/rep/ex.html -share/doc/db4/ref/rep/ex_comm.html -share/doc/db4/ref/rep/ex_rq.html -share/doc/db4/ref/rep/faq.html -share/doc/db4/ref/rep/id.html -share/doc/db4/ref/rep/init.html -share/doc/db4/ref/rep/intro.html -share/doc/db4/ref/rep/logonly.html -share/doc/db4/ref/rep/newsite.html -share/doc/db4/ref/rep/partition.html -share/doc/db4/ref/rep/pri.html -share/doc/db4/ref/rep/trans.html -share/doc/db4/ref/rpc/client.html -share/doc/db4/ref/rpc/intro.html -share/doc/db4/ref/rpc/server.html -share/doc/db4/ref/sendmail/intro.html -share/doc/db4/ref/simple_tut/close.html -share/doc/db4/ref/simple_tut/del.html -share/doc/db4/ref/simple_tut/errors.html -share/doc/db4/ref/simple_tut/example.cs -share/doc/db4/ref/simple_tut/get.html -share/doc/db4/ref/simple_tut/handles.html -share/doc/db4/ref/simple_tut/intro.html -share/doc/db4/ref/simple_tut/keydata.html -share/doc/db4/ref/simple_tut/open.html -share/doc/db4/ref/simple_tut/put.html -share/doc/db4/ref/tcl/error.html -share/doc/db4/ref/tcl/faq.html -share/doc/db4/ref/tcl/intro.html -share/doc/db4/ref/tcl/program.html -share/doc/db4/ref/tcl/using.html -share/doc/db4/ref/test/faq.html -share/doc/db4/ref/test/run.html -share/doc/db4/ref/transapp/admin.html -share/doc/db4/ref/transapp/app.html -share/doc/db4/ref/transapp/archival.html -share/doc/db4/ref/transapp/checkpoint.html -share/doc/db4/ref/transapp/cursor.html -share/doc/db4/ref/transapp/data_open.html -share/doc/db4/ref/transapp/deadlock.html -share/doc/db4/ref/transapp/env_open.html -share/doc/db4/ref/transapp/faq.html -share/doc/db4/ref/transapp/filesys.html -share/doc/db4/ref/transapp/hotfail.html -share/doc/db4/ref/transapp/inc.html -share/doc/db4/ref/transapp/intro.html -share/doc/db4/ref/transapp/logfile.html -share/doc/db4/ref/transapp/nested.html -share/doc/db4/ref/transapp/put.html -share/doc/db4/ref/transapp/read.html -share/doc/db4/ref/transapp/reclimit.html -share/doc/db4/ref/transapp/recovery.html -share/doc/db4/ref/transapp/term.html -share/doc/db4/ref/transapp/throughput.html -share/doc/db4/ref/transapp/transapp.cs -share/doc/db4/ref/transapp/tune.html -share/doc/db4/ref/transapp/why.html -share/doc/db4/ref/transapp/writetest.cs -share/doc/db4/ref/txn/config.html -share/doc/db4/ref/txn/intro.html -share/doc/db4/ref/txn/limits.html -share/doc/db4/ref/txn/other.html -share/doc/db4/ref/upgrade.2.0/convert.html -share/doc/db4/ref/upgrade.2.0/disk.html -share/doc/db4/ref/upgrade.2.0/intro.html -share/doc/db4/ref/upgrade.2.0/system.html -share/doc/db4/ref/upgrade.2.0/toc.html -share/doc/db4/ref/upgrade.3.0/close.html -share/doc/db4/ref/upgrade.3.0/cxx.html -share/doc/db4/ref/upgrade.3.0/db.html -share/doc/db4/ref/upgrade.3.0/db_cxx.html -share/doc/db4/ref/upgrade.3.0/dbenv.html -share/doc/db4/ref/upgrade.3.0/dbenv_cxx.html -share/doc/db4/ref/upgrade.3.0/dbinfo.html -share/doc/db4/ref/upgrade.3.0/disk.html -share/doc/db4/ref/upgrade.3.0/eacces.html -share/doc/db4/ref/upgrade.3.0/eagain.html -share/doc/db4/ref/upgrade.3.0/envopen.html -share/doc/db4/ref/upgrade.3.0/func.html -share/doc/db4/ref/upgrade.3.0/intro.html -share/doc/db4/ref/upgrade.3.0/java.html -share/doc/db4/ref/upgrade.3.0/join.html -share/doc/db4/ref/upgrade.3.0/jump_set.html -share/doc/db4/ref/upgrade.3.0/lock_detect.html -share/doc/db4/ref/upgrade.3.0/lock_notheld.html -share/doc/db4/ref/upgrade.3.0/lock_put.html -share/doc/db4/ref/upgrade.3.0/lock_stat.html -share/doc/db4/ref/upgrade.3.0/log_register.html -share/doc/db4/ref/upgrade.3.0/log_stat.html -share/doc/db4/ref/upgrade.3.0/memp_stat.html -share/doc/db4/ref/upgrade.3.0/open.html -share/doc/db4/ref/upgrade.3.0/rmw.html -share/doc/db4/ref/upgrade.3.0/stat.html -share/doc/db4/ref/upgrade.3.0/toc.html -share/doc/db4/ref/upgrade.3.0/txn_begin.html -share/doc/db4/ref/upgrade.3.0/txn_commit.html -share/doc/db4/ref/upgrade.3.0/txn_stat.html -share/doc/db4/ref/upgrade.3.0/value_set.html -share/doc/db4/ref/upgrade.3.0/xa.html -share/doc/db4/ref/upgrade.3.1/btstat.html -share/doc/db4/ref/upgrade.3.1/config.html -share/doc/db4/ref/upgrade.3.1/disk.html -share/doc/db4/ref/upgrade.3.1/dup.html -share/doc/db4/ref/upgrade.3.1/env.html -share/doc/db4/ref/upgrade.3.1/intro.html -share/doc/db4/ref/upgrade.3.1/log_register.html -share/doc/db4/ref/upgrade.3.1/logalloc.html -share/doc/db4/ref/upgrade.3.1/memp_register.html -share/doc/db4/ref/upgrade.3.1/put.html -share/doc/db4/ref/upgrade.3.1/set_feedback.html -share/doc/db4/ref/upgrade.3.1/set_paniccall.html -share/doc/db4/ref/upgrade.3.1/set_tx_recover.html -share/doc/db4/ref/upgrade.3.1/sysmem.html -share/doc/db4/ref/upgrade.3.1/tcl.html -share/doc/db4/ref/upgrade.3.1/tmp.html -share/doc/db4/ref/upgrade.3.1/toc.html -share/doc/db4/ref/upgrade.3.1/txn_check.html -share/doc/db4/ref/upgrade.3.2/callback.html -share/doc/db4/ref/upgrade.3.2/db_dump.html -share/doc/db4/ref/upgrade.3.2/disk.html -share/doc/db4/ref/upgrade.3.2/handle.html -share/doc/db4/ref/upgrade.3.2/incomplete.html -share/doc/db4/ref/upgrade.3.2/intro.html -share/doc/db4/ref/upgrade.3.2/mutexlock.html -share/doc/db4/ref/upgrade.3.2/notfound.html -share/doc/db4/ref/upgrade.3.2/renumber.html -share/doc/db4/ref/upgrade.3.2/set_flags.html -share/doc/db4/ref/upgrade.3.2/toc.html -share/doc/db4/ref/upgrade.3.2/tx_recover.html -share/doc/db4/ref/upgrade.3.3/alloc.html -share/doc/db4/ref/upgrade.3.3/bigfile.html -share/doc/db4/ref/upgrade.3.3/conflict.html -share/doc/db4/ref/upgrade.3.3/disk.html -share/doc/db4/ref/upgrade.3.3/getswap.html -share/doc/db4/ref/upgrade.3.3/gettype.html -share/doc/db4/ref/upgrade.3.3/intro.html -share/doc/db4/ref/upgrade.3.3/memp_fget.html -share/doc/db4/ref/upgrade.3.3/rpc.html -share/doc/db4/ref/upgrade.3.3/shared.html -share/doc/db4/ref/upgrade.3.3/toc.html -share/doc/db4/ref/upgrade.3.3/txn_prepare.html -share/doc/db4/ref/upgrade.4.0/asr.html -share/doc/db4/ref/upgrade.4.0/cxx.html -share/doc/db4/ref/upgrade.4.0/deadlock.html -share/doc/db4/ref/upgrade.4.0/disk.html -share/doc/db4/ref/upgrade.4.0/env.html -share/doc/db4/ref/upgrade.4.0/intro.html -share/doc/db4/ref/upgrade.4.0/java.html -share/doc/db4/ref/upgrade.4.0/lock.html -share/doc/db4/ref/upgrade.4.0/lock_id_free.html -share/doc/db4/ref/upgrade.4.0/log.html -share/doc/db4/ref/upgrade.4.0/mp.html -share/doc/db4/ref/upgrade.4.0/rpc.html -share/doc/db4/ref/upgrade.4.0/set_lk_max.html -share/doc/db4/ref/upgrade.4.0/toc.html -share/doc/db4/ref/upgrade.4.0/txn.html -share/doc/db4/ref/upgrade/process.html -share/doc/db4/ref/upgrade/version.html -share/doc/db4/ref/xa/build.html -share/doc/db4/ref/xa/faq.html -share/doc/db4/ref/xa/intro.html -share/doc/db4/ref/xa/xa_config.html -share/doc/db4/ref/xa/xa_intro.html -share/doc/db4/reftoc.html -share/doc/db4/sleepycat/contact.html -share/doc/db4/sleepycat/legal.html -share/doc/db4/sleepycat/license.html -share/doc/db4/utility/berkeley_db_svc.html -share/doc/db4/utility/db_archive.html -share/doc/db4/utility/db_checkpoint.html -share/doc/db4/utility/db_deadlock.html -share/doc/db4/utility/db_dump.html -share/doc/db4/utility/db_load.html -share/doc/db4/utility/db_printlog.html -share/doc/db4/utility/db_recover.html -share/doc/db4/utility/db_stat.html -share/doc/db4/utility/db_upgrade.html -share/doc/db4/utility/db_verify.html -share/doc/db4/utility/index.html -@dirrm include/db4 -@dirrm share/doc/db4/ref/am -@dirrm share/doc/db4/ref/am_conf -@dirrm share/doc/db4/ref/am_misc -@dirrm share/doc/db4/ref/arch -@dirrm share/doc/db4/ref/build_unix -@dirrm share/doc/db4/ref/build_vxworks -@dirrm share/doc/db4/ref/build_win -@dirrm share/doc/db4/ref/cam -@dirrm share/doc/db4/ref/debug -@dirrm share/doc/db4/ref/distrib -@dirrm share/doc/db4/ref/dumpload -@dirrm share/doc/db4/ref/env -@dirrm share/doc/db4/ref/install -@dirrm share/doc/db4/ref/intro -@dirrm share/doc/db4/ref/java -@dirrm share/doc/db4/ref/lock -@dirrm share/doc/db4/ref/log -@dirrm share/doc/db4/ref/mp -@dirrm share/doc/db4/ref/perl -@dirrm share/doc/db4/ref/program -@dirrm share/doc/db4/ref/refs -@dirrm share/doc/db4/ref/rep -@dirrm share/doc/db4/ref/rpc -@dirrm share/doc/db4/ref/sendmail -@dirrm share/doc/db4/ref/simple_tut -@dirrm share/doc/db4/ref/splash -@dirrm share/doc/db4/ref/tcl -@dirrm share/doc/db4/ref/test -@dirrm share/doc/db4/ref/transapp -@dirrm share/doc/db4/ref/txn -@dirrm share/doc/db4/ref/upgrade -@dirrm share/doc/db4/ref/upgrade.2.0 -@dirrm share/doc/db4/ref/upgrade.3.0 -@dirrm share/doc/db4/ref/upgrade.3.1 -@dirrm share/doc/db4/ref/upgrade.3.2 -@dirrm share/doc/db4/ref/upgrade.3.3 -@dirrm share/doc/db4/ref/upgrade.4.0 -@dirrm share/doc/db4/ref/xa -@dirrm share/doc/db4/ref -@dirrm share/doc/db4/sleepycat -@dirrm share/doc/db4/api_c -@dirrm share/doc/db4/api_java -@dirrm share/doc/db4/api_cxx -@dirrm share/doc/db4/utility -@dirrm share/doc/db4/api_tcl -@dirrm share/doc/db4/images -@dirrm share/doc/db4 diff --git a/databases/db46/Makefile b/databases/db46/Makefile deleted file mode 100644 index 11c5ca90cae7..000000000000 --- a/databases/db46/Makefile +++ /dev/null @@ -1,42 +0,0 @@ -# ports collection makefile for: Berkeley DB v4 -# Date created: 16 August 2000 -# Whom: Sergey Osokin aka oZZ <ozz@FreeBSD.org.ru> -# -# $FreeBSD$ -# - -PORTNAME= db4 -PORTVERSION= 4.0.14 -#PORTREVISION= 2 -#PORTEPOCH= 1 -CATEGORIES= databases -MASTER_SITES= http://www.sleepycat.com/update/${PORTVERSION}/ -DISTNAME= db-${PORTVERSION} -DIST_SUBDIR= bdb - -MAINTAINER= ozz@FreeBSD.org.ru - -#PATCH_SITES= ${MASTER_SITES} -#PATCHFILES= patch.${PORTVERSION}.1 patch.${PORTVERSION}.2 -#PATCH_DIST_STRIP= -d ${WRKDIR}/${DISTNAME} - -WRKSRC= ${WRKDIR}/${DISTNAME}/build_unix - -INSTALLS_SHLIB= yes -HAS_CONFIGURE= yes -CONFIGURE_SCRIPT= ../dist/configure -CONFIGURE_ARGS= --enable-compat185 \ - --enable-dump185 --enable-cxx \ - --enable-dynamic \ - --prefix=${PREFIX} \ - --includedir=${PREFIX}/include/db4 \ - --target=${ARCH}-unknown-freebsd${OSREL} - -pre-patch: - @${PERL} -pi -e 's|-lpthread|${PTHREAD_LIBS}|g' ${WRKSRC}/${CONFIGURE_SCRIPT} - -post-patch: - @${CHMOD} 755 ${WRKSRC}/${CONFIGURE_SCRIPT} - @${PERL} -pi -e "s|%%LOCALBASE%%|${LOCALBASE}|g" ${WRKSRC}/../dist/configure - -.include <bsd.port.mk> diff --git a/databases/db46/distinfo b/databases/db46/distinfo deleted file mode 100644 index 09f3d6b59aec..000000000000 --- a/databases/db46/distinfo +++ /dev/null @@ -1 +0,0 @@ -MD5 (bdb/db-4.0.14.tar.gz) = 12262c64fcd64b772e7cffad8e4d0ebc diff --git a/databases/db46/files/patch-dist::Makefile.in b/databases/db46/files/patch-dist::Makefile.in deleted file mode 100644 index 136ab161efdc..000000000000 --- a/databases/db46/files/patch-dist::Makefile.in +++ /dev/null @@ -1,135 +0,0 @@ ---- ../dist/Makefile.in.orig Sat Nov 10 01:48:45 2001 -+++ ../dist/Makefile.in Wed Dec 5 13:38:23 2001 -@@ -11,7 +11,7 @@ - bindir= @bindir@ - includedir=@includedir@ - libdir= @libdir@ --docdir= $(prefix)/docs -+docdir= $(prefix)/share/doc/db4 - - dmode= 755 - emode= 555 -@@ -45,6 +45,7 @@ - SOLINK= @MAKEFILE_SOLINK@ - SOFLAGS= @SOFLAGS@ - SOMAJOR= @DB_VERSION_MAJOR@ -+SOMINOR= @DB_VERSION_MINOR@ - SOVERSION= @DB_VERSION_MAJOR@.@DB_VERSION_MINOR@ - - ################################################## -@@ -60,13 +61,13 @@ - LIBS= @LIBS@ - LIBSO_LIBS= @LIBSO_LIBS@ - --libdb= libdb.a --libso_base= libdb --libso= $(libso_base)-$(SOVERSION).@SOSUFFIX@ --libso_static= $(libso_base)-$(SOVERSION).a --libso_target= $(libso_base)-$(SOVERSION).la -+libdb= libdb4.a -+libso_base= libdb4 -+libso= $(libso_base).@SOSUFFIX@ -+libso_static= $(libso_base).a -+libso_target= $(libso_base).la - libso_default= $(libso_base).@SOSUFFIX@ --libso_major= $(libso_base)-$(SOMAJOR).@SOSUFFIX@ -+libso_major= $(libso_base).@SOSUFFIX@.$(SOMINOR) - - ################################################## - # C++ API. -@@ -79,13 +80,13 @@ - XSOLINK= @MAKEFILE_XSOLINK@ - LIBXSO_LIBS= @LIBXSO_LIBS@ - --libcxx= libdb_cxx.a --libxso_base= libdb_cxx --libxso= $(libxso_base)-$(SOVERSION).@SOSUFFIX@ --libxso_static= $(libxso_base)-$(SOVERSION).a --libxso_target= $(libxso_base)-$(SOVERSION).la -+libcxx= libdb4_cxx.a -+libxso_base= libdb4_cxx -+libxso= $(libxso_base).@SOSUFFIX@ -+libxso_static= $(libxso_base).a -+libxso_target= $(libxso_base).la - libxso_default= $(libxso_base).@SOSUFFIX@ --libxso_major= $(libxso_base)-$(SOMAJOR).@SOSUFFIX@ -+libxso_major= $(libxso_base).@SOSUFFIX@.$(SOMINOR) - - ################################################## - # Java API. -@@ -235,8 +236,8 @@ - db_server_proc@o@ db_server_svc@o@ db_server_util@o@ gen_db_server@o@ - - UTIL_PROGS=\ -- @ADDITIONAL_PROGS@ db_archive db_checkpoint db_deadlock \ -- db_dump db_load db_printlog db_recover db_stat db_upgrade db_verify -+ @ADDITIONAL_PROGS@ db4_archive db4_checkpoint db4_deadlock \ -+ db4_dump db4_load db4_printlog db4_recover db4_stat db4_upgrade db4_verify - - ################################################## - # List of files installed into the library directory. -@@ -330,53 +331,53 @@ - $(RPC_SRV_OBJS) util_log@o@ $(DEF_LIB) $(LIBS) - $(POSTLINK) $@ - --db_archive: db_archive@o@ util_sig@o@ $(DEF_LIB) -+db4_archive: db_archive@o@ util_sig@o@ $(DEF_LIB) - $(CCLINK) -o $@ $(LDFLAGS) \ - db_archive@o@ util_sig@o@ $(DEF_LIB) $(LIBS) - $(POSTLINK) $@ - --db_checkpoint: db_checkpoint@o@ util_log@o@ util_sig@o@ $(DEF_LIB) -+db4_checkpoint: db_checkpoint@o@ util_log@o@ util_sig@o@ $(DEF_LIB) - $(CCLINK) -o $@ $(LDFLAGS) \ - db_checkpoint@o@ util_log@o@ util_sig@o@ $(DEF_LIB) $(LIBS) - $(POSTLINK) $@ - --db_deadlock: db_deadlock@o@ util_log@o@ util_sig@o@ $(DEF_LIB) -+db4_deadlock: db_deadlock@o@ util_log@o@ util_sig@o@ $(DEF_LIB) - $(CCLINK) -o $@ $(LDFLAGS) \ - db_deadlock@o@ util_log@o@ util_sig@o@ $(DEF_LIB) $(LIBS) - $(POSTLINK) $@ - --db_dump: db_dump@o@ util_sig@o@ $(DEF_LIB) -+db4_dump: db_dump@o@ util_sig@o@ $(DEF_LIB) - $(CCLINK) -o $@ $(LDFLAGS) db_dump@o@ util_sig@o@ $(DEF_LIB) $(LIBS) - $(POSTLINK) $@ - --db_dump185: db_dump185@o@ @LIBOBJS@ -+db4_dump185: db_dump185@o@ @LIBOBJS@ - $(CCLINK) -o $@ $(LDFLAGS) db_dump185@o@ @LIBOBJS@ $(DB185LIB) - $(POSTLINK) $@ - --db_load: db_load@o@ util_sig@o@ $(DEF_LIB) -+db4_load: db_load@o@ util_sig@o@ $(DEF_LIB) - $(CCLINK) -o $@ $(LDFLAGS) db_load@o@ util_sig@o@ $(DEF_LIB) $(LIBS) - $(POSTLINK) $@ - --db_printlog: db_printlog@o@ util_sig@o@ $(DEF_LIB) -+db4_printlog: db_printlog@o@ util_sig@o@ $(DEF_LIB) - $(CCLINK) -o $@ $(LDFLAGS) \ - db_printlog@o@ util_sig@o@ $(DEF_LIB) $(LIBS) - $(POSTLINK) $@ - --db_recover: db_recover@o@ util_sig@o@ $(DEF_LIB) -+db4_recover: db_recover@o@ util_sig@o@ $(DEF_LIB) - $(CCLINK) -o $@ $(LDFLAGS) \ - db_recover@o@ util_sig@o@ $(DEF_LIB) $(LIBS) - $(POSTLINK) $@ - --db_stat: db_stat@o@ util_sig@o@ $(DEF_LIB) -+db4_stat: db_stat@o@ util_sig@o@ $(DEF_LIB) - $(CCLINK) -o $@ $(LDFLAGS) db_stat@o@ util_sig@o@ $(DEF_LIB) $(LIBS) - $(POSTLINK) $@ - --db_upgrade: db_upgrade@o@ util_sig@o@ $(DEF_LIB) -+db4_upgrade: db_upgrade@o@ util_sig@o@ $(DEF_LIB) - $(CCLINK) -o $@ $(LDFLAGS) \ - db_upgrade@o@ util_sig@o@ $(DEF_LIB) $(LIBS) - $(POSTLINK) $@ - --db_verify: db_verify@o@ util_sig@o@ $(DEF_LIB) -+db4_verify: db_verify@o@ util_sig@o@ $(DEF_LIB) - $(CCLINK) -o $@ $(LDFLAGS) \ - db_verify@o@ util_sig@o@ $(DEF_LIB) $(LIBS) - $(POSTLINK) $@ diff --git a/databases/db46/files/patch-dist::configure b/databases/db46/files/patch-dist::configure deleted file mode 100644 index 4f2ed615df05..000000000000 --- a/databases/db46/files/patch-dist::configure +++ /dev/null @@ -1,24 +0,0 @@ ---- ../dist/configure.orig Wed Dec 5 13:14:02 2001 -+++ ../dist/configure Wed Dec 5 13:24:01 2001 -@@ -8794,10 +8794,10 @@ - INSTALLER="\$(LIBTOOL) --mode=install cp" - - MAKEFILE_CC="\$(LIBTOOL) --mode=compile ${MAKEFILE_CC}" --MAKEFILE_SOLINK="\$(LIBTOOL) --mode=link ${MAKEFILE_CCLINK} -avoid-version" -+MAKEFILE_SOLINK="\$(LIBTOOL) --mode=link ${MAKEFILE_CCLINK} -version-info ${DB_VERSION_MINOR}" - MAKEFILE_CCLINK="\$(LIBTOOL) --mode=link ${MAKEFILE_CCLINK}" - MAKEFILE_CXX="\$(LIBTOOL) --mode=compile ${MAKEFILE_CXX}" --MAKEFILE_XSOLINK="\$(LIBTOOL) --mode=link ${MAKEFILE_CXXLINK} -avoid-version" -+MAKEFILE_XSOLINK="\$(LIBTOOL) --mode=link ${MAKEFILE_CXXLINK} -version-info ${DB_VERSION_MINOR}" - MAKEFILE_CXXLINK="\$(LIBTOOL) --mode=link ${MAKEFILE_CXXLINK}" - - # Configure for shared libraries, static libraries, or both. If both are -@@ -9511,7 +9511,7 @@ - - # Optional utilities. - if test "$db_cv_dump185" = "yes"; then -- ADDITIONAL_PROGS="db_dump185 $ADDITIONAL_PROGS" -+ ADDITIONAL_PROGS="db4_dump185 $ADDITIONAL_PROGS" - fi - - # Checks for system/compiler characteristics. diff --git a/databases/db46/pkg-comment b/databases/db46/pkg-comment deleted file mode 100644 index 0ea96ff89521..000000000000 --- a/databases/db46/pkg-comment +++ /dev/null @@ -1 +0,0 @@ -The Berkeley DB package, revision 4 diff --git a/databases/db46/pkg-descr b/databases/db46/pkg-descr deleted file mode 100644 index a47006d1fdee..000000000000 --- a/databases/db46/pkg-descr +++ /dev/null @@ -1,13 +0,0 @@ -Revision 4 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 v4 -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 6568248aebb3..000000000000 --- a/databases/db46/pkg-plist +++ /dev/null @@ -1,898 +0,0 @@ -bin/db4_archive -bin/db4_checkpoint -bin/db4_deadlock -bin/db4_dump -bin/db4_dump185 -bin/db4_load -bin/db4_printlog -bin/db4_recover -bin/db4_stat -bin/db4_upgrade -bin/db4_verify -include/db4/cxx_common.h -include/db4/cxx_except.h -include/db4/db.h -include/db4/db_185.h -include/db4/db_cxx.h -lib/libdb4.a -lib/libdb4.la -lib/libdb4.so -lib/libdb4.so.0 -lib/libdb4_cxx.a -lib/libdb4_cxx.la -lib/libdb4_cxx.so -lib/libdb4_cxx.so.0 -share/doc/db4/api_c/c_index.html -share/doc/db4/api_c/c_pindex.html -share/doc/db4/api_c/db_associate.html -share/doc/db4/api_c/db_close.html -share/doc/db4/api_c/db_create.html -share/doc/db4/api_c/db_cursor.html -share/doc/db4/api_c/db_del.html -share/doc/db4/api_c/db_err.html -share/doc/db4/api_c/db_fd.html -share/doc/db4/api_c/db_get.html -share/doc/db4/api_c/db_get_byteswapped.html -share/doc/db4/api_c/db_get_type.html -share/doc/db4/api_c/db_join.html -share/doc/db4/api_c/db_key_range.html -share/doc/db4/api_c/db_lsn.html -share/doc/db4/api_c/db_open.html -share/doc/db4/api_c/db_put.html -share/doc/db4/api_c/db_remove.html -share/doc/db4/api_c/db_rename.html -share/doc/db4/api_c/db_set_alloc.html -share/doc/db4/api_c/db_set_append_recno.html -share/doc/db4/api_c/db_set_bt_compare.html -share/doc/db4/api_c/db_set_bt_minkey.html -share/doc/db4/api_c/db_set_bt_prefix.html -share/doc/db4/api_c/db_set_cachesize.html -share/doc/db4/api_c/db_set_dup_compare.html -share/doc/db4/api_c/db_set_errcall.html -share/doc/db4/api_c/db_set_errfile.html -share/doc/db4/api_c/db_set_errpfx.html -share/doc/db4/api_c/db_set_feedback.html -share/doc/db4/api_c/db_set_flags.html -share/doc/db4/api_c/db_set_h_ffactor.html -share/doc/db4/api_c/db_set_h_hash.html -share/doc/db4/api_c/db_set_h_nelem.html -share/doc/db4/api_c/db_set_lorder.html -share/doc/db4/api_c/db_set_pagesize.html -share/doc/db4/api_c/db_set_paniccall.html -share/doc/db4/api_c/db_set_q_extentsize.html -share/doc/db4/api_c/db_set_re_delim.html -share/doc/db4/api_c/db_set_re_len.html -share/doc/db4/api_c/db_set_re_pad.html -share/doc/db4/api_c/db_set_re_source.html -share/doc/db4/api_c/db_stat.html -share/doc/db4/api_c/db_sync.html -share/doc/db4/api_c/db_truncate.html -share/doc/db4/api_c/db_upgrade.html -share/doc/db4/api_c/db_verify.html -share/doc/db4/api_c/dbc_close.html -share/doc/db4/api_c/dbc_count.html -share/doc/db4/api_c/dbc_del.html -share/doc/db4/api_c/dbc_dup.html -share/doc/db4/api_c/dbc_get.html -share/doc/db4/api_c/dbc_put.html -share/doc/db4/api_c/dbm.html -share/doc/db4/api_c/dbt.html -share/doc/db4/api_c/dbt_bulk.html -share/doc/db4/api_c/env_close.html -share/doc/db4/api_c/env_create.html -share/doc/db4/api_c/env_err.html -share/doc/db4/api_c/env_open.html -share/doc/db4/api_c/env_remove.html -share/doc/db4/api_c/env_set_alloc.html -share/doc/db4/api_c/env_set_cachesize.html -share/doc/db4/api_c/env_set_data_dir.html -share/doc/db4/api_c/env_set_errcall.html -share/doc/db4/api_c/env_set_errfile.html -share/doc/db4/api_c/env_set_errpfx.html -share/doc/db4/api_c/env_set_feedback.html -share/doc/db4/api_c/env_set_flags.html -share/doc/db4/api_c/env_set_lg_bsize.html -share/doc/db4/api_c/env_set_lg_dir.html -share/doc/db4/api_c/env_set_lg_max.html -share/doc/db4/api_c/env_set_lg_regionmax.html -share/doc/db4/api_c/env_set_lk_conflicts.html -share/doc/db4/api_c/env_set_lk_detect.html -share/doc/db4/api_c/env_set_lk_max_lockers.html -share/doc/db4/api_c/env_set_lk_max_locks.html -share/doc/db4/api_c/env_set_lk_max_objects.html -share/doc/db4/api_c/env_set_mp_mmapsize.html -share/doc/db4/api_c/env_set_paniccall.html -share/doc/db4/api_c/env_set_rec_init.html -share/doc/db4/api_c/env_set_rpc_server.html -share/doc/db4/api_c/env_set_shm_key.html -share/doc/db4/api_c/env_set_tas_spins.html -share/doc/db4/api_c/env_set_timeout.html -share/doc/db4/api_c/env_set_tmp_dir.html -share/doc/db4/api_c/env_set_tx_max.html -share/doc/db4/api_c/env_set_tx_recover.html -share/doc/db4/api_c/env_set_tx_timestamp.html -share/doc/db4/api_c/env_set_verbose.html -share/doc/db4/api_c/env_strerror.html -share/doc/db4/api_c/env_version.html -share/doc/db4/api_c/hsearch.html -share/doc/db4/api_c/lock_detect.html -share/doc/db4/api_c/lock_get.html -share/doc/db4/api_c/lock_id.html -share/doc/db4/api_c/lock_id_free.html -share/doc/db4/api_c/lock_put.html -share/doc/db4/api_c/lock_stat.html -share/doc/db4/api_c/lock_vec.html -share/doc/db4/api_c/log_archive.html -share/doc/db4/api_c/log_compare.html -share/doc/db4/api_c/log_cursor.html -share/doc/db4/api_c/log_file.html -share/doc/db4/api_c/log_flush.html -share/doc/db4/api_c/log_put.html -share/doc/db4/api_c/log_register.html -share/doc/db4/api_c/log_stat.html -share/doc/db4/api_c/log_unregister.html -share/doc/db4/api_c/logc_close.html -share/doc/db4/api_c/logc_get.html -share/doc/db4/api_c/memp_fclose.html -share/doc/db4/api_c/memp_fcreate.html -share/doc/db4/api_c/memp_fget.html -share/doc/db4/api_c/memp_fopen.html -share/doc/db4/api_c/memp_fput.html -share/doc/db4/api_c/memp_fset.html -share/doc/db4/api_c/memp_fsync.html -share/doc/db4/api_c/memp_register.html -share/doc/db4/api_c/memp_set_clear_len.html -share/doc/db4/api_c/memp_set_fileid.html -share/doc/db4/api_c/memp_set_ftype.html -share/doc/db4/api_c/memp_set_lsn_offset.html -share/doc/db4/api_c/memp_set_pgcookie.html -share/doc/db4/api_c/memp_stat.html -share/doc/db4/api_c/memp_sync.html -share/doc/db4/api_c/memp_trickle.html -share/doc/db4/api_c/pindex.src -share/doc/db4/api_c/rep_elect.html -share/doc/db4/api_c/rep_message.html -share/doc/db4/api_c/rep_start.html -share/doc/db4/api_c/rep_transport.html -share/doc/db4/api_c/set_func_close.html -share/doc/db4/api_c/set_func_dirfree.html -share/doc/db4/api_c/set_func_dirlist.html -share/doc/db4/api_c/set_func_exists.html -share/doc/db4/api_c/set_func_free.html -share/doc/db4/api_c/set_func_fsync.html -share/doc/db4/api_c/set_func_ioinfo.html -share/doc/db4/api_c/set_func_malloc.html -share/doc/db4/api_c/set_func_map.html -share/doc/db4/api_c/set_func_open.html -share/doc/db4/api_c/set_func_read.html -share/doc/db4/api_c/set_func_realloc.html -share/doc/db4/api_c/set_func_rename.html -share/doc/db4/api_c/set_func_seek.html -share/doc/db4/api_c/set_func_sleep.html -share/doc/db4/api_c/set_func_unlink.html -share/doc/db4/api_c/set_func_unmap.html -share/doc/db4/api_c/set_func_write.html -share/doc/db4/api_c/set_func_yield.html -share/doc/db4/api_c/txn_abort.html -share/doc/db4/api_c/txn_begin.html -share/doc/db4/api_c/txn_checkpoint.html -share/doc/db4/api_c/txn_commit.html -share/doc/db4/api_c/txn_discard.html -share/doc/db4/api_c/txn_id.html -share/doc/db4/api_c/txn_prepare.html -share/doc/db4/api_c/txn_recover.html -share/doc/db4/api_c/txn_set_timeout.html -share/doc/db4/api_c/txn_stat.html -share/doc/db4/api_cxx/c_index.html -share/doc/db4/api_cxx/cxx_pindex.html -share/doc/db4/api_cxx/db_associate.html -share/doc/db4/api_cxx/db_class.html -share/doc/db4/api_cxx/db_close.html -share/doc/db4/api_cxx/db_cursor.html -share/doc/db4/api_cxx/db_del.html -share/doc/db4/api_cxx/db_err.html -share/doc/db4/api_cxx/db_fd.html -share/doc/db4/api_cxx/db_get.html -share/doc/db4/api_cxx/db_get_byteswapped.html -share/doc/db4/api_cxx/db_get_type.html -share/doc/db4/api_cxx/db_join.html -share/doc/db4/api_cxx/db_key_range.html -share/doc/db4/api_cxx/db_open.html -share/doc/db4/api_cxx/db_put.html -share/doc/db4/api_cxx/db_remove.html -share/doc/db4/api_cxx/db_rename.html -share/doc/db4/api_cxx/db_set_alloc.html -share/doc/db4/api_cxx/db_set_append_recno.html -share/doc/db4/api_cxx/db_set_bt_compare.html -share/doc/db4/api_cxx/db_set_bt_minkey.html -share/doc/db4/api_cxx/db_set_bt_prefix.html -share/doc/db4/api_cxx/db_set_cachesize.html -share/doc/db4/api_cxx/db_set_dup_compare.html -share/doc/db4/api_cxx/db_set_errcall.html -share/doc/db4/api_cxx/db_set_errfile.html -share/doc/db4/api_cxx/db_set_errpfx.html -share/doc/db4/api_cxx/db_set_feedback.html -share/doc/db4/api_cxx/db_set_flags.html -share/doc/db4/api_cxx/db_set_h_ffactor.html -share/doc/db4/api_cxx/db_set_h_hash.html -share/doc/db4/api_cxx/db_set_h_nelem.html -share/doc/db4/api_cxx/db_set_lorder.html -share/doc/db4/api_cxx/db_set_pagesize.html -share/doc/db4/api_cxx/db_set_paniccall.html -share/doc/db4/api_cxx/db_set_q_extentsize.html -share/doc/db4/api_cxx/db_set_re_delim.html -share/doc/db4/api_cxx/db_set_re_len.html -share/doc/db4/api_cxx/db_set_re_pad.html -share/doc/db4/api_cxx/db_set_re_source.html -share/doc/db4/api_cxx/db_stat.html -share/doc/db4/api_cxx/db_sync.html -share/doc/db4/api_cxx/db_truncate.html -share/doc/db4/api_cxx/db_upgrade.html -share/doc/db4/api_cxx/db_verify.html -share/doc/db4/api_cxx/dbc_class.html -share/doc/db4/api_cxx/dbc_close.html -share/doc/db4/api_cxx/dbc_count.html -share/doc/db4/api_cxx/dbc_del.html -share/doc/db4/api_cxx/dbc_dup.html -share/doc/db4/api_cxx/dbc_get.html -share/doc/db4/api_cxx/dbc_put.html -share/doc/db4/api_cxx/dbenv_class.html -share/doc/db4/api_cxx/dbt_bulk.html -share/doc/db4/api_cxx/dbt_class.html -share/doc/db4/api_cxx/env_close.html -share/doc/db4/api_cxx/env_err.html -share/doc/db4/api_cxx/env_open.html -share/doc/db4/api_cxx/env_remove.html -share/doc/db4/api_cxx/env_set_alloc.html -share/doc/db4/api_cxx/env_set_cachesize.html -share/doc/db4/api_cxx/env_set_data_dir.html -share/doc/db4/api_cxx/env_set_errcall.html -share/doc/db4/api_cxx/env_set_errfile.html -share/doc/db4/api_cxx/env_set_error_stream.html -share/doc/db4/api_cxx/env_set_errpfx.html -share/doc/db4/api_cxx/env_set_feedback.html -share/doc/db4/api_cxx/env_set_flags.html -share/doc/db4/api_cxx/env_set_lg_bsize.html -share/doc/db4/api_cxx/env_set_lg_dir.html -share/doc/db4/api_cxx/env_set_lg_max.html -share/doc/db4/api_cxx/env_set_lg_regionmax.html -share/doc/db4/api_cxx/env_set_lk_conflicts.html -share/doc/db4/api_cxx/env_set_lk_detect.html -share/doc/db4/api_cxx/env_set_lk_max_lockers.html -share/doc/db4/api_cxx/env_set_lk_max_locks.html -share/doc/db4/api_cxx/env_set_lk_max_objects.html -share/doc/db4/api_cxx/env_set_mp_mmapsize.html -share/doc/db4/api_cxx/env_set_paniccall.html -share/doc/db4/api_cxx/env_set_rec_init.html -share/doc/db4/api_cxx/env_set_rpc_server.html -share/doc/db4/api_cxx/env_set_shm_key.html -share/doc/db4/api_cxx/env_set_tas_spins.html -share/doc/db4/api_cxx/env_set_timeout.html -share/doc/db4/api_cxx/env_set_tmp_dir.html -share/doc/db4/api_cxx/env_set_tx_max.html -share/doc/db4/api_cxx/env_set_tx_recover.html -share/doc/db4/api_cxx/env_set_tx_timestamp.html -share/doc/db4/api_cxx/env_set_verbose.html -share/doc/db4/api_cxx/env_strerror.html -share/doc/db4/api_cxx/env_version.html -share/doc/db4/api_cxx/except_class.html -share/doc/db4/api_cxx/get_dbt.html -share/doc/db4/api_cxx/get_errno.html -share/doc/db4/api_cxx/lock_class.html -share/doc/db4/api_cxx/lock_detect.html -share/doc/db4/api_cxx/lock_get.html -share/doc/db4/api_cxx/lock_id.html -share/doc/db4/api_cxx/lock_id_free.html -share/doc/db4/api_cxx/lock_put.html -share/doc/db4/api_cxx/lock_stat.html -share/doc/db4/api_cxx/lock_vec.html -share/doc/db4/api_cxx/log_archive.html -share/doc/db4/api_cxx/log_compare.html -share/doc/db4/api_cxx/log_cursor.html -share/doc/db4/api_cxx/log_file.html -share/doc/db4/api_cxx/log_flush.html -share/doc/db4/api_cxx/log_put.html -share/doc/db4/api_cxx/log_register.html -share/doc/db4/api_cxx/log_stat.html -share/doc/db4/api_cxx/log_unregister.html -share/doc/db4/api_cxx/logc_class.html -share/doc/db4/api_cxx/logc_close.html -share/doc/db4/api_cxx/logc_get.html -share/doc/db4/api_cxx/lsn_class.html -share/doc/db4/api_cxx/mem_class.html -share/doc/db4/api_cxx/memp_fclose.html -share/doc/db4/api_cxx/memp_fcreate.html -share/doc/db4/api_cxx/memp_fget.html -share/doc/db4/api_cxx/memp_fopen.html -share/doc/db4/api_cxx/memp_fput.html -share/doc/db4/api_cxx/memp_fset.html -share/doc/db4/api_cxx/memp_fsync.html -share/doc/db4/api_cxx/memp_register.html -share/doc/db4/api_cxx/memp_set_clear_len.html -share/doc/db4/api_cxx/memp_set_fileid.html -share/doc/db4/api_cxx/memp_set_ftype.html -share/doc/db4/api_cxx/memp_set_lsn_offset.html -share/doc/db4/api_cxx/memp_set_pgcookie.html -share/doc/db4/api_cxx/memp_stat.html -share/doc/db4/api_cxx/memp_sync.html -share/doc/db4/api_cxx/memp_trickle.html -share/doc/db4/api_cxx/mempfile_class.html -share/doc/db4/api_cxx/pindex.src -share/doc/db4/api_cxx/rep_elect.html -share/doc/db4/api_cxx/rep_message.html -share/doc/db4/api_cxx/rep_start.html -share/doc/db4/api_cxx/rep_transport.html -share/doc/db4/api_cxx/txn_abort.html -share/doc/db4/api_cxx/txn_begin.html -share/doc/db4/api_cxx/txn_checkpoint.html -share/doc/db4/api_cxx/txn_class.html -share/doc/db4/api_cxx/txn_commit.html -share/doc/db4/api_cxx/txn_discard.html -share/doc/db4/api_cxx/txn_id.html -share/doc/db4/api_cxx/txn_prepare.html -share/doc/db4/api_cxx/txn_recover.html -share/doc/db4/api_cxx/txn_set_timeout.html -share/doc/db4/api_cxx/txn_stat.html -share/doc/db4/api_cxx/what.html -share/doc/db4/api_java/c_index.html -share/doc/db4/api_java/db_associate.html -share/doc/db4/api_java/db_class.html -share/doc/db4/api_java/db_close.html -share/doc/db4/api_java/db_cursor.html -share/doc/db4/api_java/db_del.html -share/doc/db4/api_java/db_fd.html -share/doc/db4/api_java/db_get.html -share/doc/db4/api_java/db_get_byteswapped.html -share/doc/db4/api_java/db_get_type.html -share/doc/db4/api_java/db_join.html -share/doc/db4/api_java/db_key_range.html -share/doc/db4/api_java/db_open.html -share/doc/db4/api_java/db_put.html -share/doc/db4/api_java/db_remove.html -share/doc/db4/api_java/db_rename.html -share/doc/db4/api_java/db_set_append_recno.html -share/doc/db4/api_java/db_set_bt_compare.html -share/doc/db4/api_java/db_set_bt_minkey.html -share/doc/db4/api_java/db_set_bt_prefix.html -share/doc/db4/api_java/db_set_cachesize.html -share/doc/db4/api_java/db_set_dup_compare.html -share/doc/db4/api_java/db_set_errcall.html -share/doc/db4/api_java/db_set_errpfx.html -share/doc/db4/api_java/db_set_feedback.html -share/doc/db4/api_java/db_set_flags.html -share/doc/db4/api_java/db_set_h_ffactor.html -share/doc/db4/api_java/db_set_h_hash.html -share/doc/db4/api_java/db_set_h_nelem.html -share/doc/db4/api_java/db_set_lorder.html -share/doc/db4/api_java/db_set_pagesize.html -share/doc/db4/api_java/db_set_q_extentsize.html -share/doc/db4/api_java/db_set_re_delim.html -share/doc/db4/api_java/db_set_re_len.html -share/doc/db4/api_java/db_set_re_pad.html -share/doc/db4/api_java/db_set_re_source.html -share/doc/db4/api_java/db_stat.html -share/doc/db4/api_java/db_sync.html -share/doc/db4/api_java/db_truncate.html -share/doc/db4/api_java/db_upgrade.html -share/doc/db4/api_java/db_verify.html -share/doc/db4/api_java/dbc_class.html -share/doc/db4/api_java/dbc_close.html -share/doc/db4/api_java/dbc_count.html -share/doc/db4/api_java/dbc_del.html -share/doc/db4/api_java/dbc_dup.html -share/doc/db4/api_java/dbc_get.html -share/doc/db4/api_java/dbc_put.html -share/doc/db4/api_java/dbenv_class.html -share/doc/db4/api_java/dbt_bulk_class.html -share/doc/db4/api_java/dbt_class.html -share/doc/db4/api_java/deadlock_class.html -share/doc/db4/api_java/env_close.html -share/doc/db4/api_java/env_open.html -share/doc/db4/api_java/env_remove.html -share/doc/db4/api_java/env_set_cachesize.html -share/doc/db4/api_java/env_set_data_dir.html -share/doc/db4/api_java/env_set_errcall.html -share/doc/db4/api_java/env_set_error_stream.html -share/doc/db4/api_java/env_set_errpfx.html -share/doc/db4/api_java/env_set_feedback.html -share/doc/db4/api_java/env_set_flags.html -share/doc/db4/api_java/env_set_lg_bsize.html -share/doc/db4/api_java/env_set_lg_dir.html -share/doc/db4/api_java/env_set_lg_max.html -share/doc/db4/api_java/env_set_lg_regionmax.html -share/doc/db4/api_java/env_set_lk_conflicts.html -share/doc/db4/api_java/env_set_lk_detect.html -share/doc/db4/api_java/env_set_lk_max_lockers.html -share/doc/db4/api_java/env_set_lk_max_locks.html -share/doc/db4/api_java/env_set_lk_max_objects.html -share/doc/db4/api_java/env_set_mp_mmapsize.html -share/doc/db4/api_java/env_set_rec_init.html -share/doc/db4/api_java/env_set_rpc_server.html -share/doc/db4/api_java/env_set_shm_key.html -share/doc/db4/api_java/env_set_tas_spins.html -share/doc/db4/api_java/env_set_timeout.html -share/doc/db4/api_java/env_set_tmp_dir.html -share/doc/db4/api_java/env_set_tx_max.html -share/doc/db4/api_java/env_set_tx_recover.html -share/doc/db4/api_java/env_set_tx_timestamp.html -share/doc/db4/api_java/env_set_verbose.html -share/doc/db4/api_java/env_strerror.html -share/doc/db4/api_java/env_version.html -share/doc/db4/api_java/except_class.html -share/doc/db4/api_java/get_dbt.html -share/doc/db4/api_java/get_errno.html -share/doc/db4/api_java/java_pindex.html -share/doc/db4/api_java/lock_class.html -share/doc/db4/api_java/lock_detect.html -share/doc/db4/api_java/lock_get.html -share/doc/db4/api_java/lock_id.html -share/doc/db4/api_java/lock_id_free.html -share/doc/db4/api_java/lock_put.html -share/doc/db4/api_java/lock_stat.html -share/doc/db4/api_java/lock_vec.html -share/doc/db4/api_java/log_archive.html -share/doc/db4/api_java/log_compare.html -share/doc/db4/api_java/log_cursor.html -share/doc/db4/api_java/log_file.html -share/doc/db4/api_java/log_flush.html -share/doc/db4/api_java/log_put.html -share/doc/db4/api_java/log_register.html -share/doc/db4/api_java/log_stat.html -share/doc/db4/api_java/log_unregister.html -share/doc/db4/api_java/logc_class.html -share/doc/db4/api_java/logc_close.html -share/doc/db4/api_java/logc_get.html -share/doc/db4/api_java/lsn_class.html -share/doc/db4/api_java/mem_class.html -share/doc/db4/api_java/memp_fclose.html -share/doc/db4/api_java/memp_fopen.html -share/doc/db4/api_java/memp_fsync.html -share/doc/db4/api_java/memp_register.html -share/doc/db4/api_java/memp_stat.html -share/doc/db4/api_java/memp_sync.html -share/doc/db4/api_java/memp_trickle.html -share/doc/db4/api_java/pindex.src -share/doc/db4/api_java/rep_elect.html -share/doc/db4/api_java/rep_message.html -share/doc/db4/api_java/rep_start.html -share/doc/db4/api_java/rep_transport.html -share/doc/db4/api_java/runrec_class.html -share/doc/db4/api_java/txn_abort.html -share/doc/db4/api_java/txn_begin.html -share/doc/db4/api_java/txn_checkpoint.html -share/doc/db4/api_java/txn_class.html -share/doc/db4/api_java/txn_commit.html -share/doc/db4/api_java/txn_discard.html -share/doc/db4/api_java/txn_id.html -share/doc/db4/api_java/txn_prepare.html -share/doc/db4/api_java/txn_recover.html -share/doc/db4/api_java/txn_set_timeout.html -share/doc/db4/api_java/txn_stat.html -share/doc/db4/api_tcl/db_close.html -share/doc/db4/api_tcl/db_count.html -share/doc/db4/api_tcl/db_cursor.html -share/doc/db4/api_tcl/db_del.html -share/doc/db4/api_tcl/db_get.html -share/doc/db4/api_tcl/db_get_join.html -share/doc/db4/api_tcl/db_get_type.html -share/doc/db4/api_tcl/db_is_byteswapped.html -share/doc/db4/api_tcl/db_join.html -share/doc/db4/api_tcl/db_open.html -share/doc/db4/api_tcl/db_put.html -share/doc/db4/api_tcl/db_remove.html -share/doc/db4/api_tcl/db_rename.html -share/doc/db4/api_tcl/db_stat.html -share/doc/db4/api_tcl/db_sync.html -share/doc/db4/api_tcl/db_truncate.html -share/doc/db4/api_tcl/dbc_close.html -share/doc/db4/api_tcl/dbc_del.html -share/doc/db4/api_tcl/dbc_dup.html -share/doc/db4/api_tcl/dbc_get.html -share/doc/db4/api_tcl/dbc_put.html -share/doc/db4/api_tcl/env_close.html -share/doc/db4/api_tcl/env_open.html -share/doc/db4/api_tcl/env_remove.html -share/doc/db4/api_tcl/pindex.src -share/doc/db4/api_tcl/tcl_index.html -share/doc/db4/api_tcl/tcl_pindex.html -share/doc/db4/api_tcl/txn.html -share/doc/db4/api_tcl/txn_abort.html -share/doc/db4/api_tcl/txn_commit.html -share/doc/db4/api_tcl/version.html -share/doc/db4/images/api.gif -share/doc/db4/images/next.gif -share/doc/db4/images/prev.gif -share/doc/db4/images/ps.gif -share/doc/db4/images/ref.gif -share/doc/db4/images/sleepycat.gif -share/doc/db4/index.html -share/doc/db4/ref/am/close.html -share/doc/db4/ref/am/count.html -share/doc/db4/ref/am/curclose.html -share/doc/db4/ref/am/curdel.html -share/doc/db4/ref/am/curdup.html -share/doc/db4/ref/am/curget.html -share/doc/db4/ref/am/curput.html -share/doc/db4/ref/am/cursor.html -share/doc/db4/ref/am/delete.html -share/doc/db4/ref/am/get.html -share/doc/db4/ref/am/join.html -share/doc/db4/ref/am/open.html -share/doc/db4/ref/am/opensub.html -share/doc/db4/ref/am/ops.html -share/doc/db4/ref/am/put.html -share/doc/db4/ref/am/second.html -share/doc/db4/ref/am/stat.html -share/doc/db4/ref/am/sync.html -share/doc/db4/ref/am/truncate.html -share/doc/db4/ref/am/upgrade.html -share/doc/db4/ref/am/verify.html -share/doc/db4/ref/am_conf/bt_compare.html -share/doc/db4/ref/am_conf/bt_minkey.html -share/doc/db4/ref/am_conf/bt_prefix.html -share/doc/db4/ref/am_conf/bt_recnum.html -share/doc/db4/ref/am_conf/byteorder.html -share/doc/db4/ref/am_conf/cachesize.html -share/doc/db4/ref/am_conf/dup.html -share/doc/db4/ref/am_conf/extentsize.html -share/doc/db4/ref/am_conf/h_ffactor.html -share/doc/db4/ref/am_conf/h_hash.html -share/doc/db4/ref/am_conf/h_nelem.html -share/doc/db4/ref/am_conf/intro.html -share/doc/db4/ref/am_conf/logrec.html -share/doc/db4/ref/am_conf/malloc.html -share/doc/db4/ref/am_conf/pagesize.html -share/doc/db4/ref/am_conf/re_source.html -share/doc/db4/ref/am_conf/recno.html -share/doc/db4/ref/am_conf/renumber.html -share/doc/db4/ref/am_conf/select.html -share/doc/db4/ref/am_misc/align.html -share/doc/db4/ref/am_misc/dbsizes.html -share/doc/db4/ref/am_misc/diskspace.html -share/doc/db4/ref/am_misc/error.html -share/doc/db4/ref/am_misc/faq.html -share/doc/db4/ref/am_misc/get_bulk.html -share/doc/db4/ref/am_misc/partial.html -share/doc/db4/ref/am_misc/perm.html -share/doc/db4/ref/am_misc/stability.html -share/doc/db4/ref/am_misc/tune.html -share/doc/db4/ref/arch/apis.html -share/doc/db4/ref/arch/bigpic.gif -share/doc/db4/ref/arch/bigpic.html -share/doc/db4/ref/arch/progmodel.html -share/doc/db4/ref/arch/script.html -share/doc/db4/ref/arch/smallpic.gif -share/doc/db4/ref/arch/utilities.html -share/doc/db4/ref/build_unix/aix.html -share/doc/db4/ref/build_unix/conf.html -share/doc/db4/ref/build_unix/embedix.html -share/doc/db4/ref/build_unix/flags.html -share/doc/db4/ref/build_unix/freebsd.html -share/doc/db4/ref/build_unix/hpux.html -share/doc/db4/ref/build_unix/install.html -share/doc/db4/ref/build_unix/intro.html -share/doc/db4/ref/build_unix/irix.html -share/doc/db4/ref/build_unix/linux.html -share/doc/db4/ref/build_unix/macosx.html -share/doc/db4/ref/build_unix/notes.html -share/doc/db4/ref/build_unix/osf1.html -share/doc/db4/ref/build_unix/qnx.html -share/doc/db4/ref/build_unix/sco.html -share/doc/db4/ref/build_unix/shlib.html -share/doc/db4/ref/build_unix/solaris.html -share/doc/db4/ref/build_unix/sunos.html -share/doc/db4/ref/build_unix/test.html -share/doc/db4/ref/build_unix/ultrix.html -share/doc/db4/ref/build_vxworks/faq.html -share/doc/db4/ref/build_vxworks/intro.html -share/doc/db4/ref/build_vxworks/introae.html -share/doc/db4/ref/build_vxworks/notes.html -share/doc/db4/ref/build_win/faq.html -share/doc/db4/ref/build_win/intro.html -share/doc/db4/ref/build_win/notes.html -share/doc/db4/ref/build_win/test.html -share/doc/db4/ref/cam/intro.html -share/doc/db4/ref/debug/common.html -share/doc/db4/ref/debug/compile.html -share/doc/db4/ref/debug/intro.html -share/doc/db4/ref/debug/printlog.html -share/doc/db4/ref/debug/runtime.html -share/doc/db4/ref/distrib/layout.html -share/doc/db4/ref/dumpload/format.html -share/doc/db4/ref/dumpload/text.html -share/doc/db4/ref/dumpload/utility.html -share/doc/db4/ref/env/create.html -share/doc/db4/ref/env/error.html -share/doc/db4/ref/env/faq.html -share/doc/db4/ref/env/intro.html -share/doc/db4/ref/env/naming.html -share/doc/db4/ref/env/open.html -share/doc/db4/ref/env/region.html -share/doc/db4/ref/env/remote.html -share/doc/db4/ref/env/security.html -share/doc/db4/ref/install/file.html -share/doc/db4/ref/install/magic.s5.be.txt -share/doc/db4/ref/install/magic.s5.le.txt -share/doc/db4/ref/install/magic.txt -share/doc/db4/ref/install/multiple.html -share/doc/db4/ref/install/rpm.html -share/doc/db4/ref/intro/data.html -share/doc/db4/ref/intro/dbis.html -share/doc/db4/ref/intro/dbisnot.html -share/doc/db4/ref/intro/distrib.html -share/doc/db4/ref/intro/need.html -share/doc/db4/ref/intro/products.html -share/doc/db4/ref/intro/terrain.html -share/doc/db4/ref/intro/what.html -share/doc/db4/ref/intro/where.html -share/doc/db4/ref/java/compat.html -share/doc/db4/ref/java/conf.html -share/doc/db4/ref/java/faq.html -share/doc/db4/ref/java/program.html -share/doc/db4/ref/lock/am_conv.html -share/doc/db4/ref/lock/cam_conv.html -share/doc/db4/ref/lock/config.html -share/doc/db4/ref/lock/dead.html -share/doc/db4/ref/lock/intro.html -share/doc/db4/ref/lock/max.html -share/doc/db4/ref/lock/nondb.html -share/doc/db4/ref/lock/notxn.html -share/doc/db4/ref/lock/page.html -share/doc/db4/ref/lock/stdmode.html -share/doc/db4/ref/lock/timeout.html -share/doc/db4/ref/lock/twopl.html -share/doc/db4/ref/log/config.html -share/doc/db4/ref/log/intro.html -share/doc/db4/ref/log/limits.html -share/doc/db4/ref/mp/config.html -share/doc/db4/ref/mp/intro.html -share/doc/db4/ref/perl/intro.html -share/doc/db4/ref/pindex.src -share/doc/db4/ref/program/appsignals.html -share/doc/db4/ref/program/compatible.html -share/doc/db4/ref/program/copy.html -share/doc/db4/ref/program/environ.html -share/doc/db4/ref/program/errorret.html -share/doc/db4/ref/program/extending.html -share/doc/db4/ref/program/mt.html -share/doc/db4/ref/program/namespace.html -share/doc/db4/ref/program/runtime.html -share/doc/db4/ref/program/scope.html -share/doc/db4/ref/program/solaris.txt -share/doc/db4/ref/refs/bdb_usenix.html -share/doc/db4/ref/refs/bdb_usenix.ps -share/doc/db4/ref/refs/embedded.html -share/doc/db4/ref/refs/hash_usenix.ps -share/doc/db4/ref/refs/libtp_usenix.ps -share/doc/db4/ref/refs/refs.html -share/doc/db4/ref/refs/witold.html -share/doc/db4/ref/rep/app.html -share/doc/db4/ref/rep/comm.html -share/doc/db4/ref/rep/elect.html -share/doc/db4/ref/rep/ex.html -share/doc/db4/ref/rep/ex_comm.html -share/doc/db4/ref/rep/ex_rq.html -share/doc/db4/ref/rep/faq.html -share/doc/db4/ref/rep/id.html -share/doc/db4/ref/rep/init.html -share/doc/db4/ref/rep/intro.html -share/doc/db4/ref/rep/logonly.html -share/doc/db4/ref/rep/newsite.html -share/doc/db4/ref/rep/partition.html -share/doc/db4/ref/rep/pri.html -share/doc/db4/ref/rep/trans.html -share/doc/db4/ref/rpc/client.html -share/doc/db4/ref/rpc/intro.html -share/doc/db4/ref/rpc/server.html -share/doc/db4/ref/sendmail/intro.html -share/doc/db4/ref/simple_tut/close.html -share/doc/db4/ref/simple_tut/del.html -share/doc/db4/ref/simple_tut/errors.html -share/doc/db4/ref/simple_tut/example.cs -share/doc/db4/ref/simple_tut/get.html -share/doc/db4/ref/simple_tut/handles.html -share/doc/db4/ref/simple_tut/intro.html -share/doc/db4/ref/simple_tut/keydata.html -share/doc/db4/ref/simple_tut/open.html -share/doc/db4/ref/simple_tut/put.html -share/doc/db4/ref/tcl/error.html -share/doc/db4/ref/tcl/faq.html -share/doc/db4/ref/tcl/intro.html -share/doc/db4/ref/tcl/program.html -share/doc/db4/ref/tcl/using.html -share/doc/db4/ref/test/faq.html -share/doc/db4/ref/test/run.html -share/doc/db4/ref/transapp/admin.html -share/doc/db4/ref/transapp/app.html -share/doc/db4/ref/transapp/archival.html -share/doc/db4/ref/transapp/checkpoint.html -share/doc/db4/ref/transapp/cursor.html -share/doc/db4/ref/transapp/data_open.html -share/doc/db4/ref/transapp/deadlock.html -share/doc/db4/ref/transapp/env_open.html -share/doc/db4/ref/transapp/faq.html -share/doc/db4/ref/transapp/filesys.html -share/doc/db4/ref/transapp/hotfail.html -share/doc/db4/ref/transapp/inc.html -share/doc/db4/ref/transapp/intro.html -share/doc/db4/ref/transapp/logfile.html -share/doc/db4/ref/transapp/nested.html -share/doc/db4/ref/transapp/put.html -share/doc/db4/ref/transapp/read.html -share/doc/db4/ref/transapp/reclimit.html -share/doc/db4/ref/transapp/recovery.html -share/doc/db4/ref/transapp/term.html -share/doc/db4/ref/transapp/throughput.html -share/doc/db4/ref/transapp/transapp.cs -share/doc/db4/ref/transapp/tune.html -share/doc/db4/ref/transapp/why.html -share/doc/db4/ref/transapp/writetest.cs -share/doc/db4/ref/txn/config.html -share/doc/db4/ref/txn/intro.html -share/doc/db4/ref/txn/limits.html -share/doc/db4/ref/txn/other.html -share/doc/db4/ref/upgrade.2.0/convert.html -share/doc/db4/ref/upgrade.2.0/disk.html -share/doc/db4/ref/upgrade.2.0/intro.html -share/doc/db4/ref/upgrade.2.0/system.html -share/doc/db4/ref/upgrade.2.0/toc.html -share/doc/db4/ref/upgrade.3.0/close.html -share/doc/db4/ref/upgrade.3.0/cxx.html -share/doc/db4/ref/upgrade.3.0/db.html -share/doc/db4/ref/upgrade.3.0/db_cxx.html -share/doc/db4/ref/upgrade.3.0/dbenv.html -share/doc/db4/ref/upgrade.3.0/dbenv_cxx.html -share/doc/db4/ref/upgrade.3.0/dbinfo.html -share/doc/db4/ref/upgrade.3.0/disk.html -share/doc/db4/ref/upgrade.3.0/eacces.html -share/doc/db4/ref/upgrade.3.0/eagain.html -share/doc/db4/ref/upgrade.3.0/envopen.html -share/doc/db4/ref/upgrade.3.0/func.html -share/doc/db4/ref/upgrade.3.0/intro.html -share/doc/db4/ref/upgrade.3.0/java.html -share/doc/db4/ref/upgrade.3.0/join.html -share/doc/db4/ref/upgrade.3.0/jump_set.html -share/doc/db4/ref/upgrade.3.0/lock_detect.html -share/doc/db4/ref/upgrade.3.0/lock_notheld.html -share/doc/db4/ref/upgrade.3.0/lock_put.html -share/doc/db4/ref/upgrade.3.0/lock_stat.html -share/doc/db4/ref/upgrade.3.0/log_register.html -share/doc/db4/ref/upgrade.3.0/log_stat.html -share/doc/db4/ref/upgrade.3.0/memp_stat.html -share/doc/db4/ref/upgrade.3.0/open.html -share/doc/db4/ref/upgrade.3.0/rmw.html -share/doc/db4/ref/upgrade.3.0/stat.html -share/doc/db4/ref/upgrade.3.0/toc.html -share/doc/db4/ref/upgrade.3.0/txn_begin.html -share/doc/db4/ref/upgrade.3.0/txn_commit.html -share/doc/db4/ref/upgrade.3.0/txn_stat.html -share/doc/db4/ref/upgrade.3.0/value_set.html -share/doc/db4/ref/upgrade.3.0/xa.html -share/doc/db4/ref/upgrade.3.1/btstat.html -share/doc/db4/ref/upgrade.3.1/config.html -share/doc/db4/ref/upgrade.3.1/disk.html -share/doc/db4/ref/upgrade.3.1/dup.html -share/doc/db4/ref/upgrade.3.1/env.html -share/doc/db4/ref/upgrade.3.1/intro.html -share/doc/db4/ref/upgrade.3.1/log_register.html -share/doc/db4/ref/upgrade.3.1/logalloc.html -share/doc/db4/ref/upgrade.3.1/memp_register.html -share/doc/db4/ref/upgrade.3.1/put.html -share/doc/db4/ref/upgrade.3.1/set_feedback.html -share/doc/db4/ref/upgrade.3.1/set_paniccall.html -share/doc/db4/ref/upgrade.3.1/set_tx_recover.html -share/doc/db4/ref/upgrade.3.1/sysmem.html -share/doc/db4/ref/upgrade.3.1/tcl.html -share/doc/db4/ref/upgrade.3.1/tmp.html -share/doc/db4/ref/upgrade.3.1/toc.html -share/doc/db4/ref/upgrade.3.1/txn_check.html -share/doc/db4/ref/upgrade.3.2/callback.html -share/doc/db4/ref/upgrade.3.2/db_dump.html -share/doc/db4/ref/upgrade.3.2/disk.html -share/doc/db4/ref/upgrade.3.2/handle.html -share/doc/db4/ref/upgrade.3.2/incomplete.html -share/doc/db4/ref/upgrade.3.2/intro.html -share/doc/db4/ref/upgrade.3.2/mutexlock.html -share/doc/db4/ref/upgrade.3.2/notfound.html -share/doc/db4/ref/upgrade.3.2/renumber.html -share/doc/db4/ref/upgrade.3.2/set_flags.html -share/doc/db4/ref/upgrade.3.2/toc.html -share/doc/db4/ref/upgrade.3.2/tx_recover.html -share/doc/db4/ref/upgrade.3.3/alloc.html -share/doc/db4/ref/upgrade.3.3/bigfile.html -share/doc/db4/ref/upgrade.3.3/conflict.html -share/doc/db4/ref/upgrade.3.3/disk.html -share/doc/db4/ref/upgrade.3.3/getswap.html -share/doc/db4/ref/upgrade.3.3/gettype.html -share/doc/db4/ref/upgrade.3.3/intro.html -share/doc/db4/ref/upgrade.3.3/memp_fget.html -share/doc/db4/ref/upgrade.3.3/rpc.html -share/doc/db4/ref/upgrade.3.3/shared.html -share/doc/db4/ref/upgrade.3.3/toc.html -share/doc/db4/ref/upgrade.3.3/txn_prepare.html -share/doc/db4/ref/upgrade.4.0/asr.html -share/doc/db4/ref/upgrade.4.0/cxx.html -share/doc/db4/ref/upgrade.4.0/deadlock.html -share/doc/db4/ref/upgrade.4.0/disk.html -share/doc/db4/ref/upgrade.4.0/env.html -share/doc/db4/ref/upgrade.4.0/intro.html -share/doc/db4/ref/upgrade.4.0/java.html -share/doc/db4/ref/upgrade.4.0/lock.html -share/doc/db4/ref/upgrade.4.0/lock_id_free.html -share/doc/db4/ref/upgrade.4.0/log.html -share/doc/db4/ref/upgrade.4.0/mp.html -share/doc/db4/ref/upgrade.4.0/rpc.html -share/doc/db4/ref/upgrade.4.0/set_lk_max.html -share/doc/db4/ref/upgrade.4.0/toc.html -share/doc/db4/ref/upgrade.4.0/txn.html -share/doc/db4/ref/upgrade/process.html -share/doc/db4/ref/upgrade/version.html -share/doc/db4/ref/xa/build.html -share/doc/db4/ref/xa/faq.html -share/doc/db4/ref/xa/intro.html -share/doc/db4/ref/xa/xa_config.html -share/doc/db4/ref/xa/xa_intro.html -share/doc/db4/reftoc.html -share/doc/db4/sleepycat/contact.html -share/doc/db4/sleepycat/legal.html -share/doc/db4/sleepycat/license.html -share/doc/db4/utility/berkeley_db_svc.html -share/doc/db4/utility/db_archive.html -share/doc/db4/utility/db_checkpoint.html -share/doc/db4/utility/db_deadlock.html -share/doc/db4/utility/db_dump.html -share/doc/db4/utility/db_load.html -share/doc/db4/utility/db_printlog.html -share/doc/db4/utility/db_recover.html -share/doc/db4/utility/db_stat.html -share/doc/db4/utility/db_upgrade.html -share/doc/db4/utility/db_verify.html -share/doc/db4/utility/index.html -@dirrm include/db4 -@dirrm share/doc/db4/ref/am -@dirrm share/doc/db4/ref/am_conf -@dirrm share/doc/db4/ref/am_misc -@dirrm share/doc/db4/ref/arch -@dirrm share/doc/db4/ref/build_unix -@dirrm share/doc/db4/ref/build_vxworks -@dirrm share/doc/db4/ref/build_win -@dirrm share/doc/db4/ref/cam -@dirrm share/doc/db4/ref/debug -@dirrm share/doc/db4/ref/distrib -@dirrm share/doc/db4/ref/dumpload -@dirrm share/doc/db4/ref/env -@dirrm share/doc/db4/ref/install -@dirrm share/doc/db4/ref/intro -@dirrm share/doc/db4/ref/java -@dirrm share/doc/db4/ref/lock -@dirrm share/doc/db4/ref/log -@dirrm share/doc/db4/ref/mp -@dirrm share/doc/db4/ref/perl -@dirrm share/doc/db4/ref/program -@dirrm share/doc/db4/ref/refs -@dirrm share/doc/db4/ref/rep -@dirrm share/doc/db4/ref/rpc -@dirrm share/doc/db4/ref/sendmail -@dirrm share/doc/db4/ref/simple_tut -@dirrm share/doc/db4/ref/splash -@dirrm share/doc/db4/ref/tcl -@dirrm share/doc/db4/ref/test -@dirrm share/doc/db4/ref/transapp -@dirrm share/doc/db4/ref/txn -@dirrm share/doc/db4/ref/upgrade -@dirrm share/doc/db4/ref/upgrade.2.0 -@dirrm share/doc/db4/ref/upgrade.3.0 -@dirrm share/doc/db4/ref/upgrade.3.1 -@dirrm share/doc/db4/ref/upgrade.3.2 -@dirrm share/doc/db4/ref/upgrade.3.3 -@dirrm share/doc/db4/ref/upgrade.4.0 -@dirrm share/doc/db4/ref/xa -@dirrm share/doc/db4/ref -@dirrm share/doc/db4/sleepycat -@dirrm share/doc/db4/api_c -@dirrm share/doc/db4/api_java -@dirrm share/doc/db4/api_cxx -@dirrm share/doc/db4/utility -@dirrm share/doc/db4/api_tcl -@dirrm share/doc/db4/images -@dirrm share/doc/db4 diff --git a/databases/db47/Makefile b/databases/db47/Makefile deleted file mode 100644 index 11c5ca90cae7..000000000000 --- a/databases/db47/Makefile +++ /dev/null @@ -1,42 +0,0 @@ -# ports collection makefile for: Berkeley DB v4 -# Date created: 16 August 2000 -# Whom: Sergey Osokin aka oZZ <ozz@FreeBSD.org.ru> -# -# $FreeBSD$ -# - -PORTNAME= db4 -PORTVERSION= 4.0.14 -#PORTREVISION= 2 -#PORTEPOCH= 1 -CATEGORIES= databases -MASTER_SITES= http://www.sleepycat.com/update/${PORTVERSION}/ -DISTNAME= db-${PORTVERSION} -DIST_SUBDIR= bdb - -MAINTAINER= ozz@FreeBSD.org.ru - -#PATCH_SITES= ${MASTER_SITES} -#PATCHFILES= patch.${PORTVERSION}.1 patch.${PORTVERSION}.2 -#PATCH_DIST_STRIP= -d ${WRKDIR}/${DISTNAME} - -WRKSRC= ${WRKDIR}/${DISTNAME}/build_unix - -INSTALLS_SHLIB= yes -HAS_CONFIGURE= yes -CONFIGURE_SCRIPT= ../dist/configure -CONFIGURE_ARGS= --enable-compat185 \ - --enable-dump185 --enable-cxx \ - --enable-dynamic \ - --prefix=${PREFIX} \ - --includedir=${PREFIX}/include/db4 \ - --target=${ARCH}-unknown-freebsd${OSREL} - -pre-patch: - @${PERL} -pi -e 's|-lpthread|${PTHREAD_LIBS}|g' ${WRKSRC}/${CONFIGURE_SCRIPT} - -post-patch: - @${CHMOD} 755 ${WRKSRC}/${CONFIGURE_SCRIPT} - @${PERL} -pi -e "s|%%LOCALBASE%%|${LOCALBASE}|g" ${WRKSRC}/../dist/configure - -.include <bsd.port.mk> diff --git a/databases/db47/distinfo b/databases/db47/distinfo deleted file mode 100644 index 09f3d6b59aec..000000000000 --- a/databases/db47/distinfo +++ /dev/null @@ -1 +0,0 @@ -MD5 (bdb/db-4.0.14.tar.gz) = 12262c64fcd64b772e7cffad8e4d0ebc diff --git a/databases/db47/files/patch-dist::Makefile.in b/databases/db47/files/patch-dist::Makefile.in deleted file mode 100644 index 136ab161efdc..000000000000 --- a/databases/db47/files/patch-dist::Makefile.in +++ /dev/null @@ -1,135 +0,0 @@ ---- ../dist/Makefile.in.orig Sat Nov 10 01:48:45 2001 -+++ ../dist/Makefile.in Wed Dec 5 13:38:23 2001 -@@ -11,7 +11,7 @@ - bindir= @bindir@ - includedir=@includedir@ - libdir= @libdir@ --docdir= $(prefix)/docs -+docdir= $(prefix)/share/doc/db4 - - dmode= 755 - emode= 555 -@@ -45,6 +45,7 @@ - SOLINK= @MAKEFILE_SOLINK@ - SOFLAGS= @SOFLAGS@ - SOMAJOR= @DB_VERSION_MAJOR@ -+SOMINOR= @DB_VERSION_MINOR@ - SOVERSION= @DB_VERSION_MAJOR@.@DB_VERSION_MINOR@ - - ################################################## -@@ -60,13 +61,13 @@ - LIBS= @LIBS@ - LIBSO_LIBS= @LIBSO_LIBS@ - --libdb= libdb.a --libso_base= libdb --libso= $(libso_base)-$(SOVERSION).@SOSUFFIX@ --libso_static= $(libso_base)-$(SOVERSION).a --libso_target= $(libso_base)-$(SOVERSION).la -+libdb= libdb4.a -+libso_base= libdb4 -+libso= $(libso_base).@SOSUFFIX@ -+libso_static= $(libso_base).a -+libso_target= $(libso_base).la - libso_default= $(libso_base).@SOSUFFIX@ --libso_major= $(libso_base)-$(SOMAJOR).@SOSUFFIX@ -+libso_major= $(libso_base).@SOSUFFIX@.$(SOMINOR) - - ################################################## - # C++ API. -@@ -79,13 +80,13 @@ - XSOLINK= @MAKEFILE_XSOLINK@ - LIBXSO_LIBS= @LIBXSO_LIBS@ - --libcxx= libdb_cxx.a --libxso_base= libdb_cxx --libxso= $(libxso_base)-$(SOVERSION).@SOSUFFIX@ --libxso_static= $(libxso_base)-$(SOVERSION).a --libxso_target= $(libxso_base)-$(SOVERSION).la -+libcxx= libdb4_cxx.a -+libxso_base= libdb4_cxx -+libxso= $(libxso_base).@SOSUFFIX@ -+libxso_static= $(libxso_base).a -+libxso_target= $(libxso_base).la - libxso_default= $(libxso_base).@SOSUFFIX@ --libxso_major= $(libxso_base)-$(SOMAJOR).@SOSUFFIX@ -+libxso_major= $(libxso_base).@SOSUFFIX@.$(SOMINOR) - - ################################################## - # Java API. -@@ -235,8 +236,8 @@ - db_server_proc@o@ db_server_svc@o@ db_server_util@o@ gen_db_server@o@ - - UTIL_PROGS=\ -- @ADDITIONAL_PROGS@ db_archive db_checkpoint db_deadlock \ -- db_dump db_load db_printlog db_recover db_stat db_upgrade db_verify -+ @ADDITIONAL_PROGS@ db4_archive db4_checkpoint db4_deadlock \ -+ db4_dump db4_load db4_printlog db4_recover db4_stat db4_upgrade db4_verify - - ################################################## - # List of files installed into the library directory. -@@ -330,53 +331,53 @@ - $(RPC_SRV_OBJS) util_log@o@ $(DEF_LIB) $(LIBS) - $(POSTLINK) $@ - --db_archive: db_archive@o@ util_sig@o@ $(DEF_LIB) -+db4_archive: db_archive@o@ util_sig@o@ $(DEF_LIB) - $(CCLINK) -o $@ $(LDFLAGS) \ - db_archive@o@ util_sig@o@ $(DEF_LIB) $(LIBS) - $(POSTLINK) $@ - --db_checkpoint: db_checkpoint@o@ util_log@o@ util_sig@o@ $(DEF_LIB) -+db4_checkpoint: db_checkpoint@o@ util_log@o@ util_sig@o@ $(DEF_LIB) - $(CCLINK) -o $@ $(LDFLAGS) \ - db_checkpoint@o@ util_log@o@ util_sig@o@ $(DEF_LIB) $(LIBS) - $(POSTLINK) $@ - --db_deadlock: db_deadlock@o@ util_log@o@ util_sig@o@ $(DEF_LIB) -+db4_deadlock: db_deadlock@o@ util_log@o@ util_sig@o@ $(DEF_LIB) - $(CCLINK) -o $@ $(LDFLAGS) \ - db_deadlock@o@ util_log@o@ util_sig@o@ $(DEF_LIB) $(LIBS) - $(POSTLINK) $@ - --db_dump: db_dump@o@ util_sig@o@ $(DEF_LIB) -+db4_dump: db_dump@o@ util_sig@o@ $(DEF_LIB) - $(CCLINK) -o $@ $(LDFLAGS) db_dump@o@ util_sig@o@ $(DEF_LIB) $(LIBS) - $(POSTLINK) $@ - --db_dump185: db_dump185@o@ @LIBOBJS@ -+db4_dump185: db_dump185@o@ @LIBOBJS@ - $(CCLINK) -o $@ $(LDFLAGS) db_dump185@o@ @LIBOBJS@ $(DB185LIB) - $(POSTLINK) $@ - --db_load: db_load@o@ util_sig@o@ $(DEF_LIB) -+db4_load: db_load@o@ util_sig@o@ $(DEF_LIB) - $(CCLINK) -o $@ $(LDFLAGS) db_load@o@ util_sig@o@ $(DEF_LIB) $(LIBS) - $(POSTLINK) $@ - --db_printlog: db_printlog@o@ util_sig@o@ $(DEF_LIB) -+db4_printlog: db_printlog@o@ util_sig@o@ $(DEF_LIB) - $(CCLINK) -o $@ $(LDFLAGS) \ - db_printlog@o@ util_sig@o@ $(DEF_LIB) $(LIBS) - $(POSTLINK) $@ - --db_recover: db_recover@o@ util_sig@o@ $(DEF_LIB) -+db4_recover: db_recover@o@ util_sig@o@ $(DEF_LIB) - $(CCLINK) -o $@ $(LDFLAGS) \ - db_recover@o@ util_sig@o@ $(DEF_LIB) $(LIBS) - $(POSTLINK) $@ - --db_stat: db_stat@o@ util_sig@o@ $(DEF_LIB) -+db4_stat: db_stat@o@ util_sig@o@ $(DEF_LIB) - $(CCLINK) -o $@ $(LDFLAGS) db_stat@o@ util_sig@o@ $(DEF_LIB) $(LIBS) - $(POSTLINK) $@ - --db_upgrade: db_upgrade@o@ util_sig@o@ $(DEF_LIB) -+db4_upgrade: db_upgrade@o@ util_sig@o@ $(DEF_LIB) - $(CCLINK) -o $@ $(LDFLAGS) \ - db_upgrade@o@ util_sig@o@ $(DEF_LIB) $(LIBS) - $(POSTLINK) $@ - --db_verify: db_verify@o@ util_sig@o@ $(DEF_LIB) -+db4_verify: db_verify@o@ util_sig@o@ $(DEF_LIB) - $(CCLINK) -o $@ $(LDFLAGS) \ - db_verify@o@ util_sig@o@ $(DEF_LIB) $(LIBS) - $(POSTLINK) $@ diff --git a/databases/db47/files/patch-dist::configure b/databases/db47/files/patch-dist::configure deleted file mode 100644 index 4f2ed615df05..000000000000 --- a/databases/db47/files/patch-dist::configure +++ /dev/null @@ -1,24 +0,0 @@ ---- ../dist/configure.orig Wed Dec 5 13:14:02 2001 -+++ ../dist/configure Wed Dec 5 13:24:01 2001 -@@ -8794,10 +8794,10 @@ - INSTALLER="\$(LIBTOOL) --mode=install cp" - - MAKEFILE_CC="\$(LIBTOOL) --mode=compile ${MAKEFILE_CC}" --MAKEFILE_SOLINK="\$(LIBTOOL) --mode=link ${MAKEFILE_CCLINK} -avoid-version" -+MAKEFILE_SOLINK="\$(LIBTOOL) --mode=link ${MAKEFILE_CCLINK} -version-info ${DB_VERSION_MINOR}" - MAKEFILE_CCLINK="\$(LIBTOOL) --mode=link ${MAKEFILE_CCLINK}" - MAKEFILE_CXX="\$(LIBTOOL) --mode=compile ${MAKEFILE_CXX}" --MAKEFILE_XSOLINK="\$(LIBTOOL) --mode=link ${MAKEFILE_CXXLINK} -avoid-version" -+MAKEFILE_XSOLINK="\$(LIBTOOL) --mode=link ${MAKEFILE_CXXLINK} -version-info ${DB_VERSION_MINOR}" - MAKEFILE_CXXLINK="\$(LIBTOOL) --mode=link ${MAKEFILE_CXXLINK}" - - # Configure for shared libraries, static libraries, or both. If both are -@@ -9511,7 +9511,7 @@ - - # Optional utilities. - if test "$db_cv_dump185" = "yes"; then -- ADDITIONAL_PROGS="db_dump185 $ADDITIONAL_PROGS" -+ ADDITIONAL_PROGS="db4_dump185 $ADDITIONAL_PROGS" - fi - - # Checks for system/compiler characteristics. diff --git a/databases/db47/pkg-comment b/databases/db47/pkg-comment deleted file mode 100644 index 0ea96ff89521..000000000000 --- a/databases/db47/pkg-comment +++ /dev/null @@ -1 +0,0 @@ -The Berkeley DB package, revision 4 diff --git a/databases/db47/pkg-descr b/databases/db47/pkg-descr deleted file mode 100644 index a47006d1fdee..000000000000 --- a/databases/db47/pkg-descr +++ /dev/null @@ -1,13 +0,0 @@ -Revision 4 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 v4 -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 6568248aebb3..000000000000 --- a/databases/db47/pkg-plist +++ /dev/null @@ -1,898 +0,0 @@ -bin/db4_archive -bin/db4_checkpoint -bin/db4_deadlock -bin/db4_dump -bin/db4_dump185 -bin/db4_load -bin/db4_printlog -bin/db4_recover -bin/db4_stat -bin/db4_upgrade -bin/db4_verify -include/db4/cxx_common.h -include/db4/cxx_except.h -include/db4/db.h -include/db4/db_185.h -include/db4/db_cxx.h -lib/libdb4.a -lib/libdb4.la -lib/libdb4.so -lib/libdb4.so.0 -lib/libdb4_cxx.a -lib/libdb4_cxx.la -lib/libdb4_cxx.so -lib/libdb4_cxx.so.0 -share/doc/db4/api_c/c_index.html -share/doc/db4/api_c/c_pindex.html -share/doc/db4/api_c/db_associate.html -share/doc/db4/api_c/db_close.html -share/doc/db4/api_c/db_create.html -share/doc/db4/api_c/db_cursor.html -share/doc/db4/api_c/db_del.html -share/doc/db4/api_c/db_err.html -share/doc/db4/api_c/db_fd.html -share/doc/db4/api_c/db_get.html -share/doc/db4/api_c/db_get_byteswapped.html -share/doc/db4/api_c/db_get_type.html -share/doc/db4/api_c/db_join.html -share/doc/db4/api_c/db_key_range.html -share/doc/db4/api_c/db_lsn.html -share/doc/db4/api_c/db_open.html -share/doc/db4/api_c/db_put.html -share/doc/db4/api_c/db_remove.html -share/doc/db4/api_c/db_rename.html -share/doc/db4/api_c/db_set_alloc.html -share/doc/db4/api_c/db_set_append_recno.html -share/doc/db4/api_c/db_set_bt_compare.html -share/doc/db4/api_c/db_set_bt_minkey.html -share/doc/db4/api_c/db_set_bt_prefix.html -share/doc/db4/api_c/db_set_cachesize.html -share/doc/db4/api_c/db_set_dup_compare.html -share/doc/db4/api_c/db_set_errcall.html -share/doc/db4/api_c/db_set_errfile.html -share/doc/db4/api_c/db_set_errpfx.html -share/doc/db4/api_c/db_set_feedback.html -share/doc/db4/api_c/db_set_flags.html -share/doc/db4/api_c/db_set_h_ffactor.html -share/doc/db4/api_c/db_set_h_hash.html -share/doc/db4/api_c/db_set_h_nelem.html -share/doc/db4/api_c/db_set_lorder.html -share/doc/db4/api_c/db_set_pagesize.html -share/doc/db4/api_c/db_set_paniccall.html -share/doc/db4/api_c/db_set_q_extentsize.html -share/doc/db4/api_c/db_set_re_delim.html -share/doc/db4/api_c/db_set_re_len.html -share/doc/db4/api_c/db_set_re_pad.html -share/doc/db4/api_c/db_set_re_source.html -share/doc/db4/api_c/db_stat.html -share/doc/db4/api_c/db_sync.html -share/doc/db4/api_c/db_truncate.html -share/doc/db4/api_c/db_upgrade.html -share/doc/db4/api_c/db_verify.html -share/doc/db4/api_c/dbc_close.html -share/doc/db4/api_c/dbc_count.html -share/doc/db4/api_c/dbc_del.html -share/doc/db4/api_c/dbc_dup.html -share/doc/db4/api_c/dbc_get.html -share/doc/db4/api_c/dbc_put.html -share/doc/db4/api_c/dbm.html -share/doc/db4/api_c/dbt.html -share/doc/db4/api_c/dbt_bulk.html -share/doc/db4/api_c/env_close.html -share/doc/db4/api_c/env_create.html -share/doc/db4/api_c/env_err.html -share/doc/db4/api_c/env_open.html -share/doc/db4/api_c/env_remove.html -share/doc/db4/api_c/env_set_alloc.html -share/doc/db4/api_c/env_set_cachesize.html -share/doc/db4/api_c/env_set_data_dir.html -share/doc/db4/api_c/env_set_errcall.html -share/doc/db4/api_c/env_set_errfile.html -share/doc/db4/api_c/env_set_errpfx.html -share/doc/db4/api_c/env_set_feedback.html -share/doc/db4/api_c/env_set_flags.html -share/doc/db4/api_c/env_set_lg_bsize.html -share/doc/db4/api_c/env_set_lg_dir.html -share/doc/db4/api_c/env_set_lg_max.html -share/doc/db4/api_c/env_set_lg_regionmax.html -share/doc/db4/api_c/env_set_lk_conflicts.html -share/doc/db4/api_c/env_set_lk_detect.html -share/doc/db4/api_c/env_set_lk_max_lockers.html -share/doc/db4/api_c/env_set_lk_max_locks.html -share/doc/db4/api_c/env_set_lk_max_objects.html -share/doc/db4/api_c/env_set_mp_mmapsize.html -share/doc/db4/api_c/env_set_paniccall.html -share/doc/db4/api_c/env_set_rec_init.html -share/doc/db4/api_c/env_set_rpc_server.html -share/doc/db4/api_c/env_set_shm_key.html -share/doc/db4/api_c/env_set_tas_spins.html -share/doc/db4/api_c/env_set_timeout.html -share/doc/db4/api_c/env_set_tmp_dir.html -share/doc/db4/api_c/env_set_tx_max.html -share/doc/db4/api_c/env_set_tx_recover.html -share/doc/db4/api_c/env_set_tx_timestamp.html -share/doc/db4/api_c/env_set_verbose.html -share/doc/db4/api_c/env_strerror.html -share/doc/db4/api_c/env_version.html -share/doc/db4/api_c/hsearch.html -share/doc/db4/api_c/lock_detect.html -share/doc/db4/api_c/lock_get.html -share/doc/db4/api_c/lock_id.html -share/doc/db4/api_c/lock_id_free.html -share/doc/db4/api_c/lock_put.html -share/doc/db4/api_c/lock_stat.html -share/doc/db4/api_c/lock_vec.html -share/doc/db4/api_c/log_archive.html -share/doc/db4/api_c/log_compare.html -share/doc/db4/api_c/log_cursor.html -share/doc/db4/api_c/log_file.html -share/doc/db4/api_c/log_flush.html -share/doc/db4/api_c/log_put.html -share/doc/db4/api_c/log_register.html -share/doc/db4/api_c/log_stat.html -share/doc/db4/api_c/log_unregister.html -share/doc/db4/api_c/logc_close.html -share/doc/db4/api_c/logc_get.html -share/doc/db4/api_c/memp_fclose.html -share/doc/db4/api_c/memp_fcreate.html -share/doc/db4/api_c/memp_fget.html -share/doc/db4/api_c/memp_fopen.html -share/doc/db4/api_c/memp_fput.html -share/doc/db4/api_c/memp_fset.html -share/doc/db4/api_c/memp_fsync.html -share/doc/db4/api_c/memp_register.html -share/doc/db4/api_c/memp_set_clear_len.html -share/doc/db4/api_c/memp_set_fileid.html -share/doc/db4/api_c/memp_set_ftype.html -share/doc/db4/api_c/memp_set_lsn_offset.html -share/doc/db4/api_c/memp_set_pgcookie.html -share/doc/db4/api_c/memp_stat.html -share/doc/db4/api_c/memp_sync.html -share/doc/db4/api_c/memp_trickle.html -share/doc/db4/api_c/pindex.src -share/doc/db4/api_c/rep_elect.html -share/doc/db4/api_c/rep_message.html -share/doc/db4/api_c/rep_start.html -share/doc/db4/api_c/rep_transport.html -share/doc/db4/api_c/set_func_close.html -share/doc/db4/api_c/set_func_dirfree.html -share/doc/db4/api_c/set_func_dirlist.html -share/doc/db4/api_c/set_func_exists.html -share/doc/db4/api_c/set_func_free.html -share/doc/db4/api_c/set_func_fsync.html -share/doc/db4/api_c/set_func_ioinfo.html -share/doc/db4/api_c/set_func_malloc.html -share/doc/db4/api_c/set_func_map.html -share/doc/db4/api_c/set_func_open.html -share/doc/db4/api_c/set_func_read.html -share/doc/db4/api_c/set_func_realloc.html -share/doc/db4/api_c/set_func_rename.html -share/doc/db4/api_c/set_func_seek.html -share/doc/db4/api_c/set_func_sleep.html -share/doc/db4/api_c/set_func_unlink.html -share/doc/db4/api_c/set_func_unmap.html -share/doc/db4/api_c/set_func_write.html -share/doc/db4/api_c/set_func_yield.html -share/doc/db4/api_c/txn_abort.html -share/doc/db4/api_c/txn_begin.html -share/doc/db4/api_c/txn_checkpoint.html -share/doc/db4/api_c/txn_commit.html -share/doc/db4/api_c/txn_discard.html -share/doc/db4/api_c/txn_id.html -share/doc/db4/api_c/txn_prepare.html -share/doc/db4/api_c/txn_recover.html -share/doc/db4/api_c/txn_set_timeout.html -share/doc/db4/api_c/txn_stat.html -share/doc/db4/api_cxx/c_index.html -share/doc/db4/api_cxx/cxx_pindex.html -share/doc/db4/api_cxx/db_associate.html -share/doc/db4/api_cxx/db_class.html -share/doc/db4/api_cxx/db_close.html -share/doc/db4/api_cxx/db_cursor.html -share/doc/db4/api_cxx/db_del.html -share/doc/db4/api_cxx/db_err.html -share/doc/db4/api_cxx/db_fd.html -share/doc/db4/api_cxx/db_get.html -share/doc/db4/api_cxx/db_get_byteswapped.html -share/doc/db4/api_cxx/db_get_type.html -share/doc/db4/api_cxx/db_join.html -share/doc/db4/api_cxx/db_key_range.html -share/doc/db4/api_cxx/db_open.html -share/doc/db4/api_cxx/db_put.html -share/doc/db4/api_cxx/db_remove.html -share/doc/db4/api_cxx/db_rename.html -share/doc/db4/api_cxx/db_set_alloc.html -share/doc/db4/api_cxx/db_set_append_recno.html -share/doc/db4/api_cxx/db_set_bt_compare.html -share/doc/db4/api_cxx/db_set_bt_minkey.html -share/doc/db4/api_cxx/db_set_bt_prefix.html -share/doc/db4/api_cxx/db_set_cachesize.html -share/doc/db4/api_cxx/db_set_dup_compare.html -share/doc/db4/api_cxx/db_set_errcall.html -share/doc/db4/api_cxx/db_set_errfile.html -share/doc/db4/api_cxx/db_set_errpfx.html -share/doc/db4/api_cxx/db_set_feedback.html -share/doc/db4/api_cxx/db_set_flags.html -share/doc/db4/api_cxx/db_set_h_ffactor.html -share/doc/db4/api_cxx/db_set_h_hash.html -share/doc/db4/api_cxx/db_set_h_nelem.html -share/doc/db4/api_cxx/db_set_lorder.html -share/doc/db4/api_cxx/db_set_pagesize.html -share/doc/db4/api_cxx/db_set_paniccall.html -share/doc/db4/api_cxx/db_set_q_extentsize.html -share/doc/db4/api_cxx/db_set_re_delim.html -share/doc/db4/api_cxx/db_set_re_len.html -share/doc/db4/api_cxx/db_set_re_pad.html -share/doc/db4/api_cxx/db_set_re_source.html -share/doc/db4/api_cxx/db_stat.html -share/doc/db4/api_cxx/db_sync.html -share/doc/db4/api_cxx/db_truncate.html -share/doc/db4/api_cxx/db_upgrade.html -share/doc/db4/api_cxx/db_verify.html -share/doc/db4/api_cxx/dbc_class.html -share/doc/db4/api_cxx/dbc_close.html -share/doc/db4/api_cxx/dbc_count.html -share/doc/db4/api_cxx/dbc_del.html -share/doc/db4/api_cxx/dbc_dup.html -share/doc/db4/api_cxx/dbc_get.html -share/doc/db4/api_cxx/dbc_put.html -share/doc/db4/api_cxx/dbenv_class.html -share/doc/db4/api_cxx/dbt_bulk.html -share/doc/db4/api_cxx/dbt_class.html -share/doc/db4/api_cxx/env_close.html -share/doc/db4/api_cxx/env_err.html -share/doc/db4/api_cxx/env_open.html -share/doc/db4/api_cxx/env_remove.html -share/doc/db4/api_cxx/env_set_alloc.html -share/doc/db4/api_cxx/env_set_cachesize.html -share/doc/db4/api_cxx/env_set_data_dir.html -share/doc/db4/api_cxx/env_set_errcall.html -share/doc/db4/api_cxx/env_set_errfile.html -share/doc/db4/api_cxx/env_set_error_stream.html -share/doc/db4/api_cxx/env_set_errpfx.html -share/doc/db4/api_cxx/env_set_feedback.html -share/doc/db4/api_cxx/env_set_flags.html -share/doc/db4/api_cxx/env_set_lg_bsize.html -share/doc/db4/api_cxx/env_set_lg_dir.html -share/doc/db4/api_cxx/env_set_lg_max.html -share/doc/db4/api_cxx/env_set_lg_regionmax.html -share/doc/db4/api_cxx/env_set_lk_conflicts.html -share/doc/db4/api_cxx/env_set_lk_detect.html -share/doc/db4/api_cxx/env_set_lk_max_lockers.html -share/doc/db4/api_cxx/env_set_lk_max_locks.html -share/doc/db4/api_cxx/env_set_lk_max_objects.html -share/doc/db4/api_cxx/env_set_mp_mmapsize.html -share/doc/db4/api_cxx/env_set_paniccall.html -share/doc/db4/api_cxx/env_set_rec_init.html -share/doc/db4/api_cxx/env_set_rpc_server.html -share/doc/db4/api_cxx/env_set_shm_key.html -share/doc/db4/api_cxx/env_set_tas_spins.html -share/doc/db4/api_cxx/env_set_timeout.html -share/doc/db4/api_cxx/env_set_tmp_dir.html -share/doc/db4/api_cxx/env_set_tx_max.html -share/doc/db4/api_cxx/env_set_tx_recover.html -share/doc/db4/api_cxx/env_set_tx_timestamp.html -share/doc/db4/api_cxx/env_set_verbose.html -share/doc/db4/api_cxx/env_strerror.html -share/doc/db4/api_cxx/env_version.html -share/doc/db4/api_cxx/except_class.html -share/doc/db4/api_cxx/get_dbt.html -share/doc/db4/api_cxx/get_errno.html -share/doc/db4/api_cxx/lock_class.html -share/doc/db4/api_cxx/lock_detect.html -share/doc/db4/api_cxx/lock_get.html -share/doc/db4/api_cxx/lock_id.html -share/doc/db4/api_cxx/lock_id_free.html -share/doc/db4/api_cxx/lock_put.html -share/doc/db4/api_cxx/lock_stat.html -share/doc/db4/api_cxx/lock_vec.html -share/doc/db4/api_cxx/log_archive.html -share/doc/db4/api_cxx/log_compare.html -share/doc/db4/api_cxx/log_cursor.html -share/doc/db4/api_cxx/log_file.html -share/doc/db4/api_cxx/log_flush.html -share/doc/db4/api_cxx/log_put.html -share/doc/db4/api_cxx/log_register.html -share/doc/db4/api_cxx/log_stat.html -share/doc/db4/api_cxx/log_unregister.html -share/doc/db4/api_cxx/logc_class.html -share/doc/db4/api_cxx/logc_close.html -share/doc/db4/api_cxx/logc_get.html -share/doc/db4/api_cxx/lsn_class.html -share/doc/db4/api_cxx/mem_class.html -share/doc/db4/api_cxx/memp_fclose.html -share/doc/db4/api_cxx/memp_fcreate.html -share/doc/db4/api_cxx/memp_fget.html -share/doc/db4/api_cxx/memp_fopen.html -share/doc/db4/api_cxx/memp_fput.html -share/doc/db4/api_cxx/memp_fset.html -share/doc/db4/api_cxx/memp_fsync.html -share/doc/db4/api_cxx/memp_register.html -share/doc/db4/api_cxx/memp_set_clear_len.html -share/doc/db4/api_cxx/memp_set_fileid.html -share/doc/db4/api_cxx/memp_set_ftype.html -share/doc/db4/api_cxx/memp_set_lsn_offset.html -share/doc/db4/api_cxx/memp_set_pgcookie.html -share/doc/db4/api_cxx/memp_stat.html -share/doc/db4/api_cxx/memp_sync.html -share/doc/db4/api_cxx/memp_trickle.html -share/doc/db4/api_cxx/mempfile_class.html -share/doc/db4/api_cxx/pindex.src -share/doc/db4/api_cxx/rep_elect.html -share/doc/db4/api_cxx/rep_message.html -share/doc/db4/api_cxx/rep_start.html -share/doc/db4/api_cxx/rep_transport.html -share/doc/db4/api_cxx/txn_abort.html -share/doc/db4/api_cxx/txn_begin.html -share/doc/db4/api_cxx/txn_checkpoint.html -share/doc/db4/api_cxx/txn_class.html -share/doc/db4/api_cxx/txn_commit.html -share/doc/db4/api_cxx/txn_discard.html -share/doc/db4/api_cxx/txn_id.html -share/doc/db4/api_cxx/txn_prepare.html -share/doc/db4/api_cxx/txn_recover.html -share/doc/db4/api_cxx/txn_set_timeout.html -share/doc/db4/api_cxx/txn_stat.html -share/doc/db4/api_cxx/what.html -share/doc/db4/api_java/c_index.html -share/doc/db4/api_java/db_associate.html -share/doc/db4/api_java/db_class.html -share/doc/db4/api_java/db_close.html -share/doc/db4/api_java/db_cursor.html -share/doc/db4/api_java/db_del.html -share/doc/db4/api_java/db_fd.html -share/doc/db4/api_java/db_get.html -share/doc/db4/api_java/db_get_byteswapped.html -share/doc/db4/api_java/db_get_type.html -share/doc/db4/api_java/db_join.html -share/doc/db4/api_java/db_key_range.html -share/doc/db4/api_java/db_open.html -share/doc/db4/api_java/db_put.html -share/doc/db4/api_java/db_remove.html -share/doc/db4/api_java/db_rename.html -share/doc/db4/api_java/db_set_append_recno.html -share/doc/db4/api_java/db_set_bt_compare.html -share/doc/db4/api_java/db_set_bt_minkey.html -share/doc/db4/api_java/db_set_bt_prefix.html -share/doc/db4/api_java/db_set_cachesize.html -share/doc/db4/api_java/db_set_dup_compare.html -share/doc/db4/api_java/db_set_errcall.html -share/doc/db4/api_java/db_set_errpfx.html -share/doc/db4/api_java/db_set_feedback.html -share/doc/db4/api_java/db_set_flags.html -share/doc/db4/api_java/db_set_h_ffactor.html -share/doc/db4/api_java/db_set_h_hash.html -share/doc/db4/api_java/db_set_h_nelem.html -share/doc/db4/api_java/db_set_lorder.html -share/doc/db4/api_java/db_set_pagesize.html -share/doc/db4/api_java/db_set_q_extentsize.html -share/doc/db4/api_java/db_set_re_delim.html -share/doc/db4/api_java/db_set_re_len.html -share/doc/db4/api_java/db_set_re_pad.html -share/doc/db4/api_java/db_set_re_source.html -share/doc/db4/api_java/db_stat.html -share/doc/db4/api_java/db_sync.html -share/doc/db4/api_java/db_truncate.html -share/doc/db4/api_java/db_upgrade.html -share/doc/db4/api_java/db_verify.html -share/doc/db4/api_java/dbc_class.html -share/doc/db4/api_java/dbc_close.html -share/doc/db4/api_java/dbc_count.html -share/doc/db4/api_java/dbc_del.html -share/doc/db4/api_java/dbc_dup.html -share/doc/db4/api_java/dbc_get.html -share/doc/db4/api_java/dbc_put.html -share/doc/db4/api_java/dbenv_class.html -share/doc/db4/api_java/dbt_bulk_class.html -share/doc/db4/api_java/dbt_class.html -share/doc/db4/api_java/deadlock_class.html -share/doc/db4/api_java/env_close.html -share/doc/db4/api_java/env_open.html -share/doc/db4/api_java/env_remove.html -share/doc/db4/api_java/env_set_cachesize.html -share/doc/db4/api_java/env_set_data_dir.html -share/doc/db4/api_java/env_set_errcall.html -share/doc/db4/api_java/env_set_error_stream.html -share/doc/db4/api_java/env_set_errpfx.html -share/doc/db4/api_java/env_set_feedback.html -share/doc/db4/api_java/env_set_flags.html -share/doc/db4/api_java/env_set_lg_bsize.html -share/doc/db4/api_java/env_set_lg_dir.html -share/doc/db4/api_java/env_set_lg_max.html -share/doc/db4/api_java/env_set_lg_regionmax.html -share/doc/db4/api_java/env_set_lk_conflicts.html -share/doc/db4/api_java/env_set_lk_detect.html -share/doc/db4/api_java/env_set_lk_max_lockers.html -share/doc/db4/api_java/env_set_lk_max_locks.html -share/doc/db4/api_java/env_set_lk_max_objects.html -share/doc/db4/api_java/env_set_mp_mmapsize.html -share/doc/db4/api_java/env_set_rec_init.html -share/doc/db4/api_java/env_set_rpc_server.html -share/doc/db4/api_java/env_set_shm_key.html -share/doc/db4/api_java/env_set_tas_spins.html -share/doc/db4/api_java/env_set_timeout.html -share/doc/db4/api_java/env_set_tmp_dir.html -share/doc/db4/api_java/env_set_tx_max.html -share/doc/db4/api_java/env_set_tx_recover.html -share/doc/db4/api_java/env_set_tx_timestamp.html -share/doc/db4/api_java/env_set_verbose.html -share/doc/db4/api_java/env_strerror.html -share/doc/db4/api_java/env_version.html -share/doc/db4/api_java/except_class.html -share/doc/db4/api_java/get_dbt.html -share/doc/db4/api_java/get_errno.html -share/doc/db4/api_java/java_pindex.html -share/doc/db4/api_java/lock_class.html -share/doc/db4/api_java/lock_detect.html -share/doc/db4/api_java/lock_get.html -share/doc/db4/api_java/lock_id.html -share/doc/db4/api_java/lock_id_free.html -share/doc/db4/api_java/lock_put.html -share/doc/db4/api_java/lock_stat.html -share/doc/db4/api_java/lock_vec.html -share/doc/db4/api_java/log_archive.html -share/doc/db4/api_java/log_compare.html -share/doc/db4/api_java/log_cursor.html -share/doc/db4/api_java/log_file.html -share/doc/db4/api_java/log_flush.html -share/doc/db4/api_java/log_put.html -share/doc/db4/api_java/log_register.html -share/doc/db4/api_java/log_stat.html -share/doc/db4/api_java/log_unregister.html -share/doc/db4/api_java/logc_class.html -share/doc/db4/api_java/logc_close.html -share/doc/db4/api_java/logc_get.html -share/doc/db4/api_java/lsn_class.html -share/doc/db4/api_java/mem_class.html -share/doc/db4/api_java/memp_fclose.html -share/doc/db4/api_java/memp_fopen.html -share/doc/db4/api_java/memp_fsync.html -share/doc/db4/api_java/memp_register.html -share/doc/db4/api_java/memp_stat.html -share/doc/db4/api_java/memp_sync.html -share/doc/db4/api_java/memp_trickle.html -share/doc/db4/api_java/pindex.src -share/doc/db4/api_java/rep_elect.html -share/doc/db4/api_java/rep_message.html -share/doc/db4/api_java/rep_start.html -share/doc/db4/api_java/rep_transport.html -share/doc/db4/api_java/runrec_class.html -share/doc/db4/api_java/txn_abort.html -share/doc/db4/api_java/txn_begin.html -share/doc/db4/api_java/txn_checkpoint.html -share/doc/db4/api_java/txn_class.html -share/doc/db4/api_java/txn_commit.html -share/doc/db4/api_java/txn_discard.html -share/doc/db4/api_java/txn_id.html -share/doc/db4/api_java/txn_prepare.html -share/doc/db4/api_java/txn_recover.html -share/doc/db4/api_java/txn_set_timeout.html -share/doc/db4/api_java/txn_stat.html -share/doc/db4/api_tcl/db_close.html -share/doc/db4/api_tcl/db_count.html -share/doc/db4/api_tcl/db_cursor.html -share/doc/db4/api_tcl/db_del.html -share/doc/db4/api_tcl/db_get.html -share/doc/db4/api_tcl/db_get_join.html -share/doc/db4/api_tcl/db_get_type.html -share/doc/db4/api_tcl/db_is_byteswapped.html -share/doc/db4/api_tcl/db_join.html -share/doc/db4/api_tcl/db_open.html -share/doc/db4/api_tcl/db_put.html -share/doc/db4/api_tcl/db_remove.html -share/doc/db4/api_tcl/db_rename.html -share/doc/db4/api_tcl/db_stat.html -share/doc/db4/api_tcl/db_sync.html -share/doc/db4/api_tcl/db_truncate.html -share/doc/db4/api_tcl/dbc_close.html -share/doc/db4/api_tcl/dbc_del.html -share/doc/db4/api_tcl/dbc_dup.html -share/doc/db4/api_tcl/dbc_get.html -share/doc/db4/api_tcl/dbc_put.html -share/doc/db4/api_tcl/env_close.html -share/doc/db4/api_tcl/env_open.html -share/doc/db4/api_tcl/env_remove.html -share/doc/db4/api_tcl/pindex.src -share/doc/db4/api_tcl/tcl_index.html -share/doc/db4/api_tcl/tcl_pindex.html -share/doc/db4/api_tcl/txn.html -share/doc/db4/api_tcl/txn_abort.html -share/doc/db4/api_tcl/txn_commit.html -share/doc/db4/api_tcl/version.html -share/doc/db4/images/api.gif -share/doc/db4/images/next.gif -share/doc/db4/images/prev.gif -share/doc/db4/images/ps.gif -share/doc/db4/images/ref.gif -share/doc/db4/images/sleepycat.gif -share/doc/db4/index.html -share/doc/db4/ref/am/close.html -share/doc/db4/ref/am/count.html -share/doc/db4/ref/am/curclose.html -share/doc/db4/ref/am/curdel.html -share/doc/db4/ref/am/curdup.html -share/doc/db4/ref/am/curget.html -share/doc/db4/ref/am/curput.html -share/doc/db4/ref/am/cursor.html -share/doc/db4/ref/am/delete.html -share/doc/db4/ref/am/get.html -share/doc/db4/ref/am/join.html -share/doc/db4/ref/am/open.html -share/doc/db4/ref/am/opensub.html -share/doc/db4/ref/am/ops.html -share/doc/db4/ref/am/put.html -share/doc/db4/ref/am/second.html -share/doc/db4/ref/am/stat.html -share/doc/db4/ref/am/sync.html -share/doc/db4/ref/am/truncate.html -share/doc/db4/ref/am/upgrade.html -share/doc/db4/ref/am/verify.html -share/doc/db4/ref/am_conf/bt_compare.html -share/doc/db4/ref/am_conf/bt_minkey.html -share/doc/db4/ref/am_conf/bt_prefix.html -share/doc/db4/ref/am_conf/bt_recnum.html -share/doc/db4/ref/am_conf/byteorder.html -share/doc/db4/ref/am_conf/cachesize.html -share/doc/db4/ref/am_conf/dup.html -share/doc/db4/ref/am_conf/extentsize.html -share/doc/db4/ref/am_conf/h_ffactor.html -share/doc/db4/ref/am_conf/h_hash.html -share/doc/db4/ref/am_conf/h_nelem.html -share/doc/db4/ref/am_conf/intro.html -share/doc/db4/ref/am_conf/logrec.html -share/doc/db4/ref/am_conf/malloc.html -share/doc/db4/ref/am_conf/pagesize.html -share/doc/db4/ref/am_conf/re_source.html -share/doc/db4/ref/am_conf/recno.html -share/doc/db4/ref/am_conf/renumber.html -share/doc/db4/ref/am_conf/select.html -share/doc/db4/ref/am_misc/align.html -share/doc/db4/ref/am_misc/dbsizes.html -share/doc/db4/ref/am_misc/diskspace.html -share/doc/db4/ref/am_misc/error.html -share/doc/db4/ref/am_misc/faq.html -share/doc/db4/ref/am_misc/get_bulk.html -share/doc/db4/ref/am_misc/partial.html -share/doc/db4/ref/am_misc/perm.html -share/doc/db4/ref/am_misc/stability.html -share/doc/db4/ref/am_misc/tune.html -share/doc/db4/ref/arch/apis.html -share/doc/db4/ref/arch/bigpic.gif -share/doc/db4/ref/arch/bigpic.html -share/doc/db4/ref/arch/progmodel.html -share/doc/db4/ref/arch/script.html -share/doc/db4/ref/arch/smallpic.gif -share/doc/db4/ref/arch/utilities.html -share/doc/db4/ref/build_unix/aix.html -share/doc/db4/ref/build_unix/conf.html -share/doc/db4/ref/build_unix/embedix.html -share/doc/db4/ref/build_unix/flags.html -share/doc/db4/ref/build_unix/freebsd.html -share/doc/db4/ref/build_unix/hpux.html -share/doc/db4/ref/build_unix/install.html -share/doc/db4/ref/build_unix/intro.html -share/doc/db4/ref/build_unix/irix.html -share/doc/db4/ref/build_unix/linux.html -share/doc/db4/ref/build_unix/macosx.html -share/doc/db4/ref/build_unix/notes.html -share/doc/db4/ref/build_unix/osf1.html -share/doc/db4/ref/build_unix/qnx.html -share/doc/db4/ref/build_unix/sco.html -share/doc/db4/ref/build_unix/shlib.html -share/doc/db4/ref/build_unix/solaris.html -share/doc/db4/ref/build_unix/sunos.html -share/doc/db4/ref/build_unix/test.html -share/doc/db4/ref/build_unix/ultrix.html -share/doc/db4/ref/build_vxworks/faq.html -share/doc/db4/ref/build_vxworks/intro.html -share/doc/db4/ref/build_vxworks/introae.html -share/doc/db4/ref/build_vxworks/notes.html -share/doc/db4/ref/build_win/faq.html -share/doc/db4/ref/build_win/intro.html -share/doc/db4/ref/build_win/notes.html -share/doc/db4/ref/build_win/test.html -share/doc/db4/ref/cam/intro.html -share/doc/db4/ref/debug/common.html -share/doc/db4/ref/debug/compile.html -share/doc/db4/ref/debug/intro.html -share/doc/db4/ref/debug/printlog.html -share/doc/db4/ref/debug/runtime.html -share/doc/db4/ref/distrib/layout.html -share/doc/db4/ref/dumpload/format.html -share/doc/db4/ref/dumpload/text.html -share/doc/db4/ref/dumpload/utility.html -share/doc/db4/ref/env/create.html -share/doc/db4/ref/env/error.html -share/doc/db4/ref/env/faq.html -share/doc/db4/ref/env/intro.html -share/doc/db4/ref/env/naming.html -share/doc/db4/ref/env/open.html -share/doc/db4/ref/env/region.html -share/doc/db4/ref/env/remote.html -share/doc/db4/ref/env/security.html -share/doc/db4/ref/install/file.html -share/doc/db4/ref/install/magic.s5.be.txt -share/doc/db4/ref/install/magic.s5.le.txt -share/doc/db4/ref/install/magic.txt -share/doc/db4/ref/install/multiple.html -share/doc/db4/ref/install/rpm.html -share/doc/db4/ref/intro/data.html -share/doc/db4/ref/intro/dbis.html -share/doc/db4/ref/intro/dbisnot.html -share/doc/db4/ref/intro/distrib.html -share/doc/db4/ref/intro/need.html -share/doc/db4/ref/intro/products.html -share/doc/db4/ref/intro/terrain.html -share/doc/db4/ref/intro/what.html -share/doc/db4/ref/intro/where.html -share/doc/db4/ref/java/compat.html -share/doc/db4/ref/java/conf.html -share/doc/db4/ref/java/faq.html -share/doc/db4/ref/java/program.html -share/doc/db4/ref/lock/am_conv.html -share/doc/db4/ref/lock/cam_conv.html -share/doc/db4/ref/lock/config.html -share/doc/db4/ref/lock/dead.html -share/doc/db4/ref/lock/intro.html -share/doc/db4/ref/lock/max.html -share/doc/db4/ref/lock/nondb.html -share/doc/db4/ref/lock/notxn.html -share/doc/db4/ref/lock/page.html -share/doc/db4/ref/lock/stdmode.html -share/doc/db4/ref/lock/timeout.html -share/doc/db4/ref/lock/twopl.html -share/doc/db4/ref/log/config.html -share/doc/db4/ref/log/intro.html -share/doc/db4/ref/log/limits.html -share/doc/db4/ref/mp/config.html -share/doc/db4/ref/mp/intro.html -share/doc/db4/ref/perl/intro.html -share/doc/db4/ref/pindex.src -share/doc/db4/ref/program/appsignals.html -share/doc/db4/ref/program/compatible.html -share/doc/db4/ref/program/copy.html -share/doc/db4/ref/program/environ.html -share/doc/db4/ref/program/errorret.html -share/doc/db4/ref/program/extending.html -share/doc/db4/ref/program/mt.html -share/doc/db4/ref/program/namespace.html -share/doc/db4/ref/program/runtime.html -share/doc/db4/ref/program/scope.html -share/doc/db4/ref/program/solaris.txt -share/doc/db4/ref/refs/bdb_usenix.html -share/doc/db4/ref/refs/bdb_usenix.ps -share/doc/db4/ref/refs/embedded.html -share/doc/db4/ref/refs/hash_usenix.ps -share/doc/db4/ref/refs/libtp_usenix.ps -share/doc/db4/ref/refs/refs.html -share/doc/db4/ref/refs/witold.html -share/doc/db4/ref/rep/app.html -share/doc/db4/ref/rep/comm.html -share/doc/db4/ref/rep/elect.html -share/doc/db4/ref/rep/ex.html -share/doc/db4/ref/rep/ex_comm.html -share/doc/db4/ref/rep/ex_rq.html -share/doc/db4/ref/rep/faq.html -share/doc/db4/ref/rep/id.html -share/doc/db4/ref/rep/init.html -share/doc/db4/ref/rep/intro.html -share/doc/db4/ref/rep/logonly.html -share/doc/db4/ref/rep/newsite.html -share/doc/db4/ref/rep/partition.html -share/doc/db4/ref/rep/pri.html -share/doc/db4/ref/rep/trans.html -share/doc/db4/ref/rpc/client.html -share/doc/db4/ref/rpc/intro.html -share/doc/db4/ref/rpc/server.html -share/doc/db4/ref/sendmail/intro.html -share/doc/db4/ref/simple_tut/close.html -share/doc/db4/ref/simple_tut/del.html -share/doc/db4/ref/simple_tut/errors.html -share/doc/db4/ref/simple_tut/example.cs -share/doc/db4/ref/simple_tut/get.html -share/doc/db4/ref/simple_tut/handles.html -share/doc/db4/ref/simple_tut/intro.html -share/doc/db4/ref/simple_tut/keydata.html -share/doc/db4/ref/simple_tut/open.html -share/doc/db4/ref/simple_tut/put.html -share/doc/db4/ref/tcl/error.html -share/doc/db4/ref/tcl/faq.html -share/doc/db4/ref/tcl/intro.html -share/doc/db4/ref/tcl/program.html -share/doc/db4/ref/tcl/using.html -share/doc/db4/ref/test/faq.html -share/doc/db4/ref/test/run.html -share/doc/db4/ref/transapp/admin.html -share/doc/db4/ref/transapp/app.html -share/doc/db4/ref/transapp/archival.html -share/doc/db4/ref/transapp/checkpoint.html -share/doc/db4/ref/transapp/cursor.html -share/doc/db4/ref/transapp/data_open.html -share/doc/db4/ref/transapp/deadlock.html -share/doc/db4/ref/transapp/env_open.html -share/doc/db4/ref/transapp/faq.html -share/doc/db4/ref/transapp/filesys.html -share/doc/db4/ref/transapp/hotfail.html -share/doc/db4/ref/transapp/inc.html -share/doc/db4/ref/transapp/intro.html -share/doc/db4/ref/transapp/logfile.html -share/doc/db4/ref/transapp/nested.html -share/doc/db4/ref/transapp/put.html -share/doc/db4/ref/transapp/read.html -share/doc/db4/ref/transapp/reclimit.html -share/doc/db4/ref/transapp/recovery.html -share/doc/db4/ref/transapp/term.html -share/doc/db4/ref/transapp/throughput.html -share/doc/db4/ref/transapp/transapp.cs -share/doc/db4/ref/transapp/tune.html -share/doc/db4/ref/transapp/why.html -share/doc/db4/ref/transapp/writetest.cs -share/doc/db4/ref/txn/config.html -share/doc/db4/ref/txn/intro.html -share/doc/db4/ref/txn/limits.html -share/doc/db4/ref/txn/other.html -share/doc/db4/ref/upgrade.2.0/convert.html -share/doc/db4/ref/upgrade.2.0/disk.html -share/doc/db4/ref/upgrade.2.0/intro.html -share/doc/db4/ref/upgrade.2.0/system.html -share/doc/db4/ref/upgrade.2.0/toc.html -share/doc/db4/ref/upgrade.3.0/close.html -share/doc/db4/ref/upgrade.3.0/cxx.html -share/doc/db4/ref/upgrade.3.0/db.html -share/doc/db4/ref/upgrade.3.0/db_cxx.html -share/doc/db4/ref/upgrade.3.0/dbenv.html -share/doc/db4/ref/upgrade.3.0/dbenv_cxx.html -share/doc/db4/ref/upgrade.3.0/dbinfo.html -share/doc/db4/ref/upgrade.3.0/disk.html -share/doc/db4/ref/upgrade.3.0/eacces.html -share/doc/db4/ref/upgrade.3.0/eagain.html -share/doc/db4/ref/upgrade.3.0/envopen.html -share/doc/db4/ref/upgrade.3.0/func.html -share/doc/db4/ref/upgrade.3.0/intro.html -share/doc/db4/ref/upgrade.3.0/java.html -share/doc/db4/ref/upgrade.3.0/join.html -share/doc/db4/ref/upgrade.3.0/jump_set.html -share/doc/db4/ref/upgrade.3.0/lock_detect.html -share/doc/db4/ref/upgrade.3.0/lock_notheld.html -share/doc/db4/ref/upgrade.3.0/lock_put.html -share/doc/db4/ref/upgrade.3.0/lock_stat.html -share/doc/db4/ref/upgrade.3.0/log_register.html -share/doc/db4/ref/upgrade.3.0/log_stat.html -share/doc/db4/ref/upgrade.3.0/memp_stat.html -share/doc/db4/ref/upgrade.3.0/open.html -share/doc/db4/ref/upgrade.3.0/rmw.html -share/doc/db4/ref/upgrade.3.0/stat.html -share/doc/db4/ref/upgrade.3.0/toc.html -share/doc/db4/ref/upgrade.3.0/txn_begin.html -share/doc/db4/ref/upgrade.3.0/txn_commit.html -share/doc/db4/ref/upgrade.3.0/txn_stat.html -share/doc/db4/ref/upgrade.3.0/value_set.html -share/doc/db4/ref/upgrade.3.0/xa.html -share/doc/db4/ref/upgrade.3.1/btstat.html -share/doc/db4/ref/upgrade.3.1/config.html -share/doc/db4/ref/upgrade.3.1/disk.html -share/doc/db4/ref/upgrade.3.1/dup.html -share/doc/db4/ref/upgrade.3.1/env.html -share/doc/db4/ref/upgrade.3.1/intro.html -share/doc/db4/ref/upgrade.3.1/log_register.html -share/doc/db4/ref/upgrade.3.1/logalloc.html -share/doc/db4/ref/upgrade.3.1/memp_register.html -share/doc/db4/ref/upgrade.3.1/put.html -share/doc/db4/ref/upgrade.3.1/set_feedback.html -share/doc/db4/ref/upgrade.3.1/set_paniccall.html -share/doc/db4/ref/upgrade.3.1/set_tx_recover.html -share/doc/db4/ref/upgrade.3.1/sysmem.html -share/doc/db4/ref/upgrade.3.1/tcl.html -share/doc/db4/ref/upgrade.3.1/tmp.html -share/doc/db4/ref/upgrade.3.1/toc.html -share/doc/db4/ref/upgrade.3.1/txn_check.html -share/doc/db4/ref/upgrade.3.2/callback.html -share/doc/db4/ref/upgrade.3.2/db_dump.html -share/doc/db4/ref/upgrade.3.2/disk.html -share/doc/db4/ref/upgrade.3.2/handle.html -share/doc/db4/ref/upgrade.3.2/incomplete.html -share/doc/db4/ref/upgrade.3.2/intro.html -share/doc/db4/ref/upgrade.3.2/mutexlock.html -share/doc/db4/ref/upgrade.3.2/notfound.html -share/doc/db4/ref/upgrade.3.2/renumber.html -share/doc/db4/ref/upgrade.3.2/set_flags.html -share/doc/db4/ref/upgrade.3.2/toc.html -share/doc/db4/ref/upgrade.3.2/tx_recover.html -share/doc/db4/ref/upgrade.3.3/alloc.html -share/doc/db4/ref/upgrade.3.3/bigfile.html -share/doc/db4/ref/upgrade.3.3/conflict.html -share/doc/db4/ref/upgrade.3.3/disk.html -share/doc/db4/ref/upgrade.3.3/getswap.html -share/doc/db4/ref/upgrade.3.3/gettype.html -share/doc/db4/ref/upgrade.3.3/intro.html -share/doc/db4/ref/upgrade.3.3/memp_fget.html -share/doc/db4/ref/upgrade.3.3/rpc.html -share/doc/db4/ref/upgrade.3.3/shared.html -share/doc/db4/ref/upgrade.3.3/toc.html -share/doc/db4/ref/upgrade.3.3/txn_prepare.html -share/doc/db4/ref/upgrade.4.0/asr.html -share/doc/db4/ref/upgrade.4.0/cxx.html -share/doc/db4/ref/upgrade.4.0/deadlock.html -share/doc/db4/ref/upgrade.4.0/disk.html -share/doc/db4/ref/upgrade.4.0/env.html -share/doc/db4/ref/upgrade.4.0/intro.html -share/doc/db4/ref/upgrade.4.0/java.html -share/doc/db4/ref/upgrade.4.0/lock.html -share/doc/db4/ref/upgrade.4.0/lock_id_free.html -share/doc/db4/ref/upgrade.4.0/log.html -share/doc/db4/ref/upgrade.4.0/mp.html -share/doc/db4/ref/upgrade.4.0/rpc.html -share/doc/db4/ref/upgrade.4.0/set_lk_max.html -share/doc/db4/ref/upgrade.4.0/toc.html -share/doc/db4/ref/upgrade.4.0/txn.html -share/doc/db4/ref/upgrade/process.html -share/doc/db4/ref/upgrade/version.html -share/doc/db4/ref/xa/build.html -share/doc/db4/ref/xa/faq.html -share/doc/db4/ref/xa/intro.html -share/doc/db4/ref/xa/xa_config.html -share/doc/db4/ref/xa/xa_intro.html -share/doc/db4/reftoc.html -share/doc/db4/sleepycat/contact.html -share/doc/db4/sleepycat/legal.html -share/doc/db4/sleepycat/license.html -share/doc/db4/utility/berkeley_db_svc.html -share/doc/db4/utility/db_archive.html -share/doc/db4/utility/db_checkpoint.html -share/doc/db4/utility/db_deadlock.html -share/doc/db4/utility/db_dump.html -share/doc/db4/utility/db_load.html -share/doc/db4/utility/db_printlog.html -share/doc/db4/utility/db_recover.html -share/doc/db4/utility/db_stat.html -share/doc/db4/utility/db_upgrade.html -share/doc/db4/utility/db_verify.html -share/doc/db4/utility/index.html -@dirrm include/db4 -@dirrm share/doc/db4/ref/am -@dirrm share/doc/db4/ref/am_conf -@dirrm share/doc/db4/ref/am_misc -@dirrm share/doc/db4/ref/arch -@dirrm share/doc/db4/ref/build_unix -@dirrm share/doc/db4/ref/build_vxworks -@dirrm share/doc/db4/ref/build_win -@dirrm share/doc/db4/ref/cam -@dirrm share/doc/db4/ref/debug -@dirrm share/doc/db4/ref/distrib -@dirrm share/doc/db4/ref/dumpload -@dirrm share/doc/db4/ref/env -@dirrm share/doc/db4/ref/install -@dirrm share/doc/db4/ref/intro -@dirrm share/doc/db4/ref/java -@dirrm share/doc/db4/ref/lock -@dirrm share/doc/db4/ref/log -@dirrm share/doc/db4/ref/mp -@dirrm share/doc/db4/ref/perl -@dirrm share/doc/db4/ref/program -@dirrm share/doc/db4/ref/refs -@dirrm share/doc/db4/ref/rep -@dirrm share/doc/db4/ref/rpc -@dirrm share/doc/db4/ref/sendmail -@dirrm share/doc/db4/ref/simple_tut -@dirrm share/doc/db4/ref/splash -@dirrm share/doc/db4/ref/tcl -@dirrm share/doc/db4/ref/test -@dirrm share/doc/db4/ref/transapp -@dirrm share/doc/db4/ref/txn -@dirrm share/doc/db4/ref/upgrade -@dirrm share/doc/db4/ref/upgrade.2.0 -@dirrm share/doc/db4/ref/upgrade.3.0 -@dirrm share/doc/db4/ref/upgrade.3.1 -@dirrm share/doc/db4/ref/upgrade.3.2 -@dirrm share/doc/db4/ref/upgrade.3.3 -@dirrm share/doc/db4/ref/upgrade.4.0 -@dirrm share/doc/db4/ref/xa -@dirrm share/doc/db4/ref -@dirrm share/doc/db4/sleepycat -@dirrm share/doc/db4/api_c -@dirrm share/doc/db4/api_java -@dirrm share/doc/db4/api_cxx -@dirrm share/doc/db4/utility -@dirrm share/doc/db4/api_tcl -@dirrm share/doc/db4/images -@dirrm share/doc/db4 diff --git a/databases/firebird-client/Makefile b/databases/firebird-client/Makefile deleted file mode 100644 index 0fffe53812ff..000000000000 --- a/databases/firebird-client/Makefile +++ /dev/null @@ -1,82 +0,0 @@ -# New ports collection makefile for: Firebird -# Date created: 20 December 2000 -# Whom: Geoffrey C. Speicher <geoff@sea-incorporated.com> -# -# $FreeBSD$ -# - -PORTNAME= firebird -PORTVERSION= 0.9 -PORTREVISION= 4 -CATEGORIES= databases -MASTER_SITES= http://firebird.sourceforge.net/download/ \ - ${MASTER_SITE_SOURCEFORGE} -MASTER_SITE_SUBDIR=firebird -DISTFILES= firebird-boot-kit.tar.gz \ - interbase0.9-4-v5examples.tar.gz \ - interbase0.9-4src.tar.gz - -MAINTAINER= chris@aims.com.au - -WRKSRC= ${WRKDIR}/interbase -INSTALLS_SHLIB= yes -LDCONFIG_DIRS= %%PREFIX%%/firebird/lib -MSG_FILE= ${PKGDIR}/pkg-message -PKGMESSAGE= ${WRKDIR}/pkg-message - -ONLY_FOR_ARCHS= i386 - -.include <bsd.port.pre.mk> - -do-extract: - @${MKDIR} ${WRKDIR} - @( \ - cd ${WRKDIR}; ${TAR} -xzf ${DISTDIR}/interbase0.9-4src.tar.gz; \ - cd interbase; ${TAR} -xzf ${DISTDIR}/firebird-boot-kit.tar.gz; \ - ${CP} msgs/msg.gbak misc/msg.gbak \ - ) - -post-patch: - @${SED} 's|%%PREFIX%%|${PREFIX}|g' ${MSG_FILE} > ${PKGMESSAGE} -.if ${OSVERSION} >= 500016 || ${OSVERSION} >= 430001 - @${PERL} -pi -e 's,\-ldescrypt,\-lcrypt,g' \ - ${WRKSRC}/builds/original/prefix.freebsd -.else - @${PERL} -pi -e 's,^crypt_set_format.*,,' ${WRKSRC}/jrd/enc.c -.endif - -do-configure: - @( \ - cd ${WRKDIR}/interbase; \ - INTERBASE=${WRKDIR}/interbase/interbase; export INTERBASE; \ - REFDBPATH=${WRKDIR}/refDatabases; export REFDBPATH; \ - ${SH} buildBootDatabases; \ - ${SH} setup_dirs.boot FREEBSD PROD ${WRKDIR}/refDatabases boot; \ - ) - -do-build: - @( \ - ${ECHO} '#!/bin/sh'; ${ECHO} \ - '[ -d ${LDCONFIG_RUNLIST} ] && ${LDCONFIG} -m ${LDCONFIG_RUNLIST}'; \ - ) > ${WRKDIR}/000.${PORTNAME}.sh - @( \ - cd ${WRKDIR}/interbase; \ - INTERBASE=${WRKDIR}/interbase/interbase; export INTERBASE; \ - REFDBPATH=${WRKDIR}/refDatabases; export REFDBPATH; \ - ${SH} boot.freebsd; \ - ) - -do-install: - @( \ - cd ${WRKDIR}/interbase; \ - ${CP} -Rp interbase ${PREFIX}/firebird; \ - ${RM} ${PREFIX}/firebird/install; \ - ${RM} ${PREFIX}/firebird/lib/libgds.so.1.0; \ - ${LN} -fs gds.so ${PREFIX}/firebird/lib/libgds.so.1; \ - cd ${PREFIX}/firebird/examples; \ - ${TAR} -xzf ${DISTDIR}/interbase0.9-4-v5examples.tar.gz; \ - ${CP} ${FILESDIR}/RELNOTES ${PREFIX}/firebird/; \ - ${INSTALL_SCRIPT} ${WRKDIR}/000.${PORTNAME}.sh ${PREFIX}/etc/rc.d/ \ - ) - -.include <bsd.port.post.mk> diff --git a/databases/firebird-client/distinfo b/databases/firebird-client/distinfo deleted file mode 100644 index 67c42987376e..000000000000 --- a/databases/firebird-client/distinfo +++ /dev/null @@ -1,3 +0,0 @@ -MD5 (firebird-boot-kit.tar.gz) = 2e18d75539bc4c3d40a1a71509309f64 -MD5 (interbase0.9-4-v5examples.tar.gz) = 17cba82bbf5066d515f2dee97bf8327a -MD5 (interbase0.9-4src.tar.gz) = d098277ed160e2b6a49d91e1fdb3a652 diff --git a/databases/firebird-client/files/RELNOTES b/databases/firebird-client/files/RELNOTES deleted file mode 100644 index d2fd1d4fc88d..000000000000 --- a/databases/firebird-client/files/RELNOTES +++ /dev/null @@ -1,79 +0,0 @@ -Firebird 0.9_4 FreeBSD Release Notes 13-Jan-2001 ------------------------------------- -FB-T0.9.4.34 Firebird Test1 - -Welcome to the FreeBSD Firebird port! Users should note that there -was a package called `firebird-1.0.tgz' released in mid-August -2000. Unfortunately, that package was released before Firebird -version numbering conventions were established, so although the -version number would suggest that it is newer than the current -release, it is certainly not. Users of the August 1.0 package -should upgrade to 0.9_4 or later, which has fixed many bugs and -security problems, including the recently-discovered back door. - - Firebird originally required a running copy of Firebird (or -InterBase) in order to build itself. This port uses a boot kit to -overcome that, so that it does not require itself to build. -Unfortunately, the side effect of this is that if you have a lock -manager running from an already-installed version of Firebird or -InterBase, this port will not build. - - Firebird is installed SUID with owner and group `firebird'. -This does affect where you can and cannot create databases when -connecting remotely, as well as which existing databases you can -access. If you want a database to be available remotely, be sure -it's readable and writeable to group firebird. - - There may be times when you manage to get your system into a -state where using any of the Firebird utilites (isql, gbak, gsec, -etc.) gives you the message "semget failed". One surefire way to -do this is to build and install the port. :) If this happens, -make sure that the lock manager is not running and its semaphores -have been removed. The former can be accomplished with 'ps ax -|grep gds' and 'kill'; the latter with 'ipcs -s' and 'ipcrm -s'. - - For example, after building and installing the port, you will -probably go through something like this: - -# isql /usr/interbase/isc4.gdb -Statement failed, SQLCODE = -902 - -operating system directive semget failed --No such file or directory - -# ipcs -s -Semaphores: -T ID KEY MODE OWNER GROUP -s 1310720 252034728 --rw-rw-rw- root wheel - -# ipcrm -s 1310720 - -and you should be in business. - - Once this is done, you should be able to connect normally to -databases. Your first connection will restart the lock manager. - - There may be times, however, when you still get "semget failed" -even though the lock manager is not running and the semaphores have -been cleaned up. There seems to be a conflict with this release -and the PostgreSQL 7 release as installed from the ports collection. -If you're having trouble with Firebird and you're running PostgreSQL, -try stopping PostgreSQL: - - /usr/local/etc/rc.d/pgsql.sh stop - -and see if that helps. - - Complete documentation for InterBase(tm) is available (free of -charge) from http://www.interbase.com/ in PDF format. While -InterBase and Firebird are two distinct entities, all InterBase -documentation is pertinent to Firebird. More information on Firebird -and InterBase can be found at the following: - - http://sourceforge.net/projects/firebird/ - http://www.ibphoenix.com/ - http://www.interbase2000.org/ - http://www.firebirdsql.org/ - -Geoff Speicher -<geoff@sea-incorporated.com> diff --git a/databases/firebird-client/files/patch-aa b/databases/firebird-client/files/patch-aa deleted file mode 100644 index f2db9a68750d..000000000000 --- a/databases/firebird-client/files/patch-aa +++ /dev/null @@ -1,11 +0,0 @@ ---- buildBootDatabases.orig Tue Oct 10 23:00:39 2000 -+++ buildBootDatabases Tue Oct 10 23:00:46 2000 -@@ -49,7 +49,7 @@ - DefaultAns=$2 - echo -n "${1}" - Answer="$DefaultAns" -- read Answer -+# read Answer - } - - #-------------------------------------------------------------------- diff --git a/databases/firebird-client/files/patch-ab b/databases/firebird-client/files/patch-ab deleted file mode 100644 index f054a4b23007..000000000000 --- a/databases/firebird-client/files/patch-ab +++ /dev/null @@ -1,11 +0,0 @@ ---- setup_dirs.boot.orig Tue Oct 10 23:00:07 2000 -+++ setup_dirs.boot Tue Oct 10 23:00:22 2000 -@@ -49,7 +49,7 @@ - DefaultAns=$2 - echo -n "${1}" - Answer="$DefaultAns" -- read Answer -+# read Answer - } - - diff --git a/databases/firebird-client/files/patch-ac b/databases/firebird-client/files/patch-ac deleted file mode 100644 index bf5de43b75fb..000000000000 --- a/databases/firebird-client/files/patch-ac +++ /dev/null @@ -1,58 +0,0 @@ ---- builds/original/prefix.freebsd 2000/10/08 15:36:25 1.2 -+++ builds/original/prefix.freebsd 2001/01/11 19:17:58 -@@ -28,7 +28,7 @@ - - - PROD_DEBUG_OBJECTS= nodebug.o --PROD_SHRLIB_DIR= -+PROD_SHRLIB_DIR= -Lsource/jrd - PROD_VERSION_FLAG= -DPROD_BUILD - PROD_CFLAGS= -O -m486 -fpic -DFLINTSTONE - -@@ -48,7 +48,7 @@ - UDF_LINK_CMD= gcc - UDF_CFLAGS= -fPIC -mieee-fp - UDF_LFLAGS= -shared --UDF_SHRLIBS= -L/usr/local/lib -lgds -lm -lc -mieee-fp -ldescrypt -+UDF_SHRLIBS= $(SHRLIB_DIR) -lgds -lm -lc -mieee-fp -ldescrypt - - #NOTE: PIC_J_CFLAGS is special CFLAGS used to build PIPD_IS_SHRLIB modules - # to workaround the Solaris threading problems with signals -@@ -69,16 +69,14 @@ - FUNCTIONS= functions.bin - FUNCSHR= source/interbase/lib/gdsf.so - GDS_LINK= $(GDSSHR_LINK) --#GDS_PYXIS= - GDS_PYXIS= gds_pyxis.a - GDSLIB_BACKEND= source/interbase/lib/gds_b.a - GDSLIB_LINK= -Lsource/jrd -lgds_b -lc -ldescrypt - - GDSSHR= source/interbase/lib/gds.so - LINUX_GDSSHR= $(GDSSHR) --GDSSHR_LINK= $(SHRLIB_DIR) -L/usr/local/lib -lgds -lgds_pyxis -ldescrypt --PIPE_GDSSHR_LINK= $(SHRLIB_DIR) -L/usr/local/lib -lgds -lgds_pyxis --#PIPE_GDSSHR_LINK= $(SHRLIB_DIR) -lgds -lgds_pyxis -+GDSSHR_LINK= $(SHRLIB_DIR) -lgds -lgds_pyxis -ldescrypt -+PIPE_GDSSHR_LINK= $(SHRLIB_DIR) -lgds -lgds_pyxis - HLPDIR= source/qli/ - HOSTNAME= `hostname | cut -d'.' -f1` - INCLUDES= include_so include_so_ada -@@ -106,11 +104,6 @@ - MUISQL_LINK_OPTS= $(MUISQL_MU_LIB) $(PIPE_GDSSHR_LINK) -lm - PIC_FLAGS= $(CFLAGS) -fPIC - PIPE= gds.a gds_pipe --#PYXIS= --#PYXIS_MISC_OBJS= --#PYXIS_P_MISC_OBJS= --#PYXIS_OBJECTS= --#PYXIS_MISC_OBJECTS= - PYXIS= pyxis - PYXIS_MISC_OBJS= $(PYXIS_MISC) - PYXIS_P_MISC_OBJS= $(PYXIS_P_MISC) -@@ -167,5 +160,8 @@ - SHRLIB_EXT= .so - - V3PRINTER= source/lock/printv3.o -+ -+# Forces library build for FreeBSD -+PYXIS_LIBRARY= libpyxis.a diff --git a/databases/firebird-client/files/patch-ad b/databases/firebird-client/files/patch-ad deleted file mode 100644 index 7ce937566bc3..000000000000 --- a/databases/firebird-client/files/patch-ad +++ /dev/null @@ -1,13 +0,0 @@ ---- jrd/enc.c.orig Fri Aug 4 06:50:03 2000 -+++ jrd/enc.c Sun Nov 18 19:17:19 2001 -@@ -31,6 +31,10 @@ - * - **************************************/ - -+#ifdef FREEBSD -+crypt_set_format("des"); -+#endif -+ - return CRYPT_FUNC( string, salt); - } - #endif diff --git a/databases/firebird-client/pkg-comment b/databases/firebird-client/pkg-comment deleted file mode 100644 index f8cb5bc1d7b3..000000000000 --- a/databases/firebird-client/pkg-comment +++ /dev/null @@ -1 +0,0 @@ -The open-source InterBase(tm) 6.0 spin-off (Classic version) diff --git a/databases/firebird-client/pkg-descr b/databases/firebird-client/pkg-descr deleted file mode 100644 index b080060395eb..000000000000 --- a/databases/firebird-client/pkg-descr +++ /dev/null @@ -1,23 +0,0 @@ -The open-source InterBase(tm) 6.0 spin-off (Classic server version) - -InterBase is a world-class DBMS with a history too rich to detail -here. Once selling for several thousands of dollars per license, -some very big players use it worldwide. Inprise has open-sourced -InterBase 6.0, and a lively bunch of folks has charged themselves -with seeing that it lives on through the Firebird project. - -Note that as of Firebird 0.9_4, the locksmith back door has -been closed. - -For more information on Firebird and InterBase, see: -http://www.ibphoenix.com/ -http://www.interbase2000.org/ -http://www.interbase.com/ -http://www.firebirdsql.org/ - -and of course the firebird page itself: -WWW: http://sourceforge.net/projects/firebird/ - -For more information on the locksmith back door, see: - -https://www.kb.cert.org/vuls/id/247371 diff --git a/databases/firebird-client/pkg-install b/databases/firebird-client/pkg-install deleted file mode 100644 index c6b00320cd7e..000000000000 --- a/databases/firebird-client/pkg-install +++ /dev/null @@ -1,159 +0,0 @@ -#!/bin/sh - -# Created in haste by smashing together various -# files from the port scripts. - -if [ "$2" = "PRE-INSTALL" ]; then -if [ -d $PKG_PREFIX/firebird ]; then - if [ -d $PKG_PREFIX/firebird.old ]; then - rm -rf $PKG_PREFIX/firebird.old - fi - mv $PKG_PREFIX/firebird $PKG_PREFIX/firebird.old -fi - -if [ -L /usr/interbase ]; then - rm -f /usr/interbase -fi - -if [ -d /usr/interbase ]; then - mv /usr/interbase /usr/interbase.old -fi - -ln -fs $PKG_PREFIX/firebird /usr/interbase - -perl <<EOF -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( "firebird" ) ) { - ( \$null, \$null, \$fbUID ) = getpwnam( "firebird" ); -} else { - \$fbUID = 90; - while( getpwuid( \$fbUID ) ) { - \$fbUID++; - } -} - -if( getgrnam( "firebird" ) ) { - ( \$null, \$null, \$fbGID ) = getgrnam( "firebird" ); -} else { - \$fbGID = 90; - while( getgrgid( \$fbGID ) ) { - \$fbGID++; - } - &append_file( "/etc/group", "firebird:*:\$fbGID:" ); -} - -print "firebird user using uid \$fbUID\n"; -print "firebird user using gid \$fbGID\n"; - -system( "/usr/bin/chpass -a \"firebird:*:\$fbUID:\$fbGID\:\:0:0:Firebird pseudo-user:\$ENV{'PKG_PREFIX'}/firebird:/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 ); -} -EOF -elif [ "$2" = "POST-INSTALL" ]; then -chown -R firebird:firebird $PKG_PREFIX/firebird - -# Turn everybody to read only. -chmod -R o=r $PKG_PREFIX/firebird - -# Now fix up the mess. - -# fix up directories -for i in `find $PKG_PREFIX/firebird -print` - do - FileName=$i - if [ -d $FileName ] - then - chmod o=rx $FileName - fi - done - -# make lib ldconfig-compatible -chown -R root:wheel $PKG_PREFIX/firebird/lib -chmod -R g-w $PKG_PREFIX/firebird/lib - -# Fix UDF load problem -cd $PKG_PREFIX/firebird/lib -ln -sf ib_util.so libib_util.so - -cd $PKG_PREFIX/firebird/bin - -# all users can run everything. -chmod o=rx * - -# SUID is needed for running server programs. - -for i in gds_lock_mgr gds_drop gds_inet_server - do - chmod ug+s $i - done - - -# Lock files - -cd $PKG_PREFIX/firebird - -for i in isc_init1 isc_lock1 isc_event1 - do - FileName=$i.`hostname` - touch $FileName - chmod uga=rw $FileName - chown firebird:firebird $FileName - done - - -touch interbase.log -chmod ugo=rw interbase.log - -# make databases writable by all -chmod ugo=rw examples/v5/*.gdb -chmod ugo=rw help/*.gdb -chmod ugo=rw isc4.gdb - -# remove any existing gds service -cp /etc/services /etc/services.old -cp /etc/inetd.conf /etc/inetd.conf.old -cat /etc/services |grep -v gds_db >/etc/services.new -cat /etc/inetd.conf |grep -v gds_db >/etc/inetd.conf.new -mv /etc/services.new /etc/services -mv /etc/inetd.conf.new /etc/inetd.conf - -# add the gds service and restart inetd -cat >>/etc/services <<EOF -gds_db 3050/tcp #InterBase Database Remote Protocol -EOF -cat >>/etc/inetd.conf <<EOF -gds_db stream tcp nowait firebird /usr/interbase/bin/gds_inet_server gds_inet_server -EOF -if [ -f /var/run/inetd.pid ]; then - kill -HUP `cat /var/run/inetd.pid` -fi - -# shared lib startup script -if [ -d $PKG_PREFIX/etc/rc.d ]; then - ( - echo "#!/bin/sh"; echo "[ -d $PKG_PREFIX/firebird/lib ] && /sbin/ldconfig -m $PKG_PREFIX/firebird/lib" - ) > $PKG_PREFIX/etc/rc.d/000.firebird.sh -fi - -fi diff --git a/databases/firebird-client/pkg-message b/databases/firebird-client/pkg-message deleted file mode 100644 index f15892a06aaa..000000000000 --- a/databases/firebird-client/pkg-message +++ /dev/null @@ -1,19 +0,0 @@ - ---------------------------------------------------------- -Firebird is now installed. There is a symbolic link from -/usr/interbase -> %%PREFIX%%/firebird. Firebird needs this -link for proper operation. - -It is STRONGLY recommended that you change the SYSDBA -password with: - -$ cd /usr/interbase -$ gsec -user SYSDBA -pass masterkey -GSEC> modify SYSDBA -pw newpassword -GSEC> quit - -before doing anything serious with Firebird. - -See %%PREFIX%%/firebird/RELNOTES for more. ---------------------------------------------------------- - diff --git a/databases/firebird-client/pkg-plist b/databases/firebird-client/pkg-plist deleted file mode 100644 index 10f152fcbc82..000000000000 --- a/databases/firebird-client/pkg-plist +++ /dev/null @@ -1,106 +0,0 @@ -etc/rc.d/000.firebird.sh -firebird/intl/gdsintl -firebird/examples/v5/ib_udf.sql -firebird/examples/v5/README -firebird/examples/v5/align.h -firebird/examples/v5/api1.c -firebird/examples/v5/api10.c -firebird/examples/v5/api11.c -firebird/examples/v5/api12.c -firebird/examples/v5/api13.c -firebird/examples/v5/api14.e -firebird/examples/v5/api15.c -firebird/examples/v5/api16.c -firebird/examples/v5/api16t.c -firebird/examples/v5/api2.c -firebird/examples/v5/api3.c -firebird/examples/v5/api4.c -firebird/examples/v5/api5.c -firebird/examples/v5/api6.c -firebird/examples/v5/api7.c -firebird/examples/v5/api8.c -firebird/examples/v5/api9.c -firebird/examples/v5/api9f.c -firebird/examples/v5/apifull.c -firebird/examples/v5/employe2.sql -firebird/examples/v5/dyn1.e -firebird/examples/v5/dyn2.e -firebird/examples/v5/dyn3.e -firebird/examples/v5/dyn4.e -firebird/examples/v5/dyn5.e -firebird/examples/v5/dynfull.e -firebird/examples/v5/employee.gbk -firebird/examples/v5/employee.gdb -firebird/examples/v5/example.h -firebird/examples/v5/api9f.sql -firebird/examples/v5/intlemp.gbk -firebird/examples/v5/intlemp.gdb -firebird/examples/v5/stat1.e -firebird/examples/v5/stat10.e -firebird/examples/v5/stat11.e -firebird/examples/v5/stat12.e -firebird/examples/v5/stat12t.e -firebird/examples/v5/stat2.e -firebird/examples/v5/stat3.e -firebird/examples/v5/stat4.e -firebird/examples/v5/stat5.e -firebird/examples/v5/stat6.e -firebird/examples/v5/stat7.e -firebird/examples/v5/stat8.e -firebird/examples/v5/stat9.e -firebird/examples/v5/udf.sql -firebird/examples/v5/udflib.c -firebird/examples/v5/makefile -firebird/include/perf.h -firebird/include/ib_util.h -firebird/include/gds.hxx -firebird/include/gds.h -firebird/include/ibase.h -firebird/include/iberror.h -firebird/include/gds.f -firebird/UDF/ib_udf -firebird/lib/ib_util.so -firebird/lib/gds.a -firebird/lib/gds.so -firebird/lib/libgds.so -firebird/lib/libgds.so.1 -firebird/lib/libgds_pyxis.a -firebird/lib/libgds.a -firebird/lib/libib_util.so -firebird/lib/gds_pyxis.a -firebird/help/help.gbak -firebird/help/help.gdb -firebird/bin/isc4.gbak -firebird/bin/gpre -firebird/bin/gds_pipe -firebird/bin/gds_drop -firebird/bin/gds_lock_mgr -firebird/bin/gfix -firebird/bin/gdef -firebird/bin/isql -firebird/bin/gds_lock_print -firebird/bin/qli -firebird/bin/gds_inet_server -firebird/bin/gsplit -firebird/bin/gstat -firebird/bin/gds_relay -firebird/bin/gsec -firebird/bin/gbak -firebird/services.isc -firebird/isc_config -firebird/isc4.gdb -firebird/interbase.msg -firebird/interbase.log -firebird/inetd.conf.isc -firebird/RELNOTES -@dirrm firebird -@dirrm firebird/intl -@dirrm firebird/examples/v3 -@dirrm firebird/examples/v4 -@dirrm firebird/examples/v5 -@dirrm firebird/examples -@dirrm firebird/include -@dirrm firebird/UDF -@dirrm firebird/lib -@dirrm firebird/help -@dirrm firebird/bin diff --git a/databases/firebird-client/scripts/addservice b/databases/firebird-client/scripts/addservice deleted file mode 100644 index df9aea5e91de..000000000000 --- a/databases/firebird-client/scripts/addservice +++ /dev/null @@ -1,9 +0,0 @@ -#!/bin/sh - -cat >>/etc/services <<EOF -gds_db 3050/tcp #InterBase Database Remote Protocol -EOF -cat >>/etc/inetd.conf <<EOF -gds_db stream tcp nowait firebird /usr/interbase/bin/gds_inet_server gds_inet_server -EOF -kill -HUP `cat /var/run/inetd.pid` diff --git a/databases/firebird-client/scripts/createuser b/databases/firebird-client/scripts/createuser deleted file mode 100644 index b61d47fd84bd..000000000000 --- a/databases/firebird-client/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( "firebird" ) ) { - ( $null, $null, $fbUID ) = getpwnam( "firebird" ); -} else { - $fbUID = 90; - while( getpwuid( $fbUID ) ) { - $fbUID++; - } -} - -if( getgrnam( "firebird" ) ) { - ( $null, $null, $fbGID ) = getgrnam( "firebird" ); -} else { - $fbGID = 90; - while( getgrgid( $fbGID ) ) { - $fbGID++; - } - &append_file( "/etc/group", "firebird:*:$fbGID:" ); -} - -print "firebird user using uid $fbUID\n"; -print "firebird user using gid $fbGID\n"; - -system( "/usr/bin/chpass -a \"firebird:*:$fbUID:$fbGID\:\:0:0:Firebird pseudo-user:$ENV{'PREFIX'}/firebird:/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/firebird-client/scripts/post-install b/databases/firebird-client/scripts/post-install deleted file mode 100644 index c2515fde278c..000000000000 --- a/databases/firebird-client/scripts/post-install +++ /dev/null @@ -1,84 +0,0 @@ -#!/bin/sh - -chown -R firebird:firebird $PREFIX/firebird - -# Turn everybody to read only. -chmod -R o=r $PREFIX/firebird - -# Now fix up the mess. - -# fix up directories -for i in `find $PREFIX/firebird -print` - do - FileName=$i - if [ -d $FileName ] - then - chmod o=rx $FileName - fi - done - -# make lib ldconfig-compatible -chown -R root:wheel $PREFIX/firebird/lib -chmod -R g-w $PREFIX/firebird/lib - -# Fix UDF load problem -cd $PREFIX/firebird/lib -ln -sf ib_util.so libib_util.so - -cd $PREFIX/firebird/bin - -# all users can run everything. -chmod o=rx * - -# SUID is needed for running server programs. - -for i in gds_lock_mgr gds_drop gds_inet_server - do - chmod ug+s $i - done - - -# Lock files - -cd $PREFIX/firebird - -for i in isc_init1 isc_lock1 isc_event1 - do - FileName=$i.`hostname` - touch $FileName - chmod uga=rw $FileName - chown firebird:firebird $FileName - done - - -touch interbase.log -chmod ugo=rw interbase.log - -# make databases writable by all -chmod ugo=rw examples/v5/*.gdb -chmod ugo=rw help/*.gdb -chmod ugo=rw isc4.gdb - -# remove any existing gds service -sh $SCRIPTDIR/rmservice - -# add the gds service and restart inetd -sh $SCRIPTDIR/addservice -if [ -f /var/run/inetd.pid ]; then - kill -HUP `cat /var/run/inetd.pid` -fi - -sed "s|%%PREFIX%%|$PREFIX|" $SCRIPTDIR/../pkg-message - -cat <<EOF - -========================================================== -!! NOTE !! - -As there are some oddities to the Firebird build process, -it is likely you WILL NOT BE ABLE TO USE IT until you -remove the semaphore created during the build process. -Please read $PREFIX/firebird/RELNOTES for more information. -========================================================== - -EOF diff --git a/databases/firebird-client/scripts/pre-build b/databases/firebird-client/scripts/pre-build deleted file mode 100644 index 6605df7770fd..000000000000 --- a/databases/firebird-client/scripts/pre-build +++ /dev/null @@ -1,15 +0,0 @@ -#!/bin/sh - -GDS_LOCK_MGR=`ps ax |grep gds_lock_mgr |grep -v grep`; - -if [ "$GDS_LOCK_MGR" != "" ]; then - echo "It appears you have a gds_lock_manager already running."; - echo; - echo "You must cease all InterBase operations to build this port."; - echo "Make sure nobody is connected to any databases, then use"; - echo "'gds_drop -a' and manually verify (with ipcs) that the"; - echo "semaphores were removed."; - exit 1; -fi -exit 0 - diff --git a/databases/firebird-client/scripts/pre-install b/databases/firebird-client/scripts/pre-install deleted file mode 100644 index a6e1b37a9008..000000000000 --- a/databases/firebird-client/scripts/pre-install +++ /dev/null @@ -1,20 +0,0 @@ -#!/bin/sh - -if [ -d $PREFIX/firebird ]; then - if [ -d $PREFIX/firebird.old ]; then - rm -rf $PREFIX/firebird.old - fi - mv $PREFIX/firebird $PREFIX/firebird.old -fi - -if [ -L /usr/interbase ]; then - rm -f /usr/interbase -fi - -if [ -d /usr/interbase ]; then - mv /usr/interbase /usr/interbase.old -fi - -ln -fs $PREFIX/firebird /usr/interbase - -perl $SCRIPTDIR/createuser diff --git a/databases/firebird-client/scripts/rmservice b/databases/firebird-client/scripts/rmservice deleted file mode 100644 index 58adfc17419d..000000000000 --- a/databases/firebird-client/scripts/rmservice +++ /dev/null @@ -1,8 +0,0 @@ -#!/bin/sh - -cp /etc/services /etc/services.old -cp /etc/inetd.conf /etc/inetd.conf.old -cat /etc/services |grep -v gds_db >/etc/services.new -cat /etc/inetd.conf |grep -v gds_db >/etc/inetd.conf.new -mv /etc/services.new /etc/services -mv /etc/inetd.conf.new /etc/inetd.conf diff --git a/databases/firebird-server/Makefile b/databases/firebird-server/Makefile deleted file mode 100644 index 0fffe53812ff..000000000000 --- a/databases/firebird-server/Makefile +++ /dev/null @@ -1,82 +0,0 @@ -# New ports collection makefile for: Firebird -# Date created: 20 December 2000 -# Whom: Geoffrey C. Speicher <geoff@sea-incorporated.com> -# -# $FreeBSD$ -# - -PORTNAME= firebird -PORTVERSION= 0.9 -PORTREVISION= 4 -CATEGORIES= databases -MASTER_SITES= http://firebird.sourceforge.net/download/ \ - ${MASTER_SITE_SOURCEFORGE} -MASTER_SITE_SUBDIR=firebird -DISTFILES= firebird-boot-kit.tar.gz \ - interbase0.9-4-v5examples.tar.gz \ - interbase0.9-4src.tar.gz - -MAINTAINER= chris@aims.com.au - -WRKSRC= ${WRKDIR}/interbase -INSTALLS_SHLIB= yes -LDCONFIG_DIRS= %%PREFIX%%/firebird/lib -MSG_FILE= ${PKGDIR}/pkg-message -PKGMESSAGE= ${WRKDIR}/pkg-message - -ONLY_FOR_ARCHS= i386 - -.include <bsd.port.pre.mk> - -do-extract: - @${MKDIR} ${WRKDIR} - @( \ - cd ${WRKDIR}; ${TAR} -xzf ${DISTDIR}/interbase0.9-4src.tar.gz; \ - cd interbase; ${TAR} -xzf ${DISTDIR}/firebird-boot-kit.tar.gz; \ - ${CP} msgs/msg.gbak misc/msg.gbak \ - ) - -post-patch: - @${SED} 's|%%PREFIX%%|${PREFIX}|g' ${MSG_FILE} > ${PKGMESSAGE} -.if ${OSVERSION} >= 500016 || ${OSVERSION} >= 430001 - @${PERL} -pi -e 's,\-ldescrypt,\-lcrypt,g' \ - ${WRKSRC}/builds/original/prefix.freebsd -.else - @${PERL} -pi -e 's,^crypt_set_format.*,,' ${WRKSRC}/jrd/enc.c -.endif - -do-configure: - @( \ - cd ${WRKDIR}/interbase; \ - INTERBASE=${WRKDIR}/interbase/interbase; export INTERBASE; \ - REFDBPATH=${WRKDIR}/refDatabases; export REFDBPATH; \ - ${SH} buildBootDatabases; \ - ${SH} setup_dirs.boot FREEBSD PROD ${WRKDIR}/refDatabases boot; \ - ) - -do-build: - @( \ - ${ECHO} '#!/bin/sh'; ${ECHO} \ - '[ -d ${LDCONFIG_RUNLIST} ] && ${LDCONFIG} -m ${LDCONFIG_RUNLIST}'; \ - ) > ${WRKDIR}/000.${PORTNAME}.sh - @( \ - cd ${WRKDIR}/interbase; \ - INTERBASE=${WRKDIR}/interbase/interbase; export INTERBASE; \ - REFDBPATH=${WRKDIR}/refDatabases; export REFDBPATH; \ - ${SH} boot.freebsd; \ - ) - -do-install: - @( \ - cd ${WRKDIR}/interbase; \ - ${CP} -Rp interbase ${PREFIX}/firebird; \ - ${RM} ${PREFIX}/firebird/install; \ - ${RM} ${PREFIX}/firebird/lib/libgds.so.1.0; \ - ${LN} -fs gds.so ${PREFIX}/firebird/lib/libgds.so.1; \ - cd ${PREFIX}/firebird/examples; \ - ${TAR} -xzf ${DISTDIR}/interbase0.9-4-v5examples.tar.gz; \ - ${CP} ${FILESDIR}/RELNOTES ${PREFIX}/firebird/; \ - ${INSTALL_SCRIPT} ${WRKDIR}/000.${PORTNAME}.sh ${PREFIX}/etc/rc.d/ \ - ) - -.include <bsd.port.post.mk> diff --git a/databases/firebird-server/distinfo b/databases/firebird-server/distinfo deleted file mode 100644 index 67c42987376e..000000000000 --- a/databases/firebird-server/distinfo +++ /dev/null @@ -1,3 +0,0 @@ -MD5 (firebird-boot-kit.tar.gz) = 2e18d75539bc4c3d40a1a71509309f64 -MD5 (interbase0.9-4-v5examples.tar.gz) = 17cba82bbf5066d515f2dee97bf8327a -MD5 (interbase0.9-4src.tar.gz) = d098277ed160e2b6a49d91e1fdb3a652 diff --git a/databases/firebird-server/files/RELNOTES b/databases/firebird-server/files/RELNOTES deleted file mode 100644 index d2fd1d4fc88d..000000000000 --- a/databases/firebird-server/files/RELNOTES +++ /dev/null @@ -1,79 +0,0 @@ -Firebird 0.9_4 FreeBSD Release Notes 13-Jan-2001 ------------------------------------- -FB-T0.9.4.34 Firebird Test1 - -Welcome to the FreeBSD Firebird port! Users should note that there -was a package called `firebird-1.0.tgz' released in mid-August -2000. Unfortunately, that package was released before Firebird -version numbering conventions were established, so although the -version number would suggest that it is newer than the current -release, it is certainly not. Users of the August 1.0 package -should upgrade to 0.9_4 or later, which has fixed many bugs and -security problems, including the recently-discovered back door. - - Firebird originally required a running copy of Firebird (or -InterBase) in order to build itself. This port uses a boot kit to -overcome that, so that it does not require itself to build. -Unfortunately, the side effect of this is that if you have a lock -manager running from an already-installed version of Firebird or -InterBase, this port will not build. - - Firebird is installed SUID with owner and group `firebird'. -This does affect where you can and cannot create databases when -connecting remotely, as well as which existing databases you can -access. If you want a database to be available remotely, be sure -it's readable and writeable to group firebird. - - There may be times when you manage to get your system into a -state where using any of the Firebird utilites (isql, gbak, gsec, -etc.) gives you the message "semget failed". One surefire way to -do this is to build and install the port. :) If this happens, -make sure that the lock manager is not running and its semaphores -have been removed. The former can be accomplished with 'ps ax -|grep gds' and 'kill'; the latter with 'ipcs -s' and 'ipcrm -s'. - - For example, after building and installing the port, you will -probably go through something like this: - -# isql /usr/interbase/isc4.gdb -Statement failed, SQLCODE = -902 - -operating system directive semget failed --No such file or directory - -# ipcs -s -Semaphores: -T ID KEY MODE OWNER GROUP -s 1310720 252034728 --rw-rw-rw- root wheel - -# ipcrm -s 1310720 - -and you should be in business. - - Once this is done, you should be able to connect normally to -databases. Your first connection will restart the lock manager. - - There may be times, however, when you still get "semget failed" -even though the lock manager is not running and the semaphores have -been cleaned up. There seems to be a conflict with this release -and the PostgreSQL 7 release as installed from the ports collection. -If you're having trouble with Firebird and you're running PostgreSQL, -try stopping PostgreSQL: - - /usr/local/etc/rc.d/pgsql.sh stop - -and see if that helps. - - Complete documentation for InterBase(tm) is available (free of -charge) from http://www.interbase.com/ in PDF format. While -InterBase and Firebird are two distinct entities, all InterBase -documentation is pertinent to Firebird. More information on Firebird -and InterBase can be found at the following: - - http://sourceforge.net/projects/firebird/ - http://www.ibphoenix.com/ - http://www.interbase2000.org/ - http://www.firebirdsql.org/ - -Geoff Speicher -<geoff@sea-incorporated.com> diff --git a/databases/firebird-server/files/patch-aa b/databases/firebird-server/files/patch-aa deleted file mode 100644 index f2db9a68750d..000000000000 --- a/databases/firebird-server/files/patch-aa +++ /dev/null @@ -1,11 +0,0 @@ ---- buildBootDatabases.orig Tue Oct 10 23:00:39 2000 -+++ buildBootDatabases Tue Oct 10 23:00:46 2000 -@@ -49,7 +49,7 @@ - DefaultAns=$2 - echo -n "${1}" - Answer="$DefaultAns" -- read Answer -+# read Answer - } - - #-------------------------------------------------------------------- diff --git a/databases/firebird-server/files/patch-ab b/databases/firebird-server/files/patch-ab deleted file mode 100644 index f054a4b23007..000000000000 --- a/databases/firebird-server/files/patch-ab +++ /dev/null @@ -1,11 +0,0 @@ ---- setup_dirs.boot.orig Tue Oct 10 23:00:07 2000 -+++ setup_dirs.boot Tue Oct 10 23:00:22 2000 -@@ -49,7 +49,7 @@ - DefaultAns=$2 - echo -n "${1}" - Answer="$DefaultAns" -- read Answer -+# read Answer - } - - diff --git a/databases/firebird-server/files/patch-ac b/databases/firebird-server/files/patch-ac deleted file mode 100644 index bf5de43b75fb..000000000000 --- a/databases/firebird-server/files/patch-ac +++ /dev/null @@ -1,58 +0,0 @@ ---- builds/original/prefix.freebsd 2000/10/08 15:36:25 1.2 -+++ builds/original/prefix.freebsd 2001/01/11 19:17:58 -@@ -28,7 +28,7 @@ - - - PROD_DEBUG_OBJECTS= nodebug.o --PROD_SHRLIB_DIR= -+PROD_SHRLIB_DIR= -Lsource/jrd - PROD_VERSION_FLAG= -DPROD_BUILD - PROD_CFLAGS= -O -m486 -fpic -DFLINTSTONE - -@@ -48,7 +48,7 @@ - UDF_LINK_CMD= gcc - UDF_CFLAGS= -fPIC -mieee-fp - UDF_LFLAGS= -shared --UDF_SHRLIBS= -L/usr/local/lib -lgds -lm -lc -mieee-fp -ldescrypt -+UDF_SHRLIBS= $(SHRLIB_DIR) -lgds -lm -lc -mieee-fp -ldescrypt - - #NOTE: PIC_J_CFLAGS is special CFLAGS used to build PIPD_IS_SHRLIB modules - # to workaround the Solaris threading problems with signals -@@ -69,16 +69,14 @@ - FUNCTIONS= functions.bin - FUNCSHR= source/interbase/lib/gdsf.so - GDS_LINK= $(GDSSHR_LINK) --#GDS_PYXIS= - GDS_PYXIS= gds_pyxis.a - GDSLIB_BACKEND= source/interbase/lib/gds_b.a - GDSLIB_LINK= -Lsource/jrd -lgds_b -lc -ldescrypt - - GDSSHR= source/interbase/lib/gds.so - LINUX_GDSSHR= $(GDSSHR) --GDSSHR_LINK= $(SHRLIB_DIR) -L/usr/local/lib -lgds -lgds_pyxis -ldescrypt --PIPE_GDSSHR_LINK= $(SHRLIB_DIR) -L/usr/local/lib -lgds -lgds_pyxis --#PIPE_GDSSHR_LINK= $(SHRLIB_DIR) -lgds -lgds_pyxis -+GDSSHR_LINK= $(SHRLIB_DIR) -lgds -lgds_pyxis -ldescrypt -+PIPE_GDSSHR_LINK= $(SHRLIB_DIR) -lgds -lgds_pyxis - HLPDIR= source/qli/ - HOSTNAME= `hostname | cut -d'.' -f1` - INCLUDES= include_so include_so_ada -@@ -106,11 +104,6 @@ - MUISQL_LINK_OPTS= $(MUISQL_MU_LIB) $(PIPE_GDSSHR_LINK) -lm - PIC_FLAGS= $(CFLAGS) -fPIC - PIPE= gds.a gds_pipe --#PYXIS= --#PYXIS_MISC_OBJS= --#PYXIS_P_MISC_OBJS= --#PYXIS_OBJECTS= --#PYXIS_MISC_OBJECTS= - PYXIS= pyxis - PYXIS_MISC_OBJS= $(PYXIS_MISC) - PYXIS_P_MISC_OBJS= $(PYXIS_P_MISC) -@@ -167,5 +160,8 @@ - SHRLIB_EXT= .so - - V3PRINTER= source/lock/printv3.o -+ -+# Forces library build for FreeBSD -+PYXIS_LIBRARY= libpyxis.a diff --git a/databases/firebird-server/files/patch-ad b/databases/firebird-server/files/patch-ad deleted file mode 100644 index 7ce937566bc3..000000000000 --- a/databases/firebird-server/files/patch-ad +++ /dev/null @@ -1,13 +0,0 @@ ---- jrd/enc.c.orig Fri Aug 4 06:50:03 2000 -+++ jrd/enc.c Sun Nov 18 19:17:19 2001 -@@ -31,6 +31,10 @@ - * - **************************************/ - -+#ifdef FREEBSD -+crypt_set_format("des"); -+#endif -+ - return CRYPT_FUNC( string, salt); - } - #endif diff --git a/databases/firebird-server/pkg-comment b/databases/firebird-server/pkg-comment deleted file mode 100644 index f8cb5bc1d7b3..000000000000 --- a/databases/firebird-server/pkg-comment +++ /dev/null @@ -1 +0,0 @@ -The open-source InterBase(tm) 6.0 spin-off (Classic version) diff --git a/databases/firebird-server/pkg-descr b/databases/firebird-server/pkg-descr deleted file mode 100644 index b080060395eb..000000000000 --- a/databases/firebird-server/pkg-descr +++ /dev/null @@ -1,23 +0,0 @@ -The open-source InterBase(tm) 6.0 spin-off (Classic server version) - -InterBase is a world-class DBMS with a history too rich to detail -here. Once selling for several thousands of dollars per license, -some very big players use it worldwide. Inprise has open-sourced -InterBase 6.0, and a lively bunch of folks has charged themselves -with seeing that it lives on through the Firebird project. - -Note that as of Firebird 0.9_4, the locksmith back door has -been closed. - -For more information on Firebird and InterBase, see: -http://www.ibphoenix.com/ -http://www.interbase2000.org/ -http://www.interbase.com/ -http://www.firebirdsql.org/ - -and of course the firebird page itself: -WWW: http://sourceforge.net/projects/firebird/ - -For more information on the locksmith back door, see: - -https://www.kb.cert.org/vuls/id/247371 diff --git a/databases/firebird-server/pkg-install b/databases/firebird-server/pkg-install deleted file mode 100644 index c6b00320cd7e..000000000000 --- a/databases/firebird-server/pkg-install +++ /dev/null @@ -1,159 +0,0 @@ -#!/bin/sh - -# Created in haste by smashing together various -# files from the port scripts. - -if [ "$2" = "PRE-INSTALL" ]; then -if [ -d $PKG_PREFIX/firebird ]; then - if [ -d $PKG_PREFIX/firebird.old ]; then - rm -rf $PKG_PREFIX/firebird.old - fi - mv $PKG_PREFIX/firebird $PKG_PREFIX/firebird.old -fi - -if [ -L /usr/interbase ]; then - rm -f /usr/interbase -fi - -if [ -d /usr/interbase ]; then - mv /usr/interbase /usr/interbase.old -fi - -ln -fs $PKG_PREFIX/firebird /usr/interbase - -perl <<EOF -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( "firebird" ) ) { - ( \$null, \$null, \$fbUID ) = getpwnam( "firebird" ); -} else { - \$fbUID = 90; - while( getpwuid( \$fbUID ) ) { - \$fbUID++; - } -} - -if( getgrnam( "firebird" ) ) { - ( \$null, \$null, \$fbGID ) = getgrnam( "firebird" ); -} else { - \$fbGID = 90; - while( getgrgid( \$fbGID ) ) { - \$fbGID++; - } - &append_file( "/etc/group", "firebird:*:\$fbGID:" ); -} - -print "firebird user using uid \$fbUID\n"; -print "firebird user using gid \$fbGID\n"; - -system( "/usr/bin/chpass -a \"firebird:*:\$fbUID:\$fbGID\:\:0:0:Firebird pseudo-user:\$ENV{'PKG_PREFIX'}/firebird:/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 ); -} -EOF -elif [ "$2" = "POST-INSTALL" ]; then -chown -R firebird:firebird $PKG_PREFIX/firebird - -# Turn everybody to read only. -chmod -R o=r $PKG_PREFIX/firebird - -# Now fix up the mess. - -# fix up directories -for i in `find $PKG_PREFIX/firebird -print` - do - FileName=$i - if [ -d $FileName ] - then - chmod o=rx $FileName - fi - done - -# make lib ldconfig-compatible -chown -R root:wheel $PKG_PREFIX/firebird/lib -chmod -R g-w $PKG_PREFIX/firebird/lib - -# Fix UDF load problem -cd $PKG_PREFIX/firebird/lib -ln -sf ib_util.so libib_util.so - -cd $PKG_PREFIX/firebird/bin - -# all users can run everything. -chmod o=rx * - -# SUID is needed for running server programs. - -for i in gds_lock_mgr gds_drop gds_inet_server - do - chmod ug+s $i - done - - -# Lock files - -cd $PKG_PREFIX/firebird - -for i in isc_init1 isc_lock1 isc_event1 - do - FileName=$i.`hostname` - touch $FileName - chmod uga=rw $FileName - chown firebird:firebird $FileName - done - - -touch interbase.log -chmod ugo=rw interbase.log - -# make databases writable by all -chmod ugo=rw examples/v5/*.gdb -chmod ugo=rw help/*.gdb -chmod ugo=rw isc4.gdb - -# remove any existing gds service -cp /etc/services /etc/services.old -cp /etc/inetd.conf /etc/inetd.conf.old -cat /etc/services |grep -v gds_db >/etc/services.new -cat /etc/inetd.conf |grep -v gds_db >/etc/inetd.conf.new -mv /etc/services.new /etc/services -mv /etc/inetd.conf.new /etc/inetd.conf - -# add the gds service and restart inetd -cat >>/etc/services <<EOF -gds_db 3050/tcp #InterBase Database Remote Protocol -EOF -cat >>/etc/inetd.conf <<EOF -gds_db stream tcp nowait firebird /usr/interbase/bin/gds_inet_server gds_inet_server -EOF -if [ -f /var/run/inetd.pid ]; then - kill -HUP `cat /var/run/inetd.pid` -fi - -# shared lib startup script -if [ -d $PKG_PREFIX/etc/rc.d ]; then - ( - echo "#!/bin/sh"; echo "[ -d $PKG_PREFIX/firebird/lib ] && /sbin/ldconfig -m $PKG_PREFIX/firebird/lib" - ) > $PKG_PREFIX/etc/rc.d/000.firebird.sh -fi - -fi diff --git a/databases/firebird-server/pkg-message b/databases/firebird-server/pkg-message deleted file mode 100644 index f15892a06aaa..000000000000 --- a/databases/firebird-server/pkg-message +++ /dev/null @@ -1,19 +0,0 @@ - ---------------------------------------------------------- -Firebird is now installed. There is a symbolic link from -/usr/interbase -> %%PREFIX%%/firebird. Firebird needs this -link for proper operation. - -It is STRONGLY recommended that you change the SYSDBA -password with: - -$ cd /usr/interbase -$ gsec -user SYSDBA -pass masterkey -GSEC> modify SYSDBA -pw newpassword -GSEC> quit - -before doing anything serious with Firebird. - -See %%PREFIX%%/firebird/RELNOTES for more. ---------------------------------------------------------- - diff --git a/databases/firebird-server/pkg-plist b/databases/firebird-server/pkg-plist deleted file mode 100644 index 10f152fcbc82..000000000000 --- a/databases/firebird-server/pkg-plist +++ /dev/null @@ -1,106 +0,0 @@ -etc/rc.d/000.firebird.sh -firebird/intl/gdsintl -firebird/examples/v5/ib_udf.sql -firebird/examples/v5/README -firebird/examples/v5/align.h -firebird/examples/v5/api1.c -firebird/examples/v5/api10.c -firebird/examples/v5/api11.c -firebird/examples/v5/api12.c -firebird/examples/v5/api13.c -firebird/examples/v5/api14.e -firebird/examples/v5/api15.c -firebird/examples/v5/api16.c -firebird/examples/v5/api16t.c -firebird/examples/v5/api2.c -firebird/examples/v5/api3.c -firebird/examples/v5/api4.c -firebird/examples/v5/api5.c -firebird/examples/v5/api6.c -firebird/examples/v5/api7.c -firebird/examples/v5/api8.c -firebird/examples/v5/api9.c -firebird/examples/v5/api9f.c -firebird/examples/v5/apifull.c -firebird/examples/v5/employe2.sql -firebird/examples/v5/dyn1.e -firebird/examples/v5/dyn2.e -firebird/examples/v5/dyn3.e -firebird/examples/v5/dyn4.e -firebird/examples/v5/dyn5.e -firebird/examples/v5/dynfull.e -firebird/examples/v5/employee.gbk -firebird/examples/v5/employee.gdb -firebird/examples/v5/example.h -firebird/examples/v5/api9f.sql -firebird/examples/v5/intlemp.gbk -firebird/examples/v5/intlemp.gdb -firebird/examples/v5/stat1.e -firebird/examples/v5/stat10.e -firebird/examples/v5/stat11.e -firebird/examples/v5/stat12.e -firebird/examples/v5/stat12t.e -firebird/examples/v5/stat2.e -firebird/examples/v5/stat3.e -firebird/examples/v5/stat4.e -firebird/examples/v5/stat5.e -firebird/examples/v5/stat6.e -firebird/examples/v5/stat7.e -firebird/examples/v5/stat8.e -firebird/examples/v5/stat9.e -firebird/examples/v5/udf.sql -firebird/examples/v5/udflib.c -firebird/examples/v5/makefile -firebird/include/perf.h -firebird/include/ib_util.h -firebird/include/gds.hxx -firebird/include/gds.h -firebird/include/ibase.h -firebird/include/iberror.h -firebird/include/gds.f -firebird/UDF/ib_udf -firebird/lib/ib_util.so -firebird/lib/gds.a -firebird/lib/gds.so -firebird/lib/libgds.so -firebird/lib/libgds.so.1 -firebird/lib/libgds_pyxis.a -firebird/lib/libgds.a -firebird/lib/libib_util.so -firebird/lib/gds_pyxis.a -firebird/help/help.gbak -firebird/help/help.gdb -firebird/bin/isc4.gbak -firebird/bin/gpre -firebird/bin/gds_pipe -firebird/bin/gds_drop -firebird/bin/gds_lock_mgr -firebird/bin/gfix -firebird/bin/gdef -firebird/bin/isql -firebird/bin/gds_lock_print -firebird/bin/qli -firebird/bin/gds_inet_server -firebird/bin/gsplit -firebird/bin/gstat -firebird/bin/gds_relay -firebird/bin/gsec -firebird/bin/gbak -firebird/services.isc -firebird/isc_config -firebird/isc4.gdb -firebird/interbase.msg -firebird/interbase.log -firebird/inetd.conf.isc -firebird/RELNOTES -@dirrm firebird -@dirrm firebird/intl -@dirrm firebird/examples/v3 -@dirrm firebird/examples/v4 -@dirrm firebird/examples/v5 -@dirrm firebird/examples -@dirrm firebird/include -@dirrm firebird/UDF -@dirrm firebird/lib -@dirrm firebird/help -@dirrm firebird/bin diff --git a/databases/firebird-server/scripts/addservice b/databases/firebird-server/scripts/addservice deleted file mode 100644 index df9aea5e91de..000000000000 --- a/databases/firebird-server/scripts/addservice +++ /dev/null @@ -1,9 +0,0 @@ -#!/bin/sh - -cat >>/etc/services <<EOF -gds_db 3050/tcp #InterBase Database Remote Protocol -EOF -cat >>/etc/inetd.conf <<EOF -gds_db stream tcp nowait firebird /usr/interbase/bin/gds_inet_server gds_inet_server -EOF -kill -HUP `cat /var/run/inetd.pid` diff --git a/databases/firebird-server/scripts/createuser b/databases/firebird-server/scripts/createuser deleted file mode 100644 index b61d47fd84bd..000000000000 --- a/databases/firebird-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( "firebird" ) ) { - ( $null, $null, $fbUID ) = getpwnam( "firebird" ); -} else { - $fbUID = 90; - while( getpwuid( $fbUID ) ) { - $fbUID++; - } -} - -if( getgrnam( "firebird" ) ) { - ( $null, $null, $fbGID ) = getgrnam( "firebird" ); -} else { - $fbGID = 90; - while( getgrgid( $fbGID ) ) { - $fbGID++; - } - &append_file( "/etc/group", "firebird:*:$fbGID:" ); -} - -print "firebird user using uid $fbUID\n"; -print "firebird user using gid $fbGID\n"; - -system( "/usr/bin/chpass -a \"firebird:*:$fbUID:$fbGID\:\:0:0:Firebird pseudo-user:$ENV{'PREFIX'}/firebird:/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/firebird-server/scripts/post-install b/databases/firebird-server/scripts/post-install deleted file mode 100644 index c2515fde278c..000000000000 --- a/databases/firebird-server/scripts/post-install +++ /dev/null @@ -1,84 +0,0 @@ -#!/bin/sh - -chown -R firebird:firebird $PREFIX/firebird - -# Turn everybody to read only. -chmod -R o=r $PREFIX/firebird - -# Now fix up the mess. - -# fix up directories -for i in `find $PREFIX/firebird -print` - do - FileName=$i - if [ -d $FileName ] - then - chmod o=rx $FileName - fi - done - -# make lib ldconfig-compatible -chown -R root:wheel $PREFIX/firebird/lib -chmod -R g-w $PREFIX/firebird/lib - -# Fix UDF load problem -cd $PREFIX/firebird/lib -ln -sf ib_util.so libib_util.so - -cd $PREFIX/firebird/bin - -# all users can run everything. -chmod o=rx * - -# SUID is needed for running server programs. - -for i in gds_lock_mgr gds_drop gds_inet_server - do - chmod ug+s $i - done - - -# Lock files - -cd $PREFIX/firebird - -for i in isc_init1 isc_lock1 isc_event1 - do - FileName=$i.`hostname` - touch $FileName - chmod uga=rw $FileName - chown firebird:firebird $FileName - done - - -touch interbase.log -chmod ugo=rw interbase.log - -# make databases writable by all -chmod ugo=rw examples/v5/*.gdb -chmod ugo=rw help/*.gdb -chmod ugo=rw isc4.gdb - -# remove any existing gds service -sh $SCRIPTDIR/rmservice - -# add the gds service and restart inetd -sh $SCRIPTDIR/addservice -if [ -f /var/run/inetd.pid ]; then - kill -HUP `cat /var/run/inetd.pid` -fi - -sed "s|%%PREFIX%%|$PREFIX|" $SCRIPTDIR/../pkg-message - -cat <<EOF - -========================================================== -!! NOTE !! - -As there are some oddities to the Firebird build process, -it is likely you WILL NOT BE ABLE TO USE IT until you -remove the semaphore created during the build process. -Please read $PREFIX/firebird/RELNOTES for more information. -========================================================== - -EOF diff --git a/databases/firebird-server/scripts/pre-build b/databases/firebird-server/scripts/pre-build deleted file mode 100644 index 6605df7770fd..000000000000 --- a/databases/firebird-server/scripts/pre-build +++ /dev/null @@ -1,15 +0,0 @@ -#!/bin/sh - -GDS_LOCK_MGR=`ps ax |grep gds_lock_mgr |grep -v grep`; - -if [ "$GDS_LOCK_MGR" != "" ]; then - echo "It appears you have a gds_lock_manager already running."; - echo; - echo "You must cease all InterBase operations to build this port."; - echo "Make sure nobody is connected to any databases, then use"; - echo "'gds_drop -a' and manually verify (with ipcs) that the"; - echo "semaphores were removed."; - exit 1; -fi -exit 0 - diff --git a/databases/firebird-server/scripts/pre-install b/databases/firebird-server/scripts/pre-install deleted file mode 100644 index a6e1b37a9008..000000000000 --- a/databases/firebird-server/scripts/pre-install +++ /dev/null @@ -1,20 +0,0 @@ -#!/bin/sh - -if [ -d $PREFIX/firebird ]; then - if [ -d $PREFIX/firebird.old ]; then - rm -rf $PREFIX/firebird.old - fi - mv $PREFIX/firebird $PREFIX/firebird.old -fi - -if [ -L /usr/interbase ]; then - rm -f /usr/interbase -fi - -if [ -d /usr/interbase ]; then - mv /usr/interbase /usr/interbase.old -fi - -ln -fs $PREFIX/firebird /usr/interbase - -perl $SCRIPTDIR/createuser diff --git a/databases/firebird-server/scripts/rmservice b/databases/firebird-server/scripts/rmservice deleted file mode 100644 index 58adfc17419d..000000000000 --- a/databases/firebird-server/scripts/rmservice +++ /dev/null @@ -1,8 +0,0 @@ -#!/bin/sh - -cp /etc/services /etc/services.old -cp /etc/inetd.conf /etc/inetd.conf.old -cat /etc/services |grep -v gds_db >/etc/services.new -cat /etc/inetd.conf |grep -v gds_db >/etc/inetd.conf.new -mv /etc/services.new /etc/services -mv /etc/inetd.conf.new /etc/inetd.conf diff --git a/databases/firebird2-server/Makefile b/databases/firebird2-server/Makefile deleted file mode 100644 index 0fffe53812ff..000000000000 --- a/databases/firebird2-server/Makefile +++ /dev/null @@ -1,82 +0,0 @@ -# New ports collection makefile for: Firebird -# Date created: 20 December 2000 -# Whom: Geoffrey C. Speicher <geoff@sea-incorporated.com> -# -# $FreeBSD$ -# - -PORTNAME= firebird -PORTVERSION= 0.9 -PORTREVISION= 4 -CATEGORIES= databases -MASTER_SITES= http://firebird.sourceforge.net/download/ \ - ${MASTER_SITE_SOURCEFORGE} -MASTER_SITE_SUBDIR=firebird -DISTFILES= firebird-boot-kit.tar.gz \ - interbase0.9-4-v5examples.tar.gz \ - interbase0.9-4src.tar.gz - -MAINTAINER= chris@aims.com.au - -WRKSRC= ${WRKDIR}/interbase -INSTALLS_SHLIB= yes -LDCONFIG_DIRS= %%PREFIX%%/firebird/lib -MSG_FILE= ${PKGDIR}/pkg-message -PKGMESSAGE= ${WRKDIR}/pkg-message - -ONLY_FOR_ARCHS= i386 - -.include <bsd.port.pre.mk> - -do-extract: - @${MKDIR} ${WRKDIR} - @( \ - cd ${WRKDIR}; ${TAR} -xzf ${DISTDIR}/interbase0.9-4src.tar.gz; \ - cd interbase; ${TAR} -xzf ${DISTDIR}/firebird-boot-kit.tar.gz; \ - ${CP} msgs/msg.gbak misc/msg.gbak \ - ) - -post-patch: - @${SED} 's|%%PREFIX%%|${PREFIX}|g' ${MSG_FILE} > ${PKGMESSAGE} -.if ${OSVERSION} >= 500016 || ${OSVERSION} >= 430001 - @${PERL} -pi -e 's,\-ldescrypt,\-lcrypt,g' \ - ${WRKSRC}/builds/original/prefix.freebsd -.else - @${PERL} -pi -e 's,^crypt_set_format.*,,' ${WRKSRC}/jrd/enc.c -.endif - -do-configure: - @( \ - cd ${WRKDIR}/interbase; \ - INTERBASE=${WRKDIR}/interbase/interbase; export INTERBASE; \ - REFDBPATH=${WRKDIR}/refDatabases; export REFDBPATH; \ - ${SH} buildBootDatabases; \ - ${SH} setup_dirs.boot FREEBSD PROD ${WRKDIR}/refDatabases boot; \ - ) - -do-build: - @( \ - ${ECHO} '#!/bin/sh'; ${ECHO} \ - '[ -d ${LDCONFIG_RUNLIST} ] && ${LDCONFIG} -m ${LDCONFIG_RUNLIST}'; \ - ) > ${WRKDIR}/000.${PORTNAME}.sh - @( \ - cd ${WRKDIR}/interbase; \ - INTERBASE=${WRKDIR}/interbase/interbase; export INTERBASE; \ - REFDBPATH=${WRKDIR}/refDatabases; export REFDBPATH; \ - ${SH} boot.freebsd; \ - ) - -do-install: - @( \ - cd ${WRKDIR}/interbase; \ - ${CP} -Rp interbase ${PREFIX}/firebird; \ - ${RM} ${PREFIX}/firebird/install; \ - ${RM} ${PREFIX}/firebird/lib/libgds.so.1.0; \ - ${LN} -fs gds.so ${PREFIX}/firebird/lib/libgds.so.1; \ - cd ${PREFIX}/firebird/examples; \ - ${TAR} -xzf ${DISTDIR}/interbase0.9-4-v5examples.tar.gz; \ - ${CP} ${FILESDIR}/RELNOTES ${PREFIX}/firebird/; \ - ${INSTALL_SCRIPT} ${WRKDIR}/000.${PORTNAME}.sh ${PREFIX}/etc/rc.d/ \ - ) - -.include <bsd.port.post.mk> diff --git a/databases/firebird2-server/distinfo b/databases/firebird2-server/distinfo deleted file mode 100644 index 67c42987376e..000000000000 --- a/databases/firebird2-server/distinfo +++ /dev/null @@ -1,3 +0,0 @@ -MD5 (firebird-boot-kit.tar.gz) = 2e18d75539bc4c3d40a1a71509309f64 -MD5 (interbase0.9-4-v5examples.tar.gz) = 17cba82bbf5066d515f2dee97bf8327a -MD5 (interbase0.9-4src.tar.gz) = d098277ed160e2b6a49d91e1fdb3a652 diff --git a/databases/firebird2-server/files/RELNOTES b/databases/firebird2-server/files/RELNOTES deleted file mode 100644 index d2fd1d4fc88d..000000000000 --- a/databases/firebird2-server/files/RELNOTES +++ /dev/null @@ -1,79 +0,0 @@ -Firebird 0.9_4 FreeBSD Release Notes 13-Jan-2001 ------------------------------------- -FB-T0.9.4.34 Firebird Test1 - -Welcome to the FreeBSD Firebird port! Users should note that there -was a package called `firebird-1.0.tgz' released in mid-August -2000. Unfortunately, that package was released before Firebird -version numbering conventions were established, so although the -version number would suggest that it is newer than the current -release, it is certainly not. Users of the August 1.0 package -should upgrade to 0.9_4 or later, which has fixed many bugs and -security problems, including the recently-discovered back door. - - Firebird originally required a running copy of Firebird (or -InterBase) in order to build itself. This port uses a boot kit to -overcome that, so that it does not require itself to build. -Unfortunately, the side effect of this is that if you have a lock -manager running from an already-installed version of Firebird or -InterBase, this port will not build. - - Firebird is installed SUID with owner and group `firebird'. -This does affect where you can and cannot create databases when -connecting remotely, as well as which existing databases you can -access. If you want a database to be available remotely, be sure -it's readable and writeable to group firebird. - - There may be times when you manage to get your system into a -state where using any of the Firebird utilites (isql, gbak, gsec, -etc.) gives you the message "semget failed". One surefire way to -do this is to build and install the port. :) If this happens, -make sure that the lock manager is not running and its semaphores -have been removed. The former can be accomplished with 'ps ax -|grep gds' and 'kill'; the latter with 'ipcs -s' and 'ipcrm -s'. - - For example, after building and installing the port, you will -probably go through something like this: - -# isql /usr/interbase/isc4.gdb -Statement failed, SQLCODE = -902 - -operating system directive semget failed --No such file or directory - -# ipcs -s -Semaphores: -T ID KEY MODE OWNER GROUP -s 1310720 252034728 --rw-rw-rw- root wheel - -# ipcrm -s 1310720 - -and you should be in business. - - Once this is done, you should be able to connect normally to -databases. Your first connection will restart the lock manager. - - There may be times, however, when you still get "semget failed" -even though the lock manager is not running and the semaphores have -been cleaned up. There seems to be a conflict with this release -and the PostgreSQL 7 release as installed from the ports collection. -If you're having trouble with Firebird and you're running PostgreSQL, -try stopping PostgreSQL: - - /usr/local/etc/rc.d/pgsql.sh stop - -and see if that helps. - - Complete documentation for InterBase(tm) is available (free of -charge) from http://www.interbase.com/ in PDF format. While -InterBase and Firebird are two distinct entities, all InterBase -documentation is pertinent to Firebird. More information on Firebird -and InterBase can be found at the following: - - http://sourceforge.net/projects/firebird/ - http://www.ibphoenix.com/ - http://www.interbase2000.org/ - http://www.firebirdsql.org/ - -Geoff Speicher -<geoff@sea-incorporated.com> diff --git a/databases/firebird2-server/files/patch-aa b/databases/firebird2-server/files/patch-aa deleted file mode 100644 index f2db9a68750d..000000000000 --- a/databases/firebird2-server/files/patch-aa +++ /dev/null @@ -1,11 +0,0 @@ ---- buildBootDatabases.orig Tue Oct 10 23:00:39 2000 -+++ buildBootDatabases Tue Oct 10 23:00:46 2000 -@@ -49,7 +49,7 @@ - DefaultAns=$2 - echo -n "${1}" - Answer="$DefaultAns" -- read Answer -+# read Answer - } - - #-------------------------------------------------------------------- diff --git a/databases/firebird2-server/files/patch-ab b/databases/firebird2-server/files/patch-ab deleted file mode 100644 index f054a4b23007..000000000000 --- a/databases/firebird2-server/files/patch-ab +++ /dev/null @@ -1,11 +0,0 @@ ---- setup_dirs.boot.orig Tue Oct 10 23:00:07 2000 -+++ setup_dirs.boot Tue Oct 10 23:00:22 2000 -@@ -49,7 +49,7 @@ - DefaultAns=$2 - echo -n "${1}" - Answer="$DefaultAns" -- read Answer -+# read Answer - } - - diff --git a/databases/firebird2-server/files/patch-ac b/databases/firebird2-server/files/patch-ac deleted file mode 100644 index bf5de43b75fb..000000000000 --- a/databases/firebird2-server/files/patch-ac +++ /dev/null @@ -1,58 +0,0 @@ ---- builds/original/prefix.freebsd 2000/10/08 15:36:25 1.2 -+++ builds/original/prefix.freebsd 2001/01/11 19:17:58 -@@ -28,7 +28,7 @@ - - - PROD_DEBUG_OBJECTS= nodebug.o --PROD_SHRLIB_DIR= -+PROD_SHRLIB_DIR= -Lsource/jrd - PROD_VERSION_FLAG= -DPROD_BUILD - PROD_CFLAGS= -O -m486 -fpic -DFLINTSTONE - -@@ -48,7 +48,7 @@ - UDF_LINK_CMD= gcc - UDF_CFLAGS= -fPIC -mieee-fp - UDF_LFLAGS= -shared --UDF_SHRLIBS= -L/usr/local/lib -lgds -lm -lc -mieee-fp -ldescrypt -+UDF_SHRLIBS= $(SHRLIB_DIR) -lgds -lm -lc -mieee-fp -ldescrypt - - #NOTE: PIC_J_CFLAGS is special CFLAGS used to build PIPD_IS_SHRLIB modules - # to workaround the Solaris threading problems with signals -@@ -69,16 +69,14 @@ - FUNCTIONS= functions.bin - FUNCSHR= source/interbase/lib/gdsf.so - GDS_LINK= $(GDSSHR_LINK) --#GDS_PYXIS= - GDS_PYXIS= gds_pyxis.a - GDSLIB_BACKEND= source/interbase/lib/gds_b.a - GDSLIB_LINK= -Lsource/jrd -lgds_b -lc -ldescrypt - - GDSSHR= source/interbase/lib/gds.so - LINUX_GDSSHR= $(GDSSHR) --GDSSHR_LINK= $(SHRLIB_DIR) -L/usr/local/lib -lgds -lgds_pyxis -ldescrypt --PIPE_GDSSHR_LINK= $(SHRLIB_DIR) -L/usr/local/lib -lgds -lgds_pyxis --#PIPE_GDSSHR_LINK= $(SHRLIB_DIR) -lgds -lgds_pyxis -+GDSSHR_LINK= $(SHRLIB_DIR) -lgds -lgds_pyxis -ldescrypt -+PIPE_GDSSHR_LINK= $(SHRLIB_DIR) -lgds -lgds_pyxis - HLPDIR= source/qli/ - HOSTNAME= `hostname | cut -d'.' -f1` - INCLUDES= include_so include_so_ada -@@ -106,11 +104,6 @@ - MUISQL_LINK_OPTS= $(MUISQL_MU_LIB) $(PIPE_GDSSHR_LINK) -lm - PIC_FLAGS= $(CFLAGS) -fPIC - PIPE= gds.a gds_pipe --#PYXIS= --#PYXIS_MISC_OBJS= --#PYXIS_P_MISC_OBJS= --#PYXIS_OBJECTS= --#PYXIS_MISC_OBJECTS= - PYXIS= pyxis - PYXIS_MISC_OBJS= $(PYXIS_MISC) - PYXIS_P_MISC_OBJS= $(PYXIS_P_MISC) -@@ -167,5 +160,8 @@ - SHRLIB_EXT= .so - - V3PRINTER= source/lock/printv3.o -+ -+# Forces library build for FreeBSD -+PYXIS_LIBRARY= libpyxis.a diff --git a/databases/firebird2-server/files/patch-ad b/databases/firebird2-server/files/patch-ad deleted file mode 100644 index 7ce937566bc3..000000000000 --- a/databases/firebird2-server/files/patch-ad +++ /dev/null @@ -1,13 +0,0 @@ ---- jrd/enc.c.orig Fri Aug 4 06:50:03 2000 -+++ jrd/enc.c Sun Nov 18 19:17:19 2001 -@@ -31,6 +31,10 @@ - * - **************************************/ - -+#ifdef FREEBSD -+crypt_set_format("des"); -+#endif -+ - return CRYPT_FUNC( string, salt); - } - #endif diff --git a/databases/firebird2-server/pkg-comment b/databases/firebird2-server/pkg-comment deleted file mode 100644 index f8cb5bc1d7b3..000000000000 --- a/databases/firebird2-server/pkg-comment +++ /dev/null @@ -1 +0,0 @@ -The open-source InterBase(tm) 6.0 spin-off (Classic version) diff --git a/databases/firebird2-server/pkg-descr b/databases/firebird2-server/pkg-descr deleted file mode 100644 index b080060395eb..000000000000 --- a/databases/firebird2-server/pkg-descr +++ /dev/null @@ -1,23 +0,0 @@ -The open-source InterBase(tm) 6.0 spin-off (Classic server version) - -InterBase is a world-class DBMS with a history too rich to detail -here. Once selling for several thousands of dollars per license, -some very big players use it worldwide. Inprise has open-sourced -InterBase 6.0, and a lively bunch of folks has charged themselves -with seeing that it lives on through the Firebird project. - -Note that as of Firebird 0.9_4, the locksmith back door has -been closed. - -For more information on Firebird and InterBase, see: -http://www.ibphoenix.com/ -http://www.interbase2000.org/ -http://www.interbase.com/ -http://www.firebirdsql.org/ - -and of course the firebird page itself: -WWW: http://sourceforge.net/projects/firebird/ - -For more information on the locksmith back door, see: - -https://www.kb.cert.org/vuls/id/247371 diff --git a/databases/firebird2-server/pkg-install b/databases/firebird2-server/pkg-install deleted file mode 100644 index c6b00320cd7e..000000000000 --- a/databases/firebird2-server/pkg-install +++ /dev/null @@ -1,159 +0,0 @@ -#!/bin/sh - -# Created in haste by smashing together various -# files from the port scripts. - -if [ "$2" = "PRE-INSTALL" ]; then -if [ -d $PKG_PREFIX/firebird ]; then - if [ -d $PKG_PREFIX/firebird.old ]; then - rm -rf $PKG_PREFIX/firebird.old - fi - mv $PKG_PREFIX/firebird $PKG_PREFIX/firebird.old -fi - -if [ -L /usr/interbase ]; then - rm -f /usr/interbase -fi - -if [ -d /usr/interbase ]; then - mv /usr/interbase /usr/interbase.old -fi - -ln -fs $PKG_PREFIX/firebird /usr/interbase - -perl <<EOF -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( "firebird" ) ) { - ( \$null, \$null, \$fbUID ) = getpwnam( "firebird" ); -} else { - \$fbUID = 90; - while( getpwuid( \$fbUID ) ) { - \$fbUID++; - } -} - -if( getgrnam( "firebird" ) ) { - ( \$null, \$null, \$fbGID ) = getgrnam( "firebird" ); -} else { - \$fbGID = 90; - while( getgrgid( \$fbGID ) ) { - \$fbGID++; - } - &append_file( "/etc/group", "firebird:*:\$fbGID:" ); -} - -print "firebird user using uid \$fbUID\n"; -print "firebird user using gid \$fbGID\n"; - -system( "/usr/bin/chpass -a \"firebird:*:\$fbUID:\$fbGID\:\:0:0:Firebird pseudo-user:\$ENV{'PKG_PREFIX'}/firebird:/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 ); -} -EOF -elif [ "$2" = "POST-INSTALL" ]; then -chown -R firebird:firebird $PKG_PREFIX/firebird - -# Turn everybody to read only. -chmod -R o=r $PKG_PREFIX/firebird - -# Now fix up the mess. - -# fix up directories -for i in `find $PKG_PREFIX/firebird -print` - do - FileName=$i - if [ -d $FileName ] - then - chmod o=rx $FileName - fi - done - -# make lib ldconfig-compatible -chown -R root:wheel $PKG_PREFIX/firebird/lib -chmod -R g-w $PKG_PREFIX/firebird/lib - -# Fix UDF load problem -cd $PKG_PREFIX/firebird/lib -ln -sf ib_util.so libib_util.so - -cd $PKG_PREFIX/firebird/bin - -# all users can run everything. -chmod o=rx * - -# SUID is needed for running server programs. - -for i in gds_lock_mgr gds_drop gds_inet_server - do - chmod ug+s $i - done - - -# Lock files - -cd $PKG_PREFIX/firebird - -for i in isc_init1 isc_lock1 isc_event1 - do - FileName=$i.`hostname` - touch $FileName - chmod uga=rw $FileName - chown firebird:firebird $FileName - done - - -touch interbase.log -chmod ugo=rw interbase.log - -# make databases writable by all -chmod ugo=rw examples/v5/*.gdb -chmod ugo=rw help/*.gdb -chmod ugo=rw isc4.gdb - -# remove any existing gds service -cp /etc/services /etc/services.old -cp /etc/inetd.conf /etc/inetd.conf.old -cat /etc/services |grep -v gds_db >/etc/services.new -cat /etc/inetd.conf |grep -v gds_db >/etc/inetd.conf.new -mv /etc/services.new /etc/services -mv /etc/inetd.conf.new /etc/inetd.conf - -# add the gds service and restart inetd -cat >>/etc/services <<EOF -gds_db 3050/tcp #InterBase Database Remote Protocol -EOF -cat >>/etc/inetd.conf <<EOF -gds_db stream tcp nowait firebird /usr/interbase/bin/gds_inet_server gds_inet_server -EOF -if [ -f /var/run/inetd.pid ]; then - kill -HUP `cat /var/run/inetd.pid` -fi - -# shared lib startup script -if [ -d $PKG_PREFIX/etc/rc.d ]; then - ( - echo "#!/bin/sh"; echo "[ -d $PKG_PREFIX/firebird/lib ] && /sbin/ldconfig -m $PKG_PREFIX/firebird/lib" - ) > $PKG_PREFIX/etc/rc.d/000.firebird.sh -fi - -fi diff --git a/databases/firebird2-server/pkg-message b/databases/firebird2-server/pkg-message deleted file mode 100644 index f15892a06aaa..000000000000 --- a/databases/firebird2-server/pkg-message +++ /dev/null @@ -1,19 +0,0 @@ - ---------------------------------------------------------- -Firebird is now installed. There is a symbolic link from -/usr/interbase -> %%PREFIX%%/firebird. Firebird needs this -link for proper operation. - -It is STRONGLY recommended that you change the SYSDBA -password with: - -$ cd /usr/interbase -$ gsec -user SYSDBA -pass masterkey -GSEC> modify SYSDBA -pw newpassword -GSEC> quit - -before doing anything serious with Firebird. - -See %%PREFIX%%/firebird/RELNOTES for more. ---------------------------------------------------------- - diff --git a/databases/firebird2-server/pkg-plist b/databases/firebird2-server/pkg-plist deleted file mode 100644 index 10f152fcbc82..000000000000 --- a/databases/firebird2-server/pkg-plist +++ /dev/null @@ -1,106 +0,0 @@ -etc/rc.d/000.firebird.sh -firebird/intl/gdsintl -firebird/examples/v5/ib_udf.sql -firebird/examples/v5/README -firebird/examples/v5/align.h -firebird/examples/v5/api1.c -firebird/examples/v5/api10.c -firebird/examples/v5/api11.c -firebird/examples/v5/api12.c -firebird/examples/v5/api13.c -firebird/examples/v5/api14.e -firebird/examples/v5/api15.c -firebird/examples/v5/api16.c -firebird/examples/v5/api16t.c -firebird/examples/v5/api2.c -firebird/examples/v5/api3.c -firebird/examples/v5/api4.c -firebird/examples/v5/api5.c -firebird/examples/v5/api6.c -firebird/examples/v5/api7.c -firebird/examples/v5/api8.c -firebird/examples/v5/api9.c -firebird/examples/v5/api9f.c -firebird/examples/v5/apifull.c -firebird/examples/v5/employe2.sql -firebird/examples/v5/dyn1.e -firebird/examples/v5/dyn2.e -firebird/examples/v5/dyn3.e -firebird/examples/v5/dyn4.e -firebird/examples/v5/dyn5.e -firebird/examples/v5/dynfull.e -firebird/examples/v5/employee.gbk -firebird/examples/v5/employee.gdb -firebird/examples/v5/example.h -firebird/examples/v5/api9f.sql -firebird/examples/v5/intlemp.gbk -firebird/examples/v5/intlemp.gdb -firebird/examples/v5/stat1.e -firebird/examples/v5/stat10.e -firebird/examples/v5/stat11.e -firebird/examples/v5/stat12.e -firebird/examples/v5/stat12t.e -firebird/examples/v5/stat2.e -firebird/examples/v5/stat3.e -firebird/examples/v5/stat4.e -firebird/examples/v5/stat5.e -firebird/examples/v5/stat6.e -firebird/examples/v5/stat7.e -firebird/examples/v5/stat8.e -firebird/examples/v5/stat9.e -firebird/examples/v5/udf.sql -firebird/examples/v5/udflib.c -firebird/examples/v5/makefile -firebird/include/perf.h -firebird/include/ib_util.h -firebird/include/gds.hxx -firebird/include/gds.h -firebird/include/ibase.h -firebird/include/iberror.h -firebird/include/gds.f -firebird/UDF/ib_udf -firebird/lib/ib_util.so -firebird/lib/gds.a -firebird/lib/gds.so -firebird/lib/libgds.so -firebird/lib/libgds.so.1 -firebird/lib/libgds_pyxis.a -firebird/lib/libgds.a -firebird/lib/libib_util.so -firebird/lib/gds_pyxis.a -firebird/help/help.gbak -firebird/help/help.gdb -firebird/bin/isc4.gbak -firebird/bin/gpre -firebird/bin/gds_pipe -firebird/bin/gds_drop -firebird/bin/gds_lock_mgr -firebird/bin/gfix -firebird/bin/gdef -firebird/bin/isql -firebird/bin/gds_lock_print -firebird/bin/qli -firebird/bin/gds_inet_server -firebird/bin/gsplit -firebird/bin/gstat -firebird/bin/gds_relay -firebird/bin/gsec -firebird/bin/gbak -firebird/services.isc -firebird/isc_config -firebird/isc4.gdb -firebird/interbase.msg -firebird/interbase.log -firebird/inetd.conf.isc -firebird/RELNOTES -@dirrm firebird -@dirrm firebird/intl -@dirrm firebird/examples/v3 -@dirrm firebird/examples/v4 -@dirrm firebird/examples/v5 -@dirrm firebird/examples -@dirrm firebird/include -@dirrm firebird/UDF -@dirrm firebird/lib -@dirrm firebird/help -@dirrm firebird/bin diff --git a/databases/firebird2-server/scripts/addservice b/databases/firebird2-server/scripts/addservice deleted file mode 100644 index df9aea5e91de..000000000000 --- a/databases/firebird2-server/scripts/addservice +++ /dev/null @@ -1,9 +0,0 @@ -#!/bin/sh - -cat >>/etc/services <<EOF -gds_db 3050/tcp #InterBase Database Remote Protocol -EOF -cat >>/etc/inetd.conf <<EOF -gds_db stream tcp nowait firebird /usr/interbase/bin/gds_inet_server gds_inet_server -EOF -kill -HUP `cat /var/run/inetd.pid` diff --git a/databases/firebird2-server/scripts/createuser b/databases/firebird2-server/scripts/createuser deleted file mode 100644 index b61d47fd84bd..000000000000 --- a/databases/firebird2-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( "firebird" ) ) { - ( $null, $null, $fbUID ) = getpwnam( "firebird" ); -} else { - $fbUID = 90; - while( getpwuid( $fbUID ) ) { - $fbUID++; - } -} - -if( getgrnam( "firebird" ) ) { - ( $null, $null, $fbGID ) = getgrnam( "firebird" ); -} else { - $fbGID = 90; - while( getgrgid( $fbGID ) ) { - $fbGID++; - } - &append_file( "/etc/group", "firebird:*:$fbGID:" ); -} - -print "firebird user using uid $fbUID\n"; -print "firebird user using gid $fbGID\n"; - -system( "/usr/bin/chpass -a \"firebird:*:$fbUID:$fbGID\:\:0:0:Firebird pseudo-user:$ENV{'PREFIX'}/firebird:/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/firebird2-server/scripts/post-install b/databases/firebird2-server/scripts/post-install deleted file mode 100644 index c2515fde278c..000000000000 --- a/databases/firebird2-server/scripts/post-install +++ /dev/null @@ -1,84 +0,0 @@ -#!/bin/sh - -chown -R firebird:firebird $PREFIX/firebird - -# Turn everybody to read only. -chmod -R o=r $PREFIX/firebird - -# Now fix up the mess. - -# fix up directories -for i in `find $PREFIX/firebird -print` - do - FileName=$i - if [ -d $FileName ] - then - chmod o=rx $FileName - fi - done - -# make lib ldconfig-compatible -chown -R root:wheel $PREFIX/firebird/lib -chmod -R g-w $PREFIX/firebird/lib - -# Fix UDF load problem -cd $PREFIX/firebird/lib -ln -sf ib_util.so libib_util.so - -cd $PREFIX/firebird/bin - -# all users can run everything. -chmod o=rx * - -# SUID is needed for running server programs. - -for i in gds_lock_mgr gds_drop gds_inet_server - do - chmod ug+s $i - done - - -# Lock files - -cd $PREFIX/firebird - -for i in isc_init1 isc_lock1 isc_event1 - do - FileName=$i.`hostname` - touch $FileName - chmod uga=rw $FileName - chown firebird:firebird $FileName - done - - -touch interbase.log -chmod ugo=rw interbase.log - -# make databases writable by all -chmod ugo=rw examples/v5/*.gdb -chmod ugo=rw help/*.gdb -chmod ugo=rw isc4.gdb - -# remove any existing gds service -sh $SCRIPTDIR/rmservice - -# add the gds service and restart inetd -sh $SCRIPTDIR/addservice -if [ -f /var/run/inetd.pid ]; then - kill -HUP `cat /var/run/inetd.pid` -fi - -sed "s|%%PREFIX%%|$PREFIX|" $SCRIPTDIR/../pkg-message - -cat <<EOF - -========================================================== -!! NOTE !! - -As there are some oddities to the Firebird build process, -it is likely you WILL NOT BE ABLE TO USE IT until you -remove the semaphore created during the build process. -Please read $PREFIX/firebird/RELNOTES for more information. -========================================================== - -EOF diff --git a/databases/firebird2-server/scripts/pre-build b/databases/firebird2-server/scripts/pre-build deleted file mode 100644 index 6605df7770fd..000000000000 --- a/databases/firebird2-server/scripts/pre-build +++ /dev/null @@ -1,15 +0,0 @@ -#!/bin/sh - -GDS_LOCK_MGR=`ps ax |grep gds_lock_mgr |grep -v grep`; - -if [ "$GDS_LOCK_MGR" != "" ]; then - echo "It appears you have a gds_lock_manager already running."; - echo; - echo "You must cease all InterBase operations to build this port."; - echo "Make sure nobody is connected to any databases, then use"; - echo "'gds_drop -a' and manually verify (with ipcs) that the"; - echo "semaphores were removed."; - exit 1; -fi -exit 0 - diff --git a/databases/firebird2-server/scripts/pre-install b/databases/firebird2-server/scripts/pre-install deleted file mode 100644 index a6e1b37a9008..000000000000 --- a/databases/firebird2-server/scripts/pre-install +++ /dev/null @@ -1,20 +0,0 @@ -#!/bin/sh - -if [ -d $PREFIX/firebird ]; then - if [ -d $PREFIX/firebird.old ]; then - rm -rf $PREFIX/firebird.old - fi - mv $PREFIX/firebird $PREFIX/firebird.old -fi - -if [ -L /usr/interbase ]; then - rm -f /usr/interbase -fi - -if [ -d /usr/interbase ]; then - mv /usr/interbase /usr/interbase.old -fi - -ln -fs $PREFIX/firebird /usr/interbase - -perl $SCRIPTDIR/createuser diff --git a/databases/firebird2-server/scripts/rmservice b/databases/firebird2-server/scripts/rmservice deleted file mode 100644 index 58adfc17419d..000000000000 --- a/databases/firebird2-server/scripts/rmservice +++ /dev/null @@ -1,8 +0,0 @@ -#!/bin/sh - -cp /etc/services /etc/services.old -cp /etc/inetd.conf /etc/inetd.conf.old -cat /etc/services |grep -v gds_db >/etc/services.new -cat /etc/inetd.conf |grep -v gds_db >/etc/inetd.conf.new -mv /etc/services.new /etc/services -mv /etc/inetd.conf.new /etc/inetd.conf diff --git a/databases/firebird20-server/Makefile b/databases/firebird20-server/Makefile deleted file mode 100644 index 0fffe53812ff..000000000000 --- a/databases/firebird20-server/Makefile +++ /dev/null @@ -1,82 +0,0 @@ -# New ports collection makefile for: Firebird -# Date created: 20 December 2000 -# Whom: Geoffrey C. Speicher <geoff@sea-incorporated.com> -# -# $FreeBSD$ -# - -PORTNAME= firebird -PORTVERSION= 0.9 -PORTREVISION= 4 -CATEGORIES= databases -MASTER_SITES= http://firebird.sourceforge.net/download/ \ - ${MASTER_SITE_SOURCEFORGE} -MASTER_SITE_SUBDIR=firebird -DISTFILES= firebird-boot-kit.tar.gz \ - interbase0.9-4-v5examples.tar.gz \ - interbase0.9-4src.tar.gz - -MAINTAINER= chris@aims.com.au - -WRKSRC= ${WRKDIR}/interbase -INSTALLS_SHLIB= yes -LDCONFIG_DIRS= %%PREFIX%%/firebird/lib -MSG_FILE= ${PKGDIR}/pkg-message -PKGMESSAGE= ${WRKDIR}/pkg-message - -ONLY_FOR_ARCHS= i386 - -.include <bsd.port.pre.mk> - -do-extract: - @${MKDIR} ${WRKDIR} - @( \ - cd ${WRKDIR}; ${TAR} -xzf ${DISTDIR}/interbase0.9-4src.tar.gz; \ - cd interbase; ${TAR} -xzf ${DISTDIR}/firebird-boot-kit.tar.gz; \ - ${CP} msgs/msg.gbak misc/msg.gbak \ - ) - -post-patch: - @${SED} 's|%%PREFIX%%|${PREFIX}|g' ${MSG_FILE} > ${PKGMESSAGE} -.if ${OSVERSION} >= 500016 || ${OSVERSION} >= 430001 - @${PERL} -pi -e 's,\-ldescrypt,\-lcrypt,g' \ - ${WRKSRC}/builds/original/prefix.freebsd -.else - @${PERL} -pi -e 's,^crypt_set_format.*,,' ${WRKSRC}/jrd/enc.c -.endif - -do-configure: - @( \ - cd ${WRKDIR}/interbase; \ - INTERBASE=${WRKDIR}/interbase/interbase; export INTERBASE; \ - REFDBPATH=${WRKDIR}/refDatabases; export REFDBPATH; \ - ${SH} buildBootDatabases; \ - ${SH} setup_dirs.boot FREEBSD PROD ${WRKDIR}/refDatabases boot; \ - ) - -do-build: - @( \ - ${ECHO} '#!/bin/sh'; ${ECHO} \ - '[ -d ${LDCONFIG_RUNLIST} ] && ${LDCONFIG} -m ${LDCONFIG_RUNLIST}'; \ - ) > ${WRKDIR}/000.${PORTNAME}.sh - @( \ - cd ${WRKDIR}/interbase; \ - INTERBASE=${WRKDIR}/interbase/interbase; export INTERBASE; \ - REFDBPATH=${WRKDIR}/refDatabases; export REFDBPATH; \ - ${SH} boot.freebsd; \ - ) - -do-install: - @( \ - cd ${WRKDIR}/interbase; \ - ${CP} -Rp interbase ${PREFIX}/firebird; \ - ${RM} ${PREFIX}/firebird/install; \ - ${RM} ${PREFIX}/firebird/lib/libgds.so.1.0; \ - ${LN} -fs gds.so ${PREFIX}/firebird/lib/libgds.so.1; \ - cd ${PREFIX}/firebird/examples; \ - ${TAR} -xzf ${DISTDIR}/interbase0.9-4-v5examples.tar.gz; \ - ${CP} ${FILESDIR}/RELNOTES ${PREFIX}/firebird/; \ - ${INSTALL_SCRIPT} ${WRKDIR}/000.${PORTNAME}.sh ${PREFIX}/etc/rc.d/ \ - ) - -.include <bsd.port.post.mk> diff --git a/databases/firebird20-server/distinfo b/databases/firebird20-server/distinfo deleted file mode 100644 index 67c42987376e..000000000000 --- a/databases/firebird20-server/distinfo +++ /dev/null @@ -1,3 +0,0 @@ -MD5 (firebird-boot-kit.tar.gz) = 2e18d75539bc4c3d40a1a71509309f64 -MD5 (interbase0.9-4-v5examples.tar.gz) = 17cba82bbf5066d515f2dee97bf8327a -MD5 (interbase0.9-4src.tar.gz) = d098277ed160e2b6a49d91e1fdb3a652 diff --git a/databases/firebird20-server/files/RELNOTES b/databases/firebird20-server/files/RELNOTES deleted file mode 100644 index d2fd1d4fc88d..000000000000 --- a/databases/firebird20-server/files/RELNOTES +++ /dev/null @@ -1,79 +0,0 @@ -Firebird 0.9_4 FreeBSD Release Notes 13-Jan-2001 ------------------------------------- -FB-T0.9.4.34 Firebird Test1 - -Welcome to the FreeBSD Firebird port! Users should note that there -was a package called `firebird-1.0.tgz' released in mid-August -2000. Unfortunately, that package was released before Firebird -version numbering conventions were established, so although the -version number would suggest that it is newer than the current -release, it is certainly not. Users of the August 1.0 package -should upgrade to 0.9_4 or later, which has fixed many bugs and -security problems, including the recently-discovered back door. - - Firebird originally required a running copy of Firebird (or -InterBase) in order to build itself. This port uses a boot kit to -overcome that, so that it does not require itself to build. -Unfortunately, the side effect of this is that if you have a lock -manager running from an already-installed version of Firebird or -InterBase, this port will not build. - - Firebird is installed SUID with owner and group `firebird'. -This does affect where you can and cannot create databases when -connecting remotely, as well as which existing databases you can -access. If you want a database to be available remotely, be sure -it's readable and writeable to group firebird. - - There may be times when you manage to get your system into a -state where using any of the Firebird utilites (isql, gbak, gsec, -etc.) gives you the message "semget failed". One surefire way to -do this is to build and install the port. :) If this happens, -make sure that the lock manager is not running and its semaphores -have been removed. The former can be accomplished with 'ps ax -|grep gds' and 'kill'; the latter with 'ipcs -s' and 'ipcrm -s'. - - For example, after building and installing the port, you will -probably go through something like this: - -# isql /usr/interbase/isc4.gdb -Statement failed, SQLCODE = -902 - -operating system directive semget failed --No such file or directory - -# ipcs -s -Semaphores: -T ID KEY MODE OWNER GROUP -s 1310720 252034728 --rw-rw-rw- root wheel - -# ipcrm -s 1310720 - -and you should be in business. - - Once this is done, you should be able to connect normally to -databases. Your first connection will restart the lock manager. - - There may be times, however, when you still get "semget failed" -even though the lock manager is not running and the semaphores have -been cleaned up. There seems to be a conflict with this release -and the PostgreSQL 7 release as installed from the ports collection. -If you're having trouble with Firebird and you're running PostgreSQL, -try stopping PostgreSQL: - - /usr/local/etc/rc.d/pgsql.sh stop - -and see if that helps. - - Complete documentation for InterBase(tm) is available (free of -charge) from http://www.interbase.com/ in PDF format. While -InterBase and Firebird are two distinct entities, all InterBase -documentation is pertinent to Firebird. More information on Firebird -and InterBase can be found at the following: - - http://sourceforge.net/projects/firebird/ - http://www.ibphoenix.com/ - http://www.interbase2000.org/ - http://www.firebirdsql.org/ - -Geoff Speicher -<geoff@sea-incorporated.com> diff --git a/databases/firebird20-server/files/patch-aa b/databases/firebird20-server/files/patch-aa deleted file mode 100644 index f2db9a68750d..000000000000 --- a/databases/firebird20-server/files/patch-aa +++ /dev/null @@ -1,11 +0,0 @@ ---- buildBootDatabases.orig Tue Oct 10 23:00:39 2000 -+++ buildBootDatabases Tue Oct 10 23:00:46 2000 -@@ -49,7 +49,7 @@ - DefaultAns=$2 - echo -n "${1}" - Answer="$DefaultAns" -- read Answer -+# read Answer - } - - #-------------------------------------------------------------------- diff --git a/databases/firebird20-server/files/patch-ab b/databases/firebird20-server/files/patch-ab deleted file mode 100644 index f054a4b23007..000000000000 --- a/databases/firebird20-server/files/patch-ab +++ /dev/null @@ -1,11 +0,0 @@ ---- setup_dirs.boot.orig Tue Oct 10 23:00:07 2000 -+++ setup_dirs.boot Tue Oct 10 23:00:22 2000 -@@ -49,7 +49,7 @@ - DefaultAns=$2 - echo -n "${1}" - Answer="$DefaultAns" -- read Answer -+# read Answer - } - - diff --git a/databases/firebird20-server/files/patch-ac b/databases/firebird20-server/files/patch-ac deleted file mode 100644 index bf5de43b75fb..000000000000 --- a/databases/firebird20-server/files/patch-ac +++ /dev/null @@ -1,58 +0,0 @@ ---- builds/original/prefix.freebsd 2000/10/08 15:36:25 1.2 -+++ builds/original/prefix.freebsd 2001/01/11 19:17:58 -@@ -28,7 +28,7 @@ - - - PROD_DEBUG_OBJECTS= nodebug.o --PROD_SHRLIB_DIR= -+PROD_SHRLIB_DIR= -Lsource/jrd - PROD_VERSION_FLAG= -DPROD_BUILD - PROD_CFLAGS= -O -m486 -fpic -DFLINTSTONE - -@@ -48,7 +48,7 @@ - UDF_LINK_CMD= gcc - UDF_CFLAGS= -fPIC -mieee-fp - UDF_LFLAGS= -shared --UDF_SHRLIBS= -L/usr/local/lib -lgds -lm -lc -mieee-fp -ldescrypt -+UDF_SHRLIBS= $(SHRLIB_DIR) -lgds -lm -lc -mieee-fp -ldescrypt - - #NOTE: PIC_J_CFLAGS is special CFLAGS used to build PIPD_IS_SHRLIB modules - # to workaround the Solaris threading problems with signals -@@ -69,16 +69,14 @@ - FUNCTIONS= functions.bin - FUNCSHR= source/interbase/lib/gdsf.so - GDS_LINK= $(GDSSHR_LINK) --#GDS_PYXIS= - GDS_PYXIS= gds_pyxis.a - GDSLIB_BACKEND= source/interbase/lib/gds_b.a - GDSLIB_LINK= -Lsource/jrd -lgds_b -lc -ldescrypt - - GDSSHR= source/interbase/lib/gds.so - LINUX_GDSSHR= $(GDSSHR) --GDSSHR_LINK= $(SHRLIB_DIR) -L/usr/local/lib -lgds -lgds_pyxis -ldescrypt --PIPE_GDSSHR_LINK= $(SHRLIB_DIR) -L/usr/local/lib -lgds -lgds_pyxis --#PIPE_GDSSHR_LINK= $(SHRLIB_DIR) -lgds -lgds_pyxis -+GDSSHR_LINK= $(SHRLIB_DIR) -lgds -lgds_pyxis -ldescrypt -+PIPE_GDSSHR_LINK= $(SHRLIB_DIR) -lgds -lgds_pyxis - HLPDIR= source/qli/ - HOSTNAME= `hostname | cut -d'.' -f1` - INCLUDES= include_so include_so_ada -@@ -106,11 +104,6 @@ - MUISQL_LINK_OPTS= $(MUISQL_MU_LIB) $(PIPE_GDSSHR_LINK) -lm - PIC_FLAGS= $(CFLAGS) -fPIC - PIPE= gds.a gds_pipe --#PYXIS= --#PYXIS_MISC_OBJS= --#PYXIS_P_MISC_OBJS= --#PYXIS_OBJECTS= --#PYXIS_MISC_OBJECTS= - PYXIS= pyxis - PYXIS_MISC_OBJS= $(PYXIS_MISC) - PYXIS_P_MISC_OBJS= $(PYXIS_P_MISC) -@@ -167,5 +160,8 @@ - SHRLIB_EXT= .so - - V3PRINTER= source/lock/printv3.o -+ -+# Forces library build for FreeBSD -+PYXIS_LIBRARY= libpyxis.a diff --git a/databases/firebird20-server/files/patch-ad b/databases/firebird20-server/files/patch-ad deleted file mode 100644 index 7ce937566bc3..000000000000 --- a/databases/firebird20-server/files/patch-ad +++ /dev/null @@ -1,13 +0,0 @@ ---- jrd/enc.c.orig Fri Aug 4 06:50:03 2000 -+++ jrd/enc.c Sun Nov 18 19:17:19 2001 -@@ -31,6 +31,10 @@ - * - **************************************/ - -+#ifdef FREEBSD -+crypt_set_format("des"); -+#endif -+ - return CRYPT_FUNC( string, salt); - } - #endif diff --git a/databases/firebird20-server/pkg-comment b/databases/firebird20-server/pkg-comment deleted file mode 100644 index f8cb5bc1d7b3..000000000000 --- a/databases/firebird20-server/pkg-comment +++ /dev/null @@ -1 +0,0 @@ -The open-source InterBase(tm) 6.0 spin-off (Classic version) diff --git a/databases/firebird20-server/pkg-descr b/databases/firebird20-server/pkg-descr deleted file mode 100644 index b080060395eb..000000000000 --- a/databases/firebird20-server/pkg-descr +++ /dev/null @@ -1,23 +0,0 @@ -The open-source InterBase(tm) 6.0 spin-off (Classic server version) - -InterBase is a world-class DBMS with a history too rich to detail -here. Once selling for several thousands of dollars per license, -some very big players use it worldwide. Inprise has open-sourced -InterBase 6.0, and a lively bunch of folks has charged themselves -with seeing that it lives on through the Firebird project. - -Note that as of Firebird 0.9_4, the locksmith back door has -been closed. - -For more information on Firebird and InterBase, see: -http://www.ibphoenix.com/ -http://www.interbase2000.org/ -http://www.interbase.com/ -http://www.firebirdsql.org/ - -and of course the firebird page itself: -WWW: http://sourceforge.net/projects/firebird/ - -For more information on the locksmith back door, see: - -https://www.kb.cert.org/vuls/id/247371 diff --git a/databases/firebird20-server/pkg-install b/databases/firebird20-server/pkg-install deleted file mode 100644 index c6b00320cd7e..000000000000 --- a/databases/firebird20-server/pkg-install +++ /dev/null @@ -1,159 +0,0 @@ -#!/bin/sh - -# Created in haste by smashing together various -# files from the port scripts. - -if [ "$2" = "PRE-INSTALL" ]; then -if [ -d $PKG_PREFIX/firebird ]; then - if [ -d $PKG_PREFIX/firebird.old ]; then - rm -rf $PKG_PREFIX/firebird.old - fi - mv $PKG_PREFIX/firebird $PKG_PREFIX/firebird.old -fi - -if [ -L /usr/interbase ]; then - rm -f /usr/interbase -fi - -if [ -d /usr/interbase ]; then - mv /usr/interbase /usr/interbase.old -fi - -ln -fs $PKG_PREFIX/firebird /usr/interbase - -perl <<EOF -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( "firebird" ) ) { - ( \$null, \$null, \$fbUID ) = getpwnam( "firebird" ); -} else { - \$fbUID = 90; - while( getpwuid( \$fbUID ) ) { - \$fbUID++; - } -} - -if( getgrnam( "firebird" ) ) { - ( \$null, \$null, \$fbGID ) = getgrnam( "firebird" ); -} else { - \$fbGID = 90; - while( getgrgid( \$fbGID ) ) { - \$fbGID++; - } - &append_file( "/etc/group", "firebird:*:\$fbGID:" ); -} - -print "firebird user using uid \$fbUID\n"; -print "firebird user using gid \$fbGID\n"; - -system( "/usr/bin/chpass -a \"firebird:*:\$fbUID:\$fbGID\:\:0:0:Firebird pseudo-user:\$ENV{'PKG_PREFIX'}/firebird:/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 ); -} -EOF -elif [ "$2" = "POST-INSTALL" ]; then -chown -R firebird:firebird $PKG_PREFIX/firebird - -# Turn everybody to read only. -chmod -R o=r $PKG_PREFIX/firebird - -# Now fix up the mess. - -# fix up directories -for i in `find $PKG_PREFIX/firebird -print` - do - FileName=$i - if [ -d $FileName ] - then - chmod o=rx $FileName - fi - done - -# make lib ldconfig-compatible -chown -R root:wheel $PKG_PREFIX/firebird/lib -chmod -R g-w $PKG_PREFIX/firebird/lib - -# Fix UDF load problem -cd $PKG_PREFIX/firebird/lib -ln -sf ib_util.so libib_util.so - -cd $PKG_PREFIX/firebird/bin - -# all users can run everything. -chmod o=rx * - -# SUID is needed for running server programs. - -for i in gds_lock_mgr gds_drop gds_inet_server - do - chmod ug+s $i - done - - -# Lock files - -cd $PKG_PREFIX/firebird - -for i in isc_init1 isc_lock1 isc_event1 - do - FileName=$i.`hostname` - touch $FileName - chmod uga=rw $FileName - chown firebird:firebird $FileName - done - - -touch interbase.log -chmod ugo=rw interbase.log - -# make databases writable by all -chmod ugo=rw examples/v5/*.gdb -chmod ugo=rw help/*.gdb -chmod ugo=rw isc4.gdb - -# remove any existing gds service -cp /etc/services /etc/services.old -cp /etc/inetd.conf /etc/inetd.conf.old -cat /etc/services |grep -v gds_db >/etc/services.new -cat /etc/inetd.conf |grep -v gds_db >/etc/inetd.conf.new -mv /etc/services.new /etc/services -mv /etc/inetd.conf.new /etc/inetd.conf - -# add the gds service and restart inetd -cat >>/etc/services <<EOF -gds_db 3050/tcp #InterBase Database Remote Protocol -EOF -cat >>/etc/inetd.conf <<EOF -gds_db stream tcp nowait firebird /usr/interbase/bin/gds_inet_server gds_inet_server -EOF -if [ -f /var/run/inetd.pid ]; then - kill -HUP `cat /var/run/inetd.pid` -fi - -# shared lib startup script -if [ -d $PKG_PREFIX/etc/rc.d ]; then - ( - echo "#!/bin/sh"; echo "[ -d $PKG_PREFIX/firebird/lib ] && /sbin/ldconfig -m $PKG_PREFIX/firebird/lib" - ) > $PKG_PREFIX/etc/rc.d/000.firebird.sh -fi - -fi diff --git a/databases/firebird20-server/pkg-message b/databases/firebird20-server/pkg-message deleted file mode 100644 index f15892a06aaa..000000000000 --- a/databases/firebird20-server/pkg-message +++ /dev/null @@ -1,19 +0,0 @@ - ---------------------------------------------------------- -Firebird is now installed. There is a symbolic link from -/usr/interbase -> %%PREFIX%%/firebird. Firebird needs this -link for proper operation. - -It is STRONGLY recommended that you change the SYSDBA -password with: - -$ cd /usr/interbase -$ gsec -user SYSDBA -pass masterkey -GSEC> modify SYSDBA -pw newpassword -GSEC> quit - -before doing anything serious with Firebird. - -See %%PREFIX%%/firebird/RELNOTES for more. ---------------------------------------------------------- - diff --git a/databases/firebird20-server/pkg-plist b/databases/firebird20-server/pkg-plist deleted file mode 100644 index 10f152fcbc82..000000000000 --- a/databases/firebird20-server/pkg-plist +++ /dev/null @@ -1,106 +0,0 @@ -etc/rc.d/000.firebird.sh -firebird/intl/gdsintl -firebird/examples/v5/ib_udf.sql -firebird/examples/v5/README -firebird/examples/v5/align.h -firebird/examples/v5/api1.c -firebird/examples/v5/api10.c -firebird/examples/v5/api11.c -firebird/examples/v5/api12.c -firebird/examples/v5/api13.c -firebird/examples/v5/api14.e -firebird/examples/v5/api15.c -firebird/examples/v5/api16.c -firebird/examples/v5/api16t.c -firebird/examples/v5/api2.c -firebird/examples/v5/api3.c -firebird/examples/v5/api4.c -firebird/examples/v5/api5.c -firebird/examples/v5/api6.c -firebird/examples/v5/api7.c -firebird/examples/v5/api8.c -firebird/examples/v5/api9.c -firebird/examples/v5/api9f.c -firebird/examples/v5/apifull.c -firebird/examples/v5/employe2.sql -firebird/examples/v5/dyn1.e -firebird/examples/v5/dyn2.e -firebird/examples/v5/dyn3.e -firebird/examples/v5/dyn4.e -firebird/examples/v5/dyn5.e -firebird/examples/v5/dynfull.e -firebird/examples/v5/employee.gbk -firebird/examples/v5/employee.gdb -firebird/examples/v5/example.h -firebird/examples/v5/api9f.sql -firebird/examples/v5/intlemp.gbk -firebird/examples/v5/intlemp.gdb -firebird/examples/v5/stat1.e -firebird/examples/v5/stat10.e -firebird/examples/v5/stat11.e -firebird/examples/v5/stat12.e -firebird/examples/v5/stat12t.e -firebird/examples/v5/stat2.e -firebird/examples/v5/stat3.e -firebird/examples/v5/stat4.e -firebird/examples/v5/stat5.e -firebird/examples/v5/stat6.e -firebird/examples/v5/stat7.e -firebird/examples/v5/stat8.e -firebird/examples/v5/stat9.e -firebird/examples/v5/udf.sql -firebird/examples/v5/udflib.c -firebird/examples/v5/makefile -firebird/include/perf.h -firebird/include/ib_util.h -firebird/include/gds.hxx -firebird/include/gds.h -firebird/include/ibase.h -firebird/include/iberror.h -firebird/include/gds.f -firebird/UDF/ib_udf -firebird/lib/ib_util.so -firebird/lib/gds.a -firebird/lib/gds.so -firebird/lib/libgds.so -firebird/lib/libgds.so.1 -firebird/lib/libgds_pyxis.a -firebird/lib/libgds.a -firebird/lib/libib_util.so -firebird/lib/gds_pyxis.a -firebird/help/help.gbak -firebird/help/help.gdb -firebird/bin/isc4.gbak -firebird/bin/gpre -firebird/bin/gds_pipe -firebird/bin/gds_drop -firebird/bin/gds_lock_mgr -firebird/bin/gfix -firebird/bin/gdef -firebird/bin/isql -firebird/bin/gds_lock_print -firebird/bin/qli -firebird/bin/gds_inet_server -firebird/bin/gsplit -firebird/bin/gstat -firebird/bin/gds_relay -firebird/bin/gsec -firebird/bin/gbak -firebird/services.isc -firebird/isc_config -firebird/isc4.gdb -firebird/interbase.msg -firebird/interbase.log -firebird/inetd.conf.isc -firebird/RELNOTES -@dirrm firebird -@dirrm firebird/intl -@dirrm firebird/examples/v3 -@dirrm firebird/examples/v4 -@dirrm firebird/examples/v5 -@dirrm firebird/examples -@dirrm firebird/include -@dirrm firebird/UDF -@dirrm firebird/lib -@dirrm firebird/help -@dirrm firebird/bin diff --git a/databases/firebird20-server/scripts/addservice b/databases/firebird20-server/scripts/addservice deleted file mode 100644 index df9aea5e91de..000000000000 --- a/databases/firebird20-server/scripts/addservice +++ /dev/null @@ -1,9 +0,0 @@ -#!/bin/sh - -cat >>/etc/services <<EOF -gds_db 3050/tcp #InterBase Database Remote Protocol -EOF -cat >>/etc/inetd.conf <<EOF -gds_db stream tcp nowait firebird /usr/interbase/bin/gds_inet_server gds_inet_server -EOF -kill -HUP `cat /var/run/inetd.pid` diff --git a/databases/firebird20-server/scripts/createuser b/databases/firebird20-server/scripts/createuser deleted file mode 100644 index b61d47fd84bd..000000000000 --- a/databases/firebird20-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( "firebird" ) ) { - ( $null, $null, $fbUID ) = getpwnam( "firebird" ); -} else { - $fbUID = 90; - while( getpwuid( $fbUID ) ) { - $fbUID++; - } -} - -if( getgrnam( "firebird" ) ) { - ( $null, $null, $fbGID ) = getgrnam( "firebird" ); -} else { - $fbGID = 90; - while( getgrgid( $fbGID ) ) { - $fbGID++; - } - &append_file( "/etc/group", "firebird:*:$fbGID:" ); -} - -print "firebird user using uid $fbUID\n"; -print "firebird user using gid $fbGID\n"; - -system( "/usr/bin/chpass -a \"firebird:*:$fbUID:$fbGID\:\:0:0:Firebird pseudo-user:$ENV{'PREFIX'}/firebird:/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/firebird20-server/scripts/post-install b/databases/firebird20-server/scripts/post-install deleted file mode 100644 index c2515fde278c..000000000000 --- a/databases/firebird20-server/scripts/post-install +++ /dev/null @@ -1,84 +0,0 @@ -#!/bin/sh - -chown -R firebird:firebird $PREFIX/firebird - -# Turn everybody to read only. -chmod -R o=r $PREFIX/firebird - -# Now fix up the mess. - -# fix up directories -for i in `find $PREFIX/firebird -print` - do - FileName=$i - if [ -d $FileName ] - then - chmod o=rx $FileName - fi - done - -# make lib ldconfig-compatible -chown -R root:wheel $PREFIX/firebird/lib -chmod -R g-w $PREFIX/firebird/lib - -# Fix UDF load problem -cd $PREFIX/firebird/lib -ln -sf ib_util.so libib_util.so - -cd $PREFIX/firebird/bin - -# all users can run everything. -chmod o=rx * - -# SUID is needed for running server programs. - -for i in gds_lock_mgr gds_drop gds_inet_server - do - chmod ug+s $i - done - - -# Lock files - -cd $PREFIX/firebird - -for i in isc_init1 isc_lock1 isc_event1 - do - FileName=$i.`hostname` - touch $FileName - chmod uga=rw $FileName - chown firebird:firebird $FileName - done - - -touch interbase.log -chmod ugo=rw interbase.log - -# make databases writable by all -chmod ugo=rw examples/v5/*.gdb -chmod ugo=rw help/*.gdb -chmod ugo=rw isc4.gdb - -# remove any existing gds service -sh $SCRIPTDIR/rmservice - -# add the gds service and restart inetd -sh $SCRIPTDIR/addservice -if [ -f /var/run/inetd.pid ]; then - kill -HUP `cat /var/run/inetd.pid` -fi - -sed "s|%%PREFIX%%|$PREFIX|" $SCRIPTDIR/../pkg-message - -cat <<EOF - -========================================================== -!! NOTE !! - -As there are some oddities to the Firebird build process, -it is likely you WILL NOT BE ABLE TO USE IT until you -remove the semaphore created during the build process. -Please read $PREFIX/firebird/RELNOTES for more information. -========================================================== - -EOF diff --git a/databases/firebird20-server/scripts/pre-build b/databases/firebird20-server/scripts/pre-build deleted file mode 100644 index 6605df7770fd..000000000000 --- a/databases/firebird20-server/scripts/pre-build +++ /dev/null @@ -1,15 +0,0 @@ -#!/bin/sh - -GDS_LOCK_MGR=`ps ax |grep gds_lock_mgr |grep -v grep`; - -if [ "$GDS_LOCK_MGR" != "" ]; then - echo "It appears you have a gds_lock_manager already running."; - echo; - echo "You must cease all InterBase operations to build this port."; - echo "Make sure nobody is connected to any databases, then use"; - echo "'gds_drop -a' and manually verify (with ipcs) that the"; - echo "semaphores were removed."; - exit 1; -fi -exit 0 - diff --git a/databases/firebird20-server/scripts/pre-install b/databases/firebird20-server/scripts/pre-install deleted file mode 100644 index a6e1b37a9008..000000000000 --- a/databases/firebird20-server/scripts/pre-install +++ /dev/null @@ -1,20 +0,0 @@ -#!/bin/sh - -if [ -d $PREFIX/firebird ]; then - if [ -d $PREFIX/firebird.old ]; then - rm -rf $PREFIX/firebird.old - fi - mv $PREFIX/firebird $PREFIX/firebird.old -fi - -if [ -L /usr/interbase ]; then - rm -f /usr/interbase -fi - -if [ -d /usr/interbase ]; then - mv /usr/interbase /usr/interbase.old -fi - -ln -fs $PREFIX/firebird /usr/interbase - -perl $SCRIPTDIR/createuser diff --git a/databases/firebird20-server/scripts/rmservice b/databases/firebird20-server/scripts/rmservice deleted file mode 100644 index 58adfc17419d..000000000000 --- a/databases/firebird20-server/scripts/rmservice +++ /dev/null @@ -1,8 +0,0 @@ -#!/bin/sh - -cp /etc/services /etc/services.old -cp /etc/inetd.conf /etc/inetd.conf.old -cat /etc/services |grep -v gds_db >/etc/services.new -cat /etc/inetd.conf |grep -v gds_db >/etc/inetd.conf.new -mv /etc/services.new /etc/services -mv /etc/inetd.conf.new /etc/inetd.conf diff --git a/databases/freetds-devel/Makefile b/databases/freetds-devel/Makefile deleted file mode 100644 index d783c712a58c..000000000000 --- a/databases/freetds-devel/Makefile +++ /dev/null @@ -1,60 +0,0 @@ -# New ports collection makefile for: freetds -# Date created: 02 Nov 1999 -# Whom: Domas Mituzas <midom@dammit.lt> -# -# $FreeBSD$ - -PORTNAME= freetds -PORTVERSION= 0.53 -CATEGORIES= databases -MASTER_SITES= ${MASTER_SITE_SUNSITE} -MASTER_SITE_SUBDIR= ALPHA/freetds -EXTRACT_SUFX= .tgz - -MAINTAINER= ports@FreeBSD.org - -LIB_DEPENDS= giconv.2:${PORTSDIR}/converters/libiconv - -USE_GMAKE= yes -GNU_CONFIGURE= yes -CONFIGURE_ENV= CPPFLAGS="-I${LOCALBASE}/include" \ - LDFLAGS="-L${LOCALBASE}/lib" -CONFIGURE_ARGS= --with-tdsver=4.2 -INSTALLS_SHLIB= yes - -.if defined(WITH_IODBC) -LIB_DEPENDS+= iodbc:${PORTSDIR}/databases/libiodbc -CONFIGURE_ARGS+= --with-iodbc=${LOCALBASE} -.endif - -.if defined(WITH_UNIXODBC) -LIB_DEPENDS+= odbc:${PORTSDIR}/databases/unixODBC -CONFIGURE_ARGS+= --with-unixodbc=${LOCALBASE} -.endif - -.if defined(WITH_IODBC) || defined(WITH_UNIXODBC) -USE_GLIB= yes -PLIST_SUB+= ODBC="" -.else -PLIST_SUB+= ODBC="@comment " -.endif - -post-patch: -.for file in configure include/tds.h.in src/tds/iconv.c - @${PERL} -pi -e 's|<iconv.h>|<giconv.h>|g ; \ - s|-liconv|-lgiconv|g' ${WRKSRC}/${file} -.endfor - @find ${WRKSRC} -name "Makefile.in" | xargs ${PERL} -pi -e \ - 's|/freetds.conf|/freetds.conf.dist|g ; \ - s|glib-config|\$$\(GLIB_CONFIG\)|g ; \ - s|-lglib|`\$$\(GLIB_CONFIG\) --libs glib`|g ; \ - s| common.h||g' - -post-install: -.if !exists(${PREFIX}/etc/freetds.conf) - @${CP} ${PREFIX}/etc/freetds.conf.dist ${PREFIX}/etc/freetds.conf -.endif - @${MKDIR} ${PREFIX}/etc/freetds - ${INSTALL_DATA} ${WRKSRC}/interfaces ${PREFIX}/etc/freetds - -.include <bsd.port.mk> diff --git a/databases/freetds-devel/distinfo b/databases/freetds-devel/distinfo deleted file mode 100644 index 5d01cd729cd3..000000000000 --- a/databases/freetds-devel/distinfo +++ /dev/null @@ -1 +0,0 @@ -MD5 (freetds-0.53.tgz) = 78586f3db87f53a8097d7665a4d8f892 diff --git a/databases/freetds-devel/files/patch-ab b/databases/freetds-devel/files/patch-ab deleted file mode 100644 index bef8119b47e0..000000000000 --- a/databases/freetds-devel/files/patch-ab +++ /dev/null @@ -1,11 +0,0 @@ ---- src/tds/config.c Tue Jun 19 05:22:00 2001 -+++ src/tds/config.c.new Thu Jul 12 09:49:08 2001 -@@ -609,7 +609,7 @@ - char *sybase = getenv("SYBASE"); - if (sybase!=NULL && sybase[0]!='\0') - { -- search_interface_file(sybase, "interfaces", server, ip_addr, ip_port, tds_ver); -+ search_interface_file(sybase, "etc/freetds/interfaces", server, ip_addr, ip_port, tds_ver); - } else { - search_interface_file("/etc/freetds", "interfaces", server, ip_addr, ip_port, tds_ver); - } diff --git a/databases/freetds-devel/files/patch-ltmain.sh b/databases/freetds-devel/files/patch-ltmain.sh deleted file mode 100644 index 682f198bad05..000000000000 --- a/databases/freetds-devel/files/patch-ltmain.sh +++ /dev/null @@ -1,25 +0,0 @@ ---- ltmain.sh.orig Mon Dec 17 00:39:30 2001 -+++ ltmain.sh Sun Dec 23 15:21:53 2001 -@@ -2408,6 +2408,9 @@ - *-*-netbsd*) - # Don't link with libc until the a.out ld.so is fixed. - ;; -+ *-*-freebsd*) -+ # FreeBSD doesn't need this... -+ ;; - *) - # Add libc to deplibs on all other systems if necessary. - if test "$build_libtool_need_lc" = "yes"; then -@@ -4175,10 +4178,12 @@ - fi - - # Install the pseudo-library for information purposes. -+ if /usr/bin/false; then - name=`$echo "X$file" | $Xsed -e 's%^.*/%%'` - instname="$dir/$name"i - $show "$install_prog $instname $destdir/$name" - $run eval "$install_prog $instname $destdir/$name" || exit $? -+ fi - - # Maybe install the static library, too. - test -n "$old_library" && staticlibs="$staticlibs $dir/$old_library" 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 c7edc70e6849..000000000000 --- a/databases/freetds-devel/pkg-descr +++ /dev/null @@ -1,5 +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. - -WWW: http://www.freetds.org/ diff --git a/databases/freetds-devel/pkg-plist b/databases/freetds-devel/pkg-plist deleted file mode 100644 index 15a645c3f03c..000000000000 --- a/databases/freetds-devel/pkg-plist +++ /dev/null @@ -1,37 +0,0 @@ -@unexec if cmp -s %D/etc/freetds.conf.dist %D/etc/freetds.conf; then rm -f %D/etc/freetds.conf; fi -etc/freetds.conf.dist -@exec if [ ! -f %D/etc/freetds.conf ]; then cp %D/etc/%f %D/etc/freetds.conf; fi -etc/freetds/interfaces -include/bkpublic.h -include/cspublic.h -include/cstypes.h -include/ctlib.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/tds_configs.h -include/tdsconvert.h -include/tdsodbc.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.1 -lib/libtds.a -lib/libtds.so -lib/libtds.so.0 -%%ODBC%%lib/libtdsodbc.a -%%ODBC%%lib/libtdsodbc.so -%%ODBC%%lib/libtdsodbc.so.0 -lib/libtdssrv.a -lib/libtdssrv.so -lib/libtdssrv.so.0 -@dirrm etc/freetds diff --git a/databases/gnome-db/Makefile b/databases/gnome-db/Makefile deleted file mode 100644 index 4d094beb9093..000000000000 --- a/databases/gnome-db/Makefile +++ /dev/null @@ -1,39 +0,0 @@ -# New ports collection makefile for: gnomedb -# Date created: 19th June 2001 -# Whom: Ade Lovett <ade@FreeBSD.org> -# -# $FreeBSD$ -# - -PORTNAME= gnomedb -PORTVERSION= 0.2.93 -PORTREVISION= 3 -CATEGORIES= databases gnome -MASTER_SITES= ${MASTER_SITE_GNOME} -MASTER_SITE_SUBDIR= stable/sources/gnome-db -DISTNAME= gnome-db-${PORTVERSION} - -MAINTAINER= gnome@FreeBSD.org - -LIB_DEPENDS= gda-client.0:${PORTSDIR}/databases/libgda - -USE_X_PREFIX= yes -USE_GNOMECTRL= yes -USE_GMAKE= yes -GNU_CONFIGURE= yes -INSTALLS_SHLIB= yes -CONFIGURE_ENV= CPPFLAGS="-I${LOCALBASE}/include" \ - LIBS="-L${LOCALBASE}/lib -lintl" -CONFIGURE_TARGET= --target=${MACHINE_ARCH}-unknown-freebsd${OSREL} -PLIST_SUB= VERSION=${PORTVERSION} - -pre-patch: - @${PERL} -pi -e 's|-lpthread|-pthread|g ; \ - s|DATADIRNAME=lib|DATADIRNAME=share|g' ${WRKSRC}/configure - @find ${WRKSRC} -name "Makefile.in" | xargs ${PERL} -pi -e \ - 's|\$\(datadir\)/gnome/|\$\(datadir\)/|g ; \ - s|\$\(GNOME_datadir\)/gnome/|\$\(datadir\)/|g ; \ - s|\$\(datadir\)/locale|\$\(prefix\)/share/locale|g ; \ - s|\$\(GNOME_datadir\)/locale|\$\(prefix\)/share/locale|g' - -.include <bsd.port.mk> diff --git a/databases/gnome-db/distinfo b/databases/gnome-db/distinfo deleted file mode 100644 index 4e3a6330ec63..000000000000 --- a/databases/gnome-db/distinfo +++ /dev/null @@ -1 +0,0 @@ -MD5 (gnome-db-0.2.93.tar.gz) = c19e062606e6780581fd9309deb91da8 diff --git a/databases/gnome-db/files/patch-configure b/databases/gnome-db/files/patch-configure deleted file mode 100644 index b1db18ac530e..000000000000 --- a/databases/gnome-db/files/patch-configure +++ /dev/null @@ -1,14 +0,0 @@ - -$FreeBSD$ - ---- configure.orig Mon Jan 14 20:31:37 2002 -+++ configure Mon Jan 14 20:51:03 2002 -@@ -8877,7 +8877,7 @@ - PERL_CC=`perl -MConfig -e 'print $Config{cc},"\n";'` - PERL_LD=`perl -MConfig -e 'print $Config{ld},"\n";'` - PERL_CCOPTS=`perl -MExtUtils::Embed -e ccopts` -- PERL_LDOPTS=`perl -MExtUtils::Embed -e ldopts` -+ PERL_LDOPTS=`perl -MExtUtils::Embed -e '$_ = ldopts(1); s/-lc //g; print $_ . "\n"'` - - - diff --git a/databases/gnome-db/files/patch-idl::Makefile.in b/databases/gnome-db/files/patch-idl::Makefile.in deleted file mode 100644 index da60a4cfbf63..000000000000 --- a/databases/gnome-db/files/patch-idl::Makefile.in +++ /dev/null @@ -1,14 +0,0 @@ - -$FreeBSD$ - ---- idl/Makefile.in 2001/07/26 14:06:24 1.1 -+++ idl/Makefile.in 2001/07/26 14:06:37 -@@ -153,7 +153,7 @@ - EXTRA_DIST = $(IDL_FILES) - - --idldir = $(prefix)/share/idl -+idldir = $(prefix)/share/gnome/idl - idl_DATA = $(IDL_FILES) - mkinstalldirs = $(SHELL) $(top_srcdir)/mkinstalldirs - CONFIG_HEADER = ../config.h diff --git a/databases/gnome-db/files/patch-ltmain.sh b/databases/gnome-db/files/patch-ltmain.sh deleted file mode 100644 index 98cb05e4ddb3..000000000000 --- a/databases/gnome-db/files/patch-ltmain.sh +++ /dev/null @@ -1,28 +0,0 @@ - -$FreeBSD$ - ---- ltmain.sh 2001/08/27 09:51:26 1.1 -+++ ltmain.sh 2001/08/27 09:51:42 -@@ -2408,6 +2408,9 @@ - *-*-netbsd*) - # Don't link with libc until the a.out ld.so is fixed. - ;; -+ *-*-freebsd*) -+ # FreeBSD doesn't need this... -+ ;; - *) - # Add libc to deplibs on all other systems if necessary. - if test "$build_libtool_need_lc" = "yes"; then -@@ -4175,10 +4178,12 @@ - fi - - # Install the pseudo-library for information purposes. -+ if /usr/bin/false; then - name=`$echo "X$file" | $Xsed -e 's%^.*/%%'` - instname="$dir/$name"i - $show "$install_prog $instname $destdir/$name" - $run eval "$install_prog $instname $destdir/$name" || exit $? -+ fi - - # Maybe install the static library, too. - test -n "$old_library" && staticlibs="$staticlibs $dir/$old_library" diff --git a/databases/gnome-db/files/patch-po::Makefile.in.in b/databases/gnome-db/files/patch-po::Makefile.in.in deleted file mode 100644 index 490f48af9f3f..000000000000 --- a/databases/gnome-db/files/patch-po::Makefile.in.in +++ /dev/null @@ -1,7 +0,0 @@ ---- po/Makefile.in.in.orig Fri Jun 15 15:38:54 2001 -+++ po/Makefile.in.in Tue Jun 19 02:37:06 2001 -@@ -25,3 +25,3 @@ - datadir = @datadir@ --localedir = $(datadir)/locale -+localedir = $(prefix)/share/locale - gettextsrcdir = $(datadir)/gettext/po diff --git a/databases/gnome-db/pkg-comment b/databases/gnome-db/pkg-comment deleted file mode 100644 index ce1aae1e6b38..000000000000 --- a/databases/gnome-db/pkg-comment +++ /dev/null @@ -1 +0,0 @@ -Provide uniform access to data sources for the GNOME environment diff --git a/databases/gnome-db/pkg-descr b/databases/gnome-db/pkg-descr deleted file mode 100644 index ff86e957f3de..000000000000 --- a/databases/gnome-db/pkg-descr +++ /dev/null @@ -1,8 +0,0 @@ -gnome-db can be considered as an extension of the libgda project. - -Its aims are the same: to provide universal data source access for -client applications, as well as development tools and libraries -for doing so. gnome-db; is an extension to libgda; because it adds -support to the architecture for the GNOME project. - -WWW: http://www.gnome-db.org/ diff --git a/databases/gnome-db/pkg-plist b/databases/gnome-db/pkg-plist deleted file mode 100644 index 15c223033aed..000000000000 --- a/databases/gnome-db/pkg-plist +++ /dev/null @@ -1,116 +0,0 @@ -bin/gnomedb-builder -bin/gnomedb-components -bin/gnomedb-config -bin/gnomedb-fe -bin/gnomedb-mgr -include/libgnomedb-%%VERSION%%/gnome-db/GNOME_Database_UI.h -include/libgnomedb-%%VERSION%%/gnome-db/gnome-db-browser.h -include/libgnomedb-%%VERSION%%/gnome-db/gnome-db-combo.h -include/libgnomedb-%%VERSION%%/gnome-db/gnome-db-component.h -include/libgnomedb-%%VERSION%%/gnome-db/gnome-db-config.h -include/libgnomedb-%%VERSION%%/gnome-db/gnome-db-control-defprops.h -include/libgnomedb-%%VERSION%%/gnome-db/gnome-db-control-widget.h -include/libgnomedb-%%VERSION%%/gnome-db/gnome-db-control.h -include/libgnomedb-%%VERSION%%/gnome-db/gnome-db-dataset.h -include/libgnomedb-%%VERSION%%/gnome-db/gnome-db-designer.h -include/libgnomedb-%%VERSION%%/gnome-db/gnome-db-dsn-config-druid.h -include/libgnomedb-%%VERSION%%/gnome-db/gnome-db-dsn-config.h -include/libgnomedb-%%VERSION%%/gnome-db/gnome-db-embeddable.h -include/libgnomedb-%%VERSION%%/gnome-db/gnome-db-entry.h -include/libgnomedb-%%VERSION%%/gnome-db/gnome-db-error-dlg.h -include/libgnomedb-%%VERSION%%/gnome-db/gnome-db-error.h -include/libgnomedb-%%VERSION%%/gnome-db/gnome-db-export.h -include/libgnomedb-%%VERSION%%/gnome-db/gnome-db-grid.h -include/libgnomedb-%%VERSION%%/gnome-db/gnome-db-icon-list.h -include/libgnomedb-%%VERSION%%/gnome-db/gnome-db-label.h -include/libgnomedb-%%VERSION%%/gnome-db/gnome-db-list.h -include/libgnomedb-%%VERSION%%/gnome-db/gnome-db-log-viewer.h -include/libgnomedb-%%VERSION%%/gnome-db/gnome-db-login-dlg.h -include/libgnomedb-%%VERSION%%/gnome-db/gnome-db-login.h -include/libgnomedb-%%VERSION%%/gnome-db/gnome-db-moniker.h -include/libgnomedb-%%VERSION%%/gnome-db/gnome-db-report.h -include/libgnomedb-%%VERSION%%/gnome-db/gnome-db-shortcut.h -include/libgnomedb-%%VERSION%%/gnome-db/gnome-db-table-editor.h -include/libgnomedb-%%VERSION%%/gnome-db/gnome-db-util.h -include/libgnomedb-%%VERSION%%/gnome-db/gnome-db-window.h -include/libgnomedb-%%VERSION%%/gnome-db/gnome-db.h -lib/bonobo/monikers/libdatabase_moniker.a -lib/bonobo/monikers/libdatabase_moniker.so -lib/bonobo/monikers/libdatabase_moniker.so.0 -lib/libgnomedb.a -lib/libgnomedb.so -lib/libgnomedb.so.0 -share/gnome/apps/Applications/gnomedb-fe.desktop -share/gnome/help/gnome-db/C/fdl-appendix.sgml -share/gnome/help/gnome-db/C/gnome-db.sgml -share/gnome/help/gnome-db/C/topic.dat -share/gnome/help/gnome-db/es/gnome-db.sgml -share/gnome/help/gnome-db/es/topic.dat -share/gnome/help/gnome-db/it/fdl-appendix.sgml -share/gnome/help/gnome-db/it/gnome-db.sgml -share/gnome/help/gnome-db/it/topic.dat -share/gnome/help/gnome-db/pt_BR/gnome-db.sgml -share/gnome/help/gnome-db/pt_BR/topic.dat -share/gnome/html/libgnomedb-decl.txt -share/gnome/html/libgnomedb-sections.txt -share/gnome/html/libgnomedb.args -share/gnome/html/libgnomedb.hierarchy -share/gnome/html/libgnomedb.types -share/gnome/idl/GNOME_Database_UI.idl -share/gnome/oaf/GNOME_DB_Builder.oaf -share/gnome/oaf/GNOME_DB_ComponentFactory.oaf -share/gnome/oaf/GNOME_DB_Connection.oaf -share/gnome/oaf/GNOME_DB_Designer.oaf -share/gnome/oaf/GNOME_DB_Export.oaf -share/gnome/oaf/GNOME_DB_Log.oaf -share/gnome/oaf/GNOME_DB_Manager.oaf -share/gnome/oaf/GNOME_DB_Monikers.oaf -share/gnome/omf/gnome-db/gnome-db-C.omf -share/gnome/omf/gnome-db/gnome-db-es.omf -share/gnome/omf/gnome-db/gnome-db-it.omf -share/gnome/omf/gnome-db/gnome-db-pt_BR.omf -share/gnome/pixmaps/gnome-db.png -share/gnome/ui/gnomedb-com-connection.xml -share/gnome/ui/gnomedb-com-designer.xml -share/gnome/ui/gnomedb-com-log.xml -share/gnome/ui/gnomedb-fe.xml -share/gnome/ui/gnomedb-manager.xml -share/locale/ca/LC_MESSAGES/gnome-db.mo -share/locale/da/LC_MESSAGES/gnome-db.mo -share/locale/de/LC_MESSAGES/gnome-db.mo -share/locale/el/LC_MESSAGES/gnome-db.mo -share/locale/es/LC_MESSAGES/gnome-db.mo -share/locale/fi/LC_MESSAGES/gnome-db.mo -share/locale/fr/LC_MESSAGES/gnome-db.mo -share/locale/ga/LC_MESSAGES/gnome-db.mo -share/locale/gl/LC_MESSAGES/gnome-db.mo -share/locale/hu/LC_MESSAGES/gnome-db.mo -share/locale/it/LC_MESSAGES/gnome-db.mo -share/locale/ja/LC_MESSAGES/gnome-db.mo -share/locale/ko/LC_MESSAGES/gnome-db.mo -share/locale/nl/LC_MESSAGES/gnome-db.mo -share/locale/nn/LC_MESSAGES/gnome-db.mo -share/locale/no/LC_MESSAGES/gnome-db.mo -share/locale/pl/LC_MESSAGES/gnome-db.mo -share/locale/pt/LC_MESSAGES/gnome-db.mo -share/locale/pt_BR/LC_MESSAGES/gnome-db.mo -share/locale/ru/LC_MESSAGES/gnome-db.mo -share/locale/sk/LC_MESSAGES/gnome-db.mo -share/locale/sl/LC_MESSAGES/gnome-db.mo -share/locale/sv/LC_MESSAGES/gnome-db.mo -share/locale/tr/LC_MESSAGES/gnome-db.mo -share/locale/uk/LC_MESSAGES/gnome-db.mo -share/locale/zh_TW/LC_MESSAGES/gnome-db.mo -@dirrm share/gnome/omf/gnome-db -@dirrm share/gnome/help/gnome-db/pt_BR/images -@dirrm share/gnome/help/gnome-db/pt_BR -@dirrm share/gnome/help/gnome-db/it/images -@dirrm share/gnome/help/gnome-db/it -@dirrm share/gnome/help/gnome-db/es/images -@dirrm share/gnome/help/gnome-db/es -@dirrm share/gnome/help/gnome-db/C/images -@dirrm share/gnome/help/gnome-db/C -@dirrm share/gnome/help/gnome-db -@dirrm share/gnome/apps/Applications -@dirrm include/libgnomedb-%%VERSION%%/gnome-db -@dirrm include/libgnomedb-%%VERSION%% diff --git a/databases/gnomedb2/Makefile b/databases/gnomedb2/Makefile deleted file mode 100644 index 4d094beb9093..000000000000 --- a/databases/gnomedb2/Makefile +++ /dev/null @@ -1,39 +0,0 @@ -# New ports collection makefile for: gnomedb -# Date created: 19th June 2001 -# Whom: Ade Lovett <ade@FreeBSD.org> -# -# $FreeBSD$ -# - -PORTNAME= gnomedb -PORTVERSION= 0.2.93 -PORTREVISION= 3 -CATEGORIES= databases gnome -MASTER_SITES= ${MASTER_SITE_GNOME} -MASTER_SITE_SUBDIR= stable/sources/gnome-db -DISTNAME= gnome-db-${PORTVERSION} - -MAINTAINER= gnome@FreeBSD.org - -LIB_DEPENDS= gda-client.0:${PORTSDIR}/databases/libgda - -USE_X_PREFIX= yes -USE_GNOMECTRL= yes -USE_GMAKE= yes -GNU_CONFIGURE= yes -INSTALLS_SHLIB= yes -CONFIGURE_ENV= CPPFLAGS="-I${LOCALBASE}/include" \ - LIBS="-L${LOCALBASE}/lib -lintl" -CONFIGURE_TARGET= --target=${MACHINE_ARCH}-unknown-freebsd${OSREL} -PLIST_SUB= VERSION=${PORTVERSION} - -pre-patch: - @${PERL} -pi -e 's|-lpthread|-pthread|g ; \ - s|DATADIRNAME=lib|DATADIRNAME=share|g' ${WRKSRC}/configure - @find ${WRKSRC} -name "Makefile.in" | xargs ${PERL} -pi -e \ - 's|\$\(datadir\)/gnome/|\$\(datadir\)/|g ; \ - s|\$\(GNOME_datadir\)/gnome/|\$\(datadir\)/|g ; \ - s|\$\(datadir\)/locale|\$\(prefix\)/share/locale|g ; \ - s|\$\(GNOME_datadir\)/locale|\$\(prefix\)/share/locale|g' - -.include <bsd.port.mk> diff --git a/databases/gnomedb2/distinfo b/databases/gnomedb2/distinfo deleted file mode 100644 index 4e3a6330ec63..000000000000 --- a/databases/gnomedb2/distinfo +++ /dev/null @@ -1 +0,0 @@ -MD5 (gnome-db-0.2.93.tar.gz) = c19e062606e6780581fd9309deb91da8 diff --git a/databases/gnomedb2/files/patch-configure b/databases/gnomedb2/files/patch-configure deleted file mode 100644 index b1db18ac530e..000000000000 --- a/databases/gnomedb2/files/patch-configure +++ /dev/null @@ -1,14 +0,0 @@ - -$FreeBSD$ - ---- configure.orig Mon Jan 14 20:31:37 2002 -+++ configure Mon Jan 14 20:51:03 2002 -@@ -8877,7 +8877,7 @@ - PERL_CC=`perl -MConfig -e 'print $Config{cc},"\n";'` - PERL_LD=`perl -MConfig -e 'print $Config{ld},"\n";'` - PERL_CCOPTS=`perl -MExtUtils::Embed -e ccopts` -- PERL_LDOPTS=`perl -MExtUtils::Embed -e ldopts` -+ PERL_LDOPTS=`perl -MExtUtils::Embed -e '$_ = ldopts(1); s/-lc //g; print $_ . "\n"'` - - - diff --git a/databases/gnomedb2/files/patch-idl::Makefile.in b/databases/gnomedb2/files/patch-idl::Makefile.in deleted file mode 100644 index da60a4cfbf63..000000000000 --- a/databases/gnomedb2/files/patch-idl::Makefile.in +++ /dev/null @@ -1,14 +0,0 @@ - -$FreeBSD$ - ---- idl/Makefile.in 2001/07/26 14:06:24 1.1 -+++ idl/Makefile.in 2001/07/26 14:06:37 -@@ -153,7 +153,7 @@ - EXTRA_DIST = $(IDL_FILES) - - --idldir = $(prefix)/share/idl -+idldir = $(prefix)/share/gnome/idl - idl_DATA = $(IDL_FILES) - mkinstalldirs = $(SHELL) $(top_srcdir)/mkinstalldirs - CONFIG_HEADER = ../config.h diff --git a/databases/gnomedb2/files/patch-ltmain.sh b/databases/gnomedb2/files/patch-ltmain.sh deleted file mode 100644 index 98cb05e4ddb3..000000000000 --- a/databases/gnomedb2/files/patch-ltmain.sh +++ /dev/null @@ -1,28 +0,0 @@ - -$FreeBSD$ - ---- ltmain.sh 2001/08/27 09:51:26 1.1 -+++ ltmain.sh 2001/08/27 09:51:42 -@@ -2408,6 +2408,9 @@ - *-*-netbsd*) - # Don't link with libc until the a.out ld.so is fixed. - ;; -+ *-*-freebsd*) -+ # FreeBSD doesn't need this... -+ ;; - *) - # Add libc to deplibs on all other systems if necessary. - if test "$build_libtool_need_lc" = "yes"; then -@@ -4175,10 +4178,12 @@ - fi - - # Install the pseudo-library for information purposes. -+ if /usr/bin/false; then - name=`$echo "X$file" | $Xsed -e 's%^.*/%%'` - instname="$dir/$name"i - $show "$install_prog $instname $destdir/$name" - $run eval "$install_prog $instname $destdir/$name" || exit $? -+ fi - - # Maybe install the static library, too. - test -n "$old_library" && staticlibs="$staticlibs $dir/$old_library" diff --git a/databases/gnomedb2/files/patch-po::Makefile.in.in b/databases/gnomedb2/files/patch-po::Makefile.in.in deleted file mode 100644 index 490f48af9f3f..000000000000 --- a/databases/gnomedb2/files/patch-po::Makefile.in.in +++ /dev/null @@ -1,7 +0,0 @@ ---- po/Makefile.in.in.orig Fri Jun 15 15:38:54 2001 -+++ po/Makefile.in.in Tue Jun 19 02:37:06 2001 -@@ -25,3 +25,3 @@ - datadir = @datadir@ --localedir = $(datadir)/locale -+localedir = $(prefix)/share/locale - gettextsrcdir = $(datadir)/gettext/po diff --git a/databases/gnomedb2/pkg-comment b/databases/gnomedb2/pkg-comment deleted file mode 100644 index ce1aae1e6b38..000000000000 --- a/databases/gnomedb2/pkg-comment +++ /dev/null @@ -1 +0,0 @@ -Provide uniform access to data sources for the GNOME environment diff --git a/databases/gnomedb2/pkg-descr b/databases/gnomedb2/pkg-descr deleted file mode 100644 index ff86e957f3de..000000000000 --- a/databases/gnomedb2/pkg-descr +++ /dev/null @@ -1,8 +0,0 @@ -gnome-db can be considered as an extension of the libgda project. - -Its aims are the same: to provide universal data source access for -client applications, as well as development tools and libraries -for doing so. gnome-db; is an extension to libgda; because it adds -support to the architecture for the GNOME project. - -WWW: http://www.gnome-db.org/ diff --git a/databases/gnomedb2/pkg-plist b/databases/gnomedb2/pkg-plist deleted file mode 100644 index 15c223033aed..000000000000 --- a/databases/gnomedb2/pkg-plist +++ /dev/null @@ -1,116 +0,0 @@ -bin/gnomedb-builder -bin/gnomedb-components -bin/gnomedb-config -bin/gnomedb-fe -bin/gnomedb-mgr -include/libgnomedb-%%VERSION%%/gnome-db/GNOME_Database_UI.h -include/libgnomedb-%%VERSION%%/gnome-db/gnome-db-browser.h -include/libgnomedb-%%VERSION%%/gnome-db/gnome-db-combo.h -include/libgnomedb-%%VERSION%%/gnome-db/gnome-db-component.h -include/libgnomedb-%%VERSION%%/gnome-db/gnome-db-config.h -include/libgnomedb-%%VERSION%%/gnome-db/gnome-db-control-defprops.h -include/libgnomedb-%%VERSION%%/gnome-db/gnome-db-control-widget.h -include/libgnomedb-%%VERSION%%/gnome-db/gnome-db-control.h -include/libgnomedb-%%VERSION%%/gnome-db/gnome-db-dataset.h -include/libgnomedb-%%VERSION%%/gnome-db/gnome-db-designer.h -include/libgnomedb-%%VERSION%%/gnome-db/gnome-db-dsn-config-druid.h -include/libgnomedb-%%VERSION%%/gnome-db/gnome-db-dsn-config.h -include/libgnomedb-%%VERSION%%/gnome-db/gnome-db-embeddable.h -include/libgnomedb-%%VERSION%%/gnome-db/gnome-db-entry.h -include/libgnomedb-%%VERSION%%/gnome-db/gnome-db-error-dlg.h -include/libgnomedb-%%VERSION%%/gnome-db/gnome-db-error.h -include/libgnomedb-%%VERSION%%/gnome-db/gnome-db-export.h -include/libgnomedb-%%VERSION%%/gnome-db/gnome-db-grid.h -include/libgnomedb-%%VERSION%%/gnome-db/gnome-db-icon-list.h -include/libgnomedb-%%VERSION%%/gnome-db/gnome-db-label.h -include/libgnomedb-%%VERSION%%/gnome-db/gnome-db-list.h -include/libgnomedb-%%VERSION%%/gnome-db/gnome-db-log-viewer.h -include/libgnomedb-%%VERSION%%/gnome-db/gnome-db-login-dlg.h -include/libgnomedb-%%VERSION%%/gnome-db/gnome-db-login.h -include/libgnomedb-%%VERSION%%/gnome-db/gnome-db-moniker.h -include/libgnomedb-%%VERSION%%/gnome-db/gnome-db-report.h -include/libgnomedb-%%VERSION%%/gnome-db/gnome-db-shortcut.h -include/libgnomedb-%%VERSION%%/gnome-db/gnome-db-table-editor.h -include/libgnomedb-%%VERSION%%/gnome-db/gnome-db-util.h -include/libgnomedb-%%VERSION%%/gnome-db/gnome-db-window.h -include/libgnomedb-%%VERSION%%/gnome-db/gnome-db.h -lib/bonobo/monikers/libdatabase_moniker.a -lib/bonobo/monikers/libdatabase_moniker.so -lib/bonobo/monikers/libdatabase_moniker.so.0 -lib/libgnomedb.a -lib/libgnomedb.so -lib/libgnomedb.so.0 -share/gnome/apps/Applications/gnomedb-fe.desktop -share/gnome/help/gnome-db/C/fdl-appendix.sgml -share/gnome/help/gnome-db/C/gnome-db.sgml -share/gnome/help/gnome-db/C/topic.dat -share/gnome/help/gnome-db/es/gnome-db.sgml -share/gnome/help/gnome-db/es/topic.dat -share/gnome/help/gnome-db/it/fdl-appendix.sgml -share/gnome/help/gnome-db/it/gnome-db.sgml -share/gnome/help/gnome-db/it/topic.dat -share/gnome/help/gnome-db/pt_BR/gnome-db.sgml -share/gnome/help/gnome-db/pt_BR/topic.dat -share/gnome/html/libgnomedb-decl.txt -share/gnome/html/libgnomedb-sections.txt -share/gnome/html/libgnomedb.args -share/gnome/html/libgnomedb.hierarchy -share/gnome/html/libgnomedb.types -share/gnome/idl/GNOME_Database_UI.idl -share/gnome/oaf/GNOME_DB_Builder.oaf -share/gnome/oaf/GNOME_DB_ComponentFactory.oaf -share/gnome/oaf/GNOME_DB_Connection.oaf -share/gnome/oaf/GNOME_DB_Designer.oaf -share/gnome/oaf/GNOME_DB_Export.oaf -share/gnome/oaf/GNOME_DB_Log.oaf -share/gnome/oaf/GNOME_DB_Manager.oaf -share/gnome/oaf/GNOME_DB_Monikers.oaf -share/gnome/omf/gnome-db/gnome-db-C.omf -share/gnome/omf/gnome-db/gnome-db-es.omf -share/gnome/omf/gnome-db/gnome-db-it.omf -share/gnome/omf/gnome-db/gnome-db-pt_BR.omf -share/gnome/pixmaps/gnome-db.png -share/gnome/ui/gnomedb-com-connection.xml -share/gnome/ui/gnomedb-com-designer.xml -share/gnome/ui/gnomedb-com-log.xml -share/gnome/ui/gnomedb-fe.xml -share/gnome/ui/gnomedb-manager.xml -share/locale/ca/LC_MESSAGES/gnome-db.mo -share/locale/da/LC_MESSAGES/gnome-db.mo -share/locale/de/LC_MESSAGES/gnome-db.mo -share/locale/el/LC_MESSAGES/gnome-db.mo -share/locale/es/LC_MESSAGES/gnome-db.mo -share/locale/fi/LC_MESSAGES/gnome-db.mo -share/locale/fr/LC_MESSAGES/gnome-db.mo -share/locale/ga/LC_MESSAGES/gnome-db.mo -share/locale/gl/LC_MESSAGES/gnome-db.mo -share/locale/hu/LC_MESSAGES/gnome-db.mo -share/locale/it/LC_MESSAGES/gnome-db.mo -share/locale/ja/LC_MESSAGES/gnome-db.mo -share/locale/ko/LC_MESSAGES/gnome-db.mo -share/locale/nl/LC_MESSAGES/gnome-db.mo -share/locale/nn/LC_MESSAGES/gnome-db.mo -share/locale/no/LC_MESSAGES/gnome-db.mo -share/locale/pl/LC_MESSAGES/gnome-db.mo -share/locale/pt/LC_MESSAGES/gnome-db.mo -share/locale/pt_BR/LC_MESSAGES/gnome-db.mo -share/locale/ru/LC_MESSAGES/gnome-db.mo -share/locale/sk/LC_MESSAGES/gnome-db.mo -share/locale/sl/LC_MESSAGES/gnome-db.mo -share/locale/sv/LC_MESSAGES/gnome-db.mo -share/locale/tr/LC_MESSAGES/gnome-db.mo -share/locale/uk/LC_MESSAGES/gnome-db.mo -share/locale/zh_TW/LC_MESSAGES/gnome-db.mo -@dirrm share/gnome/omf/gnome-db -@dirrm share/gnome/help/gnome-db/pt_BR/images -@dirrm share/gnome/help/gnome-db/pt_BR -@dirrm share/gnome/help/gnome-db/it/images -@dirrm share/gnome/help/gnome-db/it -@dirrm share/gnome/help/gnome-db/es/images -@dirrm share/gnome/help/gnome-db/es -@dirrm share/gnome/help/gnome-db/C/images -@dirrm share/gnome/help/gnome-db/C -@dirrm share/gnome/help/gnome-db -@dirrm share/gnome/apps/Applications -@dirrm include/libgnomedb-%%VERSION%%/gnome-db -@dirrm include/libgnomedb-%%VERSION%% diff --git a/databases/grass-i18n/Makefile b/databases/grass-i18n/Makefile deleted file mode 100644 index a3f3963ea0c8..000000000000 --- a/databases/grass-i18n/Makefile +++ /dev/null @@ -1,55 +0,0 @@ -# New ports collection makefile for: grass -# Date created: 15 January 2000 -# Whom: reg -# -# $FreeBSD$ -# - -PORTNAME= grass -PORTVERSION= 5.0b8 -CATEGORIES= databases -MASTER_SITES= ftp://grass.baylor.edu/pub/grass/grass5.0beta/source/ \ - http://www.geog.uni-hannover.de/grass/grass5/source/ -DISTNAME= grass5.0beta8_src - -MAINTAINER= reg@FreeBSD.org - -LIB_DEPENDS= tiff.4:${PORTSDIR}/graphics/tiff \ - png.5:${PORTSDIR}/graphics/png \ - jpeg.9:${PORTSDIR}/graphics/jpeg -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} - -ALL_TARGET= install - -SED_FILES= \ - bin/gmake5 \ - bin/gmakelinks5 \ - bin/grass5 \ - 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 0fae032897f0..000000000000 --- a/databases/grass-i18n/distinfo +++ /dev/null @@ -1 +0,0 @@ -MD5 (grass5.0beta8_src.tar.gz) = 24dcef1888ef824a52cd9040b6162c36 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 a9cf9359234f..000000000000 --- a/databases/grass-i18n/pkg-plist +++ /dev/null @@ -1,3251 +0,0 @@ -grass5/bin/Mlulc.USGS -grass5/bin/Mlulc.read -grass5/bin/agnps_input_1 -grass5/bin/agnps_input_2a -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.db -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.param.scale -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.sites -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.db -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/db.columns -grass5/bin/db.connect -grass5/bin/db.createdb -grass5/bin/db.databases -grass5/bin/db.describe -grass5/bin/db.drivers -grass5/bin/db.dropdb -grass5/bin/db.droptable -grass5/bin/db.execute -grass5/bin/db.select -grass5/bin/db.tables -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 -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.out.erdas -grass5/bin/i.pca -grass5/bin/i.points -grass5/bin/i.points3 -grass5/bin/i.quantize -grass5/bin/i.rectify -grass5/bin/i.rectify2 -grass5/bin/i.rgb.his -grass5/bin/i.rvi.prediction -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.datum.shift -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.ipf -grass5/bin/m.kappa -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.sdts.read -grass5/bin/m.strip99s -grass5/bin/m.svfit -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.agnps50.run -grass5/bin/r.agnps50.view -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.cn2 -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.direct -grass5/bin/r.distance -grass5/bin/r.drain -grass5/bin/r.fill.dir -grass5/bin/r.flow -grass5/bin/r.flowmd -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.dem -grass5/bin/r.in.doq -grass5/bin/r.in.dted -grass5/bin/r.in.elas -grass5/bin/r.in.ll -grass5/bin/r.in.miads -grass5/bin/r.in.png -grass5/bin/r.in.poly -grass5/bin/r.in.ppm -grass5/bin/r.in.shape -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.kappa -grass5/bin/r.line -grass5/bin/r.linear.regression -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.png -grass5/bin/r.out.pov -grass5/bin/r.out.ppm -grass5/bin/r.out.tga -grass5/bin/r.out.tiff -grass5/bin/r.out.xyz -grass5/bin/r.param.scale -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.random.cells -grass5/bin/r.random.surface -grass5/bin/r.rational.regression -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.ros -grass5/bin/r.rvi.prediction -grass5/bin/r.slope.aspect -grass5/bin/r.spread -grass5/bin/r.spreadpath -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.water.outlet -grass5/bin/r.watershed -grass5/bin/r.weight -grass5/bin/r.weight.new -grass5/bin/r.weighted.cn -grass5/bin/r.what -grass5/bin/s.delaunay -grass5/bin/s.gdbase -grass5/bin/s.in.ascii -grass5/bin/s.in.shape -grass5/bin/s.info -grass5/bin/s.kcv -grass5/bin/s.medp -grass5/bin/s.normal -grass5/bin/s.out.ascii -grass5/bin/s.out.e00 -grass5/bin/s.perturb -grass5/bin/s.probplt -grass5/bin/s.proj -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.rst -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.bubble -grass5/bin/v.build.polylines -grass5/bin/v.cadlabel -grass5/bin/v.circle -grass5/bin/v.clean -grass5/bin/v.cutter -grass5/bin/v.db.reclass -grass5/bin/v.digit -grass5/bin/v.distance -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.atlas -grass5/bin/v.in.dlg -grass5/bin/v.in.dlg.scs -grass5/bin/v.in.dlg2 -grass5/bin/v.in.dxf -grass5/bin/v.in.dxf2 -grass5/bin/v.in.dxf3d -grass5/bin/v.in.poly -grass5/bin/v.in.sdts -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.llabel -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.atlas -grass5/bin/v.out.dlg -grass5/bin/v.out.dxf -grass5/bin/v.out.e00 -grass5/bin/v.out.idrisi -grass5/bin/v.out.mapinfo -grass5/bin/v.out.mif -grass5/bin/v.out.moss -grass5/bin/v.out.sdts -grass5/bin/v.out.shape -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.rm.dangles -grass5/bin/v.rmedge -grass5/bin/v.scale.random -grass5/bin/v.sdts.dq.cp -grass5/bin/v.sdts.meta -grass5/bin/v.sdts.meta.cp -grass5/bin/v.spag -grass5/bin/v.stats -grass5/bin/v.support -grass5/bin/v.surf.rst -grass5/bin/v.timestamp -grass5/bin/v.to.db -grass5/bin/v.to.rast -grass5/bin/v.to.sites -grass5/bin/v.transform -grass5/bin/v.trim -grass5/bin/v.what -grass5/bwidget/BWman/ArrowButton.html -grass5/bwidget/BWman/BWidget.html -grass5/bwidget/BWman/Button.html -grass5/bwidget/BWman/ButtonBox.html -grass5/bwidget/BWman/ComboBox.html -grass5/bwidget/BWman/Dialog.html -grass5/bwidget/BWman/DragSite.html -grass5/bwidget/BWman/DropSite.html -grass5/bwidget/BWman/DynamicHelp.html -grass5/bwidget/BWman/Entry.html -grass5/bwidget/BWman/Label.html -grass5/bwidget/BWman/LabelEntry.html -grass5/bwidget/BWman/LabelFrame.html -grass5/bwidget/BWman/ListBox.html -grass5/bwidget/BWman/MainFrame.html -grass5/bwidget/BWman/MessageDlg.html -grass5/bwidget/BWman/NoteBook.html -grass5/bwidget/BWman/PagesManager.html -grass5/bwidget/BWman/PanedWindow.html -grass5/bwidget/BWman/PasswdDlg.html -grass5/bwidget/BWman/ProgressBar.html -grass5/bwidget/BWman/ProgressDlg.html -grass5/bwidget/BWman/ScrollView.html -grass5/bwidget/BWman/ScrollableFrame.html -grass5/bwidget/BWman/ScrolledWindow.html -grass5/bwidget/BWman/SelectColor.html -grass5/bwidget/BWman/SelectFont.html -grass5/bwidget/BWman/Separator.html -grass5/bwidget/BWman/SpinBox.html -grass5/bwidget/BWman/TitleFrame.html -grass5/bwidget/BWman/Tree.html -grass5/bwidget/BWman/Widget.html -grass5/bwidget/BWman/contents.html -grass5/bwidget/BWman/index.html -grass5/bwidget/BWman/navtree.html -grass5/bwidget/BWman/options.htm -grass5/bwidget/CHANGES.txt -grass5/bwidget/LGPL.txt -grass5/bwidget/LICENSE.txt -grass5/bwidget/README.grass -grass5/bwidget/README.txt -grass5/bwidget/arrow.tcl -grass5/bwidget/bitmap.tcl -grass5/bwidget/button.tcl -grass5/bwidget/buttonbox.tcl -grass5/bwidget/color.tcl -grass5/bwidget/combobox.tcl -grass5/bwidget/demo/basic.tcl -grass5/bwidget/demo/bwidget.xbm -grass5/bwidget/demo/demo.tcl -grass5/bwidget/demo/dnd.tcl -grass5/bwidget/demo/manager.tcl -grass5/bwidget/demo/select.tcl -grass5/bwidget/demo/tmpldlg.tcl -grass5/bwidget/demo/tree.tcl -grass5/bwidget/demo/x1.xbm -grass5/bwidget/dialog.tcl -grass5/bwidget/dragsite.tcl -grass5/bwidget/dropsite.tcl -grass5/bwidget/dynhelp.tcl -grass5/bwidget/entry.tcl -grass5/bwidget/font.tcl -grass5/bwidget/images/bold.gif -grass5/bwidget/images/copy.gif -grass5/bwidget/images/cut.gif -grass5/bwidget/images/dragfile.gif -grass5/bwidget/images/dragicon.gif -grass5/bwidget/images/error.gif -grass5/bwidget/images/file.gif -grass5/bwidget/images/folder.gif -grass5/bwidget/images/hourglass.gif -grass5/bwidget/images/info.gif -grass5/bwidget/images/italic.gif -grass5/bwidget/images/minus.xbm -grass5/bwidget/images/new.gif -grass5/bwidget/images/opcopy.xbm -grass5/bwidget/images/open.gif -grass5/bwidget/images/openfold.gif -grass5/bwidget/images/oplink.xbm -grass5/bwidget/images/opmove.xbm -grass5/bwidget/images/overstrike.gif -grass5/bwidget/images/palette.gif -grass5/bwidget/images/passwd.gif -grass5/bwidget/images/paste.gif -grass5/bwidget/images/plus.xbm -grass5/bwidget/images/print.gif -grass5/bwidget/images/question.gif -grass5/bwidget/images/save.gif -grass5/bwidget/images/underline.gif -grass5/bwidget/images/undo.gif -grass5/bwidget/images/warning.gif -grass5/bwidget/init.tcl -grass5/bwidget/label.tcl -grass5/bwidget/labelentry.tcl -grass5/bwidget/labelframe.tcl -grass5/bwidget/lang/de.rc -grass5/bwidget/lang/en.rc -grass5/bwidget/lang/es.rc -grass5/bwidget/lang/fr.rc -grass5/bwidget/listbox.tcl -grass5/bwidget/mainframe.tcl -grass5/bwidget/messagedlg.tcl -grass5/bwidget/notebook.tcl -grass5/bwidget/pagesmgr.tcl -grass5/bwidget/panedw.tcl -grass5/bwidget/passwddlg.tcl -grass5/bwidget/pkgIndex.tcl -grass5/bwidget/progressbar.tcl -grass5/bwidget/progressdlg.tcl -grass5/bwidget/scrollframe.tcl -grass5/bwidget/scrollview.tcl -grass5/bwidget/scrollw.tcl -grass5/bwidget/separator.tcl -grass5/bwidget/spinbox.tcl -grass5/bwidget/titleframe.tcl -grass5/bwidget/tree.tcl -grass5/bwidget/utils.tcl -grass5/bwidget/widget.tcl -grass5/bwidget/xpm2image.tcl -grass5/dev/create_fifos.sh -grass5/driver/CELL -grass5/driver/HTMLMAP -grass5/driver/XDRIVER -grass5/etc/FIPS.code -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/Init.sh -grass5/etc/agnps50/Gmakefile -grass5/etc/agnps50/copy_cell_num.sh -grass5/etc/agnps50/create_asp_map -grass5/etc/agnps50/display_cell_map.sh -grass5/etc/agnps50/display_map.sh -grass5/etc/agnps50/get_cell_id.sh -grass5/etc/agnps50/make_display_rules.pl -grass5/etc/agnps50/psu_agnps_max_cat.sh -grass5/etc/agnps50/r.agnps50.input -grass5/etc/agnps50/remove_old_tmp_files.sh -grass5/etc/agnps50/remove_tmp_file.sh -grass5/etc/agnps50/show_COD.csh -grass5/etc/agnps50/show_N.csh -grass5/etc/agnps50/show_P.csh -grass5/etc/agnps50/show_PPERC.csh -grass5/etc/agnps50/show_PRUNOFF.csh -grass5/etc/agnps50/show_PSED.csh -grass5/etc/agnps50/show_S.csh -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.db -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.param.scale -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.db -grass5/etc/bin/contrib/cmd/d.what.sites -grass5/etc/bin/contrib/cmd/i.rvi.prediction -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.ipf -grass5/etc/bin/contrib/cmd/m.qcalc -grass5/etc/bin/contrib/cmd/m.sdts.read -grass5/etc/bin/contrib/cmd/m.strip99s -grass5/etc/bin/contrib/cmd/m.svfit -grass5/etc/bin/contrib/cmd/r.bilinear -grass5/etc/bin/contrib/cmd/r.circle -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.dem -grass5/etc/bin/contrib/cmd/r.in.doq -grass5/etc/bin/contrib/cmd/r.in.dted -grass5/etc/bin/contrib/cmd/r.in.miads -grass5/etc/bin/contrib/cmd/r.in.png -grass5/etc/bin/contrib/cmd/r.in.ppm -grass5/etc/bin/contrib/cmd/r.in.shape -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.linear.regression -grass5/etc/bin/contrib/cmd/r.out.mpeg -grass5/etc/bin/contrib/cmd/r.out.png -grass5/etc/bin/contrib/cmd/r.out.pov -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.param.scale -grass5/etc/bin/contrib/cmd/r.proj -grass5/etc/bin/contrib/cmd/r.rational.regression -grass5/etc/bin/contrib/cmd/r.resamp.rst -grass5/etc/bin/contrib/cmd/r.rvi.prediction -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.in.shape -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.out.e00 -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.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.build.polylines -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.atlas -grass5/etc/bin/contrib/cmd/v.in.dlg.scs -grass5/etc/bin/contrib/cmd/v.in.dxf3d -grass5/etc/bin/contrib/cmd/v.in.poly -grass5/etc/bin/contrib/cmd/v.in.sdts -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.out.atlas -grass5/etc/bin/contrib/cmd/v.out.e00 -grass5/etc/bin/contrib/cmd/v.out.mif -grass5/etc/bin/contrib/cmd/v.out.sdts -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.sdts.dq.cp -grass5/etc/bin/contrib/cmd/v.sdts.meta.cp -grass5/etc/bin/contrib/cmd/v.surf.rst -grass5/etc/bin/contrib/cmd/v.to.db -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.out.mapinfo -grass5/etc/bin/contrib/inter/v.patch.scs -grass5/etc/bin/contrib/inter/v.report -grass5/etc/bin/contrib/inter/v.sdts.meta -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.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/db.columns -grass5/etc/bin/main/cmd/db.connect -grass5/etc/bin/main/cmd/db.createdb -grass5/etc/bin/main/cmd/db.databases -grass5/etc/bin/main/cmd/db.describe -grass5/etc/bin/main/cmd/db.drivers -grass5/etc/bin/main/cmd/db.dropdb -grass5/etc/bin/main/cmd/db.droptable -grass5/etc/bin/main/cmd/db.execute -grass5/etc/bin/main/cmd/db.select -grass5/etc/bin/main/cmd/db.tables -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.out.erdas -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.datum.shift -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.kappa -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.cn2 -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.direct -grass5/etc/bin/main/cmd/r.drain -grass5/etc/bin/main/cmd/r.fill.dir -grass5/etc/bin/main/cmd/r.flow -grass5/etc/bin/main/cmd/r.flowmd -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.kappa -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.random.cells -grass5/etc/bin/main/cmd/r.random.surface -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.ros -grass5/etc/bin/main/cmd/r.slope.aspect -grass5/etc/bin/main/cmd/r.spread -grass5/etc/bin/main/cmd/r.spreadpath -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.water.outlet -grass5/etc/bin/main/cmd/r.watershed -grass5/etc/bin/main/cmd/r.weight.new -grass5/etc/bin/main/cmd/r.weighted.cn -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.proj -grass5/etc/bin/main/cmd/s.surf.idw -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.bubble -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.db.reclass -grass5/etc/bin/main/cmd/v.distance -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.dlg2 -grass5/etc/bin/main/cmd/v.in.dxf -grass5/etc/bin/main/cmd/v.in.dxf2 -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.llabel -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.out.idrisi -grass5/etc/bin/main/cmd/v.out.shape -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.rm.dangles -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.timestamp -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/cmd/v.what -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.points3 -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/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/bin_point -grass5/etc/bin_reg -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/fill/direct_for -grass5/etc/fill/dopolys_for -grass5/etc/fill/fillsngl_for -grass5/etc/fill/fmt_un -grass5/etc/fill/fmt_un_dir -grass5/etc/fill/ppupdate_for -grass5/etc/fill/un_fmt_dir -grass5/etc/fill/un_fmt_fill -grass5/etc/fill/wtrshed_for -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.quest -grass5/etc/geo.unlock -grass5/etc/grass_intro -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.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/in_arc -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.uninst/ppm -grass5/etc/paint/driver/ppm -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/ps.devices/a0 -grass5/etc/paint/ps.devices/a1 -grass5/etc/paint/ps.devices/a2 -grass5/etc/paint/ps.devices/a3 -grass5/etc/paint/ps.devices/a4 -grass5/etc/paint/vres.test -grass5/etc/permut -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.o2n.tps -grass5/etc/s.sweep -grass5/etc/set_data -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/include/gis.h -grass5/lib/libgis.a -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.texture -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.distance -grass5/man/1/r.drain -grass5/man/1/r.flow -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.linear.regression -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.resamp.rst -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.water.outlet -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.in.garmin.sh -grass5/man/1/s.in.shape -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/s.univar -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.in.garmin.sh -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.out.e00 -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/g3.region -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.in.gtc -grass5/man/2/i.in.pri -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.slc -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.map.new -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.hydro.CASC2D -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.proj -grass5/man/2/r.ros -grass5/man/2/r.spread -grass5/man/2/r.spreadpath -grass5/man/2/r.surf.contour -grass5/man/2/r.thin -grass5/man/2/r.water.fea -grass5/man/2/r.weight2 -grass5/man/2/r3.in.ascii -grass5/man/2/r3.in.v5d -grass5/man/2/r3.info -grass5/man/2/r3.mapcalc -grass5/man/2/r3.mask -grass5/man/2/r3.mkdspf -grass5/man/2/r3.null -grass5/man/2/r3.out.ascii -grass5/man/2/r3.out.v5d -grass5/man/2/r3.showdspf -grass5/man/2/s.proj -grass5/man/2/s.vol.idw -grass5/man/2/s.vol.rst -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.shape -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.out.shape -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/r.univar -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/3/v.in.dxf3d.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.param.scale -grass5/man/4/d.to.sites -grass5/man/4/g.man2html -grass5/man/4/g.nroff -grass5/man/4/i.out.erdas -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.fill.dir -grass5/man/4/r.in.erdas -grass5/man/4/r.in.miads -grass5/man/4/r.out.mpeg -grass5/man/4/r.param.scale -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.geom -grass5/man/4/s.in.grid -grass5/man/4/s.kcv -grass5/man/4/s.normal -grass5/man/4/s.out.e00 -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.build.polylines -grass5/man/4/v.db.rim -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.dxf3d -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.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/blend.sh -grass5/scripts/bug.report.sh -grass5/scripts/create_fifos.sh -grass5/scripts/d.dm -grass5/scripts/d.monsize -grass5/scripts/d.rast.leg -grass5/scripts/d.rast.leg2 -grass5/scripts/d.rast.rescale -grass5/scripts/d.siter -grass5/scripts/db.attr -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/g.man2html -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.agnps50.input -grass5/scripts/r.edge.dig -grass5/scripts/r.in.arctiff -grass5/scripts/r.in.globedem -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.to.pg -grass5/scripts/r.univar -grass5/scripts/rgb.hsv.sh -grass5/scripts/s.in.garmin.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.arc.poly -grass5/scripts/v.in.dxf3d.sh -grass5/scripts/v.in.garmin.sh -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-netscape.tcl -grass5/tcltkgrass/main/help-scripting.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.rast.pg -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.site.pg -grass5/tcltkgrass/module/d.sites -grass5/tcltkgrass/module/d.text -grass5/tcltkgrass/module/d.title -grass5/tcltkgrass/module/d.vect -grass5/tcltkgrass/module/d.vect.pg -grass5/tcltkgrass/module/d.what.r.pg -grass5/tcltkgrass/module/d.what.rast -grass5/tcltkgrass/module/d.what.s.pg -grass5/tcltkgrass/module/d.what.sites -grass5/tcltkgrass/module/d.what.v.pg -grass5/tcltkgrass/module/d.what.vect -grass5/tcltkgrass/module/d.where -grass5/tcltkgrass/module/d.zoom.sh -grass5/tcltkgrass/module/db.columns -grass5/tcltkgrass/module/db.connect -grass5/tcltkgrass/module/db.connect.driver -grass5/tcltkgrass/module/db.describe -grass5/tcltkgrass/module/db.execute -grass5/tcltkgrass/module/db.select -grass5/tcltkgrass/module/db.select.all -grass5/tcltkgrass/module/db.tables -grass5/tcltkgrass/module/g.column.pg -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/g.select.pg -grass5/tcltkgrass/module/g.stats.pg -grass5/tcltkgrass/module/g.table.pg -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/nviz -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.png -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.garmin -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.build.polylines -grass5/tcltkgrass/module/v.cadlabel -grass5/tcltkgrass/module/v.clean -grass5/tcltkgrass/module/v.cutter -grass5/tcltkgrass/module/v.db.reclass -grass5/tcltkgrass/module/v.geom -grass5/tcltkgrass/module/v.in.arc -grass5/tcltkgrass/module/v.in.ascii -grass5/tcltkgrass/module/v.in.garmin -grass5/tcltkgrass/module/v.in.shape -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.out.e00 -grass5/tcltkgrass/module/v.patch -grass5/tcltkgrass/module/v.proj -grass5/tcltkgrass/module/v.prune -grass5/tcltkgrass/module/v.reclass.pg -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.db -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/db.connect.driver -grass5/tcltkgrass/script/db.select.all -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/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/lib -@dirrm grass5/include -@dirrm grass5/fonts -@dirrm grass5/etc/water -@dirrm grass5/etc/sites -@dirrm grass5/etc/r.fea -@dirrm grass5/etc/paint/ps.devices -@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/fill -@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/agnps50 -@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/bwidget/lang -@dirrm grass5/bwidget/images -@dirrm grass5/bwidget/demo -@dirrm grass5/bwidget/BWman -@dirrm grass5/bwidget -@dirrm grass5/bin -@dirrm grass5 diff --git a/databases/jdbc-oracle8i/Makefile b/databases/jdbc-oracle8i/Makefile deleted file mode 100644 index 9cf66daa1773..000000000000 --- a/databases/jdbc-oracle8i/Makefile +++ /dev/null @@ -1,39 +0,0 @@ -# New ports collection makefile for: The Oracle 8.1.6 JDBC Drivers -# Date created: 2 January 2000 -# Whom: Patrick Gardella <patrick@freebsd.org> -# -# $FreeBSD$ -# - -PORTNAME= oracle816 -PORTVERSION= 1.11 -CATEGORIES= databases java -MASTER_SITES= # none -PKGNAMEPREFIX= jdbc- -DISTNAME= classes111_01. -EXTRACT_SUFX= zip -EXTRACT_ONLY= # none - -MAINTAINER= patrick@FreeBSD.Org - -RUN_DEPENDS= ${LOCALBASE}/jdk1.1.8/bin/java:${PORTSDIR}/java/jdk - -ALL_TARGET= jar - -RESTRICTED= 'Must be downloaded direct from Oracle via www interface' -NO_CDROM= 'Must be downloaded direct from Oracle via www interface' -NO_PACKAGE= 'Must be downloaded direct from Oracle via www interface' -NO_BUILD= yes -NO_WRKSUBDIR= yes - -.include <bsd.port.pre.mk> - -.if !exists(${_DISTDIR}/${DISTNAME}${EXTRACT_SUFX}) -IGNORE="Please manually download ${DISTNAME}${EXTRACT_SUFX} from http://technet.oracle.com/software/tech/java/sqlj_jdbc/software_index.htm Oracle8i 8.1.6.0.1 JDBC Drivers for use with JDK 1.1.x, JDBC-Thin 100% Java. Put ${DISTNAME}${EXTRACT_SUFX} into the directory ${_DISTDIR} and run make again." -.endif - -do-install: - @${MKDIR} ${PREFIX}/share/java/classes - @${INSTALL_DATA} ${_DISTDIR}/${DISTNAME}${EXTRACT_SUFX} ${LOCALBASE}/share/java/classes - -.include <bsd.port.post.mk> diff --git a/databases/jdbc-oracle8i/distinfo b/databases/jdbc-oracle8i/distinfo deleted file mode 100644 index 54ca3e0cf475..000000000000 --- a/databases/jdbc-oracle8i/distinfo +++ /dev/null @@ -1 +0,0 @@ -MD5 (classes111_01.zip) = ca3c45844a5d6f05841fa28f6320374c diff --git a/databases/jdbc-oracle8i/pkg-comment b/databases/jdbc-oracle8i/pkg-comment deleted file mode 100644 index d8c91363dcf3..000000000000 --- a/databases/jdbc-oracle8i/pkg-comment +++ /dev/null @@ -1 +0,0 @@ -The JDBC drivers for Oracle 8.1.6 diff --git a/databases/jdbc-oracle8i/pkg-descr b/databases/jdbc-oracle8i/pkg-descr deleted file mode 100644 index b070510d0b0a..000000000000 --- a/databases/jdbc-oracle8i/pkg-descr +++ /dev/null @@ -1,6 +0,0 @@ -This is a port of the JDBC driver which is used to access Oracle -databases using a database-independant API in Java. - -WWW: http://technet.oracle.com/tech/java/sqlj_jdbc/listing.htm - -patrick@freebsd.org diff --git a/databases/jdbc-oracle8i/pkg-plist b/databases/jdbc-oracle8i/pkg-plist deleted file mode 100644 index 7341b9e37cbf..000000000000 --- a/databases/jdbc-oracle8i/pkg-plist +++ /dev/null @@ -1 +0,0 @@ -share/java/classes/classes111_01.zip diff --git a/databases/jdbc-oracle9i/Makefile b/databases/jdbc-oracle9i/Makefile deleted file mode 100644 index 9cf66daa1773..000000000000 --- a/databases/jdbc-oracle9i/Makefile +++ /dev/null @@ -1,39 +0,0 @@ -# New ports collection makefile for: The Oracle 8.1.6 JDBC Drivers -# Date created: 2 January 2000 -# Whom: Patrick Gardella <patrick@freebsd.org> -# -# $FreeBSD$ -# - -PORTNAME= oracle816 -PORTVERSION= 1.11 -CATEGORIES= databases java -MASTER_SITES= # none -PKGNAMEPREFIX= jdbc- -DISTNAME= classes111_01. -EXTRACT_SUFX= zip -EXTRACT_ONLY= # none - -MAINTAINER= patrick@FreeBSD.Org - -RUN_DEPENDS= ${LOCALBASE}/jdk1.1.8/bin/java:${PORTSDIR}/java/jdk - -ALL_TARGET= jar - -RESTRICTED= 'Must be downloaded direct from Oracle via www interface' -NO_CDROM= 'Must be downloaded direct from Oracle via www interface' -NO_PACKAGE= 'Must be downloaded direct from Oracle via www interface' -NO_BUILD= yes -NO_WRKSUBDIR= yes - -.include <bsd.port.pre.mk> - -.if !exists(${_DISTDIR}/${DISTNAME}${EXTRACT_SUFX}) -IGNORE="Please manually download ${DISTNAME}${EXTRACT_SUFX} from http://technet.oracle.com/software/tech/java/sqlj_jdbc/software_index.htm Oracle8i 8.1.6.0.1 JDBC Drivers for use with JDK 1.1.x, JDBC-Thin 100% Java. Put ${DISTNAME}${EXTRACT_SUFX} into the directory ${_DISTDIR} and run make again." -.endif - -do-install: - @${MKDIR} ${PREFIX}/share/java/classes - @${INSTALL_DATA} ${_DISTDIR}/${DISTNAME}${EXTRACT_SUFX} ${LOCALBASE}/share/java/classes - -.include <bsd.port.post.mk> diff --git a/databases/jdbc-oracle9i/distinfo b/databases/jdbc-oracle9i/distinfo deleted file mode 100644 index 54ca3e0cf475..000000000000 --- a/databases/jdbc-oracle9i/distinfo +++ /dev/null @@ -1 +0,0 @@ -MD5 (classes111_01.zip) = ca3c45844a5d6f05841fa28f6320374c diff --git a/databases/jdbc-oracle9i/pkg-comment b/databases/jdbc-oracle9i/pkg-comment deleted file mode 100644 index d8c91363dcf3..000000000000 --- a/databases/jdbc-oracle9i/pkg-comment +++ /dev/null @@ -1 +0,0 @@ -The JDBC drivers for Oracle 8.1.6 diff --git a/databases/jdbc-oracle9i/pkg-descr b/databases/jdbc-oracle9i/pkg-descr deleted file mode 100644 index b070510d0b0a..000000000000 --- a/databases/jdbc-oracle9i/pkg-descr +++ /dev/null @@ -1,6 +0,0 @@ -This is a port of the JDBC driver which is used to access Oracle -databases using a database-independant API in Java. - -WWW: http://technet.oracle.com/tech/java/sqlj_jdbc/listing.htm - -patrick@freebsd.org diff --git a/databases/jdbc-oracle9i/pkg-plist b/databases/jdbc-oracle9i/pkg-plist deleted file mode 100644 index 7341b9e37cbf..000000000000 --- a/databases/jdbc-oracle9i/pkg-plist +++ /dev/null @@ -1 +0,0 @@ -share/java/classes/classes111_01.zip diff --git a/databases/libgda2/Makefile b/databases/libgda2/Makefile deleted file mode 100644 index 2977844ddfbe..000000000000 --- a/databases/libgda2/Makefile +++ /dev/null @@ -1,38 +0,0 @@ -# New ports collection makefile for: libgda -# Date created: 8th March 2001 -# Whom: Ade Lovett <ade@FreeBSD.org> -# -# $FreeBSD$ -# - -PORTNAME= libgda -PORTVERSION= 0.2.93 -PORTREVISION= 2 -CATEGORIES= databases gnome -MASTER_SITES= ${MASTER_SITE_GNOME} -MASTER_SITE_SUBDIR= stable/sources/${PORTNAME} - -MAINTAINER= gnome@FreeBSD.org - -LIB_DEPENDS= gdbm.2:${PORTSDIR}/databases/gdbm \ - bonobo.2:${PORTSDIR}/devel/bonobo - -USE_X_PREFIX= yes -USE_GNOMECTRL= yes -USE_GMAKE= yes -INSTALLS_SHLIB= yes -GNU_CONFIGURE= yes -CONFIGURE_ENV= CPPFLAGS="-I${LOCALBASE}/include" \ - LIBS="-L${LOCALBASE}/lib -lintl -lgdbm" -CONFIGURE_TARGET= --target=${MACHINE_ARCH}-unknown-freebsd${OSREL} -PLIST_SUB= VERSION=${PORTVERSION} - -pre-patch: - @${PERL} -pi -e 's|-lpthread|-pthread|g ; \ - s|DATADIRNAME=lib|DATADIRNAME=share|g' ${WRKSRC}/configure - @find ${WRKSRC} -name "Makefile.in" | xargs ${PERL} -pi -e \ - 's|\$\(datadir\)/gnome/|\$\(datadir\)/|g ; \ - s|share/idl|share/gnome/idl|g ; \ - s|\$\(datadir\)/locale|\$\(prefix\)/share/locale|g' - -.include <bsd.port.mk> diff --git a/databases/libgda2/distinfo b/databases/libgda2/distinfo deleted file mode 100644 index 3a656b9703f5..000000000000 --- a/databases/libgda2/distinfo +++ /dev/null @@ -1 +0,0 @@ -MD5 (libgda-0.2.93.tar.gz) = 29e9831a5cfdec308042ef34be453258 diff --git a/databases/libgda2/files/patch-aa b/databases/libgda2/files/patch-aa deleted file mode 100644 index 8f9cc8fb43a8..000000000000 --- a/databases/libgda2/files/patch-aa +++ /dev/null @@ -1,14 +0,0 @@ - -$FreeBSD$ - ---- Makefile.in.orig Wed Nov 21 10:29:52 2001 -+++ Makefile.in Wed Nov 21 10:30:19 2001 -@@ -158,7 +158,7 @@ - YACC = @YACC@ - l = @l@ - --SUBDIRS = po intl macros idl lib bindings providers tools testing doc -+SUBDIRS = po intl macros idl lib bindings providers tools doc - - - EXTRA_DIST = COPYING libgda.spec.in xml-i18n-extract.in xml-i18n-merge.in xml-i18n-update.in diff --git a/databases/libgda2/files/patch-ltmain.sh b/databases/libgda2/files/patch-ltmain.sh deleted file mode 100644 index 98cb05e4ddb3..000000000000 --- a/databases/libgda2/files/patch-ltmain.sh +++ /dev/null @@ -1,28 +0,0 @@ - -$FreeBSD$ - ---- ltmain.sh 2001/08/27 09:51:26 1.1 -+++ ltmain.sh 2001/08/27 09:51:42 -@@ -2408,6 +2408,9 @@ - *-*-netbsd*) - # Don't link with libc until the a.out ld.so is fixed. - ;; -+ *-*-freebsd*) -+ # FreeBSD doesn't need this... -+ ;; - *) - # Add libc to deplibs on all other systems if necessary. - if test "$build_libtool_need_lc" = "yes"; then -@@ -4175,10 +4178,12 @@ - fi - - # Install the pseudo-library for information purposes. -+ if /usr/bin/false; then - name=`$echo "X$file" | $Xsed -e 's%^.*/%%'` - instname="$dir/$name"i - $show "$install_prog $instname $destdir/$name" - $run eval "$install_prog $instname $destdir/$name" || exit $? -+ fi - - # Maybe install the static library, too. - test -n "$old_library" && staticlibs="$staticlibs $dir/$old_library" diff --git a/databases/libgda2/files/patch-po::Makefile.in.in b/databases/libgda2/files/patch-po::Makefile.in.in deleted file mode 100644 index 3f425ffda3af..000000000000 --- a/databases/libgda2/files/patch-po::Makefile.in.in +++ /dev/null @@ -1,7 +0,0 @@ ---- po/Makefile.in.in.orig Wed Jun 13 15:55:50 2001 -+++ po/Makefile.in.in Tue Jun 19 01:14:13 2001 -@@ -25,3 +25,3 @@ - datadir = @datadir@ --localedir = $(datadir)/locale -+localedir = $(prefix)/share/locale - gettextsrcdir = $(datadir)/gettext/po diff --git a/databases/libgda2/files/patch-tools::gda-buildserver.in b/databases/libgda2/files/patch-tools::gda-buildserver.in deleted file mode 100644 index fa75e2dcc31f..000000000000 --- a/databases/libgda2/files/patch-tools::gda-buildserver.in +++ /dev/null @@ -1,14 +0,0 @@ - -$FreeBSD$ - ---- tools/gda-buildserver.in 2001/08/06 08:16:41 1.1 -+++ tools/gda-buildserver.in 2001/08/06 08:16:54 -@@ -7,7 +7,7 @@ - CC=@CC@ - shell=@shell@ - --TEMPLATES_DIR="${prefix}/share/gda/templates" -+TEMPLATES_DIR="${prefix}/share/gnome/gda/templates" - TMPL_C_FILES="gda-srv-command.c gda-srv-connection.c gda-srv-recordset.c main-srv.c" - TMPL_H_FILES="gda-srv.h" - diff --git a/databases/libgda2/files/patch-tools::templates::Makefile.in b/databases/libgda2/files/patch-tools::templates::Makefile.in deleted file mode 100644 index 2ca62bfb551d..000000000000 --- a/databases/libgda2/files/patch-tools::templates::Makefile.in +++ /dev/null @@ -1,14 +0,0 @@ - -$FreeBSD$ - ---- tools/templates/Makefile.in 2001/08/06 08:15:18 1.1 -+++ tools/templates/Makefile.in 2001/08/06 08:15:53 -@@ -148,7 +148,7 @@ - - EXTRA_DIST = $(TEMPLATE_FILES) - --gdatemplatesdir = $(prefix)/share/gda/templates -+gdatemplatesdir = $(prefix)/share/gnome/gda/templates - gdatemplates_DATA = $(TEMPLATE_FILES) - mkinstalldirs = $(SHELL) $(top_srcdir)/mkinstalldirs - CONFIG_HEADER = ../../config.h diff --git a/databases/libgda2/pkg-comment b/databases/libgda2/pkg-comment deleted file mode 100644 index be18a121d7f0..000000000000 --- a/databases/libgda2/pkg-comment +++ /dev/null @@ -1 +0,0 @@ -Provides uniform access to different kinds of data sources diff --git a/databases/libgda2/pkg-descr b/databases/libgda2/pkg-descr deleted file mode 100644 index 12eb57b5ed9b..000000000000 --- a/databases/libgda2/pkg-descr +++ /dev/null @@ -1,19 +0,0 @@ -GNU Data Access (GDA) is an attempt to provide uniform access to -different kinds of data sources (databases, information servers, -mail spools, etc). - -It is a complete architecture that provides all you need to access -your data, defined by a set of CORBA interfaces as generic as possible -(but very powerful at the same time) so that any kind of data source -can be accessed through them. - -libgda is an interface to the GDA architecture, providing a nice -wrapper around the CORBA interfaces, for both the client and the server -parts. It also provides a bunch of tools to help you both in the -development and management of your data sources, all done through -the GDA model's set of CORBA interfaces. - -libgda was part of the GNOME-DB project, but has been separated from it -to allow non-GNOME applications to be developed based on it. - -WWW: http://www.gnome-db.org/ diff --git a/databases/libgda2/pkg-plist b/databases/libgda2/pkg-plist deleted file mode 100644 index 6d254614be78..000000000000 --- a/databases/libgda2/pkg-plist +++ /dev/null @@ -1,124 +0,0 @@ -bin/gda-buildclient -bin/gda-buildserver -bin/gda-config -bin/gda-default-srv -bin/gda-run -include/libgda-%%VERSION%%/gda++/gdaBatch.h -include/libgda-%%VERSION%%/gda++/gdaCommand.h -include/libgda-%%VERSION%%/gda++/gdaConnection.h -include/libgda-%%VERSION%%/gda++/gdaError.h -include/libgda-%%VERSION%%/gda++/gdaErrorList.h -include/libgda-%%VERSION%%/gda++/gdaField.h -include/libgda-%%VERSION%%/gda++/gdaHelpers.h -include/libgda-%%VERSION%%/gda++/gdaIncludes.h -include/libgda-%%VERSION%%/gda++/gdaRecordset.h -include/libgda-%%VERSION%%/gda++/gdaValue.h -include/libgda-%%VERSION%%/gda/GDA.h -include/libgda-%%VERSION%%/gda/gda-batch.h -include/libgda-%%VERSION%%/gda/gda-client.h -include/libgda-%%VERSION%%/gda/gda-command.h -include/libgda-%%VERSION%%/gda/gda-common-defs.h -include/libgda-%%VERSION%%/gda/gda-common.h -include/libgda-%%VERSION%%/gda/gda-config.h -include/libgda-%%VERSION%%/gda/gda-connection-pool.h -include/libgda-%%VERSION%%/gda/gda-connection.h -include/libgda-%%VERSION%%/gda/gda-corba.h -include/libgda-%%VERSION%%/gda/gda-error.h -include/libgda-%%VERSION%%/gda/gda-export.h -include/libgda-%%VERSION%%/gda/gda-field.h -include/libgda-%%VERSION%%/gda/gda-listener.h -include/libgda-%%VERSION%%/gda/gda-log.h -include/libgda-%%VERSION%%/gda/gda-quark-list.h -include/libgda-%%VERSION%%/gda/gda-recordset.h -include/libgda-%%VERSION%%/gda/gda-server-command.h -include/libgda-%%VERSION%%/gda/gda-server-connection.h -include/libgda-%%VERSION%%/gda/gda-server-error.h -include/libgda-%%VERSION%%/gda/gda-server-field.h -include/libgda-%%VERSION%%/gda/gda-server-recordset.h -include/libgda-%%VERSION%%/gda/gda-server.h -include/libgda-%%VERSION%%/gda/gda-thread.h -include/libgda-%%VERSION%%/gda/gda-util.h -include/libgda-%%VERSION%%/gda/gda-value.h -include/libgda-%%VERSION%%/gda/gda-xml-atom-item.h -include/libgda-%%VERSION%%/gda/gda-xml-bin-item.h -include/libgda-%%VERSION%%/gda/gda-xml-database.h -include/libgda-%%VERSION%%/gda/gda-xml-document.h -include/libgda-%%VERSION%%/gda/gda-xml-item.h -include/libgda-%%VERSION%%/gda/gda-xml-list-item.h -include/libgda-%%VERSION%%/gda/gda-xml-util.h -lib/libgda-client.a -lib/libgda-client.so -lib/libgda-client.so.0 -lib/libgda-clientcpp.a -lib/libgda-clientcpp.so -lib/libgda-clientcpp.so.0 -lib/libgda-common.a -lib/libgda-common.so -lib/libgda-common.so.0 -lib/libgda-server.a -lib/libgda-server.so -lib/libgda-server.so.0 -share/gnome/gda/templates/gda-srv-command.c.tmpl -share/gnome/gda/templates/gda-srv-connection.c.tmpl -share/gnome/gda/templates/gda-srv-recordset.c.tmpl -share/gnome/gda/templates/gda-srv.h.tmpl -share/gnome/gda/templates/main-srv.c.tmpl -share/gnome/help/libgda/C/topic.dat -share/gnome/help/libgda/es/topic.dat -share/gnome/help/libgda/pt_BR/topic.dat -share/gnome/html/libgda-client-sections.txt -share/gnome/html/libgda-client.args -share/gnome/html/libgda-client.hierarchy -share/gnome/html/libgda-client.types -share/gnome/html/libgda-common-sections.txt -share/gnome/html/libgda-common.args -share/gnome/html/libgda-common.hierarchy -share/gnome/html/libgda-common.types -share/gnome/idl/GDA.idl -share/gnome/idl/GDA_Command.idl -share/gnome/idl/GDA_Connection.idl -share/gnome/idl/GDA_Error.idl -share/gnome/idl/GDA_Field.idl -share/gnome/idl/GDA_Listener.idl -share/gnome/idl/GDA_Parameter.idl -share/gnome/idl/GDA_Recordset.idl -share/gnome/oaf/GNOME_GDA_Provider_Default.oaf -share/gnome/omf/libgda/libgda-C.omf -share/gnome/omf/libgda/libgda-es.omf -share/gnome/omf/libgda/libgda-pt_BR.omf -share/locale/ca/LC_MESSAGES/libgda.mo -share/locale/da/LC_MESSAGES/libgda.mo -share/locale/de/LC_MESSAGES/libgda.mo -share/locale/el/LC_MESSAGES/libgda.mo -share/locale/es/LC_MESSAGES/libgda.mo -share/locale/fi/LC_MESSAGES/libgda.mo -share/locale/fr/LC_MESSAGES/libgda.mo -share/locale/ga/LC_MESSAGES/libgda.mo -share/locale/gl/LC_MESSAGES/libgda.mo -share/locale/hu/LC_MESSAGES/libgda.mo -share/locale/it/LC_MESSAGES/libgda.mo -share/locale/ja/LC_MESSAGES/libgda.mo -share/locale/nl/LC_MESSAGES/libgda.mo -share/locale/nn/LC_MESSAGES/libgda.mo -share/locale/no/LC_MESSAGES/libgda.mo -share/locale/pl/LC_MESSAGES/libgda.mo -share/locale/pt/LC_MESSAGES/libgda.mo -share/locale/pt_BR/LC_MESSAGES/libgda.mo -share/locale/ru/LC_MESSAGES/libgda.mo -share/locale/sk/LC_MESSAGES/libgda.mo -share/locale/sl/LC_MESSAGES/libgda.mo -share/locale/sv/LC_MESSAGES/libgda.mo -share/locale/uk/LC_MESSAGES/libgda.mo -@dirrm share/gnome/omf/libgda -@dirrm share/gnome/help/libgda/pt_BR/images -@dirrm share/gnome/help/libgda/pt_BR -@dirrm share/gnome/help/libgda/es/images -@dirrm share/gnome/help/libgda/es -@dirrm share/gnome/help/libgda/C/images -@dirrm share/gnome/help/libgda/C -@dirrm share/gnome/help/libgda -@dirrm share/gnome/gda/templates -@dirrm share/gnome/gda -@dirrm include/libgda-%%VERSION%%/gda++ -@dirrm include/libgda-%%VERSION%%/gda -@dirrm include/libgda-%%VERSION%% diff --git a/databases/libgda3/Makefile b/databases/libgda3/Makefile deleted file mode 100644 index 2977844ddfbe..000000000000 --- a/databases/libgda3/Makefile +++ /dev/null @@ -1,38 +0,0 @@ -# New ports collection makefile for: libgda -# Date created: 8th March 2001 -# Whom: Ade Lovett <ade@FreeBSD.org> -# -# $FreeBSD$ -# - -PORTNAME= libgda -PORTVERSION= 0.2.93 -PORTREVISION= 2 -CATEGORIES= databases gnome -MASTER_SITES= ${MASTER_SITE_GNOME} -MASTER_SITE_SUBDIR= stable/sources/${PORTNAME} - -MAINTAINER= gnome@FreeBSD.org - -LIB_DEPENDS= gdbm.2:${PORTSDIR}/databases/gdbm \ - bonobo.2:${PORTSDIR}/devel/bonobo - -USE_X_PREFIX= yes -USE_GNOMECTRL= yes -USE_GMAKE= yes -INSTALLS_SHLIB= yes -GNU_CONFIGURE= yes -CONFIGURE_ENV= CPPFLAGS="-I${LOCALBASE}/include" \ - LIBS="-L${LOCALBASE}/lib -lintl -lgdbm" -CONFIGURE_TARGET= --target=${MACHINE_ARCH}-unknown-freebsd${OSREL} -PLIST_SUB= VERSION=${PORTVERSION} - -pre-patch: - @${PERL} -pi -e 's|-lpthread|-pthread|g ; \ - s|DATADIRNAME=lib|DATADIRNAME=share|g' ${WRKSRC}/configure - @find ${WRKSRC} -name "Makefile.in" | xargs ${PERL} -pi -e \ - 's|\$\(datadir\)/gnome/|\$\(datadir\)/|g ; \ - s|share/idl|share/gnome/idl|g ; \ - s|\$\(datadir\)/locale|\$\(prefix\)/share/locale|g' - -.include <bsd.port.mk> diff --git a/databases/libgda3/distinfo b/databases/libgda3/distinfo deleted file mode 100644 index 3a656b9703f5..000000000000 --- a/databases/libgda3/distinfo +++ /dev/null @@ -1 +0,0 @@ -MD5 (libgda-0.2.93.tar.gz) = 29e9831a5cfdec308042ef34be453258 diff --git a/databases/libgda3/files/patch-aa b/databases/libgda3/files/patch-aa deleted file mode 100644 index 8f9cc8fb43a8..000000000000 --- a/databases/libgda3/files/patch-aa +++ /dev/null @@ -1,14 +0,0 @@ - -$FreeBSD$ - ---- Makefile.in.orig Wed Nov 21 10:29:52 2001 -+++ Makefile.in Wed Nov 21 10:30:19 2001 -@@ -158,7 +158,7 @@ - YACC = @YACC@ - l = @l@ - --SUBDIRS = po intl macros idl lib bindings providers tools testing doc -+SUBDIRS = po intl macros idl lib bindings providers tools doc - - - EXTRA_DIST = COPYING libgda.spec.in xml-i18n-extract.in xml-i18n-merge.in xml-i18n-update.in diff --git a/databases/libgda3/files/patch-ltmain.sh b/databases/libgda3/files/patch-ltmain.sh deleted file mode 100644 index 98cb05e4ddb3..000000000000 --- a/databases/libgda3/files/patch-ltmain.sh +++ /dev/null @@ -1,28 +0,0 @@ - -$FreeBSD$ - ---- ltmain.sh 2001/08/27 09:51:26 1.1 -+++ ltmain.sh 2001/08/27 09:51:42 -@@ -2408,6 +2408,9 @@ - *-*-netbsd*) - # Don't link with libc until the a.out ld.so is fixed. - ;; -+ *-*-freebsd*) -+ # FreeBSD doesn't need this... -+ ;; - *) - # Add libc to deplibs on all other systems if necessary. - if test "$build_libtool_need_lc" = "yes"; then -@@ -4175,10 +4178,12 @@ - fi - - # Install the pseudo-library for information purposes. -+ if /usr/bin/false; then - name=`$echo "X$file" | $Xsed -e 's%^.*/%%'` - instname="$dir/$name"i - $show "$install_prog $instname $destdir/$name" - $run eval "$install_prog $instname $destdir/$name" || exit $? -+ fi - - # Maybe install the static library, too. - test -n "$old_library" && staticlibs="$staticlibs $dir/$old_library" diff --git a/databases/libgda3/files/patch-po::Makefile.in.in b/databases/libgda3/files/patch-po::Makefile.in.in deleted file mode 100644 index 3f425ffda3af..000000000000 --- a/databases/libgda3/files/patch-po::Makefile.in.in +++ /dev/null @@ -1,7 +0,0 @@ ---- po/Makefile.in.in.orig Wed Jun 13 15:55:50 2001 -+++ po/Makefile.in.in Tue Jun 19 01:14:13 2001 -@@ -25,3 +25,3 @@ - datadir = @datadir@ --localedir = $(datadir)/locale -+localedir = $(prefix)/share/locale - gettextsrcdir = $(datadir)/gettext/po diff --git a/databases/libgda3/files/patch-tools::gda-buildserver.in b/databases/libgda3/files/patch-tools::gda-buildserver.in deleted file mode 100644 index fa75e2dcc31f..000000000000 --- a/databases/libgda3/files/patch-tools::gda-buildserver.in +++ /dev/null @@ -1,14 +0,0 @@ - -$FreeBSD$ - ---- tools/gda-buildserver.in 2001/08/06 08:16:41 1.1 -+++ tools/gda-buildserver.in 2001/08/06 08:16:54 -@@ -7,7 +7,7 @@ - CC=@CC@ - shell=@shell@ - --TEMPLATES_DIR="${prefix}/share/gda/templates" -+TEMPLATES_DIR="${prefix}/share/gnome/gda/templates" - TMPL_C_FILES="gda-srv-command.c gda-srv-connection.c gda-srv-recordset.c main-srv.c" - TMPL_H_FILES="gda-srv.h" - diff --git a/databases/libgda3/files/patch-tools::templates::Makefile.in b/databases/libgda3/files/patch-tools::templates::Makefile.in deleted file mode 100644 index 2ca62bfb551d..000000000000 --- a/databases/libgda3/files/patch-tools::templates::Makefile.in +++ /dev/null @@ -1,14 +0,0 @@ - -$FreeBSD$ - ---- tools/templates/Makefile.in 2001/08/06 08:15:18 1.1 -+++ tools/templates/Makefile.in 2001/08/06 08:15:53 -@@ -148,7 +148,7 @@ - - EXTRA_DIST = $(TEMPLATE_FILES) - --gdatemplatesdir = $(prefix)/share/gda/templates -+gdatemplatesdir = $(prefix)/share/gnome/gda/templates - gdatemplates_DATA = $(TEMPLATE_FILES) - mkinstalldirs = $(SHELL) $(top_srcdir)/mkinstalldirs - CONFIG_HEADER = ../../config.h diff --git a/databases/libgda3/pkg-comment b/databases/libgda3/pkg-comment deleted file mode 100644 index be18a121d7f0..000000000000 --- a/databases/libgda3/pkg-comment +++ /dev/null @@ -1 +0,0 @@ -Provides uniform access to different kinds of data sources diff --git a/databases/libgda3/pkg-descr b/databases/libgda3/pkg-descr deleted file mode 100644 index 12eb57b5ed9b..000000000000 --- a/databases/libgda3/pkg-descr +++ /dev/null @@ -1,19 +0,0 @@ -GNU Data Access (GDA) is an attempt to provide uniform access to -different kinds of data sources (databases, information servers, -mail spools, etc). - -It is a complete architecture that provides all you need to access -your data, defined by a set of CORBA interfaces as generic as possible -(but very powerful at the same time) so that any kind of data source -can be accessed through them. - -libgda is an interface to the GDA architecture, providing a nice -wrapper around the CORBA interfaces, for both the client and the server -parts. It also provides a bunch of tools to help you both in the -development and management of your data sources, all done through -the GDA model's set of CORBA interfaces. - -libgda was part of the GNOME-DB project, but has been separated from it -to allow non-GNOME applications to be developed based on it. - -WWW: http://www.gnome-db.org/ diff --git a/databases/libgda3/pkg-plist b/databases/libgda3/pkg-plist deleted file mode 100644 index 6d254614be78..000000000000 --- a/databases/libgda3/pkg-plist +++ /dev/null @@ -1,124 +0,0 @@ -bin/gda-buildclient -bin/gda-buildserver -bin/gda-config -bin/gda-default-srv -bin/gda-run -include/libgda-%%VERSION%%/gda++/gdaBatch.h -include/libgda-%%VERSION%%/gda++/gdaCommand.h -include/libgda-%%VERSION%%/gda++/gdaConnection.h -include/libgda-%%VERSION%%/gda++/gdaError.h -include/libgda-%%VERSION%%/gda++/gdaErrorList.h -include/libgda-%%VERSION%%/gda++/gdaField.h -include/libgda-%%VERSION%%/gda++/gdaHelpers.h -include/libgda-%%VERSION%%/gda++/gdaIncludes.h -include/libgda-%%VERSION%%/gda++/gdaRecordset.h -include/libgda-%%VERSION%%/gda++/gdaValue.h -include/libgda-%%VERSION%%/gda/GDA.h -include/libgda-%%VERSION%%/gda/gda-batch.h -include/libgda-%%VERSION%%/gda/gda-client.h -include/libgda-%%VERSION%%/gda/gda-command.h -include/libgda-%%VERSION%%/gda/gda-common-defs.h -include/libgda-%%VERSION%%/gda/gda-common.h -include/libgda-%%VERSION%%/gda/gda-config.h -include/libgda-%%VERSION%%/gda/gda-connection-pool.h -include/libgda-%%VERSION%%/gda/gda-connection.h -include/libgda-%%VERSION%%/gda/gda-corba.h -include/libgda-%%VERSION%%/gda/gda-error.h -include/libgda-%%VERSION%%/gda/gda-export.h -include/libgda-%%VERSION%%/gda/gda-field.h -include/libgda-%%VERSION%%/gda/gda-listener.h -include/libgda-%%VERSION%%/gda/gda-log.h -include/libgda-%%VERSION%%/gda/gda-quark-list.h -include/libgda-%%VERSION%%/gda/gda-recordset.h -include/libgda-%%VERSION%%/gda/gda-server-command.h -include/libgda-%%VERSION%%/gda/gda-server-connection.h -include/libgda-%%VERSION%%/gda/gda-server-error.h -include/libgda-%%VERSION%%/gda/gda-server-field.h -include/libgda-%%VERSION%%/gda/gda-server-recordset.h -include/libgda-%%VERSION%%/gda/gda-server.h -include/libgda-%%VERSION%%/gda/gda-thread.h -include/libgda-%%VERSION%%/gda/gda-util.h -include/libgda-%%VERSION%%/gda/gda-value.h -include/libgda-%%VERSION%%/gda/gda-xml-atom-item.h -include/libgda-%%VERSION%%/gda/gda-xml-bin-item.h -include/libgda-%%VERSION%%/gda/gda-xml-database.h -include/libgda-%%VERSION%%/gda/gda-xml-document.h -include/libgda-%%VERSION%%/gda/gda-xml-item.h -include/libgda-%%VERSION%%/gda/gda-xml-list-item.h -include/libgda-%%VERSION%%/gda/gda-xml-util.h -lib/libgda-client.a -lib/libgda-client.so -lib/libgda-client.so.0 -lib/libgda-clientcpp.a -lib/libgda-clientcpp.so -lib/libgda-clientcpp.so.0 -lib/libgda-common.a -lib/libgda-common.so -lib/libgda-common.so.0 -lib/libgda-server.a -lib/libgda-server.so -lib/libgda-server.so.0 -share/gnome/gda/templates/gda-srv-command.c.tmpl -share/gnome/gda/templates/gda-srv-connection.c.tmpl -share/gnome/gda/templates/gda-srv-recordset.c.tmpl -share/gnome/gda/templates/gda-srv.h.tmpl -share/gnome/gda/templates/main-srv.c.tmpl -share/gnome/help/libgda/C/topic.dat -share/gnome/help/libgda/es/topic.dat -share/gnome/help/libgda/pt_BR/topic.dat -share/gnome/html/libgda-client-sections.txt -share/gnome/html/libgda-client.args -share/gnome/html/libgda-client.hierarchy -share/gnome/html/libgda-client.types -share/gnome/html/libgda-common-sections.txt -share/gnome/html/libgda-common.args -share/gnome/html/libgda-common.hierarchy -share/gnome/html/libgda-common.types -share/gnome/idl/GDA.idl -share/gnome/idl/GDA_Command.idl -share/gnome/idl/GDA_Connection.idl -share/gnome/idl/GDA_Error.idl -share/gnome/idl/GDA_Field.idl -share/gnome/idl/GDA_Listener.idl -share/gnome/idl/GDA_Parameter.idl -share/gnome/idl/GDA_Recordset.idl -share/gnome/oaf/GNOME_GDA_Provider_Default.oaf -share/gnome/omf/libgda/libgda-C.omf -share/gnome/omf/libgda/libgda-es.omf -share/gnome/omf/libgda/libgda-pt_BR.omf -share/locale/ca/LC_MESSAGES/libgda.mo -share/locale/da/LC_MESSAGES/libgda.mo -share/locale/de/LC_MESSAGES/libgda.mo -share/locale/el/LC_MESSAGES/libgda.mo -share/locale/es/LC_MESSAGES/libgda.mo -share/locale/fi/LC_MESSAGES/libgda.mo -share/locale/fr/LC_MESSAGES/libgda.mo -share/locale/ga/LC_MESSAGES/libgda.mo -share/locale/gl/LC_MESSAGES/libgda.mo -share/locale/hu/LC_MESSAGES/libgda.mo -share/locale/it/LC_MESSAGES/libgda.mo -share/locale/ja/LC_MESSAGES/libgda.mo -share/locale/nl/LC_MESSAGES/libgda.mo -share/locale/nn/LC_MESSAGES/libgda.mo -share/locale/no/LC_MESSAGES/libgda.mo -share/locale/pl/LC_MESSAGES/libgda.mo -share/locale/pt/LC_MESSAGES/libgda.mo -share/locale/pt_BR/LC_MESSAGES/libgda.mo -share/locale/ru/LC_MESSAGES/libgda.mo -share/locale/sk/LC_MESSAGES/libgda.mo -share/locale/sl/LC_MESSAGES/libgda.mo -share/locale/sv/LC_MESSAGES/libgda.mo -share/locale/uk/LC_MESSAGES/libgda.mo -@dirrm share/gnome/omf/libgda -@dirrm share/gnome/help/libgda/pt_BR/images -@dirrm share/gnome/help/libgda/pt_BR -@dirrm share/gnome/help/libgda/es/images -@dirrm share/gnome/help/libgda/es -@dirrm share/gnome/help/libgda/C/images -@dirrm share/gnome/help/libgda/C -@dirrm share/gnome/help/libgda -@dirrm share/gnome/gda/templates -@dirrm share/gnome/gda -@dirrm include/libgda-%%VERSION%%/gda++ -@dirrm include/libgda-%%VERSION%%/gda -@dirrm include/libgda-%%VERSION%% diff --git a/databases/msql3/Makefile b/databases/msql3/Makefile deleted file mode 100644 index 783b1d5fa8a4..000000000000 --- a/databases/msql3/Makefile +++ /dev/null @@ -1,68 +0,0 @@ -# New ports collection makefile for: msql2 -# Date created: December 17th 1996 -# Whom: jfitz -# -# $FreeBSD$ -# - -PORTNAME= msql -PORTVERSION= 2.0.12 -PORTREVISION= 1 -CATEGORIES= databases - -MAINTAINER= ports@FreeBSD.org - -INSTALLS_SHLIB= YES - -# Not free for commercial use. -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 - -post-patch: - cd ${FILESDIR}; \ - cp slibinstall.mm slibrary_unix.mm ${WRKSRC}/src/makegen - -do-configure: - cd ${WRKSRC}; ${MAKE} target - cd ${WRKSRC}/targets/freebsd; ${SETENV} ${MAKE_ENV} ./setup - @${SETENV} ${MAKE_ENV} ${PERL} ${SCRIPTDIR}/customize_scripts - -pre-install: - @${SETENV} ${MAKE_ENV} ${PERL} ${SCRIPTDIR}/check_old_version - PKG_PREFIX=${PREFIX} ./pkg-install ${PKGNAME} PRE-INSTALL - -post-install: - @${INSTALL_SCRIPT} ${WRKSRC}/scripts/run_daemon ${PREFIX}/bin - @${INSTALL_DATA} ${FILESDIR}/post-install-notes ${PREFIX}/share/doc/msql - @for file in msqladmin msqlimport msqlexport; do\ - /usr/bin/chgrp msql ${PREFIX}/bin/$$file; \ - done - /usr/bin/chgrp msql ${PREFIX}/sbin/msql2d - @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}/msql2.sh \ - ${PREFIX}/etc/rc.d/msql2.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 84b34837941b..000000000000 --- a/databases/msql3/distinfo +++ /dev/null @@ -1 +0,0 @@ -MD5 (msql-2.0.12.tar.gz) = 920eaf4fd6128d8fd4dfa66301f86dcc diff --git a/databases/msql3/files/msql2.sh b/databases/msql3/files/msql2.sh deleted file mode 100644 index 54e0e7762406..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}/sbin/msql2d ] && su -f -l msql -c "exec ${PREFIX}/sbin/msql2d" > /dev/null 2>&1 & && echo -n ' msql2' - ;; -stop) - killall msql2d && echo -n ' msql2d' && rm -f ${PREFIX}/etc/msql2/msql2d.pid - ;; -*) - 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 09e6675f2872..000000000000 --- a/databases/msql3/files/patch-ab +++ /dev/null @@ -1,45 +0,0 @@ ---- scripts/run_daemon.orig Thu Aug 19 07:33:07 1999 -+++ scripts/run_daemon Sat Jan 27 11:08:59 2001 -@@ -9,24 +9,26 @@ - # - # 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} -- ${INST_DIR}/bin/${PROG} > output 2>&1 -+ cd /tmp/debug/${PROG} -+ ${INST_DIR}/sbin/${PROG} > output 2>&1 - echo "Program : ${PROG} - Time : `date` - Program Output -@@ -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 8eecb6a50c94..000000000000 --- a/databases/msql3/files/patch-ac +++ /dev/null @@ -1,20 +0,0 @@ ---- src/conf/site.mm.in.orig Thu Aug 19 07:33:09 1999 -+++ src/conf/site.mm.in Sat Jan 27 23:48:19 2001 -@@ -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= @LINUX_DYNAMIC@ -@@ -44,5 +44,5 @@ - # Directory for pid file - PID_DIR= @PID_DIR@ - --CFLAGS= -O -I$(TOP)/ $(EXTRA_CFLAGS) -D$(OS_TYPE) -+CFLAGS+= -I$(TOP)/ $(EXTRA_CFLAGS) -D$(OS_TYPE) -fpic -DPIC - 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 fae0da1e6015..000000000000 --- a/databases/msql3/files/patch-ad +++ /dev/null @@ -1,31 +0,0 @@ ---- scripts/make-install.orig Thu Aug 19 07:33:07 1999 -+++ scripts/make-install Sun Jan 28 10:51:13 2001 -@@ -1,16 +1,17 @@ - #!/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/modules -+scripts/mkinstalldirs 0755 $INST_DIR/etc/msql2 -+scripts/mkinstalldirs 0755 /var/spool/msql -+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 /var/spool/msql -+scripts/mkinstalldirs 0755 $INST_DIR/lib/msql -+scripts/mkinstalldirs 0755 $INST_DIR/libexec/msql - diff --git a/databases/msql3/files/patch-ae b/databases/msql3/files/patch-ae deleted file mode 100644 index 4ca7032adbf7..000000000000 --- a/databases/msql3/files/patch-ae +++ /dev/null @@ -1,41 +0,0 @@ ---- src/Makefile.tmpl.orig Thu Aug 19 07:33:07 1999 -+++ src/Makefile.tmpl Sat Jan 27 08:10:08 2001 -@@ -14,7 +14,6 @@ - - - !directory common all,clean,install --!directory regexp all,clean,install - !directory msql all,clean,install - - !directory lang-common all,clean,install -@@ -31,19 +30,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 94faaefc436c..000000000000 --- a/databases/msql3/files/patch-af +++ /dev/null @@ -1,82 +0,0 @@ ---- src/msql/Makefile.tmpl.orig Thu Aug 19 07:33:13 1999 -+++ src/msql/Makefile.tmpl Sun Jan 28 00:11:52 2001 -@@ -34,57 +34,59 @@ - - !dll_os2 msql libmsql.c,net.c,config.c,time.c ../common/strlib.o,../common/tmpnam.o,../common/strerror.o,../common/strptime.o,../common/snprintf.o - !library_unix libmsql.a libmsql.c,net.c,config.c,time.c ../common/strlib.o,../common/tmpnam.o,../common/strerror.o,../common/strptime.o,../common/snprintf.o -- --all: ../lib/libmsql.a -- --../lib/libmsql.a : libmsql.a -- rm -f ../lib/libmsql.a -- cp ../msql/libmsql.a ../lib/libmsql.a -- $(RANLIB) ../lib/libmsql.a -+!slibrary_unix 1 libmsql.so libmsql.c,net.c,config.c,time.c ../common/strlib.o,../common/tmpnam.o,../common/strerror.o,../common/strptime.o,../common/snprintf.o - - - !object msqladmin.o msqladmin.c --!program msqladmin msqladmin.o,acl.o,libmsql.a -+!program msqladmin msqladmin.o,acl.o -L.,-lmsql -+msqladmin: libmsql.so - - !object msql.o msql.c --!program msql msql.o,libmsql.a -+!program msql msql.o -L.,-lmsql -+msql: libmsql.so - - !object msqldump.o msqldump.c --!program msqldump msqldump.o,libmsql.a -+!program msqldump msqldump.o -L.,-lmsql -+msqldump: libmsql.so - - !object msqlexport.o msqlexport.c --!program msqlexport msqlexport.o,libmsql.a -+!program msqlexport msqlexport.o -L.,-lmsql -+msqlexport: libmsql.so - - !object msqlimport.o msqlimport.c --!program msqlimport msqlimport.o,libmsql.a -+!program msqlimport msqlimport.o -L.,-lmsql -+msqlimport: libmsql.so - - !object relshow.o relshow.c --!program relshow relshow.o,libmsql.a -+!program relshow relshow.o -L.,-lmsql -+relshow: libmsql.so - - !object insert_test.o insert_test.c --!program insert_test insert_test.o,libmsql.a -+!program insert_test insert_test.o -L.,-lmsql -+insert_test: libmsql.so - - !object select_test.o select_test.c --!program select_test select_test.o,libmsql.a -- --!program msql2d msqld.o,msql_yacc.o,msql_lex.o,msql_proc.o,net.o,msqldb.o,acl.o,index.o,types.o,regex.o,varchar.o,memory.o,table.o,select.o,cra.o,sort.o,distinct.o,sysvar.o,funct.o,avl_tree.o ../common/debug.o,../common/strtoul.o,-lregexp,libmsql.a -+!program select_test select_test.o -L.,-lmsql -+select_test: libmsql.so - --msql2d: libmsql.a -+!program msql2d msqld.o,msql_yacc.o,msql_lex.o,msql_proc.o,net.o,msqldb.o,acl.o,index.o,types.o,regex.o,varchar.o,memory.o,table.o,select.o,cra.o,sort.o,distinct.o,sysvar.o,funct.o,avl_tree.o ../common/debug.o,../common/strtoul.o,-lcompat,-L.,-lmsql -+msql2d: libmsql.so - - msqld-clean: - rm -f msqld.o msql_yacc.o msql_lex.o msql_proc.o net.o \ - msqldb.o - - !install msql $(INST_DIR)/bin/msql 0755 --!install msql2d $(INST_DIR)/bin/msql2d 0750 $(ROOT) -+!install msql2d $(INST_DIR)/sbin/msql2d 0750 $(ROOT) - !install msqladmin $(INST_DIR)/bin/msqladmin 0750 $(ROOT) - !install msqlexport $(INST_DIR)/bin/msqlexport 0750 $(ROOT) - !install msqlimport $(INST_DIR)/bin/msqlimport 0750 $(ROOT) - !install relshow $(INST_DIR)/bin/relshow 0755 $(ROOT) - !install msqldump $(INST_DIR)/bin/msqldump 0755 $(ROOT) - !libinstall libmsql.a $(INST_DIR)/lib/libmsql.a 744 $(ROOT) -+!slibinstall 1 libmsql.so $(INST_DIR)/lib 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 9f1f6bf41c1a..000000000000 --- a/databases/msql3/files/patch-ag +++ /dev/null @@ -1,25 +0,0 @@ ---- src/msql/config.c.orig Thu Aug 19 07:33:13 1999 -+++ src/msql/config.c Sat Jan 27 07:42:07 2001 -@@ -344,11 +344,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) -@@ -385,7 +385,7 @@ - #endif - - #if defined(_OS_UNIX) -- snprintf(buf,sizeof(buf),"%s/msql.conf", INST_DIR); -+ snprintf(buf,sizeof(buf),"%s/etc/msql2/msql.conf", INST_DIR); - #endif - fp = fopen(buf,"r"); - } 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 b4d54537c56d..000000000000 --- a/databases/msql3/files/patch-ai +++ /dev/null @@ -1,11 +0,0 @@ ---- src/msql/msqld.c.orig Thu Aug 19 07:33:20 1999 -+++ src/msql/msqld.c Sat Jan 27 07:45:13 2001 -@@ -749,7 +749,7 @@ - #endif - #if defined(_OS_UNIX) - { -- snprintf(confFile,sizeof(confFile),"%s/msql.conf", INST_DIR); -+ snprintf(confFile,sizeof(confFile),"%s/etc/msql2/msql.conf", INST_DIR); - } - #endif - printf("\tLoading configuration from '%s'.\n",confFile); diff --git a/databases/msql3/files/patch-aj b/databases/msql3/files/patch-aj deleted file mode 100644 index b8fa906c7d1a..000000000000 --- a/databases/msql3/files/patch-aj +++ /dev/null @@ -1,27 +0,0 @@ ---- misc/msql.conf.orig Thu Aug 19 07:33:07 1999 -+++ misc/msql.conf Sun Jan 28 10:58:01 2001 -@@ -18,12 +18,12 @@ - [general] - - Inst_Dir = _INST_ --DB_Dir = %I/msqldb -+DB_Dir = /var/db/msqldb - mSQL_User = msql - Admin_User = root --Pid_File = %I/msql2d.pid -+Pid_File = /var/spool/msql/msql2d.pid - TCP_Port = 1114 --UNIX_Port = %I/msql2.sock -+UNIX_Port = /var/spool/msql/msql2.sock - - [system] - -@@ -33,7 +33,7 @@ - Remote_Access = False - Local_Access = True - #Query_Log = False --#Query_Log_File = %I/query.log -+#Query_Log_File = /var/spool/msql/query.log - - [w3-msql] - diff --git a/databases/msql3/files/patch-ak b/databases/msql3/files/patch-ak deleted file mode 100644 index 5a8adfa53822..000000000000 --- a/databases/msql3/files/patch-ak +++ /dev/null @@ -1,14 +0,0 @@ ---- src/w3-msql/Makefile.tmpl.orig Thu Aug 19 07:33:22 1999 -+++ src/w3-msql/Makefile.tmpl Sat Jan 27 23:54:43 2001 -@@ -14,9 +14,9 @@ - !object w3-msql.o w3-msql.c - !object w3-auth.o w3-auth.c - --!program w3-msql mod_w3msql.o,w3-msql.o,lexer.o,modules.o,auth.o,http.o,../lang-common/mod_std.o,../lang-common/mod_msql.o,../lang-common/liblite.a,../msql/libmsql.a,../regexp/libregexp.a -+!program w3-msql mod_w3msql.o,w3-msql.o,lexer.o,modules.o,auth.o,http.o ../lang-common/mod_std.o,../lang-common/mod_msql.o,-L../lang-common,-llite,-L../msql,-lmsql,-lcompat - --!program w3-auth w3-auth.o,http.o,../lang-common/fcrypt.o,../msql/libmsql.a -+!program w3-auth w3-auth.o,http.o ../lang-common/fcrypt.o,-L../msql,-lmsql - - - # 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 8b687c88e491..000000000000 --- a/databases/msql3/files/patch-am +++ /dev/null @@ -1,20 +0,0 @@ ---- src/msql/regex.c.orig Thu Aug 19 07:33:20 1999 -+++ src/msql/regex.c Sat Jan 27 09:07:01 2001 -@@ -47,7 +47,7 @@ - #include <common/debug.h> - #include <common/site.h> - #include <common/portability.h> --#include <regexp/regexp.h> -+#include <regexp.h> - - - #if defined(_OS_WIN32) -@@ -440,7 +440,7 @@ - * executor in order to indicate that they have experienced errors. - * In mSQL's case, simply incrementing regErrFlag is all that is needed. - */ --void regerror() -+void regerror(const char *s) - { - regErrFlag++; - } diff --git a/databases/msql3/files/patch-an b/databases/msql3/files/patch-an deleted file mode 100644 index 9b3874846332..000000000000 --- a/databases/msql3/files/patch-an +++ /dev/null @@ -1,11 +0,0 @@ ---- src/msql/sysvar.c.bak Thu Aug 19 07:33:20 1999 -+++ src/msql/sysvar.c Sat Jan 27 08:47:48 2001 -@@ -46,7 +46,7 @@ - #include <common/debug.h> - #include <common/site.h> - #include <common/portability.h> --#include <regexp/regexp.h> -+#include <regexp.h> - - - #if defined(_OS_WIN32) diff --git a/databases/msql3/files/patch-ao b/databases/msql3/files/patch-ao deleted file mode 100644 index a3ca64ea16c4..000000000000 --- a/databases/msql3/files/patch-ao +++ /dev/null @@ -1,11 +0,0 @@ ---- src/msql/types.c.bak Thu Aug 19 07:33:20 1999 -+++ src/msql/types.c Sat Jan 27 08:47:48 2001 -@@ -47,7 +47,7 @@ - #include <common/debug.h> - #include <common/site.h> - #include <common/portability.h> --#include <regexp/regexp.h> -+#include <regexp.h> - - - #if defined(_OS_WIN32) diff --git a/databases/msql3/files/patch-ap b/databases/msql3/files/patch-ap deleted file mode 100644 index ef4ad1c4a1f6..000000000000 --- a/databases/msql3/files/patch-ap +++ /dev/null @@ -1,11 +0,0 @@ ---- src/msql/varchar.c.bak Thu Aug 19 07:33:20 1999 -+++ src/msql/varchar.c Sat Jan 27 08:47:48 2001 -@@ -47,7 +47,7 @@ - #include <common/debug.h> - #include <common/site.h> - #include <common/portability.h> --#include <regexp/regexp.h> -+#include <regexp.h> - - - #if defined(_OS_WIN32) diff --git a/databases/msql3/files/patch-aq b/databases/msql3/files/patch-aq deleted file mode 100644 index 8bbb17ac32c5..000000000000 --- a/databases/msql3/files/patch-aq +++ /dev/null @@ -1,11 +0,0 @@ ---- src/w3-msql/mod_w3msql.c.bak Thu Aug 19 07:33:23 1999 -+++ src/w3-msql/mod_w3msql.c Sat Jan 27 08:51:39 2001 -@@ -35,7 +35,7 @@ - - #include <common/portability.h> - #include "lite.h" --#include "regexp/regexp.h" -+#include <regexp.h> - - #include <time.h> - diff --git a/databases/msql3/files/patch-ar b/databases/msql3/files/patch-ar deleted file mode 100644 index e288ac89def7..000000000000 --- a/databases/msql3/files/patch-ar +++ /dev/null @@ -1,11 +0,0 @@ ---- src/lite/mod_lite.c.bak Thu Aug 19 07:33:12 1999 -+++ src/lite/mod_lite.c Sat Jan 27 08:52:54 2001 -@@ -31,7 +31,7 @@ - #include <sys/socket.h> - - #include "lite.h" --#include "regexp/regexp.h" -+#include <regexp.h> - - #include <time.h> - diff --git a/databases/msql3/files/patch-as b/databases/msql3/files/patch-as deleted file mode 100644 index 0cb02b0b5910..000000000000 --- a/databases/msql3/files/patch-as +++ /dev/null @@ -1,25 +0,0 @@ ---- src/lite/Makefile.tmpl.orig Thu Aug 19 07:33:12 1999 -+++ src/lite/Makefile.tmpl Sun Jan 28 10:44:59 2001 -@@ -13,8 +13,9 @@ - !object mod_lite.o mod_lite.c - !object modules.o modules.c - -+!slibrary_unix 0 mod_lite.so mod_lite.c - --!program lite mod_lite.o,../lang-common/mod_std.o,../lang-common/mod_msql.o,lite.o,lite_lex.o,modules.o,../msql/libmsql.a,../regexp/libregexp.a,../lang-common/liblite.a -+!program lite mod_lite.o,../lang-common/mod_std.o,../lang-common/mod_msql.o,lite.o,lite_lex.o,modules.o -L../msql,-lmsql,-L../lang-common,-llite,-lcompat - - # - # Debugging compilations -@@ -32,8 +33,9 @@ - - - !install lite $(INST_DIR)/bin/lite 0755 --!install lite_lex.o $(INST_DIR)/lib/lite_lex.o 0755 --!install mod_lite.o $(INST_DIR)/lib/mod_lite.o 0755 -+!install lite_lex.o $(INST_DIR)/lib/msql/lite_lex.o 0755 -+!install mod_lite.o $(INST_DIR)/lib/msql/mod_lite.o 0755 -+!install mod_lite.so $(INST_DIR)/libexec/msql/mod_lite.so 0755 - - mod_lite.o: ../lang-common/lite.h - mod_lite.o: ../common/portability.h diff --git a/databases/msql3/files/patch-at b/databases/msql3/files/patch-at deleted file mode 100644 index 77345aa1d9c5..000000000000 --- a/databases/msql3/files/patch-at +++ /dev/null @@ -1,11 +0,0 @@ ---- src/lang-common/code-sim.c.bak Thu Aug 19 07:33:10 1999 -+++ src/lang-common/code-sim.c Sat Jan 27 08:57:29 2001 -@@ -42,7 +42,7 @@ - #include "y.tab.h" - #include "lite.h" - #include "lite_priv.h" --#include "regexp/regexp.h" -+#include <regexp.h> - - extern char *scriptBuf; - extern code_t *codeHead; diff --git a/databases/msql3/files/patch-au b/databases/msql3/files/patch-au deleted file mode 100644 index 88e9cd5203b1..000000000000 --- a/databases/msql3/files/patch-au +++ /dev/null @@ -1,11 +0,0 @@ ---- src/lang-common/mod_std.c.bak Thu Aug 19 07:33:11 1999 -+++ src/lang-common/mod_std.c Sat Jan 27 08:57:29 2001 -@@ -43,7 +43,7 @@ - - #include <common/portability.h> - #include "lite.h" --#include "regexp/regexp.h" -+#include <regexp.h> - - #include <time.h> - #ifdef HAVE_SYS_TIMEB_H diff --git a/databases/msql3/files/patch-av b/databases/msql3/files/patch-av deleted file mode 100644 index 6705fa640c9f..000000000000 --- a/databases/msql3/files/patch-av +++ /dev/null @@ -1,20 +0,0 @@ ---- src/lang-common/types.c.orig Thu Aug 19 07:33:11 1999 -+++ src/lang-common/types.c Sat Jan 27 09:09:39 2001 -@@ -23,7 +23,7 @@ - - #include "lite.h" - #include "y.tab.h" --#include <regexp/regexp.h> -+#include <regexp.h> - - extern char *errMsg; - -@@ -811,7 +811,7 @@ - - - void regerror(msg) -- char *msg; -+ const char *msg; - { - char buf[160]; - diff --git a/databases/msql3/files/patch-aw b/databases/msql3/files/patch-aw deleted file mode 100644 index e0478cb3cc98..000000000000 --- a/databases/msql3/files/patch-aw +++ /dev/null @@ -1,20 +0,0 @@ ---- src/msql/time.c.bak Thu Aug 19 07:33:20 1999 -+++ src/msql/time.c Sat Jan 27 10:12:49 2001 -@@ -239,6 +239,7 @@ - return(-1); - if (year < 100 && strlen(cp2+1) == 2) - { -+#if 0 /* regression test fails otherwise */ - char yearBuf[10]; - struct tm *locTime; - time_t clock; -@@ -248,6 +249,9 @@ - strftime(yearBuf,10,"%Y",locTime); - yearBuf[2] = 0; - year = (atoi(yearBuf) * 100) + year; -+#else -+ year += 1900; -+#endif - } - year += 4096; - diff --git a/databases/msql3/files/patch-ax b/databases/msql3/files/patch-ax deleted file mode 100644 index cf4c890be3dc..000000000000 --- a/databases/msql3/files/patch-ax +++ /dev/null @@ -1,23 +0,0 @@ ---- src/lang-common/Makefile.tmpl.orig Thu Aug 19 07:33:10 1999 -+++ src/lang-common/Makefile.tmpl Sun Jan 28 10:41:37 2001 -@@ -19,11 +19,18 @@ - !object mod_msql.o mod_msql.c - - !library_unix liblite.a symtab.c,types.c,code-gen.c,code-sim.c,extern.c,fcrypt.c,lib.c parser.o -+!slibrary_unix 1 liblite.so symtab.c,types.c,code-gen.c,code-sim.c,extern.c,fcrypt.c,lib.c parser.o - !dll_os2 lite symtab.c,types.c,code-sim.c,extern.c,fcrypt.c,lib.c,code-gen.c,parser.c ../regexp/libregexp.a - -+!slibrary_unix 0 mod_std.so mod_std.c -+!slibrary_unix 0 mod_msql.so mod_msql.c -+ - !libinstall liblite.a $(INST_DIR)/lib/liblite.a 744 $(ROOT) --!install mod_std.o $(INST_DIR)/lib/mod_std.o 744 $(ROOT) --!install mod_msql.o $(INST_DIR)/lib/mod_msql.o 744 $(ROOT) -+!slibinstall 1 liblite.so $(INST_DIR)/lib 744 $(ROOT) -+!install mod_std.o $(INST_DIR)/lib/msql/mod_std.o 744 $(ROOT) -+!install mod_msql.o $(INST_DIR)/lib/msql/mod_msql.o 744 $(ROOT) -+!install mod_std.so $(INST_DIR)/libexec/msql/mod_std.so 744 $(ROOT) -+!install mod_msql.so $(INST_DIR)/libexec/msql/mod_msql.so 744 $(ROOT) - !install mod_std.h $(INST_DIR)/include/mod_std.h 744 $(ROOT) - !install mod_msql.h $(INST_DIR)/include/mod_msql.h 744 $(ROOT) - !install lite.h $(INST_DIR)/include/lite.h 744 $(ROOT) diff --git a/databases/msql3/files/patch-ay b/databases/msql3/files/patch-ay deleted file mode 100644 index a0782434b43c..000000000000 --- a/databases/msql3/files/patch-ay +++ /dev/null @@ -1,11 +0,0 @@ ---- src/lang-common//extern.c.bak Thu Aug 19 07:33:10 1999 -+++ src/lang-common//extern.c Sat Jan 27 10:38:40 2001 -@@ -282,7 +282,7 @@ - #if defined(_OS_OS2) || defined(_OS_WIN32) - sprintf(path,"%s.dll", tmp); - #else -- sprintf(path,"%s/modules/%s.so", INST_DIR,tmp); -+ sprintf(path,"%s/libexec/msql/%s.so", INST_DIR,tmp); - #endif - modPtr = dlopen(path,1); - if (modPtr == NULL) diff --git a/databases/msql3/files/post-install-notes b/databases/msql3/files/post-install-notes deleted file mode 100644 index a6f896f7838c..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 /var/spool/msql/msql2.sock -/usr/local/Hughes/msql2.pid /var/spool/msql/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/files/slibinstall.mm b/databases/msql3/files/slibinstall.mm deleted file mode 100644 index 7349f3e65c41..000000000000 --- a/databases/msql3/files/slibinstall.mm +++ /dev/null @@ -1,27 +0,0 @@ -#!/bin/sh - -. $MACRO_DIR/makegen/makegen.cf - -maj=$1 -src=$2 -destd=$3 -mode=$4 -owner=$5 -group=$6 - -echo "install ::" -echo " cp $src.$maj $destd/$src.$maj" -echo " ln -sf $src.$maj $destd/$src" -if test "$mode." != "." -then - echo " $chmod $mode $destd/$src.$maj" -fi -if test "$owner." = "root." -then - echo " $chown $owner $destd/$src.$maj" -fi -if test "$group." != "." -then - echo " $chgrp $group $destd/$src.$maj" -fi -echo diff --git a/databases/msql3/files/slibrary_unix.mm b/databases/msql3/files/slibrary_unix.mm deleted file mode 100644 index 9d6ea4350d64..000000000000 --- a/databases/msql3/files/slibrary_unix.mm +++ /dev/null @@ -1,51 +0,0 @@ -#!/bin/sh - -. $MACRO_DIR/makegen/makegen.cf - -if test $OS_TYPE != "_OS_UNIX" -then - exit -fi - - -if echo '\c' | grep -s c >/dev/null 2>&1 -then - ECHO_N="echo -n" - ECHO_C="" -else - ECHO_N="echo" - ECHO_C='\c' -fi - - -maj=$1 -lib=$2 -libsrc=`echo $3 | sed "s/,/ /g"` -libobj=`echo $4 | sed "s/,/ /g"` - -for src in $libsrc -do - if test -c /dev/tty - then - $ECHO_N ".$ECHO_C" > /dev/tty - fi - base=`echo $src | sed "s/\..*//"` - obj=`echo $src | sed "s/\.c\$/.o/"` - libobj="$libobj $obj" - echo "$obj : $src Makefile.full" - echo ' $(CC) $(CC_FLAGS) -o '"$obj"' -c '"$src" - echo - echo "clean ::" - echo " rm -f $obj" - echo -done - -echo "all : $lib" -echo -echo "$lib : $libobj Makefile.full" -echo ' $(CC) -shared -Wl,-x '"-o $lib.$maj -Wl,-soname,$lib.$maj $libobj" -echo " ln -sf $lib.$maj $lib" -echo -echo "clean :: " -echo " rm -f $lib $lib.$maj" -echo 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-deinstall b/databases/msql3/pkg-deinstall deleted file mode 100644 index 8275facaa13f..000000000000 --- a/databases/msql3/pkg-deinstall +++ /dev/null @@ -1,15 +0,0 @@ -#!/bin/sh -# $FreeBSD$ -# - -if [ "$2" != "POST-DEINSTALL" ]; then - exit 0 -fi - -USER=msql - -if pw usershow "${USER}" 2>/dev/null 1>&2; then - echo "To delete MSQL user permanently, use 'pw userdel ${USER}'" -fi - -exit 0 diff --git a/databases/msql3/pkg-descr b/databases/msql3/pkg-descr deleted file mode 100644 index 0e5568c6bc14..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 /var/spool/msql/msql2.sock -/usr/local/Hughes/msql2.pid /var/spool/msql/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-install b/databases/msql3/pkg-install deleted file mode 100644 index f140382da510..000000000000 --- a/databases/msql3/pkg-install +++ /dev/null @@ -1,34 +0,0 @@ -#!/bin/sh -# $FreeBSD$ -# - -if [ "$2" != "PRE-INSTALL" ]; then - exit 0 -fi - -USER=msql -GROUP=${USER} -UID=87 -GID=${UID} - -if ! pw groupshow "${GROUP}" 2>/dev/null 1>&2; then - if pw groupadd ${GROUP} -g ${GID}; then - echo "Added group \"${GROUP}\"." - else - echo "Adding group \"${GROUP}\" failed..." - exit 1 - fi -fi - -if ! pw usershow "${USER}" 2>/dev/null 1>&2; then - if pw useradd ${USER} -u ${UID} -g ${GROUP} -h - \ - -s "/bin/sh" -d "/var/db/msqldb" \ - -c "mSQL-2 pseudo-user"; \ - then - echo "Added user \"${USER}\"." - else - echo "Adding user \"${USER}\" failed..." - exit 1 - fi -fi -exit 0 diff --git a/databases/msql3/pkg-plist b/databases/msql3/pkg-plist deleted file mode 100644 index 14a2aa9cb962..000000000000 --- a/databases/msql3/pkg-plist +++ /dev/null @@ -1,116 +0,0 @@ -bin/lite -bin/msql -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 -lib/liblite.a -lib/liblite.so.1 -@exec ln -sf %f %B/liblite.so -@unexec rm -f %B/liblite.so -lib/libmsql.a -lib/libmsql.so.1 -@exec ln -sf %f %B/libmsql.so -@unexec rm -f %B/libmsql.so -lib/msql/lite_lex.o -lib/msql/mod_lite.o -lib/msql/mod_msql.o -lib/msql/mod_std.o -libexec/msql/mod_lite.so -libexec/msql/mod_msql.so -libexec/msql/mod_std.so -sbin/msql2d -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/dll_os2.mm -share/msql/makegen/install.mm -share/msql/makegen/lex.mm -share/msql/makegen/libinstall.mm -share/msql/makegen/library_os2.mm -share/msql/makegen/library_unix.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/slibinstall.mm -share/msql/makegen/slibrary_unix.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/folder.gif -share/msql/www/bookmarks/home.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/setup_bookmark -share/msql/www/bookmarks/wood.gif -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 lib/msql -@dirrm libexec/msql -@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/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++1/Makefile b/databases/mysql++1/Makefile deleted file mode 100644 index d99e4e566eff..000000000000 --- a/databases/mysql++1/Makefile +++ /dev/null @@ -1,42 +0,0 @@ -# ports collection makefile for: MySQL++ -# Date created: 20th July 2000 -# Whom: Miklos Niedermayer <mico@bsd.hu> -# -# $FreeBSD$ -# - -PORTNAME= mysql++ -PORTVERSION= 1.7.9 -CATEGORIES= databases devel -MASTER_SITES= ftp://mysql.omnipotent.net/mysql++/ \ - ftp://ftp.u-aizu.ac.jp/ftp/pub/dbms/mysql/mysql.com/mysql++/ - -MAINTAINER= mico@bsd.hu - -LIB_DEPENDS= mysqlclient.10:${PORTSDIR}/databases/mysql323-client - -USE_GMAKE= yes -HAS_CONFIGURE= yes -CONFIGURE_ENV= CXXFLAGS="${CXXFLAGS} -D_FIX_FOR_BSD_ " -INSTALLS_SHLIB= yes - -pre-configure: - ${RM} ${WRKSRC}/examples/Makefile.in - ${ECHO} "all:" >${WRKSRC}/examples/Makefile.in - ${ECHO} "install:" >>${WRKSRC}/examples/Makefile.in - -do-install: - @${INSTALL_PROGRAM} ${WRKDIR}/${DISTNAME}/sqlplusint/.libs/libsqlplus.so.1 ${PREFIX}/lib - @${INSTALL_DATA} ${WRKDIR}/${DISTNAME}/sqlplusint/.libs/libsqlplus.a ${PREFIX}/lib - @(cd ${PREFIX}/lib && ${RM} -f libsqlplus.so && ${LN} -s libsqlplus.so.1 libsqlplus.so) - @ranlib ${PREFIX}/lib/libsqlplus.a - @mkdir -p ${PREFIX}/share/examples/mysql++ - @mkdir -p ${PREFIX}/share/doc/mysql++ - @${INSTALL_DATA} ${WRKDIR}/${DISTNAME}/examples/*.cc ${PREFIX}/share/examples/mysql++ - @${INSTALL_DATA} ${WRKDIR}/${DISTNAME}/doc/man-text/* ${PREFIX}/share/doc/mysql++ - @mkdir -p ${PREFIX}/include/mysql - @(cd ${WRKDIR}/${DISTNAME}/sqlplusint/; \ - ${INSTALL_DATA} mysql++ defs undef_short define_short *.hh ${PREFIX}/include/mysql) - @${INSTALL_DATA} ${FILESDIR}/README ${PREFIX}/share/examples/mysql++ - -.include <bsd.port.mk> diff --git a/databases/mysql++1/distinfo b/databases/mysql++1/distinfo deleted file mode 100644 index f07fe4cff1c7..000000000000 --- a/databases/mysql++1/distinfo +++ /dev/null @@ -1 +0,0 @@ -MD5 (mysql++-1.7.9.tar.gz) = 1312fb4e33dcce07fac5fa9c2ac801f7 diff --git a/databases/mysql++1/files/README b/databases/mysql++1/files/README deleted file mode 100644 index 531f16962bc8..000000000000 --- a/databases/mysql++1/files/README +++ /dev/null @@ -1,26 +0,0 @@ - - -If you haven't met mysql++ before, please take a look at the documentation -in ../../doc/mysql++ before trying to play with these examples. Thank you. - -To compile a mysql++ program, - - o you have to have libmysqlclient installed on your system. It's - provided by the mysql-client port/package. MySQL++ now needs - MySQL 3.23 client libraries to run, so if you have old 3.22 - libraries, please upgrade them. - - o you have to link your programs with the sqlplus library - - o you have to add "-D_FIX_FOR_BSD_" to your CXXFLAGS environment - - -For example, you can try to compile simple1.cc with something like this - -c++ -D_FIX_FOR_BSD_ -I/usr/local/include/mysql -L/usr/local/lib -lsqlplus simple1.cc -o simple1 - - -Happy mysql++'ing. - - -Miklos Niedermayer (mico@bsd.hu) - diff --git a/databases/mysql++1/pkg-comment b/databases/mysql++1/pkg-comment deleted file mode 100644 index d7202308aeb9..000000000000 --- a/databases/mysql++1/pkg-comment +++ /dev/null @@ -1 +0,0 @@ -Complex C++ API for MySQL diff --git a/databases/mysql++1/pkg-descr b/databases/mysql++1/pkg-descr deleted file mode 100644 index 31e6d161eea8..000000000000 --- a/databases/mysql++1/pkg-descr +++ /dev/null @@ -1,5 +0,0 @@ - Mysql++ is a complex C++ API for Mysql (And other SQL Databases Soon). - The goal of this API is too make working with Queries as easy as - working with other STL Containers. - - WWW: http://www.mysql.com/download_mysql++.html diff --git a/databases/mysql++1/pkg-plist b/databases/mysql++1/pkg-plist deleted file mode 100644 index f4cf401b8025..000000000000 --- a/databases/mysql++1/pkg-plist +++ /dev/null @@ -1,117 +0,0 @@ -include/mysql/mysql++ -include/mysql/defs -include/mysql/define_short -include/mysql/undef_short -include/mysql/bad_query.hh -include/mysql/coldata1.hh -include/mysql/coldata2.hh -include/mysql/coldata3.hh -include/mysql/coldata4.hh -include/mysql/compare1.hh -include/mysql/compare2.hh -include/mysql/compare3.hh -include/mysql/connection0.hh -include/mysql/connection1.hh -include/mysql/connection2.hh -include/mysql/connection3.hh -include/mysql/const_string1.hh -include/mysql/const_string2.hh -include/mysql/const_string3.hh -include/mysql/convert1.hh -include/mysql/convert2.hh -include/mysql/convert3.hh -include/mysql/custom-macros.hh -include/mysql/custom.hh -include/mysql/fields1.hh -include/mysql/datetime1.hh -include/mysql/datetime2.hh -include/mysql/datetime3.hh -include/mysql/exceptions.hh -include/mysql/field_names1.hh -include/mysql/field_names2.hh -include/mysql/field_names3.hh -include/mysql/field_types1.hh -include/mysql/field_types2.hh -include/mysql/field_types3.hh -include/mysql/fields2.hh -include/mysql/manip1.hh -include/mysql/manip2.hh -include/mysql/manip3.hh -include/mysql/null1.hh -include/mysql/null2.hh -include/mysql/null3.hh -include/mysql/query1.hh -include/mysql/query2.hh -include/mysql/query3.hh -include/mysql/resiter1.hh -include/mysql/result1.hh -include/mysql/result2.hh -include/mysql/result3.hh -include/mysql/row1.hh -include/mysql/row2.hh -include/mysql/row3.hh -include/mysql/set1.hh -include/mysql/set2.hh -include/mysql/set3.hh -include/mysql/sql_query0.hh -include/mysql/sql_query1.hh -include/mysql/sql_query2.hh -include/mysql/sql_query3.hh -include/mysql/sql_string1.hh -include/mysql/sql_string2.hh -include/mysql/sql_string3.hh -include/mysql/sqlplus.hh -include/mysql/stream2string1.hh -include/mysql/stream2string2.hh -include/mysql/stream2string3.hh -include/mysql/string_util.hh -include/mysql/tiny_int1.hh -include/mysql/tiny_int2.hh -include/mysql/tiny_int3.hh -include/mysql/type_info1.hh -include/mysql/type_info2.hh -include/mysql/type_info3.hh -include/mysql/vallist1.hh -include/mysql/vallist2.hh -include/mysql/vallist3.hh -lib/libsqlplus.so.1 -lib/libsqlplus.a -lib/libsqlplus.so -share/doc/mysql++/1_Introduction.txt -share/doc/mysql++/2_Overview.txt -share/doc/mysql++/3_Important.txt -share/doc/mysql++/4_Tutorial.txt -share/doc/mysql++/5_Class.txt -share/doc/mysql++/6_Template.txt -share/doc/mysql++/7_Specialized.txt -share/doc/mysql++/8_Long.txt -share/doc/mysql++/A_Changelog.txt -share/doc/mysql++/About_this.txt -share/doc/mysql++/Appendices.txt -share/doc/mysql++/B_Do.txt -share/doc/mysql++/C_Credits.txt -share/doc/mysql++/Contents.txt -share/doc/mysql++/D_Copyright.txt -share/doc/mysql++/E_Feedback.txt -share/doc/mysql++/Introductory_Material.txt -share/doc/mysql++/Usage.txt -share/doc/mysql++/index.txt -share/doc/mysql++/manual.txt -share/examples/mysql++/cgi_image.cc -share/examples/mysql++/complic1.cc -share/examples/mysql++/custom1.cc -share/examples/mysql++/custom2.cc -share/examples/mysql++/custom3.cc -share/examples/mysql++/custom4.cc -share/examples/mysql++/fieldinf1.cc -share/examples/mysql++/load_file.cc -share/examples/mysql++/populate.cc -share/examples/mysql++/resetdb.cc -share/examples/mysql++/simple1.cc -share/examples/mysql++/sinisa_ex.cc -share/examples/mysql++/updel_x_.cc -share/examples/mysql++/util.cc -share/examples/mysql++/README -@unexec rmdir include/mysql 2>/dev/null || true -@dirrm share/doc/mysql++ -@dirrm share/examples/mysql++ diff --git a/databases/mysql-connector-java/Makefile b/databases/mysql-connector-java/Makefile deleted file mode 100644 index 2f155735abb5..000000000000 --- a/databases/mysql-connector-java/Makefile +++ /dev/null @@ -1,33 +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://mmmysql.sourceforge.net/dist/ -DISTNAME= mm.mysql.jdbc-${PORTVERSION} - -MAINTAINER= dglo@SSEC.WISC.EDU - -BUILD_DEPENDS= ${LOCALBASE}/jdk1.1.8/bin/javac:${PORTSDIR}/java/jdk - -ALL_TARGET= jar - -do-install: - @${MKDIR} ${PREFIX}/share/java/classes - @${INSTALL_DATA} ${WRKSRC}/mysql_comp.jar ${LOCALBASE}/share/java/classes - -post-install: -.if !defined(NOPORTDOCS) - @${MKDIR} ${PREFIX}/share/doc/mysql-jdbc - @(cd ${WRKSRC}/doc && ${TAR} -c -f - .) \ - | (cd ${PREFIX}/share/doc/mysql-jdbc && ${TAR} --unlink -x -f -) - @(cd ${PREFIX} \ - && find share/doc/mysql-jdbc -type f -print >> ${TMPPLIST}) -.endif - -.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-Makefile b/databases/mysql-connector-java/files/patch-Makefile deleted file mode 100644 index 6d64d84b104c..000000000000 --- a/databases/mysql-connector-java/files/patch-Makefile +++ /dev/null @@ -1,21 +0,0 @@ ---- Makefile.orig Sun May 27 12:10:22 2001 -+++ Makefile Sun May 27 12:16:18 2001 -@@ -3,14 +3,16 @@ - # $Id: Makefile,v 1.2 1998/08/25 04:02:25 mmatthew Exp $ - # - --JAVAC = /usr/local/jdk118/bin/javac -+JAVA_HOME = /usr/local/jdk1.1.8 -+JAVAC = JAVA_HOME=$(JAVA_HOME) CLASSPATH= $(JAVA_HOME)/bin/javac -+JAR = JAVA_HOME=$(JAVA_HOME) CLASSPATH= $(JAVA_HOME)/bin/jar - JAVAC_FLAGS =-O -g - - all: - $(JAVAC) $(JAVAC_FLAGS) org/gjt/mm/mysql/*.java - - jar: all -- jar -cv0f mysql_uncomp.jar org/gjt/mm/mysql/*.class; jar -cvf mysql_comp.jar org/gjt/mm/mysql/*.class -+ $(JAR) -cv0f mysql_uncomp.jar org/gjt/mm/mysql/*.class; $(JAR) -cvf mysql_comp.jar org/gjt/mm/mysql/*.class - - clean: - rm -f org/gjt/mm/mysql/*.class org/gjt/mm/mysql/*~ 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 2f155735abb5..000000000000 --- a/databases/mysql-connector-java50/Makefile +++ /dev/null @@ -1,33 +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://mmmysql.sourceforge.net/dist/ -DISTNAME= mm.mysql.jdbc-${PORTVERSION} - -MAINTAINER= dglo@SSEC.WISC.EDU - -BUILD_DEPENDS= ${LOCALBASE}/jdk1.1.8/bin/javac:${PORTSDIR}/java/jdk - -ALL_TARGET= jar - -do-install: - @${MKDIR} ${PREFIX}/share/java/classes - @${INSTALL_DATA} ${WRKSRC}/mysql_comp.jar ${LOCALBASE}/share/java/classes - -post-install: -.if !defined(NOPORTDOCS) - @${MKDIR} ${PREFIX}/share/doc/mysql-jdbc - @(cd ${WRKSRC}/doc && ${TAR} -c -f - .) \ - | (cd ${PREFIX}/share/doc/mysql-jdbc && ${TAR} --unlink -x -f -) - @(cd ${PREFIX} \ - && find share/doc/mysql-jdbc -type f -print >> ${TMPPLIST}) -.endif - -.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-Makefile b/databases/mysql-connector-java50/files/patch-Makefile deleted file mode 100644 index 6d64d84b104c..000000000000 --- a/databases/mysql-connector-java50/files/patch-Makefile +++ /dev/null @@ -1,21 +0,0 @@ ---- Makefile.orig Sun May 27 12:10:22 2001 -+++ Makefile Sun May 27 12:16:18 2001 -@@ -3,14 +3,16 @@ - # $Id: Makefile,v 1.2 1998/08/25 04:02:25 mmatthew Exp $ - # - --JAVAC = /usr/local/jdk118/bin/javac -+JAVA_HOME = /usr/local/jdk1.1.8 -+JAVAC = JAVA_HOME=$(JAVA_HOME) CLASSPATH= $(JAVA_HOME)/bin/javac -+JAR = JAVA_HOME=$(JAVA_HOME) CLASSPATH= $(JAVA_HOME)/bin/jar - JAVAC_FLAGS =-O -g - - all: - $(JAVAC) $(JAVAC_FLAGS) org/gjt/mm/mysql/*.java - - jar: all -- jar -cv0f mysql_uncomp.jar org/gjt/mm/mysql/*.class; jar -cvf mysql_comp.jar org/gjt/mm/mysql/*.class -+ $(JAR) -cv0f mysql_uncomp.jar org/gjt/mm/mysql/*.class; $(JAR) -cvf mysql_comp.jar org/gjt/mm/mysql/*.class - - clean: - rm -f org/gjt/mm/mysql/*.class org/gjt/mm/mysql/*~ 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 3995532fb655..000000000000 --- a/databases/mysql-connector-odbc/Makefile +++ /dev/null @@ -1,52 +0,0 @@ -# New ports collection makefile for: MyODBC -# Date created: 24 Oct 2000 -# Whom: ebakke@trolltech.com -# -# $FreeBSD$ -# - -PORTNAME= myodbc -PORTVERSION= 2.50.39 -CATEGORIES= databases -MASTER_SITES= http://www.mysql.com/Downloads/MyODBC/ \ - ftp://sunsite.dk/mirrors/mysql/Downloads/MyODBC/ \ - ftp://ftp.sunet.se/pub/unix/databases/relational/mysql/Downloads/MyODBC/ -DISTNAME= MyODBC-${PORTVERSION} - -MAINTAINER= ebakke@trolltech.com - -LIB_DEPENDS= mysqlclient.10:${PORTSDIR}/databases/mysql323-client - -USE_GMAKE= yes -USE_LIBTOOL= yes -CONFIGURE_ARGS= --with-mysql-libs=${LOCALBASE}/lib/mysql \ - --with-mysql-includes=${LOCALBASE}/include/mysql - -# MyODBC needs an ODBC driver manager to be installed, and it supports both -# iODBC and unixODBC. The following variable may be set at built-time to -# either "iodbc" or "unixodbc", with the former being the default: -DRIVER_MANAGER?= iodbc - -.if ${DRIVER_MANAGER} == "unixodbc" -CONFIGURE_ARGS+= --with-odbc-ini=${LOCALBASE}/etc/odbc.ini -LIB_DEPENDS+= odbc.1:${PORTSDIR}/databases/unixODBC -.else # assume we're using iodbc -LIB_DEPENDS+= iodbc.3:${PORTSDIR}/databases/libiodbc -CONFIGURE_ARGS+= --with-odbc-ini=${LOCALBASE}/etc/libiodbc/odbc.ini -.endif - -# XXX untested -.if defined(STATIC) -CONFIGURE_ARGS+= --enable-shared=no \ - --enable-static=yes -.endif - -post-install: -.if !defined(NOPORTDOCS) - @ ${MKDIR} ${DOCSDIR} -# Install the INSTALL file as well, since it describes how to set up odbc.ini - @ ${INSTALL_DATA} ${WRKSRC}/INSTALL ${DOCSDIR} - @ ${INSTALL_DATA} ${WRKSRC}/README ${DOCSDIR} -.endif - -.include <bsd.port.mk> diff --git a/databases/mysql-connector-odbc/distinfo b/databases/mysql-connector-odbc/distinfo deleted file mode 100644 index 33bfd6b55c83..000000000000 --- a/databases/mysql-connector-odbc/distinfo +++ /dev/null @@ -1 +0,0 @@ -MD5 (MyODBC-2.50.39.tar.gz) = 30765641c87b7fc2c2c67dcf1cb85d7a 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 611162a7817d..000000000000 --- a/databases/mysql-connector-odbc/pkg-descr +++ /dev/null @@ -1,4 +0,0 @@ -MyODBC is an ODBC driver for interfacing to MySQL databases. - -- Erik H. Bakke -WWW: http://www.mysql.com/ diff --git a/databases/mysql-connector-odbc/pkg-plist b/databases/mysql-connector-odbc/pkg-plist deleted file mode 100644 index bce42920d496..000000000000 --- a/databases/mysql-connector-odbc/pkg-plist +++ /dev/null @@ -1,5 +0,0 @@ -%%PORTDOCS%%share/doc/myodbc/INSTALL -%%PORTDOCS%%share/doc/myodbc/README -lib/libmyodbc-2.50.39.so -lib/libmyodbc.so -%%PORTDOCS%%@dirrm share/doc/myodbc diff --git a/databases/mysql40-client/Makefile b/databases/mysql40-client/Makefile deleted file mode 100644 index b5f3065ac95f..000000000000 --- a/databases/mysql40-client/Makefile +++ /dev/null @@ -1,18 +0,0 @@ -# ports collection makefile for: MySQL-client -# Date created: Sun Sep 24 21:21:20 CEST 2000 -# Whom: Dirk Froemberg <dirk@FreeBSD.org> -# -# $FreeBSD$ -# - -PORTNAME= mysql-client -PORTREVISION= 0 - -MASTERDIR= ${.CURDIR}/../mysql323-server -COMMENT= ${PKGDIR}/pkg-comment.client -PKGINSTALL= mustnotexist -PLIST= ${PKGDIR}/pkg-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 572e1e6bb938..000000000000 --- a/databases/mysql40-server/Makefile +++ /dev/null @@ -1,173 +0,0 @@ -# ports collection makefile for: MySQL-server -# Date created: Sun Sep 24 21:20:46 CEST 2000 -# Whom: Dirk Froemberg <dirk@FreeBSD.org> -# -# $FreeBSD$ -# - -PORTNAME?= ${MASTERPORTNAME} -PORTVERSION= 3.23.47 -PORTREVISION?= 0 -CATEGORIES= databases -MASTER_SITES= ${MASTER_SITE_SOURCEFORGE} \ - http://www.kernelnotes.de/MySQL/Downloads/MySQL-3.23/ \ - http://mysql.he.net/Downloads/MySQL-3.23/ \ - ftp://ftp.sunet.se/pub/unix/databases/relational/mysql/Downloads/MySQL-3.23/ -MASTER_SITE_SUBDIR= mirrors/mysql/Downloads/MySQL-3.23 -DISTFILES= mysql-${PORTVERSION}${EXTRACT_SUFX} - -MAINTAINER= dirk@FreeBSD.org - -WRKSRC= ${WRKDIR}/mysql-${PORTVERSION} -SLAVEDIRS= databases/mysql323-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 \ - --with-mit-threads=no \ - --with-libwrap \ - --with-low-memory \ - --with-comment='FreeBSD port: ${PKGNAME}' - -.if ${MACHINE_ARCH} == "i386" -CONFIGURE_ARGS+=--enable-assembler --with-berkeley-db --with-innodb -.endif -.if defined(WITH_CHARSET) && ${WITH_CHARSET} != "" -CONFIGURE_ARGS+=--with-charset=${WITH_CHARSET} -.if defined(WITH_XCHARSET) && ${WITH_XCHARSET} != "" -CONFIGURE_ARGS+=--with-extra-charsets=${WITH_XCHARSET} -.endif -.endif -.if defined(BUILD_STATIC) -CONFIGURE_ARGS+=--with-mysqld-ldflags=--static -.endif -.if defined(BUILD_OPTIMIZED) -CFLAGS+= -mcpu=pentiumpro -O3 -.endif -.if defined(WITH_LINUXTHREADS) -CONFIGURE_ARGS+=--with-named-thread-libs='-DHAVE_GLIBC2_STYLE_GETHOSTBYNAME_R -D_THREAD_SAFE -I${LOCALBASE}/include/pthread/linuxthreads -L${LOCALBASE}/lib -llthread -llgcc_r' -CFLAGS+= -D__USE_UNIX98 -D_REENTRANT -D_THREAD_SAFE -I${LOCALBASE}/include/pthread/linuxthreads -LIB_DEPENDS+= lthread.2:${PORTSDIR}/devel/linuxthreads -.endif -CONFIGURE_ENV+= PERL=${PERL} \ - PERL5=${PERL} \ - INSTALL_SCRIPT="${INSTALL_SCRIPT}" \ - CXX="${CC}" \ - CFLAGS="${CFLAGS}" \ - CONFIGURE_ARGS="${CONFIGURE_ARGS}" - -.include <bsd.port.pre.mk> -# without including these flags mysqld may crash under heavy load -# and multiple connections at the same time -CXXFLAGS= ${CFLAGS} -felide-constructors -fno-rtti -.if ${OSVERSION} >= 400002 -CXXFLAGS+= -fno-exceptions -.endif - -# MySQL-Server part -.if !defined(CLIENT_ONLY) -RUN_DEPENDS= mysql:${PORTSDIR}/databases/mysql323-client \ - ${LOCALBASE}/lib/perl5/site_perl/${PERL_VER}/${PERL_ARCH}/Mysql.pm:${PORTSDIR}/databases/p5-Mysql - -PLIST_SUB= MYSQL_VERSION=${PORTVERSION} - -pre-fetch: - @${ECHO} "" - @${ECHO} "You may use the following build options:" - @${ECHO} "" - @${ECHO} " WITH_CHARSET=charset define the primary built-in charset (latin1);" - @${ECHO} " WITH_XCHARSET=list define other built-in charsets (may be 'all');" - @${ECHO} " DB_DIR=directory Set alternate directory for database files" - @${ECHO} " (default is /var/db/mysql)." - @${ECHO} " WITH_LINUXTHREADS=yes Use the linuxthreads pthread library." - @${ECHO} " This is _NOT_ recommended for production" - @${ECHO} " servers. Expect problems when enabled." - @${ECHO} " SKIP_INSTALL_DB=yes Skip mysql_install_db" - @${ECHO} " (i. e. leave ${DB_DIR} alone)." - @${ECHO} " This is useful for upgrades." - @${ECHO} " Be sure to know what you are doing!" - @${ECHO} " SKIP_DNS_CHECK=yes don't run resolveip to do an additional" - @${ECHO} " DNS check before inserting local hostname to" - @${ECHO} " mysql database." - @${ECHO} " Use if your machine has no offical DNS entry." - @${ECHO} " BUILD_STATIC=yes Build a static version of mysqld." - @${ECHO} " BUILD_OPTIMIZED=yes Add -mcpu=pentiumpro -O3 to CFLAGS." - @${ECHO} " This setting may produce broken code and thus" - @${ECHO} " is not recommended for production servers." - @${ECHO} "" - -post-patch: - ${MV} ${WRKSRC}/strings/strings-x86.s ${WRKSRC}/strings/strings-x86.S - ${MV} ${WRKSRC}/strings/longlong2str-x86.s ${WRKSRC}/strings/longlong2str-x86.S - -.if exists(${DB_DIR}) && !defined(PACKAGE_BUILDING) && !defined(OVERWRITE_DB) && !defined(SKIP_INSTALL_DB) -pre-install: - @${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) -.if !defined(SKIP_INSTALL_DB) -.if defined(SKIP_DNS_CHECK) - ${PREFIX}/bin/mysql_install_db --force -.else - ${PREFIX}/bin/mysql_install_db -.endif -.endif - @${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/Flags -.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/Flags/*.gif ${PREFIX}/share/doc/mysql/Flags - ${INSTALL_DATA} ${WRKSRC}/Docs/mysql.info ${PREFIX}/info - @install-info ${PREFIX}/info/mysql.info ${PREFIX}/info/dir -.endif - -# MySQL-Client part -.else -MAN1= isamchk.1 isamlog.1 mysql.1 mysql_zap.1 mysqlaccess.1 \ - mysqladmin.1 mysqld.1 mysqld_multi.1 mysqldump.1 mysqlshow.1 \ - perror.1 replace.1 safe_mysqld.1 - -INSTALLS_SHLIB= yes -LDCONFIG_DIRS= %%PREFIX%%/lib/mysql - -CONFIGURE_ARGS+=--without-server -MAKE_ENV= CLIENT_ONLY="${CLIENT_ONLY}" - -post-install: - @${SED} "s|%%PREFIX%%|${PREFIX}|g" < ${FILESDIR}/mysql-client.sh > ${PREFIX}/etc/rc.d/00mysql-client.sh - @${CHMOD} 750 ${PREFIX}/etc/rc.d/00mysql-client.sh - -.endif - -# This is for the maintainer only... -make-plist: - /usr/bin/find foo -type f -or -type l | /usr/bin/cut -d / -f 2- | /usr/bin/sort > ${.CURDIR}/pkg-plist.new - /usr/bin/perl -i -ne 'if (m#share/doc/#) { print "%%PORTDOCS%%", $$_; } else { print $$_; }' ${.CURDIR}/pkg-plist.new - -.include <bsd.port.post.mk> diff --git a/databases/mysql40-server/distinfo b/databases/mysql40-server/distinfo deleted file mode 100644 index d852db9ca3e8..000000000000 --- a/databases/mysql40-server/distinfo +++ /dev/null @@ -1 +0,0 @@ -MD5 (mysql-3.23.47.tar.gz) = e733474825fb158f876f3d97e996a341 diff --git a/databases/mysql40-server/files/mysql-client.sh b/databases/mysql40-server/files/mysql-client.sh deleted file mode 100644 index bef414c12ed2..000000000000 --- a/databases/mysql40-server/files/mysql-client.sh +++ /dev/null @@ -1,15 +0,0 @@ -#!/bin/sh - -case "$1" in - start) - /sbin/ldconfig -m %%PREFIX%%/lib/mysql - ;; - stop) - ;; - *) - echo "" - echo "Usage: `basename $0` { start | stop }" - echo "" - exit 64 - ;; -esac 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 bed75f614ccc..000000000000 --- a/databases/mysql40-server/files/patch-Makefile.in +++ /dev/null @@ -1,16 +0,0 @@ ---- Makefile.in.orig Wed Apr 18 10:54:42 2001 -+++ Makefile.in Sat Apr 21 13:00:23 2001 -@@ -181,8 +181,12 @@ - # These are built from source in the Docs directory - EXTRA_DIST = INSTALL-SOURCE README COPYING COPYING.LIB MIRRORS - --SUBDIRS = include @docs_dirs@ @readline_dir@ @thread_dirs@ @sql_client_dirs@ @sql_server_dirs@ scripts tests man @bench_dirs@ support-files - -+.if defined(CLIENT_ONLY) -+SUBDIRS = include @readline_dir@ @sql_client_dirs@ tests man -+.else -+SUBDIRS = include @thread_dirs@ @docs_dirs@ @sql_server_dirs@ scripts support-files -+.endif - - # Relink after clean - CLEANFILES = linked_client_sources linked_server_sources linked_libmysql_sources linked_libmysql_r_sources linked_include_sources diff --git a/databases/mysql40-server/files/patch-ab b/databases/mysql40-server/files/patch-ab deleted file mode 100644 index 2aa8724dd21f..000000000000 --- a/databases/mysql40-server/files/patch-ab +++ /dev/null @@ -1,15 +0,0 @@ ---- scripts/mysql_install_db.sh.orig Sat Dec 16 22:49:02 2000 -+++ scripts/mysql_install_db.sh Mon Dec 18 11:55:07 2000 -@@ -301,12 +301,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 -p password 'new-password'" diff --git a/databases/mysql40-server/files/patch-af b/databases/mysql40-server/files/patch-af deleted file mode 100644 index 9c4a0b951402..000000000000 --- a/databases/mysql40-server/files/patch-af +++ /dev/null @@ -1,71 +0,0 @@ ---- scripts/safe_mysqld.sh.orig Thu Apr 19 10:11:02 2001 -+++ scripts/safe_mysqld.sh Thu Apr 19 15:15:54 2001 -@@ -73,30 +73,9 @@ - done - } - --MY_PWD=`pwd` --# Check if we are starting this relative (for the binary release) --if test -d $MY_PWD/data/mysql -a -f ./share/mysql/english/errmsg.sys -a \ -- -x ./bin/mysqld --then -- MY_BASEDIR_VERSION=$MY_PWD # Where bin, share and data are -- ledir=$MY_BASEDIR_VERSION/bin # Where mysqld is -- DATADIR=$MY_BASEDIR_VERSION/data -- if test -z "$defaults" -- then -- defaults="--defaults-extra-file=$MY_BASEDIR_VERSION/data/my.cnf" -- fi --# 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=$MY_PWD # Where libexec, share and var are -- ledir=$MY_BASEDIR_VERSION/libexec # Where mysqld is -- DATADIR=$MY_BASEDIR_VERSION/var --else -- MY_BASEDIR_VERSION=@prefix@ -- DATADIR=@localstatedir@ -- ledir=@libexecdir@ --fi -+MY_BASEDIR_VERSION=@prefix@ -+DATADIR=@localstatedir@ -+ledir=@libexecdir@ - - MYSQL_UNIX_PORT=${MYSQL_UNIX_PORT:-@MYSQL_UNIX_ADDR@} - MYSQL_TCP_PORT=${MYSQL_TCP_PORT:-@MYSQL_TCP_PORT@} -@@ -240,34 +219,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 xa | 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 xa | 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 "`date +'%y%m%d %H:%M:%S mysqld restarted'`" | tee -a $err_log 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-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 f10ab97c44a8..000000000000 --- a/databases/mysql40-server/files/patch-configure +++ /dev/null @@ -1,132 +0,0 @@ ---- configure.orig Wed May 9 22:34:50 2001 -+++ configure Sat May 12 11:23:21 2001 -@@ -2994,7 +2994,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 -@@ -3128,38 +3128,7 @@ - echo $ac_n "checking "how to check if pid exists"""... $ac_c" 1>&6 - echo "configure:3130: 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 -- case $SYSTEM_TYPE in -- *darwin*) -- FIND_PROC="$PS -uaxww | grep mysqld | grep \" \$\$PID \" > /dev/null" -- ;; -- *cygwin*) -- FIND_PROC="$PS -e | grep mysqld | grep \" \$\$PID \" > /dev/null" -- ;; -- *) -- { 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; } -- esac --fi -+FIND_PROC="$PS -uaxww | grep mysqld | grep \" \$\$PID \" > /dev/null" - - echo "$ac_t"""$FIND_PROC"" 1>&6 - -@@ -5922,7 +5891,6 @@ - #define $ac_tr_lib 1 - EOF - -- LIBS="-lc_r $LIBS" - - else - echo "$ac_t""no" 1>&6 -@@ -6154,28 +6122,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="$MAX_C_OPTIMIZE" --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" -@@ -6856,10 +6802,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 6866 "configure" -@@ -9019,10 +8961,6 @@ - #do not treat warnings as errors if we are linking agaist other libc - #this is to work around gcc not being permissive on non-system includes - #with respect to ANSI C++ --if test "$ac_cv_prog_gxx" = "yes" -a "$with_other_libc" = "no" --then -- CXXFLAGS="$CXXFLAGS -Werror" --fi - cat > conftest.$ac_ext <<EOF - #line 9028 "configure" - #include "confdefs.h" -@@ -9087,10 +9025,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" -a "$with_other_libc" = "no" --then -- CXXFLAGS="$CXXFLAGS -Werror" --fi - cat > conftest.$ac_ext <<EOF - #line 9096 "configure" - #include "confdefs.h" -@@ -9154,10 +9088,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" -a "$with_other_libc" = "no" --then -- CXXFLAGS="$CXXFLAGS -Werror" --fi - cat > conftest.$ac_ext <<EOF - #line 9163 "configure" - #include "confdefs.h" 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 eb2d5e52e794..000000000000 --- a/databases/mysql40-server/files/patch-include::Makefile.in +++ /dev/null @@ -1,14 +0,0 @@ ---- include/Makefile.in.orig Mon Jan 22 14:43:55 2001 -+++ include/Makefile.in Mon Jan 22 23:14:48 2001 -@@ -284,7 +284,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 8f4acf36e853..000000000000 --- a/databases/mysql40-server/pkg-descr +++ /dev/null @@ -1,4 +0,0 @@ -MySQL is a very fast, multi-threaded, multi-user and robust SQL -(Structured Query Language) database server. - -WWW: http://www.mysql.com/ diff --git a/databases/mysql40-server/pkg-install b/databases/mysql40-server/pkg-install deleted file mode 100644 index 27732bf35c89..000000000000 --- a/databases/mysql40-server/pkg-install +++ /dev/null @@ -1,48 +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." - if pw usermod ${USER} -d ${DB_DIR} - then - echo "Changed home directory of \"${USER}\" to \"${DB_DIR}\"" - else - echo "Changing home directory of \"${USER}\" to \"${DB_DIR}\" failed..." - exit 1 - fi - 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 7a482d60bc34..000000000000 --- a/databases/mysql40-server/pkg-plist +++ /dev/null @@ -1,195 +0,0 @@ -bin/comp_err -bin/isamchk -bin/isamlog -bin/msql2mysql -bin/my_print_defaults -bin/myisamchk -bin/myisamlog -bin/myisampack -bin/mysql_config -bin/mysql_convert_table_format -bin/mysql_find_rows -bin/mysql_fix_privilege_tables -bin/mysql_install_db -bin/mysql_setpermission -bin/mysql_zap -bin/mysqlaccess -bin/mysqlbug -bin/mysqld_multi -bin/mysqldumpslow -bin/mysqlhotcopy -bin/pack_isam -bin/perror -bin/replace -bin/resolve_stack_dump -bin/resolveip -bin/safe_mysqld -etc/rc.d/mysql-server.sh -%%PORTDOCS%%@unexec install-info --delete %D/info/mysql.info %D/info/dir -%%PORTDOCS%%info/mysql.info -%%PORTDOCS%%@exec install-info %D/info/mysql.info %D/info/dir -lib/mysql/libdbug.a -lib/mysql/libheap.a -lib/mysql/libmerge.a -lib/mysql/libmyisam.a -lib/mysql/libmyisammrg.a -lib/mysql/libmystrings.a -lib/mysql/libmysys.a -lib/mysql/libnisam.a -libexec/mysqld -%%PORTDOCS%%share/doc/mysql/Flags/argentina.gif -%%PORTDOCS%%share/doc/mysql/Flags/australia.gif -%%PORTDOCS%%share/doc/mysql/Flags/austria.gif -%%PORTDOCS%%share/doc/mysql/Flags/brazil.gif -%%PORTDOCS%%share/doc/mysql/Flags/bulgaria.gif -%%PORTDOCS%%share/doc/mysql/Flags/canada.gif -%%PORTDOCS%%share/doc/mysql/Flags/chile.gif -%%PORTDOCS%%share/doc/mysql/Flags/china.gif -%%PORTDOCS%%share/doc/mysql/Flags/croatia.gif -%%PORTDOCS%%share/doc/mysql/Flags/czech-republic.gif -%%PORTDOCS%%share/doc/mysql/Flags/denmark.gif -%%PORTDOCS%%share/doc/mysql/Flags/estonia.gif -%%PORTDOCS%%share/doc/mysql/Flags/finland.gif -%%PORTDOCS%%share/doc/mysql/Flags/france.gif -%%PORTDOCS%%share/doc/mysql/Flags/germany.gif -%%PORTDOCS%%share/doc/mysql/Flags/great-britain.gif -%%PORTDOCS%%share/doc/mysql/Flags/greece.gif -%%PORTDOCS%%share/doc/mysql/Flags/hungary.gif -%%PORTDOCS%%share/doc/mysql/Flags/iceland.gif -%%PORTDOCS%%share/doc/mysql/Flags/indonesia.gif -%%PORTDOCS%%share/doc/mysql/Flags/ireland.gif -%%PORTDOCS%%share/doc/mysql/Flags/island.gif -%%PORTDOCS%%share/doc/mysql/Flags/israel.gif -%%PORTDOCS%%share/doc/mysql/Flags/italy.gif -%%PORTDOCS%%share/doc/mysql/Flags/japan.gif -%%PORTDOCS%%share/doc/mysql/Flags/kroatia.gif -%%PORTDOCS%%share/doc/mysql/Flags/latvia.gif -%%PORTDOCS%%share/doc/mysql/Flags/netherlands.gif -%%PORTDOCS%%share/doc/mysql/Flags/poland.gif -%%PORTDOCS%%share/doc/mysql/Flags/portugal.gif -%%PORTDOCS%%share/doc/mysql/Flags/romania.gif -%%PORTDOCS%%share/doc/mysql/Flags/russia.gif -%%PORTDOCS%%share/doc/mysql/Flags/singapore.gif -%%PORTDOCS%%share/doc/mysql/Flags/south-africa.gif -%%PORTDOCS%%share/doc/mysql/Flags/south-africa1.gif -%%PORTDOCS%%share/doc/mysql/Flags/south-korea.gif -%%PORTDOCS%%share/doc/mysql/Flags/spain.gif -%%PORTDOCS%%share/doc/mysql/Flags/sweden.gif -%%PORTDOCS%%share/doc/mysql/Flags/switzerland.gif -%%PORTDOCS%%share/doc/mysql/Flags/taiwan.gif -%%PORTDOCS%%share/doc/mysql/Flags/ukraine.gif -%%PORTDOCS%%share/doc/mysql/Flags/usa.gif -%%PORTDOCS%%share/doc/mysql/Flags/yugoslavia.gif -%%PORTDOCS%%share/doc/mysql/include.texi -%%PORTDOCS%%share/doc/mysql/manual.html -%%PORTDOCS%%share/doc/mysql/manual.ps -%%PORTDOCS%%share/doc/mysql/manual.texi -%%PORTDOCS%%share/doc/mysql/manual.txt -%%PORTDOCS%%share/doc/mysql/manual_toc.html -share/mysql/binary-configure -share/mysql/charsets/Index -share/mysql/charsets/README -share/mysql/charsets/cp1251.conf -share/mysql/charsets/cp1257.conf -share/mysql/charsets/croat.conf -share/mysql/charsets/danish.conf -share/mysql/charsets/dec8.conf -share/mysql/charsets/dos.conf -share/mysql/charsets/estonia.conf -share/mysql/charsets/german1.conf -share/mysql/charsets/greek.conf -share/mysql/charsets/hebrew.conf -share/mysql/charsets/hp8.conf -share/mysql/charsets/hungarian.conf -share/mysql/charsets/koi8_ru.conf -share/mysql/charsets/koi8_ukr.conf -share/mysql/charsets/latin1.conf -share/mysql/charsets/latin2.conf -share/mysql/charsets/latin5.conf -share/mysql/charsets/swe7.conf -share/mysql/charsets/usa7.conf -share/mysql/charsets/win1250.conf -share/mysql/charsets/win1251.conf -share/mysql/charsets/win1251ukr.conf -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/estonian/errmsg.sys -share/mysql/estonian/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/mi_test_all -share/mysql/mi_test_all.res -share/mysql/my-huge.cnf -share/mysql/my-large.cnf -share/mysql/my-medium.cnf -share/mysql/my-small.cnf -share/mysql/mysql-%%MYSQL_VERSION%%.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/romanian/errmsg.sys -share/mysql/romanian/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 -share/mysql/ukrainian/errmsg.sys -share/mysql/ukrainian/errmsg.txt -%%PORTDOCS%%@dirrm share/doc/mysql/Flags -%%PORTDOCS%%@dirrm share/doc/mysql -@dirrm share/mysql/charsets -@dirrm share/mysql/czech -@dirrm share/mysql/danish -@dirrm share/mysql/dutch -@dirrm share/mysql/english -@dirrm share/mysql/estonian -@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/romanian -@dirrm share/mysql/russian -@dirrm share/mysql/slovak -@dirrm share/mysql/spanish -@dirrm share/mysql/swedish -@dirrm share/mysql/ukrainian -@dirrm share/mysql -@exec %D/bin/mysql_install_db -@unexec /usr/bin/killall mysqld > /dev/null 2>&1 || true diff --git a/databases/mysql40-server/pkg-plist.client b/databases/mysql40-server/pkg-plist.client deleted file mode 100644 index e0f85168189c..000000000000 --- a/databases/mysql40-server/pkg-plist.client +++ /dev/null @@ -1,34 +0,0 @@ -bin/mysql -bin/mysqladmin -bin/mysqlbinlog -bin/mysqlcheck -bin/mysqldump -bin/mysqlimport -bin/mysqlshow -bin/mysqltest -etc/rc.d/00mysql-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_no_pthread.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.10 -@dirrm include/mysql -@dirrm lib/mysql diff --git a/databases/mysql41-client/Makefile b/databases/mysql41-client/Makefile deleted file mode 100644 index b5f3065ac95f..000000000000 --- a/databases/mysql41-client/Makefile +++ /dev/null @@ -1,18 +0,0 @@ -# ports collection makefile for: MySQL-client -# Date created: Sun Sep 24 21:21:20 CEST 2000 -# Whom: Dirk Froemberg <dirk@FreeBSD.org> -# -# $FreeBSD$ -# - -PORTNAME= mysql-client -PORTREVISION= 0 - -MASTERDIR= ${.CURDIR}/../mysql323-server -COMMENT= ${PKGDIR}/pkg-comment.client -PKGINSTALL= mustnotexist -PLIST= ${PKGDIR}/pkg-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 572e1e6bb938..000000000000 --- a/databases/mysql41-server/Makefile +++ /dev/null @@ -1,173 +0,0 @@ -# ports collection makefile for: MySQL-server -# Date created: Sun Sep 24 21:20:46 CEST 2000 -# Whom: Dirk Froemberg <dirk@FreeBSD.org> -# -# $FreeBSD$ -# - -PORTNAME?= ${MASTERPORTNAME} -PORTVERSION= 3.23.47 -PORTREVISION?= 0 -CATEGORIES= databases -MASTER_SITES= ${MASTER_SITE_SOURCEFORGE} \ - http://www.kernelnotes.de/MySQL/Downloads/MySQL-3.23/ \ - http://mysql.he.net/Downloads/MySQL-3.23/ \ - ftp://ftp.sunet.se/pub/unix/databases/relational/mysql/Downloads/MySQL-3.23/ -MASTER_SITE_SUBDIR= mirrors/mysql/Downloads/MySQL-3.23 -DISTFILES= mysql-${PORTVERSION}${EXTRACT_SUFX} - -MAINTAINER= dirk@FreeBSD.org - -WRKSRC= ${WRKDIR}/mysql-${PORTVERSION} -SLAVEDIRS= databases/mysql323-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 \ - --with-mit-threads=no \ - --with-libwrap \ - --with-low-memory \ - --with-comment='FreeBSD port: ${PKGNAME}' - -.if ${MACHINE_ARCH} == "i386" -CONFIGURE_ARGS+=--enable-assembler --with-berkeley-db --with-innodb -.endif -.if defined(WITH_CHARSET) && ${WITH_CHARSET} != "" -CONFIGURE_ARGS+=--with-charset=${WITH_CHARSET} -.if defined(WITH_XCHARSET) && ${WITH_XCHARSET} != "" -CONFIGURE_ARGS+=--with-extra-charsets=${WITH_XCHARSET} -.endif -.endif -.if defined(BUILD_STATIC) -CONFIGURE_ARGS+=--with-mysqld-ldflags=--static -.endif -.if defined(BUILD_OPTIMIZED) -CFLAGS+= -mcpu=pentiumpro -O3 -.endif -.if defined(WITH_LINUXTHREADS) -CONFIGURE_ARGS+=--with-named-thread-libs='-DHAVE_GLIBC2_STYLE_GETHOSTBYNAME_R -D_THREAD_SAFE -I${LOCALBASE}/include/pthread/linuxthreads -L${LOCALBASE}/lib -llthread -llgcc_r' -CFLAGS+= -D__USE_UNIX98 -D_REENTRANT -D_THREAD_SAFE -I${LOCALBASE}/include/pthread/linuxthreads -LIB_DEPENDS+= lthread.2:${PORTSDIR}/devel/linuxthreads -.endif -CONFIGURE_ENV+= PERL=${PERL} \ - PERL5=${PERL} \ - INSTALL_SCRIPT="${INSTALL_SCRIPT}" \ - CXX="${CC}" \ - CFLAGS="${CFLAGS}" \ - CONFIGURE_ARGS="${CONFIGURE_ARGS}" - -.include <bsd.port.pre.mk> -# without including these flags mysqld may crash under heavy load -# and multiple connections at the same time -CXXFLAGS= ${CFLAGS} -felide-constructors -fno-rtti -.if ${OSVERSION} >= 400002 -CXXFLAGS+= -fno-exceptions -.endif - -# MySQL-Server part -.if !defined(CLIENT_ONLY) -RUN_DEPENDS= mysql:${PORTSDIR}/databases/mysql323-client \ - ${LOCALBASE}/lib/perl5/site_perl/${PERL_VER}/${PERL_ARCH}/Mysql.pm:${PORTSDIR}/databases/p5-Mysql - -PLIST_SUB= MYSQL_VERSION=${PORTVERSION} - -pre-fetch: - @${ECHO} "" - @${ECHO} "You may use the following build options:" - @${ECHO} "" - @${ECHO} " WITH_CHARSET=charset define the primary built-in charset (latin1);" - @${ECHO} " WITH_XCHARSET=list define other built-in charsets (may be 'all');" - @${ECHO} " DB_DIR=directory Set alternate directory for database files" - @${ECHO} " (default is /var/db/mysql)." - @${ECHO} " WITH_LINUXTHREADS=yes Use the linuxthreads pthread library." - @${ECHO} " This is _NOT_ recommended for production" - @${ECHO} " servers. Expect problems when enabled." - @${ECHO} " SKIP_INSTALL_DB=yes Skip mysql_install_db" - @${ECHO} " (i. e. leave ${DB_DIR} alone)." - @${ECHO} " This is useful for upgrades." - @${ECHO} " Be sure to know what you are doing!" - @${ECHO} " SKIP_DNS_CHECK=yes don't run resolveip to do an additional" - @${ECHO} " DNS check before inserting local hostname to" - @${ECHO} " mysql database." - @${ECHO} " Use if your machine has no offical DNS entry." - @${ECHO} " BUILD_STATIC=yes Build a static version of mysqld." - @${ECHO} " BUILD_OPTIMIZED=yes Add -mcpu=pentiumpro -O3 to CFLAGS." - @${ECHO} " This setting may produce broken code and thus" - @${ECHO} " is not recommended for production servers." - @${ECHO} "" - -post-patch: - ${MV} ${WRKSRC}/strings/strings-x86.s ${WRKSRC}/strings/strings-x86.S - ${MV} ${WRKSRC}/strings/longlong2str-x86.s ${WRKSRC}/strings/longlong2str-x86.S - -.if exists(${DB_DIR}) && !defined(PACKAGE_BUILDING) && !defined(OVERWRITE_DB) && !defined(SKIP_INSTALL_DB) -pre-install: - @${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) -.if !defined(SKIP_INSTALL_DB) -.if defined(SKIP_DNS_CHECK) - ${PREFIX}/bin/mysql_install_db --force -.else - ${PREFIX}/bin/mysql_install_db -.endif -.endif - @${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/Flags -.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/Flags/*.gif ${PREFIX}/share/doc/mysql/Flags - ${INSTALL_DATA} ${WRKSRC}/Docs/mysql.info ${PREFIX}/info - @install-info ${PREFIX}/info/mysql.info ${PREFIX}/info/dir -.endif - -# MySQL-Client part -.else -MAN1= isamchk.1 isamlog.1 mysql.1 mysql_zap.1 mysqlaccess.1 \ - mysqladmin.1 mysqld.1 mysqld_multi.1 mysqldump.1 mysqlshow.1 \ - perror.1 replace.1 safe_mysqld.1 - -INSTALLS_SHLIB= yes -LDCONFIG_DIRS= %%PREFIX%%/lib/mysql - -CONFIGURE_ARGS+=--without-server -MAKE_ENV= CLIENT_ONLY="${CLIENT_ONLY}" - -post-install: - @${SED} "s|%%PREFIX%%|${PREFIX}|g" < ${FILESDIR}/mysql-client.sh > ${PREFIX}/etc/rc.d/00mysql-client.sh - @${CHMOD} 750 ${PREFIX}/etc/rc.d/00mysql-client.sh - -.endif - -# This is for the maintainer only... -make-plist: - /usr/bin/find foo -type f -or -type l | /usr/bin/cut -d / -f 2- | /usr/bin/sort > ${.CURDIR}/pkg-plist.new - /usr/bin/perl -i -ne 'if (m#share/doc/#) { print "%%PORTDOCS%%", $$_; } else { print $$_; }' ${.CURDIR}/pkg-plist.new - -.include <bsd.port.post.mk> diff --git a/databases/mysql41-server/distinfo b/databases/mysql41-server/distinfo deleted file mode 100644 index d852db9ca3e8..000000000000 --- a/databases/mysql41-server/distinfo +++ /dev/null @@ -1 +0,0 @@ -MD5 (mysql-3.23.47.tar.gz) = e733474825fb158f876f3d97e996a341 diff --git a/databases/mysql41-server/files/mysql-client.sh b/databases/mysql41-server/files/mysql-client.sh deleted file mode 100644 index bef414c12ed2..000000000000 --- a/databases/mysql41-server/files/mysql-client.sh +++ /dev/null @@ -1,15 +0,0 @@ -#!/bin/sh - -case "$1" in - start) - /sbin/ldconfig -m %%PREFIX%%/lib/mysql - ;; - stop) - ;; - *) - echo "" - echo "Usage: `basename $0` { start | stop }" - echo "" - exit 64 - ;; -esac 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 bed75f614ccc..000000000000 --- a/databases/mysql41-server/files/patch-Makefile.in +++ /dev/null @@ -1,16 +0,0 @@ ---- Makefile.in.orig Wed Apr 18 10:54:42 2001 -+++ Makefile.in Sat Apr 21 13:00:23 2001 -@@ -181,8 +181,12 @@ - # These are built from source in the Docs directory - EXTRA_DIST = INSTALL-SOURCE README COPYING COPYING.LIB MIRRORS - --SUBDIRS = include @docs_dirs@ @readline_dir@ @thread_dirs@ @sql_client_dirs@ @sql_server_dirs@ scripts tests man @bench_dirs@ support-files - -+.if defined(CLIENT_ONLY) -+SUBDIRS = include @readline_dir@ @sql_client_dirs@ tests man -+.else -+SUBDIRS = include @thread_dirs@ @docs_dirs@ @sql_server_dirs@ scripts support-files -+.endif - - # Relink after clean - CLEANFILES = linked_client_sources linked_server_sources linked_libmysql_sources linked_libmysql_r_sources linked_include_sources diff --git a/databases/mysql41-server/files/patch-ab b/databases/mysql41-server/files/patch-ab deleted file mode 100644 index 2aa8724dd21f..000000000000 --- a/databases/mysql41-server/files/patch-ab +++ /dev/null @@ -1,15 +0,0 @@ ---- scripts/mysql_install_db.sh.orig Sat Dec 16 22:49:02 2000 -+++ scripts/mysql_install_db.sh Mon Dec 18 11:55:07 2000 -@@ -301,12 +301,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 -p password 'new-password'" diff --git a/databases/mysql41-server/files/patch-af b/databases/mysql41-server/files/patch-af deleted file mode 100644 index 9c4a0b951402..000000000000 --- a/databases/mysql41-server/files/patch-af +++ /dev/null @@ -1,71 +0,0 @@ ---- scripts/safe_mysqld.sh.orig Thu Apr 19 10:11:02 2001 -+++ scripts/safe_mysqld.sh Thu Apr 19 15:15:54 2001 -@@ -73,30 +73,9 @@ - done - } - --MY_PWD=`pwd` --# Check if we are starting this relative (for the binary release) --if test -d $MY_PWD/data/mysql -a -f ./share/mysql/english/errmsg.sys -a \ -- -x ./bin/mysqld --then -- MY_BASEDIR_VERSION=$MY_PWD # Where bin, share and data are -- ledir=$MY_BASEDIR_VERSION/bin # Where mysqld is -- DATADIR=$MY_BASEDIR_VERSION/data -- if test -z "$defaults" -- then -- defaults="--defaults-extra-file=$MY_BASEDIR_VERSION/data/my.cnf" -- fi --# 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=$MY_PWD # Where libexec, share and var are -- ledir=$MY_BASEDIR_VERSION/libexec # Where mysqld is -- DATADIR=$MY_BASEDIR_VERSION/var --else -- MY_BASEDIR_VERSION=@prefix@ -- DATADIR=@localstatedir@ -- ledir=@libexecdir@ --fi -+MY_BASEDIR_VERSION=@prefix@ -+DATADIR=@localstatedir@ -+ledir=@libexecdir@ - - MYSQL_UNIX_PORT=${MYSQL_UNIX_PORT:-@MYSQL_UNIX_ADDR@} - MYSQL_TCP_PORT=${MYSQL_TCP_PORT:-@MYSQL_TCP_PORT@} -@@ -240,34 +219,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 xa | 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 xa | 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 "`date +'%y%m%d %H:%M:%S mysqld restarted'`" | tee -a $err_log 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-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 f10ab97c44a8..000000000000 --- a/databases/mysql41-server/files/patch-configure +++ /dev/null @@ -1,132 +0,0 @@ ---- configure.orig Wed May 9 22:34:50 2001 -+++ configure Sat May 12 11:23:21 2001 -@@ -2994,7 +2994,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 -@@ -3128,38 +3128,7 @@ - echo $ac_n "checking "how to check if pid exists"""... $ac_c" 1>&6 - echo "configure:3130: 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 -- case $SYSTEM_TYPE in -- *darwin*) -- FIND_PROC="$PS -uaxww | grep mysqld | grep \" \$\$PID \" > /dev/null" -- ;; -- *cygwin*) -- FIND_PROC="$PS -e | grep mysqld | grep \" \$\$PID \" > /dev/null" -- ;; -- *) -- { 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; } -- esac --fi -+FIND_PROC="$PS -uaxww | grep mysqld | grep \" \$\$PID \" > /dev/null" - - echo "$ac_t"""$FIND_PROC"" 1>&6 - -@@ -5922,7 +5891,6 @@ - #define $ac_tr_lib 1 - EOF - -- LIBS="-lc_r $LIBS" - - else - echo "$ac_t""no" 1>&6 -@@ -6154,28 +6122,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="$MAX_C_OPTIMIZE" --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" -@@ -6856,10 +6802,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 6866 "configure" -@@ -9019,10 +8961,6 @@ - #do not treat warnings as errors if we are linking agaist other libc - #this is to work around gcc not being permissive on non-system includes - #with respect to ANSI C++ --if test "$ac_cv_prog_gxx" = "yes" -a "$with_other_libc" = "no" --then -- CXXFLAGS="$CXXFLAGS -Werror" --fi - cat > conftest.$ac_ext <<EOF - #line 9028 "configure" - #include "confdefs.h" -@@ -9087,10 +9025,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" -a "$with_other_libc" = "no" --then -- CXXFLAGS="$CXXFLAGS -Werror" --fi - cat > conftest.$ac_ext <<EOF - #line 9096 "configure" - #include "confdefs.h" -@@ -9154,10 +9088,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" -a "$with_other_libc" = "no" --then -- CXXFLAGS="$CXXFLAGS -Werror" --fi - cat > conftest.$ac_ext <<EOF - #line 9163 "configure" - #include "confdefs.h" 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 eb2d5e52e794..000000000000 --- a/databases/mysql41-server/files/patch-include::Makefile.in +++ /dev/null @@ -1,14 +0,0 @@ ---- include/Makefile.in.orig Mon Jan 22 14:43:55 2001 -+++ include/Makefile.in Mon Jan 22 23:14:48 2001 -@@ -284,7 +284,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 8f4acf36e853..000000000000 --- a/databases/mysql41-server/pkg-descr +++ /dev/null @@ -1,4 +0,0 @@ -MySQL is a very fast, multi-threaded, multi-user and robust SQL -(Structured Query Language) database server. - -WWW: http://www.mysql.com/ diff --git a/databases/mysql41-server/pkg-install b/databases/mysql41-server/pkg-install deleted file mode 100644 index 27732bf35c89..000000000000 --- a/databases/mysql41-server/pkg-install +++ /dev/null @@ -1,48 +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." - if pw usermod ${USER} -d ${DB_DIR} - then - echo "Changed home directory of \"${USER}\" to \"${DB_DIR}\"" - else - echo "Changing home directory of \"${USER}\" to \"${DB_DIR}\" failed..." - exit 1 - fi - 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 7a482d60bc34..000000000000 --- a/databases/mysql41-server/pkg-plist +++ /dev/null @@ -1,195 +0,0 @@ -bin/comp_err -bin/isamchk -bin/isamlog -bin/msql2mysql -bin/my_print_defaults -bin/myisamchk -bin/myisamlog -bin/myisampack -bin/mysql_config -bin/mysql_convert_table_format -bin/mysql_find_rows -bin/mysql_fix_privilege_tables -bin/mysql_install_db -bin/mysql_setpermission -bin/mysql_zap -bin/mysqlaccess -bin/mysqlbug -bin/mysqld_multi -bin/mysqldumpslow -bin/mysqlhotcopy -bin/pack_isam -bin/perror -bin/replace -bin/resolve_stack_dump -bin/resolveip -bin/safe_mysqld -etc/rc.d/mysql-server.sh -%%PORTDOCS%%@unexec install-info --delete %D/info/mysql.info %D/info/dir -%%PORTDOCS%%info/mysql.info -%%PORTDOCS%%@exec install-info %D/info/mysql.info %D/info/dir -lib/mysql/libdbug.a -lib/mysql/libheap.a -lib/mysql/libmerge.a -lib/mysql/libmyisam.a -lib/mysql/libmyisammrg.a -lib/mysql/libmystrings.a -lib/mysql/libmysys.a -lib/mysql/libnisam.a -libexec/mysqld -%%PORTDOCS%%share/doc/mysql/Flags/argentina.gif -%%PORTDOCS%%share/doc/mysql/Flags/australia.gif -%%PORTDOCS%%share/doc/mysql/Flags/austria.gif -%%PORTDOCS%%share/doc/mysql/Flags/brazil.gif -%%PORTDOCS%%share/doc/mysql/Flags/bulgaria.gif -%%PORTDOCS%%share/doc/mysql/Flags/canada.gif -%%PORTDOCS%%share/doc/mysql/Flags/chile.gif -%%PORTDOCS%%share/doc/mysql/Flags/china.gif -%%PORTDOCS%%share/doc/mysql/Flags/croatia.gif -%%PORTDOCS%%share/doc/mysql/Flags/czech-republic.gif -%%PORTDOCS%%share/doc/mysql/Flags/denmark.gif -%%PORTDOCS%%share/doc/mysql/Flags/estonia.gif -%%PORTDOCS%%share/doc/mysql/Flags/finland.gif -%%PORTDOCS%%share/doc/mysql/Flags/france.gif -%%PORTDOCS%%share/doc/mysql/Flags/germany.gif -%%PORTDOCS%%share/doc/mysql/Flags/great-britain.gif -%%PORTDOCS%%share/doc/mysql/Flags/greece.gif -%%PORTDOCS%%share/doc/mysql/Flags/hungary.gif -%%PORTDOCS%%share/doc/mysql/Flags/iceland.gif -%%PORTDOCS%%share/doc/mysql/Flags/indonesia.gif -%%PORTDOCS%%share/doc/mysql/Flags/ireland.gif -%%PORTDOCS%%share/doc/mysql/Flags/island.gif -%%PORTDOCS%%share/doc/mysql/Flags/israel.gif -%%PORTDOCS%%share/doc/mysql/Flags/italy.gif -%%PORTDOCS%%share/doc/mysql/Flags/japan.gif -%%PORTDOCS%%share/doc/mysql/Flags/kroatia.gif -%%PORTDOCS%%share/doc/mysql/Flags/latvia.gif -%%PORTDOCS%%share/doc/mysql/Flags/netherlands.gif -%%PORTDOCS%%share/doc/mysql/Flags/poland.gif -%%PORTDOCS%%share/doc/mysql/Flags/portugal.gif -%%PORTDOCS%%share/doc/mysql/Flags/romania.gif -%%PORTDOCS%%share/doc/mysql/Flags/russia.gif -%%PORTDOCS%%share/doc/mysql/Flags/singapore.gif -%%PORTDOCS%%share/doc/mysql/Flags/south-africa.gif -%%PORTDOCS%%share/doc/mysql/Flags/south-africa1.gif -%%PORTDOCS%%share/doc/mysql/Flags/south-korea.gif -%%PORTDOCS%%share/doc/mysql/Flags/spain.gif -%%PORTDOCS%%share/doc/mysql/Flags/sweden.gif -%%PORTDOCS%%share/doc/mysql/Flags/switzerland.gif -%%PORTDOCS%%share/doc/mysql/Flags/taiwan.gif -%%PORTDOCS%%share/doc/mysql/Flags/ukraine.gif -%%PORTDOCS%%share/doc/mysql/Flags/usa.gif -%%PORTDOCS%%share/doc/mysql/Flags/yugoslavia.gif -%%PORTDOCS%%share/doc/mysql/include.texi -%%PORTDOCS%%share/doc/mysql/manual.html -%%PORTDOCS%%share/doc/mysql/manual.ps -%%PORTDOCS%%share/doc/mysql/manual.texi -%%PORTDOCS%%share/doc/mysql/manual.txt -%%PORTDOCS%%share/doc/mysql/manual_toc.html -share/mysql/binary-configure -share/mysql/charsets/Index -share/mysql/charsets/README -share/mysql/charsets/cp1251.conf -share/mysql/charsets/cp1257.conf -share/mysql/charsets/croat.conf -share/mysql/charsets/danish.conf -share/mysql/charsets/dec8.conf -share/mysql/charsets/dos.conf -share/mysql/charsets/estonia.conf -share/mysql/charsets/german1.conf -share/mysql/charsets/greek.conf -share/mysql/charsets/hebrew.conf -share/mysql/charsets/hp8.conf -share/mysql/charsets/hungarian.conf -share/mysql/charsets/koi8_ru.conf -share/mysql/charsets/koi8_ukr.conf -share/mysql/charsets/latin1.conf -share/mysql/charsets/latin2.conf -share/mysql/charsets/latin5.conf -share/mysql/charsets/swe7.conf -share/mysql/charsets/usa7.conf -share/mysql/charsets/win1250.conf -share/mysql/charsets/win1251.conf -share/mysql/charsets/win1251ukr.conf -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/estonian/errmsg.sys -share/mysql/estonian/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/mi_test_all -share/mysql/mi_test_all.res -share/mysql/my-huge.cnf -share/mysql/my-large.cnf -share/mysql/my-medium.cnf -share/mysql/my-small.cnf -share/mysql/mysql-%%MYSQL_VERSION%%.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/romanian/errmsg.sys -share/mysql/romanian/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 -share/mysql/ukrainian/errmsg.sys -share/mysql/ukrainian/errmsg.txt -%%PORTDOCS%%@dirrm share/doc/mysql/Flags -%%PORTDOCS%%@dirrm share/doc/mysql -@dirrm share/mysql/charsets -@dirrm share/mysql/czech -@dirrm share/mysql/danish -@dirrm share/mysql/dutch -@dirrm share/mysql/english -@dirrm share/mysql/estonian -@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/romanian -@dirrm share/mysql/russian -@dirrm share/mysql/slovak -@dirrm share/mysql/spanish -@dirrm share/mysql/swedish -@dirrm share/mysql/ukrainian -@dirrm share/mysql -@exec %D/bin/mysql_install_db -@unexec /usr/bin/killall mysqld > /dev/null 2>&1 || true diff --git a/databases/mysql41-server/pkg-plist.client b/databases/mysql41-server/pkg-plist.client deleted file mode 100644 index e0f85168189c..000000000000 --- a/databases/mysql41-server/pkg-plist.client +++ /dev/null @@ -1,34 +0,0 @@ -bin/mysql -bin/mysqladmin -bin/mysqlbinlog -bin/mysqlcheck -bin/mysqldump -bin/mysqlimport -bin/mysqlshow -bin/mysqltest -etc/rc.d/00mysql-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_no_pthread.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.10 -@dirrm include/mysql -@dirrm lib/mysql diff --git a/databases/mysql50-client/Makefile b/databases/mysql50-client/Makefile deleted file mode 100644 index b5f3065ac95f..000000000000 --- a/databases/mysql50-client/Makefile +++ /dev/null @@ -1,18 +0,0 @@ -# ports collection makefile for: MySQL-client -# Date created: Sun Sep 24 21:21:20 CEST 2000 -# Whom: Dirk Froemberg <dirk@FreeBSD.org> -# -# $FreeBSD$ -# - -PORTNAME= mysql-client -PORTREVISION= 0 - -MASTERDIR= ${.CURDIR}/../mysql323-server -COMMENT= ${PKGDIR}/pkg-comment.client -PKGINSTALL= mustnotexist -PLIST= ${PKGDIR}/pkg-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 572e1e6bb938..000000000000 --- a/databases/mysql50-server/Makefile +++ /dev/null @@ -1,173 +0,0 @@ -# ports collection makefile for: MySQL-server -# Date created: Sun Sep 24 21:20:46 CEST 2000 -# Whom: Dirk Froemberg <dirk@FreeBSD.org> -# -# $FreeBSD$ -# - -PORTNAME?= ${MASTERPORTNAME} -PORTVERSION= 3.23.47 -PORTREVISION?= 0 -CATEGORIES= databases -MASTER_SITES= ${MASTER_SITE_SOURCEFORGE} \ - http://www.kernelnotes.de/MySQL/Downloads/MySQL-3.23/ \ - http://mysql.he.net/Downloads/MySQL-3.23/ \ - ftp://ftp.sunet.se/pub/unix/databases/relational/mysql/Downloads/MySQL-3.23/ -MASTER_SITE_SUBDIR= mirrors/mysql/Downloads/MySQL-3.23 -DISTFILES= mysql-${PORTVERSION}${EXTRACT_SUFX} - -MAINTAINER= dirk@FreeBSD.org - -WRKSRC= ${WRKDIR}/mysql-${PORTVERSION} -SLAVEDIRS= databases/mysql323-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 \ - --with-mit-threads=no \ - --with-libwrap \ - --with-low-memory \ - --with-comment='FreeBSD port: ${PKGNAME}' - -.if ${MACHINE_ARCH} == "i386" -CONFIGURE_ARGS+=--enable-assembler --with-berkeley-db --with-innodb -.endif -.if defined(WITH_CHARSET) && ${WITH_CHARSET} != "" -CONFIGURE_ARGS+=--with-charset=${WITH_CHARSET} -.if defined(WITH_XCHARSET) && ${WITH_XCHARSET} != "" -CONFIGURE_ARGS+=--with-extra-charsets=${WITH_XCHARSET} -.endif -.endif -.if defined(BUILD_STATIC) -CONFIGURE_ARGS+=--with-mysqld-ldflags=--static -.endif -.if defined(BUILD_OPTIMIZED) -CFLAGS+= -mcpu=pentiumpro -O3 -.endif -.if defined(WITH_LINUXTHREADS) -CONFIGURE_ARGS+=--with-named-thread-libs='-DHAVE_GLIBC2_STYLE_GETHOSTBYNAME_R -D_THREAD_SAFE -I${LOCALBASE}/include/pthread/linuxthreads -L${LOCALBASE}/lib -llthread -llgcc_r' -CFLAGS+= -D__USE_UNIX98 -D_REENTRANT -D_THREAD_SAFE -I${LOCALBASE}/include/pthread/linuxthreads -LIB_DEPENDS+= lthread.2:${PORTSDIR}/devel/linuxthreads -.endif -CONFIGURE_ENV+= PERL=${PERL} \ - PERL5=${PERL} \ - INSTALL_SCRIPT="${INSTALL_SCRIPT}" \ - CXX="${CC}" \ - CFLAGS="${CFLAGS}" \ - CONFIGURE_ARGS="${CONFIGURE_ARGS}" - -.include <bsd.port.pre.mk> -# without including these flags mysqld may crash under heavy load -# and multiple connections at the same time -CXXFLAGS= ${CFLAGS} -felide-constructors -fno-rtti -.if ${OSVERSION} >= 400002 -CXXFLAGS+= -fno-exceptions -.endif - -# MySQL-Server part -.if !defined(CLIENT_ONLY) -RUN_DEPENDS= mysql:${PORTSDIR}/databases/mysql323-client \ - ${LOCALBASE}/lib/perl5/site_perl/${PERL_VER}/${PERL_ARCH}/Mysql.pm:${PORTSDIR}/databases/p5-Mysql - -PLIST_SUB= MYSQL_VERSION=${PORTVERSION} - -pre-fetch: - @${ECHO} "" - @${ECHO} "You may use the following build options:" - @${ECHO} "" - @${ECHO} " WITH_CHARSET=charset define the primary built-in charset (latin1);" - @${ECHO} " WITH_XCHARSET=list define other built-in charsets (may be 'all');" - @${ECHO} " DB_DIR=directory Set alternate directory for database files" - @${ECHO} " (default is /var/db/mysql)." - @${ECHO} " WITH_LINUXTHREADS=yes Use the linuxthreads pthread library." - @${ECHO} " This is _NOT_ recommended for production" - @${ECHO} " servers. Expect problems when enabled." - @${ECHO} " SKIP_INSTALL_DB=yes Skip mysql_install_db" - @${ECHO} " (i. e. leave ${DB_DIR} alone)." - @${ECHO} " This is useful for upgrades." - @${ECHO} " Be sure to know what you are doing!" - @${ECHO} " SKIP_DNS_CHECK=yes don't run resolveip to do an additional" - @${ECHO} " DNS check before inserting local hostname to" - @${ECHO} " mysql database." - @${ECHO} " Use if your machine has no offical DNS entry." - @${ECHO} " BUILD_STATIC=yes Build a static version of mysqld." - @${ECHO} " BUILD_OPTIMIZED=yes Add -mcpu=pentiumpro -O3 to CFLAGS." - @${ECHO} " This setting may produce broken code and thus" - @${ECHO} " is not recommended for production servers." - @${ECHO} "" - -post-patch: - ${MV} ${WRKSRC}/strings/strings-x86.s ${WRKSRC}/strings/strings-x86.S - ${MV} ${WRKSRC}/strings/longlong2str-x86.s ${WRKSRC}/strings/longlong2str-x86.S - -.if exists(${DB_DIR}) && !defined(PACKAGE_BUILDING) && !defined(OVERWRITE_DB) && !defined(SKIP_INSTALL_DB) -pre-install: - @${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) -.if !defined(SKIP_INSTALL_DB) -.if defined(SKIP_DNS_CHECK) - ${PREFIX}/bin/mysql_install_db --force -.else - ${PREFIX}/bin/mysql_install_db -.endif -.endif - @${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/Flags -.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/Flags/*.gif ${PREFIX}/share/doc/mysql/Flags - ${INSTALL_DATA} ${WRKSRC}/Docs/mysql.info ${PREFIX}/info - @install-info ${PREFIX}/info/mysql.info ${PREFIX}/info/dir -.endif - -# MySQL-Client part -.else -MAN1= isamchk.1 isamlog.1 mysql.1 mysql_zap.1 mysqlaccess.1 \ - mysqladmin.1 mysqld.1 mysqld_multi.1 mysqldump.1 mysqlshow.1 \ - perror.1 replace.1 safe_mysqld.1 - -INSTALLS_SHLIB= yes -LDCONFIG_DIRS= %%PREFIX%%/lib/mysql - -CONFIGURE_ARGS+=--without-server -MAKE_ENV= CLIENT_ONLY="${CLIENT_ONLY}" - -post-install: - @${SED} "s|%%PREFIX%%|${PREFIX}|g" < ${FILESDIR}/mysql-client.sh > ${PREFIX}/etc/rc.d/00mysql-client.sh - @${CHMOD} 750 ${PREFIX}/etc/rc.d/00mysql-client.sh - -.endif - -# This is for the maintainer only... -make-plist: - /usr/bin/find foo -type f -or -type l | /usr/bin/cut -d / -f 2- | /usr/bin/sort > ${.CURDIR}/pkg-plist.new - /usr/bin/perl -i -ne 'if (m#share/doc/#) { print "%%PORTDOCS%%", $$_; } else { print $$_; }' ${.CURDIR}/pkg-plist.new - -.include <bsd.port.post.mk> diff --git a/databases/mysql50-server/distinfo b/databases/mysql50-server/distinfo deleted file mode 100644 index d852db9ca3e8..000000000000 --- a/databases/mysql50-server/distinfo +++ /dev/null @@ -1 +0,0 @@ -MD5 (mysql-3.23.47.tar.gz) = e733474825fb158f876f3d97e996a341 diff --git a/databases/mysql50-server/files/mysql-client.sh b/databases/mysql50-server/files/mysql-client.sh deleted file mode 100644 index bef414c12ed2..000000000000 --- a/databases/mysql50-server/files/mysql-client.sh +++ /dev/null @@ -1,15 +0,0 @@ -#!/bin/sh - -case "$1" in - start) - /sbin/ldconfig -m %%PREFIX%%/lib/mysql - ;; - stop) - ;; - *) - echo "" - echo "Usage: `basename $0` { start | stop }" - echo "" - exit 64 - ;; -esac 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 bed75f614ccc..000000000000 --- a/databases/mysql50-server/files/patch-Makefile.in +++ /dev/null @@ -1,16 +0,0 @@ ---- Makefile.in.orig Wed Apr 18 10:54:42 2001 -+++ Makefile.in Sat Apr 21 13:00:23 2001 -@@ -181,8 +181,12 @@ - # These are built from source in the Docs directory - EXTRA_DIST = INSTALL-SOURCE README COPYING COPYING.LIB MIRRORS - --SUBDIRS = include @docs_dirs@ @readline_dir@ @thread_dirs@ @sql_client_dirs@ @sql_server_dirs@ scripts tests man @bench_dirs@ support-files - -+.if defined(CLIENT_ONLY) -+SUBDIRS = include @readline_dir@ @sql_client_dirs@ tests man -+.else -+SUBDIRS = include @thread_dirs@ @docs_dirs@ @sql_server_dirs@ scripts support-files -+.endif - - # Relink after clean - CLEANFILES = linked_client_sources linked_server_sources linked_libmysql_sources linked_libmysql_r_sources linked_include_sources diff --git a/databases/mysql50-server/files/patch-ab b/databases/mysql50-server/files/patch-ab deleted file mode 100644 index 2aa8724dd21f..000000000000 --- a/databases/mysql50-server/files/patch-ab +++ /dev/null @@ -1,15 +0,0 @@ ---- scripts/mysql_install_db.sh.orig Sat Dec 16 22:49:02 2000 -+++ scripts/mysql_install_db.sh Mon Dec 18 11:55:07 2000 -@@ -301,12 +301,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 -p password 'new-password'" diff --git a/databases/mysql50-server/files/patch-af b/databases/mysql50-server/files/patch-af deleted file mode 100644 index 9c4a0b951402..000000000000 --- a/databases/mysql50-server/files/patch-af +++ /dev/null @@ -1,71 +0,0 @@ ---- scripts/safe_mysqld.sh.orig Thu Apr 19 10:11:02 2001 -+++ scripts/safe_mysqld.sh Thu Apr 19 15:15:54 2001 -@@ -73,30 +73,9 @@ - done - } - --MY_PWD=`pwd` --# Check if we are starting this relative (for the binary release) --if test -d $MY_PWD/data/mysql -a -f ./share/mysql/english/errmsg.sys -a \ -- -x ./bin/mysqld --then -- MY_BASEDIR_VERSION=$MY_PWD # Where bin, share and data are -- ledir=$MY_BASEDIR_VERSION/bin # Where mysqld is -- DATADIR=$MY_BASEDIR_VERSION/data -- if test -z "$defaults" -- then -- defaults="--defaults-extra-file=$MY_BASEDIR_VERSION/data/my.cnf" -- fi --# 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=$MY_PWD # Where libexec, share and var are -- ledir=$MY_BASEDIR_VERSION/libexec # Where mysqld is -- DATADIR=$MY_BASEDIR_VERSION/var --else -- MY_BASEDIR_VERSION=@prefix@ -- DATADIR=@localstatedir@ -- ledir=@libexecdir@ --fi -+MY_BASEDIR_VERSION=@prefix@ -+DATADIR=@localstatedir@ -+ledir=@libexecdir@ - - MYSQL_UNIX_PORT=${MYSQL_UNIX_PORT:-@MYSQL_UNIX_ADDR@} - MYSQL_TCP_PORT=${MYSQL_TCP_PORT:-@MYSQL_TCP_PORT@} -@@ -240,34 +219,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 xa | 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 xa | 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 "`date +'%y%m%d %H:%M:%S mysqld restarted'`" | tee -a $err_log 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-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 f10ab97c44a8..000000000000 --- a/databases/mysql50-server/files/patch-configure +++ /dev/null @@ -1,132 +0,0 @@ ---- configure.orig Wed May 9 22:34:50 2001 -+++ configure Sat May 12 11:23:21 2001 -@@ -2994,7 +2994,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 -@@ -3128,38 +3128,7 @@ - echo $ac_n "checking "how to check if pid exists"""... $ac_c" 1>&6 - echo "configure:3130: 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 -- case $SYSTEM_TYPE in -- *darwin*) -- FIND_PROC="$PS -uaxww | grep mysqld | grep \" \$\$PID \" > /dev/null" -- ;; -- *cygwin*) -- FIND_PROC="$PS -e | grep mysqld | grep \" \$\$PID \" > /dev/null" -- ;; -- *) -- { 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; } -- esac --fi -+FIND_PROC="$PS -uaxww | grep mysqld | grep \" \$\$PID \" > /dev/null" - - echo "$ac_t"""$FIND_PROC"" 1>&6 - -@@ -5922,7 +5891,6 @@ - #define $ac_tr_lib 1 - EOF - -- LIBS="-lc_r $LIBS" - - else - echo "$ac_t""no" 1>&6 -@@ -6154,28 +6122,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="$MAX_C_OPTIMIZE" --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" -@@ -6856,10 +6802,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 6866 "configure" -@@ -9019,10 +8961,6 @@ - #do not treat warnings as errors if we are linking agaist other libc - #this is to work around gcc not being permissive on non-system includes - #with respect to ANSI C++ --if test "$ac_cv_prog_gxx" = "yes" -a "$with_other_libc" = "no" --then -- CXXFLAGS="$CXXFLAGS -Werror" --fi - cat > conftest.$ac_ext <<EOF - #line 9028 "configure" - #include "confdefs.h" -@@ -9087,10 +9025,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" -a "$with_other_libc" = "no" --then -- CXXFLAGS="$CXXFLAGS -Werror" --fi - cat > conftest.$ac_ext <<EOF - #line 9096 "configure" - #include "confdefs.h" -@@ -9154,10 +9088,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" -a "$with_other_libc" = "no" --then -- CXXFLAGS="$CXXFLAGS -Werror" --fi - cat > conftest.$ac_ext <<EOF - #line 9163 "configure" - #include "confdefs.h" 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 eb2d5e52e794..000000000000 --- a/databases/mysql50-server/files/patch-include::Makefile.in +++ /dev/null @@ -1,14 +0,0 @@ ---- include/Makefile.in.orig Mon Jan 22 14:43:55 2001 -+++ include/Makefile.in Mon Jan 22 23:14:48 2001 -@@ -284,7 +284,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 8f4acf36e853..000000000000 --- a/databases/mysql50-server/pkg-descr +++ /dev/null @@ -1,4 +0,0 @@ -MySQL is a very fast, multi-threaded, multi-user and robust SQL -(Structured Query Language) database server. - -WWW: http://www.mysql.com/ diff --git a/databases/mysql50-server/pkg-install b/databases/mysql50-server/pkg-install deleted file mode 100644 index 27732bf35c89..000000000000 --- a/databases/mysql50-server/pkg-install +++ /dev/null @@ -1,48 +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." - if pw usermod ${USER} -d ${DB_DIR} - then - echo "Changed home directory of \"${USER}\" to \"${DB_DIR}\"" - else - echo "Changing home directory of \"${USER}\" to \"${DB_DIR}\" failed..." - exit 1 - fi - 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 7a482d60bc34..000000000000 --- a/databases/mysql50-server/pkg-plist +++ /dev/null @@ -1,195 +0,0 @@ -bin/comp_err -bin/isamchk -bin/isamlog -bin/msql2mysql -bin/my_print_defaults -bin/myisamchk -bin/myisamlog -bin/myisampack -bin/mysql_config -bin/mysql_convert_table_format -bin/mysql_find_rows -bin/mysql_fix_privilege_tables -bin/mysql_install_db -bin/mysql_setpermission -bin/mysql_zap -bin/mysqlaccess -bin/mysqlbug -bin/mysqld_multi -bin/mysqldumpslow -bin/mysqlhotcopy -bin/pack_isam -bin/perror -bin/replace -bin/resolve_stack_dump -bin/resolveip -bin/safe_mysqld -etc/rc.d/mysql-server.sh -%%PORTDOCS%%@unexec install-info --delete %D/info/mysql.info %D/info/dir -%%PORTDOCS%%info/mysql.info -%%PORTDOCS%%@exec install-info %D/info/mysql.info %D/info/dir -lib/mysql/libdbug.a -lib/mysql/libheap.a -lib/mysql/libmerge.a -lib/mysql/libmyisam.a -lib/mysql/libmyisammrg.a -lib/mysql/libmystrings.a -lib/mysql/libmysys.a -lib/mysql/libnisam.a -libexec/mysqld -%%PORTDOCS%%share/doc/mysql/Flags/argentina.gif -%%PORTDOCS%%share/doc/mysql/Flags/australia.gif -%%PORTDOCS%%share/doc/mysql/Flags/austria.gif -%%PORTDOCS%%share/doc/mysql/Flags/brazil.gif -%%PORTDOCS%%share/doc/mysql/Flags/bulgaria.gif -%%PORTDOCS%%share/doc/mysql/Flags/canada.gif -%%PORTDOCS%%share/doc/mysql/Flags/chile.gif -%%PORTDOCS%%share/doc/mysql/Flags/china.gif -%%PORTDOCS%%share/doc/mysql/Flags/croatia.gif -%%PORTDOCS%%share/doc/mysql/Flags/czech-republic.gif -%%PORTDOCS%%share/doc/mysql/Flags/denmark.gif -%%PORTDOCS%%share/doc/mysql/Flags/estonia.gif -%%PORTDOCS%%share/doc/mysql/Flags/finland.gif -%%PORTDOCS%%share/doc/mysql/Flags/france.gif -%%PORTDOCS%%share/doc/mysql/Flags/germany.gif -%%PORTDOCS%%share/doc/mysql/Flags/great-britain.gif -%%PORTDOCS%%share/doc/mysql/Flags/greece.gif -%%PORTDOCS%%share/doc/mysql/Flags/hungary.gif -%%PORTDOCS%%share/doc/mysql/Flags/iceland.gif -%%PORTDOCS%%share/doc/mysql/Flags/indonesia.gif -%%PORTDOCS%%share/doc/mysql/Flags/ireland.gif -%%PORTDOCS%%share/doc/mysql/Flags/island.gif -%%PORTDOCS%%share/doc/mysql/Flags/israel.gif -%%PORTDOCS%%share/doc/mysql/Flags/italy.gif -%%PORTDOCS%%share/doc/mysql/Flags/japan.gif -%%PORTDOCS%%share/doc/mysql/Flags/kroatia.gif -%%PORTDOCS%%share/doc/mysql/Flags/latvia.gif -%%PORTDOCS%%share/doc/mysql/Flags/netherlands.gif -%%PORTDOCS%%share/doc/mysql/Flags/poland.gif -%%PORTDOCS%%share/doc/mysql/Flags/portugal.gif -%%PORTDOCS%%share/doc/mysql/Flags/romania.gif -%%PORTDOCS%%share/doc/mysql/Flags/russia.gif -%%PORTDOCS%%share/doc/mysql/Flags/singapore.gif -%%PORTDOCS%%share/doc/mysql/Flags/south-africa.gif -%%PORTDOCS%%share/doc/mysql/Flags/south-africa1.gif -%%PORTDOCS%%share/doc/mysql/Flags/south-korea.gif -%%PORTDOCS%%share/doc/mysql/Flags/spain.gif -%%PORTDOCS%%share/doc/mysql/Flags/sweden.gif -%%PORTDOCS%%share/doc/mysql/Flags/switzerland.gif -%%PORTDOCS%%share/doc/mysql/Flags/taiwan.gif -%%PORTDOCS%%share/doc/mysql/Flags/ukraine.gif -%%PORTDOCS%%share/doc/mysql/Flags/usa.gif -%%PORTDOCS%%share/doc/mysql/Flags/yugoslavia.gif -%%PORTDOCS%%share/doc/mysql/include.texi -%%PORTDOCS%%share/doc/mysql/manual.html -%%PORTDOCS%%share/doc/mysql/manual.ps -%%PORTDOCS%%share/doc/mysql/manual.texi -%%PORTDOCS%%share/doc/mysql/manual.txt -%%PORTDOCS%%share/doc/mysql/manual_toc.html -share/mysql/binary-configure -share/mysql/charsets/Index -share/mysql/charsets/README -share/mysql/charsets/cp1251.conf -share/mysql/charsets/cp1257.conf -share/mysql/charsets/croat.conf -share/mysql/charsets/danish.conf -share/mysql/charsets/dec8.conf -share/mysql/charsets/dos.conf -share/mysql/charsets/estonia.conf -share/mysql/charsets/german1.conf -share/mysql/charsets/greek.conf -share/mysql/charsets/hebrew.conf -share/mysql/charsets/hp8.conf -share/mysql/charsets/hungarian.conf -share/mysql/charsets/koi8_ru.conf -share/mysql/charsets/koi8_ukr.conf -share/mysql/charsets/latin1.conf -share/mysql/charsets/latin2.conf -share/mysql/charsets/latin5.conf -share/mysql/charsets/swe7.conf -share/mysql/charsets/usa7.conf -share/mysql/charsets/win1250.conf -share/mysql/charsets/win1251.conf -share/mysql/charsets/win1251ukr.conf -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/estonian/errmsg.sys -share/mysql/estonian/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/mi_test_all -share/mysql/mi_test_all.res -share/mysql/my-huge.cnf -share/mysql/my-large.cnf -share/mysql/my-medium.cnf -share/mysql/my-small.cnf -share/mysql/mysql-%%MYSQL_VERSION%%.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/romanian/errmsg.sys -share/mysql/romanian/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 -share/mysql/ukrainian/errmsg.sys -share/mysql/ukrainian/errmsg.txt -%%PORTDOCS%%@dirrm share/doc/mysql/Flags -%%PORTDOCS%%@dirrm share/doc/mysql -@dirrm share/mysql/charsets -@dirrm share/mysql/czech -@dirrm share/mysql/danish -@dirrm share/mysql/dutch -@dirrm share/mysql/english -@dirrm share/mysql/estonian -@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/romanian -@dirrm share/mysql/russian -@dirrm share/mysql/slovak -@dirrm share/mysql/spanish -@dirrm share/mysql/swedish -@dirrm share/mysql/ukrainian -@dirrm share/mysql -@exec %D/bin/mysql_install_db -@unexec /usr/bin/killall mysqld > /dev/null 2>&1 || true diff --git a/databases/mysql50-server/pkg-plist.client b/databases/mysql50-server/pkg-plist.client deleted file mode 100644 index e0f85168189c..000000000000 --- a/databases/mysql50-server/pkg-plist.client +++ /dev/null @@ -1,34 +0,0 @@ -bin/mysql -bin/mysqladmin -bin/mysqlbinlog -bin/mysqlcheck -bin/mysqldump -bin/mysqlimport -bin/mysqlshow -bin/mysqltest -etc/rc.d/00mysql-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_no_pthread.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.10 -@dirrm include/mysql -@dirrm lib/mysql diff --git a/databases/mysql51-client/Makefile b/databases/mysql51-client/Makefile deleted file mode 100644 index b5f3065ac95f..000000000000 --- a/databases/mysql51-client/Makefile +++ /dev/null @@ -1,18 +0,0 @@ -# ports collection makefile for: MySQL-client -# Date created: Sun Sep 24 21:21:20 CEST 2000 -# Whom: Dirk Froemberg <dirk@FreeBSD.org> -# -# $FreeBSD$ -# - -PORTNAME= mysql-client -PORTREVISION= 0 - -MASTERDIR= ${.CURDIR}/../mysql323-server -COMMENT= ${PKGDIR}/pkg-comment.client -PKGINSTALL= mustnotexist -PLIST= ${PKGDIR}/pkg-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 572e1e6bb938..000000000000 --- a/databases/mysql51-server/Makefile +++ /dev/null @@ -1,173 +0,0 @@ -# ports collection makefile for: MySQL-server -# Date created: Sun Sep 24 21:20:46 CEST 2000 -# Whom: Dirk Froemberg <dirk@FreeBSD.org> -# -# $FreeBSD$ -# - -PORTNAME?= ${MASTERPORTNAME} -PORTVERSION= 3.23.47 -PORTREVISION?= 0 -CATEGORIES= databases -MASTER_SITES= ${MASTER_SITE_SOURCEFORGE} \ - http://www.kernelnotes.de/MySQL/Downloads/MySQL-3.23/ \ - http://mysql.he.net/Downloads/MySQL-3.23/ \ - ftp://ftp.sunet.se/pub/unix/databases/relational/mysql/Downloads/MySQL-3.23/ -MASTER_SITE_SUBDIR= mirrors/mysql/Downloads/MySQL-3.23 -DISTFILES= mysql-${PORTVERSION}${EXTRACT_SUFX} - -MAINTAINER= dirk@FreeBSD.org - -WRKSRC= ${WRKDIR}/mysql-${PORTVERSION} -SLAVEDIRS= databases/mysql323-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 \ - --with-mit-threads=no \ - --with-libwrap \ - --with-low-memory \ - --with-comment='FreeBSD port: ${PKGNAME}' - -.if ${MACHINE_ARCH} == "i386" -CONFIGURE_ARGS+=--enable-assembler --with-berkeley-db --with-innodb -.endif -.if defined(WITH_CHARSET) && ${WITH_CHARSET} != "" -CONFIGURE_ARGS+=--with-charset=${WITH_CHARSET} -.if defined(WITH_XCHARSET) && ${WITH_XCHARSET} != "" -CONFIGURE_ARGS+=--with-extra-charsets=${WITH_XCHARSET} -.endif -.endif -.if defined(BUILD_STATIC) -CONFIGURE_ARGS+=--with-mysqld-ldflags=--static -.endif -.if defined(BUILD_OPTIMIZED) -CFLAGS+= -mcpu=pentiumpro -O3 -.endif -.if defined(WITH_LINUXTHREADS) -CONFIGURE_ARGS+=--with-named-thread-libs='-DHAVE_GLIBC2_STYLE_GETHOSTBYNAME_R -D_THREAD_SAFE -I${LOCALBASE}/include/pthread/linuxthreads -L${LOCALBASE}/lib -llthread -llgcc_r' -CFLAGS+= -D__USE_UNIX98 -D_REENTRANT -D_THREAD_SAFE -I${LOCALBASE}/include/pthread/linuxthreads -LIB_DEPENDS+= lthread.2:${PORTSDIR}/devel/linuxthreads -.endif -CONFIGURE_ENV+= PERL=${PERL} \ - PERL5=${PERL} \ - INSTALL_SCRIPT="${INSTALL_SCRIPT}" \ - CXX="${CC}" \ - CFLAGS="${CFLAGS}" \ - CONFIGURE_ARGS="${CONFIGURE_ARGS}" - -.include <bsd.port.pre.mk> -# without including these flags mysqld may crash under heavy load -# and multiple connections at the same time -CXXFLAGS= ${CFLAGS} -felide-constructors -fno-rtti -.if ${OSVERSION} >= 400002 -CXXFLAGS+= -fno-exceptions -.endif - -# MySQL-Server part -.if !defined(CLIENT_ONLY) -RUN_DEPENDS= mysql:${PORTSDIR}/databases/mysql323-client \ - ${LOCALBASE}/lib/perl5/site_perl/${PERL_VER}/${PERL_ARCH}/Mysql.pm:${PORTSDIR}/databases/p5-Mysql - -PLIST_SUB= MYSQL_VERSION=${PORTVERSION} - -pre-fetch: - @${ECHO} "" - @${ECHO} "You may use the following build options:" - @${ECHO} "" - @${ECHO} " WITH_CHARSET=charset define the primary built-in charset (latin1);" - @${ECHO} " WITH_XCHARSET=list define other built-in charsets (may be 'all');" - @${ECHO} " DB_DIR=directory Set alternate directory for database files" - @${ECHO} " (default is /var/db/mysql)." - @${ECHO} " WITH_LINUXTHREADS=yes Use the linuxthreads pthread library." - @${ECHO} " This is _NOT_ recommended for production" - @${ECHO} " servers. Expect problems when enabled." - @${ECHO} " SKIP_INSTALL_DB=yes Skip mysql_install_db" - @${ECHO} " (i. e. leave ${DB_DIR} alone)." - @${ECHO} " This is useful for upgrades." - @${ECHO} " Be sure to know what you are doing!" - @${ECHO} " SKIP_DNS_CHECK=yes don't run resolveip to do an additional" - @${ECHO} " DNS check before inserting local hostname to" - @${ECHO} " mysql database." - @${ECHO} " Use if your machine has no offical DNS entry." - @${ECHO} " BUILD_STATIC=yes Build a static version of mysqld." - @${ECHO} " BUILD_OPTIMIZED=yes Add -mcpu=pentiumpro -O3 to CFLAGS." - @${ECHO} " This setting may produce broken code and thus" - @${ECHO} " is not recommended for production servers." - @${ECHO} "" - -post-patch: - ${MV} ${WRKSRC}/strings/strings-x86.s ${WRKSRC}/strings/strings-x86.S - ${MV} ${WRKSRC}/strings/longlong2str-x86.s ${WRKSRC}/strings/longlong2str-x86.S - -.if exists(${DB_DIR}) && !defined(PACKAGE_BUILDING) && !defined(OVERWRITE_DB) && !defined(SKIP_INSTALL_DB) -pre-install: - @${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) -.if !defined(SKIP_INSTALL_DB) -.if defined(SKIP_DNS_CHECK) - ${PREFIX}/bin/mysql_install_db --force -.else - ${PREFIX}/bin/mysql_install_db -.endif -.endif - @${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/Flags -.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/Flags/*.gif ${PREFIX}/share/doc/mysql/Flags - ${INSTALL_DATA} ${WRKSRC}/Docs/mysql.info ${PREFIX}/info - @install-info ${PREFIX}/info/mysql.info ${PREFIX}/info/dir -.endif - -# MySQL-Client part -.else -MAN1= isamchk.1 isamlog.1 mysql.1 mysql_zap.1 mysqlaccess.1 \ - mysqladmin.1 mysqld.1 mysqld_multi.1 mysqldump.1 mysqlshow.1 \ - perror.1 replace.1 safe_mysqld.1 - -INSTALLS_SHLIB= yes -LDCONFIG_DIRS= %%PREFIX%%/lib/mysql - -CONFIGURE_ARGS+=--without-server -MAKE_ENV= CLIENT_ONLY="${CLIENT_ONLY}" - -post-install: - @${SED} "s|%%PREFIX%%|${PREFIX}|g" < ${FILESDIR}/mysql-client.sh > ${PREFIX}/etc/rc.d/00mysql-client.sh - @${CHMOD} 750 ${PREFIX}/etc/rc.d/00mysql-client.sh - -.endif - -# This is for the maintainer only... -make-plist: - /usr/bin/find foo -type f -or -type l | /usr/bin/cut -d / -f 2- | /usr/bin/sort > ${.CURDIR}/pkg-plist.new - /usr/bin/perl -i -ne 'if (m#share/doc/#) { print "%%PORTDOCS%%", $$_; } else { print $$_; }' ${.CURDIR}/pkg-plist.new - -.include <bsd.port.post.mk> diff --git a/databases/mysql51-server/distinfo b/databases/mysql51-server/distinfo deleted file mode 100644 index d852db9ca3e8..000000000000 --- a/databases/mysql51-server/distinfo +++ /dev/null @@ -1 +0,0 @@ -MD5 (mysql-3.23.47.tar.gz) = e733474825fb158f876f3d97e996a341 diff --git a/databases/mysql51-server/files/mysql-client.sh b/databases/mysql51-server/files/mysql-client.sh deleted file mode 100644 index bef414c12ed2..000000000000 --- a/databases/mysql51-server/files/mysql-client.sh +++ /dev/null @@ -1,15 +0,0 @@ -#!/bin/sh - -case "$1" in - start) - /sbin/ldconfig -m %%PREFIX%%/lib/mysql - ;; - stop) - ;; - *) - echo "" - echo "Usage: `basename $0` { start | stop }" - echo "" - exit 64 - ;; -esac 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 bed75f614ccc..000000000000 --- a/databases/mysql51-server/files/patch-Makefile.in +++ /dev/null @@ -1,16 +0,0 @@ ---- Makefile.in.orig Wed Apr 18 10:54:42 2001 -+++ Makefile.in Sat Apr 21 13:00:23 2001 -@@ -181,8 +181,12 @@ - # These are built from source in the Docs directory - EXTRA_DIST = INSTALL-SOURCE README COPYING COPYING.LIB MIRRORS - --SUBDIRS = include @docs_dirs@ @readline_dir@ @thread_dirs@ @sql_client_dirs@ @sql_server_dirs@ scripts tests man @bench_dirs@ support-files - -+.if defined(CLIENT_ONLY) -+SUBDIRS = include @readline_dir@ @sql_client_dirs@ tests man -+.else -+SUBDIRS = include @thread_dirs@ @docs_dirs@ @sql_server_dirs@ scripts support-files -+.endif - - # Relink after clean - CLEANFILES = linked_client_sources linked_server_sources linked_libmysql_sources linked_libmysql_r_sources linked_include_sources diff --git a/databases/mysql51-server/files/patch-ab b/databases/mysql51-server/files/patch-ab deleted file mode 100644 index 2aa8724dd21f..000000000000 --- a/databases/mysql51-server/files/patch-ab +++ /dev/null @@ -1,15 +0,0 @@ ---- scripts/mysql_install_db.sh.orig Sat Dec 16 22:49:02 2000 -+++ scripts/mysql_install_db.sh Mon Dec 18 11:55:07 2000 -@@ -301,12 +301,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 -p password 'new-password'" diff --git a/databases/mysql51-server/files/patch-af b/databases/mysql51-server/files/patch-af deleted file mode 100644 index 9c4a0b951402..000000000000 --- a/databases/mysql51-server/files/patch-af +++ /dev/null @@ -1,71 +0,0 @@ ---- scripts/safe_mysqld.sh.orig Thu Apr 19 10:11:02 2001 -+++ scripts/safe_mysqld.sh Thu Apr 19 15:15:54 2001 -@@ -73,30 +73,9 @@ - done - } - --MY_PWD=`pwd` --# Check if we are starting this relative (for the binary release) --if test -d $MY_PWD/data/mysql -a -f ./share/mysql/english/errmsg.sys -a \ -- -x ./bin/mysqld --then -- MY_BASEDIR_VERSION=$MY_PWD # Where bin, share and data are -- ledir=$MY_BASEDIR_VERSION/bin # Where mysqld is -- DATADIR=$MY_BASEDIR_VERSION/data -- if test -z "$defaults" -- then -- defaults="--defaults-extra-file=$MY_BASEDIR_VERSION/data/my.cnf" -- fi --# 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=$MY_PWD # Where libexec, share and var are -- ledir=$MY_BASEDIR_VERSION/libexec # Where mysqld is -- DATADIR=$MY_BASEDIR_VERSION/var --else -- MY_BASEDIR_VERSION=@prefix@ -- DATADIR=@localstatedir@ -- ledir=@libexecdir@ --fi -+MY_BASEDIR_VERSION=@prefix@ -+DATADIR=@localstatedir@ -+ledir=@libexecdir@ - - MYSQL_UNIX_PORT=${MYSQL_UNIX_PORT:-@MYSQL_UNIX_ADDR@} - MYSQL_TCP_PORT=${MYSQL_TCP_PORT:-@MYSQL_TCP_PORT@} -@@ -240,34 +219,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 xa | 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 xa | 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 "`date +'%y%m%d %H:%M:%S mysqld restarted'`" | tee -a $err_log 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-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 f10ab97c44a8..000000000000 --- a/databases/mysql51-server/files/patch-configure +++ /dev/null @@ -1,132 +0,0 @@ ---- configure.orig Wed May 9 22:34:50 2001 -+++ configure Sat May 12 11:23:21 2001 -@@ -2994,7 +2994,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 -@@ -3128,38 +3128,7 @@ - echo $ac_n "checking "how to check if pid exists"""... $ac_c" 1>&6 - echo "configure:3130: 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 -- case $SYSTEM_TYPE in -- *darwin*) -- FIND_PROC="$PS -uaxww | grep mysqld | grep \" \$\$PID \" > /dev/null" -- ;; -- *cygwin*) -- FIND_PROC="$PS -e | grep mysqld | grep \" \$\$PID \" > /dev/null" -- ;; -- *) -- { 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; } -- esac --fi -+FIND_PROC="$PS -uaxww | grep mysqld | grep \" \$\$PID \" > /dev/null" - - echo "$ac_t"""$FIND_PROC"" 1>&6 - -@@ -5922,7 +5891,6 @@ - #define $ac_tr_lib 1 - EOF - -- LIBS="-lc_r $LIBS" - - else - echo "$ac_t""no" 1>&6 -@@ -6154,28 +6122,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="$MAX_C_OPTIMIZE" --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" -@@ -6856,10 +6802,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 6866 "configure" -@@ -9019,10 +8961,6 @@ - #do not treat warnings as errors if we are linking agaist other libc - #this is to work around gcc not being permissive on non-system includes - #with respect to ANSI C++ --if test "$ac_cv_prog_gxx" = "yes" -a "$with_other_libc" = "no" --then -- CXXFLAGS="$CXXFLAGS -Werror" --fi - cat > conftest.$ac_ext <<EOF - #line 9028 "configure" - #include "confdefs.h" -@@ -9087,10 +9025,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" -a "$with_other_libc" = "no" --then -- CXXFLAGS="$CXXFLAGS -Werror" --fi - cat > conftest.$ac_ext <<EOF - #line 9096 "configure" - #include "confdefs.h" -@@ -9154,10 +9088,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" -a "$with_other_libc" = "no" --then -- CXXFLAGS="$CXXFLAGS -Werror" --fi - cat > conftest.$ac_ext <<EOF - #line 9163 "configure" - #include "confdefs.h" 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 eb2d5e52e794..000000000000 --- a/databases/mysql51-server/files/patch-include::Makefile.in +++ /dev/null @@ -1,14 +0,0 @@ ---- include/Makefile.in.orig Mon Jan 22 14:43:55 2001 -+++ include/Makefile.in Mon Jan 22 23:14:48 2001 -@@ -284,7 +284,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 8f4acf36e853..000000000000 --- a/databases/mysql51-server/pkg-descr +++ /dev/null @@ -1,4 +0,0 @@ -MySQL is a very fast, multi-threaded, multi-user and robust SQL -(Structured Query Language) database server. - -WWW: http://www.mysql.com/ diff --git a/databases/mysql51-server/pkg-install b/databases/mysql51-server/pkg-install deleted file mode 100644 index 27732bf35c89..000000000000 --- a/databases/mysql51-server/pkg-install +++ /dev/null @@ -1,48 +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." - if pw usermod ${USER} -d ${DB_DIR} - then - echo "Changed home directory of \"${USER}\" to \"${DB_DIR}\"" - else - echo "Changing home directory of \"${USER}\" to \"${DB_DIR}\" failed..." - exit 1 - fi - 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 7a482d60bc34..000000000000 --- a/databases/mysql51-server/pkg-plist +++ /dev/null @@ -1,195 +0,0 @@ -bin/comp_err -bin/isamchk -bin/isamlog -bin/msql2mysql -bin/my_print_defaults -bin/myisamchk -bin/myisamlog -bin/myisampack -bin/mysql_config -bin/mysql_convert_table_format -bin/mysql_find_rows -bin/mysql_fix_privilege_tables -bin/mysql_install_db -bin/mysql_setpermission -bin/mysql_zap -bin/mysqlaccess -bin/mysqlbug -bin/mysqld_multi -bin/mysqldumpslow -bin/mysqlhotcopy -bin/pack_isam -bin/perror -bin/replace -bin/resolve_stack_dump -bin/resolveip -bin/safe_mysqld -etc/rc.d/mysql-server.sh -%%PORTDOCS%%@unexec install-info --delete %D/info/mysql.info %D/info/dir -%%PORTDOCS%%info/mysql.info -%%PORTDOCS%%@exec install-info %D/info/mysql.info %D/info/dir -lib/mysql/libdbug.a -lib/mysql/libheap.a -lib/mysql/libmerge.a -lib/mysql/libmyisam.a -lib/mysql/libmyisammrg.a -lib/mysql/libmystrings.a -lib/mysql/libmysys.a -lib/mysql/libnisam.a -libexec/mysqld -%%PORTDOCS%%share/doc/mysql/Flags/argentina.gif -%%PORTDOCS%%share/doc/mysql/Flags/australia.gif -%%PORTDOCS%%share/doc/mysql/Flags/austria.gif -%%PORTDOCS%%share/doc/mysql/Flags/brazil.gif -%%PORTDOCS%%share/doc/mysql/Flags/bulgaria.gif -%%PORTDOCS%%share/doc/mysql/Flags/canada.gif -%%PORTDOCS%%share/doc/mysql/Flags/chile.gif -%%PORTDOCS%%share/doc/mysql/Flags/china.gif -%%PORTDOCS%%share/doc/mysql/Flags/croatia.gif -%%PORTDOCS%%share/doc/mysql/Flags/czech-republic.gif -%%PORTDOCS%%share/doc/mysql/Flags/denmark.gif -%%PORTDOCS%%share/doc/mysql/Flags/estonia.gif -%%PORTDOCS%%share/doc/mysql/Flags/finland.gif -%%PORTDOCS%%share/doc/mysql/Flags/france.gif -%%PORTDOCS%%share/doc/mysql/Flags/germany.gif -%%PORTDOCS%%share/doc/mysql/Flags/great-britain.gif -%%PORTDOCS%%share/doc/mysql/Flags/greece.gif -%%PORTDOCS%%share/doc/mysql/Flags/hungary.gif -%%PORTDOCS%%share/doc/mysql/Flags/iceland.gif -%%PORTDOCS%%share/doc/mysql/Flags/indonesia.gif -%%PORTDOCS%%share/doc/mysql/Flags/ireland.gif -%%PORTDOCS%%share/doc/mysql/Flags/island.gif -%%PORTDOCS%%share/doc/mysql/Flags/israel.gif -%%PORTDOCS%%share/doc/mysql/Flags/italy.gif -%%PORTDOCS%%share/doc/mysql/Flags/japan.gif -%%PORTDOCS%%share/doc/mysql/Flags/kroatia.gif -%%PORTDOCS%%share/doc/mysql/Flags/latvia.gif -%%PORTDOCS%%share/doc/mysql/Flags/netherlands.gif -%%PORTDOCS%%share/doc/mysql/Flags/poland.gif -%%PORTDOCS%%share/doc/mysql/Flags/portugal.gif -%%PORTDOCS%%share/doc/mysql/Flags/romania.gif -%%PORTDOCS%%share/doc/mysql/Flags/russia.gif -%%PORTDOCS%%share/doc/mysql/Flags/singapore.gif -%%PORTDOCS%%share/doc/mysql/Flags/south-africa.gif -%%PORTDOCS%%share/doc/mysql/Flags/south-africa1.gif -%%PORTDOCS%%share/doc/mysql/Flags/south-korea.gif -%%PORTDOCS%%share/doc/mysql/Flags/spain.gif -%%PORTDOCS%%share/doc/mysql/Flags/sweden.gif -%%PORTDOCS%%share/doc/mysql/Flags/switzerland.gif -%%PORTDOCS%%share/doc/mysql/Flags/taiwan.gif -%%PORTDOCS%%share/doc/mysql/Flags/ukraine.gif -%%PORTDOCS%%share/doc/mysql/Flags/usa.gif -%%PORTDOCS%%share/doc/mysql/Flags/yugoslavia.gif -%%PORTDOCS%%share/doc/mysql/include.texi -%%PORTDOCS%%share/doc/mysql/manual.html -%%PORTDOCS%%share/doc/mysql/manual.ps -%%PORTDOCS%%share/doc/mysql/manual.texi -%%PORTDOCS%%share/doc/mysql/manual.txt -%%PORTDOCS%%share/doc/mysql/manual_toc.html -share/mysql/binary-configure -share/mysql/charsets/Index -share/mysql/charsets/README -share/mysql/charsets/cp1251.conf -share/mysql/charsets/cp1257.conf -share/mysql/charsets/croat.conf -share/mysql/charsets/danish.conf -share/mysql/charsets/dec8.conf -share/mysql/charsets/dos.conf -share/mysql/charsets/estonia.conf -share/mysql/charsets/german1.conf -share/mysql/charsets/greek.conf -share/mysql/charsets/hebrew.conf -share/mysql/charsets/hp8.conf -share/mysql/charsets/hungarian.conf -share/mysql/charsets/koi8_ru.conf -share/mysql/charsets/koi8_ukr.conf -share/mysql/charsets/latin1.conf -share/mysql/charsets/latin2.conf -share/mysql/charsets/latin5.conf -share/mysql/charsets/swe7.conf -share/mysql/charsets/usa7.conf -share/mysql/charsets/win1250.conf -share/mysql/charsets/win1251.conf -share/mysql/charsets/win1251ukr.conf -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/estonian/errmsg.sys -share/mysql/estonian/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/mi_test_all -share/mysql/mi_test_all.res -share/mysql/my-huge.cnf -share/mysql/my-large.cnf -share/mysql/my-medium.cnf -share/mysql/my-small.cnf -share/mysql/mysql-%%MYSQL_VERSION%%.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/romanian/errmsg.sys -share/mysql/romanian/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 -share/mysql/ukrainian/errmsg.sys -share/mysql/ukrainian/errmsg.txt -%%PORTDOCS%%@dirrm share/doc/mysql/Flags -%%PORTDOCS%%@dirrm share/doc/mysql -@dirrm share/mysql/charsets -@dirrm share/mysql/czech -@dirrm share/mysql/danish -@dirrm share/mysql/dutch -@dirrm share/mysql/english -@dirrm share/mysql/estonian -@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/romanian -@dirrm share/mysql/russian -@dirrm share/mysql/slovak -@dirrm share/mysql/spanish -@dirrm share/mysql/swedish -@dirrm share/mysql/ukrainian -@dirrm share/mysql -@exec %D/bin/mysql_install_db -@unexec /usr/bin/killall mysqld > /dev/null 2>&1 || true diff --git a/databases/mysql51-server/pkg-plist.client b/databases/mysql51-server/pkg-plist.client deleted file mode 100644 index e0f85168189c..000000000000 --- a/databases/mysql51-server/pkg-plist.client +++ /dev/null @@ -1,34 +0,0 @@ -bin/mysql -bin/mysqladmin -bin/mysqlbinlog -bin/mysqlcheck -bin/mysqldump -bin/mysqlimport -bin/mysqlshow -bin/mysqltest -etc/rc.d/00mysql-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_no_pthread.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.10 -@dirrm include/mysql -@dirrm lib/mysql diff --git a/databases/mysql54-client/Makefile b/databases/mysql54-client/Makefile deleted file mode 100644 index b5f3065ac95f..000000000000 --- a/databases/mysql54-client/Makefile +++ /dev/null @@ -1,18 +0,0 @@ -# ports collection makefile for: MySQL-client -# Date created: Sun Sep 24 21:21:20 CEST 2000 -# Whom: Dirk Froemberg <dirk@FreeBSD.org> -# -# $FreeBSD$ -# - -PORTNAME= mysql-client -PORTREVISION= 0 - -MASTERDIR= ${.CURDIR}/../mysql323-server -COMMENT= ${PKGDIR}/pkg-comment.client -PKGINSTALL= mustnotexist -PLIST= ${PKGDIR}/pkg-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 572e1e6bb938..000000000000 --- a/databases/mysql54-server/Makefile +++ /dev/null @@ -1,173 +0,0 @@ -# ports collection makefile for: MySQL-server -# Date created: Sun Sep 24 21:20:46 CEST 2000 -# Whom: Dirk Froemberg <dirk@FreeBSD.org> -# -# $FreeBSD$ -# - -PORTNAME?= ${MASTERPORTNAME} -PORTVERSION= 3.23.47 -PORTREVISION?= 0 -CATEGORIES= databases -MASTER_SITES= ${MASTER_SITE_SOURCEFORGE} \ - http://www.kernelnotes.de/MySQL/Downloads/MySQL-3.23/ \ - http://mysql.he.net/Downloads/MySQL-3.23/ \ - ftp://ftp.sunet.se/pub/unix/databases/relational/mysql/Downloads/MySQL-3.23/ -MASTER_SITE_SUBDIR= mirrors/mysql/Downloads/MySQL-3.23 -DISTFILES= mysql-${PORTVERSION}${EXTRACT_SUFX} - -MAINTAINER= dirk@FreeBSD.org - -WRKSRC= ${WRKDIR}/mysql-${PORTVERSION} -SLAVEDIRS= databases/mysql323-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 \ - --with-mit-threads=no \ - --with-libwrap \ - --with-low-memory \ - --with-comment='FreeBSD port: ${PKGNAME}' - -.if ${MACHINE_ARCH} == "i386" -CONFIGURE_ARGS+=--enable-assembler --with-berkeley-db --with-innodb -.endif -.if defined(WITH_CHARSET) && ${WITH_CHARSET} != "" -CONFIGURE_ARGS+=--with-charset=${WITH_CHARSET} -.if defined(WITH_XCHARSET) && ${WITH_XCHARSET} != "" -CONFIGURE_ARGS+=--with-extra-charsets=${WITH_XCHARSET} -.endif -.endif -.if defined(BUILD_STATIC) -CONFIGURE_ARGS+=--with-mysqld-ldflags=--static -.endif -.if defined(BUILD_OPTIMIZED) -CFLAGS+= -mcpu=pentiumpro -O3 -.endif -.if defined(WITH_LINUXTHREADS) -CONFIGURE_ARGS+=--with-named-thread-libs='-DHAVE_GLIBC2_STYLE_GETHOSTBYNAME_R -D_THREAD_SAFE -I${LOCALBASE}/include/pthread/linuxthreads -L${LOCALBASE}/lib -llthread -llgcc_r' -CFLAGS+= -D__USE_UNIX98 -D_REENTRANT -D_THREAD_SAFE -I${LOCALBASE}/include/pthread/linuxthreads -LIB_DEPENDS+= lthread.2:${PORTSDIR}/devel/linuxthreads -.endif -CONFIGURE_ENV+= PERL=${PERL} \ - PERL5=${PERL} \ - INSTALL_SCRIPT="${INSTALL_SCRIPT}" \ - CXX="${CC}" \ - CFLAGS="${CFLAGS}" \ - CONFIGURE_ARGS="${CONFIGURE_ARGS}" - -.include <bsd.port.pre.mk> -# without including these flags mysqld may crash under heavy load -# and multiple connections at the same time -CXXFLAGS= ${CFLAGS} -felide-constructors -fno-rtti -.if ${OSVERSION} >= 400002 -CXXFLAGS+= -fno-exceptions -.endif - -# MySQL-Server part -.if !defined(CLIENT_ONLY) -RUN_DEPENDS= mysql:${PORTSDIR}/databases/mysql323-client \ - ${LOCALBASE}/lib/perl5/site_perl/${PERL_VER}/${PERL_ARCH}/Mysql.pm:${PORTSDIR}/databases/p5-Mysql - -PLIST_SUB= MYSQL_VERSION=${PORTVERSION} - -pre-fetch: - @${ECHO} "" - @${ECHO} "You may use the following build options:" - @${ECHO} "" - @${ECHO} " WITH_CHARSET=charset define the primary built-in charset (latin1);" - @${ECHO} " WITH_XCHARSET=list define other built-in charsets (may be 'all');" - @${ECHO} " DB_DIR=directory Set alternate directory for database files" - @${ECHO} " (default is /var/db/mysql)." - @${ECHO} " WITH_LINUXTHREADS=yes Use the linuxthreads pthread library." - @${ECHO} " This is _NOT_ recommended for production" - @${ECHO} " servers. Expect problems when enabled." - @${ECHO} " SKIP_INSTALL_DB=yes Skip mysql_install_db" - @${ECHO} " (i. e. leave ${DB_DIR} alone)." - @${ECHO} " This is useful for upgrades." - @${ECHO} " Be sure to know what you are doing!" - @${ECHO} " SKIP_DNS_CHECK=yes don't run resolveip to do an additional" - @${ECHO} " DNS check before inserting local hostname to" - @${ECHO} " mysql database." - @${ECHO} " Use if your machine has no offical DNS entry." - @${ECHO} " BUILD_STATIC=yes Build a static version of mysqld." - @${ECHO} " BUILD_OPTIMIZED=yes Add -mcpu=pentiumpro -O3 to CFLAGS." - @${ECHO} " This setting may produce broken code and thus" - @${ECHO} " is not recommended for production servers." - @${ECHO} "" - -post-patch: - ${MV} ${WRKSRC}/strings/strings-x86.s ${WRKSRC}/strings/strings-x86.S - ${MV} ${WRKSRC}/strings/longlong2str-x86.s ${WRKSRC}/strings/longlong2str-x86.S - -.if exists(${DB_DIR}) && !defined(PACKAGE_BUILDING) && !defined(OVERWRITE_DB) && !defined(SKIP_INSTALL_DB) -pre-install: - @${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) -.if !defined(SKIP_INSTALL_DB) -.if defined(SKIP_DNS_CHECK) - ${PREFIX}/bin/mysql_install_db --force -.else - ${PREFIX}/bin/mysql_install_db -.endif -.endif - @${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/Flags -.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/Flags/*.gif ${PREFIX}/share/doc/mysql/Flags - ${INSTALL_DATA} ${WRKSRC}/Docs/mysql.info ${PREFIX}/info - @install-info ${PREFIX}/info/mysql.info ${PREFIX}/info/dir -.endif - -# MySQL-Client part -.else -MAN1= isamchk.1 isamlog.1 mysql.1 mysql_zap.1 mysqlaccess.1 \ - mysqladmin.1 mysqld.1 mysqld_multi.1 mysqldump.1 mysqlshow.1 \ - perror.1 replace.1 safe_mysqld.1 - -INSTALLS_SHLIB= yes -LDCONFIG_DIRS= %%PREFIX%%/lib/mysql - -CONFIGURE_ARGS+=--without-server -MAKE_ENV= CLIENT_ONLY="${CLIENT_ONLY}" - -post-install: - @${SED} "s|%%PREFIX%%|${PREFIX}|g" < ${FILESDIR}/mysql-client.sh > ${PREFIX}/etc/rc.d/00mysql-client.sh - @${CHMOD} 750 ${PREFIX}/etc/rc.d/00mysql-client.sh - -.endif - -# This is for the maintainer only... -make-plist: - /usr/bin/find foo -type f -or -type l | /usr/bin/cut -d / -f 2- | /usr/bin/sort > ${.CURDIR}/pkg-plist.new - /usr/bin/perl -i -ne 'if (m#share/doc/#) { print "%%PORTDOCS%%", $$_; } else { print $$_; }' ${.CURDIR}/pkg-plist.new - -.include <bsd.port.post.mk> diff --git a/databases/mysql54-server/distinfo b/databases/mysql54-server/distinfo deleted file mode 100644 index d852db9ca3e8..000000000000 --- a/databases/mysql54-server/distinfo +++ /dev/null @@ -1 +0,0 @@ -MD5 (mysql-3.23.47.tar.gz) = e733474825fb158f876f3d97e996a341 diff --git a/databases/mysql54-server/files/mysql-client.sh b/databases/mysql54-server/files/mysql-client.sh deleted file mode 100644 index bef414c12ed2..000000000000 --- a/databases/mysql54-server/files/mysql-client.sh +++ /dev/null @@ -1,15 +0,0 @@ -#!/bin/sh - -case "$1" in - start) - /sbin/ldconfig -m %%PREFIX%%/lib/mysql - ;; - stop) - ;; - *) - echo "" - echo "Usage: `basename $0` { start | stop }" - echo "" - exit 64 - ;; -esac 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 bed75f614ccc..000000000000 --- a/databases/mysql54-server/files/patch-Makefile.in +++ /dev/null @@ -1,16 +0,0 @@ ---- Makefile.in.orig Wed Apr 18 10:54:42 2001 -+++ Makefile.in Sat Apr 21 13:00:23 2001 -@@ -181,8 +181,12 @@ - # These are built from source in the Docs directory - EXTRA_DIST = INSTALL-SOURCE README COPYING COPYING.LIB MIRRORS - --SUBDIRS = include @docs_dirs@ @readline_dir@ @thread_dirs@ @sql_client_dirs@ @sql_server_dirs@ scripts tests man @bench_dirs@ support-files - -+.if defined(CLIENT_ONLY) -+SUBDIRS = include @readline_dir@ @sql_client_dirs@ tests man -+.else -+SUBDIRS = include @thread_dirs@ @docs_dirs@ @sql_server_dirs@ scripts support-files -+.endif - - # Relink after clean - CLEANFILES = linked_client_sources linked_server_sources linked_libmysql_sources linked_libmysql_r_sources linked_include_sources diff --git a/databases/mysql54-server/files/patch-ab b/databases/mysql54-server/files/patch-ab deleted file mode 100644 index 2aa8724dd21f..000000000000 --- a/databases/mysql54-server/files/patch-ab +++ /dev/null @@ -1,15 +0,0 @@ ---- scripts/mysql_install_db.sh.orig Sat Dec 16 22:49:02 2000 -+++ scripts/mysql_install_db.sh Mon Dec 18 11:55:07 2000 -@@ -301,12 +301,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 -p password 'new-password'" diff --git a/databases/mysql54-server/files/patch-af b/databases/mysql54-server/files/patch-af deleted file mode 100644 index 9c4a0b951402..000000000000 --- a/databases/mysql54-server/files/patch-af +++ /dev/null @@ -1,71 +0,0 @@ ---- scripts/safe_mysqld.sh.orig Thu Apr 19 10:11:02 2001 -+++ scripts/safe_mysqld.sh Thu Apr 19 15:15:54 2001 -@@ -73,30 +73,9 @@ - done - } - --MY_PWD=`pwd` --# Check if we are starting this relative (for the binary release) --if test -d $MY_PWD/data/mysql -a -f ./share/mysql/english/errmsg.sys -a \ -- -x ./bin/mysqld --then -- MY_BASEDIR_VERSION=$MY_PWD # Where bin, share and data are -- ledir=$MY_BASEDIR_VERSION/bin # Where mysqld is -- DATADIR=$MY_BASEDIR_VERSION/data -- if test -z "$defaults" -- then -- defaults="--defaults-extra-file=$MY_BASEDIR_VERSION/data/my.cnf" -- fi --# 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=$MY_PWD # Where libexec, share and var are -- ledir=$MY_BASEDIR_VERSION/libexec # Where mysqld is -- DATADIR=$MY_BASEDIR_VERSION/var --else -- MY_BASEDIR_VERSION=@prefix@ -- DATADIR=@localstatedir@ -- ledir=@libexecdir@ --fi -+MY_BASEDIR_VERSION=@prefix@ -+DATADIR=@localstatedir@ -+ledir=@libexecdir@ - - MYSQL_UNIX_PORT=${MYSQL_UNIX_PORT:-@MYSQL_UNIX_ADDR@} - MYSQL_TCP_PORT=${MYSQL_TCP_PORT:-@MYSQL_TCP_PORT@} -@@ -240,34 +219,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 xa | 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 xa | 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 "`date +'%y%m%d %H:%M:%S mysqld restarted'`" | tee -a $err_log 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-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 f10ab97c44a8..000000000000 --- a/databases/mysql54-server/files/patch-configure +++ /dev/null @@ -1,132 +0,0 @@ ---- configure.orig Wed May 9 22:34:50 2001 -+++ configure Sat May 12 11:23:21 2001 -@@ -2994,7 +2994,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 -@@ -3128,38 +3128,7 @@ - echo $ac_n "checking "how to check if pid exists"""... $ac_c" 1>&6 - echo "configure:3130: 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 -- case $SYSTEM_TYPE in -- *darwin*) -- FIND_PROC="$PS -uaxww | grep mysqld | grep \" \$\$PID \" > /dev/null" -- ;; -- *cygwin*) -- FIND_PROC="$PS -e | grep mysqld | grep \" \$\$PID \" > /dev/null" -- ;; -- *) -- { 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; } -- esac --fi -+FIND_PROC="$PS -uaxww | grep mysqld | grep \" \$\$PID \" > /dev/null" - - echo "$ac_t"""$FIND_PROC"" 1>&6 - -@@ -5922,7 +5891,6 @@ - #define $ac_tr_lib 1 - EOF - -- LIBS="-lc_r $LIBS" - - else - echo "$ac_t""no" 1>&6 -@@ -6154,28 +6122,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="$MAX_C_OPTIMIZE" --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" -@@ -6856,10 +6802,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 6866 "configure" -@@ -9019,10 +8961,6 @@ - #do not treat warnings as errors if we are linking agaist other libc - #this is to work around gcc not being permissive on non-system includes - #with respect to ANSI C++ --if test "$ac_cv_prog_gxx" = "yes" -a "$with_other_libc" = "no" --then -- CXXFLAGS="$CXXFLAGS -Werror" --fi - cat > conftest.$ac_ext <<EOF - #line 9028 "configure" - #include "confdefs.h" -@@ -9087,10 +9025,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" -a "$with_other_libc" = "no" --then -- CXXFLAGS="$CXXFLAGS -Werror" --fi - cat > conftest.$ac_ext <<EOF - #line 9096 "configure" - #include "confdefs.h" -@@ -9154,10 +9088,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" -a "$with_other_libc" = "no" --then -- CXXFLAGS="$CXXFLAGS -Werror" --fi - cat > conftest.$ac_ext <<EOF - #line 9163 "configure" - #include "confdefs.h" 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 eb2d5e52e794..000000000000 --- a/databases/mysql54-server/files/patch-include::Makefile.in +++ /dev/null @@ -1,14 +0,0 @@ ---- include/Makefile.in.orig Mon Jan 22 14:43:55 2001 -+++ include/Makefile.in Mon Jan 22 23:14:48 2001 -@@ -284,7 +284,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 8f4acf36e853..000000000000 --- a/databases/mysql54-server/pkg-descr +++ /dev/null @@ -1,4 +0,0 @@ -MySQL is a very fast, multi-threaded, multi-user and robust SQL -(Structured Query Language) database server. - -WWW: http://www.mysql.com/ diff --git a/databases/mysql54-server/pkg-install b/databases/mysql54-server/pkg-install deleted file mode 100644 index 27732bf35c89..000000000000 --- a/databases/mysql54-server/pkg-install +++ /dev/null @@ -1,48 +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." - if pw usermod ${USER} -d ${DB_DIR} - then - echo "Changed home directory of \"${USER}\" to \"${DB_DIR}\"" - else - echo "Changing home directory of \"${USER}\" to \"${DB_DIR}\" failed..." - exit 1 - fi - 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 7a482d60bc34..000000000000 --- a/databases/mysql54-server/pkg-plist +++ /dev/null @@ -1,195 +0,0 @@ -bin/comp_err -bin/isamchk -bin/isamlog -bin/msql2mysql -bin/my_print_defaults -bin/myisamchk -bin/myisamlog -bin/myisampack -bin/mysql_config -bin/mysql_convert_table_format -bin/mysql_find_rows -bin/mysql_fix_privilege_tables -bin/mysql_install_db -bin/mysql_setpermission -bin/mysql_zap -bin/mysqlaccess -bin/mysqlbug -bin/mysqld_multi -bin/mysqldumpslow -bin/mysqlhotcopy -bin/pack_isam -bin/perror -bin/replace -bin/resolve_stack_dump -bin/resolveip -bin/safe_mysqld -etc/rc.d/mysql-server.sh -%%PORTDOCS%%@unexec install-info --delete %D/info/mysql.info %D/info/dir -%%PORTDOCS%%info/mysql.info -%%PORTDOCS%%@exec install-info %D/info/mysql.info %D/info/dir -lib/mysql/libdbug.a -lib/mysql/libheap.a -lib/mysql/libmerge.a -lib/mysql/libmyisam.a -lib/mysql/libmyisammrg.a -lib/mysql/libmystrings.a -lib/mysql/libmysys.a -lib/mysql/libnisam.a -libexec/mysqld -%%PORTDOCS%%share/doc/mysql/Flags/argentina.gif -%%PORTDOCS%%share/doc/mysql/Flags/australia.gif -%%PORTDOCS%%share/doc/mysql/Flags/austria.gif -%%PORTDOCS%%share/doc/mysql/Flags/brazil.gif -%%PORTDOCS%%share/doc/mysql/Flags/bulgaria.gif -%%PORTDOCS%%share/doc/mysql/Flags/canada.gif -%%PORTDOCS%%share/doc/mysql/Flags/chile.gif -%%PORTDOCS%%share/doc/mysql/Flags/china.gif -%%PORTDOCS%%share/doc/mysql/Flags/croatia.gif -%%PORTDOCS%%share/doc/mysql/Flags/czech-republic.gif -%%PORTDOCS%%share/doc/mysql/Flags/denmark.gif -%%PORTDOCS%%share/doc/mysql/Flags/estonia.gif -%%PORTDOCS%%share/doc/mysql/Flags/finland.gif -%%PORTDOCS%%share/doc/mysql/Flags/france.gif -%%PORTDOCS%%share/doc/mysql/Flags/germany.gif -%%PORTDOCS%%share/doc/mysql/Flags/great-britain.gif -%%PORTDOCS%%share/doc/mysql/Flags/greece.gif -%%PORTDOCS%%share/doc/mysql/Flags/hungary.gif -%%PORTDOCS%%share/doc/mysql/Flags/iceland.gif -%%PORTDOCS%%share/doc/mysql/Flags/indonesia.gif -%%PORTDOCS%%share/doc/mysql/Flags/ireland.gif -%%PORTDOCS%%share/doc/mysql/Flags/island.gif -%%PORTDOCS%%share/doc/mysql/Flags/israel.gif -%%PORTDOCS%%share/doc/mysql/Flags/italy.gif -%%PORTDOCS%%share/doc/mysql/Flags/japan.gif -%%PORTDOCS%%share/doc/mysql/Flags/kroatia.gif -%%PORTDOCS%%share/doc/mysql/Flags/latvia.gif -%%PORTDOCS%%share/doc/mysql/Flags/netherlands.gif -%%PORTDOCS%%share/doc/mysql/Flags/poland.gif -%%PORTDOCS%%share/doc/mysql/Flags/portugal.gif -%%PORTDOCS%%share/doc/mysql/Flags/romania.gif -%%PORTDOCS%%share/doc/mysql/Flags/russia.gif -%%PORTDOCS%%share/doc/mysql/Flags/singapore.gif -%%PORTDOCS%%share/doc/mysql/Flags/south-africa.gif -%%PORTDOCS%%share/doc/mysql/Flags/south-africa1.gif -%%PORTDOCS%%share/doc/mysql/Flags/south-korea.gif -%%PORTDOCS%%share/doc/mysql/Flags/spain.gif -%%PORTDOCS%%share/doc/mysql/Flags/sweden.gif -%%PORTDOCS%%share/doc/mysql/Flags/switzerland.gif -%%PORTDOCS%%share/doc/mysql/Flags/taiwan.gif -%%PORTDOCS%%share/doc/mysql/Flags/ukraine.gif -%%PORTDOCS%%share/doc/mysql/Flags/usa.gif -%%PORTDOCS%%share/doc/mysql/Flags/yugoslavia.gif -%%PORTDOCS%%share/doc/mysql/include.texi -%%PORTDOCS%%share/doc/mysql/manual.html -%%PORTDOCS%%share/doc/mysql/manual.ps -%%PORTDOCS%%share/doc/mysql/manual.texi -%%PORTDOCS%%share/doc/mysql/manual.txt -%%PORTDOCS%%share/doc/mysql/manual_toc.html -share/mysql/binary-configure -share/mysql/charsets/Index -share/mysql/charsets/README -share/mysql/charsets/cp1251.conf -share/mysql/charsets/cp1257.conf -share/mysql/charsets/croat.conf -share/mysql/charsets/danish.conf -share/mysql/charsets/dec8.conf -share/mysql/charsets/dos.conf -share/mysql/charsets/estonia.conf -share/mysql/charsets/german1.conf -share/mysql/charsets/greek.conf -share/mysql/charsets/hebrew.conf -share/mysql/charsets/hp8.conf -share/mysql/charsets/hungarian.conf -share/mysql/charsets/koi8_ru.conf -share/mysql/charsets/koi8_ukr.conf -share/mysql/charsets/latin1.conf -share/mysql/charsets/latin2.conf -share/mysql/charsets/latin5.conf -share/mysql/charsets/swe7.conf -share/mysql/charsets/usa7.conf -share/mysql/charsets/win1250.conf -share/mysql/charsets/win1251.conf -share/mysql/charsets/win1251ukr.conf -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/estonian/errmsg.sys -share/mysql/estonian/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/mi_test_all -share/mysql/mi_test_all.res -share/mysql/my-huge.cnf -share/mysql/my-large.cnf -share/mysql/my-medium.cnf -share/mysql/my-small.cnf -share/mysql/mysql-%%MYSQL_VERSION%%.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/romanian/errmsg.sys -share/mysql/romanian/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 -share/mysql/ukrainian/errmsg.sys -share/mysql/ukrainian/errmsg.txt -%%PORTDOCS%%@dirrm share/doc/mysql/Flags -%%PORTDOCS%%@dirrm share/doc/mysql -@dirrm share/mysql/charsets -@dirrm share/mysql/czech -@dirrm share/mysql/danish -@dirrm share/mysql/dutch -@dirrm share/mysql/english -@dirrm share/mysql/estonian -@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/romanian -@dirrm share/mysql/russian -@dirrm share/mysql/slovak -@dirrm share/mysql/spanish -@dirrm share/mysql/swedish -@dirrm share/mysql/ukrainian -@dirrm share/mysql -@exec %D/bin/mysql_install_db -@unexec /usr/bin/killall mysqld > /dev/null 2>&1 || true diff --git a/databases/mysql54-server/pkg-plist.client b/databases/mysql54-server/pkg-plist.client deleted file mode 100644 index e0f85168189c..000000000000 --- a/databases/mysql54-server/pkg-plist.client +++ /dev/null @@ -1,34 +0,0 @@ -bin/mysql -bin/mysqladmin -bin/mysqlbinlog -bin/mysqlcheck -bin/mysqldump -bin/mysqlimport -bin/mysqlshow -bin/mysqltest -etc/rc.d/00mysql-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_no_pthread.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.10 -@dirrm include/mysql -@dirrm lib/mysql diff --git a/databases/mysql55-client/Makefile b/databases/mysql55-client/Makefile deleted file mode 100644 index b5f3065ac95f..000000000000 --- a/databases/mysql55-client/Makefile +++ /dev/null @@ -1,18 +0,0 @@ -# ports collection makefile for: MySQL-client -# Date created: Sun Sep 24 21:21:20 CEST 2000 -# Whom: Dirk Froemberg <dirk@FreeBSD.org> -# -# $FreeBSD$ -# - -PORTNAME= mysql-client -PORTREVISION= 0 - -MASTERDIR= ${.CURDIR}/../mysql323-server -COMMENT= ${PKGDIR}/pkg-comment.client -PKGINSTALL= mustnotexist -PLIST= ${PKGDIR}/pkg-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 572e1e6bb938..000000000000 --- a/databases/mysql55-server/Makefile +++ /dev/null @@ -1,173 +0,0 @@ -# ports collection makefile for: MySQL-server -# Date created: Sun Sep 24 21:20:46 CEST 2000 -# Whom: Dirk Froemberg <dirk@FreeBSD.org> -# -# $FreeBSD$ -# - -PORTNAME?= ${MASTERPORTNAME} -PORTVERSION= 3.23.47 -PORTREVISION?= 0 -CATEGORIES= databases -MASTER_SITES= ${MASTER_SITE_SOURCEFORGE} \ - http://www.kernelnotes.de/MySQL/Downloads/MySQL-3.23/ \ - http://mysql.he.net/Downloads/MySQL-3.23/ \ - ftp://ftp.sunet.se/pub/unix/databases/relational/mysql/Downloads/MySQL-3.23/ -MASTER_SITE_SUBDIR= mirrors/mysql/Downloads/MySQL-3.23 -DISTFILES= mysql-${PORTVERSION}${EXTRACT_SUFX} - -MAINTAINER= dirk@FreeBSD.org - -WRKSRC= ${WRKDIR}/mysql-${PORTVERSION} -SLAVEDIRS= databases/mysql323-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 \ - --with-mit-threads=no \ - --with-libwrap \ - --with-low-memory \ - --with-comment='FreeBSD port: ${PKGNAME}' - -.if ${MACHINE_ARCH} == "i386" -CONFIGURE_ARGS+=--enable-assembler --with-berkeley-db --with-innodb -.endif -.if defined(WITH_CHARSET) && ${WITH_CHARSET} != "" -CONFIGURE_ARGS+=--with-charset=${WITH_CHARSET} -.if defined(WITH_XCHARSET) && ${WITH_XCHARSET} != "" -CONFIGURE_ARGS+=--with-extra-charsets=${WITH_XCHARSET} -.endif -.endif -.if defined(BUILD_STATIC) -CONFIGURE_ARGS+=--with-mysqld-ldflags=--static -.endif -.if defined(BUILD_OPTIMIZED) -CFLAGS+= -mcpu=pentiumpro -O3 -.endif -.if defined(WITH_LINUXTHREADS) -CONFIGURE_ARGS+=--with-named-thread-libs='-DHAVE_GLIBC2_STYLE_GETHOSTBYNAME_R -D_THREAD_SAFE -I${LOCALBASE}/include/pthread/linuxthreads -L${LOCALBASE}/lib -llthread -llgcc_r' -CFLAGS+= -D__USE_UNIX98 -D_REENTRANT -D_THREAD_SAFE -I${LOCALBASE}/include/pthread/linuxthreads -LIB_DEPENDS+= lthread.2:${PORTSDIR}/devel/linuxthreads -.endif -CONFIGURE_ENV+= PERL=${PERL} \ - PERL5=${PERL} \ - INSTALL_SCRIPT="${INSTALL_SCRIPT}" \ - CXX="${CC}" \ - CFLAGS="${CFLAGS}" \ - CONFIGURE_ARGS="${CONFIGURE_ARGS}" - -.include <bsd.port.pre.mk> -# without including these flags mysqld may crash under heavy load -# and multiple connections at the same time -CXXFLAGS= ${CFLAGS} -felide-constructors -fno-rtti -.if ${OSVERSION} >= 400002 -CXXFLAGS+= -fno-exceptions -.endif - -# MySQL-Server part -.if !defined(CLIENT_ONLY) -RUN_DEPENDS= mysql:${PORTSDIR}/databases/mysql323-client \ - ${LOCALBASE}/lib/perl5/site_perl/${PERL_VER}/${PERL_ARCH}/Mysql.pm:${PORTSDIR}/databases/p5-Mysql - -PLIST_SUB= MYSQL_VERSION=${PORTVERSION} - -pre-fetch: - @${ECHO} "" - @${ECHO} "You may use the following build options:" - @${ECHO} "" - @${ECHO} " WITH_CHARSET=charset define the primary built-in charset (latin1);" - @${ECHO} " WITH_XCHARSET=list define other built-in charsets (may be 'all');" - @${ECHO} " DB_DIR=directory Set alternate directory for database files" - @${ECHO} " (default is /var/db/mysql)." - @${ECHO} " WITH_LINUXTHREADS=yes Use the linuxthreads pthread library." - @${ECHO} " This is _NOT_ recommended for production" - @${ECHO} " servers. Expect problems when enabled." - @${ECHO} " SKIP_INSTALL_DB=yes Skip mysql_install_db" - @${ECHO} " (i. e. leave ${DB_DIR} alone)." - @${ECHO} " This is useful for upgrades." - @${ECHO} " Be sure to know what you are doing!" - @${ECHO} " SKIP_DNS_CHECK=yes don't run resolveip to do an additional" - @${ECHO} " DNS check before inserting local hostname to" - @${ECHO} " mysql database." - @${ECHO} " Use if your machine has no offical DNS entry." - @${ECHO} " BUILD_STATIC=yes Build a static version of mysqld." - @${ECHO} " BUILD_OPTIMIZED=yes Add -mcpu=pentiumpro -O3 to CFLAGS." - @${ECHO} " This setting may produce broken code and thus" - @${ECHO} " is not recommended for production servers." - @${ECHO} "" - -post-patch: - ${MV} ${WRKSRC}/strings/strings-x86.s ${WRKSRC}/strings/strings-x86.S - ${MV} ${WRKSRC}/strings/longlong2str-x86.s ${WRKSRC}/strings/longlong2str-x86.S - -.if exists(${DB_DIR}) && !defined(PACKAGE_BUILDING) && !defined(OVERWRITE_DB) && !defined(SKIP_INSTALL_DB) -pre-install: - @${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) -.if !defined(SKIP_INSTALL_DB) -.if defined(SKIP_DNS_CHECK) - ${PREFIX}/bin/mysql_install_db --force -.else - ${PREFIX}/bin/mysql_install_db -.endif -.endif - @${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/Flags -.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/Flags/*.gif ${PREFIX}/share/doc/mysql/Flags - ${INSTALL_DATA} ${WRKSRC}/Docs/mysql.info ${PREFIX}/info - @install-info ${PREFIX}/info/mysql.info ${PREFIX}/info/dir -.endif - -# MySQL-Client part -.else -MAN1= isamchk.1 isamlog.1 mysql.1 mysql_zap.1 mysqlaccess.1 \ - mysqladmin.1 mysqld.1 mysqld_multi.1 mysqldump.1 mysqlshow.1 \ - perror.1 replace.1 safe_mysqld.1 - -INSTALLS_SHLIB= yes -LDCONFIG_DIRS= %%PREFIX%%/lib/mysql - -CONFIGURE_ARGS+=--without-server -MAKE_ENV= CLIENT_ONLY="${CLIENT_ONLY}" - -post-install: - @${SED} "s|%%PREFIX%%|${PREFIX}|g" < ${FILESDIR}/mysql-client.sh > ${PREFIX}/etc/rc.d/00mysql-client.sh - @${CHMOD} 750 ${PREFIX}/etc/rc.d/00mysql-client.sh - -.endif - -# This is for the maintainer only... -make-plist: - /usr/bin/find foo -type f -or -type l | /usr/bin/cut -d / -f 2- | /usr/bin/sort > ${.CURDIR}/pkg-plist.new - /usr/bin/perl -i -ne 'if (m#share/doc/#) { print "%%PORTDOCS%%", $$_; } else { print $$_; }' ${.CURDIR}/pkg-plist.new - -.include <bsd.port.post.mk> diff --git a/databases/mysql55-server/distinfo b/databases/mysql55-server/distinfo deleted file mode 100644 index d852db9ca3e8..000000000000 --- a/databases/mysql55-server/distinfo +++ /dev/null @@ -1 +0,0 @@ -MD5 (mysql-3.23.47.tar.gz) = e733474825fb158f876f3d97e996a341 diff --git a/databases/mysql55-server/files/mysql-client.sh b/databases/mysql55-server/files/mysql-client.sh deleted file mode 100644 index bef414c12ed2..000000000000 --- a/databases/mysql55-server/files/mysql-client.sh +++ /dev/null @@ -1,15 +0,0 @@ -#!/bin/sh - -case "$1" in - start) - /sbin/ldconfig -m %%PREFIX%%/lib/mysql - ;; - stop) - ;; - *) - echo "" - echo "Usage: `basename $0` { start | stop }" - echo "" - exit 64 - ;; -esac 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 bed75f614ccc..000000000000 --- a/databases/mysql55-server/files/patch-Makefile.in +++ /dev/null @@ -1,16 +0,0 @@ ---- Makefile.in.orig Wed Apr 18 10:54:42 2001 -+++ Makefile.in Sat Apr 21 13:00:23 2001 -@@ -181,8 +181,12 @@ - # These are built from source in the Docs directory - EXTRA_DIST = INSTALL-SOURCE README COPYING COPYING.LIB MIRRORS - --SUBDIRS = include @docs_dirs@ @readline_dir@ @thread_dirs@ @sql_client_dirs@ @sql_server_dirs@ scripts tests man @bench_dirs@ support-files - -+.if defined(CLIENT_ONLY) -+SUBDIRS = include @readline_dir@ @sql_client_dirs@ tests man -+.else -+SUBDIRS = include @thread_dirs@ @docs_dirs@ @sql_server_dirs@ scripts support-files -+.endif - - # Relink after clean - CLEANFILES = linked_client_sources linked_server_sources linked_libmysql_sources linked_libmysql_r_sources linked_include_sources diff --git a/databases/mysql55-server/files/patch-ab b/databases/mysql55-server/files/patch-ab deleted file mode 100644 index 2aa8724dd21f..000000000000 --- a/databases/mysql55-server/files/patch-ab +++ /dev/null @@ -1,15 +0,0 @@ ---- scripts/mysql_install_db.sh.orig Sat Dec 16 22:49:02 2000 -+++ scripts/mysql_install_db.sh Mon Dec 18 11:55:07 2000 -@@ -301,12 +301,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 -p password 'new-password'" diff --git a/databases/mysql55-server/files/patch-af b/databases/mysql55-server/files/patch-af deleted file mode 100644 index 9c4a0b951402..000000000000 --- a/databases/mysql55-server/files/patch-af +++ /dev/null @@ -1,71 +0,0 @@ ---- scripts/safe_mysqld.sh.orig Thu Apr 19 10:11:02 2001 -+++ scripts/safe_mysqld.sh Thu Apr 19 15:15:54 2001 -@@ -73,30 +73,9 @@ - done - } - --MY_PWD=`pwd` --# Check if we are starting this relative (for the binary release) --if test -d $MY_PWD/data/mysql -a -f ./share/mysql/english/errmsg.sys -a \ -- -x ./bin/mysqld --then -- MY_BASEDIR_VERSION=$MY_PWD # Where bin, share and data are -- ledir=$MY_BASEDIR_VERSION/bin # Where mysqld is -- DATADIR=$MY_BASEDIR_VERSION/data -- if test -z "$defaults" -- then -- defaults="--defaults-extra-file=$MY_BASEDIR_VERSION/data/my.cnf" -- fi --# 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=$MY_PWD # Where libexec, share and var are -- ledir=$MY_BASEDIR_VERSION/libexec # Where mysqld is -- DATADIR=$MY_BASEDIR_VERSION/var --else -- MY_BASEDIR_VERSION=@prefix@ -- DATADIR=@localstatedir@ -- ledir=@libexecdir@ --fi -+MY_BASEDIR_VERSION=@prefix@ -+DATADIR=@localstatedir@ -+ledir=@libexecdir@ - - MYSQL_UNIX_PORT=${MYSQL_UNIX_PORT:-@MYSQL_UNIX_ADDR@} - MYSQL_TCP_PORT=${MYSQL_TCP_PORT:-@MYSQL_TCP_PORT@} -@@ -240,34 +219,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 xa | 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 xa | 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 "`date +'%y%m%d %H:%M:%S mysqld restarted'`" | tee -a $err_log 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-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 f10ab97c44a8..000000000000 --- a/databases/mysql55-server/files/patch-configure +++ /dev/null @@ -1,132 +0,0 @@ ---- configure.orig Wed May 9 22:34:50 2001 -+++ configure Sat May 12 11:23:21 2001 -@@ -2994,7 +2994,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 -@@ -3128,38 +3128,7 @@ - echo $ac_n "checking "how to check if pid exists"""... $ac_c" 1>&6 - echo "configure:3130: 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 -- case $SYSTEM_TYPE in -- *darwin*) -- FIND_PROC="$PS -uaxww | grep mysqld | grep \" \$\$PID \" > /dev/null" -- ;; -- *cygwin*) -- FIND_PROC="$PS -e | grep mysqld | grep \" \$\$PID \" > /dev/null" -- ;; -- *) -- { 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; } -- esac --fi -+FIND_PROC="$PS -uaxww | grep mysqld | grep \" \$\$PID \" > /dev/null" - - echo "$ac_t"""$FIND_PROC"" 1>&6 - -@@ -5922,7 +5891,6 @@ - #define $ac_tr_lib 1 - EOF - -- LIBS="-lc_r $LIBS" - - else - echo "$ac_t""no" 1>&6 -@@ -6154,28 +6122,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="$MAX_C_OPTIMIZE" --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" -@@ -6856,10 +6802,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 6866 "configure" -@@ -9019,10 +8961,6 @@ - #do not treat warnings as errors if we are linking agaist other libc - #this is to work around gcc not being permissive on non-system includes - #with respect to ANSI C++ --if test "$ac_cv_prog_gxx" = "yes" -a "$with_other_libc" = "no" --then -- CXXFLAGS="$CXXFLAGS -Werror" --fi - cat > conftest.$ac_ext <<EOF - #line 9028 "configure" - #include "confdefs.h" -@@ -9087,10 +9025,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" -a "$with_other_libc" = "no" --then -- CXXFLAGS="$CXXFLAGS -Werror" --fi - cat > conftest.$ac_ext <<EOF - #line 9096 "configure" - #include "confdefs.h" -@@ -9154,10 +9088,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" -a "$with_other_libc" = "no" --then -- CXXFLAGS="$CXXFLAGS -Werror" --fi - cat > conftest.$ac_ext <<EOF - #line 9163 "configure" - #include "confdefs.h" 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 eb2d5e52e794..000000000000 --- a/databases/mysql55-server/files/patch-include::Makefile.in +++ /dev/null @@ -1,14 +0,0 @@ ---- include/Makefile.in.orig Mon Jan 22 14:43:55 2001 -+++ include/Makefile.in Mon Jan 22 23:14:48 2001 -@@ -284,7 +284,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 8f4acf36e853..000000000000 --- a/databases/mysql55-server/pkg-descr +++ /dev/null @@ -1,4 +0,0 @@ -MySQL is a very fast, multi-threaded, multi-user and robust SQL -(Structured Query Language) database server. - -WWW: http://www.mysql.com/ diff --git a/databases/mysql55-server/pkg-install b/databases/mysql55-server/pkg-install deleted file mode 100644 index 27732bf35c89..000000000000 --- a/databases/mysql55-server/pkg-install +++ /dev/null @@ -1,48 +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." - if pw usermod ${USER} -d ${DB_DIR} - then - echo "Changed home directory of \"${USER}\" to \"${DB_DIR}\"" - else - echo "Changing home directory of \"${USER}\" to \"${DB_DIR}\" failed..." - exit 1 - fi - 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 7a482d60bc34..000000000000 --- a/databases/mysql55-server/pkg-plist +++ /dev/null @@ -1,195 +0,0 @@ -bin/comp_err -bin/isamchk -bin/isamlog -bin/msql2mysql -bin/my_print_defaults -bin/myisamchk -bin/myisamlog -bin/myisampack -bin/mysql_config -bin/mysql_convert_table_format -bin/mysql_find_rows -bin/mysql_fix_privilege_tables -bin/mysql_install_db -bin/mysql_setpermission -bin/mysql_zap -bin/mysqlaccess -bin/mysqlbug -bin/mysqld_multi -bin/mysqldumpslow -bin/mysqlhotcopy -bin/pack_isam -bin/perror -bin/replace -bin/resolve_stack_dump -bin/resolveip -bin/safe_mysqld -etc/rc.d/mysql-server.sh -%%PORTDOCS%%@unexec install-info --delete %D/info/mysql.info %D/info/dir -%%PORTDOCS%%info/mysql.info -%%PORTDOCS%%@exec install-info %D/info/mysql.info %D/info/dir -lib/mysql/libdbug.a -lib/mysql/libheap.a -lib/mysql/libmerge.a -lib/mysql/libmyisam.a -lib/mysql/libmyisammrg.a -lib/mysql/libmystrings.a -lib/mysql/libmysys.a -lib/mysql/libnisam.a -libexec/mysqld -%%PORTDOCS%%share/doc/mysql/Flags/argentina.gif -%%PORTDOCS%%share/doc/mysql/Flags/australia.gif -%%PORTDOCS%%share/doc/mysql/Flags/austria.gif -%%PORTDOCS%%share/doc/mysql/Flags/brazil.gif -%%PORTDOCS%%share/doc/mysql/Flags/bulgaria.gif -%%PORTDOCS%%share/doc/mysql/Flags/canada.gif -%%PORTDOCS%%share/doc/mysql/Flags/chile.gif -%%PORTDOCS%%share/doc/mysql/Flags/china.gif -%%PORTDOCS%%share/doc/mysql/Flags/croatia.gif -%%PORTDOCS%%share/doc/mysql/Flags/czech-republic.gif -%%PORTDOCS%%share/doc/mysql/Flags/denmark.gif -%%PORTDOCS%%share/doc/mysql/Flags/estonia.gif -%%PORTDOCS%%share/doc/mysql/Flags/finland.gif -%%PORTDOCS%%share/doc/mysql/Flags/france.gif -%%PORTDOCS%%share/doc/mysql/Flags/germany.gif -%%PORTDOCS%%share/doc/mysql/Flags/great-britain.gif -%%PORTDOCS%%share/doc/mysql/Flags/greece.gif -%%PORTDOCS%%share/doc/mysql/Flags/hungary.gif -%%PORTDOCS%%share/doc/mysql/Flags/iceland.gif -%%PORTDOCS%%share/doc/mysql/Flags/indonesia.gif -%%PORTDOCS%%share/doc/mysql/Flags/ireland.gif -%%PORTDOCS%%share/doc/mysql/Flags/island.gif -%%PORTDOCS%%share/doc/mysql/Flags/israel.gif -%%PORTDOCS%%share/doc/mysql/Flags/italy.gif -%%PORTDOCS%%share/doc/mysql/Flags/japan.gif -%%PORTDOCS%%share/doc/mysql/Flags/kroatia.gif -%%PORTDOCS%%share/doc/mysql/Flags/latvia.gif -%%PORTDOCS%%share/doc/mysql/Flags/netherlands.gif -%%PORTDOCS%%share/doc/mysql/Flags/poland.gif -%%PORTDOCS%%share/doc/mysql/Flags/portugal.gif -%%PORTDOCS%%share/doc/mysql/Flags/romania.gif -%%PORTDOCS%%share/doc/mysql/Flags/russia.gif -%%PORTDOCS%%share/doc/mysql/Flags/singapore.gif -%%PORTDOCS%%share/doc/mysql/Flags/south-africa.gif -%%PORTDOCS%%share/doc/mysql/Flags/south-africa1.gif -%%PORTDOCS%%share/doc/mysql/Flags/south-korea.gif -%%PORTDOCS%%share/doc/mysql/Flags/spain.gif -%%PORTDOCS%%share/doc/mysql/Flags/sweden.gif -%%PORTDOCS%%share/doc/mysql/Flags/switzerland.gif -%%PORTDOCS%%share/doc/mysql/Flags/taiwan.gif -%%PORTDOCS%%share/doc/mysql/Flags/ukraine.gif -%%PORTDOCS%%share/doc/mysql/Flags/usa.gif -%%PORTDOCS%%share/doc/mysql/Flags/yugoslavia.gif -%%PORTDOCS%%share/doc/mysql/include.texi -%%PORTDOCS%%share/doc/mysql/manual.html -%%PORTDOCS%%share/doc/mysql/manual.ps -%%PORTDOCS%%share/doc/mysql/manual.texi -%%PORTDOCS%%share/doc/mysql/manual.txt -%%PORTDOCS%%share/doc/mysql/manual_toc.html -share/mysql/binary-configure -share/mysql/charsets/Index -share/mysql/charsets/README -share/mysql/charsets/cp1251.conf -share/mysql/charsets/cp1257.conf -share/mysql/charsets/croat.conf -share/mysql/charsets/danish.conf -share/mysql/charsets/dec8.conf -share/mysql/charsets/dos.conf -share/mysql/charsets/estonia.conf -share/mysql/charsets/german1.conf -share/mysql/charsets/greek.conf -share/mysql/charsets/hebrew.conf -share/mysql/charsets/hp8.conf -share/mysql/charsets/hungarian.conf -share/mysql/charsets/koi8_ru.conf -share/mysql/charsets/koi8_ukr.conf -share/mysql/charsets/latin1.conf -share/mysql/charsets/latin2.conf -share/mysql/charsets/latin5.conf -share/mysql/charsets/swe7.conf -share/mysql/charsets/usa7.conf -share/mysql/charsets/win1250.conf -share/mysql/charsets/win1251.conf -share/mysql/charsets/win1251ukr.conf -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/estonian/errmsg.sys -share/mysql/estonian/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/mi_test_all -share/mysql/mi_test_all.res -share/mysql/my-huge.cnf -share/mysql/my-large.cnf -share/mysql/my-medium.cnf -share/mysql/my-small.cnf -share/mysql/mysql-%%MYSQL_VERSION%%.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/romanian/errmsg.sys -share/mysql/romanian/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 -share/mysql/ukrainian/errmsg.sys -share/mysql/ukrainian/errmsg.txt -%%PORTDOCS%%@dirrm share/doc/mysql/Flags -%%PORTDOCS%%@dirrm share/doc/mysql -@dirrm share/mysql/charsets -@dirrm share/mysql/czech -@dirrm share/mysql/danish -@dirrm share/mysql/dutch -@dirrm share/mysql/english -@dirrm share/mysql/estonian -@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/romanian -@dirrm share/mysql/russian -@dirrm share/mysql/slovak -@dirrm share/mysql/spanish -@dirrm share/mysql/swedish -@dirrm share/mysql/ukrainian -@dirrm share/mysql -@exec %D/bin/mysql_install_db -@unexec /usr/bin/killall mysqld > /dev/null 2>&1 || true diff --git a/databases/mysql55-server/pkg-plist.client b/databases/mysql55-server/pkg-plist.client deleted file mode 100644 index e0f85168189c..000000000000 --- a/databases/mysql55-server/pkg-plist.client +++ /dev/null @@ -1,34 +0,0 @@ -bin/mysql -bin/mysqladmin -bin/mysqlbinlog -bin/mysqlcheck -bin/mysqldump -bin/mysqlimport -bin/mysqlshow -bin/mysqltest -etc/rc.d/00mysql-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_no_pthread.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.10 -@dirrm include/mysql -@dirrm lib/mysql diff --git a/databases/mysql60-client/Makefile b/databases/mysql60-client/Makefile deleted file mode 100644 index b5f3065ac95f..000000000000 --- a/databases/mysql60-client/Makefile +++ /dev/null @@ -1,18 +0,0 @@ -# ports collection makefile for: MySQL-client -# Date created: Sun Sep 24 21:21:20 CEST 2000 -# Whom: Dirk Froemberg <dirk@FreeBSD.org> -# -# $FreeBSD$ -# - -PORTNAME= mysql-client -PORTREVISION= 0 - -MASTERDIR= ${.CURDIR}/../mysql323-server -COMMENT= ${PKGDIR}/pkg-comment.client -PKGINSTALL= mustnotexist -PLIST= ${PKGDIR}/pkg-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 572e1e6bb938..000000000000 --- a/databases/mysql60-server/Makefile +++ /dev/null @@ -1,173 +0,0 @@ -# ports collection makefile for: MySQL-server -# Date created: Sun Sep 24 21:20:46 CEST 2000 -# Whom: Dirk Froemberg <dirk@FreeBSD.org> -# -# $FreeBSD$ -# - -PORTNAME?= ${MASTERPORTNAME} -PORTVERSION= 3.23.47 -PORTREVISION?= 0 -CATEGORIES= databases -MASTER_SITES= ${MASTER_SITE_SOURCEFORGE} \ - http://www.kernelnotes.de/MySQL/Downloads/MySQL-3.23/ \ - http://mysql.he.net/Downloads/MySQL-3.23/ \ - ftp://ftp.sunet.se/pub/unix/databases/relational/mysql/Downloads/MySQL-3.23/ -MASTER_SITE_SUBDIR= mirrors/mysql/Downloads/MySQL-3.23 -DISTFILES= mysql-${PORTVERSION}${EXTRACT_SUFX} - -MAINTAINER= dirk@FreeBSD.org - -WRKSRC= ${WRKDIR}/mysql-${PORTVERSION} -SLAVEDIRS= databases/mysql323-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 \ - --with-mit-threads=no \ - --with-libwrap \ - --with-low-memory \ - --with-comment='FreeBSD port: ${PKGNAME}' - -.if ${MACHINE_ARCH} == "i386" -CONFIGURE_ARGS+=--enable-assembler --with-berkeley-db --with-innodb -.endif -.if defined(WITH_CHARSET) && ${WITH_CHARSET} != "" -CONFIGURE_ARGS+=--with-charset=${WITH_CHARSET} -.if defined(WITH_XCHARSET) && ${WITH_XCHARSET} != "" -CONFIGURE_ARGS+=--with-extra-charsets=${WITH_XCHARSET} -.endif -.endif -.if defined(BUILD_STATIC) -CONFIGURE_ARGS+=--with-mysqld-ldflags=--static -.endif -.if defined(BUILD_OPTIMIZED) -CFLAGS+= -mcpu=pentiumpro -O3 -.endif -.if defined(WITH_LINUXTHREADS) -CONFIGURE_ARGS+=--with-named-thread-libs='-DHAVE_GLIBC2_STYLE_GETHOSTBYNAME_R -D_THREAD_SAFE -I${LOCALBASE}/include/pthread/linuxthreads -L${LOCALBASE}/lib -llthread -llgcc_r' -CFLAGS+= -D__USE_UNIX98 -D_REENTRANT -D_THREAD_SAFE -I${LOCALBASE}/include/pthread/linuxthreads -LIB_DEPENDS+= lthread.2:${PORTSDIR}/devel/linuxthreads -.endif -CONFIGURE_ENV+= PERL=${PERL} \ - PERL5=${PERL} \ - INSTALL_SCRIPT="${INSTALL_SCRIPT}" \ - CXX="${CC}" \ - CFLAGS="${CFLAGS}" \ - CONFIGURE_ARGS="${CONFIGURE_ARGS}" - -.include <bsd.port.pre.mk> -# without including these flags mysqld may crash under heavy load -# and multiple connections at the same time -CXXFLAGS= ${CFLAGS} -felide-constructors -fno-rtti -.if ${OSVERSION} >= 400002 -CXXFLAGS+= -fno-exceptions -.endif - -# MySQL-Server part -.if !defined(CLIENT_ONLY) -RUN_DEPENDS= mysql:${PORTSDIR}/databases/mysql323-client \ - ${LOCALBASE}/lib/perl5/site_perl/${PERL_VER}/${PERL_ARCH}/Mysql.pm:${PORTSDIR}/databases/p5-Mysql - -PLIST_SUB= MYSQL_VERSION=${PORTVERSION} - -pre-fetch: - @${ECHO} "" - @${ECHO} "You may use the following build options:" - @${ECHO} "" - @${ECHO} " WITH_CHARSET=charset define the primary built-in charset (latin1);" - @${ECHO} " WITH_XCHARSET=list define other built-in charsets (may be 'all');" - @${ECHO} " DB_DIR=directory Set alternate directory for database files" - @${ECHO} " (default is /var/db/mysql)." - @${ECHO} " WITH_LINUXTHREADS=yes Use the linuxthreads pthread library." - @${ECHO} " This is _NOT_ recommended for production" - @${ECHO} " servers. Expect problems when enabled." - @${ECHO} " SKIP_INSTALL_DB=yes Skip mysql_install_db" - @${ECHO} " (i. e. leave ${DB_DIR} alone)." - @${ECHO} " This is useful for upgrades." - @${ECHO} " Be sure to know what you are doing!" - @${ECHO} " SKIP_DNS_CHECK=yes don't run resolveip to do an additional" - @${ECHO} " DNS check before inserting local hostname to" - @${ECHO} " mysql database." - @${ECHO} " Use if your machine has no offical DNS entry." - @${ECHO} " BUILD_STATIC=yes Build a static version of mysqld." - @${ECHO} " BUILD_OPTIMIZED=yes Add -mcpu=pentiumpro -O3 to CFLAGS." - @${ECHO} " This setting may produce broken code and thus" - @${ECHO} " is not recommended for production servers." - @${ECHO} "" - -post-patch: - ${MV} ${WRKSRC}/strings/strings-x86.s ${WRKSRC}/strings/strings-x86.S - ${MV} ${WRKSRC}/strings/longlong2str-x86.s ${WRKSRC}/strings/longlong2str-x86.S - -.if exists(${DB_DIR}) && !defined(PACKAGE_BUILDING) && !defined(OVERWRITE_DB) && !defined(SKIP_INSTALL_DB) -pre-install: - @${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) -.if !defined(SKIP_INSTALL_DB) -.if defined(SKIP_DNS_CHECK) - ${PREFIX}/bin/mysql_install_db --force -.else - ${PREFIX}/bin/mysql_install_db -.endif -.endif - @${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/Flags -.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/Flags/*.gif ${PREFIX}/share/doc/mysql/Flags - ${INSTALL_DATA} ${WRKSRC}/Docs/mysql.info ${PREFIX}/info - @install-info ${PREFIX}/info/mysql.info ${PREFIX}/info/dir -.endif - -# MySQL-Client part -.else -MAN1= isamchk.1 isamlog.1 mysql.1 mysql_zap.1 mysqlaccess.1 \ - mysqladmin.1 mysqld.1 mysqld_multi.1 mysqldump.1 mysqlshow.1 \ - perror.1 replace.1 safe_mysqld.1 - -INSTALLS_SHLIB= yes -LDCONFIG_DIRS= %%PREFIX%%/lib/mysql - -CONFIGURE_ARGS+=--without-server -MAKE_ENV= CLIENT_ONLY="${CLIENT_ONLY}" - -post-install: - @${SED} "s|%%PREFIX%%|${PREFIX}|g" < ${FILESDIR}/mysql-client.sh > ${PREFIX}/etc/rc.d/00mysql-client.sh - @${CHMOD} 750 ${PREFIX}/etc/rc.d/00mysql-client.sh - -.endif - -# This is for the maintainer only... -make-plist: - /usr/bin/find foo -type f -or -type l | /usr/bin/cut -d / -f 2- | /usr/bin/sort > ${.CURDIR}/pkg-plist.new - /usr/bin/perl -i -ne 'if (m#share/doc/#) { print "%%PORTDOCS%%", $$_; } else { print $$_; }' ${.CURDIR}/pkg-plist.new - -.include <bsd.port.post.mk> diff --git a/databases/mysql60-server/distinfo b/databases/mysql60-server/distinfo deleted file mode 100644 index d852db9ca3e8..000000000000 --- a/databases/mysql60-server/distinfo +++ /dev/null @@ -1 +0,0 @@ -MD5 (mysql-3.23.47.tar.gz) = e733474825fb158f876f3d97e996a341 diff --git a/databases/mysql60-server/files/mysql-client.sh b/databases/mysql60-server/files/mysql-client.sh deleted file mode 100644 index bef414c12ed2..000000000000 --- a/databases/mysql60-server/files/mysql-client.sh +++ /dev/null @@ -1,15 +0,0 @@ -#!/bin/sh - -case "$1" in - start) - /sbin/ldconfig -m %%PREFIX%%/lib/mysql - ;; - stop) - ;; - *) - echo "" - echo "Usage: `basename $0` { start | stop }" - echo "" - exit 64 - ;; -esac 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 bed75f614ccc..000000000000 --- a/databases/mysql60-server/files/patch-Makefile.in +++ /dev/null @@ -1,16 +0,0 @@ ---- Makefile.in.orig Wed Apr 18 10:54:42 2001 -+++ Makefile.in Sat Apr 21 13:00:23 2001 -@@ -181,8 +181,12 @@ - # These are built from source in the Docs directory - EXTRA_DIST = INSTALL-SOURCE README COPYING COPYING.LIB MIRRORS - --SUBDIRS = include @docs_dirs@ @readline_dir@ @thread_dirs@ @sql_client_dirs@ @sql_server_dirs@ scripts tests man @bench_dirs@ support-files - -+.if defined(CLIENT_ONLY) -+SUBDIRS = include @readline_dir@ @sql_client_dirs@ tests man -+.else -+SUBDIRS = include @thread_dirs@ @docs_dirs@ @sql_server_dirs@ scripts support-files -+.endif - - # Relink after clean - CLEANFILES = linked_client_sources linked_server_sources linked_libmysql_sources linked_libmysql_r_sources linked_include_sources diff --git a/databases/mysql60-server/files/patch-ab b/databases/mysql60-server/files/patch-ab deleted file mode 100644 index 2aa8724dd21f..000000000000 --- a/databases/mysql60-server/files/patch-ab +++ /dev/null @@ -1,15 +0,0 @@ ---- scripts/mysql_install_db.sh.orig Sat Dec 16 22:49:02 2000 -+++ scripts/mysql_install_db.sh Mon Dec 18 11:55:07 2000 -@@ -301,12 +301,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 -p password 'new-password'" diff --git a/databases/mysql60-server/files/patch-af b/databases/mysql60-server/files/patch-af deleted file mode 100644 index 9c4a0b951402..000000000000 --- a/databases/mysql60-server/files/patch-af +++ /dev/null @@ -1,71 +0,0 @@ ---- scripts/safe_mysqld.sh.orig Thu Apr 19 10:11:02 2001 -+++ scripts/safe_mysqld.sh Thu Apr 19 15:15:54 2001 -@@ -73,30 +73,9 @@ - done - } - --MY_PWD=`pwd` --# Check if we are starting this relative (for the binary release) --if test -d $MY_PWD/data/mysql -a -f ./share/mysql/english/errmsg.sys -a \ -- -x ./bin/mysqld --then -- MY_BASEDIR_VERSION=$MY_PWD # Where bin, share and data are -- ledir=$MY_BASEDIR_VERSION/bin # Where mysqld is -- DATADIR=$MY_BASEDIR_VERSION/data -- if test -z "$defaults" -- then -- defaults="--defaults-extra-file=$MY_BASEDIR_VERSION/data/my.cnf" -- fi --# 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=$MY_PWD # Where libexec, share and var are -- ledir=$MY_BASEDIR_VERSION/libexec # Where mysqld is -- DATADIR=$MY_BASEDIR_VERSION/var --else -- MY_BASEDIR_VERSION=@prefix@ -- DATADIR=@localstatedir@ -- ledir=@libexecdir@ --fi -+MY_BASEDIR_VERSION=@prefix@ -+DATADIR=@localstatedir@ -+ledir=@libexecdir@ - - MYSQL_UNIX_PORT=${MYSQL_UNIX_PORT:-@MYSQL_UNIX_ADDR@} - MYSQL_TCP_PORT=${MYSQL_TCP_PORT:-@MYSQL_TCP_PORT@} -@@ -240,34 +219,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 xa | 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 xa | 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 "`date +'%y%m%d %H:%M:%S mysqld restarted'`" | tee -a $err_log 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-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 f10ab97c44a8..000000000000 --- a/databases/mysql60-server/files/patch-configure +++ /dev/null @@ -1,132 +0,0 @@ ---- configure.orig Wed May 9 22:34:50 2001 -+++ configure Sat May 12 11:23:21 2001 -@@ -2994,7 +2994,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 -@@ -3128,38 +3128,7 @@ - echo $ac_n "checking "how to check if pid exists"""... $ac_c" 1>&6 - echo "configure:3130: 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 -- case $SYSTEM_TYPE in -- *darwin*) -- FIND_PROC="$PS -uaxww | grep mysqld | grep \" \$\$PID \" > /dev/null" -- ;; -- *cygwin*) -- FIND_PROC="$PS -e | grep mysqld | grep \" \$\$PID \" > /dev/null" -- ;; -- *) -- { 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; } -- esac --fi -+FIND_PROC="$PS -uaxww | grep mysqld | grep \" \$\$PID \" > /dev/null" - - echo "$ac_t"""$FIND_PROC"" 1>&6 - -@@ -5922,7 +5891,6 @@ - #define $ac_tr_lib 1 - EOF - -- LIBS="-lc_r $LIBS" - - else - echo "$ac_t""no" 1>&6 -@@ -6154,28 +6122,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="$MAX_C_OPTIMIZE" --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" -@@ -6856,10 +6802,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 6866 "configure" -@@ -9019,10 +8961,6 @@ - #do not treat warnings as errors if we are linking agaist other libc - #this is to work around gcc not being permissive on non-system includes - #with respect to ANSI C++ --if test "$ac_cv_prog_gxx" = "yes" -a "$with_other_libc" = "no" --then -- CXXFLAGS="$CXXFLAGS -Werror" --fi - cat > conftest.$ac_ext <<EOF - #line 9028 "configure" - #include "confdefs.h" -@@ -9087,10 +9025,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" -a "$with_other_libc" = "no" --then -- CXXFLAGS="$CXXFLAGS -Werror" --fi - cat > conftest.$ac_ext <<EOF - #line 9096 "configure" - #include "confdefs.h" -@@ -9154,10 +9088,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" -a "$with_other_libc" = "no" --then -- CXXFLAGS="$CXXFLAGS -Werror" --fi - cat > conftest.$ac_ext <<EOF - #line 9163 "configure" - #include "confdefs.h" 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 eb2d5e52e794..000000000000 --- a/databases/mysql60-server/files/patch-include::Makefile.in +++ /dev/null @@ -1,14 +0,0 @@ ---- include/Makefile.in.orig Mon Jan 22 14:43:55 2001 -+++ include/Makefile.in Mon Jan 22 23:14:48 2001 -@@ -284,7 +284,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 8f4acf36e853..000000000000 --- a/databases/mysql60-server/pkg-descr +++ /dev/null @@ -1,4 +0,0 @@ -MySQL is a very fast, multi-threaded, multi-user and robust SQL -(Structured Query Language) database server. - -WWW: http://www.mysql.com/ diff --git a/databases/mysql60-server/pkg-install b/databases/mysql60-server/pkg-install deleted file mode 100644 index 27732bf35c89..000000000000 --- a/databases/mysql60-server/pkg-install +++ /dev/null @@ -1,48 +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." - if pw usermod ${USER} -d ${DB_DIR} - then - echo "Changed home directory of \"${USER}\" to \"${DB_DIR}\"" - else - echo "Changing home directory of \"${USER}\" to \"${DB_DIR}\" failed..." - exit 1 - fi - 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 7a482d60bc34..000000000000 --- a/databases/mysql60-server/pkg-plist +++ /dev/null @@ -1,195 +0,0 @@ -bin/comp_err -bin/isamchk -bin/isamlog -bin/msql2mysql -bin/my_print_defaults -bin/myisamchk -bin/myisamlog -bin/myisampack -bin/mysql_config -bin/mysql_convert_table_format -bin/mysql_find_rows -bin/mysql_fix_privilege_tables -bin/mysql_install_db -bin/mysql_setpermission -bin/mysql_zap -bin/mysqlaccess -bin/mysqlbug -bin/mysqld_multi -bin/mysqldumpslow -bin/mysqlhotcopy -bin/pack_isam -bin/perror -bin/replace -bin/resolve_stack_dump -bin/resolveip -bin/safe_mysqld -etc/rc.d/mysql-server.sh -%%PORTDOCS%%@unexec install-info --delete %D/info/mysql.info %D/info/dir -%%PORTDOCS%%info/mysql.info -%%PORTDOCS%%@exec install-info %D/info/mysql.info %D/info/dir -lib/mysql/libdbug.a -lib/mysql/libheap.a -lib/mysql/libmerge.a -lib/mysql/libmyisam.a -lib/mysql/libmyisammrg.a -lib/mysql/libmystrings.a -lib/mysql/libmysys.a -lib/mysql/libnisam.a -libexec/mysqld -%%PORTDOCS%%share/doc/mysql/Flags/argentina.gif -%%PORTDOCS%%share/doc/mysql/Flags/australia.gif -%%PORTDOCS%%share/doc/mysql/Flags/austria.gif -%%PORTDOCS%%share/doc/mysql/Flags/brazil.gif -%%PORTDOCS%%share/doc/mysql/Flags/bulgaria.gif -%%PORTDOCS%%share/doc/mysql/Flags/canada.gif -%%PORTDOCS%%share/doc/mysql/Flags/chile.gif -%%PORTDOCS%%share/doc/mysql/Flags/china.gif -%%PORTDOCS%%share/doc/mysql/Flags/croatia.gif -%%PORTDOCS%%share/doc/mysql/Flags/czech-republic.gif -%%PORTDOCS%%share/doc/mysql/Flags/denmark.gif -%%PORTDOCS%%share/doc/mysql/Flags/estonia.gif -%%PORTDOCS%%share/doc/mysql/Flags/finland.gif -%%PORTDOCS%%share/doc/mysql/Flags/france.gif -%%PORTDOCS%%share/doc/mysql/Flags/germany.gif -%%PORTDOCS%%share/doc/mysql/Flags/great-britain.gif -%%PORTDOCS%%share/doc/mysql/Flags/greece.gif -%%PORTDOCS%%share/doc/mysql/Flags/hungary.gif -%%PORTDOCS%%share/doc/mysql/Flags/iceland.gif -%%PORTDOCS%%share/doc/mysql/Flags/indonesia.gif -%%PORTDOCS%%share/doc/mysql/Flags/ireland.gif -%%PORTDOCS%%share/doc/mysql/Flags/island.gif -%%PORTDOCS%%share/doc/mysql/Flags/israel.gif -%%PORTDOCS%%share/doc/mysql/Flags/italy.gif -%%PORTDOCS%%share/doc/mysql/Flags/japan.gif -%%PORTDOCS%%share/doc/mysql/Flags/kroatia.gif -%%PORTDOCS%%share/doc/mysql/Flags/latvia.gif -%%PORTDOCS%%share/doc/mysql/Flags/netherlands.gif -%%PORTDOCS%%share/doc/mysql/Flags/poland.gif -%%PORTDOCS%%share/doc/mysql/Flags/portugal.gif -%%PORTDOCS%%share/doc/mysql/Flags/romania.gif -%%PORTDOCS%%share/doc/mysql/Flags/russia.gif -%%PORTDOCS%%share/doc/mysql/Flags/singapore.gif -%%PORTDOCS%%share/doc/mysql/Flags/south-africa.gif -%%PORTDOCS%%share/doc/mysql/Flags/south-africa1.gif -%%PORTDOCS%%share/doc/mysql/Flags/south-korea.gif -%%PORTDOCS%%share/doc/mysql/Flags/spain.gif -%%PORTDOCS%%share/doc/mysql/Flags/sweden.gif -%%PORTDOCS%%share/doc/mysql/Flags/switzerland.gif -%%PORTDOCS%%share/doc/mysql/Flags/taiwan.gif -%%PORTDOCS%%share/doc/mysql/Flags/ukraine.gif -%%PORTDOCS%%share/doc/mysql/Flags/usa.gif -%%PORTDOCS%%share/doc/mysql/Flags/yugoslavia.gif -%%PORTDOCS%%share/doc/mysql/include.texi -%%PORTDOCS%%share/doc/mysql/manual.html -%%PORTDOCS%%share/doc/mysql/manual.ps -%%PORTDOCS%%share/doc/mysql/manual.texi -%%PORTDOCS%%share/doc/mysql/manual.txt -%%PORTDOCS%%share/doc/mysql/manual_toc.html -share/mysql/binary-configure -share/mysql/charsets/Index -share/mysql/charsets/README -share/mysql/charsets/cp1251.conf -share/mysql/charsets/cp1257.conf -share/mysql/charsets/croat.conf -share/mysql/charsets/danish.conf -share/mysql/charsets/dec8.conf -share/mysql/charsets/dos.conf -share/mysql/charsets/estonia.conf -share/mysql/charsets/german1.conf -share/mysql/charsets/greek.conf -share/mysql/charsets/hebrew.conf -share/mysql/charsets/hp8.conf -share/mysql/charsets/hungarian.conf -share/mysql/charsets/koi8_ru.conf -share/mysql/charsets/koi8_ukr.conf -share/mysql/charsets/latin1.conf -share/mysql/charsets/latin2.conf -share/mysql/charsets/latin5.conf -share/mysql/charsets/swe7.conf -share/mysql/charsets/usa7.conf -share/mysql/charsets/win1250.conf -share/mysql/charsets/win1251.conf -share/mysql/charsets/win1251ukr.conf -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/estonian/errmsg.sys -share/mysql/estonian/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/mi_test_all -share/mysql/mi_test_all.res -share/mysql/my-huge.cnf -share/mysql/my-large.cnf -share/mysql/my-medium.cnf -share/mysql/my-small.cnf -share/mysql/mysql-%%MYSQL_VERSION%%.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/romanian/errmsg.sys -share/mysql/romanian/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 -share/mysql/ukrainian/errmsg.sys -share/mysql/ukrainian/errmsg.txt -%%PORTDOCS%%@dirrm share/doc/mysql/Flags -%%PORTDOCS%%@dirrm share/doc/mysql -@dirrm share/mysql/charsets -@dirrm share/mysql/czech -@dirrm share/mysql/danish -@dirrm share/mysql/dutch -@dirrm share/mysql/english -@dirrm share/mysql/estonian -@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/romanian -@dirrm share/mysql/russian -@dirrm share/mysql/slovak -@dirrm share/mysql/spanish -@dirrm share/mysql/swedish -@dirrm share/mysql/ukrainian -@dirrm share/mysql -@exec %D/bin/mysql_install_db -@unexec /usr/bin/killall mysqld > /dev/null 2>&1 || true diff --git a/databases/mysql60-server/pkg-plist.client b/databases/mysql60-server/pkg-plist.client deleted file mode 100644 index e0f85168189c..000000000000 --- a/databases/mysql60-server/pkg-plist.client +++ /dev/null @@ -1,34 +0,0 @@ -bin/mysql -bin/mysqladmin -bin/mysqlbinlog -bin/mysqlcheck -bin/mysqldump -bin/mysqlimport -bin/mysqlshow -bin/mysqltest -etc/rc.d/00mysql-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_no_pthread.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.10 -@dirrm include/mysql -@dirrm lib/mysql diff --git a/databases/p5-DBD-Pg-13/Makefile b/databases/p5-DBD-Pg-13/Makefile deleted file mode 100644 index 5d2d67fec8f8..000000000000 --- a/databases/p5-DBD-Pg-13/Makefile +++ /dev/null @@ -1,28 +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= 1.01 -CATEGORIES= databases perl5 -MASTER_SITES= ${MASTER_SITE_PERL_CPAN} -MASTER_SITE_SUBDIR= DBD -PKGNAMEPREFIX= p5- - -MAINTAINER= demon@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/postgresql7 -RUN_DEPENDS= ${BUILD_DEPENDS} - -PERL_CONFIGURE= yes -CONFIGURE_ENV+= POSTGRES_INCLUDE=${PREFIX}/include/pgsql \ - POSTGRES_LIB=${PREFIX}/lib - -MANPREFIX= ${PREFIX}/lib/perl5/${PERL_VERSION} -MAN3= DBD::Pg.3 DBD::dbd-pg.3 - -.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 6f8614884c30..000000000000 --- a/databases/p5-DBD-Pg-13/distinfo +++ /dev/null @@ -1 +0,0 @@ -MD5 (DBD-Pg-1.01.tar.gz) = 3086ec3468530bc64838e8a04ce30704 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 f9993fc33436..000000000000 --- a/databases/p5-DBD-Pg-13/pkg-descr +++ /dev/null @@ -1,6 +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. - -WWW: http://search.cpan.org/search?dist=DBD-Pg 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-DBI-137/Makefile b/databases/p5-DBI-137/Makefile deleted file mode 100644 index 8f5a1e05ae73..000000000000 --- a/databases/p5-DBI-137/Makefile +++ /dev/null @@ -1,35 +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.20 -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 - -PERL_CONFIGURE= yes - -MAN1= dbiproxy.1 \ - dbish.1 -MAN3= Bundle::DBI.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} - -.include <bsd.port.mk> diff --git a/databases/p5-DBI-137/distinfo b/databases/p5-DBI-137/distinfo deleted file mode 100644 index f3cc1dd4feb4..000000000000 --- a/databases/p5-DBI-137/distinfo +++ /dev/null @@ -1 +0,0 @@ -MD5 (DBI-1.20.tar.gz) = 71002061526134cb4e0417e47a6b5b66 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 97b31e423a4e..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/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/dbipport.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/p5-POE-Component-DBIAgent/Makefile b/databases/p5-POE-Component-DBIAgent/Makefile deleted file mode 100644 index 46412a7f8386..000000000000 --- a/databases/p5-POE-Component-DBIAgent/Makefile +++ /dev/null @@ -1,29 +0,0 @@ -# New ports collection makefile for: POE-Component-DBIAgent -# Date created: 10 Dec 2001 -# Whom: Sergey Skvortsov <skv@protey.ru> -# -# $FreeBSD$ -# - -PORTNAME= POE-Component-DBIAgent -PORTVERSION= 0.11 -CATEGORIES= devel perl5 databases -MASTER_SITES= ${MASTER_SITE_PERL_CPAN} -MASTER_SITE_SUBDIR= POE -PKGNAMEPREFIX= p5- - -MAINTAINER= skv@protey.ru - -BUILD_DEPENDS= ${LOCALBASE}/lib/perl5/site_perl/${PERL_VER}/POE.pm:${PORTSDIR}/devel/p5-POE \ - ${LOCALBASE}/lib/perl5/site_perl/${PERL_VER}/${PERL_ARCH}/DBI.pm:${PORTSDIR}/databases/p5-DBI \ - ${LOCALBASE}/lib/perl5/site_perl/${PERL_VER}/${PERL_ARCH}/Storable.pm:${PORTSDIR}/devel/p5-Storable \ - ${LOCALBASE}/lib/perl5/site_perl/${PERL_VER}/Class/MethodMaker.pm:${PORTSDIR}/devel/p5-Class-MethodMaker -RUN_DEPENDS= ${BUILD_DEPENDS} - -PERL_CONFIGURE= yes - -MANPREFIX= ${PREFIX}/lib/perl5/${PERL_VERSION} -MAN3= POE::Component::DBIAgent.3 POE::Component::DBIAgent::Helper.3 \ - POE::Component::DBIAgent::Queue.3 - -.include <bsd.port.mk> diff --git a/databases/p5-POE-Component-DBIAgent/distinfo b/databases/p5-POE-Component-DBIAgent/distinfo deleted file mode 100644 index 536a42fb700f..000000000000 --- a/databases/p5-POE-Component-DBIAgent/distinfo +++ /dev/null @@ -1 +0,0 @@ -MD5 (POE-Component-DBIAgent-0.11.tar.gz) = 59ca46f8c906f72945a59b0c9b103a2f diff --git a/databases/p5-POE-Component-DBIAgent/pkg-comment b/databases/p5-POE-Component-DBIAgent/pkg-comment deleted file mode 100644 index c7e7a6010879..000000000000 --- a/databases/p5-POE-Component-DBIAgent/pkg-comment +++ /dev/null @@ -1 +0,0 @@ -POE Component for running asynchronous DBI calls diff --git a/databases/p5-POE-Component-DBIAgent/pkg-descr b/databases/p5-POE-Component-DBIAgent/pkg-descr deleted file mode 100644 index daf2faa9398a..000000000000 --- a/databases/p5-POE-Component-DBIAgent/pkg-descr +++ /dev/null @@ -1,10 +0,0 @@ -The DBIAgent is your answer to non-blocking DBI in POE. - -It fires off child processes (configurable, defaults to 3) and feeds -database queries to it via two-way pipe (or however Wheel::Run is able -to manage it). - -WWW: http://search.cpan.org/search?dist=POE-Component-DBIAgent - --- Sergey Skvortsov -skv@protey.ru diff --git a/databases/p5-POE-Component-DBIAgent/pkg-plist b/databases/p5-POE-Component-DBIAgent/pkg-plist deleted file mode 100644 index cdd80c4b6e65..000000000000 --- a/databases/p5-POE-Component-DBIAgent/pkg-plist +++ /dev/null @@ -1,10 +0,0 @@ -lib/perl5/site_perl/%%PERL_VER%%/%%PERL_ARCH%%/auto/POE/Component/DBIAgent/.packlist -lib/perl5/site_perl/%%PERL_VER%%/POE/Component/DBIAgent.pm -lib/perl5/site_perl/%%PERL_VER%%/POE/Component/DBIAgent/Helper.pm -lib/perl5/site_perl/%%PERL_VER%%/POE/Component/DBIAgent/Queue.pm -@dirrm lib/perl5/site_perl/%%PERL_VER%%/POE/Component/DBIAgent -@dirrm lib/perl5/site_perl/%%PERL_VER%%/%%PERL_ARCH%%/auto/POE/Component/DBIAgent -@unexec rmdir %D/lib/perl5/site_perl/%%PERL_VER%%/POE/Component 2>/dev/null || true -@unexec rmdir %D/lib/perl5/site_perl/%%PERL_VER%%/POE 2>/dev/null || true -@unexec rmdir %D/lib/perl5/site_perl/%%PERL_VER%%/%%PERL_ARCH%%/auto/POE/Component 2>/dev/null || true -@unexec rmdir %D/lib/perl5/site_perl/%%PERL_VER%%/%%PERL_ARCH%%/auto/POE 2>/dev/null || true diff --git a/databases/percona55-client/Makefile b/databases/percona55-client/Makefile deleted file mode 100644 index b5f3065ac95f..000000000000 --- a/databases/percona55-client/Makefile +++ /dev/null @@ -1,18 +0,0 @@ -# ports collection makefile for: MySQL-client -# Date created: Sun Sep 24 21:21:20 CEST 2000 -# Whom: Dirk Froemberg <dirk@FreeBSD.org> -# -# $FreeBSD$ -# - -PORTNAME= mysql-client -PORTREVISION= 0 - -MASTERDIR= ${.CURDIR}/../mysql323-server -COMMENT= ${PKGDIR}/pkg-comment.client -PKGINSTALL= mustnotexist -PLIST= ${PKGDIR}/pkg-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 572e1e6bb938..000000000000 --- a/databases/percona55-server/Makefile +++ /dev/null @@ -1,173 +0,0 @@ -# ports collection makefile for: MySQL-server -# Date created: Sun Sep 24 21:20:46 CEST 2000 -# Whom: Dirk Froemberg <dirk@FreeBSD.org> -# -# $FreeBSD$ -# - -PORTNAME?= ${MASTERPORTNAME} -PORTVERSION= 3.23.47 -PORTREVISION?= 0 -CATEGORIES= databases -MASTER_SITES= ${MASTER_SITE_SOURCEFORGE} \ - http://www.kernelnotes.de/MySQL/Downloads/MySQL-3.23/ \ - http://mysql.he.net/Downloads/MySQL-3.23/ \ - ftp://ftp.sunet.se/pub/unix/databases/relational/mysql/Downloads/MySQL-3.23/ -MASTER_SITE_SUBDIR= mirrors/mysql/Downloads/MySQL-3.23 -DISTFILES= mysql-${PORTVERSION}${EXTRACT_SUFX} - -MAINTAINER= dirk@FreeBSD.org - -WRKSRC= ${WRKDIR}/mysql-${PORTVERSION} -SLAVEDIRS= databases/mysql323-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 \ - --with-mit-threads=no \ - --with-libwrap \ - --with-low-memory \ - --with-comment='FreeBSD port: ${PKGNAME}' - -.if ${MACHINE_ARCH} == "i386" -CONFIGURE_ARGS+=--enable-assembler --with-berkeley-db --with-innodb -.endif -.if defined(WITH_CHARSET) && ${WITH_CHARSET} != "" -CONFIGURE_ARGS+=--with-charset=${WITH_CHARSET} -.if defined(WITH_XCHARSET) && ${WITH_XCHARSET} != "" -CONFIGURE_ARGS+=--with-extra-charsets=${WITH_XCHARSET} -.endif -.endif -.if defined(BUILD_STATIC) -CONFIGURE_ARGS+=--with-mysqld-ldflags=--static -.endif -.if defined(BUILD_OPTIMIZED) -CFLAGS+= -mcpu=pentiumpro -O3 -.endif -.if defined(WITH_LINUXTHREADS) -CONFIGURE_ARGS+=--with-named-thread-libs='-DHAVE_GLIBC2_STYLE_GETHOSTBYNAME_R -D_THREAD_SAFE -I${LOCALBASE}/include/pthread/linuxthreads -L${LOCALBASE}/lib -llthread -llgcc_r' -CFLAGS+= -D__USE_UNIX98 -D_REENTRANT -D_THREAD_SAFE -I${LOCALBASE}/include/pthread/linuxthreads -LIB_DEPENDS+= lthread.2:${PORTSDIR}/devel/linuxthreads -.endif -CONFIGURE_ENV+= PERL=${PERL} \ - PERL5=${PERL} \ - INSTALL_SCRIPT="${INSTALL_SCRIPT}" \ - CXX="${CC}" \ - CFLAGS="${CFLAGS}" \ - CONFIGURE_ARGS="${CONFIGURE_ARGS}" - -.include <bsd.port.pre.mk> -# without including these flags mysqld may crash under heavy load -# and multiple connections at the same time -CXXFLAGS= ${CFLAGS} -felide-constructors -fno-rtti -.if ${OSVERSION} >= 400002 -CXXFLAGS+= -fno-exceptions -.endif - -# MySQL-Server part -.if !defined(CLIENT_ONLY) -RUN_DEPENDS= mysql:${PORTSDIR}/databases/mysql323-client \ - ${LOCALBASE}/lib/perl5/site_perl/${PERL_VER}/${PERL_ARCH}/Mysql.pm:${PORTSDIR}/databases/p5-Mysql - -PLIST_SUB= MYSQL_VERSION=${PORTVERSION} - -pre-fetch: - @${ECHO} "" - @${ECHO} "You may use the following build options:" - @${ECHO} "" - @${ECHO} " WITH_CHARSET=charset define the primary built-in charset (latin1);" - @${ECHO} " WITH_XCHARSET=list define other built-in charsets (may be 'all');" - @${ECHO} " DB_DIR=directory Set alternate directory for database files" - @${ECHO} " (default is /var/db/mysql)." - @${ECHO} " WITH_LINUXTHREADS=yes Use the linuxthreads pthread library." - @${ECHO} " This is _NOT_ recommended for production" - @${ECHO} " servers. Expect problems when enabled." - @${ECHO} " SKIP_INSTALL_DB=yes Skip mysql_install_db" - @${ECHO} " (i. e. leave ${DB_DIR} alone)." - @${ECHO} " This is useful for upgrades." - @${ECHO} " Be sure to know what you are doing!" - @${ECHO} " SKIP_DNS_CHECK=yes don't run resolveip to do an additional" - @${ECHO} " DNS check before inserting local hostname to" - @${ECHO} " mysql database." - @${ECHO} " Use if your machine has no offical DNS entry." - @${ECHO} " BUILD_STATIC=yes Build a static version of mysqld." - @${ECHO} " BUILD_OPTIMIZED=yes Add -mcpu=pentiumpro -O3 to CFLAGS." - @${ECHO} " This setting may produce broken code and thus" - @${ECHO} " is not recommended for production servers." - @${ECHO} "" - -post-patch: - ${MV} ${WRKSRC}/strings/strings-x86.s ${WRKSRC}/strings/strings-x86.S - ${MV} ${WRKSRC}/strings/longlong2str-x86.s ${WRKSRC}/strings/longlong2str-x86.S - -.if exists(${DB_DIR}) && !defined(PACKAGE_BUILDING) && !defined(OVERWRITE_DB) && !defined(SKIP_INSTALL_DB) -pre-install: - @${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) -.if !defined(SKIP_INSTALL_DB) -.if defined(SKIP_DNS_CHECK) - ${PREFIX}/bin/mysql_install_db --force -.else - ${PREFIX}/bin/mysql_install_db -.endif -.endif - @${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/Flags -.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/Flags/*.gif ${PREFIX}/share/doc/mysql/Flags - ${INSTALL_DATA} ${WRKSRC}/Docs/mysql.info ${PREFIX}/info - @install-info ${PREFIX}/info/mysql.info ${PREFIX}/info/dir -.endif - -# MySQL-Client part -.else -MAN1= isamchk.1 isamlog.1 mysql.1 mysql_zap.1 mysqlaccess.1 \ - mysqladmin.1 mysqld.1 mysqld_multi.1 mysqldump.1 mysqlshow.1 \ - perror.1 replace.1 safe_mysqld.1 - -INSTALLS_SHLIB= yes -LDCONFIG_DIRS= %%PREFIX%%/lib/mysql - -CONFIGURE_ARGS+=--without-server -MAKE_ENV= CLIENT_ONLY="${CLIENT_ONLY}" - -post-install: - @${SED} "s|%%PREFIX%%|${PREFIX}|g" < ${FILESDIR}/mysql-client.sh > ${PREFIX}/etc/rc.d/00mysql-client.sh - @${CHMOD} 750 ${PREFIX}/etc/rc.d/00mysql-client.sh - -.endif - -# This is for the maintainer only... -make-plist: - /usr/bin/find foo -type f -or -type l | /usr/bin/cut -d / -f 2- | /usr/bin/sort > ${.CURDIR}/pkg-plist.new - /usr/bin/perl -i -ne 'if (m#share/doc/#) { print "%%PORTDOCS%%", $$_; } else { print $$_; }' ${.CURDIR}/pkg-plist.new - -.include <bsd.port.post.mk> diff --git a/databases/percona55-server/distinfo b/databases/percona55-server/distinfo deleted file mode 100644 index d852db9ca3e8..000000000000 --- a/databases/percona55-server/distinfo +++ /dev/null @@ -1 +0,0 @@ -MD5 (mysql-3.23.47.tar.gz) = e733474825fb158f876f3d97e996a341 diff --git a/databases/percona55-server/files/mysql-client.sh b/databases/percona55-server/files/mysql-client.sh deleted file mode 100644 index bef414c12ed2..000000000000 --- a/databases/percona55-server/files/mysql-client.sh +++ /dev/null @@ -1,15 +0,0 @@ -#!/bin/sh - -case "$1" in - start) - /sbin/ldconfig -m %%PREFIX%%/lib/mysql - ;; - stop) - ;; - *) - echo "" - echo "Usage: `basename $0` { start | stop }" - echo "" - exit 64 - ;; -esac 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 bed75f614ccc..000000000000 --- a/databases/percona55-server/files/patch-Makefile.in +++ /dev/null @@ -1,16 +0,0 @@ ---- Makefile.in.orig Wed Apr 18 10:54:42 2001 -+++ Makefile.in Sat Apr 21 13:00:23 2001 -@@ -181,8 +181,12 @@ - # These are built from source in the Docs directory - EXTRA_DIST = INSTALL-SOURCE README COPYING COPYING.LIB MIRRORS - --SUBDIRS = include @docs_dirs@ @readline_dir@ @thread_dirs@ @sql_client_dirs@ @sql_server_dirs@ scripts tests man @bench_dirs@ support-files - -+.if defined(CLIENT_ONLY) -+SUBDIRS = include @readline_dir@ @sql_client_dirs@ tests man -+.else -+SUBDIRS = include @thread_dirs@ @docs_dirs@ @sql_server_dirs@ scripts support-files -+.endif - - # Relink after clean - CLEANFILES = linked_client_sources linked_server_sources linked_libmysql_sources linked_libmysql_r_sources linked_include_sources diff --git a/databases/percona55-server/files/patch-ab b/databases/percona55-server/files/patch-ab deleted file mode 100644 index 2aa8724dd21f..000000000000 --- a/databases/percona55-server/files/patch-ab +++ /dev/null @@ -1,15 +0,0 @@ ---- scripts/mysql_install_db.sh.orig Sat Dec 16 22:49:02 2000 -+++ scripts/mysql_install_db.sh Mon Dec 18 11:55:07 2000 -@@ -301,12 +301,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 -p password 'new-password'" diff --git a/databases/percona55-server/files/patch-af b/databases/percona55-server/files/patch-af deleted file mode 100644 index 9c4a0b951402..000000000000 --- a/databases/percona55-server/files/patch-af +++ /dev/null @@ -1,71 +0,0 @@ ---- scripts/safe_mysqld.sh.orig Thu Apr 19 10:11:02 2001 -+++ scripts/safe_mysqld.sh Thu Apr 19 15:15:54 2001 -@@ -73,30 +73,9 @@ - done - } - --MY_PWD=`pwd` --# Check if we are starting this relative (for the binary release) --if test -d $MY_PWD/data/mysql -a -f ./share/mysql/english/errmsg.sys -a \ -- -x ./bin/mysqld --then -- MY_BASEDIR_VERSION=$MY_PWD # Where bin, share and data are -- ledir=$MY_BASEDIR_VERSION/bin # Where mysqld is -- DATADIR=$MY_BASEDIR_VERSION/data -- if test -z "$defaults" -- then -- defaults="--defaults-extra-file=$MY_BASEDIR_VERSION/data/my.cnf" -- fi --# 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=$MY_PWD # Where libexec, share and var are -- ledir=$MY_BASEDIR_VERSION/libexec # Where mysqld is -- DATADIR=$MY_BASEDIR_VERSION/var --else -- MY_BASEDIR_VERSION=@prefix@ -- DATADIR=@localstatedir@ -- ledir=@libexecdir@ --fi -+MY_BASEDIR_VERSION=@prefix@ -+DATADIR=@localstatedir@ -+ledir=@libexecdir@ - - MYSQL_UNIX_PORT=${MYSQL_UNIX_PORT:-@MYSQL_UNIX_ADDR@} - MYSQL_TCP_PORT=${MYSQL_TCP_PORT:-@MYSQL_TCP_PORT@} -@@ -240,34 +219,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 xa | 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 xa | 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 "`date +'%y%m%d %H:%M:%S mysqld restarted'`" | tee -a $err_log 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-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 f10ab97c44a8..000000000000 --- a/databases/percona55-server/files/patch-configure +++ /dev/null @@ -1,132 +0,0 @@ ---- configure.orig Wed May 9 22:34:50 2001 -+++ configure Sat May 12 11:23:21 2001 -@@ -2994,7 +2994,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 -@@ -3128,38 +3128,7 @@ - echo $ac_n "checking "how to check if pid exists"""... $ac_c" 1>&6 - echo "configure:3130: 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 -- case $SYSTEM_TYPE in -- *darwin*) -- FIND_PROC="$PS -uaxww | grep mysqld | grep \" \$\$PID \" > /dev/null" -- ;; -- *cygwin*) -- FIND_PROC="$PS -e | grep mysqld | grep \" \$\$PID \" > /dev/null" -- ;; -- *) -- { 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; } -- esac --fi -+FIND_PROC="$PS -uaxww | grep mysqld | grep \" \$\$PID \" > /dev/null" - - echo "$ac_t"""$FIND_PROC"" 1>&6 - -@@ -5922,7 +5891,6 @@ - #define $ac_tr_lib 1 - EOF - -- LIBS="-lc_r $LIBS" - - else - echo "$ac_t""no" 1>&6 -@@ -6154,28 +6122,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="$MAX_C_OPTIMIZE" --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" -@@ -6856,10 +6802,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 6866 "configure" -@@ -9019,10 +8961,6 @@ - #do not treat warnings as errors if we are linking agaist other libc - #this is to work around gcc not being permissive on non-system includes - #with respect to ANSI C++ --if test "$ac_cv_prog_gxx" = "yes" -a "$with_other_libc" = "no" --then -- CXXFLAGS="$CXXFLAGS -Werror" --fi - cat > conftest.$ac_ext <<EOF - #line 9028 "configure" - #include "confdefs.h" -@@ -9087,10 +9025,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" -a "$with_other_libc" = "no" --then -- CXXFLAGS="$CXXFLAGS -Werror" --fi - cat > conftest.$ac_ext <<EOF - #line 9096 "configure" - #include "confdefs.h" -@@ -9154,10 +9088,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" -a "$with_other_libc" = "no" --then -- CXXFLAGS="$CXXFLAGS -Werror" --fi - cat > conftest.$ac_ext <<EOF - #line 9163 "configure" - #include "confdefs.h" 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 eb2d5e52e794..000000000000 --- a/databases/percona55-server/files/patch-include::Makefile.in +++ /dev/null @@ -1,14 +0,0 @@ ---- include/Makefile.in.orig Mon Jan 22 14:43:55 2001 -+++ include/Makefile.in Mon Jan 22 23:14:48 2001 -@@ -284,7 +284,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 8f4acf36e853..000000000000 --- a/databases/percona55-server/pkg-descr +++ /dev/null @@ -1,4 +0,0 @@ -MySQL is a very fast, multi-threaded, multi-user and robust SQL -(Structured Query Language) database server. - -WWW: http://www.mysql.com/ diff --git a/databases/percona55-server/pkg-install b/databases/percona55-server/pkg-install deleted file mode 100644 index 27732bf35c89..000000000000 --- a/databases/percona55-server/pkg-install +++ /dev/null @@ -1,48 +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." - if pw usermod ${USER} -d ${DB_DIR} - then - echo "Changed home directory of \"${USER}\" to \"${DB_DIR}\"" - else - echo "Changing home directory of \"${USER}\" to \"${DB_DIR}\" failed..." - exit 1 - fi - 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 7a482d60bc34..000000000000 --- a/databases/percona55-server/pkg-plist +++ /dev/null @@ -1,195 +0,0 @@ -bin/comp_err -bin/isamchk -bin/isamlog -bin/msql2mysql -bin/my_print_defaults -bin/myisamchk -bin/myisamlog -bin/myisampack -bin/mysql_config -bin/mysql_convert_table_format -bin/mysql_find_rows -bin/mysql_fix_privilege_tables -bin/mysql_install_db -bin/mysql_setpermission -bin/mysql_zap -bin/mysqlaccess -bin/mysqlbug -bin/mysqld_multi -bin/mysqldumpslow -bin/mysqlhotcopy -bin/pack_isam -bin/perror -bin/replace -bin/resolve_stack_dump -bin/resolveip -bin/safe_mysqld -etc/rc.d/mysql-server.sh -%%PORTDOCS%%@unexec install-info --delete %D/info/mysql.info %D/info/dir -%%PORTDOCS%%info/mysql.info -%%PORTDOCS%%@exec install-info %D/info/mysql.info %D/info/dir -lib/mysql/libdbug.a -lib/mysql/libheap.a -lib/mysql/libmerge.a -lib/mysql/libmyisam.a -lib/mysql/libmyisammrg.a -lib/mysql/libmystrings.a -lib/mysql/libmysys.a -lib/mysql/libnisam.a -libexec/mysqld -%%PORTDOCS%%share/doc/mysql/Flags/argentina.gif -%%PORTDOCS%%share/doc/mysql/Flags/australia.gif -%%PORTDOCS%%share/doc/mysql/Flags/austria.gif -%%PORTDOCS%%share/doc/mysql/Flags/brazil.gif -%%PORTDOCS%%share/doc/mysql/Flags/bulgaria.gif -%%PORTDOCS%%share/doc/mysql/Flags/canada.gif -%%PORTDOCS%%share/doc/mysql/Flags/chile.gif -%%PORTDOCS%%share/doc/mysql/Flags/china.gif -%%PORTDOCS%%share/doc/mysql/Flags/croatia.gif -%%PORTDOCS%%share/doc/mysql/Flags/czech-republic.gif -%%PORTDOCS%%share/doc/mysql/Flags/denmark.gif -%%PORTDOCS%%share/doc/mysql/Flags/estonia.gif -%%PORTDOCS%%share/doc/mysql/Flags/finland.gif -%%PORTDOCS%%share/doc/mysql/Flags/france.gif -%%PORTDOCS%%share/doc/mysql/Flags/germany.gif -%%PORTDOCS%%share/doc/mysql/Flags/great-britain.gif -%%PORTDOCS%%share/doc/mysql/Flags/greece.gif -%%PORTDOCS%%share/doc/mysql/Flags/hungary.gif -%%PORTDOCS%%share/doc/mysql/Flags/iceland.gif -%%PORTDOCS%%share/doc/mysql/Flags/indonesia.gif -%%PORTDOCS%%share/doc/mysql/Flags/ireland.gif -%%PORTDOCS%%share/doc/mysql/Flags/island.gif -%%PORTDOCS%%share/doc/mysql/Flags/israel.gif -%%PORTDOCS%%share/doc/mysql/Flags/italy.gif -%%PORTDOCS%%share/doc/mysql/Flags/japan.gif -%%PORTDOCS%%share/doc/mysql/Flags/kroatia.gif -%%PORTDOCS%%share/doc/mysql/Flags/latvia.gif -%%PORTDOCS%%share/doc/mysql/Flags/netherlands.gif -%%PORTDOCS%%share/doc/mysql/Flags/poland.gif -%%PORTDOCS%%share/doc/mysql/Flags/portugal.gif -%%PORTDOCS%%share/doc/mysql/Flags/romania.gif -%%PORTDOCS%%share/doc/mysql/Flags/russia.gif -%%PORTDOCS%%share/doc/mysql/Flags/singapore.gif -%%PORTDOCS%%share/doc/mysql/Flags/south-africa.gif -%%PORTDOCS%%share/doc/mysql/Flags/south-africa1.gif -%%PORTDOCS%%share/doc/mysql/Flags/south-korea.gif -%%PORTDOCS%%share/doc/mysql/Flags/spain.gif -%%PORTDOCS%%share/doc/mysql/Flags/sweden.gif -%%PORTDOCS%%share/doc/mysql/Flags/switzerland.gif -%%PORTDOCS%%share/doc/mysql/Flags/taiwan.gif -%%PORTDOCS%%share/doc/mysql/Flags/ukraine.gif -%%PORTDOCS%%share/doc/mysql/Flags/usa.gif -%%PORTDOCS%%share/doc/mysql/Flags/yugoslavia.gif -%%PORTDOCS%%share/doc/mysql/include.texi -%%PORTDOCS%%share/doc/mysql/manual.html -%%PORTDOCS%%share/doc/mysql/manual.ps -%%PORTDOCS%%share/doc/mysql/manual.texi -%%PORTDOCS%%share/doc/mysql/manual.txt -%%PORTDOCS%%share/doc/mysql/manual_toc.html -share/mysql/binary-configure -share/mysql/charsets/Index -share/mysql/charsets/README -share/mysql/charsets/cp1251.conf -share/mysql/charsets/cp1257.conf -share/mysql/charsets/croat.conf -share/mysql/charsets/danish.conf -share/mysql/charsets/dec8.conf -share/mysql/charsets/dos.conf -share/mysql/charsets/estonia.conf -share/mysql/charsets/german1.conf -share/mysql/charsets/greek.conf -share/mysql/charsets/hebrew.conf -share/mysql/charsets/hp8.conf -share/mysql/charsets/hungarian.conf -share/mysql/charsets/koi8_ru.conf -share/mysql/charsets/koi8_ukr.conf -share/mysql/charsets/latin1.conf -share/mysql/charsets/latin2.conf -share/mysql/charsets/latin5.conf -share/mysql/charsets/swe7.conf -share/mysql/charsets/usa7.conf -share/mysql/charsets/win1250.conf -share/mysql/charsets/win1251.conf -share/mysql/charsets/win1251ukr.conf -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/estonian/errmsg.sys -share/mysql/estonian/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/mi_test_all -share/mysql/mi_test_all.res -share/mysql/my-huge.cnf -share/mysql/my-large.cnf -share/mysql/my-medium.cnf -share/mysql/my-small.cnf -share/mysql/mysql-%%MYSQL_VERSION%%.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/romanian/errmsg.sys -share/mysql/romanian/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 -share/mysql/ukrainian/errmsg.sys -share/mysql/ukrainian/errmsg.txt -%%PORTDOCS%%@dirrm share/doc/mysql/Flags -%%PORTDOCS%%@dirrm share/doc/mysql -@dirrm share/mysql/charsets -@dirrm share/mysql/czech -@dirrm share/mysql/danish -@dirrm share/mysql/dutch -@dirrm share/mysql/english -@dirrm share/mysql/estonian -@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/romanian -@dirrm share/mysql/russian -@dirrm share/mysql/slovak -@dirrm share/mysql/spanish -@dirrm share/mysql/swedish -@dirrm share/mysql/ukrainian -@dirrm share/mysql -@exec %D/bin/mysql_install_db -@unexec /usr/bin/killall mysqld > /dev/null 2>&1 || true diff --git a/databases/percona55-server/pkg-plist.client b/databases/percona55-server/pkg-plist.client deleted file mode 100644 index e0f85168189c..000000000000 --- a/databases/percona55-server/pkg-plist.client +++ /dev/null @@ -1,34 +0,0 @@ -bin/mysql -bin/mysqladmin -bin/mysqlbinlog -bin/mysqlcheck -bin/mysqldump -bin/mysqlimport -bin/mysqlshow -bin/mysqltest -etc/rc.d/00mysql-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_no_pthread.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.10 -@dirrm include/mysql -@dirrm lib/mysql diff --git a/databases/phpmyadmin211/Makefile b/databases/phpmyadmin211/Makefile deleted file mode 100644 index f2e1f895c54e..000000000000 --- a/databases/phpmyadmin211/Makefile +++ /dev/null @@ -1,30 +0,0 @@ -# New ports collection makefile for: phpMyAdmin -# Date created: 19 Jan 2001 -# Whom: nbm -# -# $FreeBSD$ -# - -PORTNAME= phpmyadmin -PORTVERSION= 2.1.0 -CATEGORIES= databases www -MASTER_SITES= http://phpwizard.net/projects/phpMyAdmin/ -DISTNAME= phpMyAdmin_${PORTVERSION} - -MAINTAINER= nbm@FreeBSD.org - -RUN_DEPENDS= ${LOCALBASE}/lib/mysql/libmysqlclient.so:${PORTSDIR}/databases/mysql323-client -.if defined(WITH_PHP4) -RUN_DEPENDS+= ${LOCALBASE}/libexec/apache/libphp4.so:${PORTSDIR}/www/mod_php4 -.else -RUN_DEPENDS+= ${LOCALBASE}/libexec/apache/libphp3.so:${PORTSDIR}/www/mod_php3 -.endif - -WRKSRC= ${WRKDIR}/phpMyAdmin -NO_BUILD= YES - -do-install: - ${MKDIR} ${PREFIX}/www/data.default/phpMyAdmin/ - ${CP} -R ${WRKSRC}/* ${PREFIX}/www/data.default/phpMyAdmin/ - -.include <bsd.port.mk> diff --git a/databases/phpmyadmin211/distinfo b/databases/phpmyadmin211/distinfo deleted file mode 100644 index 4dff071389ac..000000000000 --- a/databases/phpmyadmin211/distinfo +++ /dev/null @@ -1 +0,0 @@ -MD5 (phpMyAdmin_2.1.0.tar.gz) = c12a91d796dd6246b131eb0e34041796 diff --git a/databases/phpmyadmin211/pkg-comment b/databases/phpmyadmin211/pkg-comment deleted file mode 100644 index 24b6187dde84..000000000000 --- a/databases/phpmyadmin211/pkg-comment +++ /dev/null @@ -1 +0,0 @@ -A set of PHP3-scripts to adminstrate MySQL over the WWW diff --git a/databases/phpmyadmin211/pkg-descr b/databases/phpmyadmin211/pkg-descr deleted file mode 100644 index 484e4f27baee..000000000000 --- a/databases/phpmyadmin211/pkg-descr +++ /dev/null @@ -1,12 +0,0 @@ -phpMyAdmin is intended to handle the adminstration of MySQL over the WWW. - -Currently it can: - - create and drop databases - - create, copy, drop and alter tables - - delete, edit and add fields - - execute any SQL-statement, even batch-queries - - manage keys on fields - - load text files into tables - - create and read dumps of tables - - export and import CSV data - - administer one single database diff --git a/databases/phpmyadmin211/pkg-plist b/databases/phpmyadmin211/pkg-plist deleted file mode 100644 index cfaa59966ca3..000000000000 --- a/databases/phpmyadmin211/pkg-plist +++ /dev/null @@ -1,61 +0,0 @@ -www/data.default/phpMyAdmin/ChangeLog -www/data.default/phpMyAdmin/DEVELOPERS -www/data.default/phpMyAdmin/Documentation.html -www/data.default/phpMyAdmin/INSTALL -www/data.default/phpMyAdmin/LICENSE -www/data.default/phpMyAdmin/README -www/data.default/phpMyAdmin/TODO -www/data.default/phpMyAdmin/bulgarian-win1251.inc.php3 -www/data.default/phpMyAdmin/catala.inc.php3 -www/data.default/phpMyAdmin/chinese_big5.inc.php3 -www/data.default/phpMyAdmin/chinese_gb.inc.php3 -www/data.default/phpMyAdmin/config.inc.php3 -www/data.default/phpMyAdmin/danish.inc.php3 -www/data.default/phpMyAdmin/db_create.php3 -www/data.default/phpMyAdmin/db_details.php3 -www/data.default/phpMyAdmin/db_dump.php3 -www/data.default/phpMyAdmin/db_printview.php3 -www/data.default/phpMyAdmin/db_readdump.php3 -www/data.default/phpMyAdmin/dutch.inc.php3 -www/data.default/phpMyAdmin/english.inc.php3 -www/data.default/phpMyAdmin/extchg.sh -www/data.default/phpMyAdmin/footer.inc.php3 -www/data.default/phpMyAdmin/french.inc.php3 -www/data.default/phpMyAdmin/functions.js -www/data.default/phpMyAdmin/header.inc.php3 -www/data.default/phpMyAdmin/images/bkg.gif -www/data.default/phpMyAdmin/images/browse.gif -www/data.default/phpMyAdmin/images/minus.gif -www/data.default/phpMyAdmin/images/plus.gif -www/data.default/phpMyAdmin/images/spacer.gif -www/data.default/phpMyAdmin/index.php3 -www/data.default/phpMyAdmin/italian.inc.php3 -www/data.default/phpMyAdmin/ldi_check.php3 -www/data.default/phpMyAdmin/ldi_table.php3 -www/data.default/phpMyAdmin/left.php3 -www/data.default/phpMyAdmin/lib.inc.php3 -www/data.default/phpMyAdmin/main.php3 -www/data.default/phpMyAdmin/norwegian.inc.php3 -www/data.default/phpMyAdmin/polish.inc.php3 -www/data.default/phpMyAdmin/portuguese.inc.php3 -www/data.default/phpMyAdmin/russian-koi8.inc.php3 -www/data.default/phpMyAdmin/russian-win1251.inc.php3 -www/data.default/phpMyAdmin/spanish.inc.php3 -www/data.default/phpMyAdmin/sql.php3 -www/data.default/phpMyAdmin/tbl_addfield.php3 -www/data.default/phpMyAdmin/tbl_alter.php3 -www/data.default/phpMyAdmin/tbl_change.php3 -www/data.default/phpMyAdmin/tbl_copy.php3 -www/data.default/phpMyAdmin/tbl_create.php3 -www/data.default/phpMyAdmin/tbl_dump.php3 -www/data.default/phpMyAdmin/tbl_printview.php3 -www/data.default/phpMyAdmin/tbl_properties.inc.php3 -www/data.default/phpMyAdmin/tbl_properties.php3 -www/data.default/phpMyAdmin/tbl_qbe.php3 -www/data.default/phpMyAdmin/tbl_rename.php3 -www/data.default/phpMyAdmin/tbl_replace.php3 -www/data.default/phpMyAdmin/tbl_select.php3 -@dirrm www/data.default/phpMyAdmin/images -@dirrm www/data.default/phpMyAdmin -@dirrm www/data.default -@dirrm www diff --git a/databases/postgresql-devel-server/Makefile b/databases/postgresql-devel-server/Makefile deleted file mode 100644 index 4a30008d77bc..000000000000 --- a/databases/postgresql-devel-server/Makefile +++ /dev/null @@ -1,198 +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.1.3 -CATEGORIES= databases -MASTER_SITES= ftp://ftp.sunet.se/pub/unix/databases/relational/postgresql/%SUBDIR%/ \ - ftp://ftp.postgresql.org/pub/%SUBDIR%/ \ - ftp://ftp.de.postgresql.org/%SUBDIR%/ \ - ftp://ftp.digex.net/pub/packages/database/postgresql/%SUBDIR%/ \ - ftp://ftp.chg.ru/pub/databases/postgresql/%SUBDIR%/ \ - ${MASTER_SITE_RINGSERVER:S,%SUBDIR%,misc/db/postgresql/&,} -MASTER_SITE_SUBDIR= source/v${PORTVERSION} -DISTFILES= ${PORTNAME}-base-${PORTVERSION}${EXTRACT_SUFX} \ - ${PORTNAME}-opt-${PORTVERSION}${EXTRACT_SUFX} -.if !defined(NOPORTDOCS) -DISTFILES+= ${PORTNAME}-docs-${PORTVERSION}${EXTRACT_SUFX} -.endif - -MAINTAINER= girgen@partitur.se - -DIST_SUBDIR= postgresql - -INSTALLS_SHLIB= YES - -DOCDIR= ${WRKDIR}/${DISTNAME}/doc -PLIST= ${WRKDIR}/.PLIST.generated - -USE_GMAKE= YES -HAS_CONFIGURE= YES -CONFIGURE_ARGS= --enable-locale \ - --enable-syslog --with-CXX \ - --sysconfdir=${PREFIX}/etc/postgresql \ - --with-includes="${PREFIX}/include ${TCL_INCDIR} ${TK_INCDIR}" \ - --with-libraries=${PREFIX}/lib -.if defined(WITH_OLD_LAYOUT) -CONFIGURE_ARGS+=--docdir=${PREFIX}/share/doc --includedir=${PREFIX}/pgsql/include \ - --datadir=${PREFIX}/share \ - --with-template=`uname -s | ${TR} '[A-Z]' '[a-z]'` \ - --prefix=${PREFIX}/pgsql -PG_PREFIX= pgsql/ -PG_INCLUDE= pgsql/include -LDCONFIG_DIRS= %%PREFIX%%/pgsql/lib -MANPREFIX= ${PREFIX}/pgsql -.else -GNU_CONFIGURE= YES -CONFIGURE_ARGS+=--docdir=${PREFIX}/share/doc --includedir=${PREFIX}/include/pgsql -PG_PREFIX="" -PG_INCLUDE= include/pgsql -.endif - -PLIST_SUB= PG_PREFIX="${PG_PREFIX}" PG_INCLUDE="${PG_INCLUDE}" WITH_TCL="${WITH_TCL}" - -MAN1= createdb.1 createlang.1 createuser.1 dropdb.1 droplang.1 \ - dropuser.1 ecpg.1 initdb.1 initlocation.1 ipcclean.1 pg_config.1 \ - pg_ctl.1 pg_dump.1 pg_dumpall.1 pg_passwd.1 pg_restore.1 \ - pgaccess.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 checkpoint.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 set_constraints.l set_transaction.l show.l \ - truncate.l unlisten.l update.l vacuum.l - -SCRIPTS_ENV= WRKDIRPREFIX="${WRKDIRPREFIX}" \ - WRKDIR="${WRKDIR}" \ - FILESDIR="${FILESDIR}" \ - TOUCH="${TOUCH}" \ - MKDIR="${MKDIR}" \ - NO_OPENSSL="${NO_OPENSSL}" \ - DISTNAME="${DISTNAME}" - -# We must .include here because we need the Makefile.inc @ pre-install -# to determine the correct plist. -.if exists(${WRKDIRPREFIX}${.CURDIR}/Makefile.inc) -.include "${WRKDIRPREFIX}${.CURDIR}/Makefile.inc" -.else -# make utility targets like depends and describe happy -LIB_DEPENDS= tcl83:${PORTSDIR}/lang/tcl83 \ - tk83:${PORTSDIR}/x11-toolkits/tk83 -.endif - -pre-everything:: - @ ${SETENV} ${SCRIPTS_ENV} ${SH} ${SCRIPTDIR}/configure.postgresql - -pre-install: - @ ${SETENV} PKG_PREFIX=${PREFIX} ${SH} ${PKGDIR}/pkg-install ${PORTNAME} PRE-INSTALL -.if !defined(BATCH) -# remind folks twice for a while, so they really don't miss the layout shift - @ ${SED} "s|/usr/local|${PREFIX}|g" < ${PKGMESSAGE} | head -n 25 | more -e -.endif - @ ${CP} ${PKGDIR}/pkg-plist ${PLIST} -.if defined(WITHOUT_MULTIBYTE) - @${CP} ${PLIST} ${PLIST}.nomulti ;\ - ${GREP} -v bin/pg_encoding ${PLIST}.nomulti > ${PLIST} -.endif -.if defined(WITH_TCL) - @ ${CP} ${PLIST} ${PLIST}.notcl ;\ - ${CAT} ${PKGDIR}/${TCL_PLIST} ${PLIST}.notcl > ${PLIST} ;\ - ${RM} ${PLIST}.notcl -.endif -.if defined(WITH_ODBC) - @ ${CP} ${PLIST} ${PLIST}.noodbc ;\ - ${CAT} ${PKGDIR}/pkg-plist.odbc ${PLIST}.noodbc > ${PLIST} ;\ - ${RM} ${PLIST}.noodbc -.endif -.if defined(WITH_JDBC) - @ ${CP} ${PLIST} ${PLIST}.nojdbc ;\ - ${CAT} ${PKGDIR}/pkg-plist.jdbc ${PLIST}.nojdbc > ${PLIST} ;\ - ${RM} ${PLIST}.nojdbc -.endif -.if !defined(NOPORTDOCS) - @ ${CAT} ${PKGDIR}/pkg-plist.doc >> ${PLIST} -.endif - -post-install: -# install shell defaults for pgsql user -.for i in profile cshrc - @ ${SED} "s|%%PREFIX%%|${PREFIX}|g; s|%%PG_PREFIX%%|${PG_PREFIX}|g" \ - < ${FILESDIR}/dot.$i.in \ - > ${PREFIX}/share/postgresql/dot.$i.dist; \ - ${CP} ${PREFIX}/share/postgresql/dot.$i.dist ~pgsql/; \ - if [ ! -f ~pgsql/.$i ]; then \ - ${CP} ${PREFIX}/share/postgresql/dot.$i.dist ~pgsql/.$i; \ - fi -.endfor - @ ${SED} -e "s|%%PREFIX%%|${PREFIX}|g; s|%%PG_PREFIX%%|${PG_PREFIX}|g" \ - < ${FILESDIR}/pgsql.sh.tmpl \ - > ${PREFIX}/etc/rc.d/010.pgsql.sh - @ ${CHMOD} 554 ${PREFIX}/etc/rc.d/010.pgsql.sh - @ ${CHOWN} root:pgsql ${PREFIX}/etc/rc.d/010.pgsql.sh -.if defined(WITH_TCL) -# Preparing a loadable TCL-package (pkgIndex.tcl) - @${MKDIR} ${PREFIX}/lib/tcl${WITH_TCL}/Pgtcl1.3 - @${SED} "s|%%PREFIX%%|${PREFIX}|g" < ${FILESDIR}/pkgIndex.tcl.in \ - > ${PREFIX}/lib/tcl${WITH_TCL}/Pgtcl1.3/pkgIndex.tcl -.endif -.if defined(WITH_JDBC) - @ ${MKDIR} -m 0555 ${PREFIX}/share/java/classes - @ ${INSTALL_DATA} ${WRKSRC}/src/interfaces/jdbc/jars/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} "---------------------------------------------------------" -.if !defined(NOPORTDOCS) - @ ${MKDIR} -m 0555 ${PREFIX}/share/examples/postgresql ;\ - cd ${WRKSRC}/src/interfaces/jdbc/example ;\ - pax -rw . ${PREFIX}/share/examples/postgresql -.for i in README Implementation - @ ${INSTALL_DATA} ${WRKSRC}/src/interfaces/jdbc/$i \ - ${PREFIX}/share/examples/postgresql -.endfor - @ ${ECHO_MSG} "---------------------------------------------------------------" - @ ${ECHO_MSG} "Putting java examples into ${PREFIX}/share/examples/postgresql" - @ ${ECHO_MSG} "---------------------------------------------------------------" -.endif -.endif -.if !defined(DEBUG_FLAGS) -.for file in ecpg pg_dump pg_id pg_passwd pg_restore postgres psql - @ strip ${PREFIX}/${PG_PREFIX}bin/${file} -.endfor -.endif -# information overload mode activated, sorry about this... ;-) - @ ${CAT} ${FILESDIR}/post-install-notes ${PKGMESSAGE} |\ - ${SED} "s|/usr/local|${PREFIX}|g" |\ - tee ${PREFIX}/share/postgresql/post-install-notes ;\ - ${INSTALL_DATA} ${PREFIX}/share/postgresql/post-install-notes ~pgsql/. ;\ - ${CHOWN} -R pgsql:pgsql ~pgsql/. -.if defined(WITH_OLD_LAYOUT) - @ ${CHOWN} root:pgsql ${PREFIX}/${PG_PREFIX}lib -.endif - -post-clean: - @ ${RM} -f ${WRKDIRPREFIX}${.CURDIR}/Makefile.inc - -post-extract: ${POSTEXTRACT} - -.include <bsd.port.mk> diff --git a/databases/postgresql-devel-server/distinfo b/databases/postgresql-devel-server/distinfo deleted file mode 100644 index 23e07754313f..000000000000 --- a/databases/postgresql-devel-server/distinfo +++ /dev/null @@ -1,3 +0,0 @@ -MD5 (postgresql/postgresql-base-7.1.3.tar.gz) = f932dea12806972402aaaf17a2a97034 -MD5 (postgresql/postgresql-opt-7.1.3.tar.gz) = e84e9c51b31567d4571c7612e0c0fbd6 -MD5 (postgresql/postgresql-docs-7.1.3.tar.gz) = 7061ab7f7ec3c4d18f8e6cb2858896d0 diff --git a/databases/postgresql-devel-server/files/dot.cshrc.in b/databases/postgresql-devel-server/files/dot.cshrc.in deleted file mode 100644 index a326041bff7b..000000000000 --- a/databases/postgresql-devel-server/files/dot.cshrc.in +++ /dev/null @@ -1,13 +0,0 @@ -set path = ( %%PREFIX%%/%%PG_PREFIX%%bin $path ) - -setenv PGLIB %%PREFIX%%/%%PG_PREFIX%%lib - -# note: PGDATA can be overridden by the -D startup option -setenv PGDATA $HOME/data - -#You might want to set some locale stuff here -#setenv PGDATESTYLE ISO -#setenv LC_ALL sv_SE.ISO_8859-1 - -# if you want to make regression tests use this TZ -#setenv TZ PST8PDT diff --git a/databases/postgresql-devel-server/files/dot.profile.in b/databases/postgresql-devel-server/files/dot.profile.in deleted file mode 100644 index 4aca6aadd19a..000000000000 --- a/databases/postgresql-devel-server/files/dot.profile.in +++ /dev/null @@ -1,18 +0,0 @@ -# both new and old layout's paths, but new path first... -PATH=%%PREFIX%%/%%PG_PREFIX%%bin:${PATH} - -PGLIB=%%PREFIX%%/%%PG_PREFIX%%lib - -# note: PGDATA can be overridden by the -D startup option -PGDATA=${HOME}/data - -export PATH PGLIB PGDATA - -#You might want to set some locale stuff here -#PGDATESTYLE=ISO -#LC_ALL=sv_SE.ISO_8859-1 -#export PGDATESTYLE LC_ALL - -# if you want to make regression tests use this TZ -#TZ=PST8PDT -#export TZ diff --git a/databases/postgresql-devel-server/files/patch-aj b/databases/postgresql-devel-server/files/patch-aj deleted file mode 100644 index 94c0d6d79991..000000000000 --- a/databases/postgresql-devel-server/files/patch-aj +++ /dev/null @@ -1,118 +0,0 @@ ---- src/bin/pg_passwd/pg_passwd.c.orig Sat Mar 24 01:54:55 2001 -+++ src/bin/pg_passwd/pg_passwd.c Wed Apr 18 04:54:14 2001 -@@ -7,6 +7,12 @@ - #include <errno.h> - #include <time.h> - #include <ctype.h> -+ -+#if defined(__FreeBSD__) -+#include <pwd.h> /* defines _PASSWORD_LEN, max # of characters in a password */ -+#include <sys/time.h> /* gettimeofday for password salt */ -+#endif -+ - #define issaltchar(c) (isalnum((unsigned char) (c)) || (c) == '.' || (c) == '/') - - #ifdef HAVE_TERMIOS_H -@@ -23,18 +29,31 @@ - * We assume that the output of crypt(3) is always 13 characters, - * and that at most 8 characters can usefully be sent to it. - * -+ * For FreeBSD, take these values from /usr/include/pwd.h - * Postgres usernames are assumed to be less than NAMEDATALEN chars long. - */ -+#if defined(__FreeBSD__) -+#define CLEAR_PASSWD_LEN _PASSWORD_LEN -+#define CRYPTED_PASSWD_LEN _PASSWORD_LEN /* max length, not containing NULL */ -+#define SALT_LEN 10 -+#else - #define CLEAR_PASSWD_LEN 8 /* not including null */ - #define CRYPTED_PASSWD_LEN 13 /* not including null */ -+#define SALT_LEN 3 -+#endif -+ -+static unsigned char itoa64[] = /* 0 ... 63 => ascii - 64 */ -+ "./0123456789ABCDEFGHIJKLMNOPQRSTUVWXYZabcdefghijklmnopqrstuvwxyz"; -+ - - const char *progname; - - static void usage(void); -+static void to64(char *s, long v, int n); - static void read_pwd_file(char *filename); - static void write_pwd_file(char *filename, char *bkname); - static void encrypt_pwd(char key[CLEAR_PASSWD_LEN + 1], -- char salt[3], -+ char salt[SALT_LEN], - char passwd[CRYPTED_PASSWD_LEN + 1]); - static void prompt_for_username(char *username); - static void prompt_for_password(char *prompt, char *password); -@@ -47,6 +66,15 @@ - printf("Report bugs to <pgsql-bugs@postgresql.org>.\n"); - } - -+static void -+to64(char *s, long v, int n) -+{ -+ while (--n >= 0) { -+ *s++ = itoa64[v&0x3f]; -+ v >>= 6; -+ } -+} -+ - typedef struct - { - char *uname; -@@ -154,7 +182,7 @@ - if (q != NULL) - *(q++) = '\0'; - -- if (strlen(p) != CRYPTED_PASSWD_LEN && strcmp(p, "+") != 0) -+ if (strlen(p) > CRYPTED_PASSWD_LEN && strcmp(p, "+") != 0) - { - fprintf(stderr, "%s:%d: warning: invalid password length\n", - filename, npwds + 1); -@@ -221,15 +249,25 @@ - - static void - encrypt_pwd(char key[CLEAR_PASSWD_LEN + 1], -- char salt[3], -+ char salt[SALT_LEN], - char passwd[CRYPTED_PASSWD_LEN + 1]) - { -+#if !defined(__FreeBSD__) - int n; -- -+#endif - /* select a salt, if not already given */ - if (salt[0] == '\0') - { -+#if defined(__FreeBSD__) -+ struct timeval tv; -+ srandomdev(); -+ gettimeofday(&tv,0); -+ to64(&salt[0], random(), 3); -+ to64(&salt[3], tv.tv_usec, 3); -+ to64(&salt[6], tv.tv_sec, 2); -+ salt[8] = '\0'; - srand(time(NULL)); -+#else - do - { - n = rand() % 256; -@@ -241,6 +279,7 @@ - } while (!issaltchar(n)); - salt[1] = n; - salt[2] = '\0'; -+#endif - } - - /* get encrypted password */ -@@ -335,7 +374,7 @@ - char *filename; - char bkname[MAXPGPATH]; - char username[NAMEDATALEN]; -- char salt[3]; -+ char salt[SALT_LEN]; - char key[CLEAR_PASSWD_LEN + 1], - key2[CLEAR_PASSWD_LEN + 1]; - char e_passwd[CRYPTED_PASSWD_LEN + 1]; diff --git a/databases/postgresql-devel-server/files/patch-contrib-retep-build b/databases/postgresql-devel-server/files/patch-contrib-retep-build deleted file mode 100644 index 80f40f1cc86d..000000000000 --- a/databases/postgresql-devel-server/files/patch-contrib-retep-build +++ /dev/null @@ -1,37 +0,0 @@ -=================================================================== -RCS file: /home/projects/pgsql/cvsroot/pgsql/contrib/retep/build.xml,v -retrieving revision 1.4 -retrieving revision 1.5 -diff -u -r1.4 -r1.5 ---- contrib/retep/build.xml 2001/03/11 11:06:59 1.4 -+++ contrib/retep/build.xml 2001/05/16 16:20:51 1.5 -@@ -2,7 +2,7 @@ - - build file to build the donated retep tools packages - -- $Id: build.xml,v 1.4 2001/03/11 11:06:59 petere Exp $ -+ $Id: build.xml,v 1.5 2001/05/16 16:20:51 momjian Exp $ - - --> - -@@ -22,6 +22,11 @@ - <available property="xml" classname="org.xml.sax.Parser" /> - </target> - -+ <target name="warning" depends="checks" unless="jdk1.2+"> -+ <echo message="WARNING -- contributed retep tools need jdk1.2 or later -- compilation NOT done." /> -+ </target> -+ -+ - <!-- Prepares the build by creating a directory to place the class files --> - <target name="prepare"> - <mkdir dir="${dest}" /> -@@ -35,7 +40,7 @@ - </target> - - <!-- Builds the XML Tools --> -- <target name="compile" depends="checks,prepare"> -+ <target name="compile" depends="checks,prepare,warning" if="jdk1.2+"> - <javac srcdir="${src}" destdir="${dest}"> - <include name="${package}/**" /> - </javac> diff --git a/databases/postgresql-devel-server/files/patch-doc-makefile b/databases/postgresql-devel-server/files/patch-doc-makefile deleted file mode 100644 index fa27bed2af3f..000000000000 --- a/databases/postgresql-devel-server/files/patch-doc-makefile +++ /dev/null @@ -1,19 +0,0 @@ ---- doc/Makefile~ Sun Jan 7 03:03:22 2001 -+++ doc/Makefile Wed Apr 18 08:12:30 2001 -@@ -43,10 +43,13 @@ - gzip -d -c man.tar.gz | ( cd $(DESTDIR)$(mandir) && $(TAR) xf - ) - endif - -- - installdirs: -- $(mkinstalldirs) $(DESTDIR)$(mandir) $(DESTDIR)$(docdir)/html -- -+ifdef found_html -+ $(mkinstalldirs) $(DESTDIR)$(docdir)/html -+endif -+ifdef found_man -+ $(mkinstalldirs) $(DESTDIR)$(mandir) -+endif - - uninstall: - ifdef found_html diff --git a/databases/postgresql-devel-server/files/patch-jdbc-Connection b/databases/postgresql-devel-server/files/patch-jdbc-Connection deleted file mode 100644 index 26fbc260d639..000000000000 --- a/databases/postgresql-devel-server/files/patch-jdbc-Connection +++ /dev/null @@ -1,51 +0,0 @@ -=================================================================== -RCS file: /home/projects/pgsql/cvsroot/pgsql/src/interfaces/jdbc/org/postgresql/Connection.java,v -retrieving revision 1.14 -retrieving revision 1.16 -diff -u -r1.14 -r1.16 ---- src/interfaces/jdbc/org/postgresql/Connection.java 2001/01/31 08:26:01 1.14 -+++ src/interfaces/jdbc/org/postgresql/Connection.java 2001/06/01 20:57:58 1.16 -@@ -10,7 +10,7 @@ - import org.postgresql.util.*; - - /** -- * $Id: Connection.java,v 1.14 2001/01/31 08:26:01 peter Exp $ -+ * $Id: Connection.java,v 1.16 2001/06/01 20:57:58 momjian Exp $ - * - * This abstract class is used by org.postgresql.Driver to open either the JDBC1 or - * JDBC2 versions of the Connection class. -@@ -267,7 +267,8 @@ - // - firstWarning = null; - -- java.sql.ResultSet initrset = ExecSQL("set datestyle to 'ISO'; select getdatabaseencoding()"); -+ java.sql.ResultSet initrset = ExecSQL("set datestyle to 'ISO'; " + -+ "select case when pg_encoding_to_char(1) = 'SQL_ASCII' then 'UNKNOWN' else getdatabaseencoding() end"); - - String dbEncoding = null; - //retrieve DB properties -@@ -307,9 +308,23 @@ - } else if (dbEncoding.equals("EUC_TW")) { - dbEncoding = "EUC_TW"; - } else if (dbEncoding.equals("KOI8")) { -- dbEncoding = "KOI8_R"; -+ // try first if KOI8_U is present, it's a superset of KOI8_R -+ try { -+ dbEncoding = "KOI8_U"; -+ "test".getBytes(dbEncoding); -+ } -+ catch(UnsupportedEncodingException uee) { -+ // well, KOI8_U is still not in standard JDK, falling back to KOI8_R :( -+ dbEncoding = "KOI8_R"; -+ } -+ - } else if (dbEncoding.equals("WIN")) { - dbEncoding = "Cp1252"; -+ } else if (dbEncoding.equals("UNKNOWN")) { -+ //This isn't a multibyte database so we don't have an encoding to use -+ //We leave dbEncoding null which will cause the default encoding for the -+ //JVM to be used -+ dbEncoding = null; - } else { - dbEncoding = null; - } diff --git a/databases/postgresql-devel-server/files/patch-jdbc-build-xml b/databases/postgresql-devel-server/files/patch-jdbc-build-xml deleted file mode 100644 index b1c703a9c978..000000000000 --- a/databases/postgresql-devel-server/files/patch-jdbc-build-xml +++ /dev/null @@ -1,10 +0,0 @@ ---- src/interfaces/jdbc/build.xml~ Fri Mar 16 22:50:43 2001 -+++ src/interfaces/jdbc/build.xml Wed Apr 18 08:57:57 2001 -@@ -120,6 +120,7 @@ - <javac srcdir="${src}" destdir="${dest}"> - <include name="example/**" /> - <exclude name="example/corba/**"/> -+ <exclude name="example/blobtest.java" unless="jdk1.2+"/> - </javac> - </target> - diff --git a/databases/postgresql-devel-server/files/patch-jdbc-getdate b/databases/postgresql-devel-server/files/patch-jdbc-getdate deleted file mode 100644 index 744407ae14b5..000000000000 --- a/databases/postgresql-devel-server/files/patch-jdbc-getdate +++ /dev/null @@ -1,34 +0,0 @@ ---- src/interfaces/jdbc/org/postgresql/jdbc2/ResultSet.java~ Fri Feb 23 19:12:23 2001 -+++ src/interfaces/jdbc/org/postgresql/jdbc2/ResultSet.java Wed May 9 04:31:11 2001 -@@ -423,8 +423,13 @@ - String s = getString(columnIndex); - if(s==null) - return null; -- -- return java.sql.Date.valueOf(s); -+ // length == 10: SQL Date -+ // length > 10: SQL Timestamp, assumes PGDATESTYLE=ISO -+ try { -+ return java.sql.Date.valueOf((s.length() == 10) ? s : s.substring(0,10)); -+ } catch (NumberFormatException e) { -+ throw new PSQLException("postgresql.res.baddate", s); -+ } - } - - /** -@@ -441,8 +446,13 @@ - - if(s==null) - return null; // SQL NULL -- -- return java.sql.Time.valueOf(s); -+ // length == 8: SQL Time -+ // length > 8: SQL Timestamp -+ try { -+ return java.sql.Time.valueOf((s.length() == 8) ? s : s.substring(11,19)); -+ } catch (NumberFormatException e) { -+ throw new PSQLException("postgresql.res.badtime",s); -+ } - } - - /** 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 cd78771219ed..000000000000 --- a/databases/postgresql-devel-server/files/pgsql.sh.tmpl +++ /dev/null @@ -1,36 +0,0 @@ -#!/bin/sh - -# $FreeBSD$ -# -# For postmaster startup options, edit $PGDATA/postgresql.conf - -PGBIN=%%PREFIX%%/%%PG_PREFIX%%bin - -case $1 in -start) - [ -d %%PREFIX%%/%%PG_PREFIX%%lib ] && /sbin/ldconfig -m %%PREFIX%%/%%PG_PREFIX%%lib - [ -x ${PGBIN}/pg_ctl ] && { - su -l pgsql -c \ - '[ -d ${PGDATA} ] && exec %%PREFIX%%/%%PG_PREFIX%%bin/pg_ctl start -s -w -l ~pgsql/errlog' - echo -n ' pgsql' - } - ;; - -stop) - [ -x ${PGBIN}/pg_ctl ] && { - su -l pgsql -c 'exec %%PREFIX%%/%%PG_PREFIX%%bin/pg_ctl stop -s -m fast' - echo -n ' pgsql' - } - ;; - -status) - [ -x ${PGBIN}/pg_ctl ] && { - exec su -l pgsql -c 'exec %%PREFIX%%/%%PG_PREFIX%%bin/pg_ctl status' - } - ;; - -*) - echo "usage: `basename $0` {start|stop|status}" >&2 - exit 64 - ;; -esac diff --git a/databases/postgresql-devel-server/files/pkgIndex.tcl.in b/databases/postgresql-devel-server/files/pkgIndex.tcl.in deleted file mode 100644 index bd8329b15c69..000000000000 --- a/databases/postgresql-devel-server/files/pkgIndex.tcl.in +++ /dev/null @@ -1,4 +0,0 @@ -# Package-index file for Pgtcl-package. Enables you to load PostgreSQL -# interface functions right into you TCL-interpreter as simply as -# package require Pgtcl -package ifneeded Pgtcl 1.3 "load %%PREFIX%%/lib/libpgtcl.so" 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 9347fc51c247..000000000000 --- a/databases/postgresql-devel-server/files/post-install-notes +++ /dev/null @@ -1,25 +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/TK support, you can use the pgaccess -utility to get a TCL/TK based database frontend for database -operations. You do NOT need to install the pgaccess port separately. - -If you built in the TCL support, you can load the Pg package into your -TCL scripts as easily as ``package require Pgtcl''. - -If you built with Java support, add -/usr/local/share/java/classes/postgresql.jar to your classpath. - -If you have many tables and many clients running, consider raising -kern.maxfiles using sysctl(8). - -Use createlang(1) to install languages into your database. -Supported languages are 'plpgsql', 'pltcl', 'pltclu', and 'plperl'. diff --git a/databases/postgresql-devel-server/files/pre-install-notes b/databases/postgresql-devel-server/files/pre-install-notes deleted file mode 100644 index 697ce3cedb79..000000000000 --- a/databases/postgresql-devel-server/files/pre-install-notes +++ /dev/null @@ -1,21 +0,0 @@ - * IMPORTANT UPGRADE NOTICE * IMPORTANT UPGRADE NOTICE * - -The PostgreSQL port now obeys hier(7) by default, which means that it -installs into: - -%%PREFIX%%/bin -%%PREFIX%%/lib -%%PREFIX%%/include/pgsql - -You *must* move away your old installation to avoid problems with -ldconfig(8) and user's PATH:s. If you rather install using the -old-fashion layout, cancel at next screen and run make as: - -$ make -DWITH_OLD_LAYOUT - -As always, you *must* dump existing databases before stopping and -removing your old postgresql, as part of the update. This is *NOT* -done by this port! - -If you want JAVA support, I will try to determine your JAVA_HOME using -javavmwrapper. If you want a different JVM, please set JAVA_HOME. 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 463e4e49815f..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 cfc983fc2f66..000000000000 --- a/databases/postgresql-devel-server/pkg-install +++ /dev/null @@ -1,46 +0,0 @@ -#! /bin/sh - -# $FreeBSD$ - -PATH=/bin:/usr/sbin - -DB_DIR=${PKG_PREFIX}/pgsql - -case $2 in -PRE-INSTALL) - USER=pgsql - GROUP=${USER} - UID=70 - 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} -c "PostgreSQL Daemon" - then - echo "Added user \"${USER}\"." - else - echo "Adding user \"${USER}\" failed..." - exit 1 - fi - fi - - if ! [ -x ~pgsql ] ; then - mkdir -p ${DB_DIR} - chown pgsql:pgsql ${DB_DIR} - fi - ;; - -esac diff --git a/databases/postgresql-devel-server/pkg-message b/databases/postgresql-devel-server/pkg-message deleted file mode 100644 index 1a3f9f1e4147..000000000000 --- a/databases/postgresql-devel-server/pkg-message +++ /dev/null @@ -1,38 +0,0 @@ - -====================================================================== - - * IMPORTANT UPGRADE NOTICE * IMPORTANT UPGRADE NOTICE * - -The PostgreSQL port now obeys hier(7) by default, which means that it -installs into: - -/usr/local/bin -/usr/local/lib -/usr/local/include/pgsql - -You *must* move away your old installation from users' and -ldconfig(8)'s PATHs. If you rather install using the old-fashion -layout, cancel now and build the port with "make -DWITH_OLD_LAYOUT". - -The pgsql user's home dir is /usr/local/pgsql by default, but can be -changed with for example chpass(1). Datadir defaults to ~pgsql/data, -but can be changed by modifying the ~pgsql/.profile script. - -As always, backup your data before upgrading. If the upgrade leads to -a higher minor revision (i.e. 7.0.x -> 7.1.x), a dump and restore of -all databases is required. This is *NOT* done by the port! - -====================================================================== - -To initialize the database, you should run initdb as the "pgsql" user. - -Example: - - su -l pgsql -c initdb - -You can then start PostgreSQL by running: - - /usr/local/etc/rc.d/010.pgsql.sh start - -For postmaster settings, see ~pgsql/data/postgresql.conf -====================================================================== diff --git a/databases/postgresql-devel-server/pkg-plist b/databases/postgresql-devel-server/pkg-plist deleted file mode 100644 index a7493ddb7898..000000000000 --- a/databases/postgresql-devel-server/pkg-plist +++ /dev/null @@ -1,91 +0,0 @@ -%%PG_PREFIX%%bin/postmaster -%%PG_PREFIX%%bin/postgres -%%PG_PREFIX%%bin/ecpg -%%PG_PREFIX%%bin/initdb -%%PG_PREFIX%%bin/initlocation -%%PG_PREFIX%%bin/ipcclean -%%PG_PREFIX%%bin/pg_ctl -%%PG_PREFIX%%bin/pg_dump -%%PG_PREFIX%%bin/pg_restore -%%PG_PREFIX%%bin/pg_encoding -%%PG_PREFIX%%bin/pg_dumpall -%%PG_PREFIX%%bin/pg_id -%%PG_PREFIX%%bin/pg_passwd -%%PG_PREFIX%%bin/psql -%%PG_PREFIX%%bin/createdb -%%PG_PREFIX%%bin/dropdb -%%PG_PREFIX%%bin/createuser -%%PG_PREFIX%%bin/dropuser -%%PG_PREFIX%%bin/droplang -%%PG_PREFIX%%bin/vacuumdb -%%PG_PREFIX%%bin/createlang -%%PG_PREFIX%%bin/pg_config -etc/rc.d/010.pgsql.sh -%%PG_INCLUDE%%/lib/dllist.h -@dirrm %%PG_INCLUDE%%/lib -%%PG_INCLUDE%%/libpq/pqcomm.h -%%PG_INCLUDE%%/libpq/libpq-fs.h -@dirrm %%PG_INCLUDE%%/libpq -%%PG_INCLUDE%%/libpq++/pgconnection.h -%%PG_INCLUDE%%/libpq++/pgdatabase.h -%%PG_INCLUDE%%/libpq++/pgtransdb.h -%%PG_INCLUDE%%/libpq++/pgcursordb.h -%%PG_INCLUDE%%/libpq++/pglobject.h -@dirrm %%PG_INCLUDE%%/libpq++ -%%PG_INCLUDE%%/c.h -%%PG_INCLUDE%%/postgres_ext.h -%%PG_INCLUDE%%/postgres_fe.h -%%PG_INCLUDE%%/os.h -%%PG_INCLUDE%%/config.h -%%PG_INCLUDE%%/libpq-fe.h -%%PG_INCLUDE%%/libpq-int.h -%%PG_INCLUDE%%/pqexpbuffer.h -%%PG_INCLUDE%%/ecpgerrno.h -%%PG_INCLUDE%%/ecpglib.h -%%PG_INCLUDE%%/ecpgtype.h -%%PG_INCLUDE%%/sqlca.h -%%PG_INCLUDE%%/sql3types.h -%%PG_INCLUDE%%/libpgeasy.h -%%PG_INCLUDE%%/libpq++.h -@dirrm %%PG_INCLUDE%% -%%PG_PREFIX%%lib/libpq.so -%%PG_PREFIX%%lib/libpq.a -%%PG_PREFIX%%lib/libpq.so.2 -%%PG_PREFIX%%lib/libecpg.so -%%PG_PREFIX%%lib/libecpg.a -%%PG_PREFIX%%lib/libecpg.so.3 -%%PG_PREFIX%%lib/libpgeasy.so -%%PG_PREFIX%%lib/libpgeasy.a -%%PG_PREFIX%%lib/libpgeasy.so.2 -%%PG_PREFIX%%lib/libpq++.so -%%PG_PREFIX%%lib/libpq++.a -%%PG_PREFIX%%lib/libpq++.so.3 -%%PG_PREFIX%%lib/plpgsql.so -share/postgresql/global.bki -share/postgresql/global.description -share/postgresql/post-install-notes -share/postgresql/template1.bki -share/postgresql/template1.description -share/postgresql/pg_hba.conf.sample -share/postgresql/pg_ident.conf.sample -share/postgresql/postgresql.conf.sample -@unexec if cmp -s ~pgsql/.profile %D/share/postgresql/dot.profile.dist; then rm -f ~pgsql/.profile; fi -@unexec if cmp -s ~pgsql/.cshrc %D/share/postgresql/dot.cshrc.dist; then rm -f ~pgsql/.cshrc; fi -@unexec [ -f ~pgsql/dot.profile.dist ] && rm ~pgsql/dot.profile.dist -@unexec [ -f ~pgsql/dot.cshrc.dist ] && rm ~pgsql/dot.cshrc.dist -@exec [ -f %D/share/postgresql/post-install-notes ] && cp %D/share/postgresql/post-install-notes ~pgsql && chown pgsql:pgsql ~pgsql/post-install-notes -@unexec [ -f ~pgsql/post-install-notes ] && rm ~pgsql/post-install-notes -share/postgresql/dot.profile.dist -share/postgresql/dot.cshrc.dist -@dirrm share/postgresql -@exec [ -f %D/share/postgresql/dot.profile.dist ] && cp %D/share/postgresql/dot.profile.dist ~pgsql/. -@exec [ -f %D/share/postgresql/dot.cshrc.dist ] && cp %D/share/postgresql/dot.cshrc.dist ~pgsql/. -@exec [ -f ~pgsql/.profile ] || (cp %D/share/postgresql/dot.profile.dist ~pgsql/.profile && chown pgsql:pgsql ~pgsql/.profile) -@exec [ -f ~pgsql/.cshrc ] || (cp %D/share/postgresql/dot.cshrc.dist ~pgsql/.cshrc && chown pgsql:pgsql ~pgsql/.cshrc) -@unexec [ X%%PG_PREFIX%% != X ] && rmdir %D/%%PG_PREFIX%%bin 2> /dev/null || true -@unexec [ X%%PG_PREFIX%% != X ] && rmdir %D/%%PG_PREFIX%%lib 2> /dev/null || true -@unexec [ X%%PG_PREFIX%% != X ] && rmdir %D/%%PG_PREFIX%%man/man1 2> /dev/null || true -@unexec [ X%%PG_PREFIX%% != X ] && rmdir %D/%%PG_PREFIX%%man/manl 2> /dev/null || true -@unexec [ X%%PG_PREFIX%% != X ] && rmdir %D/%%PG_PREFIX%%man 2> /dev/null || true -@unexec rmdir ~pgsql 2> /dev/null || true -@unexec echo "Warning: If you will *NOT* use this package anymore, please remove %D/pgsql and the pgsql user manually." diff --git a/databases/postgresql-devel-server/pkg-plist.doc b/databases/postgresql-devel-server/pkg-plist.doc deleted file mode 100644 index c4d50ecb24f0..000000000000 --- a/databases/postgresql-devel-server/pkg-plist.doc +++ /dev/null @@ -1,494 +0,0 @@ -share/doc/postgresql/html/admin.html -share/doc/postgresql/html/advanced.html -share/doc/postgresql/html/altern-locations.html -share/doc/postgresql/html/app-createdb.html -share/doc/postgresql/html/app-createlang.html -share/doc/postgresql/html/app-createuser.html -share/doc/postgresql/html/app-dropdb.html -share/doc/postgresql/html/app-droplang.html -share/doc/postgresql/html/app-dropuser.html -share/doc/postgresql/html/app-ecpg.html -share/doc/postgresql/html/app-initdb.html -share/doc/postgresql/html/app-initlocation.html -share/doc/postgresql/html/app-ipcclean.html -share/doc/postgresql/html/app-pg-ctl.html -share/doc/postgresql/html/app-pg-dumpall.html -share/doc/postgresql/html/app-pg-passwd.html -share/doc/postgresql/html/app-pgaccess.html -share/doc/postgresql/html/app-pgadmin.html -share/doc/postgresql/html/app-pgconfig.html -share/doc/postgresql/html/app-pgdump.html -share/doc/postgresql/html/app-pgrestore.html -share/doc/postgresql/html/app-pgtclsh.html -share/doc/postgresql/html/app-pgtksh.html -share/doc/postgresql/html/app-postgres.html -share/doc/postgresql/html/app-postmaster.html -share/doc/postgresql/html/app-psql.html -share/doc/postgresql/html/app-vacuumdb.html -share/doc/postgresql/html/applevel-consistency.html -share/doc/postgresql/html/arch-pg.html -share/doc/postgresql/html/arch.html -share/doc/postgresql/html/arrays.html -share/doc/postgresql/html/auth-methods.html -share/doc/postgresql/html/backup-file.html -share/doc/postgresql/html/backup.html -share/doc/postgresql/html/biblio.html -share/doc/postgresql/html/bki-commands.html -share/doc/postgresql/html/bki-example.html -share/doc/postgresql/html/bki.html -share/doc/postgresql/html/bug-reporting.html -share/doc/postgresql/html/catalog-pg-aggregate.html -share/doc/postgresql/html/catalog-pg-attrdef.html -share/doc/postgresql/html/catalog-pg-attribute.html -share/doc/postgresql/html/catalog-pg-class.html -share/doc/postgresql/html/catalog-pg-database.html -share/doc/postgresql/html/catalog-pg-description.html -share/doc/postgresql/html/catalog-pg-group.html -share/doc/postgresql/html/catalog-pg-index.html -share/doc/postgresql/html/catalog-pg-inherits.html -share/doc/postgresql/html/catalog-pg-language.html -share/doc/postgresql/html/catalog-pg-operator.html -share/doc/postgresql/html/catalog-pg-proc.html -share/doc/postgresql/html/catalog-pg-relcheck.html -share/doc/postgresql/html/catalog-pg-shadow.html -share/doc/postgresql/html/catalog-pg-type.html -share/doc/postgresql/html/catalogs.html -share/doc/postgresql/html/charset.html -share/doc/postgresql/html/client-authentication-problems.html -share/doc/postgresql/html/client-authentication.html -share/doc/postgresql/html/compiler.html -share/doc/postgresql/html/connect-estab.html -share/doc/postgresql/html/creating-cluster.html -share/doc/postgresql/html/cvs-tree.html -share/doc/postgresql/html/cvs.html -share/doc/postgresql/html/cvsup.html -share/doc/postgresql/html/datatype-bit.html -share/doc/postgresql/html/datatype-boolean.html -share/doc/postgresql/html/datatype-character.html -share/doc/postgresql/html/datatype-datetime.html -share/doc/postgresql/html/datatype-geometric.html -share/doc/postgresql/html/datatype-money.html -share/doc/postgresql/html/ecpg.html -share/doc/postgresql/html/datatype-net-types.html -share/doc/postgresql/html/datatype.html -share/doc/postgresql/html/datetime-appendix.html -share/doc/postgresql/html/db-accessing.html -share/doc/postgresql/html/db-destroy.html -share/doc/postgresql/html/developer.html -share/doc/postgresql/html/doc-build.html -share/doc/postgresql/html/doc-sources.html -share/doc/postgresql/html/doc-toolsets.html -share/doc/postgresql/html/docguide.html -share/doc/postgresql/html/ecpg-concept.html -share/doc/postgresql/html/ecpg-develop.html -share/doc/postgresql/html/ecpg-limitations.html -share/doc/postgresql/html/ecpg-porting.html -share/doc/postgresql/html/ecpg-use.html -share/doc/postgresql/html/executor.html -share/doc/postgresql/html/explicit-joins.html -share/doc/postgresql/html/extend.html -share/doc/postgresql/html/functions-datetime.html -share/doc/postgresql/html/functions-aggregate.html -share/doc/postgresql/html/functions-comparison.html -share/doc/postgresql/html/functions-conditional.html -share/doc/postgresql/html/functions-formatting.html -share/doc/postgresql/html/functions-geometry.html -share/doc/postgresql/html/functions-matching.html -share/doc/postgresql/html/functions-math.html -share/doc/postgresql/html/functions-misc.html -share/doc/postgresql/html/functions-net.html -share/doc/postgresql/html/functions-string.html -share/doc/postgresql/html/functions.html -share/doc/postgresql/html/geqo-intro2.html -share/doc/postgresql/html/geqo-pg-intro.html -share/doc/postgresql/html/geqo.html -share/doc/postgresql/html/gist.html -share/doc/postgresql/html/groups.html -share/doc/postgresql/html/history.html -share/doc/postgresql/html/index.html -share/doc/postgresql/html/indexcost.html -share/doc/postgresql/html/indices-functional.html -share/doc/postgresql/html/indices-multicolumn.html -share/doc/postgresql/html/indices-opclass.html -share/doc/postgresql/html/indices-types.html -share/doc/postgresql/html/indices-unique.html -share/doc/postgresql/html/indices.html -share/doc/postgresql/html/inherit.html -share/doc/postgresql/html/install-getsource.html -share/doc/postgresql/html/install-post.html -share/doc/postgresql/html/install-procedure.html -share/doc/postgresql/html/install-requirements.html -share/doc/postgresql/html/install-upgrading.html -share/doc/postgresql/html/install-win32.html -share/doc/postgresql/html/installation.html -share/doc/postgresql/html/jdbc-ext.html -share/doc/postgresql/html/jdbc-lo.html -share/doc/postgresql/html/jdbc.html -share/doc/postgresql/html/jdbc-query.html -share/doc/postgresql/html/jdbc-reading.html -share/doc/postgresql/html/jdbc-thread.html -share/doc/postgresql/html/jdbc-update.html -share/doc/postgresql/html/jdbc-use.html -share/doc/postgresql/html/kernel-resources.html -share/doc/postgresql/html/keys.html -share/doc/postgresql/html/largeobjects.html -share/doc/postgresql/html/libpgtcl-examples.html -share/doc/postgresql/html/libpgtcl-ref.html -share/doc/postgresql/html/libpq-async.html -share/doc/postgresql/html/libpq-control.html -share/doc/postgresql/html/libpq-copy.html -share/doc/postgresql/html/libpq-envars.html -share/doc/postgresql/html/libpq-example.html -share/doc/postgresql/html/libpq-exec.html -share/doc/postgresql/html/libpq-fastpath.html -share/doc/postgresql/html/libpq-notify.html -share/doc/postgresql/html/libpq.html -share/doc/postgresql/html/libpq-threading.html -share/doc/postgresql/html/libpq-trace.html -share/doc/postgresql/html/libpqplusplus.html -share/doc/postgresql/html/libpqpp-classes.html -share/doc/postgresql/html/libpqpp-connect.html -share/doc/postgresql/html/libpqpp-copy.html -share/doc/postgresql/html/libpqpp-exec.html -share/doc/postgresql/html/libpqpp-notify.html -share/doc/postgresql/html/lisp.html -share/doc/postgresql/html/ln11330.html -share/doc/postgresql/html/ln1274.html -share/doc/postgresql/html/ln15181.html -share/doc/postgresql/html/ln24.html -share/doc/postgresql/html/ln25010.html -share/doc/postgresql/html/ln37176.html -share/doc/postgresql/html/ln8.html -share/doc/postgresql/html/lo-funcs.html -share/doc/postgresql/html/lo-implementation.html -share/doc/postgresql/html/lo-interfaces.html -share/doc/postgresql/html/lo-libpq.html -share/doc/postgresql/html/lo-sample.html -share/doc/postgresql/html/locking-indices.html -share/doc/postgresql/html/locking-tables.html -share/doc/postgresql/html/manage-ag-accessdb.html -share/doc/postgresql/html/manage-ag-dropdb.html -share/doc/postgresql/html/manage.html -share/doc/postgresql/html/managing-databases.html -share/doc/postgresql/html/migration.html -share/doc/postgresql/html/more-advanced.html -share/doc/postgresql/html/multibyte.html -share/doc/postgresql/html/mvcc.html -share/doc/postgresql/html/non-atomic-values.html -share/doc/postgresql/html/notation.html -share/doc/postgresql/html/odbc-applixware.html -share/doc/postgresql/html/odbc-config.html -share/doc/postgresql/html/odbc-install.html -share/doc/postgresql/html/odbc-windows.html -share/doc/postgresql/html/odbc.html -share/doc/postgresql/html/organization.html -share/doc/postgresql/html/overview.html -share/doc/postgresql/html/page.html -share/doc/postgresql/html/parser-stage.html -share/doc/postgresql/html/partial-index.html -share/doc/postgresql/html/performance-tips.html -share/doc/postgresql/html/perm-functions.html -share/doc/postgresql/html/pg-system-catalogs.html -share/doc/postgresql/html/pgeasy-chapter.html -share/doc/postgresql/html/pgtcl-pgconndefaults.html -share/doc/postgresql/html/pgtcl-pgconnect.html -share/doc/postgresql/html/pgtcl-pgdisconnect.html -share/doc/postgresql/html/pgtcl-pgexec.html -share/doc/postgresql/html/pgtcl-pglisten.html -share/doc/postgresql/html/pgtcl-pgloclose.html -share/doc/postgresql/html/pgtcl-pglocreat.html -share/doc/postgresql/html/pgtcl-pgloexport.html -share/doc/postgresql/html/pgtcl-pgloimport.html -share/doc/postgresql/html/pgtcl-pglolseek.html -share/doc/postgresql/html/pgtcl-pgloopen.html -share/doc/postgresql/html/pgtcl-pgloread.html -share/doc/postgresql/html/pgtcl-pglotell.html -share/doc/postgresql/html/pgtcl-pglounlink.html -share/doc/postgresql/html/pgtcl-pglowrite.html -share/doc/postgresql/html/pgtcl-pgresult.html -share/doc/postgresql/html/pgtcl-pgselect.html -share/doc/postgresql/html/pgtcl.html -share/doc/postgresql/html/planner-optimizer.html -share/doc/postgresql/html/plperl-use.html -share/doc/postgresql/html/plperl.html -share/doc/postgresql/html/plpgsql-description.html -share/doc/postgresql/html/plpgsql-examples.html -share/doc/postgresql/html/plpgsql-porting.html -share/doc/postgresql/html/plpgsql-trigger.html -share/doc/postgresql/html/plpgsql.html -share/doc/postgresql/html/pltcl-description.html -share/doc/postgresql/html/pltcl.html -share/doc/postgresql/html/populate.html -share/doc/postgresql/html/postgres.html -share/doc/postgresql/html/postmaster-shutdown.html -share/doc/postgresql/html/postmaster-start.html -share/doc/postgresql/html/preface.html -share/doc/postgresql/html/privileges.html -share/doc/postgresql/html/programmer-client.html -share/doc/postgresql/html/programmer-pl.html -share/doc/postgresql/html/programmer-server.html -share/doc/postgresql/html/programmer.html -share/doc/postgresql/html/protocol-message-formats.html -share/doc/postgresql/html/protocol-message-types.html -share/doc/postgresql/html/protocol-protocol.html -share/doc/postgresql/html/protocol.html -share/doc/postgresql/html/pygresql.html -share/doc/postgresql/html/pygresql-close.html -share/doc/postgresql/html/pygresql-connect.html -share/doc/postgresql/html/pygresql-db-api.html -share/doc/postgresql/html/pygresql-db-clear.html -share/doc/postgresql/html/pygresql-db-delete.html -share/doc/postgresql/html/pygresql-db-get-attnames.html -share/doc/postgresql/html/pygresql-db-get-databases.html -share/doc/postgresql/html/pygresql-db-get-tables.html -share/doc/postgresql/html/pygresql-db-get.html -share/doc/postgresql/html/pygresql-db-insert.html -share/doc/postgresql/html/pygresql-db-pkey.html -share/doc/postgresql/html/pygresql-db-update.html -share/doc/postgresql/html/pygresql-endcopy.html -share/doc/postgresql/html/pygresql-fileno.html -share/doc/postgresql/html/pygresql-get-defbase.html -share/doc/postgresql/html/pygresql-get-defhost.html -share/doc/postgresql/html/pygresql-get-defopt.html -share/doc/postgresql/html/pygresql-get-defport.html -share/doc/postgresql/html/pygresql-get-deftty.html -share/doc/postgresql/html/pygresql-getline.html -share/doc/postgresql/html/pygresql-getlo.html -share/doc/postgresql/html/pygresql-getnotify.html -share/doc/postgresql/html/pygresql-inserttable.html -share/doc/postgresql/html/pygresql-locreate.html -share/doc/postgresql/html/pygresql-loimport.html -share/doc/postgresql/html/pygresql-pg-db.html -share/doc/postgresql/html/pygresql-pg-functions.html -share/doc/postgresql/html/pygresql-pg-pglarge.html -share/doc/postgresql/html/pygresql-pg-pgobject.html -share/doc/postgresql/html/pygresql-pg-pgqueryobject.html -share/doc/postgresql/html/pygresql-pglargeobject-close.html -share/doc/postgresql/html/pygresql-pglargeobject-export.html -share/doc/postgresql/html/pygresql-pglargeobject-open.html -share/doc/postgresql/html/pygresql-pglargeobject-read.html -share/doc/postgresql/html/pygresql-pglargeobject-seek.html -share/doc/postgresql/html/pygresql-pglargeobject-size.html -share/doc/postgresql/html/pygresql-pglargeobject-tell.html -share/doc/postgresql/html/pygresql-pglargeobject-unlink.html -share/doc/postgresql/html/pygresql-pglargeobject-write.html -share/doc/postgresql/html/pygresql-pgqueryobject-dictresult.html -share/doc/postgresql/html/pygresql-pgqueryobject-fieldname.html -share/doc/postgresql/html/query.html -share/doc/postgresql/html/pygresql-pgqueryobject-fieldnum.html -share/doc/postgresql/html/pygresql-pgqueryobject-getresult.html -share/doc/postgresql/html/pygresql-pgqueryobject-listfields.html -share/doc/postgresql/html/pygresql-pgqueryobject-ntuples.html -share/doc/postgresql/html/pygresql-putline.html -share/doc/postgresql/html/pygresql-query.html -share/doc/postgresql/html/pygresql-reset.html -share/doc/postgresql/html/pygresql-set-defbase.html -share/doc/postgresql/html/pygresql-set-defhost.html -share/doc/postgresql/html/pygresql-set-defopt.html -share/doc/postgresql/html/pygresql-set-defport.html -share/doc/postgresql/html/pygresql-set-deftty.html -share/doc/postgresql/html/queries-limit.html -share/doc/postgresql/html/queries-order.html -share/doc/postgresql/html/queries-select-lists.html -share/doc/postgresql/html/queries-union.html -share/doc/postgresql/html/queries.html -share/doc/postgresql/html/query-agg.html -share/doc/postgresql/html/query-concepts.html -share/doc/postgresql/html/query-delete.html -share/doc/postgresql/html/query-join.html -share/doc/postgresql/html/query-populate.html -share/doc/postgresql/html/query-query.html -share/doc/postgresql/html/query-selectinto.html -share/doc/postgresql/html/query-table.html -share/doc/postgresql/html/query-update.html -share/doc/postgresql/html/recode.html -share/doc/postgresql/html/recovery.html -share/doc/postgresql/html/reference-client.html -share/doc/postgresql/html/reference-server.html -share/doc/postgresql/html/reference.html -share/doc/postgresql/html/regress-platform.html -share/doc/postgresql/html/regress.html -share/doc/postgresql/html/release-0-01.html -share/doc/postgresql/html/release-0-02.html -share/doc/postgresql/html/release-0-03.html -share/doc/postgresql/html/release-1-0.html -share/doc/postgresql/html/release-1-01.html -share/doc/postgresql/html/release-1-02.html -share/doc/postgresql/html/release-1-09.html -share/doc/postgresql/html/release-6-0.html -share/doc/postgresql/html/release-6-1-1.html -share/doc/postgresql/html/release-6-1.html -share/doc/postgresql/html/release-6-2-1.html -share/doc/postgresql/html/release-6-2.html -share/doc/postgresql/html/release-6-3-1.html -share/doc/postgresql/html/release-6-3-2.html -share/doc/postgresql/html/release-6-3.html -share/doc/postgresql/html/release-6-4-1.html -share/doc/postgresql/html/release-6-4-2.html -share/doc/postgresql/html/release-6-4.html -share/doc/postgresql/html/release-6-5-1.html -share/doc/postgresql/html/release-6-5-2.html -share/doc/postgresql/html/release-6-5-3.html -share/doc/postgresql/html/release-6-5.html -share/doc/postgresql/html/release-7-0-1.html -share/doc/postgresql/html/release-7-0-2.html -share/doc/postgresql/html/release-7-0-3.html -share/doc/postgresql/html/release-7-0.html -share/doc/postgresql/html/release-7-1.html -share/doc/postgresql/html/release-7-1-1.html -share/doc/postgresql/html/release-7-1-2.html -share/doc/postgresql/html/release.html -share/doc/postgresql/html/relmodel-formal.html -share/doc/postgresql/html/relmodel-oper.html -share/doc/postgresql/html/resources.html -share/doc/postgresql/html/rule-system.html -share/doc/postgresql/html/rules-insert.html -share/doc/postgresql/html/rules-permissions.html -share/doc/postgresql/html/rules-triggers.html -share/doc/postgresql/html/rules-views.html -share/doc/postgresql/html/rules.html -share/doc/postgresql/html/runtime-config.html -share/doc/postgresql/html/runtime.html -share/doc/postgresql/html/source.html -share/doc/postgresql/html/spi-examples.html -share/doc/postgresql/html/spi-interface-support.html -share/doc/postgresql/html/spi-memory.html -share/doc/postgresql/html/spi-spiconnect.html -share/doc/postgresql/html/spi-spicopytuple.html -share/doc/postgresql/html/spi-spiexec.html -share/doc/postgresql/html/spi-spiexecp.html -share/doc/postgresql/html/spi-spifinish.html -share/doc/postgresql/html/spi-spifname.html -share/doc/postgresql/html/spi-spifnumber.html -share/doc/postgresql/html/spi-spigetbinval.html -share/doc/postgresql/html/spi-spigetrelname.html -share/doc/postgresql/html/spi-spigettype.html -share/doc/postgresql/html/spi-spigettypeid.html -share/doc/postgresql/html/spi-spigetvalue.html -share/doc/postgresql/html/spi-spimodifytuple.html -share/doc/postgresql/html/spi-spipalloc.html -share/doc/postgresql/html/spi-spipfree.html -share/doc/postgresql/html/spi-spiprepare.html -share/doc/postgresql/html/spi-spirepalloc.html -share/doc/postgresql/html/spi-spisaveplan.html -share/doc/postgresql/html/spi-visibility.html -share/doc/postgresql/html/spi.html -share/doc/postgresql/html/sql-abort.html -share/doc/postgresql/html/sql-altergroup.html -share/doc/postgresql/html/sql-altertable.html -share/doc/postgresql/html/sql-alteruser.html -share/doc/postgresql/html/sql-begin.html -share/doc/postgresql/html/sql-checkpoint.html -share/doc/postgresql/html/sql-close.html -share/doc/postgresql/html/sql-cluster.html -share/doc/postgresql/html/sql-commands.html -share/doc/postgresql/html/sql-comment.html -share/doc/postgresql/html/sql-commit.html -share/doc/postgresql/html/sql-copy.html -share/doc/postgresql/html/sql-createaggregate.html -share/doc/postgresql/html/sql-createconstraint.html -share/doc/postgresql/html/sql-createdatabase.html -share/doc/postgresql/html/sql-createfunction.html -share/doc/postgresql/html/sql-creategroup.html -share/doc/postgresql/html/sql-createindex.html -share/doc/postgresql/html/sql-createlanguage.html -share/doc/postgresql/html/sql-createoperator.html -share/doc/postgresql/html/sql-createrule.html -share/doc/postgresql/html/sql-createsequence.html -share/doc/postgresql/html/sql-createtable.html -share/doc/postgresql/html/sql-createtableas.html -share/doc/postgresql/html/sql-createtrigger.html -share/doc/postgresql/html/sql-createtype.html -share/doc/postgresql/html/sql-createuser.html -share/doc/postgresql/html/sql-createview.html -share/doc/postgresql/html/sql-declare.html -share/doc/postgresql/html/sql-delete.html -share/doc/postgresql/html/sql-dropaggregate.html -share/doc/postgresql/html/sql-dropdatabase.html -share/doc/postgresql/html/sql-dropfunction.html -share/doc/postgresql/html/sql-dropgroup.html -share/doc/postgresql/html/sql-dropindex.html -share/doc/postgresql/html/sql-droplanguage.html -share/doc/postgresql/html/sql-dropoperator.html -share/doc/postgresql/html/sql-droprule.html -share/doc/postgresql/html/sql-dropsequence.html -share/doc/postgresql/html/sql-droptable.html -share/doc/postgresql/html/sql-droptrigger.html -share/doc/postgresql/html/sql-droptype.html -share/doc/postgresql/html/sql-dropuser.html -share/doc/postgresql/html/sql-dropview.html -share/doc/postgresql/html/sql-end.html -share/doc/postgresql/html/sql-explain.html -share/doc/postgresql/html/sql-expressions.html -share/doc/postgresql/html/sql-fetch.html -share/doc/postgresql/html/sql-grant.html -share/doc/postgresql/html/sql-insert.html -share/doc/postgresql/html/sql-keywords-appendix.html -share/doc/postgresql/html/sql-language.html -share/doc/postgresql/html/sql-listen.html -share/doc/postgresql/html/sql-load.html -share/doc/postgresql/html/sql-lock.html -share/doc/postgresql/html/sql-move.html -share/doc/postgresql/html/sql-notify.html -share/doc/postgresql/html/sql-precedence.html -share/doc/postgresql/html/sql-reindex.html -share/doc/postgresql/html/sql-reset.html -share/doc/postgresql/html/sql-revoke.html -share/doc/postgresql/html/sql-rollback.html -share/doc/postgresql/html/sql-select.html -share/doc/postgresql/html/sql-selectinto.html -share/doc/postgresql/html/sql-set-constraints.html -share/doc/postgresql/html/sql-set-transaction.html -share/doc/postgresql/html/sql-set.html -share/doc/postgresql/html/sql-show.html -share/doc/postgresql/html/sql-syntax-columns.html -share/doc/postgresql/html/sql-syntax.html -share/doc/postgresql/html/sql-truncate.html -share/doc/postgresql/html/sql-unlisten.html -share/doc/postgresql/html/sql-update.html -share/doc/postgresql/html/sql-vacuum.html -share/doc/postgresql/html/sql.html -share/doc/postgresql/html/ssh-tunnels.html -share/doc/postgresql/html/ssl-tcp.html -share/doc/postgresql/html/start-manage-db.html -share/doc/postgresql/html/start-psql.html -share/doc/postgresql/html/start.html -share/doc/postgresql/html/storage.html -share/doc/postgresql/html/supported-platforms.html -share/doc/postgresql/html/timing-results.html -share/doc/postgresql/html/transaction-iso.html -share/doc/postgresql/html/trigger-datachanges.html -share/doc/postgresql/html/trigger-examples.html -share/doc/postgresql/html/trigger-manager.html -share/doc/postgresql/html/triggers.html -share/doc/postgresql/html/tutorial.html -share/doc/postgresql/html/type-system.html -share/doc/postgresql/html/typeconv-func.html -share/doc/postgresql/html/typeconv-oper.html -share/doc/postgresql/html/typeconv-query.html -share/doc/postgresql/html/typeconv-union-case.html -share/doc/postgresql/html/typeconv.html -share/doc/postgresql/html/units-history.html -share/doc/postgresql/html/user-manag.html -share/doc/postgresql/html/user.html -share/doc/postgresql/html/wal-configuration.html -share/doc/postgresql/html/wal-implementation.html -share/doc/postgresql/html/wal.html -share/doc/postgresql/html/xact-read-committed.html -share/doc/postgresql/html/xact-serializable.html -share/doc/postgresql/html/xaggr.html -share/doc/postgresql/html/xfunc-c.html -share/doc/postgresql/html/xfunc-internal.html -share/doc/postgresql/html/xfunc-overload.html -share/doc/postgresql/html/xfunc-pl.html -share/doc/postgresql/html/xfunc.html -share/doc/postgresql/html/xindex.html -share/doc/postgresql/html/xoper.html -share/doc/postgresql/html/xplang.html -share/doc/postgresql/html/xtypes.html -share/doc/postgresql/html/y2k.html -share/doc/postgresql/html/catalogs.gif -share/doc/postgresql/html/clientserver.gif -share/doc/postgresql/html/connections.gif -@dirrm share/doc/postgresql/html -@dirrm share/doc/postgresql diff --git a/databases/postgresql-devel-server/pkg-plist.jdbc b/databases/postgresql-devel-server/pkg-plist.jdbc deleted file mode 100644 index 8f7bd41a54d7..000000000000 --- a/databases/postgresql-devel-server/pkg-plist.jdbc +++ /dev/null @@ -1,27 +0,0 @@ -share/examples/postgresql/corba/StockClient.java -share/examples/postgresql/corba/StockDB.java -share/examples/postgresql/corba/StockDispenserImpl.java -share/examples/postgresql/corba/StockItemImpl.java -share/examples/postgresql/corba/StockServer.java -share/examples/postgresql/corba/readme -share/examples/postgresql/corba/stock.idl -share/examples/postgresql/corba/stock.sql -@dirrm share/examples/postgresql/corba -share/examples/postgresql/ImageViewer.java -share/examples/postgresql/Unicode.java -share/examples/postgresql/basic.java -share/examples/postgresql/blobtest.java -share/examples/postgresql/datestyle.java -share/examples/postgresql/metadata.java -share/examples/postgresql/psql.java -share/examples/postgresql/threadsafe.java -share/examples/postgresql/README -share/examples/postgresql/Implementation -@dirrm share/examples/postgresql -share/postgresql/java/postgresql-examples.jar -share/postgresql/java/postgresql.jar -share/postgresql/java/retepTools.jar -@dirrm share/postgresql/java -share/java/classes/postgresql.jar -@unexec rmdir %D/share/java/classes 2>/dev/null || true -@unexec rmdir %D/share/java 2>/dev/null || true diff --git a/databases/postgresql-devel-server/pkg-plist.notk b/databases/postgresql-devel-server/pkg-plist.notk deleted file mode 100644 index 8dcbc5f88bd6..000000000000 --- a/databases/postgresql-devel-server/pkg-plist.notk +++ /dev/null @@ -1,6 +0,0 @@ -%%PG_PREFIX%%bin/pgtclsh -%%PG_INCLUDE%%/libpgtcl.h -%%PG_PREFIX%%lib/libpgtcl.a -%%PG_PREFIX%%lib/libpgtcl.so -%%PG_PREFIX%%lib/libpgtcl.so.2 -%%PG_PREFIX%%lib/pltcl.so diff --git a/databases/postgresql-devel-server/pkg-plist.odbc b/databases/postgresql-devel-server/pkg-plist.odbc deleted file mode 100644 index f047b7cb64a1..000000000000 --- a/databases/postgresql-devel-server/pkg-plist.odbc +++ /dev/null @@ -1,10 +0,0 @@ -%%PG_INCLUDE%%/iodbc/iodbc.h -%%PG_INCLUDE%%/iodbc/isql.h -%%PG_INCLUDE%%/iodbc/isqlext.h -@dirrm %%PG_INCLUDE%%/iodbc -%%PG_PREFIX%%lib/libpsqlodbc.a -%%PG_PREFIX%%lib/libpsqlodbc.so -%%PG_PREFIX%%lib/libpsqlodbc.so.0 -etc/postgresql/odbcinst.ini -@dirrm etc/postgresql -share/postgresql/odbc.sql diff --git a/databases/postgresql-devel-server/pkg-plist.tcl b/databases/postgresql-devel-server/pkg-plist.tcl deleted file mode 100644 index da5f4367cb80..000000000000 --- a/databases/postgresql-devel-server/pkg-plist.tcl +++ /dev/null @@ -1,148 +0,0 @@ -%%PG_PREFIX%%bin/pgaccess -%%PG_PREFIX%%bin/pgtclsh -%%PG_PREFIX%%bin/pgtksh -%%PG_INCLUDE%%/libpgtcl.h -%%PG_PREFIX%%lib/libpgtcl.a -%%PG_PREFIX%%lib/libpgtcl.so -%%PG_PREFIX%%lib/libpgtcl.so.2 -%%PG_PREFIX%%lib/pltcl.so -lib/tcl%%WITH_TCL%%/Pgtcl1.3/pkgIndex.tcl -share/postgresql/pgaccess/images/icon_button.gif -share/postgresql/pgaccess/images/icon_checkbutton.gif -share/postgresql/pgaccess/images/icon_entry.gif -share/postgresql/pgaccess/images/icon_frame.gif -share/postgresql/pgaccess/images/icon_label.gif -share/postgresql/pgaccess/images/icon_listbox.gif -share/postgresql/pgaccess/images/icon_query.gif -share/postgresql/pgaccess/images/icon_radiobutton.gif -share/postgresql/pgaccess/images/icon_text.gif -share/postgresql/pgaccess/lib/database.tcl -share/postgresql/pgaccess/lib/forms.tcl -share/postgresql/pgaccess/lib/functions.tcl -share/postgresql/pgaccess/lib/help/abort.hlp -share/postgresql/pgaccess/lib/help/add_records.hlp -share/postgresql/pgaccess/lib/help/alter_table.hlp -share/postgresql/pgaccess/lib/help/alter_user.hlp -share/postgresql/pgaccess/lib/help/author.hlp -share/postgresql/pgaccess/lib/help/begin.hlp -share/postgresql/pgaccess/lib/help/close.hlp -share/postgresql/pgaccess/lib/help/cluster.hlp -share/postgresql/pgaccess/lib/help/commit.hlp -share/postgresql/pgaccess/lib/help/copy.hlp -share/postgresql/pgaccess/lib/help/copyrights.hlp -share/postgresql/pgaccess/lib/help/create_aggregate.hlp -share/postgresql/pgaccess/lib/help/create_database.hlp -share/postgresql/pgaccess/lib/help/create_function.hlp -share/postgresql/pgaccess/lib/help/create_index.hlp -share/postgresql/pgaccess/lib/help/create_language.hlp -share/postgresql/pgaccess/lib/help/create_operator.hlp -share/postgresql/pgaccess/lib/help/create_rule.hlp -share/postgresql/pgaccess/lib/help/create_sequence.hlp -share/postgresql/pgaccess/lib/help/create_table.hlp -share/postgresql/pgaccess/lib/help/create_table_as.hlp -share/postgresql/pgaccess/lib/help/create_trigger.hlp -share/postgresql/pgaccess/lib/help/create_type.hlp -share/postgresql/pgaccess/lib/help/create_user.hlp -share/postgresql/pgaccess/lib/help/create_view.hlp -share/postgresql/pgaccess/lib/help/data_types.hlp -share/postgresql/pgaccess/lib/help/datefunc.hlp -share/postgresql/pgaccess/lib/help/declare.hlp -share/postgresql/pgaccess/lib/help/delete.hlp -share/postgresql/pgaccess/lib/help/drop_aggregate.hlp -share/postgresql/pgaccess/lib/help/drop_database.hlp -share/postgresql/pgaccess/lib/help/drop_function.hlp -share/postgresql/pgaccess/lib/help/drop_index.hlp -share/postgresql/pgaccess/lib/help/drop_language.hlp -share/postgresql/pgaccess/lib/help/drop_operator.hlp -share/postgresql/pgaccess/lib/help/drop_rule.hlp -share/postgresql/pgaccess/lib/help/drop_sequence.hlp -share/postgresql/pgaccess/lib/help/drop_table.hlp -share/postgresql/pgaccess/lib/help/drop_trigger.hlp -share/postgresql/pgaccess/lib/help/drop_type.hlp -share/postgresql/pgaccess/lib/help/drop_user.hlp -share/postgresql/pgaccess/lib/help/drop_view.hlp -share/postgresql/pgaccess/lib/help/explain.hlp -share/postgresql/pgaccess/lib/help/fetch.hlp -share/postgresql/pgaccess/lib/help/form_design.hlp -share/postgresql/pgaccess/lib/help/forms.hlp -share/postgresql/pgaccess/lib/help/functions.hlp -share/postgresql/pgaccess/lib/help/geomfunc.hlp -share/postgresql/pgaccess/lib/help/grant.hlp -share/postgresql/pgaccess/lib/help/history.hlp -share/postgresql/pgaccess/lib/help/index.hlp -share/postgresql/pgaccess/lib/help/inheritance.hlp -share/postgresql/pgaccess/lib/help/insert.hlp -share/postgresql/pgaccess/lib/help/ipv4func.hlp -share/postgresql/pgaccess/lib/help/isolation.hlp -share/postgresql/pgaccess/lib/help/keywords.hlp -share/postgresql/pgaccess/lib/help/listen.hlp -share/postgresql/pgaccess/lib/help/load.hlp -share/postgresql/pgaccess/lib/help/lock.hlp -share/postgresql/pgaccess/lib/help/mathfunc.hlp -share/postgresql/pgaccess/lib/help/move.hlp -share/postgresql/pgaccess/lib/help/mvcc.hlp -share/postgresql/pgaccess/lib/help/new_query.hlp -share/postgresql/pgaccess/lib/help/new_table.hlp -share/postgresql/pgaccess/lib/help/notify.hlp -share/postgresql/pgaccess/lib/help/open_query.hlp -share/postgresql/pgaccess/lib/help/open_table.hlp -share/postgresql/pgaccess/lib/help/pgfunctions.hlp -share/postgresql/pgaccess/lib/help/postgresql.hlp -share/postgresql/pgaccess/lib/help/queries.hlp -share/postgresql/pgaccess/lib/help/reports.hlp -share/postgresql/pgaccess/lib/help/reset.hlp -share/postgresql/pgaccess/lib/help/revoke.hlp -share/postgresql/pgaccess/lib/help/rollback.hlp -share/postgresql/pgaccess/lib/help/schema.hlp -share/postgresql/pgaccess/lib/help/scripts.hlp -share/postgresql/pgaccess/lib/help/select.hlp -share/postgresql/pgaccess/lib/help/select_into.hlp -share/postgresql/pgaccess/lib/help/sequences.hlp -share/postgresql/pgaccess/lib/help/set.hlp -share/postgresql/pgaccess/lib/help/show.hlp -share/postgresql/pgaccess/lib/help/sql_guide.hlp -share/postgresql/pgaccess/lib/help/sqlfunc.hlp -share/postgresql/pgaccess/lib/help/stringfunc.hlp -share/postgresql/pgaccess/lib/help/tables.hlp -share/postgresql/pgaccess/lib/help/unlisten.hlp -share/postgresql/pgaccess/lib/help/update.hlp -share/postgresql/pgaccess/lib/help/users.hlp -share/postgresql/pgaccess/lib/help/vacuum.hlp -share/postgresql/pgaccess/lib/help/view_table_structure.hlp -share/postgresql/pgaccess/lib/help/views.hlp -share/postgresql/pgaccess/lib/help/visual_designer.hlp -share/postgresql/pgaccess/lib/help/y2k.hlp -share/postgresql/pgaccess/lib/help.tcl -share/postgresql/pgaccess/lib/languages/czech -share/postgresql/pgaccess/lib/languages/chinese_big5 -share/postgresql/pgaccess/lib/languages/chinese_gb -share/postgresql/pgaccess/lib/languages/deutsch -share/postgresql/pgaccess/lib/languages/euskara -share/postgresql/pgaccess/lib/languages/francais -share/postgresql/pgaccess/lib/languages/italiano -share/postgresql/pgaccess/lib/languages/japanese -share/postgresql/pgaccess/lib/languages/magyar -share/postgresql/pgaccess/lib/languages/nederlands -share/postgresql/pgaccess/lib/languages/portugues -share/postgresql/pgaccess/lib/languages/romana -share/postgresql/pgaccess/lib/languages/russian.koi8r -share/postgresql/pgaccess/lib/languages/russian_win -share/postgresql/pgaccess/lib/languages/spanish -share/postgresql/pgaccess/lib/mainlib.tcl -share/postgresql/pgaccess/lib/preferences.tcl -share/postgresql/pgaccess/lib/queries.tcl -share/postgresql/pgaccess/lib/reports.tcl -share/postgresql/pgaccess/lib/schema.tcl -share/postgresql/pgaccess/lib/scripts.tcl -share/postgresql/pgaccess/lib/sequences.tcl -share/postgresql/pgaccess/lib/tables.tcl -share/postgresql/pgaccess/lib/users.tcl -share/postgresql/pgaccess/lib/views.tcl -share/postgresql/pgaccess/lib/visualqb.tcl -share/postgresql/pgaccess/main.tcl -@dirrm share/postgresql/pgaccess/images -@dirrm share/postgresql/pgaccess/lib/help -@dirrm share/postgresql/pgaccess/lib/languages -@dirrm share/postgresql/pgaccess/lib -@dirrm share/postgresql/pgaccess -@dirrm lib/tcl%%WITH_TCL%%/Pgtcl1.3 diff --git a/databases/postgresql-devel-server/scripts/configure.postgresql b/databases/postgresql-devel-server/scripts/configure.postgresql deleted file mode 100644 index 0b288ad43d25..000000000000 --- a/databases/postgresql-devel-server/scripts/configure.postgresql +++ /dev/null @@ -1,278 +0,0 @@ -#!/bin/sh -# -*- tab-width: 4; -*- -# ex:ts=4 -# -# $FreeBSD$ -# -if [ -f ${WRKDIRPREFIX}${CURDIR}/Makefile.inc ]; then - exit -fi - -if [ ! "${BATCH}" ]; then - dialog --title "Backup your data NOW" \ - --msgbox "`sed -e \"s#%%PREFIX%%#${PREFIX}#\" < ${FILESDIR}/pre-install-notes`" \ - -1 -1 -fi - -if [ "${BATCH}" ]; then - set \"MultiByte\" \"ODBC\" \"SSL\" \"TCL\" \"TCLTK\" -else - /usr/bin/dialog --title "configuration options" --clear \ - --checklist "\n\ -Please select desired options:" -1 -1 7 \ -JDBC "Java DataBase Connectivity" OFF \ -MultiByte "Multibyte for Multilingualism" ON \ -ODBC "Open Database Connectivity" ON \ -TCL "Tcl" ON \ -TCLTK "Tcl/Tk" ON \ -SSL "Secure Socket Layer" ON \ -KRB5 "Kerberos 5" OFF \ -2> /tmp/checklist.tmp.$$ - - retval=$? - - if [ -s /tmp/checklist.tmp.$$ ]; then - set `cat /tmp/checklist.tmp.$$` - fi - rm -f /tmp/checklist.tmp.$$ - - case $retval in - 0) if [ -z "$*" ]; then - echo "Nothing selected" - fi - ;; - 1) echo "Cancel pressed." - exit 1 - ;; - esac -fi - -${MKDIR} ${WRKDIRPREFIX}${CURDIR} -exec > ${WRKDIRPREFIX}${CURDIR}/Makefile.inc - -while [ "$1" ]; do - case $1 in - \"JDBC\") - # We use JAVA_HOME if set correctly. If the user has - # specified a JVM with JAVA_HOME or via the javavmwrapper, - # we validate that it really exists. It is unnecessarily - # complicated and error prone to try to figure out the - # correct java version just to be able to determine a - # BUILD_DEPEND in this case. Instead, assume that a set - # JAVA_HOME together with simple sanity check mean we have - # an installed JVM, and we don't bother setting - # BUILD_DEPENDS. - - echo "# JDBC" - # if JAVA_HOME is set and exists, use it - if [ "${JAVA_HOME}" -a -x "${JAVA_HOME}/bin/javac" ]; then - echo JAVA_HOME=${JAVA_HOME} - else - # No JAVA_HOME, check javavmwrapper's config file - if [ -r "${LOCALBASE}/etc/javavms" ]; then - VMS=`/usr/bin/sed 's|#.*||' < "${LOCALBASE}/etc/javavms" | uniq` - for JAVAVM in ${VMS}; do - if [ -x "${JAVAVM}" ]; then - JAVA_HOME=`echo ${JAVAVM} | /usr/bin/sed 's|/bin/java$||` - break - fi - done - fi - if [ "${JAVA_HOME}" -a -x "${JAVA_HOME}/bin/javac" ]; then - # yep, wrapper was good - echo JAVA_HOME=${JAVA_HOME} - else - # nothing, use our boring 1.1.8, the only native non-beta jdk :( - echo BUILD_DEPENDS+= \${LOCALBASE}/jdk1.1.8/bin/javac:\${PORTSDIR}/java/jdk - echo JAVA_HOME=\${LOCALBASE}/jdk1.1.8 - fi - fi - cat <<-EOF - BUILD_DEPENDS+= \${LOCALBASE}/bin/ant:\${PORTSDIR}/devel/jakarta-ant - CONFIGURE_ENV+= ANT=\${LOCALBASE}/bin/ant - WITH_JDBC=YES - MAKE_ENV+= JAVA_HOME=\${JAVA_HOME} - SCRIPTS_ENV+= JAVA_HOME=\${JAVA_HOME} - CONFIGURE_ARGS+= --with-java - - EOF - ;; - \"MultiByte\") - MULTIBYTE=1 - ;; - \"ODBC\") - cat <<-EOF - # ODBC - WITH_ODBC=YES - CONFIGURE_ARGS+= --with-odbc - - EOF - ;; - \"TCL\") - TCL=1 - ;; - \"TCLTK\") - echo "#TCLTK" - echo WITH_TK=YES - echo - TCL=1 - ;; - \"SSL\") - cat <<-EOF - # SSL - USE_OPENSSL= yes - CFLAGS+= -DUSE_SSL - WITH_SSL= yes - CONFIGURE_ENV+= LDFLAGS="-L\${OPENSSLLIB} -lssl -lcrypto" - CONFIGURE_ARGS+= --with-openssl - - EOF - ;; - \"KRB5\") - KRB5=1 - ;; - \"nothing\"|true) - ;; - *) - echo "Invalid option(s): $*" > /dev/stderr - rm -f ${WRKDIRPREFIX}${CURDIR}/Makefile.inc - exit 1 - ;; - esac - shift -done - -exec > /dev/stderr - -# if multibyte, determine charset -echo "# Multibyte" >> ${WRKDIRPREFIX}${CURDIR}/Makefile.inc - -if [ ! "${MULTIBYTE}" ]; then - echo "WITHOUT_MULTIBYTE=YES" >> ${WRKDIRPREFIX}${CURDIR}/Makefile.inc -else - if [ "${BATCH}" ]; then - set "nothing" - else - /usr/bin/dialog --title "configuration options" --clear \ - --radiolist "\n\ -Please select desired options:" -1 -1 16 \ -nothing "Default Encoding" ON \ -SQL_ASCII "SQL_ASCII" OFF \ -LATIN1 "LATIN1" OFF \ -LATIN2 "LATIN2" OFF \ -LATIN3 "LATIN3" OFF \ -LATIN4 "LATIN4" OFF \ -LATIN5 "LATIN5" OFF \ -EUC_JP "EUC_JP" OFF \ -EUC_CN "EUC_CN" OFF \ -EUC_KR "EUC_KR" OFF \ -EUC_TW "EUC_TW" OFF \ -KOI8 "KOI8" OFF \ -UNICODE "UNICODE" OFF \ -MULE_INTERNAL "MULE_INTERNAL" OFF \ -WIN "WIN" OFF \ -ALT "ALT" OFF \ -2> /tmp/checklist.tmp.$$ - - retval=$? - - if [ -s /tmp/checklist.tmp.$$ ]; then - set `cat /tmp/checklist.tmp.$$` - fi - rm -f /tmp/checklist.tmp.$$ - if [ $retval = 1 ]; then - echo "Cancel pressed." - rm ${WRKDIRPREFIX}${CURDIR}/Makefile.inc - exit 1 - fi - fi - - if [ "$1" = "nothing" ]; then - echo "CONFIGURE_ARGS+= --enable-multibyte" \ - >> ${WRKDIRPREFIX}${CURDIR}/Makefile.inc - else - echo "CONFIGURE_ARGS+= --enable-multibyte=$1" \ - >> ${WRKDIRPREFIX}${CURDIR}/Makefile.inc - fi -fi -echo - -if [ "${TCL}" ]; then - echo "# TCL" >> ${WRKDIRPREFIX}${CURDIR}/Makefile.inc - if [ "${BATCH}" ]; then - echo WITH_TCL=8.3 >> ${WRKDIRPREFIX}${CURDIR}/Makefile.inc - else - dialog --title "TCL version" \ - --inputbox "Please enter TCL version. Default is 8.3." -1 -1 "8.3" \ - 2> /tmp/checklist.tmp.$$ - retval=$? - if [ -s /tmp/checklist.tmp.$$ ]; then - set `cat /tmp/checklist.tmp.$$` - fi - rm -f /tmp/checklist.tmp.$$ - case $retval in - 0) if [ -z "$*" ]; then - echo "Nothing selected" - fi - ;; - 1) echo "Cancel pressed." - rm -f ${WRKDIRPREFIX}${CURDIR}/Makefile.inc - exit 1 - ;; - esac - echo WITH_TCL=$1 >> ${WRKDIRPREFIX}${CURDIR}/Makefile.inc - fi - cat <<-EOF >> ${WRKDIRPREFIX}${CURDIR}/Makefile.inc - CONFIGURE_ARGS+= --with-tcl --with-tclconfig="\${TCLCONFIG}" - TCLV=\${WITH_TCL:S/.//} - TCL_INCDIR= \${LOCALBASE}/include/tcl\${WITH_TCL} - MAKE_ENV+= TCL_INCDIR=\${TCL_INCDIR} - LIB_DEPENDS+= tcl\${TCLV}:\${PORTSDIR}/lang/tcl\${TCLV} - TCLCONFIG= "\${LOCALBASE}/lib/tcl\${WITH_TCL}" - .if defined(WITH_TK) - CONFIGURE_ARGS+= --with-tkconfig="\${TKCONFIG}" - TK_INCDIR= \${LOCALBASE}/include/tk\${WITH_TCL} - CONFIGURE_ENV+= WISH=\${LOCALBASE}/bin/wish\${WITH_TCL} - LIB_DEPENDS+= tk\${TCLV}:\${PORTSDIR}/x11-toolkits/tk\${TCLV} - TKCONFIG= "\${LOCALBASE}/lib/tk\${WITH_TCL}" - TCLCONFIG+= \${TKCONFIG} - TCL_PLIST= pkg-plist.tcl - .else - TCL_PLIST= pkg-plist.notk - CONFIGURE_ARGS+= --without-tk - .endif - - EOF -fi - -if [ "${KRB5}" ]; then - if [ "${BATCH}" ]; then - # never gets here, but what the heck... - echo KRB5_HOME=\${LOCALBASE} >> ${WRKDIRPREFIX}${CURDIR}/Makefile.inc - else - dialog --inputbox "Please enter the KRB5_HOME path" -1 -1 "${KRB_HOME:-${LOCALBASE}}" \ - 2> /tmp/checklist.tmp.$$ - retval=$? - if [ -s /tmp/checklist.tmp.$$ ]; then - set `cat /tmp/checklist.tmp.$$` - fi - rm -f /tmp/checklist.tmp.$$ - case $retval in - 0) if [ -z "$*" ]; then - echo "No input" - fi - ;; - 1) echo "Cancel pressed." - rm -f ${WRKDIRPREFIX}${CURDIR}/Makefile.inc - exit 1 - ;; - esac - echo KRB5_HOME=\"$1\" >> ${WRKDIRPREFIX}${CURDIR}/Makefile.inc - fi - cat <<-EOF >> ${WRKDIRPREFIX}${CURDIR}/Makefile.inc - .if defined(KRB5_HOME) && exists(\${KRB5_HOME}) - CONFIGURE_KRB= --with-krb5=\${KRB5_HOME} - .endif - - EOF -fi diff --git a/databases/postgresql-devel/Makefile b/databases/postgresql-devel/Makefile deleted file mode 100644 index 4a30008d77bc..000000000000 --- a/databases/postgresql-devel/Makefile +++ /dev/null @@ -1,198 +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.1.3 -CATEGORIES= databases -MASTER_SITES= ftp://ftp.sunet.se/pub/unix/databases/relational/postgresql/%SUBDIR%/ \ - ftp://ftp.postgresql.org/pub/%SUBDIR%/ \ - ftp://ftp.de.postgresql.org/%SUBDIR%/ \ - ftp://ftp.digex.net/pub/packages/database/postgresql/%SUBDIR%/ \ - ftp://ftp.chg.ru/pub/databases/postgresql/%SUBDIR%/ \ - ${MASTER_SITE_RINGSERVER:S,%SUBDIR%,misc/db/postgresql/&,} -MASTER_SITE_SUBDIR= source/v${PORTVERSION} -DISTFILES= ${PORTNAME}-base-${PORTVERSION}${EXTRACT_SUFX} \ - ${PORTNAME}-opt-${PORTVERSION}${EXTRACT_SUFX} -.if !defined(NOPORTDOCS) -DISTFILES+= ${PORTNAME}-docs-${PORTVERSION}${EXTRACT_SUFX} -.endif - -MAINTAINER= girgen@partitur.se - -DIST_SUBDIR= postgresql - -INSTALLS_SHLIB= YES - -DOCDIR= ${WRKDIR}/${DISTNAME}/doc -PLIST= ${WRKDIR}/.PLIST.generated - -USE_GMAKE= YES -HAS_CONFIGURE= YES -CONFIGURE_ARGS= --enable-locale \ - --enable-syslog --with-CXX \ - --sysconfdir=${PREFIX}/etc/postgresql \ - --with-includes="${PREFIX}/include ${TCL_INCDIR} ${TK_INCDIR}" \ - --with-libraries=${PREFIX}/lib -.if defined(WITH_OLD_LAYOUT) -CONFIGURE_ARGS+=--docdir=${PREFIX}/share/doc --includedir=${PREFIX}/pgsql/include \ - --datadir=${PREFIX}/share \ - --with-template=`uname -s | ${TR} '[A-Z]' '[a-z]'` \ - --prefix=${PREFIX}/pgsql -PG_PREFIX= pgsql/ -PG_INCLUDE= pgsql/include -LDCONFIG_DIRS= %%PREFIX%%/pgsql/lib -MANPREFIX= ${PREFIX}/pgsql -.else -GNU_CONFIGURE= YES -CONFIGURE_ARGS+=--docdir=${PREFIX}/share/doc --includedir=${PREFIX}/include/pgsql -PG_PREFIX="" -PG_INCLUDE= include/pgsql -.endif - -PLIST_SUB= PG_PREFIX="${PG_PREFIX}" PG_INCLUDE="${PG_INCLUDE}" WITH_TCL="${WITH_TCL}" - -MAN1= createdb.1 createlang.1 createuser.1 dropdb.1 droplang.1 \ - dropuser.1 ecpg.1 initdb.1 initlocation.1 ipcclean.1 pg_config.1 \ - pg_ctl.1 pg_dump.1 pg_dumpall.1 pg_passwd.1 pg_restore.1 \ - pgaccess.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 checkpoint.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 set_constraints.l set_transaction.l show.l \ - truncate.l unlisten.l update.l vacuum.l - -SCRIPTS_ENV= WRKDIRPREFIX="${WRKDIRPREFIX}" \ - WRKDIR="${WRKDIR}" \ - FILESDIR="${FILESDIR}" \ - TOUCH="${TOUCH}" \ - MKDIR="${MKDIR}" \ - NO_OPENSSL="${NO_OPENSSL}" \ - DISTNAME="${DISTNAME}" - -# We must .include here because we need the Makefile.inc @ pre-install -# to determine the correct plist. -.if exists(${WRKDIRPREFIX}${.CURDIR}/Makefile.inc) -.include "${WRKDIRPREFIX}${.CURDIR}/Makefile.inc" -.else -# make utility targets like depends and describe happy -LIB_DEPENDS= tcl83:${PORTSDIR}/lang/tcl83 \ - tk83:${PORTSDIR}/x11-toolkits/tk83 -.endif - -pre-everything:: - @ ${SETENV} ${SCRIPTS_ENV} ${SH} ${SCRIPTDIR}/configure.postgresql - -pre-install: - @ ${SETENV} PKG_PREFIX=${PREFIX} ${SH} ${PKGDIR}/pkg-install ${PORTNAME} PRE-INSTALL -.if !defined(BATCH) -# remind folks twice for a while, so they really don't miss the layout shift - @ ${SED} "s|/usr/local|${PREFIX}|g" < ${PKGMESSAGE} | head -n 25 | more -e -.endif - @ ${CP} ${PKGDIR}/pkg-plist ${PLIST} -.if defined(WITHOUT_MULTIBYTE) - @${CP} ${PLIST} ${PLIST}.nomulti ;\ - ${GREP} -v bin/pg_encoding ${PLIST}.nomulti > ${PLIST} -.endif -.if defined(WITH_TCL) - @ ${CP} ${PLIST} ${PLIST}.notcl ;\ - ${CAT} ${PKGDIR}/${TCL_PLIST} ${PLIST}.notcl > ${PLIST} ;\ - ${RM} ${PLIST}.notcl -.endif -.if defined(WITH_ODBC) - @ ${CP} ${PLIST} ${PLIST}.noodbc ;\ - ${CAT} ${PKGDIR}/pkg-plist.odbc ${PLIST}.noodbc > ${PLIST} ;\ - ${RM} ${PLIST}.noodbc -.endif -.if defined(WITH_JDBC) - @ ${CP} ${PLIST} ${PLIST}.nojdbc ;\ - ${CAT} ${PKGDIR}/pkg-plist.jdbc ${PLIST}.nojdbc > ${PLIST} ;\ - ${RM} ${PLIST}.nojdbc -.endif -.if !defined(NOPORTDOCS) - @ ${CAT} ${PKGDIR}/pkg-plist.doc >> ${PLIST} -.endif - -post-install: -# install shell defaults for pgsql user -.for i in profile cshrc - @ ${SED} "s|%%PREFIX%%|${PREFIX}|g; s|%%PG_PREFIX%%|${PG_PREFIX}|g" \ - < ${FILESDIR}/dot.$i.in \ - > ${PREFIX}/share/postgresql/dot.$i.dist; \ - ${CP} ${PREFIX}/share/postgresql/dot.$i.dist ~pgsql/; \ - if [ ! -f ~pgsql/.$i ]; then \ - ${CP} ${PREFIX}/share/postgresql/dot.$i.dist ~pgsql/.$i; \ - fi -.endfor - @ ${SED} -e "s|%%PREFIX%%|${PREFIX}|g; s|%%PG_PREFIX%%|${PG_PREFIX}|g" \ - < ${FILESDIR}/pgsql.sh.tmpl \ - > ${PREFIX}/etc/rc.d/010.pgsql.sh - @ ${CHMOD} 554 ${PREFIX}/etc/rc.d/010.pgsql.sh - @ ${CHOWN} root:pgsql ${PREFIX}/etc/rc.d/010.pgsql.sh -.if defined(WITH_TCL) -# Preparing a loadable TCL-package (pkgIndex.tcl) - @${MKDIR} ${PREFIX}/lib/tcl${WITH_TCL}/Pgtcl1.3 - @${SED} "s|%%PREFIX%%|${PREFIX}|g" < ${FILESDIR}/pkgIndex.tcl.in \ - > ${PREFIX}/lib/tcl${WITH_TCL}/Pgtcl1.3/pkgIndex.tcl -.endif -.if defined(WITH_JDBC) - @ ${MKDIR} -m 0555 ${PREFIX}/share/java/classes - @ ${INSTALL_DATA} ${WRKSRC}/src/interfaces/jdbc/jars/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} "---------------------------------------------------------" -.if !defined(NOPORTDOCS) - @ ${MKDIR} -m 0555 ${PREFIX}/share/examples/postgresql ;\ - cd ${WRKSRC}/src/interfaces/jdbc/example ;\ - pax -rw . ${PREFIX}/share/examples/postgresql -.for i in README Implementation - @ ${INSTALL_DATA} ${WRKSRC}/src/interfaces/jdbc/$i \ - ${PREFIX}/share/examples/postgresql -.endfor - @ ${ECHO_MSG} "---------------------------------------------------------------" - @ ${ECHO_MSG} "Putting java examples into ${PREFIX}/share/examples/postgresql" - @ ${ECHO_MSG} "---------------------------------------------------------------" -.endif -.endif -.if !defined(DEBUG_FLAGS) -.for file in ecpg pg_dump pg_id pg_passwd pg_restore postgres psql - @ strip ${PREFIX}/${PG_PREFIX}bin/${file} -.endfor -.endif -# information overload mode activated, sorry about this... ;-) - @ ${CAT} ${FILESDIR}/post-install-notes ${PKGMESSAGE} |\ - ${SED} "s|/usr/local|${PREFIX}|g" |\ - tee ${PREFIX}/share/postgresql/post-install-notes ;\ - ${INSTALL_DATA} ${PREFIX}/share/postgresql/post-install-notes ~pgsql/. ;\ - ${CHOWN} -R pgsql:pgsql ~pgsql/. -.if defined(WITH_OLD_LAYOUT) - @ ${CHOWN} root:pgsql ${PREFIX}/${PG_PREFIX}lib -.endif - -post-clean: - @ ${RM} -f ${WRKDIRPREFIX}${.CURDIR}/Makefile.inc - -post-extract: ${POSTEXTRACT} - -.include <bsd.port.mk> diff --git a/databases/postgresql-devel/distinfo b/databases/postgresql-devel/distinfo deleted file mode 100644 index 23e07754313f..000000000000 --- a/databases/postgresql-devel/distinfo +++ /dev/null @@ -1,3 +0,0 @@ -MD5 (postgresql/postgresql-base-7.1.3.tar.gz) = f932dea12806972402aaaf17a2a97034 -MD5 (postgresql/postgresql-opt-7.1.3.tar.gz) = e84e9c51b31567d4571c7612e0c0fbd6 -MD5 (postgresql/postgresql-docs-7.1.3.tar.gz) = 7061ab7f7ec3c4d18f8e6cb2858896d0 diff --git a/databases/postgresql-devel/files/dot.cshrc.in b/databases/postgresql-devel/files/dot.cshrc.in deleted file mode 100644 index a326041bff7b..000000000000 --- a/databases/postgresql-devel/files/dot.cshrc.in +++ /dev/null @@ -1,13 +0,0 @@ -set path = ( %%PREFIX%%/%%PG_PREFIX%%bin $path ) - -setenv PGLIB %%PREFIX%%/%%PG_PREFIX%%lib - -# note: PGDATA can be overridden by the -D startup option -setenv PGDATA $HOME/data - -#You might want to set some locale stuff here -#setenv PGDATESTYLE ISO -#setenv LC_ALL sv_SE.ISO_8859-1 - -# if you want to make regression tests use this TZ -#setenv TZ PST8PDT diff --git a/databases/postgresql-devel/files/dot.profile.in b/databases/postgresql-devel/files/dot.profile.in deleted file mode 100644 index 4aca6aadd19a..000000000000 --- a/databases/postgresql-devel/files/dot.profile.in +++ /dev/null @@ -1,18 +0,0 @@ -# both new and old layout's paths, but new path first... -PATH=%%PREFIX%%/%%PG_PREFIX%%bin:${PATH} - -PGLIB=%%PREFIX%%/%%PG_PREFIX%%lib - -# note: PGDATA can be overridden by the -D startup option -PGDATA=${HOME}/data - -export PATH PGLIB PGDATA - -#You might want to set some locale stuff here -#PGDATESTYLE=ISO -#LC_ALL=sv_SE.ISO_8859-1 -#export PGDATESTYLE LC_ALL - -# if you want to make regression tests use this TZ -#TZ=PST8PDT -#export TZ diff --git a/databases/postgresql-devel/files/patch-aj b/databases/postgresql-devel/files/patch-aj deleted file mode 100644 index 94c0d6d79991..000000000000 --- a/databases/postgresql-devel/files/patch-aj +++ /dev/null @@ -1,118 +0,0 @@ ---- src/bin/pg_passwd/pg_passwd.c.orig Sat Mar 24 01:54:55 2001 -+++ src/bin/pg_passwd/pg_passwd.c Wed Apr 18 04:54:14 2001 -@@ -7,6 +7,12 @@ - #include <errno.h> - #include <time.h> - #include <ctype.h> -+ -+#if defined(__FreeBSD__) -+#include <pwd.h> /* defines _PASSWORD_LEN, max # of characters in a password */ -+#include <sys/time.h> /* gettimeofday for password salt */ -+#endif -+ - #define issaltchar(c) (isalnum((unsigned char) (c)) || (c) == '.' || (c) == '/') - - #ifdef HAVE_TERMIOS_H -@@ -23,18 +29,31 @@ - * We assume that the output of crypt(3) is always 13 characters, - * and that at most 8 characters can usefully be sent to it. - * -+ * For FreeBSD, take these values from /usr/include/pwd.h - * Postgres usernames are assumed to be less than NAMEDATALEN chars long. - */ -+#if defined(__FreeBSD__) -+#define CLEAR_PASSWD_LEN _PASSWORD_LEN -+#define CRYPTED_PASSWD_LEN _PASSWORD_LEN /* max length, not containing NULL */ -+#define SALT_LEN 10 -+#else - #define CLEAR_PASSWD_LEN 8 /* not including null */ - #define CRYPTED_PASSWD_LEN 13 /* not including null */ -+#define SALT_LEN 3 -+#endif -+ -+static unsigned char itoa64[] = /* 0 ... 63 => ascii - 64 */ -+ "./0123456789ABCDEFGHIJKLMNOPQRSTUVWXYZabcdefghijklmnopqrstuvwxyz"; -+ - - const char *progname; - - static void usage(void); -+static void to64(char *s, long v, int n); - static void read_pwd_file(char *filename); - static void write_pwd_file(char *filename, char *bkname); - static void encrypt_pwd(char key[CLEAR_PASSWD_LEN + 1], -- char salt[3], -+ char salt[SALT_LEN], - char passwd[CRYPTED_PASSWD_LEN + 1]); - static void prompt_for_username(char *username); - static void prompt_for_password(char *prompt, char *password); -@@ -47,6 +66,15 @@ - printf("Report bugs to <pgsql-bugs@postgresql.org>.\n"); - } - -+static void -+to64(char *s, long v, int n) -+{ -+ while (--n >= 0) { -+ *s++ = itoa64[v&0x3f]; -+ v >>= 6; -+ } -+} -+ - typedef struct - { - char *uname; -@@ -154,7 +182,7 @@ - if (q != NULL) - *(q++) = '\0'; - -- if (strlen(p) != CRYPTED_PASSWD_LEN && strcmp(p, "+") != 0) -+ if (strlen(p) > CRYPTED_PASSWD_LEN && strcmp(p, "+") != 0) - { - fprintf(stderr, "%s:%d: warning: invalid password length\n", - filename, npwds + 1); -@@ -221,15 +249,25 @@ - - static void - encrypt_pwd(char key[CLEAR_PASSWD_LEN + 1], -- char salt[3], -+ char salt[SALT_LEN], - char passwd[CRYPTED_PASSWD_LEN + 1]) - { -+#if !defined(__FreeBSD__) - int n; -- -+#endif - /* select a salt, if not already given */ - if (salt[0] == '\0') - { -+#if defined(__FreeBSD__) -+ struct timeval tv; -+ srandomdev(); -+ gettimeofday(&tv,0); -+ to64(&salt[0], random(), 3); -+ to64(&salt[3], tv.tv_usec, 3); -+ to64(&salt[6], tv.tv_sec, 2); -+ salt[8] = '\0'; - srand(time(NULL)); -+#else - do - { - n = rand() % 256; -@@ -241,6 +279,7 @@ - } while (!issaltchar(n)); - salt[1] = n; - salt[2] = '\0'; -+#endif - } - - /* get encrypted password */ -@@ -335,7 +374,7 @@ - char *filename; - char bkname[MAXPGPATH]; - char username[NAMEDATALEN]; -- char salt[3]; -+ char salt[SALT_LEN]; - char key[CLEAR_PASSWD_LEN + 1], - key2[CLEAR_PASSWD_LEN + 1]; - char e_passwd[CRYPTED_PASSWD_LEN + 1]; diff --git a/databases/postgresql-devel/files/patch-contrib-retep-build b/databases/postgresql-devel/files/patch-contrib-retep-build deleted file mode 100644 index 80f40f1cc86d..000000000000 --- a/databases/postgresql-devel/files/patch-contrib-retep-build +++ /dev/null @@ -1,37 +0,0 @@ -=================================================================== -RCS file: /home/projects/pgsql/cvsroot/pgsql/contrib/retep/build.xml,v -retrieving revision 1.4 -retrieving revision 1.5 -diff -u -r1.4 -r1.5 ---- contrib/retep/build.xml 2001/03/11 11:06:59 1.4 -+++ contrib/retep/build.xml 2001/05/16 16:20:51 1.5 -@@ -2,7 +2,7 @@ - - build file to build the donated retep tools packages - -- $Id: build.xml,v 1.4 2001/03/11 11:06:59 petere Exp $ -+ $Id: build.xml,v 1.5 2001/05/16 16:20:51 momjian Exp $ - - --> - -@@ -22,6 +22,11 @@ - <available property="xml" classname="org.xml.sax.Parser" /> - </target> - -+ <target name="warning" depends="checks" unless="jdk1.2+"> -+ <echo message="WARNING -- contributed retep tools need jdk1.2 or later -- compilation NOT done." /> -+ </target> -+ -+ - <!-- Prepares the build by creating a directory to place the class files --> - <target name="prepare"> - <mkdir dir="${dest}" /> -@@ -35,7 +40,7 @@ - </target> - - <!-- Builds the XML Tools --> -- <target name="compile" depends="checks,prepare"> -+ <target name="compile" depends="checks,prepare,warning" if="jdk1.2+"> - <javac srcdir="${src}" destdir="${dest}"> - <include name="${package}/**" /> - </javac> diff --git a/databases/postgresql-devel/files/patch-doc-makefile b/databases/postgresql-devel/files/patch-doc-makefile deleted file mode 100644 index fa27bed2af3f..000000000000 --- a/databases/postgresql-devel/files/patch-doc-makefile +++ /dev/null @@ -1,19 +0,0 @@ ---- doc/Makefile~ Sun Jan 7 03:03:22 2001 -+++ doc/Makefile Wed Apr 18 08:12:30 2001 -@@ -43,10 +43,13 @@ - gzip -d -c man.tar.gz | ( cd $(DESTDIR)$(mandir) && $(TAR) xf - ) - endif - -- - installdirs: -- $(mkinstalldirs) $(DESTDIR)$(mandir) $(DESTDIR)$(docdir)/html -- -+ifdef found_html -+ $(mkinstalldirs) $(DESTDIR)$(docdir)/html -+endif -+ifdef found_man -+ $(mkinstalldirs) $(DESTDIR)$(mandir) -+endif - - uninstall: - ifdef found_html diff --git a/databases/postgresql-devel/files/patch-jdbc-Connection b/databases/postgresql-devel/files/patch-jdbc-Connection deleted file mode 100644 index 26fbc260d639..000000000000 --- a/databases/postgresql-devel/files/patch-jdbc-Connection +++ /dev/null @@ -1,51 +0,0 @@ -=================================================================== -RCS file: /home/projects/pgsql/cvsroot/pgsql/src/interfaces/jdbc/org/postgresql/Connection.java,v -retrieving revision 1.14 -retrieving revision 1.16 -diff -u -r1.14 -r1.16 ---- src/interfaces/jdbc/org/postgresql/Connection.java 2001/01/31 08:26:01 1.14 -+++ src/interfaces/jdbc/org/postgresql/Connection.java 2001/06/01 20:57:58 1.16 -@@ -10,7 +10,7 @@ - import org.postgresql.util.*; - - /** -- * $Id: Connection.java,v 1.14 2001/01/31 08:26:01 peter Exp $ -+ * $Id: Connection.java,v 1.16 2001/06/01 20:57:58 momjian Exp $ - * - * This abstract class is used by org.postgresql.Driver to open either the JDBC1 or - * JDBC2 versions of the Connection class. -@@ -267,7 +267,8 @@ - // - firstWarning = null; - -- java.sql.ResultSet initrset = ExecSQL("set datestyle to 'ISO'; select getdatabaseencoding()"); -+ java.sql.ResultSet initrset = ExecSQL("set datestyle to 'ISO'; " + -+ "select case when pg_encoding_to_char(1) = 'SQL_ASCII' then 'UNKNOWN' else getdatabaseencoding() end"); - - String dbEncoding = null; - //retrieve DB properties -@@ -307,9 +308,23 @@ - } else if (dbEncoding.equals("EUC_TW")) { - dbEncoding = "EUC_TW"; - } else if (dbEncoding.equals("KOI8")) { -- dbEncoding = "KOI8_R"; -+ // try first if KOI8_U is present, it's a superset of KOI8_R -+ try { -+ dbEncoding = "KOI8_U"; -+ "test".getBytes(dbEncoding); -+ } -+ catch(UnsupportedEncodingException uee) { -+ // well, KOI8_U is still not in standard JDK, falling back to KOI8_R :( -+ dbEncoding = "KOI8_R"; -+ } -+ - } else if (dbEncoding.equals("WIN")) { - dbEncoding = "Cp1252"; -+ } else if (dbEncoding.equals("UNKNOWN")) { -+ //This isn't a multibyte database so we don't have an encoding to use -+ //We leave dbEncoding null which will cause the default encoding for the -+ //JVM to be used -+ dbEncoding = null; - } else { - dbEncoding = null; - } diff --git a/databases/postgresql-devel/files/patch-jdbc-build-xml b/databases/postgresql-devel/files/patch-jdbc-build-xml deleted file mode 100644 index b1c703a9c978..000000000000 --- a/databases/postgresql-devel/files/patch-jdbc-build-xml +++ /dev/null @@ -1,10 +0,0 @@ ---- src/interfaces/jdbc/build.xml~ Fri Mar 16 22:50:43 2001 -+++ src/interfaces/jdbc/build.xml Wed Apr 18 08:57:57 2001 -@@ -120,6 +120,7 @@ - <javac srcdir="${src}" destdir="${dest}"> - <include name="example/**" /> - <exclude name="example/corba/**"/> -+ <exclude name="example/blobtest.java" unless="jdk1.2+"/> - </javac> - </target> - diff --git a/databases/postgresql-devel/files/patch-jdbc-getdate b/databases/postgresql-devel/files/patch-jdbc-getdate deleted file mode 100644 index 744407ae14b5..000000000000 --- a/databases/postgresql-devel/files/patch-jdbc-getdate +++ /dev/null @@ -1,34 +0,0 @@ ---- src/interfaces/jdbc/org/postgresql/jdbc2/ResultSet.java~ Fri Feb 23 19:12:23 2001 -+++ src/interfaces/jdbc/org/postgresql/jdbc2/ResultSet.java Wed May 9 04:31:11 2001 -@@ -423,8 +423,13 @@ - String s = getString(columnIndex); - if(s==null) - return null; -- -- return java.sql.Date.valueOf(s); -+ // length == 10: SQL Date -+ // length > 10: SQL Timestamp, assumes PGDATESTYLE=ISO -+ try { -+ return java.sql.Date.valueOf((s.length() == 10) ? s : s.substring(0,10)); -+ } catch (NumberFormatException e) { -+ throw new PSQLException("postgresql.res.baddate", s); -+ } - } - - /** -@@ -441,8 +446,13 @@ - - if(s==null) - return null; // SQL NULL -- -- return java.sql.Time.valueOf(s); -+ // length == 8: SQL Time -+ // length > 8: SQL Timestamp -+ try { -+ return java.sql.Time.valueOf((s.length() == 8) ? s : s.substring(11,19)); -+ } catch (NumberFormatException e) { -+ throw new PSQLException("postgresql.res.badtime",s); -+ } - } - - /** diff --git a/databases/postgresql-devel/files/pgsql.sh.tmpl b/databases/postgresql-devel/files/pgsql.sh.tmpl deleted file mode 100644 index cd78771219ed..000000000000 --- a/databases/postgresql-devel/files/pgsql.sh.tmpl +++ /dev/null @@ -1,36 +0,0 @@ -#!/bin/sh - -# $FreeBSD$ -# -# For postmaster startup options, edit $PGDATA/postgresql.conf - -PGBIN=%%PREFIX%%/%%PG_PREFIX%%bin - -case $1 in -start) - [ -d %%PREFIX%%/%%PG_PREFIX%%lib ] && /sbin/ldconfig -m %%PREFIX%%/%%PG_PREFIX%%lib - [ -x ${PGBIN}/pg_ctl ] && { - su -l pgsql -c \ - '[ -d ${PGDATA} ] && exec %%PREFIX%%/%%PG_PREFIX%%bin/pg_ctl start -s -w -l ~pgsql/errlog' - echo -n ' pgsql' - } - ;; - -stop) - [ -x ${PGBIN}/pg_ctl ] && { - su -l pgsql -c 'exec %%PREFIX%%/%%PG_PREFIX%%bin/pg_ctl stop -s -m fast' - echo -n ' pgsql' - } - ;; - -status) - [ -x ${PGBIN}/pg_ctl ] && { - exec su -l pgsql -c 'exec %%PREFIX%%/%%PG_PREFIX%%bin/pg_ctl status' - } - ;; - -*) - echo "usage: `basename $0` {start|stop|status}" >&2 - exit 64 - ;; -esac diff --git a/databases/postgresql-devel/files/pkgIndex.tcl.in b/databases/postgresql-devel/files/pkgIndex.tcl.in deleted file mode 100644 index bd8329b15c69..000000000000 --- a/databases/postgresql-devel/files/pkgIndex.tcl.in +++ /dev/null @@ -1,4 +0,0 @@ -# Package-index file for Pgtcl-package. Enables you to load PostgreSQL -# interface functions right into you TCL-interpreter as simply as -# package require Pgtcl -package ifneeded Pgtcl 1.3 "load %%PREFIX%%/lib/libpgtcl.so" diff --git a/databases/postgresql-devel/files/post-install-notes b/databases/postgresql-devel/files/post-install-notes deleted file mode 100644 index 9347fc51c247..000000000000 --- a/databases/postgresql-devel/files/post-install-notes +++ /dev/null @@ -1,25 +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/TK support, you can use the pgaccess -utility to get a TCL/TK based database frontend for database -operations. You do NOT need to install the pgaccess port separately. - -If you built in the TCL support, you can load the Pg package into your -TCL scripts as easily as ``package require Pgtcl''. - -If you built with Java support, add -/usr/local/share/java/classes/postgresql.jar to your classpath. - -If you have many tables and many clients running, consider raising -kern.maxfiles using sysctl(8). - -Use createlang(1) to install languages into your database. -Supported languages are 'plpgsql', 'pltcl', 'pltclu', and 'plperl'. diff --git a/databases/postgresql-devel/files/pre-install-notes b/databases/postgresql-devel/files/pre-install-notes deleted file mode 100644 index 697ce3cedb79..000000000000 --- a/databases/postgresql-devel/files/pre-install-notes +++ /dev/null @@ -1,21 +0,0 @@ - * IMPORTANT UPGRADE NOTICE * IMPORTANT UPGRADE NOTICE * - -The PostgreSQL port now obeys hier(7) by default, which means that it -installs into: - -%%PREFIX%%/bin -%%PREFIX%%/lib -%%PREFIX%%/include/pgsql - -You *must* move away your old installation to avoid problems with -ldconfig(8) and user's PATH:s. If you rather install using the -old-fashion layout, cancel at next screen and run make as: - -$ make -DWITH_OLD_LAYOUT - -As always, you *must* dump existing databases before stopping and -removing your old postgresql, as part of the update. This is *NOT* -done by this port! - -If you want JAVA support, I will try to determine your JAVA_HOME using -javavmwrapper. If you want a different JVM, please set JAVA_HOME. 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 463e4e49815f..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 cfc983fc2f66..000000000000 --- a/databases/postgresql-devel/pkg-install +++ /dev/null @@ -1,46 +0,0 @@ -#! /bin/sh - -# $FreeBSD$ - -PATH=/bin:/usr/sbin - -DB_DIR=${PKG_PREFIX}/pgsql - -case $2 in -PRE-INSTALL) - USER=pgsql - GROUP=${USER} - UID=70 - 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} -c "PostgreSQL Daemon" - then - echo "Added user \"${USER}\"." - else - echo "Adding user \"${USER}\" failed..." - exit 1 - fi - fi - - if ! [ -x ~pgsql ] ; then - mkdir -p ${DB_DIR} - chown pgsql:pgsql ${DB_DIR} - fi - ;; - -esac diff --git a/databases/postgresql-devel/pkg-message b/databases/postgresql-devel/pkg-message deleted file mode 100644 index 1a3f9f1e4147..000000000000 --- a/databases/postgresql-devel/pkg-message +++ /dev/null @@ -1,38 +0,0 @@ - -====================================================================== - - * IMPORTANT UPGRADE NOTICE * IMPORTANT UPGRADE NOTICE * - -The PostgreSQL port now obeys hier(7) by default, which means that it -installs into: - -/usr/local/bin -/usr/local/lib -/usr/local/include/pgsql - -You *must* move away your old installation from users' and -ldconfig(8)'s PATHs. If you rather install using the old-fashion -layout, cancel now and build the port with "make -DWITH_OLD_LAYOUT". - -The pgsql user's home dir is /usr/local/pgsql by default, but can be -changed with for example chpass(1). Datadir defaults to ~pgsql/data, -but can be changed by modifying the ~pgsql/.profile script. - -As always, backup your data before upgrading. If the upgrade leads to -a higher minor revision (i.e. 7.0.x -> 7.1.x), a dump and restore of -all databases is required. This is *NOT* done by the port! - -====================================================================== - -To initialize the database, you should run initdb as the "pgsql" user. - -Example: - - su -l pgsql -c initdb - -You can then start PostgreSQL by running: - - /usr/local/etc/rc.d/010.pgsql.sh start - -For postmaster settings, see ~pgsql/data/postgresql.conf -====================================================================== diff --git a/databases/postgresql-devel/pkg-plist b/databases/postgresql-devel/pkg-plist deleted file mode 100644 index a7493ddb7898..000000000000 --- a/databases/postgresql-devel/pkg-plist +++ /dev/null @@ -1,91 +0,0 @@ -%%PG_PREFIX%%bin/postmaster -%%PG_PREFIX%%bin/postgres -%%PG_PREFIX%%bin/ecpg -%%PG_PREFIX%%bin/initdb -%%PG_PREFIX%%bin/initlocation -%%PG_PREFIX%%bin/ipcclean -%%PG_PREFIX%%bin/pg_ctl -%%PG_PREFIX%%bin/pg_dump -%%PG_PREFIX%%bin/pg_restore -%%PG_PREFIX%%bin/pg_encoding -%%PG_PREFIX%%bin/pg_dumpall -%%PG_PREFIX%%bin/pg_id -%%PG_PREFIX%%bin/pg_passwd -%%PG_PREFIX%%bin/psql -%%PG_PREFIX%%bin/createdb -%%PG_PREFIX%%bin/dropdb -%%PG_PREFIX%%bin/createuser -%%PG_PREFIX%%bin/dropuser -%%PG_PREFIX%%bin/droplang -%%PG_PREFIX%%bin/vacuumdb -%%PG_PREFIX%%bin/createlang -%%PG_PREFIX%%bin/pg_config -etc/rc.d/010.pgsql.sh -%%PG_INCLUDE%%/lib/dllist.h -@dirrm %%PG_INCLUDE%%/lib -%%PG_INCLUDE%%/libpq/pqcomm.h -%%PG_INCLUDE%%/libpq/libpq-fs.h -@dirrm %%PG_INCLUDE%%/libpq -%%PG_INCLUDE%%/libpq++/pgconnection.h -%%PG_INCLUDE%%/libpq++/pgdatabase.h -%%PG_INCLUDE%%/libpq++/pgtransdb.h -%%PG_INCLUDE%%/libpq++/pgcursordb.h -%%PG_INCLUDE%%/libpq++/pglobject.h -@dirrm %%PG_INCLUDE%%/libpq++ -%%PG_INCLUDE%%/c.h -%%PG_INCLUDE%%/postgres_ext.h -%%PG_INCLUDE%%/postgres_fe.h -%%PG_INCLUDE%%/os.h -%%PG_INCLUDE%%/config.h -%%PG_INCLUDE%%/libpq-fe.h -%%PG_INCLUDE%%/libpq-int.h -%%PG_INCLUDE%%/pqexpbuffer.h -%%PG_INCLUDE%%/ecpgerrno.h -%%PG_INCLUDE%%/ecpglib.h -%%PG_INCLUDE%%/ecpgtype.h -%%PG_INCLUDE%%/sqlca.h -%%PG_INCLUDE%%/sql3types.h -%%PG_INCLUDE%%/libpgeasy.h -%%PG_INCLUDE%%/libpq++.h -@dirrm %%PG_INCLUDE%% -%%PG_PREFIX%%lib/libpq.so -%%PG_PREFIX%%lib/libpq.a -%%PG_PREFIX%%lib/libpq.so.2 -%%PG_PREFIX%%lib/libecpg.so -%%PG_PREFIX%%lib/libecpg.a -%%PG_PREFIX%%lib/libecpg.so.3 -%%PG_PREFIX%%lib/libpgeasy.so -%%PG_PREFIX%%lib/libpgeasy.a -%%PG_PREFIX%%lib/libpgeasy.so.2 -%%PG_PREFIX%%lib/libpq++.so -%%PG_PREFIX%%lib/libpq++.a -%%PG_PREFIX%%lib/libpq++.so.3 -%%PG_PREFIX%%lib/plpgsql.so -share/postgresql/global.bki -share/postgresql/global.description -share/postgresql/post-install-notes -share/postgresql/template1.bki -share/postgresql/template1.description -share/postgresql/pg_hba.conf.sample -share/postgresql/pg_ident.conf.sample -share/postgresql/postgresql.conf.sample -@unexec if cmp -s ~pgsql/.profile %D/share/postgresql/dot.profile.dist; then rm -f ~pgsql/.profile; fi -@unexec if cmp -s ~pgsql/.cshrc %D/share/postgresql/dot.cshrc.dist; then rm -f ~pgsql/.cshrc; fi -@unexec [ -f ~pgsql/dot.profile.dist ] && rm ~pgsql/dot.profile.dist -@unexec [ -f ~pgsql/dot.cshrc.dist ] && rm ~pgsql/dot.cshrc.dist -@exec [ -f %D/share/postgresql/post-install-notes ] && cp %D/share/postgresql/post-install-notes ~pgsql && chown pgsql:pgsql ~pgsql/post-install-notes -@unexec [ -f ~pgsql/post-install-notes ] && rm ~pgsql/post-install-notes -share/postgresql/dot.profile.dist -share/postgresql/dot.cshrc.dist -@dirrm share/postgresql -@exec [ -f %D/share/postgresql/dot.profile.dist ] && cp %D/share/postgresql/dot.profile.dist ~pgsql/. -@exec [ -f %D/share/postgresql/dot.cshrc.dist ] && cp %D/share/postgresql/dot.cshrc.dist ~pgsql/. -@exec [ -f ~pgsql/.profile ] || (cp %D/share/postgresql/dot.profile.dist ~pgsql/.profile && chown pgsql:pgsql ~pgsql/.profile) -@exec [ -f ~pgsql/.cshrc ] || (cp %D/share/postgresql/dot.cshrc.dist ~pgsql/.cshrc && chown pgsql:pgsql ~pgsql/.cshrc) -@unexec [ X%%PG_PREFIX%% != X ] && rmdir %D/%%PG_PREFIX%%bin 2> /dev/null || true -@unexec [ X%%PG_PREFIX%% != X ] && rmdir %D/%%PG_PREFIX%%lib 2> /dev/null || true -@unexec [ X%%PG_PREFIX%% != X ] && rmdir %D/%%PG_PREFIX%%man/man1 2> /dev/null || true -@unexec [ X%%PG_PREFIX%% != X ] && rmdir %D/%%PG_PREFIX%%man/manl 2> /dev/null || true -@unexec [ X%%PG_PREFIX%% != X ] && rmdir %D/%%PG_PREFIX%%man 2> /dev/null || true -@unexec rmdir ~pgsql 2> /dev/null || true -@unexec echo "Warning: If you will *NOT* use this package anymore, please remove %D/pgsql and the pgsql user manually." diff --git a/databases/postgresql-devel/pkg-plist.doc b/databases/postgresql-devel/pkg-plist.doc deleted file mode 100644 index c4d50ecb24f0..000000000000 --- a/databases/postgresql-devel/pkg-plist.doc +++ /dev/null @@ -1,494 +0,0 @@ -share/doc/postgresql/html/admin.html -share/doc/postgresql/html/advanced.html -share/doc/postgresql/html/altern-locations.html -share/doc/postgresql/html/app-createdb.html -share/doc/postgresql/html/app-createlang.html -share/doc/postgresql/html/app-createuser.html -share/doc/postgresql/html/app-dropdb.html -share/doc/postgresql/html/app-droplang.html -share/doc/postgresql/html/app-dropuser.html -share/doc/postgresql/html/app-ecpg.html -share/doc/postgresql/html/app-initdb.html -share/doc/postgresql/html/app-initlocation.html -share/doc/postgresql/html/app-ipcclean.html -share/doc/postgresql/html/app-pg-ctl.html -share/doc/postgresql/html/app-pg-dumpall.html -share/doc/postgresql/html/app-pg-passwd.html -share/doc/postgresql/html/app-pgaccess.html -share/doc/postgresql/html/app-pgadmin.html -share/doc/postgresql/html/app-pgconfig.html -share/doc/postgresql/html/app-pgdump.html -share/doc/postgresql/html/app-pgrestore.html -share/doc/postgresql/html/app-pgtclsh.html -share/doc/postgresql/html/app-pgtksh.html -share/doc/postgresql/html/app-postgres.html -share/doc/postgresql/html/app-postmaster.html -share/doc/postgresql/html/app-psql.html -share/doc/postgresql/html/app-vacuumdb.html -share/doc/postgresql/html/applevel-consistency.html -share/doc/postgresql/html/arch-pg.html -share/doc/postgresql/html/arch.html -share/doc/postgresql/html/arrays.html -share/doc/postgresql/html/auth-methods.html -share/doc/postgresql/html/backup-file.html -share/doc/postgresql/html/backup.html -share/doc/postgresql/html/biblio.html -share/doc/postgresql/html/bki-commands.html -share/doc/postgresql/html/bki-example.html -share/doc/postgresql/html/bki.html -share/doc/postgresql/html/bug-reporting.html -share/doc/postgresql/html/catalog-pg-aggregate.html -share/doc/postgresql/html/catalog-pg-attrdef.html -share/doc/postgresql/html/catalog-pg-attribute.html -share/doc/postgresql/html/catalog-pg-class.html -share/doc/postgresql/html/catalog-pg-database.html -share/doc/postgresql/html/catalog-pg-description.html -share/doc/postgresql/html/catalog-pg-group.html -share/doc/postgresql/html/catalog-pg-index.html -share/doc/postgresql/html/catalog-pg-inherits.html -share/doc/postgresql/html/catalog-pg-language.html -share/doc/postgresql/html/catalog-pg-operator.html -share/doc/postgresql/html/catalog-pg-proc.html -share/doc/postgresql/html/catalog-pg-relcheck.html -share/doc/postgresql/html/catalog-pg-shadow.html -share/doc/postgresql/html/catalog-pg-type.html -share/doc/postgresql/html/catalogs.html -share/doc/postgresql/html/charset.html -share/doc/postgresql/html/client-authentication-problems.html -share/doc/postgresql/html/client-authentication.html -share/doc/postgresql/html/compiler.html -share/doc/postgresql/html/connect-estab.html -share/doc/postgresql/html/creating-cluster.html -share/doc/postgresql/html/cvs-tree.html -share/doc/postgresql/html/cvs.html -share/doc/postgresql/html/cvsup.html -share/doc/postgresql/html/datatype-bit.html -share/doc/postgresql/html/datatype-boolean.html -share/doc/postgresql/html/datatype-character.html -share/doc/postgresql/html/datatype-datetime.html -share/doc/postgresql/html/datatype-geometric.html -share/doc/postgresql/html/datatype-money.html -share/doc/postgresql/html/ecpg.html -share/doc/postgresql/html/datatype-net-types.html -share/doc/postgresql/html/datatype.html -share/doc/postgresql/html/datetime-appendix.html -share/doc/postgresql/html/db-accessing.html -share/doc/postgresql/html/db-destroy.html -share/doc/postgresql/html/developer.html -share/doc/postgresql/html/doc-build.html -share/doc/postgresql/html/doc-sources.html -share/doc/postgresql/html/doc-toolsets.html -share/doc/postgresql/html/docguide.html -share/doc/postgresql/html/ecpg-concept.html -share/doc/postgresql/html/ecpg-develop.html -share/doc/postgresql/html/ecpg-limitations.html -share/doc/postgresql/html/ecpg-porting.html -share/doc/postgresql/html/ecpg-use.html -share/doc/postgresql/html/executor.html -share/doc/postgresql/html/explicit-joins.html -share/doc/postgresql/html/extend.html -share/doc/postgresql/html/functions-datetime.html -share/doc/postgresql/html/functions-aggregate.html -share/doc/postgresql/html/functions-comparison.html -share/doc/postgresql/html/functions-conditional.html -share/doc/postgresql/html/functions-formatting.html -share/doc/postgresql/html/functions-geometry.html -share/doc/postgresql/html/functions-matching.html -share/doc/postgresql/html/functions-math.html -share/doc/postgresql/html/functions-misc.html -share/doc/postgresql/html/functions-net.html -share/doc/postgresql/html/functions-string.html -share/doc/postgresql/html/functions.html -share/doc/postgresql/html/geqo-intro2.html -share/doc/postgresql/html/geqo-pg-intro.html -share/doc/postgresql/html/geqo.html -share/doc/postgresql/html/gist.html -share/doc/postgresql/html/groups.html -share/doc/postgresql/html/history.html -share/doc/postgresql/html/index.html -share/doc/postgresql/html/indexcost.html -share/doc/postgresql/html/indices-functional.html -share/doc/postgresql/html/indices-multicolumn.html -share/doc/postgresql/html/indices-opclass.html -share/doc/postgresql/html/indices-types.html -share/doc/postgresql/html/indices-unique.html -share/doc/postgresql/html/indices.html -share/doc/postgresql/html/inherit.html -share/doc/postgresql/html/install-getsource.html -share/doc/postgresql/html/install-post.html -share/doc/postgresql/html/install-procedure.html -share/doc/postgresql/html/install-requirements.html -share/doc/postgresql/html/install-upgrading.html -share/doc/postgresql/html/install-win32.html -share/doc/postgresql/html/installation.html -share/doc/postgresql/html/jdbc-ext.html -share/doc/postgresql/html/jdbc-lo.html -share/doc/postgresql/html/jdbc.html -share/doc/postgresql/html/jdbc-query.html -share/doc/postgresql/html/jdbc-reading.html -share/doc/postgresql/html/jdbc-thread.html -share/doc/postgresql/html/jdbc-update.html -share/doc/postgresql/html/jdbc-use.html -share/doc/postgresql/html/kernel-resources.html -share/doc/postgresql/html/keys.html -share/doc/postgresql/html/largeobjects.html -share/doc/postgresql/html/libpgtcl-examples.html -share/doc/postgresql/html/libpgtcl-ref.html -share/doc/postgresql/html/libpq-async.html -share/doc/postgresql/html/libpq-control.html -share/doc/postgresql/html/libpq-copy.html -share/doc/postgresql/html/libpq-envars.html -share/doc/postgresql/html/libpq-example.html -share/doc/postgresql/html/libpq-exec.html -share/doc/postgresql/html/libpq-fastpath.html -share/doc/postgresql/html/libpq-notify.html -share/doc/postgresql/html/libpq.html -share/doc/postgresql/html/libpq-threading.html -share/doc/postgresql/html/libpq-trace.html -share/doc/postgresql/html/libpqplusplus.html -share/doc/postgresql/html/libpqpp-classes.html -share/doc/postgresql/html/libpqpp-connect.html -share/doc/postgresql/html/libpqpp-copy.html -share/doc/postgresql/html/libpqpp-exec.html -share/doc/postgresql/html/libpqpp-notify.html -share/doc/postgresql/html/lisp.html -share/doc/postgresql/html/ln11330.html -share/doc/postgresql/html/ln1274.html -share/doc/postgresql/html/ln15181.html -share/doc/postgresql/html/ln24.html -share/doc/postgresql/html/ln25010.html -share/doc/postgresql/html/ln37176.html -share/doc/postgresql/html/ln8.html -share/doc/postgresql/html/lo-funcs.html -share/doc/postgresql/html/lo-implementation.html -share/doc/postgresql/html/lo-interfaces.html -share/doc/postgresql/html/lo-libpq.html -share/doc/postgresql/html/lo-sample.html -share/doc/postgresql/html/locking-indices.html -share/doc/postgresql/html/locking-tables.html -share/doc/postgresql/html/manage-ag-accessdb.html -share/doc/postgresql/html/manage-ag-dropdb.html -share/doc/postgresql/html/manage.html -share/doc/postgresql/html/managing-databases.html -share/doc/postgresql/html/migration.html -share/doc/postgresql/html/more-advanced.html -share/doc/postgresql/html/multibyte.html -share/doc/postgresql/html/mvcc.html -share/doc/postgresql/html/non-atomic-values.html -share/doc/postgresql/html/notation.html -share/doc/postgresql/html/odbc-applixware.html -share/doc/postgresql/html/odbc-config.html -share/doc/postgresql/html/odbc-install.html -share/doc/postgresql/html/odbc-windows.html -share/doc/postgresql/html/odbc.html -share/doc/postgresql/html/organization.html -share/doc/postgresql/html/overview.html -share/doc/postgresql/html/page.html -share/doc/postgresql/html/parser-stage.html -share/doc/postgresql/html/partial-index.html -share/doc/postgresql/html/performance-tips.html -share/doc/postgresql/html/perm-functions.html -share/doc/postgresql/html/pg-system-catalogs.html -share/doc/postgresql/html/pgeasy-chapter.html -share/doc/postgresql/html/pgtcl-pgconndefaults.html -share/doc/postgresql/html/pgtcl-pgconnect.html -share/doc/postgresql/html/pgtcl-pgdisconnect.html -share/doc/postgresql/html/pgtcl-pgexec.html -share/doc/postgresql/html/pgtcl-pglisten.html -share/doc/postgresql/html/pgtcl-pgloclose.html -share/doc/postgresql/html/pgtcl-pglocreat.html -share/doc/postgresql/html/pgtcl-pgloexport.html -share/doc/postgresql/html/pgtcl-pgloimport.html -share/doc/postgresql/html/pgtcl-pglolseek.html -share/doc/postgresql/html/pgtcl-pgloopen.html -share/doc/postgresql/html/pgtcl-pgloread.html -share/doc/postgresql/html/pgtcl-pglotell.html -share/doc/postgresql/html/pgtcl-pglounlink.html -share/doc/postgresql/html/pgtcl-pglowrite.html -share/doc/postgresql/html/pgtcl-pgresult.html -share/doc/postgresql/html/pgtcl-pgselect.html -share/doc/postgresql/html/pgtcl.html -share/doc/postgresql/html/planner-optimizer.html -share/doc/postgresql/html/plperl-use.html -share/doc/postgresql/html/plperl.html -share/doc/postgresql/html/plpgsql-description.html -share/doc/postgresql/html/plpgsql-examples.html -share/doc/postgresql/html/plpgsql-porting.html -share/doc/postgresql/html/plpgsql-trigger.html -share/doc/postgresql/html/plpgsql.html -share/doc/postgresql/html/pltcl-description.html -share/doc/postgresql/html/pltcl.html -share/doc/postgresql/html/populate.html -share/doc/postgresql/html/postgres.html -share/doc/postgresql/html/postmaster-shutdown.html -share/doc/postgresql/html/postmaster-start.html -share/doc/postgresql/html/preface.html -share/doc/postgresql/html/privileges.html -share/doc/postgresql/html/programmer-client.html -share/doc/postgresql/html/programmer-pl.html -share/doc/postgresql/html/programmer-server.html -share/doc/postgresql/html/programmer.html -share/doc/postgresql/html/protocol-message-formats.html -share/doc/postgresql/html/protocol-message-types.html -share/doc/postgresql/html/protocol-protocol.html -share/doc/postgresql/html/protocol.html -share/doc/postgresql/html/pygresql.html -share/doc/postgresql/html/pygresql-close.html -share/doc/postgresql/html/pygresql-connect.html -share/doc/postgresql/html/pygresql-db-api.html -share/doc/postgresql/html/pygresql-db-clear.html -share/doc/postgresql/html/pygresql-db-delete.html -share/doc/postgresql/html/pygresql-db-get-attnames.html -share/doc/postgresql/html/pygresql-db-get-databases.html -share/doc/postgresql/html/pygresql-db-get-tables.html -share/doc/postgresql/html/pygresql-db-get.html -share/doc/postgresql/html/pygresql-db-insert.html -share/doc/postgresql/html/pygresql-db-pkey.html -share/doc/postgresql/html/pygresql-db-update.html -share/doc/postgresql/html/pygresql-endcopy.html -share/doc/postgresql/html/pygresql-fileno.html -share/doc/postgresql/html/pygresql-get-defbase.html -share/doc/postgresql/html/pygresql-get-defhost.html -share/doc/postgresql/html/pygresql-get-defopt.html -share/doc/postgresql/html/pygresql-get-defport.html -share/doc/postgresql/html/pygresql-get-deftty.html -share/doc/postgresql/html/pygresql-getline.html -share/doc/postgresql/html/pygresql-getlo.html -share/doc/postgresql/html/pygresql-getnotify.html -share/doc/postgresql/html/pygresql-inserttable.html -share/doc/postgresql/html/pygresql-locreate.html -share/doc/postgresql/html/pygresql-loimport.html -share/doc/postgresql/html/pygresql-pg-db.html -share/doc/postgresql/html/pygresql-pg-functions.html -share/doc/postgresql/html/pygresql-pg-pglarge.html -share/doc/postgresql/html/pygresql-pg-pgobject.html -share/doc/postgresql/html/pygresql-pg-pgqueryobject.html -share/doc/postgresql/html/pygresql-pglargeobject-close.html -share/doc/postgresql/html/pygresql-pglargeobject-export.html -share/doc/postgresql/html/pygresql-pglargeobject-open.html -share/doc/postgresql/html/pygresql-pglargeobject-read.html -share/doc/postgresql/html/pygresql-pglargeobject-seek.html -share/doc/postgresql/html/pygresql-pglargeobject-size.html -share/doc/postgresql/html/pygresql-pglargeobject-tell.html -share/doc/postgresql/html/pygresql-pglargeobject-unlink.html -share/doc/postgresql/html/pygresql-pglargeobject-write.html -share/doc/postgresql/html/pygresql-pgqueryobject-dictresult.html -share/doc/postgresql/html/pygresql-pgqueryobject-fieldname.html -share/doc/postgresql/html/query.html -share/doc/postgresql/html/pygresql-pgqueryobject-fieldnum.html -share/doc/postgresql/html/pygresql-pgqueryobject-getresult.html -share/doc/postgresql/html/pygresql-pgqueryobject-listfields.html -share/doc/postgresql/html/pygresql-pgqueryobject-ntuples.html -share/doc/postgresql/html/pygresql-putline.html -share/doc/postgresql/html/pygresql-query.html -share/doc/postgresql/html/pygresql-reset.html -share/doc/postgresql/html/pygresql-set-defbase.html -share/doc/postgresql/html/pygresql-set-defhost.html -share/doc/postgresql/html/pygresql-set-defopt.html -share/doc/postgresql/html/pygresql-set-defport.html -share/doc/postgresql/html/pygresql-set-deftty.html -share/doc/postgresql/html/queries-limit.html -share/doc/postgresql/html/queries-order.html -share/doc/postgresql/html/queries-select-lists.html -share/doc/postgresql/html/queries-union.html -share/doc/postgresql/html/queries.html -share/doc/postgresql/html/query-agg.html -share/doc/postgresql/html/query-concepts.html -share/doc/postgresql/html/query-delete.html -share/doc/postgresql/html/query-join.html -share/doc/postgresql/html/query-populate.html -share/doc/postgresql/html/query-query.html -share/doc/postgresql/html/query-selectinto.html -share/doc/postgresql/html/query-table.html -share/doc/postgresql/html/query-update.html -share/doc/postgresql/html/recode.html -share/doc/postgresql/html/recovery.html -share/doc/postgresql/html/reference-client.html -share/doc/postgresql/html/reference-server.html -share/doc/postgresql/html/reference.html -share/doc/postgresql/html/regress-platform.html -share/doc/postgresql/html/regress.html -share/doc/postgresql/html/release-0-01.html -share/doc/postgresql/html/release-0-02.html -share/doc/postgresql/html/release-0-03.html -share/doc/postgresql/html/release-1-0.html -share/doc/postgresql/html/release-1-01.html -share/doc/postgresql/html/release-1-02.html -share/doc/postgresql/html/release-1-09.html -share/doc/postgresql/html/release-6-0.html -share/doc/postgresql/html/release-6-1-1.html -share/doc/postgresql/html/release-6-1.html -share/doc/postgresql/html/release-6-2-1.html -share/doc/postgresql/html/release-6-2.html -share/doc/postgresql/html/release-6-3-1.html -share/doc/postgresql/html/release-6-3-2.html -share/doc/postgresql/html/release-6-3.html -share/doc/postgresql/html/release-6-4-1.html -share/doc/postgresql/html/release-6-4-2.html -share/doc/postgresql/html/release-6-4.html -share/doc/postgresql/html/release-6-5-1.html -share/doc/postgresql/html/release-6-5-2.html -share/doc/postgresql/html/release-6-5-3.html -share/doc/postgresql/html/release-6-5.html -share/doc/postgresql/html/release-7-0-1.html -share/doc/postgresql/html/release-7-0-2.html -share/doc/postgresql/html/release-7-0-3.html -share/doc/postgresql/html/release-7-0.html -share/doc/postgresql/html/release-7-1.html -share/doc/postgresql/html/release-7-1-1.html -share/doc/postgresql/html/release-7-1-2.html -share/doc/postgresql/html/release.html -share/doc/postgresql/html/relmodel-formal.html -share/doc/postgresql/html/relmodel-oper.html -share/doc/postgresql/html/resources.html -share/doc/postgresql/html/rule-system.html -share/doc/postgresql/html/rules-insert.html -share/doc/postgresql/html/rules-permissions.html -share/doc/postgresql/html/rules-triggers.html -share/doc/postgresql/html/rules-views.html -share/doc/postgresql/html/rules.html -share/doc/postgresql/html/runtime-config.html -share/doc/postgresql/html/runtime.html -share/doc/postgresql/html/source.html -share/doc/postgresql/html/spi-examples.html -share/doc/postgresql/html/spi-interface-support.html -share/doc/postgresql/html/spi-memory.html -share/doc/postgresql/html/spi-spiconnect.html -share/doc/postgresql/html/spi-spicopytuple.html -share/doc/postgresql/html/spi-spiexec.html -share/doc/postgresql/html/spi-spiexecp.html -share/doc/postgresql/html/spi-spifinish.html -share/doc/postgresql/html/spi-spifname.html -share/doc/postgresql/html/spi-spifnumber.html -share/doc/postgresql/html/spi-spigetbinval.html -share/doc/postgresql/html/spi-spigetrelname.html -share/doc/postgresql/html/spi-spigettype.html -share/doc/postgresql/html/spi-spigettypeid.html -share/doc/postgresql/html/spi-spigetvalue.html -share/doc/postgresql/html/spi-spimodifytuple.html -share/doc/postgresql/html/spi-spipalloc.html -share/doc/postgresql/html/spi-spipfree.html -share/doc/postgresql/html/spi-spiprepare.html -share/doc/postgresql/html/spi-spirepalloc.html -share/doc/postgresql/html/spi-spisaveplan.html -share/doc/postgresql/html/spi-visibility.html -share/doc/postgresql/html/spi.html -share/doc/postgresql/html/sql-abort.html -share/doc/postgresql/html/sql-altergroup.html -share/doc/postgresql/html/sql-altertable.html -share/doc/postgresql/html/sql-alteruser.html -share/doc/postgresql/html/sql-begin.html -share/doc/postgresql/html/sql-checkpoint.html -share/doc/postgresql/html/sql-close.html -share/doc/postgresql/html/sql-cluster.html -share/doc/postgresql/html/sql-commands.html -share/doc/postgresql/html/sql-comment.html -share/doc/postgresql/html/sql-commit.html -share/doc/postgresql/html/sql-copy.html -share/doc/postgresql/html/sql-createaggregate.html -share/doc/postgresql/html/sql-createconstraint.html -share/doc/postgresql/html/sql-createdatabase.html -share/doc/postgresql/html/sql-createfunction.html -share/doc/postgresql/html/sql-creategroup.html -share/doc/postgresql/html/sql-createindex.html -share/doc/postgresql/html/sql-createlanguage.html -share/doc/postgresql/html/sql-createoperator.html -share/doc/postgresql/html/sql-createrule.html -share/doc/postgresql/html/sql-createsequence.html -share/doc/postgresql/html/sql-createtable.html -share/doc/postgresql/html/sql-createtableas.html -share/doc/postgresql/html/sql-createtrigger.html -share/doc/postgresql/html/sql-createtype.html -share/doc/postgresql/html/sql-createuser.html -share/doc/postgresql/html/sql-createview.html -share/doc/postgresql/html/sql-declare.html -share/doc/postgresql/html/sql-delete.html -share/doc/postgresql/html/sql-dropaggregate.html -share/doc/postgresql/html/sql-dropdatabase.html -share/doc/postgresql/html/sql-dropfunction.html -share/doc/postgresql/html/sql-dropgroup.html -share/doc/postgresql/html/sql-dropindex.html -share/doc/postgresql/html/sql-droplanguage.html -share/doc/postgresql/html/sql-dropoperator.html -share/doc/postgresql/html/sql-droprule.html -share/doc/postgresql/html/sql-dropsequence.html -share/doc/postgresql/html/sql-droptable.html -share/doc/postgresql/html/sql-droptrigger.html -share/doc/postgresql/html/sql-droptype.html -share/doc/postgresql/html/sql-dropuser.html -share/doc/postgresql/html/sql-dropview.html -share/doc/postgresql/html/sql-end.html -share/doc/postgresql/html/sql-explain.html -share/doc/postgresql/html/sql-expressions.html -share/doc/postgresql/html/sql-fetch.html -share/doc/postgresql/html/sql-grant.html -share/doc/postgresql/html/sql-insert.html -share/doc/postgresql/html/sql-keywords-appendix.html -share/doc/postgresql/html/sql-language.html -share/doc/postgresql/html/sql-listen.html -share/doc/postgresql/html/sql-load.html -share/doc/postgresql/html/sql-lock.html -share/doc/postgresql/html/sql-move.html -share/doc/postgresql/html/sql-notify.html -share/doc/postgresql/html/sql-precedence.html -share/doc/postgresql/html/sql-reindex.html -share/doc/postgresql/html/sql-reset.html -share/doc/postgresql/html/sql-revoke.html -share/doc/postgresql/html/sql-rollback.html -share/doc/postgresql/html/sql-select.html -share/doc/postgresql/html/sql-selectinto.html -share/doc/postgresql/html/sql-set-constraints.html -share/doc/postgresql/html/sql-set-transaction.html -share/doc/postgresql/html/sql-set.html -share/doc/postgresql/html/sql-show.html -share/doc/postgresql/html/sql-syntax-columns.html -share/doc/postgresql/html/sql-syntax.html -share/doc/postgresql/html/sql-truncate.html -share/doc/postgresql/html/sql-unlisten.html -share/doc/postgresql/html/sql-update.html -share/doc/postgresql/html/sql-vacuum.html -share/doc/postgresql/html/sql.html -share/doc/postgresql/html/ssh-tunnels.html -share/doc/postgresql/html/ssl-tcp.html -share/doc/postgresql/html/start-manage-db.html -share/doc/postgresql/html/start-psql.html -share/doc/postgresql/html/start.html -share/doc/postgresql/html/storage.html -share/doc/postgresql/html/supported-platforms.html -share/doc/postgresql/html/timing-results.html -share/doc/postgresql/html/transaction-iso.html -share/doc/postgresql/html/trigger-datachanges.html -share/doc/postgresql/html/trigger-examples.html -share/doc/postgresql/html/trigger-manager.html -share/doc/postgresql/html/triggers.html -share/doc/postgresql/html/tutorial.html -share/doc/postgresql/html/type-system.html -share/doc/postgresql/html/typeconv-func.html -share/doc/postgresql/html/typeconv-oper.html -share/doc/postgresql/html/typeconv-query.html -share/doc/postgresql/html/typeconv-union-case.html -share/doc/postgresql/html/typeconv.html -share/doc/postgresql/html/units-history.html -share/doc/postgresql/html/user-manag.html -share/doc/postgresql/html/user.html -share/doc/postgresql/html/wal-configuration.html -share/doc/postgresql/html/wal-implementation.html -share/doc/postgresql/html/wal.html -share/doc/postgresql/html/xact-read-committed.html -share/doc/postgresql/html/xact-serializable.html -share/doc/postgresql/html/xaggr.html -share/doc/postgresql/html/xfunc-c.html -share/doc/postgresql/html/xfunc-internal.html -share/doc/postgresql/html/xfunc-overload.html -share/doc/postgresql/html/xfunc-pl.html -share/doc/postgresql/html/xfunc.html -share/doc/postgresql/html/xindex.html -share/doc/postgresql/html/xoper.html -share/doc/postgresql/html/xplang.html -share/doc/postgresql/html/xtypes.html -share/doc/postgresql/html/y2k.html -share/doc/postgresql/html/catalogs.gif -share/doc/postgresql/html/clientserver.gif -share/doc/postgresql/html/connections.gif -@dirrm share/doc/postgresql/html -@dirrm share/doc/postgresql diff --git a/databases/postgresql-devel/pkg-plist.jdbc b/databases/postgresql-devel/pkg-plist.jdbc deleted file mode 100644 index 8f7bd41a54d7..000000000000 --- a/databases/postgresql-devel/pkg-plist.jdbc +++ /dev/null @@ -1,27 +0,0 @@ -share/examples/postgresql/corba/StockClient.java -share/examples/postgresql/corba/StockDB.java -share/examples/postgresql/corba/StockDispenserImpl.java -share/examples/postgresql/corba/StockItemImpl.java -share/examples/postgresql/corba/StockServer.java -share/examples/postgresql/corba/readme -share/examples/postgresql/corba/stock.idl -share/examples/postgresql/corba/stock.sql -@dirrm share/examples/postgresql/corba -share/examples/postgresql/ImageViewer.java -share/examples/postgresql/Unicode.java -share/examples/postgresql/basic.java -share/examples/postgresql/blobtest.java -share/examples/postgresql/datestyle.java -share/examples/postgresql/metadata.java -share/examples/postgresql/psql.java -share/examples/postgresql/threadsafe.java -share/examples/postgresql/README -share/examples/postgresql/Implementation -@dirrm share/examples/postgresql -share/postgresql/java/postgresql-examples.jar -share/postgresql/java/postgresql.jar -share/postgresql/java/retepTools.jar -@dirrm share/postgresql/java -share/java/classes/postgresql.jar -@unexec rmdir %D/share/java/classes 2>/dev/null || true -@unexec rmdir %D/share/java 2>/dev/null || true diff --git a/databases/postgresql-devel/pkg-plist.notk b/databases/postgresql-devel/pkg-plist.notk deleted file mode 100644 index 8dcbc5f88bd6..000000000000 --- a/databases/postgresql-devel/pkg-plist.notk +++ /dev/null @@ -1,6 +0,0 @@ -%%PG_PREFIX%%bin/pgtclsh -%%PG_INCLUDE%%/libpgtcl.h -%%PG_PREFIX%%lib/libpgtcl.a -%%PG_PREFIX%%lib/libpgtcl.so -%%PG_PREFIX%%lib/libpgtcl.so.2 -%%PG_PREFIX%%lib/pltcl.so diff --git a/databases/postgresql-devel/pkg-plist.odbc b/databases/postgresql-devel/pkg-plist.odbc deleted file mode 100644 index f047b7cb64a1..000000000000 --- a/databases/postgresql-devel/pkg-plist.odbc +++ /dev/null @@ -1,10 +0,0 @@ -%%PG_INCLUDE%%/iodbc/iodbc.h -%%PG_INCLUDE%%/iodbc/isql.h -%%PG_INCLUDE%%/iodbc/isqlext.h -@dirrm %%PG_INCLUDE%%/iodbc -%%PG_PREFIX%%lib/libpsqlodbc.a -%%PG_PREFIX%%lib/libpsqlodbc.so -%%PG_PREFIX%%lib/libpsqlodbc.so.0 -etc/postgresql/odbcinst.ini -@dirrm etc/postgresql -share/postgresql/odbc.sql diff --git a/databases/postgresql-devel/pkg-plist.tcl b/databases/postgresql-devel/pkg-plist.tcl deleted file mode 100644 index da5f4367cb80..000000000000 --- a/databases/postgresql-devel/pkg-plist.tcl +++ /dev/null @@ -1,148 +0,0 @@ -%%PG_PREFIX%%bin/pgaccess -%%PG_PREFIX%%bin/pgtclsh -%%PG_PREFIX%%bin/pgtksh -%%PG_INCLUDE%%/libpgtcl.h -%%PG_PREFIX%%lib/libpgtcl.a -%%PG_PREFIX%%lib/libpgtcl.so -%%PG_PREFIX%%lib/libpgtcl.so.2 -%%PG_PREFIX%%lib/pltcl.so -lib/tcl%%WITH_TCL%%/Pgtcl1.3/pkgIndex.tcl -share/postgresql/pgaccess/images/icon_button.gif -share/postgresql/pgaccess/images/icon_checkbutton.gif -share/postgresql/pgaccess/images/icon_entry.gif -share/postgresql/pgaccess/images/icon_frame.gif -share/postgresql/pgaccess/images/icon_label.gif -share/postgresql/pgaccess/images/icon_listbox.gif -share/postgresql/pgaccess/images/icon_query.gif -share/postgresql/pgaccess/images/icon_radiobutton.gif -share/postgresql/pgaccess/images/icon_text.gif -share/postgresql/pgaccess/lib/database.tcl -share/postgresql/pgaccess/lib/forms.tcl -share/postgresql/pgaccess/lib/functions.tcl -share/postgresql/pgaccess/lib/help/abort.hlp -share/postgresql/pgaccess/lib/help/add_records.hlp -share/postgresql/pgaccess/lib/help/alter_table.hlp -share/postgresql/pgaccess/lib/help/alter_user.hlp -share/postgresql/pgaccess/lib/help/author.hlp -share/postgresql/pgaccess/lib/help/begin.hlp -share/postgresql/pgaccess/lib/help/close.hlp -share/postgresql/pgaccess/lib/help/cluster.hlp -share/postgresql/pgaccess/lib/help/commit.hlp -share/postgresql/pgaccess/lib/help/copy.hlp -share/postgresql/pgaccess/lib/help/copyrights.hlp -share/postgresql/pgaccess/lib/help/create_aggregate.hlp -share/postgresql/pgaccess/lib/help/create_database.hlp -share/postgresql/pgaccess/lib/help/create_function.hlp -share/postgresql/pgaccess/lib/help/create_index.hlp -share/postgresql/pgaccess/lib/help/create_language.hlp -share/postgresql/pgaccess/lib/help/create_operator.hlp -share/postgresql/pgaccess/lib/help/create_rule.hlp -share/postgresql/pgaccess/lib/help/create_sequence.hlp -share/postgresql/pgaccess/lib/help/create_table.hlp -share/postgresql/pgaccess/lib/help/create_table_as.hlp -share/postgresql/pgaccess/lib/help/create_trigger.hlp -share/postgresql/pgaccess/lib/help/create_type.hlp -share/postgresql/pgaccess/lib/help/create_user.hlp -share/postgresql/pgaccess/lib/help/create_view.hlp -share/postgresql/pgaccess/lib/help/data_types.hlp -share/postgresql/pgaccess/lib/help/datefunc.hlp -share/postgresql/pgaccess/lib/help/declare.hlp -share/postgresql/pgaccess/lib/help/delete.hlp -share/postgresql/pgaccess/lib/help/drop_aggregate.hlp -share/postgresql/pgaccess/lib/help/drop_database.hlp -share/postgresql/pgaccess/lib/help/drop_function.hlp -share/postgresql/pgaccess/lib/help/drop_index.hlp -share/postgresql/pgaccess/lib/help/drop_language.hlp -share/postgresql/pgaccess/lib/help/drop_operator.hlp -share/postgresql/pgaccess/lib/help/drop_rule.hlp -share/postgresql/pgaccess/lib/help/drop_sequence.hlp -share/postgresql/pgaccess/lib/help/drop_table.hlp -share/postgresql/pgaccess/lib/help/drop_trigger.hlp -share/postgresql/pgaccess/lib/help/drop_type.hlp -share/postgresql/pgaccess/lib/help/drop_user.hlp -share/postgresql/pgaccess/lib/help/drop_view.hlp -share/postgresql/pgaccess/lib/help/explain.hlp -share/postgresql/pgaccess/lib/help/fetch.hlp -share/postgresql/pgaccess/lib/help/form_design.hlp -share/postgresql/pgaccess/lib/help/forms.hlp -share/postgresql/pgaccess/lib/help/functions.hlp -share/postgresql/pgaccess/lib/help/geomfunc.hlp -share/postgresql/pgaccess/lib/help/grant.hlp -share/postgresql/pgaccess/lib/help/history.hlp -share/postgresql/pgaccess/lib/help/index.hlp -share/postgresql/pgaccess/lib/help/inheritance.hlp -share/postgresql/pgaccess/lib/help/insert.hlp -share/postgresql/pgaccess/lib/help/ipv4func.hlp -share/postgresql/pgaccess/lib/help/isolation.hlp -share/postgresql/pgaccess/lib/help/keywords.hlp -share/postgresql/pgaccess/lib/help/listen.hlp -share/postgresql/pgaccess/lib/help/load.hlp -share/postgresql/pgaccess/lib/help/lock.hlp -share/postgresql/pgaccess/lib/help/mathfunc.hlp -share/postgresql/pgaccess/lib/help/move.hlp -share/postgresql/pgaccess/lib/help/mvcc.hlp -share/postgresql/pgaccess/lib/help/new_query.hlp -share/postgresql/pgaccess/lib/help/new_table.hlp -share/postgresql/pgaccess/lib/help/notify.hlp -share/postgresql/pgaccess/lib/help/open_query.hlp -share/postgresql/pgaccess/lib/help/open_table.hlp -share/postgresql/pgaccess/lib/help/pgfunctions.hlp -share/postgresql/pgaccess/lib/help/postgresql.hlp -share/postgresql/pgaccess/lib/help/queries.hlp -share/postgresql/pgaccess/lib/help/reports.hlp -share/postgresql/pgaccess/lib/help/reset.hlp -share/postgresql/pgaccess/lib/help/revoke.hlp -share/postgresql/pgaccess/lib/help/rollback.hlp -share/postgresql/pgaccess/lib/help/schema.hlp -share/postgresql/pgaccess/lib/help/scripts.hlp -share/postgresql/pgaccess/lib/help/select.hlp -share/postgresql/pgaccess/lib/help/select_into.hlp -share/postgresql/pgaccess/lib/help/sequences.hlp -share/postgresql/pgaccess/lib/help/set.hlp -share/postgresql/pgaccess/lib/help/show.hlp -share/postgresql/pgaccess/lib/help/sql_guide.hlp -share/postgresql/pgaccess/lib/help/sqlfunc.hlp -share/postgresql/pgaccess/lib/help/stringfunc.hlp -share/postgresql/pgaccess/lib/help/tables.hlp -share/postgresql/pgaccess/lib/help/unlisten.hlp -share/postgresql/pgaccess/lib/help/update.hlp -share/postgresql/pgaccess/lib/help/users.hlp -share/postgresql/pgaccess/lib/help/vacuum.hlp -share/postgresql/pgaccess/lib/help/view_table_structure.hlp -share/postgresql/pgaccess/lib/help/views.hlp -share/postgresql/pgaccess/lib/help/visual_designer.hlp -share/postgresql/pgaccess/lib/help/y2k.hlp -share/postgresql/pgaccess/lib/help.tcl -share/postgresql/pgaccess/lib/languages/czech -share/postgresql/pgaccess/lib/languages/chinese_big5 -share/postgresql/pgaccess/lib/languages/chinese_gb -share/postgresql/pgaccess/lib/languages/deutsch -share/postgresql/pgaccess/lib/languages/euskara -share/postgresql/pgaccess/lib/languages/francais -share/postgresql/pgaccess/lib/languages/italiano -share/postgresql/pgaccess/lib/languages/japanese -share/postgresql/pgaccess/lib/languages/magyar -share/postgresql/pgaccess/lib/languages/nederlands -share/postgresql/pgaccess/lib/languages/portugues -share/postgresql/pgaccess/lib/languages/romana -share/postgresql/pgaccess/lib/languages/russian.koi8r -share/postgresql/pgaccess/lib/languages/russian_win -share/postgresql/pgaccess/lib/languages/spanish -share/postgresql/pgaccess/lib/mainlib.tcl -share/postgresql/pgaccess/lib/preferences.tcl -share/postgresql/pgaccess/lib/queries.tcl -share/postgresql/pgaccess/lib/reports.tcl -share/postgresql/pgaccess/lib/schema.tcl -share/postgresql/pgaccess/lib/scripts.tcl -share/postgresql/pgaccess/lib/sequences.tcl -share/postgresql/pgaccess/lib/tables.tcl -share/postgresql/pgaccess/lib/users.tcl -share/postgresql/pgaccess/lib/views.tcl -share/postgresql/pgaccess/lib/visualqb.tcl -share/postgresql/pgaccess/main.tcl -@dirrm share/postgresql/pgaccess/images -@dirrm share/postgresql/pgaccess/lib/help -@dirrm share/postgresql/pgaccess/lib/languages -@dirrm share/postgresql/pgaccess/lib -@dirrm share/postgresql/pgaccess -@dirrm lib/tcl%%WITH_TCL%%/Pgtcl1.3 diff --git a/databases/postgresql-devel/scripts/configure.postgresql b/databases/postgresql-devel/scripts/configure.postgresql deleted file mode 100644 index 0b288ad43d25..000000000000 --- a/databases/postgresql-devel/scripts/configure.postgresql +++ /dev/null @@ -1,278 +0,0 @@ -#!/bin/sh -# -*- tab-width: 4; -*- -# ex:ts=4 -# -# $FreeBSD$ -# -if [ -f ${WRKDIRPREFIX}${CURDIR}/Makefile.inc ]; then - exit -fi - -if [ ! "${BATCH}" ]; then - dialog --title "Backup your data NOW" \ - --msgbox "`sed -e \"s#%%PREFIX%%#${PREFIX}#\" < ${FILESDIR}/pre-install-notes`" \ - -1 -1 -fi - -if [ "${BATCH}" ]; then - set \"MultiByte\" \"ODBC\" \"SSL\" \"TCL\" \"TCLTK\" -else - /usr/bin/dialog --title "configuration options" --clear \ - --checklist "\n\ -Please select desired options:" -1 -1 7 \ -JDBC "Java DataBase Connectivity" OFF \ -MultiByte "Multibyte for Multilingualism" ON \ -ODBC "Open Database Connectivity" ON \ -TCL "Tcl" ON \ -TCLTK "Tcl/Tk" ON \ -SSL "Secure Socket Layer" ON \ -KRB5 "Kerberos 5" OFF \ -2> /tmp/checklist.tmp.$$ - - retval=$? - - if [ -s /tmp/checklist.tmp.$$ ]; then - set `cat /tmp/checklist.tmp.$$` - fi - rm -f /tmp/checklist.tmp.$$ - - case $retval in - 0) if [ -z "$*" ]; then - echo "Nothing selected" - fi - ;; - 1) echo "Cancel pressed." - exit 1 - ;; - esac -fi - -${MKDIR} ${WRKDIRPREFIX}${CURDIR} -exec > ${WRKDIRPREFIX}${CURDIR}/Makefile.inc - -while [ "$1" ]; do - case $1 in - \"JDBC\") - # We use JAVA_HOME if set correctly. If the user has - # specified a JVM with JAVA_HOME or via the javavmwrapper, - # we validate that it really exists. It is unnecessarily - # complicated and error prone to try to figure out the - # correct java version just to be able to determine a - # BUILD_DEPEND in this case. Instead, assume that a set - # JAVA_HOME together with simple sanity check mean we have - # an installed JVM, and we don't bother setting - # BUILD_DEPENDS. - - echo "# JDBC" - # if JAVA_HOME is set and exists, use it - if [ "${JAVA_HOME}" -a -x "${JAVA_HOME}/bin/javac" ]; then - echo JAVA_HOME=${JAVA_HOME} - else - # No JAVA_HOME, check javavmwrapper's config file - if [ -r "${LOCALBASE}/etc/javavms" ]; then - VMS=`/usr/bin/sed 's|#.*||' < "${LOCALBASE}/etc/javavms" | uniq` - for JAVAVM in ${VMS}; do - if [ -x "${JAVAVM}" ]; then - JAVA_HOME=`echo ${JAVAVM} | /usr/bin/sed 's|/bin/java$||` - break - fi - done - fi - if [ "${JAVA_HOME}" -a -x "${JAVA_HOME}/bin/javac" ]; then - # yep, wrapper was good - echo JAVA_HOME=${JAVA_HOME} - else - # nothing, use our boring 1.1.8, the only native non-beta jdk :( - echo BUILD_DEPENDS+= \${LOCALBASE}/jdk1.1.8/bin/javac:\${PORTSDIR}/java/jdk - echo JAVA_HOME=\${LOCALBASE}/jdk1.1.8 - fi - fi - cat <<-EOF - BUILD_DEPENDS+= \${LOCALBASE}/bin/ant:\${PORTSDIR}/devel/jakarta-ant - CONFIGURE_ENV+= ANT=\${LOCALBASE}/bin/ant - WITH_JDBC=YES - MAKE_ENV+= JAVA_HOME=\${JAVA_HOME} - SCRIPTS_ENV+= JAVA_HOME=\${JAVA_HOME} - CONFIGURE_ARGS+= --with-java - - EOF - ;; - \"MultiByte\") - MULTIBYTE=1 - ;; - \"ODBC\") - cat <<-EOF - # ODBC - WITH_ODBC=YES - CONFIGURE_ARGS+= --with-odbc - - EOF - ;; - \"TCL\") - TCL=1 - ;; - \"TCLTK\") - echo "#TCLTK" - echo WITH_TK=YES - echo - TCL=1 - ;; - \"SSL\") - cat <<-EOF - # SSL - USE_OPENSSL= yes - CFLAGS+= -DUSE_SSL - WITH_SSL= yes - CONFIGURE_ENV+= LDFLAGS="-L\${OPENSSLLIB} -lssl -lcrypto" - CONFIGURE_ARGS+= --with-openssl - - EOF - ;; - \"KRB5\") - KRB5=1 - ;; - \"nothing\"|true) - ;; - *) - echo "Invalid option(s): $*" > /dev/stderr - rm -f ${WRKDIRPREFIX}${CURDIR}/Makefile.inc - exit 1 - ;; - esac - shift -done - -exec > /dev/stderr - -# if multibyte, determine charset -echo "# Multibyte" >> ${WRKDIRPREFIX}${CURDIR}/Makefile.inc - -if [ ! "${MULTIBYTE}" ]; then - echo "WITHOUT_MULTIBYTE=YES" >> ${WRKDIRPREFIX}${CURDIR}/Makefile.inc -else - if [ "${BATCH}" ]; then - set "nothing" - else - /usr/bin/dialog --title "configuration options" --clear \ - --radiolist "\n\ -Please select desired options:" -1 -1 16 \ -nothing "Default Encoding" ON \ -SQL_ASCII "SQL_ASCII" OFF \ -LATIN1 "LATIN1" OFF \ -LATIN2 "LATIN2" OFF \ -LATIN3 "LATIN3" OFF \ -LATIN4 "LATIN4" OFF \ -LATIN5 "LATIN5" OFF \ -EUC_JP "EUC_JP" OFF \ -EUC_CN "EUC_CN" OFF \ -EUC_KR "EUC_KR" OFF \ -EUC_TW "EUC_TW" OFF \ -KOI8 "KOI8" OFF \ -UNICODE "UNICODE" OFF \ -MULE_INTERNAL "MULE_INTERNAL" OFF \ -WIN "WIN" OFF \ -ALT "ALT" OFF \ -2> /tmp/checklist.tmp.$$ - - retval=$? - - if [ -s /tmp/checklist.tmp.$$ ]; then - set `cat /tmp/checklist.tmp.$$` - fi - rm -f /tmp/checklist.tmp.$$ - if [ $retval = 1 ]; then - echo "Cancel pressed." - rm ${WRKDIRPREFIX}${CURDIR}/Makefile.inc - exit 1 - fi - fi - - if [ "$1" = "nothing" ]; then - echo "CONFIGURE_ARGS+= --enable-multibyte" \ - >> ${WRKDIRPREFIX}${CURDIR}/Makefile.inc - else - echo "CONFIGURE_ARGS+= --enable-multibyte=$1" \ - >> ${WRKDIRPREFIX}${CURDIR}/Makefile.inc - fi -fi -echo - -if [ "${TCL}" ]; then - echo "# TCL" >> ${WRKDIRPREFIX}${CURDIR}/Makefile.inc - if [ "${BATCH}" ]; then - echo WITH_TCL=8.3 >> ${WRKDIRPREFIX}${CURDIR}/Makefile.inc - else - dialog --title "TCL version" \ - --inputbox "Please enter TCL version. Default is 8.3." -1 -1 "8.3" \ - 2> /tmp/checklist.tmp.$$ - retval=$? - if [ -s /tmp/checklist.tmp.$$ ]; then - set `cat /tmp/checklist.tmp.$$` - fi - rm -f /tmp/checklist.tmp.$$ - case $retval in - 0) if [ -z "$*" ]; then - echo "Nothing selected" - fi - ;; - 1) echo "Cancel pressed." - rm -f ${WRKDIRPREFIX}${CURDIR}/Makefile.inc - exit 1 - ;; - esac - echo WITH_TCL=$1 >> ${WRKDIRPREFIX}${CURDIR}/Makefile.inc - fi - cat <<-EOF >> ${WRKDIRPREFIX}${CURDIR}/Makefile.inc - CONFIGURE_ARGS+= --with-tcl --with-tclconfig="\${TCLCONFIG}" - TCLV=\${WITH_TCL:S/.//} - TCL_INCDIR= \${LOCALBASE}/include/tcl\${WITH_TCL} - MAKE_ENV+= TCL_INCDIR=\${TCL_INCDIR} - LIB_DEPENDS+= tcl\${TCLV}:\${PORTSDIR}/lang/tcl\${TCLV} - TCLCONFIG= "\${LOCALBASE}/lib/tcl\${WITH_TCL}" - .if defined(WITH_TK) - CONFIGURE_ARGS+= --with-tkconfig="\${TKCONFIG}" - TK_INCDIR= \${LOCALBASE}/include/tk\${WITH_TCL} - CONFIGURE_ENV+= WISH=\${LOCALBASE}/bin/wish\${WITH_TCL} - LIB_DEPENDS+= tk\${TCLV}:\${PORTSDIR}/x11-toolkits/tk\${TCLV} - TKCONFIG= "\${LOCALBASE}/lib/tk\${WITH_TCL}" - TCLCONFIG+= \${TKCONFIG} - TCL_PLIST= pkg-plist.tcl - .else - TCL_PLIST= pkg-plist.notk - CONFIGURE_ARGS+= --without-tk - .endif - - EOF -fi - -if [ "${KRB5}" ]; then - if [ "${BATCH}" ]; then - # never gets here, but what the heck... - echo KRB5_HOME=\${LOCALBASE} >> ${WRKDIRPREFIX}${CURDIR}/Makefile.inc - else - dialog --inputbox "Please enter the KRB5_HOME path" -1 -1 "${KRB_HOME:-${LOCALBASE}}" \ - 2> /tmp/checklist.tmp.$$ - retval=$? - if [ -s /tmp/checklist.tmp.$$ ]; then - set `cat /tmp/checklist.tmp.$$` - fi - rm -f /tmp/checklist.tmp.$$ - case $retval in - 0) if [ -z "$*" ]; then - echo "No input" - fi - ;; - 1) echo "Cancel pressed." - rm -f ${WRKDIRPREFIX}${CURDIR}/Makefile.inc - exit 1 - ;; - esac - echo KRB5_HOME=\"$1\" >> ${WRKDIRPREFIX}${CURDIR}/Makefile.inc - fi - cat <<-EOF >> ${WRKDIRPREFIX}${CURDIR}/Makefile.inc - .if defined(KRB5_HOME) && exists(\${KRB5_HOME}) - CONFIGURE_KRB= --with-krb5=\${KRB5_HOME} - .endif - - EOF -fi diff --git a/databases/postgresql73-server/Makefile b/databases/postgresql73-server/Makefile deleted file mode 100644 index 4a30008d77bc..000000000000 --- a/databases/postgresql73-server/Makefile +++ /dev/null @@ -1,198 +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.1.3 -CATEGORIES= databases -MASTER_SITES= ftp://ftp.sunet.se/pub/unix/databases/relational/postgresql/%SUBDIR%/ \ - ftp://ftp.postgresql.org/pub/%SUBDIR%/ \ - ftp://ftp.de.postgresql.org/%SUBDIR%/ \ - ftp://ftp.digex.net/pub/packages/database/postgresql/%SUBDIR%/ \ - ftp://ftp.chg.ru/pub/databases/postgresql/%SUBDIR%/ \ - ${MASTER_SITE_RINGSERVER:S,%SUBDIR%,misc/db/postgresql/&,} -MASTER_SITE_SUBDIR= source/v${PORTVERSION} -DISTFILES= ${PORTNAME}-base-${PORTVERSION}${EXTRACT_SUFX} \ - ${PORTNAME}-opt-${PORTVERSION}${EXTRACT_SUFX} -.if !defined(NOPORTDOCS) -DISTFILES+= ${PORTNAME}-docs-${PORTVERSION}${EXTRACT_SUFX} -.endif - -MAINTAINER= girgen@partitur.se - -DIST_SUBDIR= postgresql - -INSTALLS_SHLIB= YES - -DOCDIR= ${WRKDIR}/${DISTNAME}/doc -PLIST= ${WRKDIR}/.PLIST.generated - -USE_GMAKE= YES -HAS_CONFIGURE= YES -CONFIGURE_ARGS= --enable-locale \ - --enable-syslog --with-CXX \ - --sysconfdir=${PREFIX}/etc/postgresql \ - --with-includes="${PREFIX}/include ${TCL_INCDIR} ${TK_INCDIR}" \ - --with-libraries=${PREFIX}/lib -.if defined(WITH_OLD_LAYOUT) -CONFIGURE_ARGS+=--docdir=${PREFIX}/share/doc --includedir=${PREFIX}/pgsql/include \ - --datadir=${PREFIX}/share \ - --with-template=`uname -s | ${TR} '[A-Z]' '[a-z]'` \ - --prefix=${PREFIX}/pgsql -PG_PREFIX= pgsql/ -PG_INCLUDE= pgsql/include -LDCONFIG_DIRS= %%PREFIX%%/pgsql/lib -MANPREFIX= ${PREFIX}/pgsql -.else -GNU_CONFIGURE= YES -CONFIGURE_ARGS+=--docdir=${PREFIX}/share/doc --includedir=${PREFIX}/include/pgsql -PG_PREFIX="" -PG_INCLUDE= include/pgsql -.endif - -PLIST_SUB= PG_PREFIX="${PG_PREFIX}" PG_INCLUDE="${PG_INCLUDE}" WITH_TCL="${WITH_TCL}" - -MAN1= createdb.1 createlang.1 createuser.1 dropdb.1 droplang.1 \ - dropuser.1 ecpg.1 initdb.1 initlocation.1 ipcclean.1 pg_config.1 \ - pg_ctl.1 pg_dump.1 pg_dumpall.1 pg_passwd.1 pg_restore.1 \ - pgaccess.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 checkpoint.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 set_constraints.l set_transaction.l show.l \ - truncate.l unlisten.l update.l vacuum.l - -SCRIPTS_ENV= WRKDIRPREFIX="${WRKDIRPREFIX}" \ - WRKDIR="${WRKDIR}" \ - FILESDIR="${FILESDIR}" \ - TOUCH="${TOUCH}" \ - MKDIR="${MKDIR}" \ - NO_OPENSSL="${NO_OPENSSL}" \ - DISTNAME="${DISTNAME}" - -# We must .include here because we need the Makefile.inc @ pre-install -# to determine the correct plist. -.if exists(${WRKDIRPREFIX}${.CURDIR}/Makefile.inc) -.include "${WRKDIRPREFIX}${.CURDIR}/Makefile.inc" -.else -# make utility targets like depends and describe happy -LIB_DEPENDS= tcl83:${PORTSDIR}/lang/tcl83 \ - tk83:${PORTSDIR}/x11-toolkits/tk83 -.endif - -pre-everything:: - @ ${SETENV} ${SCRIPTS_ENV} ${SH} ${SCRIPTDIR}/configure.postgresql - -pre-install: - @ ${SETENV} PKG_PREFIX=${PREFIX} ${SH} ${PKGDIR}/pkg-install ${PORTNAME} PRE-INSTALL -.if !defined(BATCH) -# remind folks twice for a while, so they really don't miss the layout shift - @ ${SED} "s|/usr/local|${PREFIX}|g" < ${PKGMESSAGE} | head -n 25 | more -e -.endif - @ ${CP} ${PKGDIR}/pkg-plist ${PLIST} -.if defined(WITHOUT_MULTIBYTE) - @${CP} ${PLIST} ${PLIST}.nomulti ;\ - ${GREP} -v bin/pg_encoding ${PLIST}.nomulti > ${PLIST} -.endif -.if defined(WITH_TCL) - @ ${CP} ${PLIST} ${PLIST}.notcl ;\ - ${CAT} ${PKGDIR}/${TCL_PLIST} ${PLIST}.notcl > ${PLIST} ;\ - ${RM} ${PLIST}.notcl -.endif -.if defined(WITH_ODBC) - @ ${CP} ${PLIST} ${PLIST}.noodbc ;\ - ${CAT} ${PKGDIR}/pkg-plist.odbc ${PLIST}.noodbc > ${PLIST} ;\ - ${RM} ${PLIST}.noodbc -.endif -.if defined(WITH_JDBC) - @ ${CP} ${PLIST} ${PLIST}.nojdbc ;\ - ${CAT} ${PKGDIR}/pkg-plist.jdbc ${PLIST}.nojdbc > ${PLIST} ;\ - ${RM} ${PLIST}.nojdbc -.endif -.if !defined(NOPORTDOCS) - @ ${CAT} ${PKGDIR}/pkg-plist.doc >> ${PLIST} -.endif - -post-install: -# install shell defaults for pgsql user -.for i in profile cshrc - @ ${SED} "s|%%PREFIX%%|${PREFIX}|g; s|%%PG_PREFIX%%|${PG_PREFIX}|g" \ - < ${FILESDIR}/dot.$i.in \ - > ${PREFIX}/share/postgresql/dot.$i.dist; \ - ${CP} ${PREFIX}/share/postgresql/dot.$i.dist ~pgsql/; \ - if [ ! -f ~pgsql/.$i ]; then \ - ${CP} ${PREFIX}/share/postgresql/dot.$i.dist ~pgsql/.$i; \ - fi -.endfor - @ ${SED} -e "s|%%PREFIX%%|${PREFIX}|g; s|%%PG_PREFIX%%|${PG_PREFIX}|g" \ - < ${FILESDIR}/pgsql.sh.tmpl \ - > ${PREFIX}/etc/rc.d/010.pgsql.sh - @ ${CHMOD} 554 ${PREFIX}/etc/rc.d/010.pgsql.sh - @ ${CHOWN} root:pgsql ${PREFIX}/etc/rc.d/010.pgsql.sh -.if defined(WITH_TCL) -# Preparing a loadable TCL-package (pkgIndex.tcl) - @${MKDIR} ${PREFIX}/lib/tcl${WITH_TCL}/Pgtcl1.3 - @${SED} "s|%%PREFIX%%|${PREFIX}|g" < ${FILESDIR}/pkgIndex.tcl.in \ - > ${PREFIX}/lib/tcl${WITH_TCL}/Pgtcl1.3/pkgIndex.tcl -.endif -.if defined(WITH_JDBC) - @ ${MKDIR} -m 0555 ${PREFIX}/share/java/classes - @ ${INSTALL_DATA} ${WRKSRC}/src/interfaces/jdbc/jars/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} "---------------------------------------------------------" -.if !defined(NOPORTDOCS) - @ ${MKDIR} -m 0555 ${PREFIX}/share/examples/postgresql ;\ - cd ${WRKSRC}/src/interfaces/jdbc/example ;\ - pax -rw . ${PREFIX}/share/examples/postgresql -.for i in README Implementation - @ ${INSTALL_DATA} ${WRKSRC}/src/interfaces/jdbc/$i \ - ${PREFIX}/share/examples/postgresql -.endfor - @ ${ECHO_MSG} "---------------------------------------------------------------" - @ ${ECHO_MSG} "Putting java examples into ${PREFIX}/share/examples/postgresql" - @ ${ECHO_MSG} "---------------------------------------------------------------" -.endif -.endif -.if !defined(DEBUG_FLAGS) -.for file in ecpg pg_dump pg_id pg_passwd pg_restore postgres psql - @ strip ${PREFIX}/${PG_PREFIX}bin/${file} -.endfor -.endif -# information overload mode activated, sorry about this... ;-) - @ ${CAT} ${FILESDIR}/post-install-notes ${PKGMESSAGE} |\ - ${SED} "s|/usr/local|${PREFIX}|g" |\ - tee ${PREFIX}/share/postgresql/post-install-notes ;\ - ${INSTALL_DATA} ${PREFIX}/share/postgresql/post-install-notes ~pgsql/. ;\ - ${CHOWN} -R pgsql:pgsql ~pgsql/. -.if defined(WITH_OLD_LAYOUT) - @ ${CHOWN} root:pgsql ${PREFIX}/${PG_PREFIX}lib -.endif - -post-clean: - @ ${RM} -f ${WRKDIRPREFIX}${.CURDIR}/Makefile.inc - -post-extract: ${POSTEXTRACT} - -.include <bsd.port.mk> diff --git a/databases/postgresql73-server/distinfo b/databases/postgresql73-server/distinfo deleted file mode 100644 index 23e07754313f..000000000000 --- a/databases/postgresql73-server/distinfo +++ /dev/null @@ -1,3 +0,0 @@ -MD5 (postgresql/postgresql-base-7.1.3.tar.gz) = f932dea12806972402aaaf17a2a97034 -MD5 (postgresql/postgresql-opt-7.1.3.tar.gz) = e84e9c51b31567d4571c7612e0c0fbd6 -MD5 (postgresql/postgresql-docs-7.1.3.tar.gz) = 7061ab7f7ec3c4d18f8e6cb2858896d0 diff --git a/databases/postgresql73-server/files/dot.cshrc.in b/databases/postgresql73-server/files/dot.cshrc.in deleted file mode 100644 index a326041bff7b..000000000000 --- a/databases/postgresql73-server/files/dot.cshrc.in +++ /dev/null @@ -1,13 +0,0 @@ -set path = ( %%PREFIX%%/%%PG_PREFIX%%bin $path ) - -setenv PGLIB %%PREFIX%%/%%PG_PREFIX%%lib - -# note: PGDATA can be overridden by the -D startup option -setenv PGDATA $HOME/data - -#You might want to set some locale stuff here -#setenv PGDATESTYLE ISO -#setenv LC_ALL sv_SE.ISO_8859-1 - -# if you want to make regression tests use this TZ -#setenv TZ PST8PDT diff --git a/databases/postgresql73-server/files/dot.profile.in b/databases/postgresql73-server/files/dot.profile.in deleted file mode 100644 index 4aca6aadd19a..000000000000 --- a/databases/postgresql73-server/files/dot.profile.in +++ /dev/null @@ -1,18 +0,0 @@ -# both new and old layout's paths, but new path first... -PATH=%%PREFIX%%/%%PG_PREFIX%%bin:${PATH} - -PGLIB=%%PREFIX%%/%%PG_PREFIX%%lib - -# note: PGDATA can be overridden by the -D startup option -PGDATA=${HOME}/data - -export PATH PGLIB PGDATA - -#You might want to set some locale stuff here -#PGDATESTYLE=ISO -#LC_ALL=sv_SE.ISO_8859-1 -#export PGDATESTYLE LC_ALL - -# if you want to make regression tests use this TZ -#TZ=PST8PDT -#export TZ diff --git a/databases/postgresql73-server/files/patch-aj b/databases/postgresql73-server/files/patch-aj deleted file mode 100644 index 94c0d6d79991..000000000000 --- a/databases/postgresql73-server/files/patch-aj +++ /dev/null @@ -1,118 +0,0 @@ ---- src/bin/pg_passwd/pg_passwd.c.orig Sat Mar 24 01:54:55 2001 -+++ src/bin/pg_passwd/pg_passwd.c Wed Apr 18 04:54:14 2001 -@@ -7,6 +7,12 @@ - #include <errno.h> - #include <time.h> - #include <ctype.h> -+ -+#if defined(__FreeBSD__) -+#include <pwd.h> /* defines _PASSWORD_LEN, max # of characters in a password */ -+#include <sys/time.h> /* gettimeofday for password salt */ -+#endif -+ - #define issaltchar(c) (isalnum((unsigned char) (c)) || (c) == '.' || (c) == '/') - - #ifdef HAVE_TERMIOS_H -@@ -23,18 +29,31 @@ - * We assume that the output of crypt(3) is always 13 characters, - * and that at most 8 characters can usefully be sent to it. - * -+ * For FreeBSD, take these values from /usr/include/pwd.h - * Postgres usernames are assumed to be less than NAMEDATALEN chars long. - */ -+#if defined(__FreeBSD__) -+#define CLEAR_PASSWD_LEN _PASSWORD_LEN -+#define CRYPTED_PASSWD_LEN _PASSWORD_LEN /* max length, not containing NULL */ -+#define SALT_LEN 10 -+#else - #define CLEAR_PASSWD_LEN 8 /* not including null */ - #define CRYPTED_PASSWD_LEN 13 /* not including null */ -+#define SALT_LEN 3 -+#endif -+ -+static unsigned char itoa64[] = /* 0 ... 63 => ascii - 64 */ -+ "./0123456789ABCDEFGHIJKLMNOPQRSTUVWXYZabcdefghijklmnopqrstuvwxyz"; -+ - - const char *progname; - - static void usage(void); -+static void to64(char *s, long v, int n); - static void read_pwd_file(char *filename); - static void write_pwd_file(char *filename, char *bkname); - static void encrypt_pwd(char key[CLEAR_PASSWD_LEN + 1], -- char salt[3], -+ char salt[SALT_LEN], - char passwd[CRYPTED_PASSWD_LEN + 1]); - static void prompt_for_username(char *username); - static void prompt_for_password(char *prompt, char *password); -@@ -47,6 +66,15 @@ - printf("Report bugs to <pgsql-bugs@postgresql.org>.\n"); - } - -+static void -+to64(char *s, long v, int n) -+{ -+ while (--n >= 0) { -+ *s++ = itoa64[v&0x3f]; -+ v >>= 6; -+ } -+} -+ - typedef struct - { - char *uname; -@@ -154,7 +182,7 @@ - if (q != NULL) - *(q++) = '\0'; - -- if (strlen(p) != CRYPTED_PASSWD_LEN && strcmp(p, "+") != 0) -+ if (strlen(p) > CRYPTED_PASSWD_LEN && strcmp(p, "+") != 0) - { - fprintf(stderr, "%s:%d: warning: invalid password length\n", - filename, npwds + 1); -@@ -221,15 +249,25 @@ - - static void - encrypt_pwd(char key[CLEAR_PASSWD_LEN + 1], -- char salt[3], -+ char salt[SALT_LEN], - char passwd[CRYPTED_PASSWD_LEN + 1]) - { -+#if !defined(__FreeBSD__) - int n; -- -+#endif - /* select a salt, if not already given */ - if (salt[0] == '\0') - { -+#if defined(__FreeBSD__) -+ struct timeval tv; -+ srandomdev(); -+ gettimeofday(&tv,0); -+ to64(&salt[0], random(), 3); -+ to64(&salt[3], tv.tv_usec, 3); -+ to64(&salt[6], tv.tv_sec, 2); -+ salt[8] = '\0'; - srand(time(NULL)); -+#else - do - { - n = rand() % 256; -@@ -241,6 +279,7 @@ - } while (!issaltchar(n)); - salt[1] = n; - salt[2] = '\0'; -+#endif - } - - /* get encrypted password */ -@@ -335,7 +374,7 @@ - char *filename; - char bkname[MAXPGPATH]; - char username[NAMEDATALEN]; -- char salt[3]; -+ char salt[SALT_LEN]; - char key[CLEAR_PASSWD_LEN + 1], - key2[CLEAR_PASSWD_LEN + 1]; - char e_passwd[CRYPTED_PASSWD_LEN + 1]; diff --git a/databases/postgresql73-server/files/patch-contrib-retep-build b/databases/postgresql73-server/files/patch-contrib-retep-build deleted file mode 100644 index 80f40f1cc86d..000000000000 --- a/databases/postgresql73-server/files/patch-contrib-retep-build +++ /dev/null @@ -1,37 +0,0 @@ -=================================================================== -RCS file: /home/projects/pgsql/cvsroot/pgsql/contrib/retep/build.xml,v -retrieving revision 1.4 -retrieving revision 1.5 -diff -u -r1.4 -r1.5 ---- contrib/retep/build.xml 2001/03/11 11:06:59 1.4 -+++ contrib/retep/build.xml 2001/05/16 16:20:51 1.5 -@@ -2,7 +2,7 @@ - - build file to build the donated retep tools packages - -- $Id: build.xml,v 1.4 2001/03/11 11:06:59 petere Exp $ -+ $Id: build.xml,v 1.5 2001/05/16 16:20:51 momjian Exp $ - - --> - -@@ -22,6 +22,11 @@ - <available property="xml" classname="org.xml.sax.Parser" /> - </target> - -+ <target name="warning" depends="checks" unless="jdk1.2+"> -+ <echo message="WARNING -- contributed retep tools need jdk1.2 or later -- compilation NOT done." /> -+ </target> -+ -+ - <!-- Prepares the build by creating a directory to place the class files --> - <target name="prepare"> - <mkdir dir="${dest}" /> -@@ -35,7 +40,7 @@ - </target> - - <!-- Builds the XML Tools --> -- <target name="compile" depends="checks,prepare"> -+ <target name="compile" depends="checks,prepare,warning" if="jdk1.2+"> - <javac srcdir="${src}" destdir="${dest}"> - <include name="${package}/**" /> - </javac> diff --git a/databases/postgresql73-server/files/patch-doc-makefile b/databases/postgresql73-server/files/patch-doc-makefile deleted file mode 100644 index fa27bed2af3f..000000000000 --- a/databases/postgresql73-server/files/patch-doc-makefile +++ /dev/null @@ -1,19 +0,0 @@ ---- doc/Makefile~ Sun Jan 7 03:03:22 2001 -+++ doc/Makefile Wed Apr 18 08:12:30 2001 -@@ -43,10 +43,13 @@ - gzip -d -c man.tar.gz | ( cd $(DESTDIR)$(mandir) && $(TAR) xf - ) - endif - -- - installdirs: -- $(mkinstalldirs) $(DESTDIR)$(mandir) $(DESTDIR)$(docdir)/html -- -+ifdef found_html -+ $(mkinstalldirs) $(DESTDIR)$(docdir)/html -+endif -+ifdef found_man -+ $(mkinstalldirs) $(DESTDIR)$(mandir) -+endif - - uninstall: - ifdef found_html diff --git a/databases/postgresql73-server/files/patch-jdbc-Connection b/databases/postgresql73-server/files/patch-jdbc-Connection deleted file mode 100644 index 26fbc260d639..000000000000 --- a/databases/postgresql73-server/files/patch-jdbc-Connection +++ /dev/null @@ -1,51 +0,0 @@ -=================================================================== -RCS file: /home/projects/pgsql/cvsroot/pgsql/src/interfaces/jdbc/org/postgresql/Connection.java,v -retrieving revision 1.14 -retrieving revision 1.16 -diff -u -r1.14 -r1.16 ---- src/interfaces/jdbc/org/postgresql/Connection.java 2001/01/31 08:26:01 1.14 -+++ src/interfaces/jdbc/org/postgresql/Connection.java 2001/06/01 20:57:58 1.16 -@@ -10,7 +10,7 @@ - import org.postgresql.util.*; - - /** -- * $Id: Connection.java,v 1.14 2001/01/31 08:26:01 peter Exp $ -+ * $Id: Connection.java,v 1.16 2001/06/01 20:57:58 momjian Exp $ - * - * This abstract class is used by org.postgresql.Driver to open either the JDBC1 or - * JDBC2 versions of the Connection class. -@@ -267,7 +267,8 @@ - // - firstWarning = null; - -- java.sql.ResultSet initrset = ExecSQL("set datestyle to 'ISO'; select getdatabaseencoding()"); -+ java.sql.ResultSet initrset = ExecSQL("set datestyle to 'ISO'; " + -+ "select case when pg_encoding_to_char(1) = 'SQL_ASCII' then 'UNKNOWN' else getdatabaseencoding() end"); - - String dbEncoding = null; - //retrieve DB properties -@@ -307,9 +308,23 @@ - } else if (dbEncoding.equals("EUC_TW")) { - dbEncoding = "EUC_TW"; - } else if (dbEncoding.equals("KOI8")) { -- dbEncoding = "KOI8_R"; -+ // try first if KOI8_U is present, it's a superset of KOI8_R -+ try { -+ dbEncoding = "KOI8_U"; -+ "test".getBytes(dbEncoding); -+ } -+ catch(UnsupportedEncodingException uee) { -+ // well, KOI8_U is still not in standard JDK, falling back to KOI8_R :( -+ dbEncoding = "KOI8_R"; -+ } -+ - } else if (dbEncoding.equals("WIN")) { - dbEncoding = "Cp1252"; -+ } else if (dbEncoding.equals("UNKNOWN")) { -+ //This isn't a multibyte database so we don't have an encoding to use -+ //We leave dbEncoding null which will cause the default encoding for the -+ //JVM to be used -+ dbEncoding = null; - } else { - dbEncoding = null; - } diff --git a/databases/postgresql73-server/files/patch-jdbc-build-xml b/databases/postgresql73-server/files/patch-jdbc-build-xml deleted file mode 100644 index b1c703a9c978..000000000000 --- a/databases/postgresql73-server/files/patch-jdbc-build-xml +++ /dev/null @@ -1,10 +0,0 @@ ---- src/interfaces/jdbc/build.xml~ Fri Mar 16 22:50:43 2001 -+++ src/interfaces/jdbc/build.xml Wed Apr 18 08:57:57 2001 -@@ -120,6 +120,7 @@ - <javac srcdir="${src}" destdir="${dest}"> - <include name="example/**" /> - <exclude name="example/corba/**"/> -+ <exclude name="example/blobtest.java" unless="jdk1.2+"/> - </javac> - </target> - diff --git a/databases/postgresql73-server/files/patch-jdbc-getdate b/databases/postgresql73-server/files/patch-jdbc-getdate deleted file mode 100644 index 744407ae14b5..000000000000 --- a/databases/postgresql73-server/files/patch-jdbc-getdate +++ /dev/null @@ -1,34 +0,0 @@ ---- src/interfaces/jdbc/org/postgresql/jdbc2/ResultSet.java~ Fri Feb 23 19:12:23 2001 -+++ src/interfaces/jdbc/org/postgresql/jdbc2/ResultSet.java Wed May 9 04:31:11 2001 -@@ -423,8 +423,13 @@ - String s = getString(columnIndex); - if(s==null) - return null; -- -- return java.sql.Date.valueOf(s); -+ // length == 10: SQL Date -+ // length > 10: SQL Timestamp, assumes PGDATESTYLE=ISO -+ try { -+ return java.sql.Date.valueOf((s.length() == 10) ? s : s.substring(0,10)); -+ } catch (NumberFormatException e) { -+ throw new PSQLException("postgresql.res.baddate", s); -+ } - } - - /** -@@ -441,8 +446,13 @@ - - if(s==null) - return null; // SQL NULL -- -- return java.sql.Time.valueOf(s); -+ // length == 8: SQL Time -+ // length > 8: SQL Timestamp -+ try { -+ return java.sql.Time.valueOf((s.length() == 8) ? s : s.substring(11,19)); -+ } catch (NumberFormatException e) { -+ throw new PSQLException("postgresql.res.badtime",s); -+ } - } - - /** diff --git a/databases/postgresql73-server/files/pgsql.sh.tmpl b/databases/postgresql73-server/files/pgsql.sh.tmpl deleted file mode 100644 index cd78771219ed..000000000000 --- a/databases/postgresql73-server/files/pgsql.sh.tmpl +++ /dev/null @@ -1,36 +0,0 @@ -#!/bin/sh - -# $FreeBSD$ -# -# For postmaster startup options, edit $PGDATA/postgresql.conf - -PGBIN=%%PREFIX%%/%%PG_PREFIX%%bin - -case $1 in -start) - [ -d %%PREFIX%%/%%PG_PREFIX%%lib ] && /sbin/ldconfig -m %%PREFIX%%/%%PG_PREFIX%%lib - [ -x ${PGBIN}/pg_ctl ] && { - su -l pgsql -c \ - '[ -d ${PGDATA} ] && exec %%PREFIX%%/%%PG_PREFIX%%bin/pg_ctl start -s -w -l ~pgsql/errlog' - echo -n ' pgsql' - } - ;; - -stop) - [ -x ${PGBIN}/pg_ctl ] && { - su -l pgsql -c 'exec %%PREFIX%%/%%PG_PREFIX%%bin/pg_ctl stop -s -m fast' - echo -n ' pgsql' - } - ;; - -status) - [ -x ${PGBIN}/pg_ctl ] && { - exec su -l pgsql -c 'exec %%PREFIX%%/%%PG_PREFIX%%bin/pg_ctl status' - } - ;; - -*) - echo "usage: `basename $0` {start|stop|status}" >&2 - exit 64 - ;; -esac diff --git a/databases/postgresql73-server/files/pkgIndex.tcl.in b/databases/postgresql73-server/files/pkgIndex.tcl.in deleted file mode 100644 index bd8329b15c69..000000000000 --- a/databases/postgresql73-server/files/pkgIndex.tcl.in +++ /dev/null @@ -1,4 +0,0 @@ -# Package-index file for Pgtcl-package. Enables you to load PostgreSQL -# interface functions right into you TCL-interpreter as simply as -# package require Pgtcl -package ifneeded Pgtcl 1.3 "load %%PREFIX%%/lib/libpgtcl.so" diff --git a/databases/postgresql73-server/files/post-install-notes b/databases/postgresql73-server/files/post-install-notes deleted file mode 100644 index 9347fc51c247..000000000000 --- a/databases/postgresql73-server/files/post-install-notes +++ /dev/null @@ -1,25 +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/TK support, you can use the pgaccess -utility to get a TCL/TK based database frontend for database -operations. You do NOT need to install the pgaccess port separately. - -If you built in the TCL support, you can load the Pg package into your -TCL scripts as easily as ``package require Pgtcl''. - -If you built with Java support, add -/usr/local/share/java/classes/postgresql.jar to your classpath. - -If you have many tables and many clients running, consider raising -kern.maxfiles using sysctl(8). - -Use createlang(1) to install languages into your database. -Supported languages are 'plpgsql', 'pltcl', 'pltclu', and 'plperl'. diff --git a/databases/postgresql73-server/files/pre-install-notes b/databases/postgresql73-server/files/pre-install-notes deleted file mode 100644 index 697ce3cedb79..000000000000 --- a/databases/postgresql73-server/files/pre-install-notes +++ /dev/null @@ -1,21 +0,0 @@ - * IMPORTANT UPGRADE NOTICE * IMPORTANT UPGRADE NOTICE * - -The PostgreSQL port now obeys hier(7) by default, which means that it -installs into: - -%%PREFIX%%/bin -%%PREFIX%%/lib -%%PREFIX%%/include/pgsql - -You *must* move away your old installation to avoid problems with -ldconfig(8) and user's PATH:s. If you rather install using the -old-fashion layout, cancel at next screen and run make as: - -$ make -DWITH_OLD_LAYOUT - -As always, you *must* dump existing databases before stopping and -removing your old postgresql, as part of the update. This is *NOT* -done by this port! - -If you want JAVA support, I will try to determine your JAVA_HOME using -javavmwrapper. If you want a different JVM, please set JAVA_HOME. 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 463e4e49815f..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 cfc983fc2f66..000000000000 --- a/databases/postgresql73-server/pkg-install +++ /dev/null @@ -1,46 +0,0 @@ -#! /bin/sh - -# $FreeBSD$ - -PATH=/bin:/usr/sbin - -DB_DIR=${PKG_PREFIX}/pgsql - -case $2 in -PRE-INSTALL) - USER=pgsql - GROUP=${USER} - UID=70 - 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} -c "PostgreSQL Daemon" - then - echo "Added user \"${USER}\"." - else - echo "Adding user \"${USER}\" failed..." - exit 1 - fi - fi - - if ! [ -x ~pgsql ] ; then - mkdir -p ${DB_DIR} - chown pgsql:pgsql ${DB_DIR} - fi - ;; - -esac diff --git a/databases/postgresql73-server/pkg-message b/databases/postgresql73-server/pkg-message deleted file mode 100644 index 1a3f9f1e4147..000000000000 --- a/databases/postgresql73-server/pkg-message +++ /dev/null @@ -1,38 +0,0 @@ - -====================================================================== - - * IMPORTANT UPGRADE NOTICE * IMPORTANT UPGRADE NOTICE * - -The PostgreSQL port now obeys hier(7) by default, which means that it -installs into: - -/usr/local/bin -/usr/local/lib -/usr/local/include/pgsql - -You *must* move away your old installation from users' and -ldconfig(8)'s PATHs. If you rather install using the old-fashion -layout, cancel now and build the port with "make -DWITH_OLD_LAYOUT". - -The pgsql user's home dir is /usr/local/pgsql by default, but can be -changed with for example chpass(1). Datadir defaults to ~pgsql/data, -but can be changed by modifying the ~pgsql/.profile script. - -As always, backup your data before upgrading. If the upgrade leads to -a higher minor revision (i.e. 7.0.x -> 7.1.x), a dump and restore of -all databases is required. This is *NOT* done by the port! - -====================================================================== - -To initialize the database, you should run initdb as the "pgsql" user. - -Example: - - su -l pgsql -c initdb - -You can then start PostgreSQL by running: - - /usr/local/etc/rc.d/010.pgsql.sh start - -For postmaster settings, see ~pgsql/data/postgresql.conf -====================================================================== diff --git a/databases/postgresql73-server/pkg-plist b/databases/postgresql73-server/pkg-plist deleted file mode 100644 index a7493ddb7898..000000000000 --- a/databases/postgresql73-server/pkg-plist +++ /dev/null @@ -1,91 +0,0 @@ -%%PG_PREFIX%%bin/postmaster -%%PG_PREFIX%%bin/postgres -%%PG_PREFIX%%bin/ecpg -%%PG_PREFIX%%bin/initdb -%%PG_PREFIX%%bin/initlocation -%%PG_PREFIX%%bin/ipcclean -%%PG_PREFIX%%bin/pg_ctl -%%PG_PREFIX%%bin/pg_dump -%%PG_PREFIX%%bin/pg_restore -%%PG_PREFIX%%bin/pg_encoding -%%PG_PREFIX%%bin/pg_dumpall -%%PG_PREFIX%%bin/pg_id -%%PG_PREFIX%%bin/pg_passwd -%%PG_PREFIX%%bin/psql -%%PG_PREFIX%%bin/createdb -%%PG_PREFIX%%bin/dropdb -%%PG_PREFIX%%bin/createuser -%%PG_PREFIX%%bin/dropuser -%%PG_PREFIX%%bin/droplang -%%PG_PREFIX%%bin/vacuumdb -%%PG_PREFIX%%bin/createlang -%%PG_PREFIX%%bin/pg_config -etc/rc.d/010.pgsql.sh -%%PG_INCLUDE%%/lib/dllist.h -@dirrm %%PG_INCLUDE%%/lib -%%PG_INCLUDE%%/libpq/pqcomm.h -%%PG_INCLUDE%%/libpq/libpq-fs.h -@dirrm %%PG_INCLUDE%%/libpq -%%PG_INCLUDE%%/libpq++/pgconnection.h -%%PG_INCLUDE%%/libpq++/pgdatabase.h -%%PG_INCLUDE%%/libpq++/pgtransdb.h -%%PG_INCLUDE%%/libpq++/pgcursordb.h -%%PG_INCLUDE%%/libpq++/pglobject.h -@dirrm %%PG_INCLUDE%%/libpq++ -%%PG_INCLUDE%%/c.h -%%PG_INCLUDE%%/postgres_ext.h -%%PG_INCLUDE%%/postgres_fe.h -%%PG_INCLUDE%%/os.h -%%PG_INCLUDE%%/config.h -%%PG_INCLUDE%%/libpq-fe.h -%%PG_INCLUDE%%/libpq-int.h -%%PG_INCLUDE%%/pqexpbuffer.h -%%PG_INCLUDE%%/ecpgerrno.h -%%PG_INCLUDE%%/ecpglib.h -%%PG_INCLUDE%%/ecpgtype.h -%%PG_INCLUDE%%/sqlca.h -%%PG_INCLUDE%%/sql3types.h -%%PG_INCLUDE%%/libpgeasy.h -%%PG_INCLUDE%%/libpq++.h -@dirrm %%PG_INCLUDE%% -%%PG_PREFIX%%lib/libpq.so -%%PG_PREFIX%%lib/libpq.a -%%PG_PREFIX%%lib/libpq.so.2 -%%PG_PREFIX%%lib/libecpg.so -%%PG_PREFIX%%lib/libecpg.a -%%PG_PREFIX%%lib/libecpg.so.3 -%%PG_PREFIX%%lib/libpgeasy.so -%%PG_PREFIX%%lib/libpgeasy.a -%%PG_PREFIX%%lib/libpgeasy.so.2 -%%PG_PREFIX%%lib/libpq++.so -%%PG_PREFIX%%lib/libpq++.a -%%PG_PREFIX%%lib/libpq++.so.3 -%%PG_PREFIX%%lib/plpgsql.so -share/postgresql/global.bki -share/postgresql/global.description -share/postgresql/post-install-notes -share/postgresql/template1.bki -share/postgresql/template1.description -share/postgresql/pg_hba.conf.sample -share/postgresql/pg_ident.conf.sample -share/postgresql/postgresql.conf.sample -@unexec if cmp -s ~pgsql/.profile %D/share/postgresql/dot.profile.dist; then rm -f ~pgsql/.profile; fi -@unexec if cmp -s ~pgsql/.cshrc %D/share/postgresql/dot.cshrc.dist; then rm -f ~pgsql/.cshrc; fi -@unexec [ -f ~pgsql/dot.profile.dist ] && rm ~pgsql/dot.profile.dist -@unexec [ -f ~pgsql/dot.cshrc.dist ] && rm ~pgsql/dot.cshrc.dist -@exec [ -f %D/share/postgresql/post-install-notes ] && cp %D/share/postgresql/post-install-notes ~pgsql && chown pgsql:pgsql ~pgsql/post-install-notes -@unexec [ -f ~pgsql/post-install-notes ] && rm ~pgsql/post-install-notes -share/postgresql/dot.profile.dist -share/postgresql/dot.cshrc.dist -@dirrm share/postgresql -@exec [ -f %D/share/postgresql/dot.profile.dist ] && cp %D/share/postgresql/dot.profile.dist ~pgsql/. -@exec [ -f %D/share/postgresql/dot.cshrc.dist ] && cp %D/share/postgresql/dot.cshrc.dist ~pgsql/. -@exec [ -f ~pgsql/.profile ] || (cp %D/share/postgresql/dot.profile.dist ~pgsql/.profile && chown pgsql:pgsql ~pgsql/.profile) -@exec [ -f ~pgsql/.cshrc ] || (cp %D/share/postgresql/dot.cshrc.dist ~pgsql/.cshrc && chown pgsql:pgsql ~pgsql/.cshrc) -@unexec [ X%%PG_PREFIX%% != X ] && rmdir %D/%%PG_PREFIX%%bin 2> /dev/null || true -@unexec [ X%%PG_PREFIX%% != X ] && rmdir %D/%%PG_PREFIX%%lib 2> /dev/null || true -@unexec [ X%%PG_PREFIX%% != X ] && rmdir %D/%%PG_PREFIX%%man/man1 2> /dev/null || true -@unexec [ X%%PG_PREFIX%% != X ] && rmdir %D/%%PG_PREFIX%%man/manl 2> /dev/null || true -@unexec [ X%%PG_PREFIX%% != X ] && rmdir %D/%%PG_PREFIX%%man 2> /dev/null || true -@unexec rmdir ~pgsql 2> /dev/null || true -@unexec echo "Warning: If you will *NOT* use this package anymore, please remove %D/pgsql and the pgsql user manually." diff --git a/databases/postgresql73-server/pkg-plist.doc b/databases/postgresql73-server/pkg-plist.doc deleted file mode 100644 index c4d50ecb24f0..000000000000 --- a/databases/postgresql73-server/pkg-plist.doc +++ /dev/null @@ -1,494 +0,0 @@ -share/doc/postgresql/html/admin.html -share/doc/postgresql/html/advanced.html -share/doc/postgresql/html/altern-locations.html -share/doc/postgresql/html/app-createdb.html -share/doc/postgresql/html/app-createlang.html -share/doc/postgresql/html/app-createuser.html -share/doc/postgresql/html/app-dropdb.html -share/doc/postgresql/html/app-droplang.html -share/doc/postgresql/html/app-dropuser.html -share/doc/postgresql/html/app-ecpg.html -share/doc/postgresql/html/app-initdb.html -share/doc/postgresql/html/app-initlocation.html -share/doc/postgresql/html/app-ipcclean.html -share/doc/postgresql/html/app-pg-ctl.html -share/doc/postgresql/html/app-pg-dumpall.html -share/doc/postgresql/html/app-pg-passwd.html -share/doc/postgresql/html/app-pgaccess.html -share/doc/postgresql/html/app-pgadmin.html -share/doc/postgresql/html/app-pgconfig.html -share/doc/postgresql/html/app-pgdump.html -share/doc/postgresql/html/app-pgrestore.html -share/doc/postgresql/html/app-pgtclsh.html -share/doc/postgresql/html/app-pgtksh.html -share/doc/postgresql/html/app-postgres.html -share/doc/postgresql/html/app-postmaster.html -share/doc/postgresql/html/app-psql.html -share/doc/postgresql/html/app-vacuumdb.html -share/doc/postgresql/html/applevel-consistency.html -share/doc/postgresql/html/arch-pg.html -share/doc/postgresql/html/arch.html -share/doc/postgresql/html/arrays.html -share/doc/postgresql/html/auth-methods.html -share/doc/postgresql/html/backup-file.html -share/doc/postgresql/html/backup.html -share/doc/postgresql/html/biblio.html -share/doc/postgresql/html/bki-commands.html -share/doc/postgresql/html/bki-example.html -share/doc/postgresql/html/bki.html -share/doc/postgresql/html/bug-reporting.html -share/doc/postgresql/html/catalog-pg-aggregate.html -share/doc/postgresql/html/catalog-pg-attrdef.html -share/doc/postgresql/html/catalog-pg-attribute.html -share/doc/postgresql/html/catalog-pg-class.html -share/doc/postgresql/html/catalog-pg-database.html -share/doc/postgresql/html/catalog-pg-description.html -share/doc/postgresql/html/catalog-pg-group.html -share/doc/postgresql/html/catalog-pg-index.html -share/doc/postgresql/html/catalog-pg-inherits.html -share/doc/postgresql/html/catalog-pg-language.html -share/doc/postgresql/html/catalog-pg-operator.html -share/doc/postgresql/html/catalog-pg-proc.html -share/doc/postgresql/html/catalog-pg-relcheck.html -share/doc/postgresql/html/catalog-pg-shadow.html -share/doc/postgresql/html/catalog-pg-type.html -share/doc/postgresql/html/catalogs.html -share/doc/postgresql/html/charset.html -share/doc/postgresql/html/client-authentication-problems.html -share/doc/postgresql/html/client-authentication.html -share/doc/postgresql/html/compiler.html -share/doc/postgresql/html/connect-estab.html -share/doc/postgresql/html/creating-cluster.html -share/doc/postgresql/html/cvs-tree.html -share/doc/postgresql/html/cvs.html -share/doc/postgresql/html/cvsup.html -share/doc/postgresql/html/datatype-bit.html -share/doc/postgresql/html/datatype-boolean.html -share/doc/postgresql/html/datatype-character.html -share/doc/postgresql/html/datatype-datetime.html -share/doc/postgresql/html/datatype-geometric.html -share/doc/postgresql/html/datatype-money.html -share/doc/postgresql/html/ecpg.html -share/doc/postgresql/html/datatype-net-types.html -share/doc/postgresql/html/datatype.html -share/doc/postgresql/html/datetime-appendix.html -share/doc/postgresql/html/db-accessing.html -share/doc/postgresql/html/db-destroy.html -share/doc/postgresql/html/developer.html -share/doc/postgresql/html/doc-build.html -share/doc/postgresql/html/doc-sources.html -share/doc/postgresql/html/doc-toolsets.html -share/doc/postgresql/html/docguide.html -share/doc/postgresql/html/ecpg-concept.html -share/doc/postgresql/html/ecpg-develop.html -share/doc/postgresql/html/ecpg-limitations.html -share/doc/postgresql/html/ecpg-porting.html -share/doc/postgresql/html/ecpg-use.html -share/doc/postgresql/html/executor.html -share/doc/postgresql/html/explicit-joins.html -share/doc/postgresql/html/extend.html -share/doc/postgresql/html/functions-datetime.html -share/doc/postgresql/html/functions-aggregate.html -share/doc/postgresql/html/functions-comparison.html -share/doc/postgresql/html/functions-conditional.html -share/doc/postgresql/html/functions-formatting.html -share/doc/postgresql/html/functions-geometry.html -share/doc/postgresql/html/functions-matching.html -share/doc/postgresql/html/functions-math.html -share/doc/postgresql/html/functions-misc.html -share/doc/postgresql/html/functions-net.html -share/doc/postgresql/html/functions-string.html -share/doc/postgresql/html/functions.html -share/doc/postgresql/html/geqo-intro2.html -share/doc/postgresql/html/geqo-pg-intro.html -share/doc/postgresql/html/geqo.html -share/doc/postgresql/html/gist.html -share/doc/postgresql/html/groups.html -share/doc/postgresql/html/history.html -share/doc/postgresql/html/index.html -share/doc/postgresql/html/indexcost.html -share/doc/postgresql/html/indices-functional.html -share/doc/postgresql/html/indices-multicolumn.html -share/doc/postgresql/html/indices-opclass.html -share/doc/postgresql/html/indices-types.html -share/doc/postgresql/html/indices-unique.html -share/doc/postgresql/html/indices.html -share/doc/postgresql/html/inherit.html -share/doc/postgresql/html/install-getsource.html -share/doc/postgresql/html/install-post.html -share/doc/postgresql/html/install-procedure.html -share/doc/postgresql/html/install-requirements.html -share/doc/postgresql/html/install-upgrading.html -share/doc/postgresql/html/install-win32.html -share/doc/postgresql/html/installation.html -share/doc/postgresql/html/jdbc-ext.html -share/doc/postgresql/html/jdbc-lo.html -share/doc/postgresql/html/jdbc.html -share/doc/postgresql/html/jdbc-query.html -share/doc/postgresql/html/jdbc-reading.html -share/doc/postgresql/html/jdbc-thread.html -share/doc/postgresql/html/jdbc-update.html -share/doc/postgresql/html/jdbc-use.html -share/doc/postgresql/html/kernel-resources.html -share/doc/postgresql/html/keys.html -share/doc/postgresql/html/largeobjects.html -share/doc/postgresql/html/libpgtcl-examples.html -share/doc/postgresql/html/libpgtcl-ref.html -share/doc/postgresql/html/libpq-async.html -share/doc/postgresql/html/libpq-control.html -share/doc/postgresql/html/libpq-copy.html -share/doc/postgresql/html/libpq-envars.html -share/doc/postgresql/html/libpq-example.html -share/doc/postgresql/html/libpq-exec.html -share/doc/postgresql/html/libpq-fastpath.html -share/doc/postgresql/html/libpq-notify.html -share/doc/postgresql/html/libpq.html -share/doc/postgresql/html/libpq-threading.html -share/doc/postgresql/html/libpq-trace.html -share/doc/postgresql/html/libpqplusplus.html -share/doc/postgresql/html/libpqpp-classes.html -share/doc/postgresql/html/libpqpp-connect.html -share/doc/postgresql/html/libpqpp-copy.html -share/doc/postgresql/html/libpqpp-exec.html -share/doc/postgresql/html/libpqpp-notify.html -share/doc/postgresql/html/lisp.html -share/doc/postgresql/html/ln11330.html -share/doc/postgresql/html/ln1274.html -share/doc/postgresql/html/ln15181.html -share/doc/postgresql/html/ln24.html -share/doc/postgresql/html/ln25010.html -share/doc/postgresql/html/ln37176.html -share/doc/postgresql/html/ln8.html -share/doc/postgresql/html/lo-funcs.html -share/doc/postgresql/html/lo-implementation.html -share/doc/postgresql/html/lo-interfaces.html -share/doc/postgresql/html/lo-libpq.html -share/doc/postgresql/html/lo-sample.html -share/doc/postgresql/html/locking-indices.html -share/doc/postgresql/html/locking-tables.html -share/doc/postgresql/html/manage-ag-accessdb.html -share/doc/postgresql/html/manage-ag-dropdb.html -share/doc/postgresql/html/manage.html -share/doc/postgresql/html/managing-databases.html -share/doc/postgresql/html/migration.html -share/doc/postgresql/html/more-advanced.html -share/doc/postgresql/html/multibyte.html -share/doc/postgresql/html/mvcc.html -share/doc/postgresql/html/non-atomic-values.html -share/doc/postgresql/html/notation.html -share/doc/postgresql/html/odbc-applixware.html -share/doc/postgresql/html/odbc-config.html -share/doc/postgresql/html/odbc-install.html -share/doc/postgresql/html/odbc-windows.html -share/doc/postgresql/html/odbc.html -share/doc/postgresql/html/organization.html -share/doc/postgresql/html/overview.html -share/doc/postgresql/html/page.html -share/doc/postgresql/html/parser-stage.html -share/doc/postgresql/html/partial-index.html -share/doc/postgresql/html/performance-tips.html -share/doc/postgresql/html/perm-functions.html -share/doc/postgresql/html/pg-system-catalogs.html -share/doc/postgresql/html/pgeasy-chapter.html -share/doc/postgresql/html/pgtcl-pgconndefaults.html -share/doc/postgresql/html/pgtcl-pgconnect.html -share/doc/postgresql/html/pgtcl-pgdisconnect.html -share/doc/postgresql/html/pgtcl-pgexec.html -share/doc/postgresql/html/pgtcl-pglisten.html -share/doc/postgresql/html/pgtcl-pgloclose.html -share/doc/postgresql/html/pgtcl-pglocreat.html -share/doc/postgresql/html/pgtcl-pgloexport.html -share/doc/postgresql/html/pgtcl-pgloimport.html -share/doc/postgresql/html/pgtcl-pglolseek.html -share/doc/postgresql/html/pgtcl-pgloopen.html -share/doc/postgresql/html/pgtcl-pgloread.html -share/doc/postgresql/html/pgtcl-pglotell.html -share/doc/postgresql/html/pgtcl-pglounlink.html -share/doc/postgresql/html/pgtcl-pglowrite.html -share/doc/postgresql/html/pgtcl-pgresult.html -share/doc/postgresql/html/pgtcl-pgselect.html -share/doc/postgresql/html/pgtcl.html -share/doc/postgresql/html/planner-optimizer.html -share/doc/postgresql/html/plperl-use.html -share/doc/postgresql/html/plperl.html -share/doc/postgresql/html/plpgsql-description.html -share/doc/postgresql/html/plpgsql-examples.html -share/doc/postgresql/html/plpgsql-porting.html -share/doc/postgresql/html/plpgsql-trigger.html -share/doc/postgresql/html/plpgsql.html -share/doc/postgresql/html/pltcl-description.html -share/doc/postgresql/html/pltcl.html -share/doc/postgresql/html/populate.html -share/doc/postgresql/html/postgres.html -share/doc/postgresql/html/postmaster-shutdown.html -share/doc/postgresql/html/postmaster-start.html -share/doc/postgresql/html/preface.html -share/doc/postgresql/html/privileges.html -share/doc/postgresql/html/programmer-client.html -share/doc/postgresql/html/programmer-pl.html -share/doc/postgresql/html/programmer-server.html -share/doc/postgresql/html/programmer.html -share/doc/postgresql/html/protocol-message-formats.html -share/doc/postgresql/html/protocol-message-types.html -share/doc/postgresql/html/protocol-protocol.html -share/doc/postgresql/html/protocol.html -share/doc/postgresql/html/pygresql.html -share/doc/postgresql/html/pygresql-close.html -share/doc/postgresql/html/pygresql-connect.html -share/doc/postgresql/html/pygresql-db-api.html -share/doc/postgresql/html/pygresql-db-clear.html -share/doc/postgresql/html/pygresql-db-delete.html -share/doc/postgresql/html/pygresql-db-get-attnames.html -share/doc/postgresql/html/pygresql-db-get-databases.html -share/doc/postgresql/html/pygresql-db-get-tables.html -share/doc/postgresql/html/pygresql-db-get.html -share/doc/postgresql/html/pygresql-db-insert.html -share/doc/postgresql/html/pygresql-db-pkey.html -share/doc/postgresql/html/pygresql-db-update.html -share/doc/postgresql/html/pygresql-endcopy.html -share/doc/postgresql/html/pygresql-fileno.html -share/doc/postgresql/html/pygresql-get-defbase.html -share/doc/postgresql/html/pygresql-get-defhost.html -share/doc/postgresql/html/pygresql-get-defopt.html -share/doc/postgresql/html/pygresql-get-defport.html -share/doc/postgresql/html/pygresql-get-deftty.html -share/doc/postgresql/html/pygresql-getline.html -share/doc/postgresql/html/pygresql-getlo.html -share/doc/postgresql/html/pygresql-getnotify.html -share/doc/postgresql/html/pygresql-inserttable.html -share/doc/postgresql/html/pygresql-locreate.html -share/doc/postgresql/html/pygresql-loimport.html -share/doc/postgresql/html/pygresql-pg-db.html -share/doc/postgresql/html/pygresql-pg-functions.html -share/doc/postgresql/html/pygresql-pg-pglarge.html -share/doc/postgresql/html/pygresql-pg-pgobject.html -share/doc/postgresql/html/pygresql-pg-pgqueryobject.html -share/doc/postgresql/html/pygresql-pglargeobject-close.html -share/doc/postgresql/html/pygresql-pglargeobject-export.html -share/doc/postgresql/html/pygresql-pglargeobject-open.html -share/doc/postgresql/html/pygresql-pglargeobject-read.html -share/doc/postgresql/html/pygresql-pglargeobject-seek.html -share/doc/postgresql/html/pygresql-pglargeobject-size.html -share/doc/postgresql/html/pygresql-pglargeobject-tell.html -share/doc/postgresql/html/pygresql-pglargeobject-unlink.html -share/doc/postgresql/html/pygresql-pglargeobject-write.html -share/doc/postgresql/html/pygresql-pgqueryobject-dictresult.html -share/doc/postgresql/html/pygresql-pgqueryobject-fieldname.html -share/doc/postgresql/html/query.html -share/doc/postgresql/html/pygresql-pgqueryobject-fieldnum.html -share/doc/postgresql/html/pygresql-pgqueryobject-getresult.html -share/doc/postgresql/html/pygresql-pgqueryobject-listfields.html -share/doc/postgresql/html/pygresql-pgqueryobject-ntuples.html -share/doc/postgresql/html/pygresql-putline.html -share/doc/postgresql/html/pygresql-query.html -share/doc/postgresql/html/pygresql-reset.html -share/doc/postgresql/html/pygresql-set-defbase.html -share/doc/postgresql/html/pygresql-set-defhost.html -share/doc/postgresql/html/pygresql-set-defopt.html -share/doc/postgresql/html/pygresql-set-defport.html -share/doc/postgresql/html/pygresql-set-deftty.html -share/doc/postgresql/html/queries-limit.html -share/doc/postgresql/html/queries-order.html -share/doc/postgresql/html/queries-select-lists.html -share/doc/postgresql/html/queries-union.html -share/doc/postgresql/html/queries.html -share/doc/postgresql/html/query-agg.html -share/doc/postgresql/html/query-concepts.html -share/doc/postgresql/html/query-delete.html -share/doc/postgresql/html/query-join.html -share/doc/postgresql/html/query-populate.html -share/doc/postgresql/html/query-query.html -share/doc/postgresql/html/query-selectinto.html -share/doc/postgresql/html/query-table.html -share/doc/postgresql/html/query-update.html -share/doc/postgresql/html/recode.html -share/doc/postgresql/html/recovery.html -share/doc/postgresql/html/reference-client.html -share/doc/postgresql/html/reference-server.html -share/doc/postgresql/html/reference.html -share/doc/postgresql/html/regress-platform.html -share/doc/postgresql/html/regress.html -share/doc/postgresql/html/release-0-01.html -share/doc/postgresql/html/release-0-02.html -share/doc/postgresql/html/release-0-03.html -share/doc/postgresql/html/release-1-0.html -share/doc/postgresql/html/release-1-01.html -share/doc/postgresql/html/release-1-02.html -share/doc/postgresql/html/release-1-09.html -share/doc/postgresql/html/release-6-0.html -share/doc/postgresql/html/release-6-1-1.html -share/doc/postgresql/html/release-6-1.html -share/doc/postgresql/html/release-6-2-1.html -share/doc/postgresql/html/release-6-2.html -share/doc/postgresql/html/release-6-3-1.html -share/doc/postgresql/html/release-6-3-2.html -share/doc/postgresql/html/release-6-3.html -share/doc/postgresql/html/release-6-4-1.html -share/doc/postgresql/html/release-6-4-2.html -share/doc/postgresql/html/release-6-4.html -share/doc/postgresql/html/release-6-5-1.html -share/doc/postgresql/html/release-6-5-2.html -share/doc/postgresql/html/release-6-5-3.html -share/doc/postgresql/html/release-6-5.html -share/doc/postgresql/html/release-7-0-1.html -share/doc/postgresql/html/release-7-0-2.html -share/doc/postgresql/html/release-7-0-3.html -share/doc/postgresql/html/release-7-0.html -share/doc/postgresql/html/release-7-1.html -share/doc/postgresql/html/release-7-1-1.html -share/doc/postgresql/html/release-7-1-2.html -share/doc/postgresql/html/release.html -share/doc/postgresql/html/relmodel-formal.html -share/doc/postgresql/html/relmodel-oper.html -share/doc/postgresql/html/resources.html -share/doc/postgresql/html/rule-system.html -share/doc/postgresql/html/rules-insert.html -share/doc/postgresql/html/rules-permissions.html -share/doc/postgresql/html/rules-triggers.html -share/doc/postgresql/html/rules-views.html -share/doc/postgresql/html/rules.html -share/doc/postgresql/html/runtime-config.html -share/doc/postgresql/html/runtime.html -share/doc/postgresql/html/source.html -share/doc/postgresql/html/spi-examples.html -share/doc/postgresql/html/spi-interface-support.html -share/doc/postgresql/html/spi-memory.html -share/doc/postgresql/html/spi-spiconnect.html -share/doc/postgresql/html/spi-spicopytuple.html -share/doc/postgresql/html/spi-spiexec.html -share/doc/postgresql/html/spi-spiexecp.html -share/doc/postgresql/html/spi-spifinish.html -share/doc/postgresql/html/spi-spifname.html -share/doc/postgresql/html/spi-spifnumber.html -share/doc/postgresql/html/spi-spigetbinval.html -share/doc/postgresql/html/spi-spigetrelname.html -share/doc/postgresql/html/spi-spigettype.html -share/doc/postgresql/html/spi-spigettypeid.html -share/doc/postgresql/html/spi-spigetvalue.html -share/doc/postgresql/html/spi-spimodifytuple.html -share/doc/postgresql/html/spi-spipalloc.html -share/doc/postgresql/html/spi-spipfree.html -share/doc/postgresql/html/spi-spiprepare.html -share/doc/postgresql/html/spi-spirepalloc.html -share/doc/postgresql/html/spi-spisaveplan.html -share/doc/postgresql/html/spi-visibility.html -share/doc/postgresql/html/spi.html -share/doc/postgresql/html/sql-abort.html -share/doc/postgresql/html/sql-altergroup.html -share/doc/postgresql/html/sql-altertable.html -share/doc/postgresql/html/sql-alteruser.html -share/doc/postgresql/html/sql-begin.html -share/doc/postgresql/html/sql-checkpoint.html -share/doc/postgresql/html/sql-close.html -share/doc/postgresql/html/sql-cluster.html -share/doc/postgresql/html/sql-commands.html -share/doc/postgresql/html/sql-comment.html -share/doc/postgresql/html/sql-commit.html -share/doc/postgresql/html/sql-copy.html -share/doc/postgresql/html/sql-createaggregate.html -share/doc/postgresql/html/sql-createconstraint.html -share/doc/postgresql/html/sql-createdatabase.html -share/doc/postgresql/html/sql-createfunction.html -share/doc/postgresql/html/sql-creategroup.html -share/doc/postgresql/html/sql-createindex.html -share/doc/postgresql/html/sql-createlanguage.html -share/doc/postgresql/html/sql-createoperator.html -share/doc/postgresql/html/sql-createrule.html -share/doc/postgresql/html/sql-createsequence.html -share/doc/postgresql/html/sql-createtable.html -share/doc/postgresql/html/sql-createtableas.html -share/doc/postgresql/html/sql-createtrigger.html -share/doc/postgresql/html/sql-createtype.html -share/doc/postgresql/html/sql-createuser.html -share/doc/postgresql/html/sql-createview.html -share/doc/postgresql/html/sql-declare.html -share/doc/postgresql/html/sql-delete.html -share/doc/postgresql/html/sql-dropaggregate.html -share/doc/postgresql/html/sql-dropdatabase.html -share/doc/postgresql/html/sql-dropfunction.html -share/doc/postgresql/html/sql-dropgroup.html -share/doc/postgresql/html/sql-dropindex.html -share/doc/postgresql/html/sql-droplanguage.html -share/doc/postgresql/html/sql-dropoperator.html -share/doc/postgresql/html/sql-droprule.html -share/doc/postgresql/html/sql-dropsequence.html -share/doc/postgresql/html/sql-droptable.html -share/doc/postgresql/html/sql-droptrigger.html -share/doc/postgresql/html/sql-droptype.html -share/doc/postgresql/html/sql-dropuser.html -share/doc/postgresql/html/sql-dropview.html -share/doc/postgresql/html/sql-end.html -share/doc/postgresql/html/sql-explain.html -share/doc/postgresql/html/sql-expressions.html -share/doc/postgresql/html/sql-fetch.html -share/doc/postgresql/html/sql-grant.html -share/doc/postgresql/html/sql-insert.html -share/doc/postgresql/html/sql-keywords-appendix.html -share/doc/postgresql/html/sql-language.html -share/doc/postgresql/html/sql-listen.html -share/doc/postgresql/html/sql-load.html -share/doc/postgresql/html/sql-lock.html -share/doc/postgresql/html/sql-move.html -share/doc/postgresql/html/sql-notify.html -share/doc/postgresql/html/sql-precedence.html -share/doc/postgresql/html/sql-reindex.html -share/doc/postgresql/html/sql-reset.html -share/doc/postgresql/html/sql-revoke.html -share/doc/postgresql/html/sql-rollback.html -share/doc/postgresql/html/sql-select.html -share/doc/postgresql/html/sql-selectinto.html -share/doc/postgresql/html/sql-set-constraints.html -share/doc/postgresql/html/sql-set-transaction.html -share/doc/postgresql/html/sql-set.html -share/doc/postgresql/html/sql-show.html -share/doc/postgresql/html/sql-syntax-columns.html -share/doc/postgresql/html/sql-syntax.html -share/doc/postgresql/html/sql-truncate.html -share/doc/postgresql/html/sql-unlisten.html -share/doc/postgresql/html/sql-update.html -share/doc/postgresql/html/sql-vacuum.html -share/doc/postgresql/html/sql.html -share/doc/postgresql/html/ssh-tunnels.html -share/doc/postgresql/html/ssl-tcp.html -share/doc/postgresql/html/start-manage-db.html -share/doc/postgresql/html/start-psql.html -share/doc/postgresql/html/start.html -share/doc/postgresql/html/storage.html -share/doc/postgresql/html/supported-platforms.html -share/doc/postgresql/html/timing-results.html -share/doc/postgresql/html/transaction-iso.html -share/doc/postgresql/html/trigger-datachanges.html -share/doc/postgresql/html/trigger-examples.html -share/doc/postgresql/html/trigger-manager.html -share/doc/postgresql/html/triggers.html -share/doc/postgresql/html/tutorial.html -share/doc/postgresql/html/type-system.html -share/doc/postgresql/html/typeconv-func.html -share/doc/postgresql/html/typeconv-oper.html -share/doc/postgresql/html/typeconv-query.html -share/doc/postgresql/html/typeconv-union-case.html -share/doc/postgresql/html/typeconv.html -share/doc/postgresql/html/units-history.html -share/doc/postgresql/html/user-manag.html -share/doc/postgresql/html/user.html -share/doc/postgresql/html/wal-configuration.html -share/doc/postgresql/html/wal-implementation.html -share/doc/postgresql/html/wal.html -share/doc/postgresql/html/xact-read-committed.html -share/doc/postgresql/html/xact-serializable.html -share/doc/postgresql/html/xaggr.html -share/doc/postgresql/html/xfunc-c.html -share/doc/postgresql/html/xfunc-internal.html -share/doc/postgresql/html/xfunc-overload.html -share/doc/postgresql/html/xfunc-pl.html -share/doc/postgresql/html/xfunc.html -share/doc/postgresql/html/xindex.html -share/doc/postgresql/html/xoper.html -share/doc/postgresql/html/xplang.html -share/doc/postgresql/html/xtypes.html -share/doc/postgresql/html/y2k.html -share/doc/postgresql/html/catalogs.gif -share/doc/postgresql/html/clientserver.gif -share/doc/postgresql/html/connections.gif -@dirrm share/doc/postgresql/html -@dirrm share/doc/postgresql diff --git a/databases/postgresql73-server/pkg-plist.jdbc b/databases/postgresql73-server/pkg-plist.jdbc deleted file mode 100644 index 8f7bd41a54d7..000000000000 --- a/databases/postgresql73-server/pkg-plist.jdbc +++ /dev/null @@ -1,27 +0,0 @@ -share/examples/postgresql/corba/StockClient.java -share/examples/postgresql/corba/StockDB.java -share/examples/postgresql/corba/StockDispenserImpl.java -share/examples/postgresql/corba/StockItemImpl.java -share/examples/postgresql/corba/StockServer.java -share/examples/postgresql/corba/readme -share/examples/postgresql/corba/stock.idl -share/examples/postgresql/corba/stock.sql -@dirrm share/examples/postgresql/corba -share/examples/postgresql/ImageViewer.java -share/examples/postgresql/Unicode.java -share/examples/postgresql/basic.java -share/examples/postgresql/blobtest.java -share/examples/postgresql/datestyle.java -share/examples/postgresql/metadata.java -share/examples/postgresql/psql.java -share/examples/postgresql/threadsafe.java -share/examples/postgresql/README -share/examples/postgresql/Implementation -@dirrm share/examples/postgresql -share/postgresql/java/postgresql-examples.jar -share/postgresql/java/postgresql.jar -share/postgresql/java/retepTools.jar -@dirrm share/postgresql/java -share/java/classes/postgresql.jar -@unexec rmdir %D/share/java/classes 2>/dev/null || true -@unexec rmdir %D/share/java 2>/dev/null || true diff --git a/databases/postgresql73-server/pkg-plist.notk b/databases/postgresql73-server/pkg-plist.notk deleted file mode 100644 index 8dcbc5f88bd6..000000000000 --- a/databases/postgresql73-server/pkg-plist.notk +++ /dev/null @@ -1,6 +0,0 @@ -%%PG_PREFIX%%bin/pgtclsh -%%PG_INCLUDE%%/libpgtcl.h -%%PG_PREFIX%%lib/libpgtcl.a -%%PG_PREFIX%%lib/libpgtcl.so -%%PG_PREFIX%%lib/libpgtcl.so.2 -%%PG_PREFIX%%lib/pltcl.so diff --git a/databases/postgresql73-server/pkg-plist.odbc b/databases/postgresql73-server/pkg-plist.odbc deleted file mode 100644 index f047b7cb64a1..000000000000 --- a/databases/postgresql73-server/pkg-plist.odbc +++ /dev/null @@ -1,10 +0,0 @@ -%%PG_INCLUDE%%/iodbc/iodbc.h -%%PG_INCLUDE%%/iodbc/isql.h -%%PG_INCLUDE%%/iodbc/isqlext.h -@dirrm %%PG_INCLUDE%%/iodbc -%%PG_PREFIX%%lib/libpsqlodbc.a -%%PG_PREFIX%%lib/libpsqlodbc.so -%%PG_PREFIX%%lib/libpsqlodbc.so.0 -etc/postgresql/odbcinst.ini -@dirrm etc/postgresql -share/postgresql/odbc.sql diff --git a/databases/postgresql73-server/pkg-plist.tcl b/databases/postgresql73-server/pkg-plist.tcl deleted file mode 100644 index da5f4367cb80..000000000000 --- a/databases/postgresql73-server/pkg-plist.tcl +++ /dev/null @@ -1,148 +0,0 @@ -%%PG_PREFIX%%bin/pgaccess -%%PG_PREFIX%%bin/pgtclsh -%%PG_PREFIX%%bin/pgtksh -%%PG_INCLUDE%%/libpgtcl.h -%%PG_PREFIX%%lib/libpgtcl.a -%%PG_PREFIX%%lib/libpgtcl.so -%%PG_PREFIX%%lib/libpgtcl.so.2 -%%PG_PREFIX%%lib/pltcl.so -lib/tcl%%WITH_TCL%%/Pgtcl1.3/pkgIndex.tcl -share/postgresql/pgaccess/images/icon_button.gif -share/postgresql/pgaccess/images/icon_checkbutton.gif -share/postgresql/pgaccess/images/icon_entry.gif -share/postgresql/pgaccess/images/icon_frame.gif -share/postgresql/pgaccess/images/icon_label.gif -share/postgresql/pgaccess/images/icon_listbox.gif -share/postgresql/pgaccess/images/icon_query.gif -share/postgresql/pgaccess/images/icon_radiobutton.gif -share/postgresql/pgaccess/images/icon_text.gif -share/postgresql/pgaccess/lib/database.tcl -share/postgresql/pgaccess/lib/forms.tcl -share/postgresql/pgaccess/lib/functions.tcl -share/postgresql/pgaccess/lib/help/abort.hlp -share/postgresql/pgaccess/lib/help/add_records.hlp -share/postgresql/pgaccess/lib/help/alter_table.hlp -share/postgresql/pgaccess/lib/help/alter_user.hlp -share/postgresql/pgaccess/lib/help/author.hlp -share/postgresql/pgaccess/lib/help/begin.hlp -share/postgresql/pgaccess/lib/help/close.hlp -share/postgresql/pgaccess/lib/help/cluster.hlp -share/postgresql/pgaccess/lib/help/commit.hlp -share/postgresql/pgaccess/lib/help/copy.hlp -share/postgresql/pgaccess/lib/help/copyrights.hlp -share/postgresql/pgaccess/lib/help/create_aggregate.hlp -share/postgresql/pgaccess/lib/help/create_database.hlp -share/postgresql/pgaccess/lib/help/create_function.hlp -share/postgresql/pgaccess/lib/help/create_index.hlp -share/postgresql/pgaccess/lib/help/create_language.hlp -share/postgresql/pgaccess/lib/help/create_operator.hlp -share/postgresql/pgaccess/lib/help/create_rule.hlp -share/postgresql/pgaccess/lib/help/create_sequence.hlp -share/postgresql/pgaccess/lib/help/create_table.hlp -share/postgresql/pgaccess/lib/help/create_table_as.hlp -share/postgresql/pgaccess/lib/help/create_trigger.hlp -share/postgresql/pgaccess/lib/help/create_type.hlp -share/postgresql/pgaccess/lib/help/create_user.hlp -share/postgresql/pgaccess/lib/help/create_view.hlp -share/postgresql/pgaccess/lib/help/data_types.hlp -share/postgresql/pgaccess/lib/help/datefunc.hlp -share/postgresql/pgaccess/lib/help/declare.hlp -share/postgresql/pgaccess/lib/help/delete.hlp -share/postgresql/pgaccess/lib/help/drop_aggregate.hlp -share/postgresql/pgaccess/lib/help/drop_database.hlp -share/postgresql/pgaccess/lib/help/drop_function.hlp -share/postgresql/pgaccess/lib/help/drop_index.hlp -share/postgresql/pgaccess/lib/help/drop_language.hlp -share/postgresql/pgaccess/lib/help/drop_operator.hlp -share/postgresql/pgaccess/lib/help/drop_rule.hlp -share/postgresql/pgaccess/lib/help/drop_sequence.hlp -share/postgresql/pgaccess/lib/help/drop_table.hlp -share/postgresql/pgaccess/lib/help/drop_trigger.hlp -share/postgresql/pgaccess/lib/help/drop_type.hlp -share/postgresql/pgaccess/lib/help/drop_user.hlp -share/postgresql/pgaccess/lib/help/drop_view.hlp -share/postgresql/pgaccess/lib/help/explain.hlp -share/postgresql/pgaccess/lib/help/fetch.hlp -share/postgresql/pgaccess/lib/help/form_design.hlp -share/postgresql/pgaccess/lib/help/forms.hlp -share/postgresql/pgaccess/lib/help/functions.hlp -share/postgresql/pgaccess/lib/help/geomfunc.hlp -share/postgresql/pgaccess/lib/help/grant.hlp -share/postgresql/pgaccess/lib/help/history.hlp -share/postgresql/pgaccess/lib/help/index.hlp -share/postgresql/pgaccess/lib/help/inheritance.hlp -share/postgresql/pgaccess/lib/help/insert.hlp -share/postgresql/pgaccess/lib/help/ipv4func.hlp -share/postgresql/pgaccess/lib/help/isolation.hlp -share/postgresql/pgaccess/lib/help/keywords.hlp -share/postgresql/pgaccess/lib/help/listen.hlp -share/postgresql/pgaccess/lib/help/load.hlp -share/postgresql/pgaccess/lib/help/lock.hlp -share/postgresql/pgaccess/lib/help/mathfunc.hlp -share/postgresql/pgaccess/lib/help/move.hlp -share/postgresql/pgaccess/lib/help/mvcc.hlp -share/postgresql/pgaccess/lib/help/new_query.hlp -share/postgresql/pgaccess/lib/help/new_table.hlp -share/postgresql/pgaccess/lib/help/notify.hlp -share/postgresql/pgaccess/lib/help/open_query.hlp -share/postgresql/pgaccess/lib/help/open_table.hlp -share/postgresql/pgaccess/lib/help/pgfunctions.hlp -share/postgresql/pgaccess/lib/help/postgresql.hlp -share/postgresql/pgaccess/lib/help/queries.hlp -share/postgresql/pgaccess/lib/help/reports.hlp -share/postgresql/pgaccess/lib/help/reset.hlp -share/postgresql/pgaccess/lib/help/revoke.hlp -share/postgresql/pgaccess/lib/help/rollback.hlp -share/postgresql/pgaccess/lib/help/schema.hlp -share/postgresql/pgaccess/lib/help/scripts.hlp -share/postgresql/pgaccess/lib/help/select.hlp -share/postgresql/pgaccess/lib/help/select_into.hlp -share/postgresql/pgaccess/lib/help/sequences.hlp -share/postgresql/pgaccess/lib/help/set.hlp -share/postgresql/pgaccess/lib/help/show.hlp -share/postgresql/pgaccess/lib/help/sql_guide.hlp -share/postgresql/pgaccess/lib/help/sqlfunc.hlp -share/postgresql/pgaccess/lib/help/stringfunc.hlp -share/postgresql/pgaccess/lib/help/tables.hlp -share/postgresql/pgaccess/lib/help/unlisten.hlp -share/postgresql/pgaccess/lib/help/update.hlp -share/postgresql/pgaccess/lib/help/users.hlp -share/postgresql/pgaccess/lib/help/vacuum.hlp -share/postgresql/pgaccess/lib/help/view_table_structure.hlp -share/postgresql/pgaccess/lib/help/views.hlp -share/postgresql/pgaccess/lib/help/visual_designer.hlp -share/postgresql/pgaccess/lib/help/y2k.hlp -share/postgresql/pgaccess/lib/help.tcl -share/postgresql/pgaccess/lib/languages/czech -share/postgresql/pgaccess/lib/languages/chinese_big5 -share/postgresql/pgaccess/lib/languages/chinese_gb -share/postgresql/pgaccess/lib/languages/deutsch -share/postgresql/pgaccess/lib/languages/euskara -share/postgresql/pgaccess/lib/languages/francais -share/postgresql/pgaccess/lib/languages/italiano -share/postgresql/pgaccess/lib/languages/japanese -share/postgresql/pgaccess/lib/languages/magyar -share/postgresql/pgaccess/lib/languages/nederlands -share/postgresql/pgaccess/lib/languages/portugues -share/postgresql/pgaccess/lib/languages/romana -share/postgresql/pgaccess/lib/languages/russian.koi8r -share/postgresql/pgaccess/lib/languages/russian_win -share/postgresql/pgaccess/lib/languages/spanish -share/postgresql/pgaccess/lib/mainlib.tcl -share/postgresql/pgaccess/lib/preferences.tcl -share/postgresql/pgaccess/lib/queries.tcl -share/postgresql/pgaccess/lib/reports.tcl -share/postgresql/pgaccess/lib/schema.tcl -share/postgresql/pgaccess/lib/scripts.tcl -share/postgresql/pgaccess/lib/sequences.tcl -share/postgresql/pgaccess/lib/tables.tcl -share/postgresql/pgaccess/lib/users.tcl -share/postgresql/pgaccess/lib/views.tcl -share/postgresql/pgaccess/lib/visualqb.tcl -share/postgresql/pgaccess/main.tcl -@dirrm share/postgresql/pgaccess/images -@dirrm share/postgresql/pgaccess/lib/help -@dirrm share/postgresql/pgaccess/lib/languages -@dirrm share/postgresql/pgaccess/lib -@dirrm share/postgresql/pgaccess -@dirrm lib/tcl%%WITH_TCL%%/Pgtcl1.3 diff --git a/databases/postgresql73-server/scripts/configure.postgresql b/databases/postgresql73-server/scripts/configure.postgresql deleted file mode 100644 index 0b288ad43d25..000000000000 --- a/databases/postgresql73-server/scripts/configure.postgresql +++ /dev/null @@ -1,278 +0,0 @@ -#!/bin/sh -# -*- tab-width: 4; -*- -# ex:ts=4 -# -# $FreeBSD$ -# -if [ -f ${WRKDIRPREFIX}${CURDIR}/Makefile.inc ]; then - exit -fi - -if [ ! "${BATCH}" ]; then - dialog --title "Backup your data NOW" \ - --msgbox "`sed -e \"s#%%PREFIX%%#${PREFIX}#\" < ${FILESDIR}/pre-install-notes`" \ - -1 -1 -fi - -if [ "${BATCH}" ]; then - set \"MultiByte\" \"ODBC\" \"SSL\" \"TCL\" \"TCLTK\" -else - /usr/bin/dialog --title "configuration options" --clear \ - --checklist "\n\ -Please select desired options:" -1 -1 7 \ -JDBC "Java DataBase Connectivity" OFF \ -MultiByte "Multibyte for Multilingualism" ON \ -ODBC "Open Database Connectivity" ON \ -TCL "Tcl" ON \ -TCLTK "Tcl/Tk" ON \ -SSL "Secure Socket Layer" ON \ -KRB5 "Kerberos 5" OFF \ -2> /tmp/checklist.tmp.$$ - - retval=$? - - if [ -s /tmp/checklist.tmp.$$ ]; then - set `cat /tmp/checklist.tmp.$$` - fi - rm -f /tmp/checklist.tmp.$$ - - case $retval in - 0) if [ -z "$*" ]; then - echo "Nothing selected" - fi - ;; - 1) echo "Cancel pressed." - exit 1 - ;; - esac -fi - -${MKDIR} ${WRKDIRPREFIX}${CURDIR} -exec > ${WRKDIRPREFIX}${CURDIR}/Makefile.inc - -while [ "$1" ]; do - case $1 in - \"JDBC\") - # We use JAVA_HOME if set correctly. If the user has - # specified a JVM with JAVA_HOME or via the javavmwrapper, - # we validate that it really exists. It is unnecessarily - # complicated and error prone to try to figure out the - # correct java version just to be able to determine a - # BUILD_DEPEND in this case. Instead, assume that a set - # JAVA_HOME together with simple sanity check mean we have - # an installed JVM, and we don't bother setting - # BUILD_DEPENDS. - - echo "# JDBC" - # if JAVA_HOME is set and exists, use it - if [ "${JAVA_HOME}" -a -x "${JAVA_HOME}/bin/javac" ]; then - echo JAVA_HOME=${JAVA_HOME} - else - # No JAVA_HOME, check javavmwrapper's config file - if [ -r "${LOCALBASE}/etc/javavms" ]; then - VMS=`/usr/bin/sed 's|#.*||' < "${LOCALBASE}/etc/javavms" | uniq` - for JAVAVM in ${VMS}; do - if [ -x "${JAVAVM}" ]; then - JAVA_HOME=`echo ${JAVAVM} | /usr/bin/sed 's|/bin/java$||` - break - fi - done - fi - if [ "${JAVA_HOME}" -a -x "${JAVA_HOME}/bin/javac" ]; then - # yep, wrapper was good - echo JAVA_HOME=${JAVA_HOME} - else - # nothing, use our boring 1.1.8, the only native non-beta jdk :( - echo BUILD_DEPENDS+= \${LOCALBASE}/jdk1.1.8/bin/javac:\${PORTSDIR}/java/jdk - echo JAVA_HOME=\${LOCALBASE}/jdk1.1.8 - fi - fi - cat <<-EOF - BUILD_DEPENDS+= \${LOCALBASE}/bin/ant:\${PORTSDIR}/devel/jakarta-ant - CONFIGURE_ENV+= ANT=\${LOCALBASE}/bin/ant - WITH_JDBC=YES - MAKE_ENV+= JAVA_HOME=\${JAVA_HOME} - SCRIPTS_ENV+= JAVA_HOME=\${JAVA_HOME} - CONFIGURE_ARGS+= --with-java - - EOF - ;; - \"MultiByte\") - MULTIBYTE=1 - ;; - \"ODBC\") - cat <<-EOF - # ODBC - WITH_ODBC=YES - CONFIGURE_ARGS+= --with-odbc - - EOF - ;; - \"TCL\") - TCL=1 - ;; - \"TCLTK\") - echo "#TCLTK" - echo WITH_TK=YES - echo - TCL=1 - ;; - \"SSL\") - cat <<-EOF - # SSL - USE_OPENSSL= yes - CFLAGS+= -DUSE_SSL - WITH_SSL= yes - CONFIGURE_ENV+= LDFLAGS="-L\${OPENSSLLIB} -lssl -lcrypto" - CONFIGURE_ARGS+= --with-openssl - - EOF - ;; - \"KRB5\") - KRB5=1 - ;; - \"nothing\"|true) - ;; - *) - echo "Invalid option(s): $*" > /dev/stderr - rm -f ${WRKDIRPREFIX}${CURDIR}/Makefile.inc - exit 1 - ;; - esac - shift -done - -exec > /dev/stderr - -# if multibyte, determine charset -echo "# Multibyte" >> ${WRKDIRPREFIX}${CURDIR}/Makefile.inc - -if [ ! "${MULTIBYTE}" ]; then - echo "WITHOUT_MULTIBYTE=YES" >> ${WRKDIRPREFIX}${CURDIR}/Makefile.inc -else - if [ "${BATCH}" ]; then - set "nothing" - else - /usr/bin/dialog --title "configuration options" --clear \ - --radiolist "\n\ -Please select desired options:" -1 -1 16 \ -nothing "Default Encoding" ON \ -SQL_ASCII "SQL_ASCII" OFF \ -LATIN1 "LATIN1" OFF \ -LATIN2 "LATIN2" OFF \ -LATIN3 "LATIN3" OFF \ -LATIN4 "LATIN4" OFF \ -LATIN5 "LATIN5" OFF \ -EUC_JP "EUC_JP" OFF \ -EUC_CN "EUC_CN" OFF \ -EUC_KR "EUC_KR" OFF \ -EUC_TW "EUC_TW" OFF \ -KOI8 "KOI8" OFF \ -UNICODE "UNICODE" OFF \ -MULE_INTERNAL "MULE_INTERNAL" OFF \ -WIN "WIN" OFF \ -ALT "ALT" OFF \ -2> /tmp/checklist.tmp.$$ - - retval=$? - - if [ -s /tmp/checklist.tmp.$$ ]; then - set `cat /tmp/checklist.tmp.$$` - fi - rm -f /tmp/checklist.tmp.$$ - if [ $retval = 1 ]; then - echo "Cancel pressed." - rm ${WRKDIRPREFIX}${CURDIR}/Makefile.inc - exit 1 - fi - fi - - if [ "$1" = "nothing" ]; then - echo "CONFIGURE_ARGS+= --enable-multibyte" \ - >> ${WRKDIRPREFIX}${CURDIR}/Makefile.inc - else - echo "CONFIGURE_ARGS+= --enable-multibyte=$1" \ - >> ${WRKDIRPREFIX}${CURDIR}/Makefile.inc - fi -fi -echo - -if [ "${TCL}" ]; then - echo "# TCL" >> ${WRKDIRPREFIX}${CURDIR}/Makefile.inc - if [ "${BATCH}" ]; then - echo WITH_TCL=8.3 >> ${WRKDIRPREFIX}${CURDIR}/Makefile.inc - else - dialog --title "TCL version" \ - --inputbox "Please enter TCL version. Default is 8.3." -1 -1 "8.3" \ - 2> /tmp/checklist.tmp.$$ - retval=$? - if [ -s /tmp/checklist.tmp.$$ ]; then - set `cat /tmp/checklist.tmp.$$` - fi - rm -f /tmp/checklist.tmp.$$ - case $retval in - 0) if [ -z "$*" ]; then - echo "Nothing selected" - fi - ;; - 1) echo "Cancel pressed." - rm -f ${WRKDIRPREFIX}${CURDIR}/Makefile.inc - exit 1 - ;; - esac - echo WITH_TCL=$1 >> ${WRKDIRPREFIX}${CURDIR}/Makefile.inc - fi - cat <<-EOF >> ${WRKDIRPREFIX}${CURDIR}/Makefile.inc - CONFIGURE_ARGS+= --with-tcl --with-tclconfig="\${TCLCONFIG}" - TCLV=\${WITH_TCL:S/.//} - TCL_INCDIR= \${LOCALBASE}/include/tcl\${WITH_TCL} - MAKE_ENV+= TCL_INCDIR=\${TCL_INCDIR} - LIB_DEPENDS+= tcl\${TCLV}:\${PORTSDIR}/lang/tcl\${TCLV} - TCLCONFIG= "\${LOCALBASE}/lib/tcl\${WITH_TCL}" - .if defined(WITH_TK) - CONFIGURE_ARGS+= --with-tkconfig="\${TKCONFIG}" - TK_INCDIR= \${LOCALBASE}/include/tk\${WITH_TCL} - CONFIGURE_ENV+= WISH=\${LOCALBASE}/bin/wish\${WITH_TCL} - LIB_DEPENDS+= tk\${TCLV}:\${PORTSDIR}/x11-toolkits/tk\${TCLV} - TKCONFIG= "\${LOCALBASE}/lib/tk\${WITH_TCL}" - TCLCONFIG+= \${TKCONFIG} - TCL_PLIST= pkg-plist.tcl - .else - TCL_PLIST= pkg-plist.notk - CONFIGURE_ARGS+= --without-tk - .endif - - EOF -fi - -if [ "${KRB5}" ]; then - if [ "${BATCH}" ]; then - # never gets here, but what the heck... - echo KRB5_HOME=\${LOCALBASE} >> ${WRKDIRPREFIX}${CURDIR}/Makefile.inc - else - dialog --inputbox "Please enter the KRB5_HOME path" -1 -1 "${KRB_HOME:-${LOCALBASE}}" \ - 2> /tmp/checklist.tmp.$$ - retval=$? - if [ -s /tmp/checklist.tmp.$$ ]; then - set `cat /tmp/checklist.tmp.$$` - fi - rm -f /tmp/checklist.tmp.$$ - case $retval in - 0) if [ -z "$*" ]; then - echo "No input" - fi - ;; - 1) echo "Cancel pressed." - rm -f ${WRKDIRPREFIX}${CURDIR}/Makefile.inc - exit 1 - ;; - esac - echo KRB5_HOME=\"$1\" >> ${WRKDIRPREFIX}${CURDIR}/Makefile.inc - fi - cat <<-EOF >> ${WRKDIRPREFIX}${CURDIR}/Makefile.inc - .if defined(KRB5_HOME) && exists(\${KRB5_HOME}) - CONFIGURE_KRB= --with-krb5=\${KRB5_HOME} - .endif - - EOF -fi diff --git a/databases/postgresql73/Makefile b/databases/postgresql73/Makefile deleted file mode 100644 index 4a30008d77bc..000000000000 --- a/databases/postgresql73/Makefile +++ /dev/null @@ -1,198 +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.1.3 -CATEGORIES= databases -MASTER_SITES= ftp://ftp.sunet.se/pub/unix/databases/relational/postgresql/%SUBDIR%/ \ - ftp://ftp.postgresql.org/pub/%SUBDIR%/ \ - ftp://ftp.de.postgresql.org/%SUBDIR%/ \ - ftp://ftp.digex.net/pub/packages/database/postgresql/%SUBDIR%/ \ - ftp://ftp.chg.ru/pub/databases/postgresql/%SUBDIR%/ \ - ${MASTER_SITE_RINGSERVER:S,%SUBDIR%,misc/db/postgresql/&,} -MASTER_SITE_SUBDIR= source/v${PORTVERSION} -DISTFILES= ${PORTNAME}-base-${PORTVERSION}${EXTRACT_SUFX} \ - ${PORTNAME}-opt-${PORTVERSION}${EXTRACT_SUFX} -.if !defined(NOPORTDOCS) -DISTFILES+= ${PORTNAME}-docs-${PORTVERSION}${EXTRACT_SUFX} -.endif - -MAINTAINER= girgen@partitur.se - -DIST_SUBDIR= postgresql - -INSTALLS_SHLIB= YES - -DOCDIR= ${WRKDIR}/${DISTNAME}/doc -PLIST= ${WRKDIR}/.PLIST.generated - -USE_GMAKE= YES -HAS_CONFIGURE= YES -CONFIGURE_ARGS= --enable-locale \ - --enable-syslog --with-CXX \ - --sysconfdir=${PREFIX}/etc/postgresql \ - --with-includes="${PREFIX}/include ${TCL_INCDIR} ${TK_INCDIR}" \ - --with-libraries=${PREFIX}/lib -.if defined(WITH_OLD_LAYOUT) -CONFIGURE_ARGS+=--docdir=${PREFIX}/share/doc --includedir=${PREFIX}/pgsql/include \ - --datadir=${PREFIX}/share \ - --with-template=`uname -s | ${TR} '[A-Z]' '[a-z]'` \ - --prefix=${PREFIX}/pgsql -PG_PREFIX= pgsql/ -PG_INCLUDE= pgsql/include -LDCONFIG_DIRS= %%PREFIX%%/pgsql/lib -MANPREFIX= ${PREFIX}/pgsql -.else -GNU_CONFIGURE= YES -CONFIGURE_ARGS+=--docdir=${PREFIX}/share/doc --includedir=${PREFIX}/include/pgsql -PG_PREFIX="" -PG_INCLUDE= include/pgsql -.endif - -PLIST_SUB= PG_PREFIX="${PG_PREFIX}" PG_INCLUDE="${PG_INCLUDE}" WITH_TCL="${WITH_TCL}" - -MAN1= createdb.1 createlang.1 createuser.1 dropdb.1 droplang.1 \ - dropuser.1 ecpg.1 initdb.1 initlocation.1 ipcclean.1 pg_config.1 \ - pg_ctl.1 pg_dump.1 pg_dumpall.1 pg_passwd.1 pg_restore.1 \ - pgaccess.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 checkpoint.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 set_constraints.l set_transaction.l show.l \ - truncate.l unlisten.l update.l vacuum.l - -SCRIPTS_ENV= WRKDIRPREFIX="${WRKDIRPREFIX}" \ - WRKDIR="${WRKDIR}" \ - FILESDIR="${FILESDIR}" \ - TOUCH="${TOUCH}" \ - MKDIR="${MKDIR}" \ - NO_OPENSSL="${NO_OPENSSL}" \ - DISTNAME="${DISTNAME}" - -# We must .include here because we need the Makefile.inc @ pre-install -# to determine the correct plist. -.if exists(${WRKDIRPREFIX}${.CURDIR}/Makefile.inc) -.include "${WRKDIRPREFIX}${.CURDIR}/Makefile.inc" -.else -# make utility targets like depends and describe happy -LIB_DEPENDS= tcl83:${PORTSDIR}/lang/tcl83 \ - tk83:${PORTSDIR}/x11-toolkits/tk83 -.endif - -pre-everything:: - @ ${SETENV} ${SCRIPTS_ENV} ${SH} ${SCRIPTDIR}/configure.postgresql - -pre-install: - @ ${SETENV} PKG_PREFIX=${PREFIX} ${SH} ${PKGDIR}/pkg-install ${PORTNAME} PRE-INSTALL -.if !defined(BATCH) -# remind folks twice for a while, so they really don't miss the layout shift - @ ${SED} "s|/usr/local|${PREFIX}|g" < ${PKGMESSAGE} | head -n 25 | more -e -.endif - @ ${CP} ${PKGDIR}/pkg-plist ${PLIST} -.if defined(WITHOUT_MULTIBYTE) - @${CP} ${PLIST} ${PLIST}.nomulti ;\ - ${GREP} -v bin/pg_encoding ${PLIST}.nomulti > ${PLIST} -.endif -.if defined(WITH_TCL) - @ ${CP} ${PLIST} ${PLIST}.notcl ;\ - ${CAT} ${PKGDIR}/${TCL_PLIST} ${PLIST}.notcl > ${PLIST} ;\ - ${RM} ${PLIST}.notcl -.endif -.if defined(WITH_ODBC) - @ ${CP} ${PLIST} ${PLIST}.noodbc ;\ - ${CAT} ${PKGDIR}/pkg-plist.odbc ${PLIST}.noodbc > ${PLIST} ;\ - ${RM} ${PLIST}.noodbc -.endif -.if defined(WITH_JDBC) - @ ${CP} ${PLIST} ${PLIST}.nojdbc ;\ - ${CAT} ${PKGDIR}/pkg-plist.jdbc ${PLIST}.nojdbc > ${PLIST} ;\ - ${RM} ${PLIST}.nojdbc -.endif -.if !defined(NOPORTDOCS) - @ ${CAT} ${PKGDIR}/pkg-plist.doc >> ${PLIST} -.endif - -post-install: -# install shell defaults for pgsql user -.for i in profile cshrc - @ ${SED} "s|%%PREFIX%%|${PREFIX}|g; s|%%PG_PREFIX%%|${PG_PREFIX}|g" \ - < ${FILESDIR}/dot.$i.in \ - > ${PREFIX}/share/postgresql/dot.$i.dist; \ - ${CP} ${PREFIX}/share/postgresql/dot.$i.dist ~pgsql/; \ - if [ ! -f ~pgsql/.$i ]; then \ - ${CP} ${PREFIX}/share/postgresql/dot.$i.dist ~pgsql/.$i; \ - fi -.endfor - @ ${SED} -e "s|%%PREFIX%%|${PREFIX}|g; s|%%PG_PREFIX%%|${PG_PREFIX}|g" \ - < ${FILESDIR}/pgsql.sh.tmpl \ - > ${PREFIX}/etc/rc.d/010.pgsql.sh - @ ${CHMOD} 554 ${PREFIX}/etc/rc.d/010.pgsql.sh - @ ${CHOWN} root:pgsql ${PREFIX}/etc/rc.d/010.pgsql.sh -.if defined(WITH_TCL) -# Preparing a loadable TCL-package (pkgIndex.tcl) - @${MKDIR} ${PREFIX}/lib/tcl${WITH_TCL}/Pgtcl1.3 - @${SED} "s|%%PREFIX%%|${PREFIX}|g" < ${FILESDIR}/pkgIndex.tcl.in \ - > ${PREFIX}/lib/tcl${WITH_TCL}/Pgtcl1.3/pkgIndex.tcl -.endif -.if defined(WITH_JDBC) - @ ${MKDIR} -m 0555 ${PREFIX}/share/java/classes - @ ${INSTALL_DATA} ${WRKSRC}/src/interfaces/jdbc/jars/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} "---------------------------------------------------------" -.if !defined(NOPORTDOCS) - @ ${MKDIR} -m 0555 ${PREFIX}/share/examples/postgresql ;\ - cd ${WRKSRC}/src/interfaces/jdbc/example ;\ - pax -rw . ${PREFIX}/share/examples/postgresql -.for i in README Implementation - @ ${INSTALL_DATA} ${WRKSRC}/src/interfaces/jdbc/$i \ - ${PREFIX}/share/examples/postgresql -.endfor - @ ${ECHO_MSG} "---------------------------------------------------------------" - @ ${ECHO_MSG} "Putting java examples into ${PREFIX}/share/examples/postgresql" - @ ${ECHO_MSG} "---------------------------------------------------------------" -.endif -.endif -.if !defined(DEBUG_FLAGS) -.for file in ecpg pg_dump pg_id pg_passwd pg_restore postgres psql - @ strip ${PREFIX}/${PG_PREFIX}bin/${file} -.endfor -.endif -# information overload mode activated, sorry about this... ;-) - @ ${CAT} ${FILESDIR}/post-install-notes ${PKGMESSAGE} |\ - ${SED} "s|/usr/local|${PREFIX}|g" |\ - tee ${PREFIX}/share/postgresql/post-install-notes ;\ - ${INSTALL_DATA} ${PREFIX}/share/postgresql/post-install-notes ~pgsql/. ;\ - ${CHOWN} -R pgsql:pgsql ~pgsql/. -.if defined(WITH_OLD_LAYOUT) - @ ${CHOWN} root:pgsql ${PREFIX}/${PG_PREFIX}lib -.endif - -post-clean: - @ ${RM} -f ${WRKDIRPREFIX}${.CURDIR}/Makefile.inc - -post-extract: ${POSTEXTRACT} - -.include <bsd.port.mk> diff --git a/databases/postgresql73/distinfo b/databases/postgresql73/distinfo deleted file mode 100644 index 23e07754313f..000000000000 --- a/databases/postgresql73/distinfo +++ /dev/null @@ -1,3 +0,0 @@ -MD5 (postgresql/postgresql-base-7.1.3.tar.gz) = f932dea12806972402aaaf17a2a97034 -MD5 (postgresql/postgresql-opt-7.1.3.tar.gz) = e84e9c51b31567d4571c7612e0c0fbd6 -MD5 (postgresql/postgresql-docs-7.1.3.tar.gz) = 7061ab7f7ec3c4d18f8e6cb2858896d0 diff --git a/databases/postgresql73/files/dot.cshrc.in b/databases/postgresql73/files/dot.cshrc.in deleted file mode 100644 index a326041bff7b..000000000000 --- a/databases/postgresql73/files/dot.cshrc.in +++ /dev/null @@ -1,13 +0,0 @@ -set path = ( %%PREFIX%%/%%PG_PREFIX%%bin $path ) - -setenv PGLIB %%PREFIX%%/%%PG_PREFIX%%lib - -# note: PGDATA can be overridden by the -D startup option -setenv PGDATA $HOME/data - -#You might want to set some locale stuff here -#setenv PGDATESTYLE ISO -#setenv LC_ALL sv_SE.ISO_8859-1 - -# if you want to make regression tests use this TZ -#setenv TZ PST8PDT diff --git a/databases/postgresql73/files/dot.profile.in b/databases/postgresql73/files/dot.profile.in deleted file mode 100644 index 4aca6aadd19a..000000000000 --- a/databases/postgresql73/files/dot.profile.in +++ /dev/null @@ -1,18 +0,0 @@ -# both new and old layout's paths, but new path first... -PATH=%%PREFIX%%/%%PG_PREFIX%%bin:${PATH} - -PGLIB=%%PREFIX%%/%%PG_PREFIX%%lib - -# note: PGDATA can be overridden by the -D startup option -PGDATA=${HOME}/data - -export PATH PGLIB PGDATA - -#You might want to set some locale stuff here -#PGDATESTYLE=ISO -#LC_ALL=sv_SE.ISO_8859-1 -#export PGDATESTYLE LC_ALL - -# if you want to make regression tests use this TZ -#TZ=PST8PDT -#export TZ diff --git a/databases/postgresql73/files/patch-aj b/databases/postgresql73/files/patch-aj deleted file mode 100644 index 94c0d6d79991..000000000000 --- a/databases/postgresql73/files/patch-aj +++ /dev/null @@ -1,118 +0,0 @@ ---- src/bin/pg_passwd/pg_passwd.c.orig Sat Mar 24 01:54:55 2001 -+++ src/bin/pg_passwd/pg_passwd.c Wed Apr 18 04:54:14 2001 -@@ -7,6 +7,12 @@ - #include <errno.h> - #include <time.h> - #include <ctype.h> -+ -+#if defined(__FreeBSD__) -+#include <pwd.h> /* defines _PASSWORD_LEN, max # of characters in a password */ -+#include <sys/time.h> /* gettimeofday for password salt */ -+#endif -+ - #define issaltchar(c) (isalnum((unsigned char) (c)) || (c) == '.' || (c) == '/') - - #ifdef HAVE_TERMIOS_H -@@ -23,18 +29,31 @@ - * We assume that the output of crypt(3) is always 13 characters, - * and that at most 8 characters can usefully be sent to it. - * -+ * For FreeBSD, take these values from /usr/include/pwd.h - * Postgres usernames are assumed to be less than NAMEDATALEN chars long. - */ -+#if defined(__FreeBSD__) -+#define CLEAR_PASSWD_LEN _PASSWORD_LEN -+#define CRYPTED_PASSWD_LEN _PASSWORD_LEN /* max length, not containing NULL */ -+#define SALT_LEN 10 -+#else - #define CLEAR_PASSWD_LEN 8 /* not including null */ - #define CRYPTED_PASSWD_LEN 13 /* not including null */ -+#define SALT_LEN 3 -+#endif -+ -+static unsigned char itoa64[] = /* 0 ... 63 => ascii - 64 */ -+ "./0123456789ABCDEFGHIJKLMNOPQRSTUVWXYZabcdefghijklmnopqrstuvwxyz"; -+ - - const char *progname; - - static void usage(void); -+static void to64(char *s, long v, int n); - static void read_pwd_file(char *filename); - static void write_pwd_file(char *filename, char *bkname); - static void encrypt_pwd(char key[CLEAR_PASSWD_LEN + 1], -- char salt[3], -+ char salt[SALT_LEN], - char passwd[CRYPTED_PASSWD_LEN + 1]); - static void prompt_for_username(char *username); - static void prompt_for_password(char *prompt, char *password); -@@ -47,6 +66,15 @@ - printf("Report bugs to <pgsql-bugs@postgresql.org>.\n"); - } - -+static void -+to64(char *s, long v, int n) -+{ -+ while (--n >= 0) { -+ *s++ = itoa64[v&0x3f]; -+ v >>= 6; -+ } -+} -+ - typedef struct - { - char *uname; -@@ -154,7 +182,7 @@ - if (q != NULL) - *(q++) = '\0'; - -- if (strlen(p) != CRYPTED_PASSWD_LEN && strcmp(p, "+") != 0) -+ if (strlen(p) > CRYPTED_PASSWD_LEN && strcmp(p, "+") != 0) - { - fprintf(stderr, "%s:%d: warning: invalid password length\n", - filename, npwds + 1); -@@ -221,15 +249,25 @@ - - static void - encrypt_pwd(char key[CLEAR_PASSWD_LEN + 1], -- char salt[3], -+ char salt[SALT_LEN], - char passwd[CRYPTED_PASSWD_LEN + 1]) - { -+#if !defined(__FreeBSD__) - int n; -- -+#endif - /* select a salt, if not already given */ - if (salt[0] == '\0') - { -+#if defined(__FreeBSD__) -+ struct timeval tv; -+ srandomdev(); -+ gettimeofday(&tv,0); -+ to64(&salt[0], random(), 3); -+ to64(&salt[3], tv.tv_usec, 3); -+ to64(&salt[6], tv.tv_sec, 2); -+ salt[8] = '\0'; - srand(time(NULL)); -+#else - do - { - n = rand() % 256; -@@ -241,6 +279,7 @@ - } while (!issaltchar(n)); - salt[1] = n; - salt[2] = '\0'; -+#endif - } - - /* get encrypted password */ -@@ -335,7 +374,7 @@ - char *filename; - char bkname[MAXPGPATH]; - char username[NAMEDATALEN]; -- char salt[3]; -+ char salt[SALT_LEN]; - char key[CLEAR_PASSWD_LEN + 1], - key2[CLEAR_PASSWD_LEN + 1]; - char e_passwd[CRYPTED_PASSWD_LEN + 1]; diff --git a/databases/postgresql73/files/patch-contrib-retep-build b/databases/postgresql73/files/patch-contrib-retep-build deleted file mode 100644 index 80f40f1cc86d..000000000000 --- a/databases/postgresql73/files/patch-contrib-retep-build +++ /dev/null @@ -1,37 +0,0 @@ -=================================================================== -RCS file: /home/projects/pgsql/cvsroot/pgsql/contrib/retep/build.xml,v -retrieving revision 1.4 -retrieving revision 1.5 -diff -u -r1.4 -r1.5 ---- contrib/retep/build.xml 2001/03/11 11:06:59 1.4 -+++ contrib/retep/build.xml 2001/05/16 16:20:51 1.5 -@@ -2,7 +2,7 @@ - - build file to build the donated retep tools packages - -- $Id: build.xml,v 1.4 2001/03/11 11:06:59 petere Exp $ -+ $Id: build.xml,v 1.5 2001/05/16 16:20:51 momjian Exp $ - - --> - -@@ -22,6 +22,11 @@ - <available property="xml" classname="org.xml.sax.Parser" /> - </target> - -+ <target name="warning" depends="checks" unless="jdk1.2+"> -+ <echo message="WARNING -- contributed retep tools need jdk1.2 or later -- compilation NOT done." /> -+ </target> -+ -+ - <!-- Prepares the build by creating a directory to place the class files --> - <target name="prepare"> - <mkdir dir="${dest}" /> -@@ -35,7 +40,7 @@ - </target> - - <!-- Builds the XML Tools --> -- <target name="compile" depends="checks,prepare"> -+ <target name="compile" depends="checks,prepare,warning" if="jdk1.2+"> - <javac srcdir="${src}" destdir="${dest}"> - <include name="${package}/**" /> - </javac> diff --git a/databases/postgresql73/files/patch-doc-makefile b/databases/postgresql73/files/patch-doc-makefile deleted file mode 100644 index fa27bed2af3f..000000000000 --- a/databases/postgresql73/files/patch-doc-makefile +++ /dev/null @@ -1,19 +0,0 @@ ---- doc/Makefile~ Sun Jan 7 03:03:22 2001 -+++ doc/Makefile Wed Apr 18 08:12:30 2001 -@@ -43,10 +43,13 @@ - gzip -d -c man.tar.gz | ( cd $(DESTDIR)$(mandir) && $(TAR) xf - ) - endif - -- - installdirs: -- $(mkinstalldirs) $(DESTDIR)$(mandir) $(DESTDIR)$(docdir)/html -- -+ifdef found_html -+ $(mkinstalldirs) $(DESTDIR)$(docdir)/html -+endif -+ifdef found_man -+ $(mkinstalldirs) $(DESTDIR)$(mandir) -+endif - - uninstall: - ifdef found_html diff --git a/databases/postgresql73/files/patch-jdbc-Connection b/databases/postgresql73/files/patch-jdbc-Connection deleted file mode 100644 index 26fbc260d639..000000000000 --- a/databases/postgresql73/files/patch-jdbc-Connection +++ /dev/null @@ -1,51 +0,0 @@ -=================================================================== -RCS file: /home/projects/pgsql/cvsroot/pgsql/src/interfaces/jdbc/org/postgresql/Connection.java,v -retrieving revision 1.14 -retrieving revision 1.16 -diff -u -r1.14 -r1.16 ---- src/interfaces/jdbc/org/postgresql/Connection.java 2001/01/31 08:26:01 1.14 -+++ src/interfaces/jdbc/org/postgresql/Connection.java 2001/06/01 20:57:58 1.16 -@@ -10,7 +10,7 @@ - import org.postgresql.util.*; - - /** -- * $Id: Connection.java,v 1.14 2001/01/31 08:26:01 peter Exp $ -+ * $Id: Connection.java,v 1.16 2001/06/01 20:57:58 momjian Exp $ - * - * This abstract class is used by org.postgresql.Driver to open either the JDBC1 or - * JDBC2 versions of the Connection class. -@@ -267,7 +267,8 @@ - // - firstWarning = null; - -- java.sql.ResultSet initrset = ExecSQL("set datestyle to 'ISO'; select getdatabaseencoding()"); -+ java.sql.ResultSet initrset = ExecSQL("set datestyle to 'ISO'; " + -+ "select case when pg_encoding_to_char(1) = 'SQL_ASCII' then 'UNKNOWN' else getdatabaseencoding() end"); - - String dbEncoding = null; - //retrieve DB properties -@@ -307,9 +308,23 @@ - } else if (dbEncoding.equals("EUC_TW")) { - dbEncoding = "EUC_TW"; - } else if (dbEncoding.equals("KOI8")) { -- dbEncoding = "KOI8_R"; -+ // try first if KOI8_U is present, it's a superset of KOI8_R -+ try { -+ dbEncoding = "KOI8_U"; -+ "test".getBytes(dbEncoding); -+ } -+ catch(UnsupportedEncodingException uee) { -+ // well, KOI8_U is still not in standard JDK, falling back to KOI8_R :( -+ dbEncoding = "KOI8_R"; -+ } -+ - } else if (dbEncoding.equals("WIN")) { - dbEncoding = "Cp1252"; -+ } else if (dbEncoding.equals("UNKNOWN")) { -+ //This isn't a multibyte database so we don't have an encoding to use -+ //We leave dbEncoding null which will cause the default encoding for the -+ //JVM to be used -+ dbEncoding = null; - } else { - dbEncoding = null; - } diff --git a/databases/postgresql73/files/patch-jdbc-build-xml b/databases/postgresql73/files/patch-jdbc-build-xml deleted file mode 100644 index b1c703a9c978..000000000000 --- a/databases/postgresql73/files/patch-jdbc-build-xml +++ /dev/null @@ -1,10 +0,0 @@ ---- src/interfaces/jdbc/build.xml~ Fri Mar 16 22:50:43 2001 -+++ src/interfaces/jdbc/build.xml Wed Apr 18 08:57:57 2001 -@@ -120,6 +120,7 @@ - <javac srcdir="${src}" destdir="${dest}"> - <include name="example/**" /> - <exclude name="example/corba/**"/> -+ <exclude name="example/blobtest.java" unless="jdk1.2+"/> - </javac> - </target> - diff --git a/databases/postgresql73/files/patch-jdbc-getdate b/databases/postgresql73/files/patch-jdbc-getdate deleted file mode 100644 index 744407ae14b5..000000000000 --- a/databases/postgresql73/files/patch-jdbc-getdate +++ /dev/null @@ -1,34 +0,0 @@ ---- src/interfaces/jdbc/org/postgresql/jdbc2/ResultSet.java~ Fri Feb 23 19:12:23 2001 -+++ src/interfaces/jdbc/org/postgresql/jdbc2/ResultSet.java Wed May 9 04:31:11 2001 -@@ -423,8 +423,13 @@ - String s = getString(columnIndex); - if(s==null) - return null; -- -- return java.sql.Date.valueOf(s); -+ // length == 10: SQL Date -+ // length > 10: SQL Timestamp, assumes PGDATESTYLE=ISO -+ try { -+ return java.sql.Date.valueOf((s.length() == 10) ? s : s.substring(0,10)); -+ } catch (NumberFormatException e) { -+ throw new PSQLException("postgresql.res.baddate", s); -+ } - } - - /** -@@ -441,8 +446,13 @@ - - if(s==null) - return null; // SQL NULL -- -- return java.sql.Time.valueOf(s); -+ // length == 8: SQL Time -+ // length > 8: SQL Timestamp -+ try { -+ return java.sql.Time.valueOf((s.length() == 8) ? s : s.substring(11,19)); -+ } catch (NumberFormatException e) { -+ throw new PSQLException("postgresql.res.badtime",s); -+ } - } - - /** diff --git a/databases/postgresql73/files/pgsql.sh.tmpl b/databases/postgresql73/files/pgsql.sh.tmpl deleted file mode 100644 index cd78771219ed..000000000000 --- a/databases/postgresql73/files/pgsql.sh.tmpl +++ /dev/null @@ -1,36 +0,0 @@ -#!/bin/sh - -# $FreeBSD$ -# -# For postmaster startup options, edit $PGDATA/postgresql.conf - -PGBIN=%%PREFIX%%/%%PG_PREFIX%%bin - -case $1 in -start) - [ -d %%PREFIX%%/%%PG_PREFIX%%lib ] && /sbin/ldconfig -m %%PREFIX%%/%%PG_PREFIX%%lib - [ -x ${PGBIN}/pg_ctl ] && { - su -l pgsql -c \ - '[ -d ${PGDATA} ] && exec %%PREFIX%%/%%PG_PREFIX%%bin/pg_ctl start -s -w -l ~pgsql/errlog' - echo -n ' pgsql' - } - ;; - -stop) - [ -x ${PGBIN}/pg_ctl ] && { - su -l pgsql -c 'exec %%PREFIX%%/%%PG_PREFIX%%bin/pg_ctl stop -s -m fast' - echo -n ' pgsql' - } - ;; - -status) - [ -x ${PGBIN}/pg_ctl ] && { - exec su -l pgsql -c 'exec %%PREFIX%%/%%PG_PREFIX%%bin/pg_ctl status' - } - ;; - -*) - echo "usage: `basename $0` {start|stop|status}" >&2 - exit 64 - ;; -esac diff --git a/databases/postgresql73/files/pkgIndex.tcl.in b/databases/postgresql73/files/pkgIndex.tcl.in deleted file mode 100644 index bd8329b15c69..000000000000 --- a/databases/postgresql73/files/pkgIndex.tcl.in +++ /dev/null @@ -1,4 +0,0 @@ -# Package-index file for Pgtcl-package. Enables you to load PostgreSQL -# interface functions right into you TCL-interpreter as simply as -# package require Pgtcl -package ifneeded Pgtcl 1.3 "load %%PREFIX%%/lib/libpgtcl.so" diff --git a/databases/postgresql73/files/post-install-notes b/databases/postgresql73/files/post-install-notes deleted file mode 100644 index 9347fc51c247..000000000000 --- a/databases/postgresql73/files/post-install-notes +++ /dev/null @@ -1,25 +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/TK support, you can use the pgaccess -utility to get a TCL/TK based database frontend for database -operations. You do NOT need to install the pgaccess port separately. - -If you built in the TCL support, you can load the Pg package into your -TCL scripts as easily as ``package require Pgtcl''. - -If you built with Java support, add -/usr/local/share/java/classes/postgresql.jar to your classpath. - -If you have many tables and many clients running, consider raising -kern.maxfiles using sysctl(8). - -Use createlang(1) to install languages into your database. -Supported languages are 'plpgsql', 'pltcl', 'pltclu', and 'plperl'. diff --git a/databases/postgresql73/files/pre-install-notes b/databases/postgresql73/files/pre-install-notes deleted file mode 100644 index 697ce3cedb79..000000000000 --- a/databases/postgresql73/files/pre-install-notes +++ /dev/null @@ -1,21 +0,0 @@ - * IMPORTANT UPGRADE NOTICE * IMPORTANT UPGRADE NOTICE * - -The PostgreSQL port now obeys hier(7) by default, which means that it -installs into: - -%%PREFIX%%/bin -%%PREFIX%%/lib -%%PREFIX%%/include/pgsql - -You *must* move away your old installation to avoid problems with -ldconfig(8) and user's PATH:s. If you rather install using the -old-fashion layout, cancel at next screen and run make as: - -$ make -DWITH_OLD_LAYOUT - -As always, you *must* dump existing databases before stopping and -removing your old postgresql, as part of the update. This is *NOT* -done by this port! - -If you want JAVA support, I will try to determine your JAVA_HOME using -javavmwrapper. If you want a different JVM, please set JAVA_HOME. 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 463e4e49815f..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 cfc983fc2f66..000000000000 --- a/databases/postgresql73/pkg-install +++ /dev/null @@ -1,46 +0,0 @@ -#! /bin/sh - -# $FreeBSD$ - -PATH=/bin:/usr/sbin - -DB_DIR=${PKG_PREFIX}/pgsql - -case $2 in -PRE-INSTALL) - USER=pgsql - GROUP=${USER} - UID=70 - 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} -c "PostgreSQL Daemon" - then - echo "Added user \"${USER}\"." - else - echo "Adding user \"${USER}\" failed..." - exit 1 - fi - fi - - if ! [ -x ~pgsql ] ; then - mkdir -p ${DB_DIR} - chown pgsql:pgsql ${DB_DIR} - fi - ;; - -esac diff --git a/databases/postgresql73/pkg-message b/databases/postgresql73/pkg-message deleted file mode 100644 index 1a3f9f1e4147..000000000000 --- a/databases/postgresql73/pkg-message +++ /dev/null @@ -1,38 +0,0 @@ - -====================================================================== - - * IMPORTANT UPGRADE NOTICE * IMPORTANT UPGRADE NOTICE * - -The PostgreSQL port now obeys hier(7) by default, which means that it -installs into: - -/usr/local/bin -/usr/local/lib -/usr/local/include/pgsql - -You *must* move away your old installation from users' and -ldconfig(8)'s PATHs. If you rather install using the old-fashion -layout, cancel now and build the port with "make -DWITH_OLD_LAYOUT". - -The pgsql user's home dir is /usr/local/pgsql by default, but can be -changed with for example chpass(1). Datadir defaults to ~pgsql/data, -but can be changed by modifying the ~pgsql/.profile script. - -As always, backup your data before upgrading. If the upgrade leads to -a higher minor revision (i.e. 7.0.x -> 7.1.x), a dump and restore of -all databases is required. This is *NOT* done by the port! - -====================================================================== - -To initialize the database, you should run initdb as the "pgsql" user. - -Example: - - su -l pgsql -c initdb - -You can then start PostgreSQL by running: - - /usr/local/etc/rc.d/010.pgsql.sh start - -For postmaster settings, see ~pgsql/data/postgresql.conf -====================================================================== diff --git a/databases/postgresql73/pkg-plist b/databases/postgresql73/pkg-plist deleted file mode 100644 index a7493ddb7898..000000000000 --- a/databases/postgresql73/pkg-plist +++ /dev/null @@ -1,91 +0,0 @@ -%%PG_PREFIX%%bin/postmaster -%%PG_PREFIX%%bin/postgres -%%PG_PREFIX%%bin/ecpg -%%PG_PREFIX%%bin/initdb -%%PG_PREFIX%%bin/initlocation -%%PG_PREFIX%%bin/ipcclean -%%PG_PREFIX%%bin/pg_ctl -%%PG_PREFIX%%bin/pg_dump -%%PG_PREFIX%%bin/pg_restore -%%PG_PREFIX%%bin/pg_encoding -%%PG_PREFIX%%bin/pg_dumpall -%%PG_PREFIX%%bin/pg_id -%%PG_PREFIX%%bin/pg_passwd -%%PG_PREFIX%%bin/psql -%%PG_PREFIX%%bin/createdb -%%PG_PREFIX%%bin/dropdb -%%PG_PREFIX%%bin/createuser -%%PG_PREFIX%%bin/dropuser -%%PG_PREFIX%%bin/droplang -%%PG_PREFIX%%bin/vacuumdb -%%PG_PREFIX%%bin/createlang -%%PG_PREFIX%%bin/pg_config -etc/rc.d/010.pgsql.sh -%%PG_INCLUDE%%/lib/dllist.h -@dirrm %%PG_INCLUDE%%/lib -%%PG_INCLUDE%%/libpq/pqcomm.h -%%PG_INCLUDE%%/libpq/libpq-fs.h -@dirrm %%PG_INCLUDE%%/libpq -%%PG_INCLUDE%%/libpq++/pgconnection.h -%%PG_INCLUDE%%/libpq++/pgdatabase.h -%%PG_INCLUDE%%/libpq++/pgtransdb.h -%%PG_INCLUDE%%/libpq++/pgcursordb.h -%%PG_INCLUDE%%/libpq++/pglobject.h -@dirrm %%PG_INCLUDE%%/libpq++ -%%PG_INCLUDE%%/c.h -%%PG_INCLUDE%%/postgres_ext.h -%%PG_INCLUDE%%/postgres_fe.h -%%PG_INCLUDE%%/os.h -%%PG_INCLUDE%%/config.h -%%PG_INCLUDE%%/libpq-fe.h -%%PG_INCLUDE%%/libpq-int.h -%%PG_INCLUDE%%/pqexpbuffer.h -%%PG_INCLUDE%%/ecpgerrno.h -%%PG_INCLUDE%%/ecpglib.h -%%PG_INCLUDE%%/ecpgtype.h -%%PG_INCLUDE%%/sqlca.h -%%PG_INCLUDE%%/sql3types.h -%%PG_INCLUDE%%/libpgeasy.h -%%PG_INCLUDE%%/libpq++.h -@dirrm %%PG_INCLUDE%% -%%PG_PREFIX%%lib/libpq.so -%%PG_PREFIX%%lib/libpq.a -%%PG_PREFIX%%lib/libpq.so.2 -%%PG_PREFIX%%lib/libecpg.so -%%PG_PREFIX%%lib/libecpg.a -%%PG_PREFIX%%lib/libecpg.so.3 -%%PG_PREFIX%%lib/libpgeasy.so -%%PG_PREFIX%%lib/libpgeasy.a -%%PG_PREFIX%%lib/libpgeasy.so.2 -%%PG_PREFIX%%lib/libpq++.so -%%PG_PREFIX%%lib/libpq++.a -%%PG_PREFIX%%lib/libpq++.so.3 -%%PG_PREFIX%%lib/plpgsql.so -share/postgresql/global.bki -share/postgresql/global.description -share/postgresql/post-install-notes -share/postgresql/template1.bki -share/postgresql/template1.description -share/postgresql/pg_hba.conf.sample -share/postgresql/pg_ident.conf.sample -share/postgresql/postgresql.conf.sample -@unexec if cmp -s ~pgsql/.profile %D/share/postgresql/dot.profile.dist; then rm -f ~pgsql/.profile; fi -@unexec if cmp -s ~pgsql/.cshrc %D/share/postgresql/dot.cshrc.dist; then rm -f ~pgsql/.cshrc; fi -@unexec [ -f ~pgsql/dot.profile.dist ] && rm ~pgsql/dot.profile.dist -@unexec [ -f ~pgsql/dot.cshrc.dist ] && rm ~pgsql/dot.cshrc.dist -@exec [ -f %D/share/postgresql/post-install-notes ] && cp %D/share/postgresql/post-install-notes ~pgsql && chown pgsql:pgsql ~pgsql/post-install-notes -@unexec [ -f ~pgsql/post-install-notes ] && rm ~pgsql/post-install-notes -share/postgresql/dot.profile.dist -share/postgresql/dot.cshrc.dist -@dirrm share/postgresql -@exec [ -f %D/share/postgresql/dot.profile.dist ] && cp %D/share/postgresql/dot.profile.dist ~pgsql/. -@exec [ -f %D/share/postgresql/dot.cshrc.dist ] && cp %D/share/postgresql/dot.cshrc.dist ~pgsql/. -@exec [ -f ~pgsql/.profile ] || (cp %D/share/postgresql/dot.profile.dist ~pgsql/.profile && chown pgsql:pgsql ~pgsql/.profile) -@exec [ -f ~pgsql/.cshrc ] || (cp %D/share/postgresql/dot.cshrc.dist ~pgsql/.cshrc && chown pgsql:pgsql ~pgsql/.cshrc) -@unexec [ X%%PG_PREFIX%% != X ] && rmdir %D/%%PG_PREFIX%%bin 2> /dev/null || true -@unexec [ X%%PG_PREFIX%% != X ] && rmdir %D/%%PG_PREFIX%%lib 2> /dev/null || true -@unexec [ X%%PG_PREFIX%% != X ] && rmdir %D/%%PG_PREFIX%%man/man1 2> /dev/null || true -@unexec [ X%%PG_PREFIX%% != X ] && rmdir %D/%%PG_PREFIX%%man/manl 2> /dev/null || true -@unexec [ X%%PG_PREFIX%% != X ] && rmdir %D/%%PG_PREFIX%%man 2> /dev/null || true -@unexec rmdir ~pgsql 2> /dev/null || true -@unexec echo "Warning: If you will *NOT* use this package anymore, please remove %D/pgsql and the pgsql user manually." diff --git a/databases/postgresql73/pkg-plist.doc b/databases/postgresql73/pkg-plist.doc deleted file mode 100644 index c4d50ecb24f0..000000000000 --- a/databases/postgresql73/pkg-plist.doc +++ /dev/null @@ -1,494 +0,0 @@ -share/doc/postgresql/html/admin.html -share/doc/postgresql/html/advanced.html -share/doc/postgresql/html/altern-locations.html -share/doc/postgresql/html/app-createdb.html -share/doc/postgresql/html/app-createlang.html -share/doc/postgresql/html/app-createuser.html -share/doc/postgresql/html/app-dropdb.html -share/doc/postgresql/html/app-droplang.html -share/doc/postgresql/html/app-dropuser.html -share/doc/postgresql/html/app-ecpg.html -share/doc/postgresql/html/app-initdb.html -share/doc/postgresql/html/app-initlocation.html -share/doc/postgresql/html/app-ipcclean.html -share/doc/postgresql/html/app-pg-ctl.html -share/doc/postgresql/html/app-pg-dumpall.html -share/doc/postgresql/html/app-pg-passwd.html -share/doc/postgresql/html/app-pgaccess.html -share/doc/postgresql/html/app-pgadmin.html -share/doc/postgresql/html/app-pgconfig.html -share/doc/postgresql/html/app-pgdump.html -share/doc/postgresql/html/app-pgrestore.html -share/doc/postgresql/html/app-pgtclsh.html -share/doc/postgresql/html/app-pgtksh.html -share/doc/postgresql/html/app-postgres.html -share/doc/postgresql/html/app-postmaster.html -share/doc/postgresql/html/app-psql.html -share/doc/postgresql/html/app-vacuumdb.html -share/doc/postgresql/html/applevel-consistency.html -share/doc/postgresql/html/arch-pg.html -share/doc/postgresql/html/arch.html -share/doc/postgresql/html/arrays.html -share/doc/postgresql/html/auth-methods.html -share/doc/postgresql/html/backup-file.html -share/doc/postgresql/html/backup.html -share/doc/postgresql/html/biblio.html -share/doc/postgresql/html/bki-commands.html -share/doc/postgresql/html/bki-example.html -share/doc/postgresql/html/bki.html -share/doc/postgresql/html/bug-reporting.html -share/doc/postgresql/html/catalog-pg-aggregate.html -share/doc/postgresql/html/catalog-pg-attrdef.html -share/doc/postgresql/html/catalog-pg-attribute.html -share/doc/postgresql/html/catalog-pg-class.html -share/doc/postgresql/html/catalog-pg-database.html -share/doc/postgresql/html/catalog-pg-description.html -share/doc/postgresql/html/catalog-pg-group.html -share/doc/postgresql/html/catalog-pg-index.html -share/doc/postgresql/html/catalog-pg-inherits.html -share/doc/postgresql/html/catalog-pg-language.html -share/doc/postgresql/html/catalog-pg-operator.html -share/doc/postgresql/html/catalog-pg-proc.html -share/doc/postgresql/html/catalog-pg-relcheck.html -share/doc/postgresql/html/catalog-pg-shadow.html -share/doc/postgresql/html/catalog-pg-type.html -share/doc/postgresql/html/catalogs.html -share/doc/postgresql/html/charset.html -share/doc/postgresql/html/client-authentication-problems.html -share/doc/postgresql/html/client-authentication.html -share/doc/postgresql/html/compiler.html -share/doc/postgresql/html/connect-estab.html -share/doc/postgresql/html/creating-cluster.html -share/doc/postgresql/html/cvs-tree.html -share/doc/postgresql/html/cvs.html -share/doc/postgresql/html/cvsup.html -share/doc/postgresql/html/datatype-bit.html -share/doc/postgresql/html/datatype-boolean.html -share/doc/postgresql/html/datatype-character.html -share/doc/postgresql/html/datatype-datetime.html -share/doc/postgresql/html/datatype-geometric.html -share/doc/postgresql/html/datatype-money.html -share/doc/postgresql/html/ecpg.html -share/doc/postgresql/html/datatype-net-types.html -share/doc/postgresql/html/datatype.html -share/doc/postgresql/html/datetime-appendix.html -share/doc/postgresql/html/db-accessing.html -share/doc/postgresql/html/db-destroy.html -share/doc/postgresql/html/developer.html -share/doc/postgresql/html/doc-build.html -share/doc/postgresql/html/doc-sources.html -share/doc/postgresql/html/doc-toolsets.html -share/doc/postgresql/html/docguide.html -share/doc/postgresql/html/ecpg-concept.html -share/doc/postgresql/html/ecpg-develop.html -share/doc/postgresql/html/ecpg-limitations.html -share/doc/postgresql/html/ecpg-porting.html -share/doc/postgresql/html/ecpg-use.html -share/doc/postgresql/html/executor.html -share/doc/postgresql/html/explicit-joins.html -share/doc/postgresql/html/extend.html -share/doc/postgresql/html/functions-datetime.html -share/doc/postgresql/html/functions-aggregate.html -share/doc/postgresql/html/functions-comparison.html -share/doc/postgresql/html/functions-conditional.html -share/doc/postgresql/html/functions-formatting.html -share/doc/postgresql/html/functions-geometry.html -share/doc/postgresql/html/functions-matching.html -share/doc/postgresql/html/functions-math.html -share/doc/postgresql/html/functions-misc.html -share/doc/postgresql/html/functions-net.html -share/doc/postgresql/html/functions-string.html -share/doc/postgresql/html/functions.html -share/doc/postgresql/html/geqo-intro2.html -share/doc/postgresql/html/geqo-pg-intro.html -share/doc/postgresql/html/geqo.html -share/doc/postgresql/html/gist.html -share/doc/postgresql/html/groups.html -share/doc/postgresql/html/history.html -share/doc/postgresql/html/index.html -share/doc/postgresql/html/indexcost.html -share/doc/postgresql/html/indices-functional.html -share/doc/postgresql/html/indices-multicolumn.html -share/doc/postgresql/html/indices-opclass.html -share/doc/postgresql/html/indices-types.html -share/doc/postgresql/html/indices-unique.html -share/doc/postgresql/html/indices.html -share/doc/postgresql/html/inherit.html -share/doc/postgresql/html/install-getsource.html -share/doc/postgresql/html/install-post.html -share/doc/postgresql/html/install-procedure.html -share/doc/postgresql/html/install-requirements.html -share/doc/postgresql/html/install-upgrading.html -share/doc/postgresql/html/install-win32.html -share/doc/postgresql/html/installation.html -share/doc/postgresql/html/jdbc-ext.html -share/doc/postgresql/html/jdbc-lo.html -share/doc/postgresql/html/jdbc.html -share/doc/postgresql/html/jdbc-query.html -share/doc/postgresql/html/jdbc-reading.html -share/doc/postgresql/html/jdbc-thread.html -share/doc/postgresql/html/jdbc-update.html -share/doc/postgresql/html/jdbc-use.html -share/doc/postgresql/html/kernel-resources.html -share/doc/postgresql/html/keys.html -share/doc/postgresql/html/largeobjects.html -share/doc/postgresql/html/libpgtcl-examples.html -share/doc/postgresql/html/libpgtcl-ref.html -share/doc/postgresql/html/libpq-async.html -share/doc/postgresql/html/libpq-control.html -share/doc/postgresql/html/libpq-copy.html -share/doc/postgresql/html/libpq-envars.html -share/doc/postgresql/html/libpq-example.html -share/doc/postgresql/html/libpq-exec.html -share/doc/postgresql/html/libpq-fastpath.html -share/doc/postgresql/html/libpq-notify.html -share/doc/postgresql/html/libpq.html -share/doc/postgresql/html/libpq-threading.html -share/doc/postgresql/html/libpq-trace.html -share/doc/postgresql/html/libpqplusplus.html -share/doc/postgresql/html/libpqpp-classes.html -share/doc/postgresql/html/libpqpp-connect.html -share/doc/postgresql/html/libpqpp-copy.html -share/doc/postgresql/html/libpqpp-exec.html -share/doc/postgresql/html/libpqpp-notify.html -share/doc/postgresql/html/lisp.html -share/doc/postgresql/html/ln11330.html -share/doc/postgresql/html/ln1274.html -share/doc/postgresql/html/ln15181.html -share/doc/postgresql/html/ln24.html -share/doc/postgresql/html/ln25010.html -share/doc/postgresql/html/ln37176.html -share/doc/postgresql/html/ln8.html -share/doc/postgresql/html/lo-funcs.html -share/doc/postgresql/html/lo-implementation.html -share/doc/postgresql/html/lo-interfaces.html -share/doc/postgresql/html/lo-libpq.html -share/doc/postgresql/html/lo-sample.html -share/doc/postgresql/html/locking-indices.html -share/doc/postgresql/html/locking-tables.html -share/doc/postgresql/html/manage-ag-accessdb.html -share/doc/postgresql/html/manage-ag-dropdb.html -share/doc/postgresql/html/manage.html -share/doc/postgresql/html/managing-databases.html -share/doc/postgresql/html/migration.html -share/doc/postgresql/html/more-advanced.html -share/doc/postgresql/html/multibyte.html -share/doc/postgresql/html/mvcc.html -share/doc/postgresql/html/non-atomic-values.html -share/doc/postgresql/html/notation.html -share/doc/postgresql/html/odbc-applixware.html -share/doc/postgresql/html/odbc-config.html -share/doc/postgresql/html/odbc-install.html -share/doc/postgresql/html/odbc-windows.html -share/doc/postgresql/html/odbc.html -share/doc/postgresql/html/organization.html -share/doc/postgresql/html/overview.html -share/doc/postgresql/html/page.html -share/doc/postgresql/html/parser-stage.html -share/doc/postgresql/html/partial-index.html -share/doc/postgresql/html/performance-tips.html -share/doc/postgresql/html/perm-functions.html -share/doc/postgresql/html/pg-system-catalogs.html -share/doc/postgresql/html/pgeasy-chapter.html -share/doc/postgresql/html/pgtcl-pgconndefaults.html -share/doc/postgresql/html/pgtcl-pgconnect.html -share/doc/postgresql/html/pgtcl-pgdisconnect.html -share/doc/postgresql/html/pgtcl-pgexec.html -share/doc/postgresql/html/pgtcl-pglisten.html -share/doc/postgresql/html/pgtcl-pgloclose.html -share/doc/postgresql/html/pgtcl-pglocreat.html -share/doc/postgresql/html/pgtcl-pgloexport.html -share/doc/postgresql/html/pgtcl-pgloimport.html -share/doc/postgresql/html/pgtcl-pglolseek.html -share/doc/postgresql/html/pgtcl-pgloopen.html -share/doc/postgresql/html/pgtcl-pgloread.html -share/doc/postgresql/html/pgtcl-pglotell.html -share/doc/postgresql/html/pgtcl-pglounlink.html -share/doc/postgresql/html/pgtcl-pglowrite.html -share/doc/postgresql/html/pgtcl-pgresult.html -share/doc/postgresql/html/pgtcl-pgselect.html -share/doc/postgresql/html/pgtcl.html -share/doc/postgresql/html/planner-optimizer.html -share/doc/postgresql/html/plperl-use.html -share/doc/postgresql/html/plperl.html -share/doc/postgresql/html/plpgsql-description.html -share/doc/postgresql/html/plpgsql-examples.html -share/doc/postgresql/html/plpgsql-porting.html -share/doc/postgresql/html/plpgsql-trigger.html -share/doc/postgresql/html/plpgsql.html -share/doc/postgresql/html/pltcl-description.html -share/doc/postgresql/html/pltcl.html -share/doc/postgresql/html/populate.html -share/doc/postgresql/html/postgres.html -share/doc/postgresql/html/postmaster-shutdown.html -share/doc/postgresql/html/postmaster-start.html -share/doc/postgresql/html/preface.html -share/doc/postgresql/html/privileges.html -share/doc/postgresql/html/programmer-client.html -share/doc/postgresql/html/programmer-pl.html -share/doc/postgresql/html/programmer-server.html -share/doc/postgresql/html/programmer.html -share/doc/postgresql/html/protocol-message-formats.html -share/doc/postgresql/html/protocol-message-types.html -share/doc/postgresql/html/protocol-protocol.html -share/doc/postgresql/html/protocol.html -share/doc/postgresql/html/pygresql.html -share/doc/postgresql/html/pygresql-close.html -share/doc/postgresql/html/pygresql-connect.html -share/doc/postgresql/html/pygresql-db-api.html -share/doc/postgresql/html/pygresql-db-clear.html -share/doc/postgresql/html/pygresql-db-delete.html -share/doc/postgresql/html/pygresql-db-get-attnames.html -share/doc/postgresql/html/pygresql-db-get-databases.html -share/doc/postgresql/html/pygresql-db-get-tables.html -share/doc/postgresql/html/pygresql-db-get.html -share/doc/postgresql/html/pygresql-db-insert.html -share/doc/postgresql/html/pygresql-db-pkey.html -share/doc/postgresql/html/pygresql-db-update.html -share/doc/postgresql/html/pygresql-endcopy.html -share/doc/postgresql/html/pygresql-fileno.html -share/doc/postgresql/html/pygresql-get-defbase.html -share/doc/postgresql/html/pygresql-get-defhost.html -share/doc/postgresql/html/pygresql-get-defopt.html -share/doc/postgresql/html/pygresql-get-defport.html -share/doc/postgresql/html/pygresql-get-deftty.html -share/doc/postgresql/html/pygresql-getline.html -share/doc/postgresql/html/pygresql-getlo.html -share/doc/postgresql/html/pygresql-getnotify.html -share/doc/postgresql/html/pygresql-inserttable.html -share/doc/postgresql/html/pygresql-locreate.html -share/doc/postgresql/html/pygresql-loimport.html -share/doc/postgresql/html/pygresql-pg-db.html -share/doc/postgresql/html/pygresql-pg-functions.html -share/doc/postgresql/html/pygresql-pg-pglarge.html -share/doc/postgresql/html/pygresql-pg-pgobject.html -share/doc/postgresql/html/pygresql-pg-pgqueryobject.html -share/doc/postgresql/html/pygresql-pglargeobject-close.html -share/doc/postgresql/html/pygresql-pglargeobject-export.html -share/doc/postgresql/html/pygresql-pglargeobject-open.html -share/doc/postgresql/html/pygresql-pglargeobject-read.html -share/doc/postgresql/html/pygresql-pglargeobject-seek.html -share/doc/postgresql/html/pygresql-pglargeobject-size.html -share/doc/postgresql/html/pygresql-pglargeobject-tell.html -share/doc/postgresql/html/pygresql-pglargeobject-unlink.html -share/doc/postgresql/html/pygresql-pglargeobject-write.html -share/doc/postgresql/html/pygresql-pgqueryobject-dictresult.html -share/doc/postgresql/html/pygresql-pgqueryobject-fieldname.html -share/doc/postgresql/html/query.html -share/doc/postgresql/html/pygresql-pgqueryobject-fieldnum.html -share/doc/postgresql/html/pygresql-pgqueryobject-getresult.html -share/doc/postgresql/html/pygresql-pgqueryobject-listfields.html -share/doc/postgresql/html/pygresql-pgqueryobject-ntuples.html -share/doc/postgresql/html/pygresql-putline.html -share/doc/postgresql/html/pygresql-query.html -share/doc/postgresql/html/pygresql-reset.html -share/doc/postgresql/html/pygresql-set-defbase.html -share/doc/postgresql/html/pygresql-set-defhost.html -share/doc/postgresql/html/pygresql-set-defopt.html -share/doc/postgresql/html/pygresql-set-defport.html -share/doc/postgresql/html/pygresql-set-deftty.html -share/doc/postgresql/html/queries-limit.html -share/doc/postgresql/html/queries-order.html -share/doc/postgresql/html/queries-select-lists.html -share/doc/postgresql/html/queries-union.html -share/doc/postgresql/html/queries.html -share/doc/postgresql/html/query-agg.html -share/doc/postgresql/html/query-concepts.html -share/doc/postgresql/html/query-delete.html -share/doc/postgresql/html/query-join.html -share/doc/postgresql/html/query-populate.html -share/doc/postgresql/html/query-query.html -share/doc/postgresql/html/query-selectinto.html -share/doc/postgresql/html/query-table.html -share/doc/postgresql/html/query-update.html -share/doc/postgresql/html/recode.html -share/doc/postgresql/html/recovery.html -share/doc/postgresql/html/reference-client.html -share/doc/postgresql/html/reference-server.html -share/doc/postgresql/html/reference.html -share/doc/postgresql/html/regress-platform.html -share/doc/postgresql/html/regress.html -share/doc/postgresql/html/release-0-01.html -share/doc/postgresql/html/release-0-02.html -share/doc/postgresql/html/release-0-03.html -share/doc/postgresql/html/release-1-0.html -share/doc/postgresql/html/release-1-01.html -share/doc/postgresql/html/release-1-02.html -share/doc/postgresql/html/release-1-09.html -share/doc/postgresql/html/release-6-0.html -share/doc/postgresql/html/release-6-1-1.html -share/doc/postgresql/html/release-6-1.html -share/doc/postgresql/html/release-6-2-1.html -share/doc/postgresql/html/release-6-2.html -share/doc/postgresql/html/release-6-3-1.html -share/doc/postgresql/html/release-6-3-2.html -share/doc/postgresql/html/release-6-3.html -share/doc/postgresql/html/release-6-4-1.html -share/doc/postgresql/html/release-6-4-2.html -share/doc/postgresql/html/release-6-4.html -share/doc/postgresql/html/release-6-5-1.html -share/doc/postgresql/html/release-6-5-2.html -share/doc/postgresql/html/release-6-5-3.html -share/doc/postgresql/html/release-6-5.html -share/doc/postgresql/html/release-7-0-1.html -share/doc/postgresql/html/release-7-0-2.html -share/doc/postgresql/html/release-7-0-3.html -share/doc/postgresql/html/release-7-0.html -share/doc/postgresql/html/release-7-1.html -share/doc/postgresql/html/release-7-1-1.html -share/doc/postgresql/html/release-7-1-2.html -share/doc/postgresql/html/release.html -share/doc/postgresql/html/relmodel-formal.html -share/doc/postgresql/html/relmodel-oper.html -share/doc/postgresql/html/resources.html -share/doc/postgresql/html/rule-system.html -share/doc/postgresql/html/rules-insert.html -share/doc/postgresql/html/rules-permissions.html -share/doc/postgresql/html/rules-triggers.html -share/doc/postgresql/html/rules-views.html -share/doc/postgresql/html/rules.html -share/doc/postgresql/html/runtime-config.html -share/doc/postgresql/html/runtime.html -share/doc/postgresql/html/source.html -share/doc/postgresql/html/spi-examples.html -share/doc/postgresql/html/spi-interface-support.html -share/doc/postgresql/html/spi-memory.html -share/doc/postgresql/html/spi-spiconnect.html -share/doc/postgresql/html/spi-spicopytuple.html -share/doc/postgresql/html/spi-spiexec.html -share/doc/postgresql/html/spi-spiexecp.html -share/doc/postgresql/html/spi-spifinish.html -share/doc/postgresql/html/spi-spifname.html -share/doc/postgresql/html/spi-spifnumber.html -share/doc/postgresql/html/spi-spigetbinval.html -share/doc/postgresql/html/spi-spigetrelname.html -share/doc/postgresql/html/spi-spigettype.html -share/doc/postgresql/html/spi-spigettypeid.html -share/doc/postgresql/html/spi-spigetvalue.html -share/doc/postgresql/html/spi-spimodifytuple.html -share/doc/postgresql/html/spi-spipalloc.html -share/doc/postgresql/html/spi-spipfree.html -share/doc/postgresql/html/spi-spiprepare.html -share/doc/postgresql/html/spi-spirepalloc.html -share/doc/postgresql/html/spi-spisaveplan.html -share/doc/postgresql/html/spi-visibility.html -share/doc/postgresql/html/spi.html -share/doc/postgresql/html/sql-abort.html -share/doc/postgresql/html/sql-altergroup.html -share/doc/postgresql/html/sql-altertable.html -share/doc/postgresql/html/sql-alteruser.html -share/doc/postgresql/html/sql-begin.html -share/doc/postgresql/html/sql-checkpoint.html -share/doc/postgresql/html/sql-close.html -share/doc/postgresql/html/sql-cluster.html -share/doc/postgresql/html/sql-commands.html -share/doc/postgresql/html/sql-comment.html -share/doc/postgresql/html/sql-commit.html -share/doc/postgresql/html/sql-copy.html -share/doc/postgresql/html/sql-createaggregate.html -share/doc/postgresql/html/sql-createconstraint.html -share/doc/postgresql/html/sql-createdatabase.html -share/doc/postgresql/html/sql-createfunction.html -share/doc/postgresql/html/sql-creategroup.html -share/doc/postgresql/html/sql-createindex.html -share/doc/postgresql/html/sql-createlanguage.html -share/doc/postgresql/html/sql-createoperator.html -share/doc/postgresql/html/sql-createrule.html -share/doc/postgresql/html/sql-createsequence.html -share/doc/postgresql/html/sql-createtable.html -share/doc/postgresql/html/sql-createtableas.html -share/doc/postgresql/html/sql-createtrigger.html -share/doc/postgresql/html/sql-createtype.html -share/doc/postgresql/html/sql-createuser.html -share/doc/postgresql/html/sql-createview.html -share/doc/postgresql/html/sql-declare.html -share/doc/postgresql/html/sql-delete.html -share/doc/postgresql/html/sql-dropaggregate.html -share/doc/postgresql/html/sql-dropdatabase.html -share/doc/postgresql/html/sql-dropfunction.html -share/doc/postgresql/html/sql-dropgroup.html -share/doc/postgresql/html/sql-dropindex.html -share/doc/postgresql/html/sql-droplanguage.html -share/doc/postgresql/html/sql-dropoperator.html -share/doc/postgresql/html/sql-droprule.html -share/doc/postgresql/html/sql-dropsequence.html -share/doc/postgresql/html/sql-droptable.html -share/doc/postgresql/html/sql-droptrigger.html -share/doc/postgresql/html/sql-droptype.html -share/doc/postgresql/html/sql-dropuser.html -share/doc/postgresql/html/sql-dropview.html -share/doc/postgresql/html/sql-end.html -share/doc/postgresql/html/sql-explain.html -share/doc/postgresql/html/sql-expressions.html -share/doc/postgresql/html/sql-fetch.html -share/doc/postgresql/html/sql-grant.html -share/doc/postgresql/html/sql-insert.html -share/doc/postgresql/html/sql-keywords-appendix.html -share/doc/postgresql/html/sql-language.html -share/doc/postgresql/html/sql-listen.html -share/doc/postgresql/html/sql-load.html -share/doc/postgresql/html/sql-lock.html -share/doc/postgresql/html/sql-move.html -share/doc/postgresql/html/sql-notify.html -share/doc/postgresql/html/sql-precedence.html -share/doc/postgresql/html/sql-reindex.html -share/doc/postgresql/html/sql-reset.html -share/doc/postgresql/html/sql-revoke.html -share/doc/postgresql/html/sql-rollback.html -share/doc/postgresql/html/sql-select.html -share/doc/postgresql/html/sql-selectinto.html -share/doc/postgresql/html/sql-set-constraints.html -share/doc/postgresql/html/sql-set-transaction.html -share/doc/postgresql/html/sql-set.html -share/doc/postgresql/html/sql-show.html -share/doc/postgresql/html/sql-syntax-columns.html -share/doc/postgresql/html/sql-syntax.html -share/doc/postgresql/html/sql-truncate.html -share/doc/postgresql/html/sql-unlisten.html -share/doc/postgresql/html/sql-update.html -share/doc/postgresql/html/sql-vacuum.html -share/doc/postgresql/html/sql.html -share/doc/postgresql/html/ssh-tunnels.html -share/doc/postgresql/html/ssl-tcp.html -share/doc/postgresql/html/start-manage-db.html -share/doc/postgresql/html/start-psql.html -share/doc/postgresql/html/start.html -share/doc/postgresql/html/storage.html -share/doc/postgresql/html/supported-platforms.html -share/doc/postgresql/html/timing-results.html -share/doc/postgresql/html/transaction-iso.html -share/doc/postgresql/html/trigger-datachanges.html -share/doc/postgresql/html/trigger-examples.html -share/doc/postgresql/html/trigger-manager.html -share/doc/postgresql/html/triggers.html -share/doc/postgresql/html/tutorial.html -share/doc/postgresql/html/type-system.html -share/doc/postgresql/html/typeconv-func.html -share/doc/postgresql/html/typeconv-oper.html -share/doc/postgresql/html/typeconv-query.html -share/doc/postgresql/html/typeconv-union-case.html -share/doc/postgresql/html/typeconv.html -share/doc/postgresql/html/units-history.html -share/doc/postgresql/html/user-manag.html -share/doc/postgresql/html/user.html -share/doc/postgresql/html/wal-configuration.html -share/doc/postgresql/html/wal-implementation.html -share/doc/postgresql/html/wal.html -share/doc/postgresql/html/xact-read-committed.html -share/doc/postgresql/html/xact-serializable.html -share/doc/postgresql/html/xaggr.html -share/doc/postgresql/html/xfunc-c.html -share/doc/postgresql/html/xfunc-internal.html -share/doc/postgresql/html/xfunc-overload.html -share/doc/postgresql/html/xfunc-pl.html -share/doc/postgresql/html/xfunc.html -share/doc/postgresql/html/xindex.html -share/doc/postgresql/html/xoper.html -share/doc/postgresql/html/xplang.html -share/doc/postgresql/html/xtypes.html -share/doc/postgresql/html/y2k.html -share/doc/postgresql/html/catalogs.gif -share/doc/postgresql/html/clientserver.gif -share/doc/postgresql/html/connections.gif -@dirrm share/doc/postgresql/html -@dirrm share/doc/postgresql diff --git a/databases/postgresql73/pkg-plist.jdbc b/databases/postgresql73/pkg-plist.jdbc deleted file mode 100644 index 8f7bd41a54d7..000000000000 --- a/databases/postgresql73/pkg-plist.jdbc +++ /dev/null @@ -1,27 +0,0 @@ -share/examples/postgresql/corba/StockClient.java -share/examples/postgresql/corba/StockDB.java -share/examples/postgresql/corba/StockDispenserImpl.java -share/examples/postgresql/corba/StockItemImpl.java -share/examples/postgresql/corba/StockServer.java -share/examples/postgresql/corba/readme -share/examples/postgresql/corba/stock.idl -share/examples/postgresql/corba/stock.sql -@dirrm share/examples/postgresql/corba -share/examples/postgresql/ImageViewer.java -share/examples/postgresql/Unicode.java -share/examples/postgresql/basic.java -share/examples/postgresql/blobtest.java -share/examples/postgresql/datestyle.java -share/examples/postgresql/metadata.java -share/examples/postgresql/psql.java -share/examples/postgresql/threadsafe.java -share/examples/postgresql/README -share/examples/postgresql/Implementation -@dirrm share/examples/postgresql -share/postgresql/java/postgresql-examples.jar -share/postgresql/java/postgresql.jar -share/postgresql/java/retepTools.jar -@dirrm share/postgresql/java -share/java/classes/postgresql.jar -@unexec rmdir %D/share/java/classes 2>/dev/null || true -@unexec rmdir %D/share/java 2>/dev/null || true diff --git a/databases/postgresql73/pkg-plist.notk b/databases/postgresql73/pkg-plist.notk deleted file mode 100644 index 8dcbc5f88bd6..000000000000 --- a/databases/postgresql73/pkg-plist.notk +++ /dev/null @@ -1,6 +0,0 @@ -%%PG_PREFIX%%bin/pgtclsh -%%PG_INCLUDE%%/libpgtcl.h -%%PG_PREFIX%%lib/libpgtcl.a -%%PG_PREFIX%%lib/libpgtcl.so -%%PG_PREFIX%%lib/libpgtcl.so.2 -%%PG_PREFIX%%lib/pltcl.so diff --git a/databases/postgresql73/pkg-plist.odbc b/databases/postgresql73/pkg-plist.odbc deleted file mode 100644 index f047b7cb64a1..000000000000 --- a/databases/postgresql73/pkg-plist.odbc +++ /dev/null @@ -1,10 +0,0 @@ -%%PG_INCLUDE%%/iodbc/iodbc.h -%%PG_INCLUDE%%/iodbc/isql.h -%%PG_INCLUDE%%/iodbc/isqlext.h -@dirrm %%PG_INCLUDE%%/iodbc -%%PG_PREFIX%%lib/libpsqlodbc.a -%%PG_PREFIX%%lib/libpsqlodbc.so -%%PG_PREFIX%%lib/libpsqlodbc.so.0 -etc/postgresql/odbcinst.ini -@dirrm etc/postgresql -share/postgresql/odbc.sql diff --git a/databases/postgresql73/pkg-plist.tcl b/databases/postgresql73/pkg-plist.tcl deleted file mode 100644 index da5f4367cb80..000000000000 --- a/databases/postgresql73/pkg-plist.tcl +++ /dev/null @@ -1,148 +0,0 @@ -%%PG_PREFIX%%bin/pgaccess -%%PG_PREFIX%%bin/pgtclsh -%%PG_PREFIX%%bin/pgtksh -%%PG_INCLUDE%%/libpgtcl.h -%%PG_PREFIX%%lib/libpgtcl.a -%%PG_PREFIX%%lib/libpgtcl.so -%%PG_PREFIX%%lib/libpgtcl.so.2 -%%PG_PREFIX%%lib/pltcl.so -lib/tcl%%WITH_TCL%%/Pgtcl1.3/pkgIndex.tcl -share/postgresql/pgaccess/images/icon_button.gif -share/postgresql/pgaccess/images/icon_checkbutton.gif -share/postgresql/pgaccess/images/icon_entry.gif -share/postgresql/pgaccess/images/icon_frame.gif -share/postgresql/pgaccess/images/icon_label.gif -share/postgresql/pgaccess/images/icon_listbox.gif -share/postgresql/pgaccess/images/icon_query.gif -share/postgresql/pgaccess/images/icon_radiobutton.gif -share/postgresql/pgaccess/images/icon_text.gif -share/postgresql/pgaccess/lib/database.tcl -share/postgresql/pgaccess/lib/forms.tcl -share/postgresql/pgaccess/lib/functions.tcl -share/postgresql/pgaccess/lib/help/abort.hlp -share/postgresql/pgaccess/lib/help/add_records.hlp -share/postgresql/pgaccess/lib/help/alter_table.hlp -share/postgresql/pgaccess/lib/help/alter_user.hlp -share/postgresql/pgaccess/lib/help/author.hlp -share/postgresql/pgaccess/lib/help/begin.hlp -share/postgresql/pgaccess/lib/help/close.hlp -share/postgresql/pgaccess/lib/help/cluster.hlp -share/postgresql/pgaccess/lib/help/commit.hlp -share/postgresql/pgaccess/lib/help/copy.hlp -share/postgresql/pgaccess/lib/help/copyrights.hlp -share/postgresql/pgaccess/lib/help/create_aggregate.hlp -share/postgresql/pgaccess/lib/help/create_database.hlp -share/postgresql/pgaccess/lib/help/create_function.hlp -share/postgresql/pgaccess/lib/help/create_index.hlp -share/postgresql/pgaccess/lib/help/create_language.hlp -share/postgresql/pgaccess/lib/help/create_operator.hlp -share/postgresql/pgaccess/lib/help/create_rule.hlp -share/postgresql/pgaccess/lib/help/create_sequence.hlp -share/postgresql/pgaccess/lib/help/create_table.hlp -share/postgresql/pgaccess/lib/help/create_table_as.hlp -share/postgresql/pgaccess/lib/help/create_trigger.hlp -share/postgresql/pgaccess/lib/help/create_type.hlp -share/postgresql/pgaccess/lib/help/create_user.hlp -share/postgresql/pgaccess/lib/help/create_view.hlp -share/postgresql/pgaccess/lib/help/data_types.hlp -share/postgresql/pgaccess/lib/help/datefunc.hlp -share/postgresql/pgaccess/lib/help/declare.hlp -share/postgresql/pgaccess/lib/help/delete.hlp -share/postgresql/pgaccess/lib/help/drop_aggregate.hlp -share/postgresql/pgaccess/lib/help/drop_database.hlp -share/postgresql/pgaccess/lib/help/drop_function.hlp -share/postgresql/pgaccess/lib/help/drop_index.hlp -share/postgresql/pgaccess/lib/help/drop_language.hlp -share/postgresql/pgaccess/lib/help/drop_operator.hlp -share/postgresql/pgaccess/lib/help/drop_rule.hlp -share/postgresql/pgaccess/lib/help/drop_sequence.hlp -share/postgresql/pgaccess/lib/help/drop_table.hlp -share/postgresql/pgaccess/lib/help/drop_trigger.hlp -share/postgresql/pgaccess/lib/help/drop_type.hlp -share/postgresql/pgaccess/lib/help/drop_user.hlp -share/postgresql/pgaccess/lib/help/drop_view.hlp -share/postgresql/pgaccess/lib/help/explain.hlp -share/postgresql/pgaccess/lib/help/fetch.hlp -share/postgresql/pgaccess/lib/help/form_design.hlp -share/postgresql/pgaccess/lib/help/forms.hlp -share/postgresql/pgaccess/lib/help/functions.hlp -share/postgresql/pgaccess/lib/help/geomfunc.hlp -share/postgresql/pgaccess/lib/help/grant.hlp -share/postgresql/pgaccess/lib/help/history.hlp -share/postgresql/pgaccess/lib/help/index.hlp -share/postgresql/pgaccess/lib/help/inheritance.hlp -share/postgresql/pgaccess/lib/help/insert.hlp -share/postgresql/pgaccess/lib/help/ipv4func.hlp -share/postgresql/pgaccess/lib/help/isolation.hlp -share/postgresql/pgaccess/lib/help/keywords.hlp -share/postgresql/pgaccess/lib/help/listen.hlp -share/postgresql/pgaccess/lib/help/load.hlp -share/postgresql/pgaccess/lib/help/lock.hlp -share/postgresql/pgaccess/lib/help/mathfunc.hlp -share/postgresql/pgaccess/lib/help/move.hlp -share/postgresql/pgaccess/lib/help/mvcc.hlp -share/postgresql/pgaccess/lib/help/new_query.hlp -share/postgresql/pgaccess/lib/help/new_table.hlp -share/postgresql/pgaccess/lib/help/notify.hlp -share/postgresql/pgaccess/lib/help/open_query.hlp -share/postgresql/pgaccess/lib/help/open_table.hlp -share/postgresql/pgaccess/lib/help/pgfunctions.hlp -share/postgresql/pgaccess/lib/help/postgresql.hlp -share/postgresql/pgaccess/lib/help/queries.hlp -share/postgresql/pgaccess/lib/help/reports.hlp -share/postgresql/pgaccess/lib/help/reset.hlp -share/postgresql/pgaccess/lib/help/revoke.hlp -share/postgresql/pgaccess/lib/help/rollback.hlp -share/postgresql/pgaccess/lib/help/schema.hlp -share/postgresql/pgaccess/lib/help/scripts.hlp -share/postgresql/pgaccess/lib/help/select.hlp -share/postgresql/pgaccess/lib/help/select_into.hlp -share/postgresql/pgaccess/lib/help/sequences.hlp -share/postgresql/pgaccess/lib/help/set.hlp -share/postgresql/pgaccess/lib/help/show.hlp -share/postgresql/pgaccess/lib/help/sql_guide.hlp -share/postgresql/pgaccess/lib/help/sqlfunc.hlp -share/postgresql/pgaccess/lib/help/stringfunc.hlp -share/postgresql/pgaccess/lib/help/tables.hlp -share/postgresql/pgaccess/lib/help/unlisten.hlp -share/postgresql/pgaccess/lib/help/update.hlp -share/postgresql/pgaccess/lib/help/users.hlp -share/postgresql/pgaccess/lib/help/vacuum.hlp -share/postgresql/pgaccess/lib/help/view_table_structure.hlp -share/postgresql/pgaccess/lib/help/views.hlp -share/postgresql/pgaccess/lib/help/visual_designer.hlp -share/postgresql/pgaccess/lib/help/y2k.hlp -share/postgresql/pgaccess/lib/help.tcl -share/postgresql/pgaccess/lib/languages/czech -share/postgresql/pgaccess/lib/languages/chinese_big5 -share/postgresql/pgaccess/lib/languages/chinese_gb -share/postgresql/pgaccess/lib/languages/deutsch -share/postgresql/pgaccess/lib/languages/euskara -share/postgresql/pgaccess/lib/languages/francais -share/postgresql/pgaccess/lib/languages/italiano -share/postgresql/pgaccess/lib/languages/japanese -share/postgresql/pgaccess/lib/languages/magyar -share/postgresql/pgaccess/lib/languages/nederlands -share/postgresql/pgaccess/lib/languages/portugues -share/postgresql/pgaccess/lib/languages/romana -share/postgresql/pgaccess/lib/languages/russian.koi8r -share/postgresql/pgaccess/lib/languages/russian_win -share/postgresql/pgaccess/lib/languages/spanish -share/postgresql/pgaccess/lib/mainlib.tcl -share/postgresql/pgaccess/lib/preferences.tcl -share/postgresql/pgaccess/lib/queries.tcl -share/postgresql/pgaccess/lib/reports.tcl -share/postgresql/pgaccess/lib/schema.tcl -share/postgresql/pgaccess/lib/scripts.tcl -share/postgresql/pgaccess/lib/sequences.tcl -share/postgresql/pgaccess/lib/tables.tcl -share/postgresql/pgaccess/lib/users.tcl -share/postgresql/pgaccess/lib/views.tcl -share/postgresql/pgaccess/lib/visualqb.tcl -share/postgresql/pgaccess/main.tcl -@dirrm share/postgresql/pgaccess/images -@dirrm share/postgresql/pgaccess/lib/help -@dirrm share/postgresql/pgaccess/lib/languages -@dirrm share/postgresql/pgaccess/lib -@dirrm share/postgresql/pgaccess -@dirrm lib/tcl%%WITH_TCL%%/Pgtcl1.3 diff --git a/databases/postgresql73/scripts/configure.postgresql b/databases/postgresql73/scripts/configure.postgresql deleted file mode 100644 index 0b288ad43d25..000000000000 --- a/databases/postgresql73/scripts/configure.postgresql +++ /dev/null @@ -1,278 +0,0 @@ -#!/bin/sh -# -*- tab-width: 4; -*- -# ex:ts=4 -# -# $FreeBSD$ -# -if [ -f ${WRKDIRPREFIX}${CURDIR}/Makefile.inc ]; then - exit -fi - -if [ ! "${BATCH}" ]; then - dialog --title "Backup your data NOW" \ - --msgbox "`sed -e \"s#%%PREFIX%%#${PREFIX}#\" < ${FILESDIR}/pre-install-notes`" \ - -1 -1 -fi - -if [ "${BATCH}" ]; then - set \"MultiByte\" \"ODBC\" \"SSL\" \"TCL\" \"TCLTK\" -else - /usr/bin/dialog --title "configuration options" --clear \ - --checklist "\n\ -Please select desired options:" -1 -1 7 \ -JDBC "Java DataBase Connectivity" OFF \ -MultiByte "Multibyte for Multilingualism" ON \ -ODBC "Open Database Connectivity" ON \ -TCL "Tcl" ON \ -TCLTK "Tcl/Tk" ON \ -SSL "Secure Socket Layer" ON \ -KRB5 "Kerberos 5" OFF \ -2> /tmp/checklist.tmp.$$ - - retval=$? - - if [ -s /tmp/checklist.tmp.$$ ]; then - set `cat /tmp/checklist.tmp.$$` - fi - rm -f /tmp/checklist.tmp.$$ - - case $retval in - 0) if [ -z "$*" ]; then - echo "Nothing selected" - fi - ;; - 1) echo "Cancel pressed." - exit 1 - ;; - esac -fi - -${MKDIR} ${WRKDIRPREFIX}${CURDIR} -exec > ${WRKDIRPREFIX}${CURDIR}/Makefile.inc - -while [ "$1" ]; do - case $1 in - \"JDBC\") - # We use JAVA_HOME if set correctly. If the user has - # specified a JVM with JAVA_HOME or via the javavmwrapper, - # we validate that it really exists. It is unnecessarily - # complicated and error prone to try to figure out the - # correct java version just to be able to determine a - # BUILD_DEPEND in this case. Instead, assume that a set - # JAVA_HOME together with simple sanity check mean we have - # an installed JVM, and we don't bother setting - # BUILD_DEPENDS. - - echo "# JDBC" - # if JAVA_HOME is set and exists, use it - if [ "${JAVA_HOME}" -a -x "${JAVA_HOME}/bin/javac" ]; then - echo JAVA_HOME=${JAVA_HOME} - else - # No JAVA_HOME, check javavmwrapper's config file - if [ -r "${LOCALBASE}/etc/javavms" ]; then - VMS=`/usr/bin/sed 's|#.*||' < "${LOCALBASE}/etc/javavms" | uniq` - for JAVAVM in ${VMS}; do - if [ -x "${JAVAVM}" ]; then - JAVA_HOME=`echo ${JAVAVM} | /usr/bin/sed 's|/bin/java$||` - break - fi - done - fi - if [ "${JAVA_HOME}" -a -x "${JAVA_HOME}/bin/javac" ]; then - # yep, wrapper was good - echo JAVA_HOME=${JAVA_HOME} - else - # nothing, use our boring 1.1.8, the only native non-beta jdk :( - echo BUILD_DEPENDS+= \${LOCALBASE}/jdk1.1.8/bin/javac:\${PORTSDIR}/java/jdk - echo JAVA_HOME=\${LOCALBASE}/jdk1.1.8 - fi - fi - cat <<-EOF - BUILD_DEPENDS+= \${LOCALBASE}/bin/ant:\${PORTSDIR}/devel/jakarta-ant - CONFIGURE_ENV+= ANT=\${LOCALBASE}/bin/ant - WITH_JDBC=YES - MAKE_ENV+= JAVA_HOME=\${JAVA_HOME} - SCRIPTS_ENV+= JAVA_HOME=\${JAVA_HOME} - CONFIGURE_ARGS+= --with-java - - EOF - ;; - \"MultiByte\") - MULTIBYTE=1 - ;; - \"ODBC\") - cat <<-EOF - # ODBC - WITH_ODBC=YES - CONFIGURE_ARGS+= --with-odbc - - EOF - ;; - \"TCL\") - TCL=1 - ;; - \"TCLTK\") - echo "#TCLTK" - echo WITH_TK=YES - echo - TCL=1 - ;; - \"SSL\") - cat <<-EOF - # SSL - USE_OPENSSL= yes - CFLAGS+= -DUSE_SSL - WITH_SSL= yes - CONFIGURE_ENV+= LDFLAGS="-L\${OPENSSLLIB} -lssl -lcrypto" - CONFIGURE_ARGS+= --with-openssl - - EOF - ;; - \"KRB5\") - KRB5=1 - ;; - \"nothing\"|true) - ;; - *) - echo "Invalid option(s): $*" > /dev/stderr - rm -f ${WRKDIRPREFIX}${CURDIR}/Makefile.inc - exit 1 - ;; - esac - shift -done - -exec > /dev/stderr - -# if multibyte, determine charset -echo "# Multibyte" >> ${WRKDIRPREFIX}${CURDIR}/Makefile.inc - -if [ ! "${MULTIBYTE}" ]; then - echo "WITHOUT_MULTIBYTE=YES" >> ${WRKDIRPREFIX}${CURDIR}/Makefile.inc -else - if [ "${BATCH}" ]; then - set "nothing" - else - /usr/bin/dialog --title "configuration options" --clear \ - --radiolist "\n\ -Please select desired options:" -1 -1 16 \ -nothing "Default Encoding" ON \ -SQL_ASCII "SQL_ASCII" OFF \ -LATIN1 "LATIN1" OFF \ -LATIN2 "LATIN2" OFF \ -LATIN3 "LATIN3" OFF \ -LATIN4 "LATIN4" OFF \ -LATIN5 "LATIN5" OFF \ -EUC_JP "EUC_JP" OFF \ -EUC_CN "EUC_CN" OFF \ -EUC_KR "EUC_KR" OFF \ -EUC_TW "EUC_TW" OFF \ -KOI8 "KOI8" OFF \ -UNICODE "UNICODE" OFF \ -MULE_INTERNAL "MULE_INTERNAL" OFF \ -WIN "WIN" OFF \ -ALT "ALT" OFF \ -2> /tmp/checklist.tmp.$$ - - retval=$? - - if [ -s /tmp/checklist.tmp.$$ ]; then - set `cat /tmp/checklist.tmp.$$` - fi - rm -f /tmp/checklist.tmp.$$ - if [ $retval = 1 ]; then - echo "Cancel pressed." - rm ${WRKDIRPREFIX}${CURDIR}/Makefile.inc - exit 1 - fi - fi - - if [ "$1" = "nothing" ]; then - echo "CONFIGURE_ARGS+= --enable-multibyte" \ - >> ${WRKDIRPREFIX}${CURDIR}/Makefile.inc - else - echo "CONFIGURE_ARGS+= --enable-multibyte=$1" \ - >> ${WRKDIRPREFIX}${CURDIR}/Makefile.inc - fi -fi -echo - -if [ "${TCL}" ]; then - echo "# TCL" >> ${WRKDIRPREFIX}${CURDIR}/Makefile.inc - if [ "${BATCH}" ]; then - echo WITH_TCL=8.3 >> ${WRKDIRPREFIX}${CURDIR}/Makefile.inc - else - dialog --title "TCL version" \ - --inputbox "Please enter TCL version. Default is 8.3." -1 -1 "8.3" \ - 2> /tmp/checklist.tmp.$$ - retval=$? - if [ -s /tmp/checklist.tmp.$$ ]; then - set `cat /tmp/checklist.tmp.$$` - fi - rm -f /tmp/checklist.tmp.$$ - case $retval in - 0) if [ -z "$*" ]; then - echo "Nothing selected" - fi - ;; - 1) echo "Cancel pressed." - rm -f ${WRKDIRPREFIX}${CURDIR}/Makefile.inc - exit 1 - ;; - esac - echo WITH_TCL=$1 >> ${WRKDIRPREFIX}${CURDIR}/Makefile.inc - fi - cat <<-EOF >> ${WRKDIRPREFIX}${CURDIR}/Makefile.inc - CONFIGURE_ARGS+= --with-tcl --with-tclconfig="\${TCLCONFIG}" - TCLV=\${WITH_TCL:S/.//} - TCL_INCDIR= \${LOCALBASE}/include/tcl\${WITH_TCL} - MAKE_ENV+= TCL_INCDIR=\${TCL_INCDIR} - LIB_DEPENDS+= tcl\${TCLV}:\${PORTSDIR}/lang/tcl\${TCLV} - TCLCONFIG= "\${LOCALBASE}/lib/tcl\${WITH_TCL}" - .if defined(WITH_TK) - CONFIGURE_ARGS+= --with-tkconfig="\${TKCONFIG}" - TK_INCDIR= \${LOCALBASE}/include/tk\${WITH_TCL} - CONFIGURE_ENV+= WISH=\${LOCALBASE}/bin/wish\${WITH_TCL} - LIB_DEPENDS+= tk\${TCLV}:\${PORTSDIR}/x11-toolkits/tk\${TCLV} - TKCONFIG= "\${LOCALBASE}/lib/tk\${WITH_TCL}" - TCLCONFIG+= \${TKCONFIG} - TCL_PLIST= pkg-plist.tcl - .else - TCL_PLIST= pkg-plist.notk - CONFIGURE_ARGS+= --without-tk - .endif - - EOF -fi - -if [ "${KRB5}" ]; then - if [ "${BATCH}" ]; then - # never gets here, but what the heck... - echo KRB5_HOME=\${LOCALBASE} >> ${WRKDIRPREFIX}${CURDIR}/Makefile.inc - else - dialog --inputbox "Please enter the KRB5_HOME path" -1 -1 "${KRB_HOME:-${LOCALBASE}}" \ - 2> /tmp/checklist.tmp.$$ - retval=$? - if [ -s /tmp/checklist.tmp.$$ ]; then - set `cat /tmp/checklist.tmp.$$` - fi - rm -f /tmp/checklist.tmp.$$ - case $retval in - 0) if [ -z "$*" ]; then - echo "No input" - fi - ;; - 1) echo "Cancel pressed." - rm -f ${WRKDIRPREFIX}${CURDIR}/Makefile.inc - exit 1 - ;; - esac - echo KRB5_HOME=\"$1\" >> ${WRKDIRPREFIX}${CURDIR}/Makefile.inc - fi - cat <<-EOF >> ${WRKDIRPREFIX}${CURDIR}/Makefile.inc - .if defined(KRB5_HOME) && exists(\${KRB5_HOME}) - CONFIGURE_KRB= --with-krb5=\${KRB5_HOME} - .endif - - EOF -fi diff --git a/databases/postgresql74-server/Makefile b/databases/postgresql74-server/Makefile deleted file mode 100644 index 4a30008d77bc..000000000000 --- a/databases/postgresql74-server/Makefile +++ /dev/null @@ -1,198 +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.1.3 -CATEGORIES= databases -MASTER_SITES= ftp://ftp.sunet.se/pub/unix/databases/relational/postgresql/%SUBDIR%/ \ - ftp://ftp.postgresql.org/pub/%SUBDIR%/ \ - ftp://ftp.de.postgresql.org/%SUBDIR%/ \ - ftp://ftp.digex.net/pub/packages/database/postgresql/%SUBDIR%/ \ - ftp://ftp.chg.ru/pub/databases/postgresql/%SUBDIR%/ \ - ${MASTER_SITE_RINGSERVER:S,%SUBDIR%,misc/db/postgresql/&,} -MASTER_SITE_SUBDIR= source/v${PORTVERSION} -DISTFILES= ${PORTNAME}-base-${PORTVERSION}${EXTRACT_SUFX} \ - ${PORTNAME}-opt-${PORTVERSION}${EXTRACT_SUFX} -.if !defined(NOPORTDOCS) -DISTFILES+= ${PORTNAME}-docs-${PORTVERSION}${EXTRACT_SUFX} -.endif - -MAINTAINER= girgen@partitur.se - -DIST_SUBDIR= postgresql - -INSTALLS_SHLIB= YES - -DOCDIR= ${WRKDIR}/${DISTNAME}/doc -PLIST= ${WRKDIR}/.PLIST.generated - -USE_GMAKE= YES -HAS_CONFIGURE= YES -CONFIGURE_ARGS= --enable-locale \ - --enable-syslog --with-CXX \ - --sysconfdir=${PREFIX}/etc/postgresql \ - --with-includes="${PREFIX}/include ${TCL_INCDIR} ${TK_INCDIR}" \ - --with-libraries=${PREFIX}/lib -.if defined(WITH_OLD_LAYOUT) -CONFIGURE_ARGS+=--docdir=${PREFIX}/share/doc --includedir=${PREFIX}/pgsql/include \ - --datadir=${PREFIX}/share \ - --with-template=`uname -s | ${TR} '[A-Z]' '[a-z]'` \ - --prefix=${PREFIX}/pgsql -PG_PREFIX= pgsql/ -PG_INCLUDE= pgsql/include -LDCONFIG_DIRS= %%PREFIX%%/pgsql/lib -MANPREFIX= ${PREFIX}/pgsql -.else -GNU_CONFIGURE= YES -CONFIGURE_ARGS+=--docdir=${PREFIX}/share/doc --includedir=${PREFIX}/include/pgsql -PG_PREFIX="" -PG_INCLUDE= include/pgsql -.endif - -PLIST_SUB= PG_PREFIX="${PG_PREFIX}" PG_INCLUDE="${PG_INCLUDE}" WITH_TCL="${WITH_TCL}" - -MAN1= createdb.1 createlang.1 createuser.1 dropdb.1 droplang.1 \ - dropuser.1 ecpg.1 initdb.1 initlocation.1 ipcclean.1 pg_config.1 \ - pg_ctl.1 pg_dump.1 pg_dumpall.1 pg_passwd.1 pg_restore.1 \ - pgaccess.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 checkpoint.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 set_constraints.l set_transaction.l show.l \ - truncate.l unlisten.l update.l vacuum.l - -SCRIPTS_ENV= WRKDIRPREFIX="${WRKDIRPREFIX}" \ - WRKDIR="${WRKDIR}" \ - FILESDIR="${FILESDIR}" \ - TOUCH="${TOUCH}" \ - MKDIR="${MKDIR}" \ - NO_OPENSSL="${NO_OPENSSL}" \ - DISTNAME="${DISTNAME}" - -# We must .include here because we need the Makefile.inc @ pre-install -# to determine the correct plist. -.if exists(${WRKDIRPREFIX}${.CURDIR}/Makefile.inc) -.include "${WRKDIRPREFIX}${.CURDIR}/Makefile.inc" -.else -# make utility targets like depends and describe happy -LIB_DEPENDS= tcl83:${PORTSDIR}/lang/tcl83 \ - tk83:${PORTSDIR}/x11-toolkits/tk83 -.endif - -pre-everything:: - @ ${SETENV} ${SCRIPTS_ENV} ${SH} ${SCRIPTDIR}/configure.postgresql - -pre-install: - @ ${SETENV} PKG_PREFIX=${PREFIX} ${SH} ${PKGDIR}/pkg-install ${PORTNAME} PRE-INSTALL -.if !defined(BATCH) -# remind folks twice for a while, so they really don't miss the layout shift - @ ${SED} "s|/usr/local|${PREFIX}|g" < ${PKGMESSAGE} | head -n 25 | more -e -.endif - @ ${CP} ${PKGDIR}/pkg-plist ${PLIST} -.if defined(WITHOUT_MULTIBYTE) - @${CP} ${PLIST} ${PLIST}.nomulti ;\ - ${GREP} -v bin/pg_encoding ${PLIST}.nomulti > ${PLIST} -.endif -.if defined(WITH_TCL) - @ ${CP} ${PLIST} ${PLIST}.notcl ;\ - ${CAT} ${PKGDIR}/${TCL_PLIST} ${PLIST}.notcl > ${PLIST} ;\ - ${RM} ${PLIST}.notcl -.endif -.if defined(WITH_ODBC) - @ ${CP} ${PLIST} ${PLIST}.noodbc ;\ - ${CAT} ${PKGDIR}/pkg-plist.odbc ${PLIST}.noodbc > ${PLIST} ;\ - ${RM} ${PLIST}.noodbc -.endif -.if defined(WITH_JDBC) - @ ${CP} ${PLIST} ${PLIST}.nojdbc ;\ - ${CAT} ${PKGDIR}/pkg-plist.jdbc ${PLIST}.nojdbc > ${PLIST} ;\ - ${RM} ${PLIST}.nojdbc -.endif -.if !defined(NOPORTDOCS) - @ ${CAT} ${PKGDIR}/pkg-plist.doc >> ${PLIST} -.endif - -post-install: -# install shell defaults for pgsql user -.for i in profile cshrc - @ ${SED} "s|%%PREFIX%%|${PREFIX}|g; s|%%PG_PREFIX%%|${PG_PREFIX}|g" \ - < ${FILESDIR}/dot.$i.in \ - > ${PREFIX}/share/postgresql/dot.$i.dist; \ - ${CP} ${PREFIX}/share/postgresql/dot.$i.dist ~pgsql/; \ - if [ ! -f ~pgsql/.$i ]; then \ - ${CP} ${PREFIX}/share/postgresql/dot.$i.dist ~pgsql/.$i; \ - fi -.endfor - @ ${SED} -e "s|%%PREFIX%%|${PREFIX}|g; s|%%PG_PREFIX%%|${PG_PREFIX}|g" \ - < ${FILESDIR}/pgsql.sh.tmpl \ - > ${PREFIX}/etc/rc.d/010.pgsql.sh - @ ${CHMOD} 554 ${PREFIX}/etc/rc.d/010.pgsql.sh - @ ${CHOWN} root:pgsql ${PREFIX}/etc/rc.d/010.pgsql.sh -.if defined(WITH_TCL) -# Preparing a loadable TCL-package (pkgIndex.tcl) - @${MKDIR} ${PREFIX}/lib/tcl${WITH_TCL}/Pgtcl1.3 - @${SED} "s|%%PREFIX%%|${PREFIX}|g" < ${FILESDIR}/pkgIndex.tcl.in \ - > ${PREFIX}/lib/tcl${WITH_TCL}/Pgtcl1.3/pkgIndex.tcl -.endif -.if defined(WITH_JDBC) - @ ${MKDIR} -m 0555 ${PREFIX}/share/java/classes - @ ${INSTALL_DATA} ${WRKSRC}/src/interfaces/jdbc/jars/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} "---------------------------------------------------------" -.if !defined(NOPORTDOCS) - @ ${MKDIR} -m 0555 ${PREFIX}/share/examples/postgresql ;\ - cd ${WRKSRC}/src/interfaces/jdbc/example ;\ - pax -rw . ${PREFIX}/share/examples/postgresql -.for i in README Implementation - @ ${INSTALL_DATA} ${WRKSRC}/src/interfaces/jdbc/$i \ - ${PREFIX}/share/examples/postgresql -.endfor - @ ${ECHO_MSG} "---------------------------------------------------------------" - @ ${ECHO_MSG} "Putting java examples into ${PREFIX}/share/examples/postgresql" - @ ${ECHO_MSG} "---------------------------------------------------------------" -.endif -.endif -.if !defined(DEBUG_FLAGS) -.for file in ecpg pg_dump pg_id pg_passwd pg_restore postgres psql - @ strip ${PREFIX}/${PG_PREFIX}bin/${file} -.endfor -.endif -# information overload mode activated, sorry about this... ;-) - @ ${CAT} ${FILESDIR}/post-install-notes ${PKGMESSAGE} |\ - ${SED} "s|/usr/local|${PREFIX}|g" |\ - tee ${PREFIX}/share/postgresql/post-install-notes ;\ - ${INSTALL_DATA} ${PREFIX}/share/postgresql/post-install-notes ~pgsql/. ;\ - ${CHOWN} -R pgsql:pgsql ~pgsql/. -.if defined(WITH_OLD_LAYOUT) - @ ${CHOWN} root:pgsql ${PREFIX}/${PG_PREFIX}lib -.endif - -post-clean: - @ ${RM} -f ${WRKDIRPREFIX}${.CURDIR}/Makefile.inc - -post-extract: ${POSTEXTRACT} - -.include <bsd.port.mk> diff --git a/databases/postgresql74-server/distinfo b/databases/postgresql74-server/distinfo deleted file mode 100644 index 23e07754313f..000000000000 --- a/databases/postgresql74-server/distinfo +++ /dev/null @@ -1,3 +0,0 @@ -MD5 (postgresql/postgresql-base-7.1.3.tar.gz) = f932dea12806972402aaaf17a2a97034 -MD5 (postgresql/postgresql-opt-7.1.3.tar.gz) = e84e9c51b31567d4571c7612e0c0fbd6 -MD5 (postgresql/postgresql-docs-7.1.3.tar.gz) = 7061ab7f7ec3c4d18f8e6cb2858896d0 diff --git a/databases/postgresql74-server/files/dot.cshrc.in b/databases/postgresql74-server/files/dot.cshrc.in deleted file mode 100644 index a326041bff7b..000000000000 --- a/databases/postgresql74-server/files/dot.cshrc.in +++ /dev/null @@ -1,13 +0,0 @@ -set path = ( %%PREFIX%%/%%PG_PREFIX%%bin $path ) - -setenv PGLIB %%PREFIX%%/%%PG_PREFIX%%lib - -# note: PGDATA can be overridden by the -D startup option -setenv PGDATA $HOME/data - -#You might want to set some locale stuff here -#setenv PGDATESTYLE ISO -#setenv LC_ALL sv_SE.ISO_8859-1 - -# if you want to make regression tests use this TZ -#setenv TZ PST8PDT diff --git a/databases/postgresql74-server/files/dot.profile.in b/databases/postgresql74-server/files/dot.profile.in deleted file mode 100644 index 4aca6aadd19a..000000000000 --- a/databases/postgresql74-server/files/dot.profile.in +++ /dev/null @@ -1,18 +0,0 @@ -# both new and old layout's paths, but new path first... -PATH=%%PREFIX%%/%%PG_PREFIX%%bin:${PATH} - -PGLIB=%%PREFIX%%/%%PG_PREFIX%%lib - -# note: PGDATA can be overridden by the -D startup option -PGDATA=${HOME}/data - -export PATH PGLIB PGDATA - -#You might want to set some locale stuff here -#PGDATESTYLE=ISO -#LC_ALL=sv_SE.ISO_8859-1 -#export PGDATESTYLE LC_ALL - -# if you want to make regression tests use this TZ -#TZ=PST8PDT -#export TZ diff --git a/databases/postgresql74-server/files/patch-aj b/databases/postgresql74-server/files/patch-aj deleted file mode 100644 index 94c0d6d79991..000000000000 --- a/databases/postgresql74-server/files/patch-aj +++ /dev/null @@ -1,118 +0,0 @@ ---- src/bin/pg_passwd/pg_passwd.c.orig Sat Mar 24 01:54:55 2001 -+++ src/bin/pg_passwd/pg_passwd.c Wed Apr 18 04:54:14 2001 -@@ -7,6 +7,12 @@ - #include <errno.h> - #include <time.h> - #include <ctype.h> -+ -+#if defined(__FreeBSD__) -+#include <pwd.h> /* defines _PASSWORD_LEN, max # of characters in a password */ -+#include <sys/time.h> /* gettimeofday for password salt */ -+#endif -+ - #define issaltchar(c) (isalnum((unsigned char) (c)) || (c) == '.' || (c) == '/') - - #ifdef HAVE_TERMIOS_H -@@ -23,18 +29,31 @@ - * We assume that the output of crypt(3) is always 13 characters, - * and that at most 8 characters can usefully be sent to it. - * -+ * For FreeBSD, take these values from /usr/include/pwd.h - * Postgres usernames are assumed to be less than NAMEDATALEN chars long. - */ -+#if defined(__FreeBSD__) -+#define CLEAR_PASSWD_LEN _PASSWORD_LEN -+#define CRYPTED_PASSWD_LEN _PASSWORD_LEN /* max length, not containing NULL */ -+#define SALT_LEN 10 -+#else - #define CLEAR_PASSWD_LEN 8 /* not including null */ - #define CRYPTED_PASSWD_LEN 13 /* not including null */ -+#define SALT_LEN 3 -+#endif -+ -+static unsigned char itoa64[] = /* 0 ... 63 => ascii - 64 */ -+ "./0123456789ABCDEFGHIJKLMNOPQRSTUVWXYZabcdefghijklmnopqrstuvwxyz"; -+ - - const char *progname; - - static void usage(void); -+static void to64(char *s, long v, int n); - static void read_pwd_file(char *filename); - static void write_pwd_file(char *filename, char *bkname); - static void encrypt_pwd(char key[CLEAR_PASSWD_LEN + 1], -- char salt[3], -+ char salt[SALT_LEN], - char passwd[CRYPTED_PASSWD_LEN + 1]); - static void prompt_for_username(char *username); - static void prompt_for_password(char *prompt, char *password); -@@ -47,6 +66,15 @@ - printf("Report bugs to <pgsql-bugs@postgresql.org>.\n"); - } - -+static void -+to64(char *s, long v, int n) -+{ -+ while (--n >= 0) { -+ *s++ = itoa64[v&0x3f]; -+ v >>= 6; -+ } -+} -+ - typedef struct - { - char *uname; -@@ -154,7 +182,7 @@ - if (q != NULL) - *(q++) = '\0'; - -- if (strlen(p) != CRYPTED_PASSWD_LEN && strcmp(p, "+") != 0) -+ if (strlen(p) > CRYPTED_PASSWD_LEN && strcmp(p, "+") != 0) - { - fprintf(stderr, "%s:%d: warning: invalid password length\n", - filename, npwds + 1); -@@ -221,15 +249,25 @@ - - static void - encrypt_pwd(char key[CLEAR_PASSWD_LEN + 1], -- char salt[3], -+ char salt[SALT_LEN], - char passwd[CRYPTED_PASSWD_LEN + 1]) - { -+#if !defined(__FreeBSD__) - int n; -- -+#endif - /* select a salt, if not already given */ - if (salt[0] == '\0') - { -+#if defined(__FreeBSD__) -+ struct timeval tv; -+ srandomdev(); -+ gettimeofday(&tv,0); -+ to64(&salt[0], random(), 3); -+ to64(&salt[3], tv.tv_usec, 3); -+ to64(&salt[6], tv.tv_sec, 2); -+ salt[8] = '\0'; - srand(time(NULL)); -+#else - do - { - n = rand() % 256; -@@ -241,6 +279,7 @@ - } while (!issaltchar(n)); - salt[1] = n; - salt[2] = '\0'; -+#endif - } - - /* get encrypted password */ -@@ -335,7 +374,7 @@ - char *filename; - char bkname[MAXPGPATH]; - char username[NAMEDATALEN]; -- char salt[3]; -+ char salt[SALT_LEN]; - char key[CLEAR_PASSWD_LEN + 1], - key2[CLEAR_PASSWD_LEN + 1]; - char e_passwd[CRYPTED_PASSWD_LEN + 1]; diff --git a/databases/postgresql74-server/files/patch-contrib-retep-build b/databases/postgresql74-server/files/patch-contrib-retep-build deleted file mode 100644 index 80f40f1cc86d..000000000000 --- a/databases/postgresql74-server/files/patch-contrib-retep-build +++ /dev/null @@ -1,37 +0,0 @@ -=================================================================== -RCS file: /home/projects/pgsql/cvsroot/pgsql/contrib/retep/build.xml,v -retrieving revision 1.4 -retrieving revision 1.5 -diff -u -r1.4 -r1.5 ---- contrib/retep/build.xml 2001/03/11 11:06:59 1.4 -+++ contrib/retep/build.xml 2001/05/16 16:20:51 1.5 -@@ -2,7 +2,7 @@ - - build file to build the donated retep tools packages - -- $Id: build.xml,v 1.4 2001/03/11 11:06:59 petere Exp $ -+ $Id: build.xml,v 1.5 2001/05/16 16:20:51 momjian Exp $ - - --> - -@@ -22,6 +22,11 @@ - <available property="xml" classname="org.xml.sax.Parser" /> - </target> - -+ <target name="warning" depends="checks" unless="jdk1.2+"> -+ <echo message="WARNING -- contributed retep tools need jdk1.2 or later -- compilation NOT done." /> -+ </target> -+ -+ - <!-- Prepares the build by creating a directory to place the class files --> - <target name="prepare"> - <mkdir dir="${dest}" /> -@@ -35,7 +40,7 @@ - </target> - - <!-- Builds the XML Tools --> -- <target name="compile" depends="checks,prepare"> -+ <target name="compile" depends="checks,prepare,warning" if="jdk1.2+"> - <javac srcdir="${src}" destdir="${dest}"> - <include name="${package}/**" /> - </javac> diff --git a/databases/postgresql74-server/files/patch-doc-makefile b/databases/postgresql74-server/files/patch-doc-makefile deleted file mode 100644 index fa27bed2af3f..000000000000 --- a/databases/postgresql74-server/files/patch-doc-makefile +++ /dev/null @@ -1,19 +0,0 @@ ---- doc/Makefile~ Sun Jan 7 03:03:22 2001 -+++ doc/Makefile Wed Apr 18 08:12:30 2001 -@@ -43,10 +43,13 @@ - gzip -d -c man.tar.gz | ( cd $(DESTDIR)$(mandir) && $(TAR) xf - ) - endif - -- - installdirs: -- $(mkinstalldirs) $(DESTDIR)$(mandir) $(DESTDIR)$(docdir)/html -- -+ifdef found_html -+ $(mkinstalldirs) $(DESTDIR)$(docdir)/html -+endif -+ifdef found_man -+ $(mkinstalldirs) $(DESTDIR)$(mandir) -+endif - - uninstall: - ifdef found_html diff --git a/databases/postgresql74-server/files/patch-jdbc-Connection b/databases/postgresql74-server/files/patch-jdbc-Connection deleted file mode 100644 index 26fbc260d639..000000000000 --- a/databases/postgresql74-server/files/patch-jdbc-Connection +++ /dev/null @@ -1,51 +0,0 @@ -=================================================================== -RCS file: /home/projects/pgsql/cvsroot/pgsql/src/interfaces/jdbc/org/postgresql/Connection.java,v -retrieving revision 1.14 -retrieving revision 1.16 -diff -u -r1.14 -r1.16 ---- src/interfaces/jdbc/org/postgresql/Connection.java 2001/01/31 08:26:01 1.14 -+++ src/interfaces/jdbc/org/postgresql/Connection.java 2001/06/01 20:57:58 1.16 -@@ -10,7 +10,7 @@ - import org.postgresql.util.*; - - /** -- * $Id: Connection.java,v 1.14 2001/01/31 08:26:01 peter Exp $ -+ * $Id: Connection.java,v 1.16 2001/06/01 20:57:58 momjian Exp $ - * - * This abstract class is used by org.postgresql.Driver to open either the JDBC1 or - * JDBC2 versions of the Connection class. -@@ -267,7 +267,8 @@ - // - firstWarning = null; - -- java.sql.ResultSet initrset = ExecSQL("set datestyle to 'ISO'; select getdatabaseencoding()"); -+ java.sql.ResultSet initrset = ExecSQL("set datestyle to 'ISO'; " + -+ "select case when pg_encoding_to_char(1) = 'SQL_ASCII' then 'UNKNOWN' else getdatabaseencoding() end"); - - String dbEncoding = null; - //retrieve DB properties -@@ -307,9 +308,23 @@ - } else if (dbEncoding.equals("EUC_TW")) { - dbEncoding = "EUC_TW"; - } else if (dbEncoding.equals("KOI8")) { -- dbEncoding = "KOI8_R"; -+ // try first if KOI8_U is present, it's a superset of KOI8_R -+ try { -+ dbEncoding = "KOI8_U"; -+ "test".getBytes(dbEncoding); -+ } -+ catch(UnsupportedEncodingException uee) { -+ // well, KOI8_U is still not in standard JDK, falling back to KOI8_R :( -+ dbEncoding = "KOI8_R"; -+ } -+ - } else if (dbEncoding.equals("WIN")) { - dbEncoding = "Cp1252"; -+ } else if (dbEncoding.equals("UNKNOWN")) { -+ //This isn't a multibyte database so we don't have an encoding to use -+ //We leave dbEncoding null which will cause the default encoding for the -+ //JVM to be used -+ dbEncoding = null; - } else { - dbEncoding = null; - } diff --git a/databases/postgresql74-server/files/patch-jdbc-build-xml b/databases/postgresql74-server/files/patch-jdbc-build-xml deleted file mode 100644 index b1c703a9c978..000000000000 --- a/databases/postgresql74-server/files/patch-jdbc-build-xml +++ /dev/null @@ -1,10 +0,0 @@ ---- src/interfaces/jdbc/build.xml~ Fri Mar 16 22:50:43 2001 -+++ src/interfaces/jdbc/build.xml Wed Apr 18 08:57:57 2001 -@@ -120,6 +120,7 @@ - <javac srcdir="${src}" destdir="${dest}"> - <include name="example/**" /> - <exclude name="example/corba/**"/> -+ <exclude name="example/blobtest.java" unless="jdk1.2+"/> - </javac> - </target> - diff --git a/databases/postgresql74-server/files/patch-jdbc-getdate b/databases/postgresql74-server/files/patch-jdbc-getdate deleted file mode 100644 index 744407ae14b5..000000000000 --- a/databases/postgresql74-server/files/patch-jdbc-getdate +++ /dev/null @@ -1,34 +0,0 @@ ---- src/interfaces/jdbc/org/postgresql/jdbc2/ResultSet.java~ Fri Feb 23 19:12:23 2001 -+++ src/interfaces/jdbc/org/postgresql/jdbc2/ResultSet.java Wed May 9 04:31:11 2001 -@@ -423,8 +423,13 @@ - String s = getString(columnIndex); - if(s==null) - return null; -- -- return java.sql.Date.valueOf(s); -+ // length == 10: SQL Date -+ // length > 10: SQL Timestamp, assumes PGDATESTYLE=ISO -+ try { -+ return java.sql.Date.valueOf((s.length() == 10) ? s : s.substring(0,10)); -+ } catch (NumberFormatException e) { -+ throw new PSQLException("postgresql.res.baddate", s); -+ } - } - - /** -@@ -441,8 +446,13 @@ - - if(s==null) - return null; // SQL NULL -- -- return java.sql.Time.valueOf(s); -+ // length == 8: SQL Time -+ // length > 8: SQL Timestamp -+ try { -+ return java.sql.Time.valueOf((s.length() == 8) ? s : s.substring(11,19)); -+ } catch (NumberFormatException e) { -+ throw new PSQLException("postgresql.res.badtime",s); -+ } - } - - /** diff --git a/databases/postgresql74-server/files/pgsql.sh.tmpl b/databases/postgresql74-server/files/pgsql.sh.tmpl deleted file mode 100644 index cd78771219ed..000000000000 --- a/databases/postgresql74-server/files/pgsql.sh.tmpl +++ /dev/null @@ -1,36 +0,0 @@ -#!/bin/sh - -# $FreeBSD$ -# -# For postmaster startup options, edit $PGDATA/postgresql.conf - -PGBIN=%%PREFIX%%/%%PG_PREFIX%%bin - -case $1 in -start) - [ -d %%PREFIX%%/%%PG_PREFIX%%lib ] && /sbin/ldconfig -m %%PREFIX%%/%%PG_PREFIX%%lib - [ -x ${PGBIN}/pg_ctl ] && { - su -l pgsql -c \ - '[ -d ${PGDATA} ] && exec %%PREFIX%%/%%PG_PREFIX%%bin/pg_ctl start -s -w -l ~pgsql/errlog' - echo -n ' pgsql' - } - ;; - -stop) - [ -x ${PGBIN}/pg_ctl ] && { - su -l pgsql -c 'exec %%PREFIX%%/%%PG_PREFIX%%bin/pg_ctl stop -s -m fast' - echo -n ' pgsql' - } - ;; - -status) - [ -x ${PGBIN}/pg_ctl ] && { - exec su -l pgsql -c 'exec %%PREFIX%%/%%PG_PREFIX%%bin/pg_ctl status' - } - ;; - -*) - echo "usage: `basename $0` {start|stop|status}" >&2 - exit 64 - ;; -esac diff --git a/databases/postgresql74-server/files/pkgIndex.tcl.in b/databases/postgresql74-server/files/pkgIndex.tcl.in deleted file mode 100644 index bd8329b15c69..000000000000 --- a/databases/postgresql74-server/files/pkgIndex.tcl.in +++ /dev/null @@ -1,4 +0,0 @@ -# Package-index file for Pgtcl-package. Enables you to load PostgreSQL -# interface functions right into you TCL-interpreter as simply as -# package require Pgtcl -package ifneeded Pgtcl 1.3 "load %%PREFIX%%/lib/libpgtcl.so" diff --git a/databases/postgresql74-server/files/post-install-notes b/databases/postgresql74-server/files/post-install-notes deleted file mode 100644 index 9347fc51c247..000000000000 --- a/databases/postgresql74-server/files/post-install-notes +++ /dev/null @@ -1,25 +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/TK support, you can use the pgaccess -utility to get a TCL/TK based database frontend for database -operations. You do NOT need to install the pgaccess port separately. - -If you built in the TCL support, you can load the Pg package into your -TCL scripts as easily as ``package require Pgtcl''. - -If you built with Java support, add -/usr/local/share/java/classes/postgresql.jar to your classpath. - -If you have many tables and many clients running, consider raising -kern.maxfiles using sysctl(8). - -Use createlang(1) to install languages into your database. -Supported languages are 'plpgsql', 'pltcl', 'pltclu', and 'plperl'. diff --git a/databases/postgresql74-server/files/pre-install-notes b/databases/postgresql74-server/files/pre-install-notes deleted file mode 100644 index 697ce3cedb79..000000000000 --- a/databases/postgresql74-server/files/pre-install-notes +++ /dev/null @@ -1,21 +0,0 @@ - * IMPORTANT UPGRADE NOTICE * IMPORTANT UPGRADE NOTICE * - -The PostgreSQL port now obeys hier(7) by default, which means that it -installs into: - -%%PREFIX%%/bin -%%PREFIX%%/lib -%%PREFIX%%/include/pgsql - -You *must* move away your old installation to avoid problems with -ldconfig(8) and user's PATH:s. If you rather install using the -old-fashion layout, cancel at next screen and run make as: - -$ make -DWITH_OLD_LAYOUT - -As always, you *must* dump existing databases before stopping and -removing your old postgresql, as part of the update. This is *NOT* -done by this port! - -If you want JAVA support, I will try to determine your JAVA_HOME using -javavmwrapper. If you want a different JVM, please set JAVA_HOME. 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 463e4e49815f..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 cfc983fc2f66..000000000000 --- a/databases/postgresql74-server/pkg-install +++ /dev/null @@ -1,46 +0,0 @@ -#! /bin/sh - -# $FreeBSD$ - -PATH=/bin:/usr/sbin - -DB_DIR=${PKG_PREFIX}/pgsql - -case $2 in -PRE-INSTALL) - USER=pgsql - GROUP=${USER} - UID=70 - 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} -c "PostgreSQL Daemon" - then - echo "Added user \"${USER}\"." - else - echo "Adding user \"${USER}\" failed..." - exit 1 - fi - fi - - if ! [ -x ~pgsql ] ; then - mkdir -p ${DB_DIR} - chown pgsql:pgsql ${DB_DIR} - fi - ;; - -esac diff --git a/databases/postgresql74-server/pkg-message b/databases/postgresql74-server/pkg-message deleted file mode 100644 index 1a3f9f1e4147..000000000000 --- a/databases/postgresql74-server/pkg-message +++ /dev/null @@ -1,38 +0,0 @@ - -====================================================================== - - * IMPORTANT UPGRADE NOTICE * IMPORTANT UPGRADE NOTICE * - -The PostgreSQL port now obeys hier(7) by default, which means that it -installs into: - -/usr/local/bin -/usr/local/lib -/usr/local/include/pgsql - -You *must* move away your old installation from users' and -ldconfig(8)'s PATHs. If you rather install using the old-fashion -layout, cancel now and build the port with "make -DWITH_OLD_LAYOUT". - -The pgsql user's home dir is /usr/local/pgsql by default, but can be -changed with for example chpass(1). Datadir defaults to ~pgsql/data, -but can be changed by modifying the ~pgsql/.profile script. - -As always, backup your data before upgrading. If the upgrade leads to -a higher minor revision (i.e. 7.0.x -> 7.1.x), a dump and restore of -all databases is required. This is *NOT* done by the port! - -====================================================================== - -To initialize the database, you should run initdb as the "pgsql" user. - -Example: - - su -l pgsql -c initdb - -You can then start PostgreSQL by running: - - /usr/local/etc/rc.d/010.pgsql.sh start - -For postmaster settings, see ~pgsql/data/postgresql.conf -====================================================================== diff --git a/databases/postgresql74-server/pkg-plist b/databases/postgresql74-server/pkg-plist deleted file mode 100644 index a7493ddb7898..000000000000 --- a/databases/postgresql74-server/pkg-plist +++ /dev/null @@ -1,91 +0,0 @@ -%%PG_PREFIX%%bin/postmaster -%%PG_PREFIX%%bin/postgres -%%PG_PREFIX%%bin/ecpg -%%PG_PREFIX%%bin/initdb -%%PG_PREFIX%%bin/initlocation -%%PG_PREFIX%%bin/ipcclean -%%PG_PREFIX%%bin/pg_ctl -%%PG_PREFIX%%bin/pg_dump -%%PG_PREFIX%%bin/pg_restore -%%PG_PREFIX%%bin/pg_encoding -%%PG_PREFIX%%bin/pg_dumpall -%%PG_PREFIX%%bin/pg_id -%%PG_PREFIX%%bin/pg_passwd -%%PG_PREFIX%%bin/psql -%%PG_PREFIX%%bin/createdb -%%PG_PREFIX%%bin/dropdb -%%PG_PREFIX%%bin/createuser -%%PG_PREFIX%%bin/dropuser -%%PG_PREFIX%%bin/droplang -%%PG_PREFIX%%bin/vacuumdb -%%PG_PREFIX%%bin/createlang -%%PG_PREFIX%%bin/pg_config -etc/rc.d/010.pgsql.sh -%%PG_INCLUDE%%/lib/dllist.h -@dirrm %%PG_INCLUDE%%/lib -%%PG_INCLUDE%%/libpq/pqcomm.h -%%PG_INCLUDE%%/libpq/libpq-fs.h -@dirrm %%PG_INCLUDE%%/libpq -%%PG_INCLUDE%%/libpq++/pgconnection.h -%%PG_INCLUDE%%/libpq++/pgdatabase.h -%%PG_INCLUDE%%/libpq++/pgtransdb.h -%%PG_INCLUDE%%/libpq++/pgcursordb.h -%%PG_INCLUDE%%/libpq++/pglobject.h -@dirrm %%PG_INCLUDE%%/libpq++ -%%PG_INCLUDE%%/c.h -%%PG_INCLUDE%%/postgres_ext.h -%%PG_INCLUDE%%/postgres_fe.h -%%PG_INCLUDE%%/os.h -%%PG_INCLUDE%%/config.h -%%PG_INCLUDE%%/libpq-fe.h -%%PG_INCLUDE%%/libpq-int.h -%%PG_INCLUDE%%/pqexpbuffer.h -%%PG_INCLUDE%%/ecpgerrno.h -%%PG_INCLUDE%%/ecpglib.h -%%PG_INCLUDE%%/ecpgtype.h -%%PG_INCLUDE%%/sqlca.h -%%PG_INCLUDE%%/sql3types.h -%%PG_INCLUDE%%/libpgeasy.h -%%PG_INCLUDE%%/libpq++.h -@dirrm %%PG_INCLUDE%% -%%PG_PREFIX%%lib/libpq.so -%%PG_PREFIX%%lib/libpq.a -%%PG_PREFIX%%lib/libpq.so.2 -%%PG_PREFIX%%lib/libecpg.so -%%PG_PREFIX%%lib/libecpg.a -%%PG_PREFIX%%lib/libecpg.so.3 -%%PG_PREFIX%%lib/libpgeasy.so -%%PG_PREFIX%%lib/libpgeasy.a -%%PG_PREFIX%%lib/libpgeasy.so.2 -%%PG_PREFIX%%lib/libpq++.so -%%PG_PREFIX%%lib/libpq++.a -%%PG_PREFIX%%lib/libpq++.so.3 -%%PG_PREFIX%%lib/plpgsql.so -share/postgresql/global.bki -share/postgresql/global.description -share/postgresql/post-install-notes -share/postgresql/template1.bki -share/postgresql/template1.description -share/postgresql/pg_hba.conf.sample -share/postgresql/pg_ident.conf.sample -share/postgresql/postgresql.conf.sample -@unexec if cmp -s ~pgsql/.profile %D/share/postgresql/dot.profile.dist; then rm -f ~pgsql/.profile; fi -@unexec if cmp -s ~pgsql/.cshrc %D/share/postgresql/dot.cshrc.dist; then rm -f ~pgsql/.cshrc; fi -@unexec [ -f ~pgsql/dot.profile.dist ] && rm ~pgsql/dot.profile.dist -@unexec [ -f ~pgsql/dot.cshrc.dist ] && rm ~pgsql/dot.cshrc.dist -@exec [ -f %D/share/postgresql/post-install-notes ] && cp %D/share/postgresql/post-install-notes ~pgsql && chown pgsql:pgsql ~pgsql/post-install-notes -@unexec [ -f ~pgsql/post-install-notes ] && rm ~pgsql/post-install-notes -share/postgresql/dot.profile.dist -share/postgresql/dot.cshrc.dist -@dirrm share/postgresql -@exec [ -f %D/share/postgresql/dot.profile.dist ] && cp %D/share/postgresql/dot.profile.dist ~pgsql/. -@exec [ -f %D/share/postgresql/dot.cshrc.dist ] && cp %D/share/postgresql/dot.cshrc.dist ~pgsql/. -@exec [ -f ~pgsql/.profile ] || (cp %D/share/postgresql/dot.profile.dist ~pgsql/.profile && chown pgsql:pgsql ~pgsql/.profile) -@exec [ -f ~pgsql/.cshrc ] || (cp %D/share/postgresql/dot.cshrc.dist ~pgsql/.cshrc && chown pgsql:pgsql ~pgsql/.cshrc) -@unexec [ X%%PG_PREFIX%% != X ] && rmdir %D/%%PG_PREFIX%%bin 2> /dev/null || true -@unexec [ X%%PG_PREFIX%% != X ] && rmdir %D/%%PG_PREFIX%%lib 2> /dev/null || true -@unexec [ X%%PG_PREFIX%% != X ] && rmdir %D/%%PG_PREFIX%%man/man1 2> /dev/null || true -@unexec [ X%%PG_PREFIX%% != X ] && rmdir %D/%%PG_PREFIX%%man/manl 2> /dev/null || true -@unexec [ X%%PG_PREFIX%% != X ] && rmdir %D/%%PG_PREFIX%%man 2> /dev/null || true -@unexec rmdir ~pgsql 2> /dev/null || true -@unexec echo "Warning: If you will *NOT* use this package anymore, please remove %D/pgsql and the pgsql user manually." diff --git a/databases/postgresql74-server/pkg-plist.doc b/databases/postgresql74-server/pkg-plist.doc deleted file mode 100644 index c4d50ecb24f0..000000000000 --- a/databases/postgresql74-server/pkg-plist.doc +++ /dev/null @@ -1,494 +0,0 @@ -share/doc/postgresql/html/admin.html -share/doc/postgresql/html/advanced.html -share/doc/postgresql/html/altern-locations.html -share/doc/postgresql/html/app-createdb.html -share/doc/postgresql/html/app-createlang.html -share/doc/postgresql/html/app-createuser.html -share/doc/postgresql/html/app-dropdb.html -share/doc/postgresql/html/app-droplang.html -share/doc/postgresql/html/app-dropuser.html -share/doc/postgresql/html/app-ecpg.html -share/doc/postgresql/html/app-initdb.html -share/doc/postgresql/html/app-initlocation.html -share/doc/postgresql/html/app-ipcclean.html -share/doc/postgresql/html/app-pg-ctl.html -share/doc/postgresql/html/app-pg-dumpall.html -share/doc/postgresql/html/app-pg-passwd.html -share/doc/postgresql/html/app-pgaccess.html -share/doc/postgresql/html/app-pgadmin.html -share/doc/postgresql/html/app-pgconfig.html -share/doc/postgresql/html/app-pgdump.html -share/doc/postgresql/html/app-pgrestore.html -share/doc/postgresql/html/app-pgtclsh.html -share/doc/postgresql/html/app-pgtksh.html -share/doc/postgresql/html/app-postgres.html -share/doc/postgresql/html/app-postmaster.html -share/doc/postgresql/html/app-psql.html -share/doc/postgresql/html/app-vacuumdb.html -share/doc/postgresql/html/applevel-consistency.html -share/doc/postgresql/html/arch-pg.html -share/doc/postgresql/html/arch.html -share/doc/postgresql/html/arrays.html -share/doc/postgresql/html/auth-methods.html -share/doc/postgresql/html/backup-file.html -share/doc/postgresql/html/backup.html -share/doc/postgresql/html/biblio.html -share/doc/postgresql/html/bki-commands.html -share/doc/postgresql/html/bki-example.html -share/doc/postgresql/html/bki.html -share/doc/postgresql/html/bug-reporting.html -share/doc/postgresql/html/catalog-pg-aggregate.html -share/doc/postgresql/html/catalog-pg-attrdef.html -share/doc/postgresql/html/catalog-pg-attribute.html -share/doc/postgresql/html/catalog-pg-class.html -share/doc/postgresql/html/catalog-pg-database.html -share/doc/postgresql/html/catalog-pg-description.html -share/doc/postgresql/html/catalog-pg-group.html -share/doc/postgresql/html/catalog-pg-index.html -share/doc/postgresql/html/catalog-pg-inherits.html -share/doc/postgresql/html/catalog-pg-language.html -share/doc/postgresql/html/catalog-pg-operator.html -share/doc/postgresql/html/catalog-pg-proc.html -share/doc/postgresql/html/catalog-pg-relcheck.html -share/doc/postgresql/html/catalog-pg-shadow.html -share/doc/postgresql/html/catalog-pg-type.html -share/doc/postgresql/html/catalogs.html -share/doc/postgresql/html/charset.html -share/doc/postgresql/html/client-authentication-problems.html -share/doc/postgresql/html/client-authentication.html -share/doc/postgresql/html/compiler.html -share/doc/postgresql/html/connect-estab.html -share/doc/postgresql/html/creating-cluster.html -share/doc/postgresql/html/cvs-tree.html -share/doc/postgresql/html/cvs.html -share/doc/postgresql/html/cvsup.html -share/doc/postgresql/html/datatype-bit.html -share/doc/postgresql/html/datatype-boolean.html -share/doc/postgresql/html/datatype-character.html -share/doc/postgresql/html/datatype-datetime.html -share/doc/postgresql/html/datatype-geometric.html -share/doc/postgresql/html/datatype-money.html -share/doc/postgresql/html/ecpg.html -share/doc/postgresql/html/datatype-net-types.html -share/doc/postgresql/html/datatype.html -share/doc/postgresql/html/datetime-appendix.html -share/doc/postgresql/html/db-accessing.html -share/doc/postgresql/html/db-destroy.html -share/doc/postgresql/html/developer.html -share/doc/postgresql/html/doc-build.html -share/doc/postgresql/html/doc-sources.html -share/doc/postgresql/html/doc-toolsets.html -share/doc/postgresql/html/docguide.html -share/doc/postgresql/html/ecpg-concept.html -share/doc/postgresql/html/ecpg-develop.html -share/doc/postgresql/html/ecpg-limitations.html -share/doc/postgresql/html/ecpg-porting.html -share/doc/postgresql/html/ecpg-use.html -share/doc/postgresql/html/executor.html -share/doc/postgresql/html/explicit-joins.html -share/doc/postgresql/html/extend.html -share/doc/postgresql/html/functions-datetime.html -share/doc/postgresql/html/functions-aggregate.html -share/doc/postgresql/html/functions-comparison.html -share/doc/postgresql/html/functions-conditional.html -share/doc/postgresql/html/functions-formatting.html -share/doc/postgresql/html/functions-geometry.html -share/doc/postgresql/html/functions-matching.html -share/doc/postgresql/html/functions-math.html -share/doc/postgresql/html/functions-misc.html -share/doc/postgresql/html/functions-net.html -share/doc/postgresql/html/functions-string.html -share/doc/postgresql/html/functions.html -share/doc/postgresql/html/geqo-intro2.html -share/doc/postgresql/html/geqo-pg-intro.html -share/doc/postgresql/html/geqo.html -share/doc/postgresql/html/gist.html -share/doc/postgresql/html/groups.html -share/doc/postgresql/html/history.html -share/doc/postgresql/html/index.html -share/doc/postgresql/html/indexcost.html -share/doc/postgresql/html/indices-functional.html -share/doc/postgresql/html/indices-multicolumn.html -share/doc/postgresql/html/indices-opclass.html -share/doc/postgresql/html/indices-types.html -share/doc/postgresql/html/indices-unique.html -share/doc/postgresql/html/indices.html -share/doc/postgresql/html/inherit.html -share/doc/postgresql/html/install-getsource.html -share/doc/postgresql/html/install-post.html -share/doc/postgresql/html/install-procedure.html -share/doc/postgresql/html/install-requirements.html -share/doc/postgresql/html/install-upgrading.html -share/doc/postgresql/html/install-win32.html -share/doc/postgresql/html/installation.html -share/doc/postgresql/html/jdbc-ext.html -share/doc/postgresql/html/jdbc-lo.html -share/doc/postgresql/html/jdbc.html -share/doc/postgresql/html/jdbc-query.html -share/doc/postgresql/html/jdbc-reading.html -share/doc/postgresql/html/jdbc-thread.html -share/doc/postgresql/html/jdbc-update.html -share/doc/postgresql/html/jdbc-use.html -share/doc/postgresql/html/kernel-resources.html -share/doc/postgresql/html/keys.html -share/doc/postgresql/html/largeobjects.html -share/doc/postgresql/html/libpgtcl-examples.html -share/doc/postgresql/html/libpgtcl-ref.html -share/doc/postgresql/html/libpq-async.html -share/doc/postgresql/html/libpq-control.html -share/doc/postgresql/html/libpq-copy.html -share/doc/postgresql/html/libpq-envars.html -share/doc/postgresql/html/libpq-example.html -share/doc/postgresql/html/libpq-exec.html -share/doc/postgresql/html/libpq-fastpath.html -share/doc/postgresql/html/libpq-notify.html -share/doc/postgresql/html/libpq.html -share/doc/postgresql/html/libpq-threading.html -share/doc/postgresql/html/libpq-trace.html -share/doc/postgresql/html/libpqplusplus.html -share/doc/postgresql/html/libpqpp-classes.html -share/doc/postgresql/html/libpqpp-connect.html -share/doc/postgresql/html/libpqpp-copy.html -share/doc/postgresql/html/libpqpp-exec.html -share/doc/postgresql/html/libpqpp-notify.html -share/doc/postgresql/html/lisp.html -share/doc/postgresql/html/ln11330.html -share/doc/postgresql/html/ln1274.html -share/doc/postgresql/html/ln15181.html -share/doc/postgresql/html/ln24.html -share/doc/postgresql/html/ln25010.html -share/doc/postgresql/html/ln37176.html -share/doc/postgresql/html/ln8.html -share/doc/postgresql/html/lo-funcs.html -share/doc/postgresql/html/lo-implementation.html -share/doc/postgresql/html/lo-interfaces.html -share/doc/postgresql/html/lo-libpq.html -share/doc/postgresql/html/lo-sample.html -share/doc/postgresql/html/locking-indices.html -share/doc/postgresql/html/locking-tables.html -share/doc/postgresql/html/manage-ag-accessdb.html -share/doc/postgresql/html/manage-ag-dropdb.html -share/doc/postgresql/html/manage.html -share/doc/postgresql/html/managing-databases.html -share/doc/postgresql/html/migration.html -share/doc/postgresql/html/more-advanced.html -share/doc/postgresql/html/multibyte.html -share/doc/postgresql/html/mvcc.html -share/doc/postgresql/html/non-atomic-values.html -share/doc/postgresql/html/notation.html -share/doc/postgresql/html/odbc-applixware.html -share/doc/postgresql/html/odbc-config.html -share/doc/postgresql/html/odbc-install.html -share/doc/postgresql/html/odbc-windows.html -share/doc/postgresql/html/odbc.html -share/doc/postgresql/html/organization.html -share/doc/postgresql/html/overview.html -share/doc/postgresql/html/page.html -share/doc/postgresql/html/parser-stage.html -share/doc/postgresql/html/partial-index.html -share/doc/postgresql/html/performance-tips.html -share/doc/postgresql/html/perm-functions.html -share/doc/postgresql/html/pg-system-catalogs.html -share/doc/postgresql/html/pgeasy-chapter.html -share/doc/postgresql/html/pgtcl-pgconndefaults.html -share/doc/postgresql/html/pgtcl-pgconnect.html -share/doc/postgresql/html/pgtcl-pgdisconnect.html -share/doc/postgresql/html/pgtcl-pgexec.html -share/doc/postgresql/html/pgtcl-pglisten.html -share/doc/postgresql/html/pgtcl-pgloclose.html -share/doc/postgresql/html/pgtcl-pglocreat.html -share/doc/postgresql/html/pgtcl-pgloexport.html -share/doc/postgresql/html/pgtcl-pgloimport.html -share/doc/postgresql/html/pgtcl-pglolseek.html -share/doc/postgresql/html/pgtcl-pgloopen.html -share/doc/postgresql/html/pgtcl-pgloread.html -share/doc/postgresql/html/pgtcl-pglotell.html -share/doc/postgresql/html/pgtcl-pglounlink.html -share/doc/postgresql/html/pgtcl-pglowrite.html -share/doc/postgresql/html/pgtcl-pgresult.html -share/doc/postgresql/html/pgtcl-pgselect.html -share/doc/postgresql/html/pgtcl.html -share/doc/postgresql/html/planner-optimizer.html -share/doc/postgresql/html/plperl-use.html -share/doc/postgresql/html/plperl.html -share/doc/postgresql/html/plpgsql-description.html -share/doc/postgresql/html/plpgsql-examples.html -share/doc/postgresql/html/plpgsql-porting.html -share/doc/postgresql/html/plpgsql-trigger.html -share/doc/postgresql/html/plpgsql.html -share/doc/postgresql/html/pltcl-description.html -share/doc/postgresql/html/pltcl.html -share/doc/postgresql/html/populate.html -share/doc/postgresql/html/postgres.html -share/doc/postgresql/html/postmaster-shutdown.html -share/doc/postgresql/html/postmaster-start.html -share/doc/postgresql/html/preface.html -share/doc/postgresql/html/privileges.html -share/doc/postgresql/html/programmer-client.html -share/doc/postgresql/html/programmer-pl.html -share/doc/postgresql/html/programmer-server.html -share/doc/postgresql/html/programmer.html -share/doc/postgresql/html/protocol-message-formats.html -share/doc/postgresql/html/protocol-message-types.html -share/doc/postgresql/html/protocol-protocol.html -share/doc/postgresql/html/protocol.html -share/doc/postgresql/html/pygresql.html -share/doc/postgresql/html/pygresql-close.html -share/doc/postgresql/html/pygresql-connect.html -share/doc/postgresql/html/pygresql-db-api.html -share/doc/postgresql/html/pygresql-db-clear.html -share/doc/postgresql/html/pygresql-db-delete.html -share/doc/postgresql/html/pygresql-db-get-attnames.html -share/doc/postgresql/html/pygresql-db-get-databases.html -share/doc/postgresql/html/pygresql-db-get-tables.html -share/doc/postgresql/html/pygresql-db-get.html -share/doc/postgresql/html/pygresql-db-insert.html -share/doc/postgresql/html/pygresql-db-pkey.html -share/doc/postgresql/html/pygresql-db-update.html -share/doc/postgresql/html/pygresql-endcopy.html -share/doc/postgresql/html/pygresql-fileno.html -share/doc/postgresql/html/pygresql-get-defbase.html -share/doc/postgresql/html/pygresql-get-defhost.html -share/doc/postgresql/html/pygresql-get-defopt.html -share/doc/postgresql/html/pygresql-get-defport.html -share/doc/postgresql/html/pygresql-get-deftty.html -share/doc/postgresql/html/pygresql-getline.html -share/doc/postgresql/html/pygresql-getlo.html -share/doc/postgresql/html/pygresql-getnotify.html -share/doc/postgresql/html/pygresql-inserttable.html -share/doc/postgresql/html/pygresql-locreate.html -share/doc/postgresql/html/pygresql-loimport.html -share/doc/postgresql/html/pygresql-pg-db.html -share/doc/postgresql/html/pygresql-pg-functions.html -share/doc/postgresql/html/pygresql-pg-pglarge.html -share/doc/postgresql/html/pygresql-pg-pgobject.html -share/doc/postgresql/html/pygresql-pg-pgqueryobject.html -share/doc/postgresql/html/pygresql-pglargeobject-close.html -share/doc/postgresql/html/pygresql-pglargeobject-export.html -share/doc/postgresql/html/pygresql-pglargeobject-open.html -share/doc/postgresql/html/pygresql-pglargeobject-read.html -share/doc/postgresql/html/pygresql-pglargeobject-seek.html -share/doc/postgresql/html/pygresql-pglargeobject-size.html -share/doc/postgresql/html/pygresql-pglargeobject-tell.html -share/doc/postgresql/html/pygresql-pglargeobject-unlink.html -share/doc/postgresql/html/pygresql-pglargeobject-write.html -share/doc/postgresql/html/pygresql-pgqueryobject-dictresult.html -share/doc/postgresql/html/pygresql-pgqueryobject-fieldname.html -share/doc/postgresql/html/query.html -share/doc/postgresql/html/pygresql-pgqueryobject-fieldnum.html -share/doc/postgresql/html/pygresql-pgqueryobject-getresult.html -share/doc/postgresql/html/pygresql-pgqueryobject-listfields.html -share/doc/postgresql/html/pygresql-pgqueryobject-ntuples.html -share/doc/postgresql/html/pygresql-putline.html -share/doc/postgresql/html/pygresql-query.html -share/doc/postgresql/html/pygresql-reset.html -share/doc/postgresql/html/pygresql-set-defbase.html -share/doc/postgresql/html/pygresql-set-defhost.html -share/doc/postgresql/html/pygresql-set-defopt.html -share/doc/postgresql/html/pygresql-set-defport.html -share/doc/postgresql/html/pygresql-set-deftty.html -share/doc/postgresql/html/queries-limit.html -share/doc/postgresql/html/queries-order.html -share/doc/postgresql/html/queries-select-lists.html -share/doc/postgresql/html/queries-union.html -share/doc/postgresql/html/queries.html -share/doc/postgresql/html/query-agg.html -share/doc/postgresql/html/query-concepts.html -share/doc/postgresql/html/query-delete.html -share/doc/postgresql/html/query-join.html -share/doc/postgresql/html/query-populate.html -share/doc/postgresql/html/query-query.html -share/doc/postgresql/html/query-selectinto.html -share/doc/postgresql/html/query-table.html -share/doc/postgresql/html/query-update.html -share/doc/postgresql/html/recode.html -share/doc/postgresql/html/recovery.html -share/doc/postgresql/html/reference-client.html -share/doc/postgresql/html/reference-server.html -share/doc/postgresql/html/reference.html -share/doc/postgresql/html/regress-platform.html -share/doc/postgresql/html/regress.html -share/doc/postgresql/html/release-0-01.html -share/doc/postgresql/html/release-0-02.html -share/doc/postgresql/html/release-0-03.html -share/doc/postgresql/html/release-1-0.html -share/doc/postgresql/html/release-1-01.html -share/doc/postgresql/html/release-1-02.html -share/doc/postgresql/html/release-1-09.html -share/doc/postgresql/html/release-6-0.html -share/doc/postgresql/html/release-6-1-1.html -share/doc/postgresql/html/release-6-1.html -share/doc/postgresql/html/release-6-2-1.html -share/doc/postgresql/html/release-6-2.html -share/doc/postgresql/html/release-6-3-1.html -share/doc/postgresql/html/release-6-3-2.html -share/doc/postgresql/html/release-6-3.html -share/doc/postgresql/html/release-6-4-1.html -share/doc/postgresql/html/release-6-4-2.html -share/doc/postgresql/html/release-6-4.html -share/doc/postgresql/html/release-6-5-1.html -share/doc/postgresql/html/release-6-5-2.html -share/doc/postgresql/html/release-6-5-3.html -share/doc/postgresql/html/release-6-5.html -share/doc/postgresql/html/release-7-0-1.html -share/doc/postgresql/html/release-7-0-2.html -share/doc/postgresql/html/release-7-0-3.html -share/doc/postgresql/html/release-7-0.html -share/doc/postgresql/html/release-7-1.html -share/doc/postgresql/html/release-7-1-1.html -share/doc/postgresql/html/release-7-1-2.html -share/doc/postgresql/html/release.html -share/doc/postgresql/html/relmodel-formal.html -share/doc/postgresql/html/relmodel-oper.html -share/doc/postgresql/html/resources.html -share/doc/postgresql/html/rule-system.html -share/doc/postgresql/html/rules-insert.html -share/doc/postgresql/html/rules-permissions.html -share/doc/postgresql/html/rules-triggers.html -share/doc/postgresql/html/rules-views.html -share/doc/postgresql/html/rules.html -share/doc/postgresql/html/runtime-config.html -share/doc/postgresql/html/runtime.html -share/doc/postgresql/html/source.html -share/doc/postgresql/html/spi-examples.html -share/doc/postgresql/html/spi-interface-support.html -share/doc/postgresql/html/spi-memory.html -share/doc/postgresql/html/spi-spiconnect.html -share/doc/postgresql/html/spi-spicopytuple.html -share/doc/postgresql/html/spi-spiexec.html -share/doc/postgresql/html/spi-spiexecp.html -share/doc/postgresql/html/spi-spifinish.html -share/doc/postgresql/html/spi-spifname.html -share/doc/postgresql/html/spi-spifnumber.html -share/doc/postgresql/html/spi-spigetbinval.html -share/doc/postgresql/html/spi-spigetrelname.html -share/doc/postgresql/html/spi-spigettype.html -share/doc/postgresql/html/spi-spigettypeid.html -share/doc/postgresql/html/spi-spigetvalue.html -share/doc/postgresql/html/spi-spimodifytuple.html -share/doc/postgresql/html/spi-spipalloc.html -share/doc/postgresql/html/spi-spipfree.html -share/doc/postgresql/html/spi-spiprepare.html -share/doc/postgresql/html/spi-spirepalloc.html -share/doc/postgresql/html/spi-spisaveplan.html -share/doc/postgresql/html/spi-visibility.html -share/doc/postgresql/html/spi.html -share/doc/postgresql/html/sql-abort.html -share/doc/postgresql/html/sql-altergroup.html -share/doc/postgresql/html/sql-altertable.html -share/doc/postgresql/html/sql-alteruser.html -share/doc/postgresql/html/sql-begin.html -share/doc/postgresql/html/sql-checkpoint.html -share/doc/postgresql/html/sql-close.html -share/doc/postgresql/html/sql-cluster.html -share/doc/postgresql/html/sql-commands.html -share/doc/postgresql/html/sql-comment.html -share/doc/postgresql/html/sql-commit.html -share/doc/postgresql/html/sql-copy.html -share/doc/postgresql/html/sql-createaggregate.html -share/doc/postgresql/html/sql-createconstraint.html -share/doc/postgresql/html/sql-createdatabase.html -share/doc/postgresql/html/sql-createfunction.html -share/doc/postgresql/html/sql-creategroup.html -share/doc/postgresql/html/sql-createindex.html -share/doc/postgresql/html/sql-createlanguage.html -share/doc/postgresql/html/sql-createoperator.html -share/doc/postgresql/html/sql-createrule.html -share/doc/postgresql/html/sql-createsequence.html -share/doc/postgresql/html/sql-createtable.html -share/doc/postgresql/html/sql-createtableas.html -share/doc/postgresql/html/sql-createtrigger.html -share/doc/postgresql/html/sql-createtype.html -share/doc/postgresql/html/sql-createuser.html -share/doc/postgresql/html/sql-createview.html -share/doc/postgresql/html/sql-declare.html -share/doc/postgresql/html/sql-delete.html -share/doc/postgresql/html/sql-dropaggregate.html -share/doc/postgresql/html/sql-dropdatabase.html -share/doc/postgresql/html/sql-dropfunction.html -share/doc/postgresql/html/sql-dropgroup.html -share/doc/postgresql/html/sql-dropindex.html -share/doc/postgresql/html/sql-droplanguage.html -share/doc/postgresql/html/sql-dropoperator.html -share/doc/postgresql/html/sql-droprule.html -share/doc/postgresql/html/sql-dropsequence.html -share/doc/postgresql/html/sql-droptable.html -share/doc/postgresql/html/sql-droptrigger.html -share/doc/postgresql/html/sql-droptype.html -share/doc/postgresql/html/sql-dropuser.html -share/doc/postgresql/html/sql-dropview.html -share/doc/postgresql/html/sql-end.html -share/doc/postgresql/html/sql-explain.html -share/doc/postgresql/html/sql-expressions.html -share/doc/postgresql/html/sql-fetch.html -share/doc/postgresql/html/sql-grant.html -share/doc/postgresql/html/sql-insert.html -share/doc/postgresql/html/sql-keywords-appendix.html -share/doc/postgresql/html/sql-language.html -share/doc/postgresql/html/sql-listen.html -share/doc/postgresql/html/sql-load.html -share/doc/postgresql/html/sql-lock.html -share/doc/postgresql/html/sql-move.html -share/doc/postgresql/html/sql-notify.html -share/doc/postgresql/html/sql-precedence.html -share/doc/postgresql/html/sql-reindex.html -share/doc/postgresql/html/sql-reset.html -share/doc/postgresql/html/sql-revoke.html -share/doc/postgresql/html/sql-rollback.html -share/doc/postgresql/html/sql-select.html -share/doc/postgresql/html/sql-selectinto.html -share/doc/postgresql/html/sql-set-constraints.html -share/doc/postgresql/html/sql-set-transaction.html -share/doc/postgresql/html/sql-set.html -share/doc/postgresql/html/sql-show.html -share/doc/postgresql/html/sql-syntax-columns.html -share/doc/postgresql/html/sql-syntax.html -share/doc/postgresql/html/sql-truncate.html -share/doc/postgresql/html/sql-unlisten.html -share/doc/postgresql/html/sql-update.html -share/doc/postgresql/html/sql-vacuum.html -share/doc/postgresql/html/sql.html -share/doc/postgresql/html/ssh-tunnels.html -share/doc/postgresql/html/ssl-tcp.html -share/doc/postgresql/html/start-manage-db.html -share/doc/postgresql/html/start-psql.html -share/doc/postgresql/html/start.html -share/doc/postgresql/html/storage.html -share/doc/postgresql/html/supported-platforms.html -share/doc/postgresql/html/timing-results.html -share/doc/postgresql/html/transaction-iso.html -share/doc/postgresql/html/trigger-datachanges.html -share/doc/postgresql/html/trigger-examples.html -share/doc/postgresql/html/trigger-manager.html -share/doc/postgresql/html/triggers.html -share/doc/postgresql/html/tutorial.html -share/doc/postgresql/html/type-system.html -share/doc/postgresql/html/typeconv-func.html -share/doc/postgresql/html/typeconv-oper.html -share/doc/postgresql/html/typeconv-query.html -share/doc/postgresql/html/typeconv-union-case.html -share/doc/postgresql/html/typeconv.html -share/doc/postgresql/html/units-history.html -share/doc/postgresql/html/user-manag.html -share/doc/postgresql/html/user.html -share/doc/postgresql/html/wal-configuration.html -share/doc/postgresql/html/wal-implementation.html -share/doc/postgresql/html/wal.html -share/doc/postgresql/html/xact-read-committed.html -share/doc/postgresql/html/xact-serializable.html -share/doc/postgresql/html/xaggr.html -share/doc/postgresql/html/xfunc-c.html -share/doc/postgresql/html/xfunc-internal.html -share/doc/postgresql/html/xfunc-overload.html -share/doc/postgresql/html/xfunc-pl.html -share/doc/postgresql/html/xfunc.html -share/doc/postgresql/html/xindex.html -share/doc/postgresql/html/xoper.html -share/doc/postgresql/html/xplang.html -share/doc/postgresql/html/xtypes.html -share/doc/postgresql/html/y2k.html -share/doc/postgresql/html/catalogs.gif -share/doc/postgresql/html/clientserver.gif -share/doc/postgresql/html/connections.gif -@dirrm share/doc/postgresql/html -@dirrm share/doc/postgresql diff --git a/databases/postgresql74-server/pkg-plist.jdbc b/databases/postgresql74-server/pkg-plist.jdbc deleted file mode 100644 index 8f7bd41a54d7..000000000000 --- a/databases/postgresql74-server/pkg-plist.jdbc +++ /dev/null @@ -1,27 +0,0 @@ -share/examples/postgresql/corba/StockClient.java -share/examples/postgresql/corba/StockDB.java -share/examples/postgresql/corba/StockDispenserImpl.java -share/examples/postgresql/corba/StockItemImpl.java -share/examples/postgresql/corba/StockServer.java -share/examples/postgresql/corba/readme -share/examples/postgresql/corba/stock.idl -share/examples/postgresql/corba/stock.sql -@dirrm share/examples/postgresql/corba -share/examples/postgresql/ImageViewer.java -share/examples/postgresql/Unicode.java -share/examples/postgresql/basic.java -share/examples/postgresql/blobtest.java -share/examples/postgresql/datestyle.java -share/examples/postgresql/metadata.java -share/examples/postgresql/psql.java -share/examples/postgresql/threadsafe.java -share/examples/postgresql/README -share/examples/postgresql/Implementation -@dirrm share/examples/postgresql -share/postgresql/java/postgresql-examples.jar -share/postgresql/java/postgresql.jar -share/postgresql/java/retepTools.jar -@dirrm share/postgresql/java -share/java/classes/postgresql.jar -@unexec rmdir %D/share/java/classes 2>/dev/null || true -@unexec rmdir %D/share/java 2>/dev/null || true diff --git a/databases/postgresql74-server/pkg-plist.notk b/databases/postgresql74-server/pkg-plist.notk deleted file mode 100644 index 8dcbc5f88bd6..000000000000 --- a/databases/postgresql74-server/pkg-plist.notk +++ /dev/null @@ -1,6 +0,0 @@ -%%PG_PREFIX%%bin/pgtclsh -%%PG_INCLUDE%%/libpgtcl.h -%%PG_PREFIX%%lib/libpgtcl.a -%%PG_PREFIX%%lib/libpgtcl.so -%%PG_PREFIX%%lib/libpgtcl.so.2 -%%PG_PREFIX%%lib/pltcl.so diff --git a/databases/postgresql74-server/pkg-plist.odbc b/databases/postgresql74-server/pkg-plist.odbc deleted file mode 100644 index f047b7cb64a1..000000000000 --- a/databases/postgresql74-server/pkg-plist.odbc +++ /dev/null @@ -1,10 +0,0 @@ -%%PG_INCLUDE%%/iodbc/iodbc.h -%%PG_INCLUDE%%/iodbc/isql.h -%%PG_INCLUDE%%/iodbc/isqlext.h -@dirrm %%PG_INCLUDE%%/iodbc -%%PG_PREFIX%%lib/libpsqlodbc.a -%%PG_PREFIX%%lib/libpsqlodbc.so -%%PG_PREFIX%%lib/libpsqlodbc.so.0 -etc/postgresql/odbcinst.ini -@dirrm etc/postgresql -share/postgresql/odbc.sql diff --git a/databases/postgresql74-server/pkg-plist.tcl b/databases/postgresql74-server/pkg-plist.tcl deleted file mode 100644 index da5f4367cb80..000000000000 --- a/databases/postgresql74-server/pkg-plist.tcl +++ /dev/null @@ -1,148 +0,0 @@ -%%PG_PREFIX%%bin/pgaccess -%%PG_PREFIX%%bin/pgtclsh -%%PG_PREFIX%%bin/pgtksh -%%PG_INCLUDE%%/libpgtcl.h -%%PG_PREFIX%%lib/libpgtcl.a -%%PG_PREFIX%%lib/libpgtcl.so -%%PG_PREFIX%%lib/libpgtcl.so.2 -%%PG_PREFIX%%lib/pltcl.so -lib/tcl%%WITH_TCL%%/Pgtcl1.3/pkgIndex.tcl -share/postgresql/pgaccess/images/icon_button.gif -share/postgresql/pgaccess/images/icon_checkbutton.gif -share/postgresql/pgaccess/images/icon_entry.gif -share/postgresql/pgaccess/images/icon_frame.gif -share/postgresql/pgaccess/images/icon_label.gif -share/postgresql/pgaccess/images/icon_listbox.gif -share/postgresql/pgaccess/images/icon_query.gif -share/postgresql/pgaccess/images/icon_radiobutton.gif -share/postgresql/pgaccess/images/icon_text.gif -share/postgresql/pgaccess/lib/database.tcl -share/postgresql/pgaccess/lib/forms.tcl -share/postgresql/pgaccess/lib/functions.tcl -share/postgresql/pgaccess/lib/help/abort.hlp -share/postgresql/pgaccess/lib/help/add_records.hlp -share/postgresql/pgaccess/lib/help/alter_table.hlp -share/postgresql/pgaccess/lib/help/alter_user.hlp -share/postgresql/pgaccess/lib/help/author.hlp -share/postgresql/pgaccess/lib/help/begin.hlp -share/postgresql/pgaccess/lib/help/close.hlp -share/postgresql/pgaccess/lib/help/cluster.hlp -share/postgresql/pgaccess/lib/help/commit.hlp -share/postgresql/pgaccess/lib/help/copy.hlp -share/postgresql/pgaccess/lib/help/copyrights.hlp -share/postgresql/pgaccess/lib/help/create_aggregate.hlp -share/postgresql/pgaccess/lib/help/create_database.hlp -share/postgresql/pgaccess/lib/help/create_function.hlp -share/postgresql/pgaccess/lib/help/create_index.hlp -share/postgresql/pgaccess/lib/help/create_language.hlp -share/postgresql/pgaccess/lib/help/create_operator.hlp -share/postgresql/pgaccess/lib/help/create_rule.hlp -share/postgresql/pgaccess/lib/help/create_sequence.hlp -share/postgresql/pgaccess/lib/help/create_table.hlp -share/postgresql/pgaccess/lib/help/create_table_as.hlp -share/postgresql/pgaccess/lib/help/create_trigger.hlp -share/postgresql/pgaccess/lib/help/create_type.hlp -share/postgresql/pgaccess/lib/help/create_user.hlp -share/postgresql/pgaccess/lib/help/create_view.hlp -share/postgresql/pgaccess/lib/help/data_types.hlp -share/postgresql/pgaccess/lib/help/datefunc.hlp -share/postgresql/pgaccess/lib/help/declare.hlp -share/postgresql/pgaccess/lib/help/delete.hlp -share/postgresql/pgaccess/lib/help/drop_aggregate.hlp -share/postgresql/pgaccess/lib/help/drop_database.hlp -share/postgresql/pgaccess/lib/help/drop_function.hlp -share/postgresql/pgaccess/lib/help/drop_index.hlp -share/postgresql/pgaccess/lib/help/drop_language.hlp -share/postgresql/pgaccess/lib/help/drop_operator.hlp -share/postgresql/pgaccess/lib/help/drop_rule.hlp -share/postgresql/pgaccess/lib/help/drop_sequence.hlp -share/postgresql/pgaccess/lib/help/drop_table.hlp -share/postgresql/pgaccess/lib/help/drop_trigger.hlp -share/postgresql/pgaccess/lib/help/drop_type.hlp -share/postgresql/pgaccess/lib/help/drop_user.hlp -share/postgresql/pgaccess/lib/help/drop_view.hlp -share/postgresql/pgaccess/lib/help/explain.hlp -share/postgresql/pgaccess/lib/help/fetch.hlp -share/postgresql/pgaccess/lib/help/form_design.hlp -share/postgresql/pgaccess/lib/help/forms.hlp -share/postgresql/pgaccess/lib/help/functions.hlp -share/postgresql/pgaccess/lib/help/geomfunc.hlp -share/postgresql/pgaccess/lib/help/grant.hlp -share/postgresql/pgaccess/lib/help/history.hlp -share/postgresql/pgaccess/lib/help/index.hlp -share/postgresql/pgaccess/lib/help/inheritance.hlp -share/postgresql/pgaccess/lib/help/insert.hlp -share/postgresql/pgaccess/lib/help/ipv4func.hlp -share/postgresql/pgaccess/lib/help/isolation.hlp -share/postgresql/pgaccess/lib/help/keywords.hlp -share/postgresql/pgaccess/lib/help/listen.hlp -share/postgresql/pgaccess/lib/help/load.hlp -share/postgresql/pgaccess/lib/help/lock.hlp -share/postgresql/pgaccess/lib/help/mathfunc.hlp -share/postgresql/pgaccess/lib/help/move.hlp -share/postgresql/pgaccess/lib/help/mvcc.hlp -share/postgresql/pgaccess/lib/help/new_query.hlp -share/postgresql/pgaccess/lib/help/new_table.hlp -share/postgresql/pgaccess/lib/help/notify.hlp -share/postgresql/pgaccess/lib/help/open_query.hlp -share/postgresql/pgaccess/lib/help/open_table.hlp -share/postgresql/pgaccess/lib/help/pgfunctions.hlp -share/postgresql/pgaccess/lib/help/postgresql.hlp -share/postgresql/pgaccess/lib/help/queries.hlp -share/postgresql/pgaccess/lib/help/reports.hlp -share/postgresql/pgaccess/lib/help/reset.hlp -share/postgresql/pgaccess/lib/help/revoke.hlp -share/postgresql/pgaccess/lib/help/rollback.hlp -share/postgresql/pgaccess/lib/help/schema.hlp -share/postgresql/pgaccess/lib/help/scripts.hlp -share/postgresql/pgaccess/lib/help/select.hlp -share/postgresql/pgaccess/lib/help/select_into.hlp -share/postgresql/pgaccess/lib/help/sequences.hlp -share/postgresql/pgaccess/lib/help/set.hlp -share/postgresql/pgaccess/lib/help/show.hlp -share/postgresql/pgaccess/lib/help/sql_guide.hlp -share/postgresql/pgaccess/lib/help/sqlfunc.hlp -share/postgresql/pgaccess/lib/help/stringfunc.hlp -share/postgresql/pgaccess/lib/help/tables.hlp -share/postgresql/pgaccess/lib/help/unlisten.hlp -share/postgresql/pgaccess/lib/help/update.hlp -share/postgresql/pgaccess/lib/help/users.hlp -share/postgresql/pgaccess/lib/help/vacuum.hlp -share/postgresql/pgaccess/lib/help/view_table_structure.hlp -share/postgresql/pgaccess/lib/help/views.hlp -share/postgresql/pgaccess/lib/help/visual_designer.hlp -share/postgresql/pgaccess/lib/help/y2k.hlp -share/postgresql/pgaccess/lib/help.tcl -share/postgresql/pgaccess/lib/languages/czech -share/postgresql/pgaccess/lib/languages/chinese_big5 -share/postgresql/pgaccess/lib/languages/chinese_gb -share/postgresql/pgaccess/lib/languages/deutsch -share/postgresql/pgaccess/lib/languages/euskara -share/postgresql/pgaccess/lib/languages/francais -share/postgresql/pgaccess/lib/languages/italiano -share/postgresql/pgaccess/lib/languages/japanese -share/postgresql/pgaccess/lib/languages/magyar -share/postgresql/pgaccess/lib/languages/nederlands -share/postgresql/pgaccess/lib/languages/portugues -share/postgresql/pgaccess/lib/languages/romana -share/postgresql/pgaccess/lib/languages/russian.koi8r -share/postgresql/pgaccess/lib/languages/russian_win -share/postgresql/pgaccess/lib/languages/spanish -share/postgresql/pgaccess/lib/mainlib.tcl -share/postgresql/pgaccess/lib/preferences.tcl -share/postgresql/pgaccess/lib/queries.tcl -share/postgresql/pgaccess/lib/reports.tcl -share/postgresql/pgaccess/lib/schema.tcl -share/postgresql/pgaccess/lib/scripts.tcl -share/postgresql/pgaccess/lib/sequences.tcl -share/postgresql/pgaccess/lib/tables.tcl -share/postgresql/pgaccess/lib/users.tcl -share/postgresql/pgaccess/lib/views.tcl -share/postgresql/pgaccess/lib/visualqb.tcl -share/postgresql/pgaccess/main.tcl -@dirrm share/postgresql/pgaccess/images -@dirrm share/postgresql/pgaccess/lib/help -@dirrm share/postgresql/pgaccess/lib/languages -@dirrm share/postgresql/pgaccess/lib -@dirrm share/postgresql/pgaccess -@dirrm lib/tcl%%WITH_TCL%%/Pgtcl1.3 diff --git a/databases/postgresql74-server/scripts/configure.postgresql b/databases/postgresql74-server/scripts/configure.postgresql deleted file mode 100644 index 0b288ad43d25..000000000000 --- a/databases/postgresql74-server/scripts/configure.postgresql +++ /dev/null @@ -1,278 +0,0 @@ -#!/bin/sh -# -*- tab-width: 4; -*- -# ex:ts=4 -# -# $FreeBSD$ -# -if [ -f ${WRKDIRPREFIX}${CURDIR}/Makefile.inc ]; then - exit -fi - -if [ ! "${BATCH}" ]; then - dialog --title "Backup your data NOW" \ - --msgbox "`sed -e \"s#%%PREFIX%%#${PREFIX}#\" < ${FILESDIR}/pre-install-notes`" \ - -1 -1 -fi - -if [ "${BATCH}" ]; then - set \"MultiByte\" \"ODBC\" \"SSL\" \"TCL\" \"TCLTK\" -else - /usr/bin/dialog --title "configuration options" --clear \ - --checklist "\n\ -Please select desired options:" -1 -1 7 \ -JDBC "Java DataBase Connectivity" OFF \ -MultiByte "Multibyte for Multilingualism" ON \ -ODBC "Open Database Connectivity" ON \ -TCL "Tcl" ON \ -TCLTK "Tcl/Tk" ON \ -SSL "Secure Socket Layer" ON \ -KRB5 "Kerberos 5" OFF \ -2> /tmp/checklist.tmp.$$ - - retval=$? - - if [ -s /tmp/checklist.tmp.$$ ]; then - set `cat /tmp/checklist.tmp.$$` - fi - rm -f /tmp/checklist.tmp.$$ - - case $retval in - 0) if [ -z "$*" ]; then - echo "Nothing selected" - fi - ;; - 1) echo "Cancel pressed." - exit 1 - ;; - esac -fi - -${MKDIR} ${WRKDIRPREFIX}${CURDIR} -exec > ${WRKDIRPREFIX}${CURDIR}/Makefile.inc - -while [ "$1" ]; do - case $1 in - \"JDBC\") - # We use JAVA_HOME if set correctly. If the user has - # specified a JVM with JAVA_HOME or via the javavmwrapper, - # we validate that it really exists. It is unnecessarily - # complicated and error prone to try to figure out the - # correct java version just to be able to determine a - # BUILD_DEPEND in this case. Instead, assume that a set - # JAVA_HOME together with simple sanity check mean we have - # an installed JVM, and we don't bother setting - # BUILD_DEPENDS. - - echo "# JDBC" - # if JAVA_HOME is set and exists, use it - if [ "${JAVA_HOME}" -a -x "${JAVA_HOME}/bin/javac" ]; then - echo JAVA_HOME=${JAVA_HOME} - else - # No JAVA_HOME, check javavmwrapper's config file - if [ -r "${LOCALBASE}/etc/javavms" ]; then - VMS=`/usr/bin/sed 's|#.*||' < "${LOCALBASE}/etc/javavms" | uniq` - for JAVAVM in ${VMS}; do - if [ -x "${JAVAVM}" ]; then - JAVA_HOME=`echo ${JAVAVM} | /usr/bin/sed 's|/bin/java$||` - break - fi - done - fi - if [ "${JAVA_HOME}" -a -x "${JAVA_HOME}/bin/javac" ]; then - # yep, wrapper was good - echo JAVA_HOME=${JAVA_HOME} - else - # nothing, use our boring 1.1.8, the only native non-beta jdk :( - echo BUILD_DEPENDS+= \${LOCALBASE}/jdk1.1.8/bin/javac:\${PORTSDIR}/java/jdk - echo JAVA_HOME=\${LOCALBASE}/jdk1.1.8 - fi - fi - cat <<-EOF - BUILD_DEPENDS+= \${LOCALBASE}/bin/ant:\${PORTSDIR}/devel/jakarta-ant - CONFIGURE_ENV+= ANT=\${LOCALBASE}/bin/ant - WITH_JDBC=YES - MAKE_ENV+= JAVA_HOME=\${JAVA_HOME} - SCRIPTS_ENV+= JAVA_HOME=\${JAVA_HOME} - CONFIGURE_ARGS+= --with-java - - EOF - ;; - \"MultiByte\") - MULTIBYTE=1 - ;; - \"ODBC\") - cat <<-EOF - # ODBC - WITH_ODBC=YES - CONFIGURE_ARGS+= --with-odbc - - EOF - ;; - \"TCL\") - TCL=1 - ;; - \"TCLTK\") - echo "#TCLTK" - echo WITH_TK=YES - echo - TCL=1 - ;; - \"SSL\") - cat <<-EOF - # SSL - USE_OPENSSL= yes - CFLAGS+= -DUSE_SSL - WITH_SSL= yes - CONFIGURE_ENV+= LDFLAGS="-L\${OPENSSLLIB} -lssl -lcrypto" - CONFIGURE_ARGS+= --with-openssl - - EOF - ;; - \"KRB5\") - KRB5=1 - ;; - \"nothing\"|true) - ;; - *) - echo "Invalid option(s): $*" > /dev/stderr - rm -f ${WRKDIRPREFIX}${CURDIR}/Makefile.inc - exit 1 - ;; - esac - shift -done - -exec > /dev/stderr - -# if multibyte, determine charset -echo "# Multibyte" >> ${WRKDIRPREFIX}${CURDIR}/Makefile.inc - -if [ ! "${MULTIBYTE}" ]; then - echo "WITHOUT_MULTIBYTE=YES" >> ${WRKDIRPREFIX}${CURDIR}/Makefile.inc -else - if [ "${BATCH}" ]; then - set "nothing" - else - /usr/bin/dialog --title "configuration options" --clear \ - --radiolist "\n\ -Please select desired options:" -1 -1 16 \ -nothing "Default Encoding" ON \ -SQL_ASCII "SQL_ASCII" OFF \ -LATIN1 "LATIN1" OFF \ -LATIN2 "LATIN2" OFF \ -LATIN3 "LATIN3" OFF \ -LATIN4 "LATIN4" OFF \ -LATIN5 "LATIN5" OFF \ -EUC_JP "EUC_JP" OFF \ -EUC_CN "EUC_CN" OFF \ -EUC_KR "EUC_KR" OFF \ -EUC_TW "EUC_TW" OFF \ -KOI8 "KOI8" OFF \ -UNICODE "UNICODE" OFF \ -MULE_INTERNAL "MULE_INTERNAL" OFF \ -WIN "WIN" OFF \ -ALT "ALT" OFF \ -2> /tmp/checklist.tmp.$$ - - retval=$? - - if [ -s /tmp/checklist.tmp.$$ ]; then - set `cat /tmp/checklist.tmp.$$` - fi - rm -f /tmp/checklist.tmp.$$ - if [ $retval = 1 ]; then - echo "Cancel pressed." - rm ${WRKDIRPREFIX}${CURDIR}/Makefile.inc - exit 1 - fi - fi - - if [ "$1" = "nothing" ]; then - echo "CONFIGURE_ARGS+= --enable-multibyte" \ - >> ${WRKDIRPREFIX}${CURDIR}/Makefile.inc - else - echo "CONFIGURE_ARGS+= --enable-multibyte=$1" \ - >> ${WRKDIRPREFIX}${CURDIR}/Makefile.inc - fi -fi -echo - -if [ "${TCL}" ]; then - echo "# TCL" >> ${WRKDIRPREFIX}${CURDIR}/Makefile.inc - if [ "${BATCH}" ]; then - echo WITH_TCL=8.3 >> ${WRKDIRPREFIX}${CURDIR}/Makefile.inc - else - dialog --title "TCL version" \ - --inputbox "Please enter TCL version. Default is 8.3." -1 -1 "8.3" \ - 2> /tmp/checklist.tmp.$$ - retval=$? - if [ -s /tmp/checklist.tmp.$$ ]; then - set `cat /tmp/checklist.tmp.$$` - fi - rm -f /tmp/checklist.tmp.$$ - case $retval in - 0) if [ -z "$*" ]; then - echo "Nothing selected" - fi - ;; - 1) echo "Cancel pressed." - rm -f ${WRKDIRPREFIX}${CURDIR}/Makefile.inc - exit 1 - ;; - esac - echo WITH_TCL=$1 >> ${WRKDIRPREFIX}${CURDIR}/Makefile.inc - fi - cat <<-EOF >> ${WRKDIRPREFIX}${CURDIR}/Makefile.inc - CONFIGURE_ARGS+= --with-tcl --with-tclconfig="\${TCLCONFIG}" - TCLV=\${WITH_TCL:S/.//} - TCL_INCDIR= \${LOCALBASE}/include/tcl\${WITH_TCL} - MAKE_ENV+= TCL_INCDIR=\${TCL_INCDIR} - LIB_DEPENDS+= tcl\${TCLV}:\${PORTSDIR}/lang/tcl\${TCLV} - TCLCONFIG= "\${LOCALBASE}/lib/tcl\${WITH_TCL}" - .if defined(WITH_TK) - CONFIGURE_ARGS+= --with-tkconfig="\${TKCONFIG}" - TK_INCDIR= \${LOCALBASE}/include/tk\${WITH_TCL} - CONFIGURE_ENV+= WISH=\${LOCALBASE}/bin/wish\${WITH_TCL} - LIB_DEPENDS+= tk\${TCLV}:\${PORTSDIR}/x11-toolkits/tk\${TCLV} - TKCONFIG= "\${LOCALBASE}/lib/tk\${WITH_TCL}" - TCLCONFIG+= \${TKCONFIG} - TCL_PLIST= pkg-plist.tcl - .else - TCL_PLIST= pkg-plist.notk - CONFIGURE_ARGS+= --without-tk - .endif - - EOF -fi - -if [ "${KRB5}" ]; then - if [ "${BATCH}" ]; then - # never gets here, but what the heck... - echo KRB5_HOME=\${LOCALBASE} >> ${WRKDIRPREFIX}${CURDIR}/Makefile.inc - else - dialog --inputbox "Please enter the KRB5_HOME path" -1 -1 "${KRB_HOME:-${LOCALBASE}}" \ - 2> /tmp/checklist.tmp.$$ - retval=$? - if [ -s /tmp/checklist.tmp.$$ ]; then - set `cat /tmp/checklist.tmp.$$` - fi - rm -f /tmp/checklist.tmp.$$ - case $retval in - 0) if [ -z "$*" ]; then - echo "No input" - fi - ;; - 1) echo "Cancel pressed." - rm -f ${WRKDIRPREFIX}${CURDIR}/Makefile.inc - exit 1 - ;; - esac - echo KRB5_HOME=\"$1\" >> ${WRKDIRPREFIX}${CURDIR}/Makefile.inc - fi - cat <<-EOF >> ${WRKDIRPREFIX}${CURDIR}/Makefile.inc - .if defined(KRB5_HOME) && exists(\${KRB5_HOME}) - CONFIGURE_KRB= --with-krb5=\${KRB5_HOME} - .endif - - EOF -fi diff --git a/databases/postgresql80-server/Makefile b/databases/postgresql80-server/Makefile deleted file mode 100644 index 4a30008d77bc..000000000000 --- a/databases/postgresql80-server/Makefile +++ /dev/null @@ -1,198 +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.1.3 -CATEGORIES= databases -MASTER_SITES= ftp://ftp.sunet.se/pub/unix/databases/relational/postgresql/%SUBDIR%/ \ - ftp://ftp.postgresql.org/pub/%SUBDIR%/ \ - ftp://ftp.de.postgresql.org/%SUBDIR%/ \ - ftp://ftp.digex.net/pub/packages/database/postgresql/%SUBDIR%/ \ - ftp://ftp.chg.ru/pub/databases/postgresql/%SUBDIR%/ \ - ${MASTER_SITE_RINGSERVER:S,%SUBDIR%,misc/db/postgresql/&,} -MASTER_SITE_SUBDIR= source/v${PORTVERSION} -DISTFILES= ${PORTNAME}-base-${PORTVERSION}${EXTRACT_SUFX} \ - ${PORTNAME}-opt-${PORTVERSION}${EXTRACT_SUFX} -.if !defined(NOPORTDOCS) -DISTFILES+= ${PORTNAME}-docs-${PORTVERSION}${EXTRACT_SUFX} -.endif - -MAINTAINER= girgen@partitur.se - -DIST_SUBDIR= postgresql - -INSTALLS_SHLIB= YES - -DOCDIR= ${WRKDIR}/${DISTNAME}/doc -PLIST= ${WRKDIR}/.PLIST.generated - -USE_GMAKE= YES -HAS_CONFIGURE= YES -CONFIGURE_ARGS= --enable-locale \ - --enable-syslog --with-CXX \ - --sysconfdir=${PREFIX}/etc/postgresql \ - --with-includes="${PREFIX}/include ${TCL_INCDIR} ${TK_INCDIR}" \ - --with-libraries=${PREFIX}/lib -.if defined(WITH_OLD_LAYOUT) -CONFIGURE_ARGS+=--docdir=${PREFIX}/share/doc --includedir=${PREFIX}/pgsql/include \ - --datadir=${PREFIX}/share \ - --with-template=`uname -s | ${TR} '[A-Z]' '[a-z]'` \ - --prefix=${PREFIX}/pgsql -PG_PREFIX= pgsql/ -PG_INCLUDE= pgsql/include -LDCONFIG_DIRS= %%PREFIX%%/pgsql/lib -MANPREFIX= ${PREFIX}/pgsql -.else -GNU_CONFIGURE= YES -CONFIGURE_ARGS+=--docdir=${PREFIX}/share/doc --includedir=${PREFIX}/include/pgsql -PG_PREFIX="" -PG_INCLUDE= include/pgsql -.endif - -PLIST_SUB= PG_PREFIX="${PG_PREFIX}" PG_INCLUDE="${PG_INCLUDE}" WITH_TCL="${WITH_TCL}" - -MAN1= createdb.1 createlang.1 createuser.1 dropdb.1 droplang.1 \ - dropuser.1 ecpg.1 initdb.1 initlocation.1 ipcclean.1 pg_config.1 \ - pg_ctl.1 pg_dump.1 pg_dumpall.1 pg_passwd.1 pg_restore.1 \ - pgaccess.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 checkpoint.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 set_constraints.l set_transaction.l show.l \ - truncate.l unlisten.l update.l vacuum.l - -SCRIPTS_ENV= WRKDIRPREFIX="${WRKDIRPREFIX}" \ - WRKDIR="${WRKDIR}" \ - FILESDIR="${FILESDIR}" \ - TOUCH="${TOUCH}" \ - MKDIR="${MKDIR}" \ - NO_OPENSSL="${NO_OPENSSL}" \ - DISTNAME="${DISTNAME}" - -# We must .include here because we need the Makefile.inc @ pre-install -# to determine the correct plist. -.if exists(${WRKDIRPREFIX}${.CURDIR}/Makefile.inc) -.include "${WRKDIRPREFIX}${.CURDIR}/Makefile.inc" -.else -# make utility targets like depends and describe happy -LIB_DEPENDS= tcl83:${PORTSDIR}/lang/tcl83 \ - tk83:${PORTSDIR}/x11-toolkits/tk83 -.endif - -pre-everything:: - @ ${SETENV} ${SCRIPTS_ENV} ${SH} ${SCRIPTDIR}/configure.postgresql - -pre-install: - @ ${SETENV} PKG_PREFIX=${PREFIX} ${SH} ${PKGDIR}/pkg-install ${PORTNAME} PRE-INSTALL -.if !defined(BATCH) -# remind folks twice for a while, so they really don't miss the layout shift - @ ${SED} "s|/usr/local|${PREFIX}|g" < ${PKGMESSAGE} | head -n 25 | more -e -.endif - @ ${CP} ${PKGDIR}/pkg-plist ${PLIST} -.if defined(WITHOUT_MULTIBYTE) - @${CP} ${PLIST} ${PLIST}.nomulti ;\ - ${GREP} -v bin/pg_encoding ${PLIST}.nomulti > ${PLIST} -.endif -.if defined(WITH_TCL) - @ ${CP} ${PLIST} ${PLIST}.notcl ;\ - ${CAT} ${PKGDIR}/${TCL_PLIST} ${PLIST}.notcl > ${PLIST} ;\ - ${RM} ${PLIST}.notcl -.endif -.if defined(WITH_ODBC) - @ ${CP} ${PLIST} ${PLIST}.noodbc ;\ - ${CAT} ${PKGDIR}/pkg-plist.odbc ${PLIST}.noodbc > ${PLIST} ;\ - ${RM} ${PLIST}.noodbc -.endif -.if defined(WITH_JDBC) - @ ${CP} ${PLIST} ${PLIST}.nojdbc ;\ - ${CAT} ${PKGDIR}/pkg-plist.jdbc ${PLIST}.nojdbc > ${PLIST} ;\ - ${RM} ${PLIST}.nojdbc -.endif -.if !defined(NOPORTDOCS) - @ ${CAT} ${PKGDIR}/pkg-plist.doc >> ${PLIST} -.endif - -post-install: -# install shell defaults for pgsql user -.for i in profile cshrc - @ ${SED} "s|%%PREFIX%%|${PREFIX}|g; s|%%PG_PREFIX%%|${PG_PREFIX}|g" \ - < ${FILESDIR}/dot.$i.in \ - > ${PREFIX}/share/postgresql/dot.$i.dist; \ - ${CP} ${PREFIX}/share/postgresql/dot.$i.dist ~pgsql/; \ - if [ ! -f ~pgsql/.$i ]; then \ - ${CP} ${PREFIX}/share/postgresql/dot.$i.dist ~pgsql/.$i; \ - fi -.endfor - @ ${SED} -e "s|%%PREFIX%%|${PREFIX}|g; s|%%PG_PREFIX%%|${PG_PREFIX}|g" \ - < ${FILESDIR}/pgsql.sh.tmpl \ - > ${PREFIX}/etc/rc.d/010.pgsql.sh - @ ${CHMOD} 554 ${PREFIX}/etc/rc.d/010.pgsql.sh - @ ${CHOWN} root:pgsql ${PREFIX}/etc/rc.d/010.pgsql.sh -.if defined(WITH_TCL) -# Preparing a loadable TCL-package (pkgIndex.tcl) - @${MKDIR} ${PREFIX}/lib/tcl${WITH_TCL}/Pgtcl1.3 - @${SED} "s|%%PREFIX%%|${PREFIX}|g" < ${FILESDIR}/pkgIndex.tcl.in \ - > ${PREFIX}/lib/tcl${WITH_TCL}/Pgtcl1.3/pkgIndex.tcl -.endif -.if defined(WITH_JDBC) - @ ${MKDIR} -m 0555 ${PREFIX}/share/java/classes - @ ${INSTALL_DATA} ${WRKSRC}/src/interfaces/jdbc/jars/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} "---------------------------------------------------------" -.if !defined(NOPORTDOCS) - @ ${MKDIR} -m 0555 ${PREFIX}/share/examples/postgresql ;\ - cd ${WRKSRC}/src/interfaces/jdbc/example ;\ - pax -rw . ${PREFIX}/share/examples/postgresql -.for i in README Implementation - @ ${INSTALL_DATA} ${WRKSRC}/src/interfaces/jdbc/$i \ - ${PREFIX}/share/examples/postgresql -.endfor - @ ${ECHO_MSG} "---------------------------------------------------------------" - @ ${ECHO_MSG} "Putting java examples into ${PREFIX}/share/examples/postgresql" - @ ${ECHO_MSG} "---------------------------------------------------------------" -.endif -.endif -.if !defined(DEBUG_FLAGS) -.for file in ecpg pg_dump pg_id pg_passwd pg_restore postgres psql - @ strip ${PREFIX}/${PG_PREFIX}bin/${file} -.endfor -.endif -# information overload mode activated, sorry about this... ;-) - @ ${CAT} ${FILESDIR}/post-install-notes ${PKGMESSAGE} |\ - ${SED} "s|/usr/local|${PREFIX}|g" |\ - tee ${PREFIX}/share/postgresql/post-install-notes ;\ - ${INSTALL_DATA} ${PREFIX}/share/postgresql/post-install-notes ~pgsql/. ;\ - ${CHOWN} -R pgsql:pgsql ~pgsql/. -.if defined(WITH_OLD_LAYOUT) - @ ${CHOWN} root:pgsql ${PREFIX}/${PG_PREFIX}lib -.endif - -post-clean: - @ ${RM} -f ${WRKDIRPREFIX}${.CURDIR}/Makefile.inc - -post-extract: ${POSTEXTRACT} - -.include <bsd.port.mk> diff --git a/databases/postgresql80-server/distinfo b/databases/postgresql80-server/distinfo deleted file mode 100644 index 23e07754313f..000000000000 --- a/databases/postgresql80-server/distinfo +++ /dev/null @@ -1,3 +0,0 @@ -MD5 (postgresql/postgresql-base-7.1.3.tar.gz) = f932dea12806972402aaaf17a2a97034 -MD5 (postgresql/postgresql-opt-7.1.3.tar.gz) = e84e9c51b31567d4571c7612e0c0fbd6 -MD5 (postgresql/postgresql-docs-7.1.3.tar.gz) = 7061ab7f7ec3c4d18f8e6cb2858896d0 diff --git a/databases/postgresql80-server/files/dot.cshrc.in b/databases/postgresql80-server/files/dot.cshrc.in deleted file mode 100644 index a326041bff7b..000000000000 --- a/databases/postgresql80-server/files/dot.cshrc.in +++ /dev/null @@ -1,13 +0,0 @@ -set path = ( %%PREFIX%%/%%PG_PREFIX%%bin $path ) - -setenv PGLIB %%PREFIX%%/%%PG_PREFIX%%lib - -# note: PGDATA can be overridden by the -D startup option -setenv PGDATA $HOME/data - -#You might want to set some locale stuff here -#setenv PGDATESTYLE ISO -#setenv LC_ALL sv_SE.ISO_8859-1 - -# if you want to make regression tests use this TZ -#setenv TZ PST8PDT diff --git a/databases/postgresql80-server/files/dot.profile.in b/databases/postgresql80-server/files/dot.profile.in deleted file mode 100644 index 4aca6aadd19a..000000000000 --- a/databases/postgresql80-server/files/dot.profile.in +++ /dev/null @@ -1,18 +0,0 @@ -# both new and old layout's paths, but new path first... -PATH=%%PREFIX%%/%%PG_PREFIX%%bin:${PATH} - -PGLIB=%%PREFIX%%/%%PG_PREFIX%%lib - -# note: PGDATA can be overridden by the -D startup option -PGDATA=${HOME}/data - -export PATH PGLIB PGDATA - -#You might want to set some locale stuff here -#PGDATESTYLE=ISO -#LC_ALL=sv_SE.ISO_8859-1 -#export PGDATESTYLE LC_ALL - -# if you want to make regression tests use this TZ -#TZ=PST8PDT -#export TZ diff --git a/databases/postgresql80-server/files/patch-aj b/databases/postgresql80-server/files/patch-aj deleted file mode 100644 index 94c0d6d79991..000000000000 --- a/databases/postgresql80-server/files/patch-aj +++ /dev/null @@ -1,118 +0,0 @@ ---- src/bin/pg_passwd/pg_passwd.c.orig Sat Mar 24 01:54:55 2001 -+++ src/bin/pg_passwd/pg_passwd.c Wed Apr 18 04:54:14 2001 -@@ -7,6 +7,12 @@ - #include <errno.h> - #include <time.h> - #include <ctype.h> -+ -+#if defined(__FreeBSD__) -+#include <pwd.h> /* defines _PASSWORD_LEN, max # of characters in a password */ -+#include <sys/time.h> /* gettimeofday for password salt */ -+#endif -+ - #define issaltchar(c) (isalnum((unsigned char) (c)) || (c) == '.' || (c) == '/') - - #ifdef HAVE_TERMIOS_H -@@ -23,18 +29,31 @@ - * We assume that the output of crypt(3) is always 13 characters, - * and that at most 8 characters can usefully be sent to it. - * -+ * For FreeBSD, take these values from /usr/include/pwd.h - * Postgres usernames are assumed to be less than NAMEDATALEN chars long. - */ -+#if defined(__FreeBSD__) -+#define CLEAR_PASSWD_LEN _PASSWORD_LEN -+#define CRYPTED_PASSWD_LEN _PASSWORD_LEN /* max length, not containing NULL */ -+#define SALT_LEN 10 -+#else - #define CLEAR_PASSWD_LEN 8 /* not including null */ - #define CRYPTED_PASSWD_LEN 13 /* not including null */ -+#define SALT_LEN 3 -+#endif -+ -+static unsigned char itoa64[] = /* 0 ... 63 => ascii - 64 */ -+ "./0123456789ABCDEFGHIJKLMNOPQRSTUVWXYZabcdefghijklmnopqrstuvwxyz"; -+ - - const char *progname; - - static void usage(void); -+static void to64(char *s, long v, int n); - static void read_pwd_file(char *filename); - static void write_pwd_file(char *filename, char *bkname); - static void encrypt_pwd(char key[CLEAR_PASSWD_LEN + 1], -- char salt[3], -+ char salt[SALT_LEN], - char passwd[CRYPTED_PASSWD_LEN + 1]); - static void prompt_for_username(char *username); - static void prompt_for_password(char *prompt, char *password); -@@ -47,6 +66,15 @@ - printf("Report bugs to <pgsql-bugs@postgresql.org>.\n"); - } - -+static void -+to64(char *s, long v, int n) -+{ -+ while (--n >= 0) { -+ *s++ = itoa64[v&0x3f]; -+ v >>= 6; -+ } -+} -+ - typedef struct - { - char *uname; -@@ -154,7 +182,7 @@ - if (q != NULL) - *(q++) = '\0'; - -- if (strlen(p) != CRYPTED_PASSWD_LEN && strcmp(p, "+") != 0) -+ if (strlen(p) > CRYPTED_PASSWD_LEN && strcmp(p, "+") != 0) - { - fprintf(stderr, "%s:%d: warning: invalid password length\n", - filename, npwds + 1); -@@ -221,15 +249,25 @@ - - static void - encrypt_pwd(char key[CLEAR_PASSWD_LEN + 1], -- char salt[3], -+ char salt[SALT_LEN], - char passwd[CRYPTED_PASSWD_LEN + 1]) - { -+#if !defined(__FreeBSD__) - int n; -- -+#endif - /* select a salt, if not already given */ - if (salt[0] == '\0') - { -+#if defined(__FreeBSD__) -+ struct timeval tv; -+ srandomdev(); -+ gettimeofday(&tv,0); -+ to64(&salt[0], random(), 3); -+ to64(&salt[3], tv.tv_usec, 3); -+ to64(&salt[6], tv.tv_sec, 2); -+ salt[8] = '\0'; - srand(time(NULL)); -+#else - do - { - n = rand() % 256; -@@ -241,6 +279,7 @@ - } while (!issaltchar(n)); - salt[1] = n; - salt[2] = '\0'; -+#endif - } - - /* get encrypted password */ -@@ -335,7 +374,7 @@ - char *filename; - char bkname[MAXPGPATH]; - char username[NAMEDATALEN]; -- char salt[3]; -+ char salt[SALT_LEN]; - char key[CLEAR_PASSWD_LEN + 1], - key2[CLEAR_PASSWD_LEN + 1]; - char e_passwd[CRYPTED_PASSWD_LEN + 1]; diff --git a/databases/postgresql80-server/files/patch-contrib-retep-build b/databases/postgresql80-server/files/patch-contrib-retep-build deleted file mode 100644 index 80f40f1cc86d..000000000000 --- a/databases/postgresql80-server/files/patch-contrib-retep-build +++ /dev/null @@ -1,37 +0,0 @@ -=================================================================== -RCS file: /home/projects/pgsql/cvsroot/pgsql/contrib/retep/build.xml,v -retrieving revision 1.4 -retrieving revision 1.5 -diff -u -r1.4 -r1.5 ---- contrib/retep/build.xml 2001/03/11 11:06:59 1.4 -+++ contrib/retep/build.xml 2001/05/16 16:20:51 1.5 -@@ -2,7 +2,7 @@ - - build file to build the donated retep tools packages - -- $Id: build.xml,v 1.4 2001/03/11 11:06:59 petere Exp $ -+ $Id: build.xml,v 1.5 2001/05/16 16:20:51 momjian Exp $ - - --> - -@@ -22,6 +22,11 @@ - <available property="xml" classname="org.xml.sax.Parser" /> - </target> - -+ <target name="warning" depends="checks" unless="jdk1.2+"> -+ <echo message="WARNING -- contributed retep tools need jdk1.2 or later -- compilation NOT done." /> -+ </target> -+ -+ - <!-- Prepares the build by creating a directory to place the class files --> - <target name="prepare"> - <mkdir dir="${dest}" /> -@@ -35,7 +40,7 @@ - </target> - - <!-- Builds the XML Tools --> -- <target name="compile" depends="checks,prepare"> -+ <target name="compile" depends="checks,prepare,warning" if="jdk1.2+"> - <javac srcdir="${src}" destdir="${dest}"> - <include name="${package}/**" /> - </javac> diff --git a/databases/postgresql80-server/files/patch-doc-makefile b/databases/postgresql80-server/files/patch-doc-makefile deleted file mode 100644 index fa27bed2af3f..000000000000 --- a/databases/postgresql80-server/files/patch-doc-makefile +++ /dev/null @@ -1,19 +0,0 @@ ---- doc/Makefile~ Sun Jan 7 03:03:22 2001 -+++ doc/Makefile Wed Apr 18 08:12:30 2001 -@@ -43,10 +43,13 @@ - gzip -d -c man.tar.gz | ( cd $(DESTDIR)$(mandir) && $(TAR) xf - ) - endif - -- - installdirs: -- $(mkinstalldirs) $(DESTDIR)$(mandir) $(DESTDIR)$(docdir)/html -- -+ifdef found_html -+ $(mkinstalldirs) $(DESTDIR)$(docdir)/html -+endif -+ifdef found_man -+ $(mkinstalldirs) $(DESTDIR)$(mandir) -+endif - - uninstall: - ifdef found_html diff --git a/databases/postgresql80-server/files/patch-jdbc-Connection b/databases/postgresql80-server/files/patch-jdbc-Connection deleted file mode 100644 index 26fbc260d639..000000000000 --- a/databases/postgresql80-server/files/patch-jdbc-Connection +++ /dev/null @@ -1,51 +0,0 @@ -=================================================================== -RCS file: /home/projects/pgsql/cvsroot/pgsql/src/interfaces/jdbc/org/postgresql/Connection.java,v -retrieving revision 1.14 -retrieving revision 1.16 -diff -u -r1.14 -r1.16 ---- src/interfaces/jdbc/org/postgresql/Connection.java 2001/01/31 08:26:01 1.14 -+++ src/interfaces/jdbc/org/postgresql/Connection.java 2001/06/01 20:57:58 1.16 -@@ -10,7 +10,7 @@ - import org.postgresql.util.*; - - /** -- * $Id: Connection.java,v 1.14 2001/01/31 08:26:01 peter Exp $ -+ * $Id: Connection.java,v 1.16 2001/06/01 20:57:58 momjian Exp $ - * - * This abstract class is used by org.postgresql.Driver to open either the JDBC1 or - * JDBC2 versions of the Connection class. -@@ -267,7 +267,8 @@ - // - firstWarning = null; - -- java.sql.ResultSet initrset = ExecSQL("set datestyle to 'ISO'; select getdatabaseencoding()"); -+ java.sql.ResultSet initrset = ExecSQL("set datestyle to 'ISO'; " + -+ "select case when pg_encoding_to_char(1) = 'SQL_ASCII' then 'UNKNOWN' else getdatabaseencoding() end"); - - String dbEncoding = null; - //retrieve DB properties -@@ -307,9 +308,23 @@ - } else if (dbEncoding.equals("EUC_TW")) { - dbEncoding = "EUC_TW"; - } else if (dbEncoding.equals("KOI8")) { -- dbEncoding = "KOI8_R"; -+ // try first if KOI8_U is present, it's a superset of KOI8_R -+ try { -+ dbEncoding = "KOI8_U"; -+ "test".getBytes(dbEncoding); -+ } -+ catch(UnsupportedEncodingException uee) { -+ // well, KOI8_U is still not in standard JDK, falling back to KOI8_R :( -+ dbEncoding = "KOI8_R"; -+ } -+ - } else if (dbEncoding.equals("WIN")) { - dbEncoding = "Cp1252"; -+ } else if (dbEncoding.equals("UNKNOWN")) { -+ //This isn't a multibyte database so we don't have an encoding to use -+ //We leave dbEncoding null which will cause the default encoding for the -+ //JVM to be used -+ dbEncoding = null; - } else { - dbEncoding = null; - } diff --git a/databases/postgresql80-server/files/patch-jdbc-build-xml b/databases/postgresql80-server/files/patch-jdbc-build-xml deleted file mode 100644 index b1c703a9c978..000000000000 --- a/databases/postgresql80-server/files/patch-jdbc-build-xml +++ /dev/null @@ -1,10 +0,0 @@ ---- src/interfaces/jdbc/build.xml~ Fri Mar 16 22:50:43 2001 -+++ src/interfaces/jdbc/build.xml Wed Apr 18 08:57:57 2001 -@@ -120,6 +120,7 @@ - <javac srcdir="${src}" destdir="${dest}"> - <include name="example/**" /> - <exclude name="example/corba/**"/> -+ <exclude name="example/blobtest.java" unless="jdk1.2+"/> - </javac> - </target> - diff --git a/databases/postgresql80-server/files/patch-jdbc-getdate b/databases/postgresql80-server/files/patch-jdbc-getdate deleted file mode 100644 index 744407ae14b5..000000000000 --- a/databases/postgresql80-server/files/patch-jdbc-getdate +++ /dev/null @@ -1,34 +0,0 @@ ---- src/interfaces/jdbc/org/postgresql/jdbc2/ResultSet.java~ Fri Feb 23 19:12:23 2001 -+++ src/interfaces/jdbc/org/postgresql/jdbc2/ResultSet.java Wed May 9 04:31:11 2001 -@@ -423,8 +423,13 @@ - String s = getString(columnIndex); - if(s==null) - return null; -- -- return java.sql.Date.valueOf(s); -+ // length == 10: SQL Date -+ // length > 10: SQL Timestamp, assumes PGDATESTYLE=ISO -+ try { -+ return java.sql.Date.valueOf((s.length() == 10) ? s : s.substring(0,10)); -+ } catch (NumberFormatException e) { -+ throw new PSQLException("postgresql.res.baddate", s); -+ } - } - - /** -@@ -441,8 +446,13 @@ - - if(s==null) - return null; // SQL NULL -- -- return java.sql.Time.valueOf(s); -+ // length == 8: SQL Time -+ // length > 8: SQL Timestamp -+ try { -+ return java.sql.Time.valueOf((s.length() == 8) ? s : s.substring(11,19)); -+ } catch (NumberFormatException e) { -+ throw new PSQLException("postgresql.res.badtime",s); -+ } - } - - /** diff --git a/databases/postgresql80-server/files/pgsql.sh.tmpl b/databases/postgresql80-server/files/pgsql.sh.tmpl deleted file mode 100644 index cd78771219ed..000000000000 --- a/databases/postgresql80-server/files/pgsql.sh.tmpl +++ /dev/null @@ -1,36 +0,0 @@ -#!/bin/sh - -# $FreeBSD$ -# -# For postmaster startup options, edit $PGDATA/postgresql.conf - -PGBIN=%%PREFIX%%/%%PG_PREFIX%%bin - -case $1 in -start) - [ -d %%PREFIX%%/%%PG_PREFIX%%lib ] && /sbin/ldconfig -m %%PREFIX%%/%%PG_PREFIX%%lib - [ -x ${PGBIN}/pg_ctl ] && { - su -l pgsql -c \ - '[ -d ${PGDATA} ] && exec %%PREFIX%%/%%PG_PREFIX%%bin/pg_ctl start -s -w -l ~pgsql/errlog' - echo -n ' pgsql' - } - ;; - -stop) - [ -x ${PGBIN}/pg_ctl ] && { - su -l pgsql -c 'exec %%PREFIX%%/%%PG_PREFIX%%bin/pg_ctl stop -s -m fast' - echo -n ' pgsql' - } - ;; - -status) - [ -x ${PGBIN}/pg_ctl ] && { - exec su -l pgsql -c 'exec %%PREFIX%%/%%PG_PREFIX%%bin/pg_ctl status' - } - ;; - -*) - echo "usage: `basename $0` {start|stop|status}" >&2 - exit 64 - ;; -esac diff --git a/databases/postgresql80-server/files/pkgIndex.tcl.in b/databases/postgresql80-server/files/pkgIndex.tcl.in deleted file mode 100644 index bd8329b15c69..000000000000 --- a/databases/postgresql80-server/files/pkgIndex.tcl.in +++ /dev/null @@ -1,4 +0,0 @@ -# Package-index file for Pgtcl-package. Enables you to load PostgreSQL -# interface functions right into you TCL-interpreter as simply as -# package require Pgtcl -package ifneeded Pgtcl 1.3 "load %%PREFIX%%/lib/libpgtcl.so" diff --git a/databases/postgresql80-server/files/post-install-notes b/databases/postgresql80-server/files/post-install-notes deleted file mode 100644 index 9347fc51c247..000000000000 --- a/databases/postgresql80-server/files/post-install-notes +++ /dev/null @@ -1,25 +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/TK support, you can use the pgaccess -utility to get a TCL/TK based database frontend for database -operations. You do NOT need to install the pgaccess port separately. - -If you built in the TCL support, you can load the Pg package into your -TCL scripts as easily as ``package require Pgtcl''. - -If you built with Java support, add -/usr/local/share/java/classes/postgresql.jar to your classpath. - -If you have many tables and many clients running, consider raising -kern.maxfiles using sysctl(8). - -Use createlang(1) to install languages into your database. -Supported languages are 'plpgsql', 'pltcl', 'pltclu', and 'plperl'. diff --git a/databases/postgresql80-server/files/pre-install-notes b/databases/postgresql80-server/files/pre-install-notes deleted file mode 100644 index 697ce3cedb79..000000000000 --- a/databases/postgresql80-server/files/pre-install-notes +++ /dev/null @@ -1,21 +0,0 @@ - * IMPORTANT UPGRADE NOTICE * IMPORTANT UPGRADE NOTICE * - -The PostgreSQL port now obeys hier(7) by default, which means that it -installs into: - -%%PREFIX%%/bin -%%PREFIX%%/lib -%%PREFIX%%/include/pgsql - -You *must* move away your old installation to avoid problems with -ldconfig(8) and user's PATH:s. If you rather install using the -old-fashion layout, cancel at next screen and run make as: - -$ make -DWITH_OLD_LAYOUT - -As always, you *must* dump existing databases before stopping and -removing your old postgresql, as part of the update. This is *NOT* -done by this port! - -If you want JAVA support, I will try to determine your JAVA_HOME using -javavmwrapper. If you want a different JVM, please set JAVA_HOME. 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 463e4e49815f..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 cfc983fc2f66..000000000000 --- a/databases/postgresql80-server/pkg-install +++ /dev/null @@ -1,46 +0,0 @@ -#! /bin/sh - -# $FreeBSD$ - -PATH=/bin:/usr/sbin - -DB_DIR=${PKG_PREFIX}/pgsql - -case $2 in -PRE-INSTALL) - USER=pgsql - GROUP=${USER} - UID=70 - 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} -c "PostgreSQL Daemon" - then - echo "Added user \"${USER}\"." - else - echo "Adding user \"${USER}\" failed..." - exit 1 - fi - fi - - if ! [ -x ~pgsql ] ; then - mkdir -p ${DB_DIR} - chown pgsql:pgsql ${DB_DIR} - fi - ;; - -esac diff --git a/databases/postgresql80-server/pkg-message b/databases/postgresql80-server/pkg-message deleted file mode 100644 index 1a3f9f1e4147..000000000000 --- a/databases/postgresql80-server/pkg-message +++ /dev/null @@ -1,38 +0,0 @@ - -====================================================================== - - * IMPORTANT UPGRADE NOTICE * IMPORTANT UPGRADE NOTICE * - -The PostgreSQL port now obeys hier(7) by default, which means that it -installs into: - -/usr/local/bin -/usr/local/lib -/usr/local/include/pgsql - -You *must* move away your old installation from users' and -ldconfig(8)'s PATHs. If you rather install using the old-fashion -layout, cancel now and build the port with "make -DWITH_OLD_LAYOUT". - -The pgsql user's home dir is /usr/local/pgsql by default, but can be -changed with for example chpass(1). Datadir defaults to ~pgsql/data, -but can be changed by modifying the ~pgsql/.profile script. - -As always, backup your data before upgrading. If the upgrade leads to -a higher minor revision (i.e. 7.0.x -> 7.1.x), a dump and restore of -all databases is required. This is *NOT* done by the port! - -====================================================================== - -To initialize the database, you should run initdb as the "pgsql" user. - -Example: - - su -l pgsql -c initdb - -You can then start PostgreSQL by running: - - /usr/local/etc/rc.d/010.pgsql.sh start - -For postmaster settings, see ~pgsql/data/postgresql.conf -====================================================================== diff --git a/databases/postgresql80-server/pkg-plist b/databases/postgresql80-server/pkg-plist deleted file mode 100644 index a7493ddb7898..000000000000 --- a/databases/postgresql80-server/pkg-plist +++ /dev/null @@ -1,91 +0,0 @@ -%%PG_PREFIX%%bin/postmaster -%%PG_PREFIX%%bin/postgres -%%PG_PREFIX%%bin/ecpg -%%PG_PREFIX%%bin/initdb -%%PG_PREFIX%%bin/initlocation -%%PG_PREFIX%%bin/ipcclean -%%PG_PREFIX%%bin/pg_ctl -%%PG_PREFIX%%bin/pg_dump -%%PG_PREFIX%%bin/pg_restore -%%PG_PREFIX%%bin/pg_encoding -%%PG_PREFIX%%bin/pg_dumpall -%%PG_PREFIX%%bin/pg_id -%%PG_PREFIX%%bin/pg_passwd -%%PG_PREFIX%%bin/psql -%%PG_PREFIX%%bin/createdb -%%PG_PREFIX%%bin/dropdb -%%PG_PREFIX%%bin/createuser -%%PG_PREFIX%%bin/dropuser -%%PG_PREFIX%%bin/droplang -%%PG_PREFIX%%bin/vacuumdb -%%PG_PREFIX%%bin/createlang -%%PG_PREFIX%%bin/pg_config -etc/rc.d/010.pgsql.sh -%%PG_INCLUDE%%/lib/dllist.h -@dirrm %%PG_INCLUDE%%/lib -%%PG_INCLUDE%%/libpq/pqcomm.h -%%PG_INCLUDE%%/libpq/libpq-fs.h -@dirrm %%PG_INCLUDE%%/libpq -%%PG_INCLUDE%%/libpq++/pgconnection.h -%%PG_INCLUDE%%/libpq++/pgdatabase.h -%%PG_INCLUDE%%/libpq++/pgtransdb.h -%%PG_INCLUDE%%/libpq++/pgcursordb.h -%%PG_INCLUDE%%/libpq++/pglobject.h -@dirrm %%PG_INCLUDE%%/libpq++ -%%PG_INCLUDE%%/c.h -%%PG_INCLUDE%%/postgres_ext.h -%%PG_INCLUDE%%/postgres_fe.h -%%PG_INCLUDE%%/os.h -%%PG_INCLUDE%%/config.h -%%PG_INCLUDE%%/libpq-fe.h -%%PG_INCLUDE%%/libpq-int.h -%%PG_INCLUDE%%/pqexpbuffer.h -%%PG_INCLUDE%%/ecpgerrno.h -%%PG_INCLUDE%%/ecpglib.h -%%PG_INCLUDE%%/ecpgtype.h -%%PG_INCLUDE%%/sqlca.h -%%PG_INCLUDE%%/sql3types.h -%%PG_INCLUDE%%/libpgeasy.h -%%PG_INCLUDE%%/libpq++.h -@dirrm %%PG_INCLUDE%% -%%PG_PREFIX%%lib/libpq.so -%%PG_PREFIX%%lib/libpq.a -%%PG_PREFIX%%lib/libpq.so.2 -%%PG_PREFIX%%lib/libecpg.so -%%PG_PREFIX%%lib/libecpg.a -%%PG_PREFIX%%lib/libecpg.so.3 -%%PG_PREFIX%%lib/libpgeasy.so -%%PG_PREFIX%%lib/libpgeasy.a -%%PG_PREFIX%%lib/libpgeasy.so.2 -%%PG_PREFIX%%lib/libpq++.so -%%PG_PREFIX%%lib/libpq++.a -%%PG_PREFIX%%lib/libpq++.so.3 -%%PG_PREFIX%%lib/plpgsql.so -share/postgresql/global.bki -share/postgresql/global.description -share/postgresql/post-install-notes -share/postgresql/template1.bki -share/postgresql/template1.description -share/postgresql/pg_hba.conf.sample -share/postgresql/pg_ident.conf.sample -share/postgresql/postgresql.conf.sample -@unexec if cmp -s ~pgsql/.profile %D/share/postgresql/dot.profile.dist; then rm -f ~pgsql/.profile; fi -@unexec if cmp -s ~pgsql/.cshrc %D/share/postgresql/dot.cshrc.dist; then rm -f ~pgsql/.cshrc; fi -@unexec [ -f ~pgsql/dot.profile.dist ] && rm ~pgsql/dot.profile.dist -@unexec [ -f ~pgsql/dot.cshrc.dist ] && rm ~pgsql/dot.cshrc.dist -@exec [ -f %D/share/postgresql/post-install-notes ] && cp %D/share/postgresql/post-install-notes ~pgsql && chown pgsql:pgsql ~pgsql/post-install-notes -@unexec [ -f ~pgsql/post-install-notes ] && rm ~pgsql/post-install-notes -share/postgresql/dot.profile.dist -share/postgresql/dot.cshrc.dist -@dirrm share/postgresql -@exec [ -f %D/share/postgresql/dot.profile.dist ] && cp %D/share/postgresql/dot.profile.dist ~pgsql/. -@exec [ -f %D/share/postgresql/dot.cshrc.dist ] && cp %D/share/postgresql/dot.cshrc.dist ~pgsql/. -@exec [ -f ~pgsql/.profile ] || (cp %D/share/postgresql/dot.profile.dist ~pgsql/.profile && chown pgsql:pgsql ~pgsql/.profile) -@exec [ -f ~pgsql/.cshrc ] || (cp %D/share/postgresql/dot.cshrc.dist ~pgsql/.cshrc && chown pgsql:pgsql ~pgsql/.cshrc) -@unexec [ X%%PG_PREFIX%% != X ] && rmdir %D/%%PG_PREFIX%%bin 2> /dev/null || true -@unexec [ X%%PG_PREFIX%% != X ] && rmdir %D/%%PG_PREFIX%%lib 2> /dev/null || true -@unexec [ X%%PG_PREFIX%% != X ] && rmdir %D/%%PG_PREFIX%%man/man1 2> /dev/null || true -@unexec [ X%%PG_PREFIX%% != X ] && rmdir %D/%%PG_PREFIX%%man/manl 2> /dev/null || true -@unexec [ X%%PG_PREFIX%% != X ] && rmdir %D/%%PG_PREFIX%%man 2> /dev/null || true -@unexec rmdir ~pgsql 2> /dev/null || true -@unexec echo "Warning: If you will *NOT* use this package anymore, please remove %D/pgsql and the pgsql user manually." diff --git a/databases/postgresql80-server/pkg-plist.doc b/databases/postgresql80-server/pkg-plist.doc deleted file mode 100644 index c4d50ecb24f0..000000000000 --- a/databases/postgresql80-server/pkg-plist.doc +++ /dev/null @@ -1,494 +0,0 @@ -share/doc/postgresql/html/admin.html -share/doc/postgresql/html/advanced.html -share/doc/postgresql/html/altern-locations.html -share/doc/postgresql/html/app-createdb.html -share/doc/postgresql/html/app-createlang.html -share/doc/postgresql/html/app-createuser.html -share/doc/postgresql/html/app-dropdb.html -share/doc/postgresql/html/app-droplang.html -share/doc/postgresql/html/app-dropuser.html -share/doc/postgresql/html/app-ecpg.html -share/doc/postgresql/html/app-initdb.html -share/doc/postgresql/html/app-initlocation.html -share/doc/postgresql/html/app-ipcclean.html -share/doc/postgresql/html/app-pg-ctl.html -share/doc/postgresql/html/app-pg-dumpall.html -share/doc/postgresql/html/app-pg-passwd.html -share/doc/postgresql/html/app-pgaccess.html -share/doc/postgresql/html/app-pgadmin.html -share/doc/postgresql/html/app-pgconfig.html -share/doc/postgresql/html/app-pgdump.html -share/doc/postgresql/html/app-pgrestore.html -share/doc/postgresql/html/app-pgtclsh.html -share/doc/postgresql/html/app-pgtksh.html -share/doc/postgresql/html/app-postgres.html -share/doc/postgresql/html/app-postmaster.html -share/doc/postgresql/html/app-psql.html -share/doc/postgresql/html/app-vacuumdb.html -share/doc/postgresql/html/applevel-consistency.html -share/doc/postgresql/html/arch-pg.html -share/doc/postgresql/html/arch.html -share/doc/postgresql/html/arrays.html -share/doc/postgresql/html/auth-methods.html -share/doc/postgresql/html/backup-file.html -share/doc/postgresql/html/backup.html -share/doc/postgresql/html/biblio.html -share/doc/postgresql/html/bki-commands.html -share/doc/postgresql/html/bki-example.html -share/doc/postgresql/html/bki.html -share/doc/postgresql/html/bug-reporting.html -share/doc/postgresql/html/catalog-pg-aggregate.html -share/doc/postgresql/html/catalog-pg-attrdef.html -share/doc/postgresql/html/catalog-pg-attribute.html -share/doc/postgresql/html/catalog-pg-class.html -share/doc/postgresql/html/catalog-pg-database.html -share/doc/postgresql/html/catalog-pg-description.html -share/doc/postgresql/html/catalog-pg-group.html -share/doc/postgresql/html/catalog-pg-index.html -share/doc/postgresql/html/catalog-pg-inherits.html -share/doc/postgresql/html/catalog-pg-language.html -share/doc/postgresql/html/catalog-pg-operator.html -share/doc/postgresql/html/catalog-pg-proc.html -share/doc/postgresql/html/catalog-pg-relcheck.html -share/doc/postgresql/html/catalog-pg-shadow.html -share/doc/postgresql/html/catalog-pg-type.html -share/doc/postgresql/html/catalogs.html -share/doc/postgresql/html/charset.html -share/doc/postgresql/html/client-authentication-problems.html -share/doc/postgresql/html/client-authentication.html -share/doc/postgresql/html/compiler.html -share/doc/postgresql/html/connect-estab.html -share/doc/postgresql/html/creating-cluster.html -share/doc/postgresql/html/cvs-tree.html -share/doc/postgresql/html/cvs.html -share/doc/postgresql/html/cvsup.html -share/doc/postgresql/html/datatype-bit.html -share/doc/postgresql/html/datatype-boolean.html -share/doc/postgresql/html/datatype-character.html -share/doc/postgresql/html/datatype-datetime.html -share/doc/postgresql/html/datatype-geometric.html -share/doc/postgresql/html/datatype-money.html -share/doc/postgresql/html/ecpg.html -share/doc/postgresql/html/datatype-net-types.html -share/doc/postgresql/html/datatype.html -share/doc/postgresql/html/datetime-appendix.html -share/doc/postgresql/html/db-accessing.html -share/doc/postgresql/html/db-destroy.html -share/doc/postgresql/html/developer.html -share/doc/postgresql/html/doc-build.html -share/doc/postgresql/html/doc-sources.html -share/doc/postgresql/html/doc-toolsets.html -share/doc/postgresql/html/docguide.html -share/doc/postgresql/html/ecpg-concept.html -share/doc/postgresql/html/ecpg-develop.html -share/doc/postgresql/html/ecpg-limitations.html -share/doc/postgresql/html/ecpg-porting.html -share/doc/postgresql/html/ecpg-use.html -share/doc/postgresql/html/executor.html -share/doc/postgresql/html/explicit-joins.html -share/doc/postgresql/html/extend.html -share/doc/postgresql/html/functions-datetime.html -share/doc/postgresql/html/functions-aggregate.html -share/doc/postgresql/html/functions-comparison.html -share/doc/postgresql/html/functions-conditional.html -share/doc/postgresql/html/functions-formatting.html -share/doc/postgresql/html/functions-geometry.html -share/doc/postgresql/html/functions-matching.html -share/doc/postgresql/html/functions-math.html -share/doc/postgresql/html/functions-misc.html -share/doc/postgresql/html/functions-net.html -share/doc/postgresql/html/functions-string.html -share/doc/postgresql/html/functions.html -share/doc/postgresql/html/geqo-intro2.html -share/doc/postgresql/html/geqo-pg-intro.html -share/doc/postgresql/html/geqo.html -share/doc/postgresql/html/gist.html -share/doc/postgresql/html/groups.html -share/doc/postgresql/html/history.html -share/doc/postgresql/html/index.html -share/doc/postgresql/html/indexcost.html -share/doc/postgresql/html/indices-functional.html -share/doc/postgresql/html/indices-multicolumn.html -share/doc/postgresql/html/indices-opclass.html -share/doc/postgresql/html/indices-types.html -share/doc/postgresql/html/indices-unique.html -share/doc/postgresql/html/indices.html -share/doc/postgresql/html/inherit.html -share/doc/postgresql/html/install-getsource.html -share/doc/postgresql/html/install-post.html -share/doc/postgresql/html/install-procedure.html -share/doc/postgresql/html/install-requirements.html -share/doc/postgresql/html/install-upgrading.html -share/doc/postgresql/html/install-win32.html -share/doc/postgresql/html/installation.html -share/doc/postgresql/html/jdbc-ext.html -share/doc/postgresql/html/jdbc-lo.html -share/doc/postgresql/html/jdbc.html -share/doc/postgresql/html/jdbc-query.html -share/doc/postgresql/html/jdbc-reading.html -share/doc/postgresql/html/jdbc-thread.html -share/doc/postgresql/html/jdbc-update.html -share/doc/postgresql/html/jdbc-use.html -share/doc/postgresql/html/kernel-resources.html -share/doc/postgresql/html/keys.html -share/doc/postgresql/html/largeobjects.html -share/doc/postgresql/html/libpgtcl-examples.html -share/doc/postgresql/html/libpgtcl-ref.html -share/doc/postgresql/html/libpq-async.html -share/doc/postgresql/html/libpq-control.html -share/doc/postgresql/html/libpq-copy.html -share/doc/postgresql/html/libpq-envars.html -share/doc/postgresql/html/libpq-example.html -share/doc/postgresql/html/libpq-exec.html -share/doc/postgresql/html/libpq-fastpath.html -share/doc/postgresql/html/libpq-notify.html -share/doc/postgresql/html/libpq.html -share/doc/postgresql/html/libpq-threading.html -share/doc/postgresql/html/libpq-trace.html -share/doc/postgresql/html/libpqplusplus.html -share/doc/postgresql/html/libpqpp-classes.html -share/doc/postgresql/html/libpqpp-connect.html -share/doc/postgresql/html/libpqpp-copy.html -share/doc/postgresql/html/libpqpp-exec.html -share/doc/postgresql/html/libpqpp-notify.html -share/doc/postgresql/html/lisp.html -share/doc/postgresql/html/ln11330.html -share/doc/postgresql/html/ln1274.html -share/doc/postgresql/html/ln15181.html -share/doc/postgresql/html/ln24.html -share/doc/postgresql/html/ln25010.html -share/doc/postgresql/html/ln37176.html -share/doc/postgresql/html/ln8.html -share/doc/postgresql/html/lo-funcs.html -share/doc/postgresql/html/lo-implementation.html -share/doc/postgresql/html/lo-interfaces.html -share/doc/postgresql/html/lo-libpq.html -share/doc/postgresql/html/lo-sample.html -share/doc/postgresql/html/locking-indices.html -share/doc/postgresql/html/locking-tables.html -share/doc/postgresql/html/manage-ag-accessdb.html -share/doc/postgresql/html/manage-ag-dropdb.html -share/doc/postgresql/html/manage.html -share/doc/postgresql/html/managing-databases.html -share/doc/postgresql/html/migration.html -share/doc/postgresql/html/more-advanced.html -share/doc/postgresql/html/multibyte.html -share/doc/postgresql/html/mvcc.html -share/doc/postgresql/html/non-atomic-values.html -share/doc/postgresql/html/notation.html -share/doc/postgresql/html/odbc-applixware.html -share/doc/postgresql/html/odbc-config.html -share/doc/postgresql/html/odbc-install.html -share/doc/postgresql/html/odbc-windows.html -share/doc/postgresql/html/odbc.html -share/doc/postgresql/html/organization.html -share/doc/postgresql/html/overview.html -share/doc/postgresql/html/page.html -share/doc/postgresql/html/parser-stage.html -share/doc/postgresql/html/partial-index.html -share/doc/postgresql/html/performance-tips.html -share/doc/postgresql/html/perm-functions.html -share/doc/postgresql/html/pg-system-catalogs.html -share/doc/postgresql/html/pgeasy-chapter.html -share/doc/postgresql/html/pgtcl-pgconndefaults.html -share/doc/postgresql/html/pgtcl-pgconnect.html -share/doc/postgresql/html/pgtcl-pgdisconnect.html -share/doc/postgresql/html/pgtcl-pgexec.html -share/doc/postgresql/html/pgtcl-pglisten.html -share/doc/postgresql/html/pgtcl-pgloclose.html -share/doc/postgresql/html/pgtcl-pglocreat.html -share/doc/postgresql/html/pgtcl-pgloexport.html -share/doc/postgresql/html/pgtcl-pgloimport.html -share/doc/postgresql/html/pgtcl-pglolseek.html -share/doc/postgresql/html/pgtcl-pgloopen.html -share/doc/postgresql/html/pgtcl-pgloread.html -share/doc/postgresql/html/pgtcl-pglotell.html -share/doc/postgresql/html/pgtcl-pglounlink.html -share/doc/postgresql/html/pgtcl-pglowrite.html -share/doc/postgresql/html/pgtcl-pgresult.html -share/doc/postgresql/html/pgtcl-pgselect.html -share/doc/postgresql/html/pgtcl.html -share/doc/postgresql/html/planner-optimizer.html -share/doc/postgresql/html/plperl-use.html -share/doc/postgresql/html/plperl.html -share/doc/postgresql/html/plpgsql-description.html -share/doc/postgresql/html/plpgsql-examples.html -share/doc/postgresql/html/plpgsql-porting.html -share/doc/postgresql/html/plpgsql-trigger.html -share/doc/postgresql/html/plpgsql.html -share/doc/postgresql/html/pltcl-description.html -share/doc/postgresql/html/pltcl.html -share/doc/postgresql/html/populate.html -share/doc/postgresql/html/postgres.html -share/doc/postgresql/html/postmaster-shutdown.html -share/doc/postgresql/html/postmaster-start.html -share/doc/postgresql/html/preface.html -share/doc/postgresql/html/privileges.html -share/doc/postgresql/html/programmer-client.html -share/doc/postgresql/html/programmer-pl.html -share/doc/postgresql/html/programmer-server.html -share/doc/postgresql/html/programmer.html -share/doc/postgresql/html/protocol-message-formats.html -share/doc/postgresql/html/protocol-message-types.html -share/doc/postgresql/html/protocol-protocol.html -share/doc/postgresql/html/protocol.html -share/doc/postgresql/html/pygresql.html -share/doc/postgresql/html/pygresql-close.html -share/doc/postgresql/html/pygresql-connect.html -share/doc/postgresql/html/pygresql-db-api.html -share/doc/postgresql/html/pygresql-db-clear.html -share/doc/postgresql/html/pygresql-db-delete.html -share/doc/postgresql/html/pygresql-db-get-attnames.html -share/doc/postgresql/html/pygresql-db-get-databases.html -share/doc/postgresql/html/pygresql-db-get-tables.html -share/doc/postgresql/html/pygresql-db-get.html -share/doc/postgresql/html/pygresql-db-insert.html -share/doc/postgresql/html/pygresql-db-pkey.html -share/doc/postgresql/html/pygresql-db-update.html -share/doc/postgresql/html/pygresql-endcopy.html -share/doc/postgresql/html/pygresql-fileno.html -share/doc/postgresql/html/pygresql-get-defbase.html -share/doc/postgresql/html/pygresql-get-defhost.html -share/doc/postgresql/html/pygresql-get-defopt.html -share/doc/postgresql/html/pygresql-get-defport.html -share/doc/postgresql/html/pygresql-get-deftty.html -share/doc/postgresql/html/pygresql-getline.html -share/doc/postgresql/html/pygresql-getlo.html -share/doc/postgresql/html/pygresql-getnotify.html -share/doc/postgresql/html/pygresql-inserttable.html -share/doc/postgresql/html/pygresql-locreate.html -share/doc/postgresql/html/pygresql-loimport.html -share/doc/postgresql/html/pygresql-pg-db.html -share/doc/postgresql/html/pygresql-pg-functions.html -share/doc/postgresql/html/pygresql-pg-pglarge.html -share/doc/postgresql/html/pygresql-pg-pgobject.html -share/doc/postgresql/html/pygresql-pg-pgqueryobject.html -share/doc/postgresql/html/pygresql-pglargeobject-close.html -share/doc/postgresql/html/pygresql-pglargeobject-export.html -share/doc/postgresql/html/pygresql-pglargeobject-open.html -share/doc/postgresql/html/pygresql-pglargeobject-read.html -share/doc/postgresql/html/pygresql-pglargeobject-seek.html -share/doc/postgresql/html/pygresql-pglargeobject-size.html -share/doc/postgresql/html/pygresql-pglargeobject-tell.html -share/doc/postgresql/html/pygresql-pglargeobject-unlink.html -share/doc/postgresql/html/pygresql-pglargeobject-write.html -share/doc/postgresql/html/pygresql-pgqueryobject-dictresult.html -share/doc/postgresql/html/pygresql-pgqueryobject-fieldname.html -share/doc/postgresql/html/query.html -share/doc/postgresql/html/pygresql-pgqueryobject-fieldnum.html -share/doc/postgresql/html/pygresql-pgqueryobject-getresult.html -share/doc/postgresql/html/pygresql-pgqueryobject-listfields.html -share/doc/postgresql/html/pygresql-pgqueryobject-ntuples.html -share/doc/postgresql/html/pygresql-putline.html -share/doc/postgresql/html/pygresql-query.html -share/doc/postgresql/html/pygresql-reset.html -share/doc/postgresql/html/pygresql-set-defbase.html -share/doc/postgresql/html/pygresql-set-defhost.html -share/doc/postgresql/html/pygresql-set-defopt.html -share/doc/postgresql/html/pygresql-set-defport.html -share/doc/postgresql/html/pygresql-set-deftty.html -share/doc/postgresql/html/queries-limit.html -share/doc/postgresql/html/queries-order.html -share/doc/postgresql/html/queries-select-lists.html -share/doc/postgresql/html/queries-union.html -share/doc/postgresql/html/queries.html -share/doc/postgresql/html/query-agg.html -share/doc/postgresql/html/query-concepts.html -share/doc/postgresql/html/query-delete.html -share/doc/postgresql/html/query-join.html -share/doc/postgresql/html/query-populate.html -share/doc/postgresql/html/query-query.html -share/doc/postgresql/html/query-selectinto.html -share/doc/postgresql/html/query-table.html -share/doc/postgresql/html/query-update.html -share/doc/postgresql/html/recode.html -share/doc/postgresql/html/recovery.html -share/doc/postgresql/html/reference-client.html -share/doc/postgresql/html/reference-server.html -share/doc/postgresql/html/reference.html -share/doc/postgresql/html/regress-platform.html -share/doc/postgresql/html/regress.html -share/doc/postgresql/html/release-0-01.html -share/doc/postgresql/html/release-0-02.html -share/doc/postgresql/html/release-0-03.html -share/doc/postgresql/html/release-1-0.html -share/doc/postgresql/html/release-1-01.html -share/doc/postgresql/html/release-1-02.html -share/doc/postgresql/html/release-1-09.html -share/doc/postgresql/html/release-6-0.html -share/doc/postgresql/html/release-6-1-1.html -share/doc/postgresql/html/release-6-1.html -share/doc/postgresql/html/release-6-2-1.html -share/doc/postgresql/html/release-6-2.html -share/doc/postgresql/html/release-6-3-1.html -share/doc/postgresql/html/release-6-3-2.html -share/doc/postgresql/html/release-6-3.html -share/doc/postgresql/html/release-6-4-1.html -share/doc/postgresql/html/release-6-4-2.html -share/doc/postgresql/html/release-6-4.html -share/doc/postgresql/html/release-6-5-1.html -share/doc/postgresql/html/release-6-5-2.html -share/doc/postgresql/html/release-6-5-3.html -share/doc/postgresql/html/release-6-5.html -share/doc/postgresql/html/release-7-0-1.html -share/doc/postgresql/html/release-7-0-2.html -share/doc/postgresql/html/release-7-0-3.html -share/doc/postgresql/html/release-7-0.html -share/doc/postgresql/html/release-7-1.html -share/doc/postgresql/html/release-7-1-1.html -share/doc/postgresql/html/release-7-1-2.html -share/doc/postgresql/html/release.html -share/doc/postgresql/html/relmodel-formal.html -share/doc/postgresql/html/relmodel-oper.html -share/doc/postgresql/html/resources.html -share/doc/postgresql/html/rule-system.html -share/doc/postgresql/html/rules-insert.html -share/doc/postgresql/html/rules-permissions.html -share/doc/postgresql/html/rules-triggers.html -share/doc/postgresql/html/rules-views.html -share/doc/postgresql/html/rules.html -share/doc/postgresql/html/runtime-config.html -share/doc/postgresql/html/runtime.html -share/doc/postgresql/html/source.html -share/doc/postgresql/html/spi-examples.html -share/doc/postgresql/html/spi-interface-support.html -share/doc/postgresql/html/spi-memory.html -share/doc/postgresql/html/spi-spiconnect.html -share/doc/postgresql/html/spi-spicopytuple.html -share/doc/postgresql/html/spi-spiexec.html -share/doc/postgresql/html/spi-spiexecp.html -share/doc/postgresql/html/spi-spifinish.html -share/doc/postgresql/html/spi-spifname.html -share/doc/postgresql/html/spi-spifnumber.html -share/doc/postgresql/html/spi-spigetbinval.html -share/doc/postgresql/html/spi-spigetrelname.html -share/doc/postgresql/html/spi-spigettype.html -share/doc/postgresql/html/spi-spigettypeid.html -share/doc/postgresql/html/spi-spigetvalue.html -share/doc/postgresql/html/spi-spimodifytuple.html -share/doc/postgresql/html/spi-spipalloc.html -share/doc/postgresql/html/spi-spipfree.html -share/doc/postgresql/html/spi-spiprepare.html -share/doc/postgresql/html/spi-spirepalloc.html -share/doc/postgresql/html/spi-spisaveplan.html -share/doc/postgresql/html/spi-visibility.html -share/doc/postgresql/html/spi.html -share/doc/postgresql/html/sql-abort.html -share/doc/postgresql/html/sql-altergroup.html -share/doc/postgresql/html/sql-altertable.html -share/doc/postgresql/html/sql-alteruser.html -share/doc/postgresql/html/sql-begin.html -share/doc/postgresql/html/sql-checkpoint.html -share/doc/postgresql/html/sql-close.html -share/doc/postgresql/html/sql-cluster.html -share/doc/postgresql/html/sql-commands.html -share/doc/postgresql/html/sql-comment.html -share/doc/postgresql/html/sql-commit.html -share/doc/postgresql/html/sql-copy.html -share/doc/postgresql/html/sql-createaggregate.html -share/doc/postgresql/html/sql-createconstraint.html -share/doc/postgresql/html/sql-createdatabase.html -share/doc/postgresql/html/sql-createfunction.html -share/doc/postgresql/html/sql-creategroup.html -share/doc/postgresql/html/sql-createindex.html -share/doc/postgresql/html/sql-createlanguage.html -share/doc/postgresql/html/sql-createoperator.html -share/doc/postgresql/html/sql-createrule.html -share/doc/postgresql/html/sql-createsequence.html -share/doc/postgresql/html/sql-createtable.html -share/doc/postgresql/html/sql-createtableas.html -share/doc/postgresql/html/sql-createtrigger.html -share/doc/postgresql/html/sql-createtype.html -share/doc/postgresql/html/sql-createuser.html -share/doc/postgresql/html/sql-createview.html -share/doc/postgresql/html/sql-declare.html -share/doc/postgresql/html/sql-delete.html -share/doc/postgresql/html/sql-dropaggregate.html -share/doc/postgresql/html/sql-dropdatabase.html -share/doc/postgresql/html/sql-dropfunction.html -share/doc/postgresql/html/sql-dropgroup.html -share/doc/postgresql/html/sql-dropindex.html -share/doc/postgresql/html/sql-droplanguage.html -share/doc/postgresql/html/sql-dropoperator.html -share/doc/postgresql/html/sql-droprule.html -share/doc/postgresql/html/sql-dropsequence.html -share/doc/postgresql/html/sql-droptable.html -share/doc/postgresql/html/sql-droptrigger.html -share/doc/postgresql/html/sql-droptype.html -share/doc/postgresql/html/sql-dropuser.html -share/doc/postgresql/html/sql-dropview.html -share/doc/postgresql/html/sql-end.html -share/doc/postgresql/html/sql-explain.html -share/doc/postgresql/html/sql-expressions.html -share/doc/postgresql/html/sql-fetch.html -share/doc/postgresql/html/sql-grant.html -share/doc/postgresql/html/sql-insert.html -share/doc/postgresql/html/sql-keywords-appendix.html -share/doc/postgresql/html/sql-language.html -share/doc/postgresql/html/sql-listen.html -share/doc/postgresql/html/sql-load.html -share/doc/postgresql/html/sql-lock.html -share/doc/postgresql/html/sql-move.html -share/doc/postgresql/html/sql-notify.html -share/doc/postgresql/html/sql-precedence.html -share/doc/postgresql/html/sql-reindex.html -share/doc/postgresql/html/sql-reset.html -share/doc/postgresql/html/sql-revoke.html -share/doc/postgresql/html/sql-rollback.html -share/doc/postgresql/html/sql-select.html -share/doc/postgresql/html/sql-selectinto.html -share/doc/postgresql/html/sql-set-constraints.html -share/doc/postgresql/html/sql-set-transaction.html -share/doc/postgresql/html/sql-set.html -share/doc/postgresql/html/sql-show.html -share/doc/postgresql/html/sql-syntax-columns.html -share/doc/postgresql/html/sql-syntax.html -share/doc/postgresql/html/sql-truncate.html -share/doc/postgresql/html/sql-unlisten.html -share/doc/postgresql/html/sql-update.html -share/doc/postgresql/html/sql-vacuum.html -share/doc/postgresql/html/sql.html -share/doc/postgresql/html/ssh-tunnels.html -share/doc/postgresql/html/ssl-tcp.html -share/doc/postgresql/html/start-manage-db.html -share/doc/postgresql/html/start-psql.html -share/doc/postgresql/html/start.html -share/doc/postgresql/html/storage.html -share/doc/postgresql/html/supported-platforms.html -share/doc/postgresql/html/timing-results.html -share/doc/postgresql/html/transaction-iso.html -share/doc/postgresql/html/trigger-datachanges.html -share/doc/postgresql/html/trigger-examples.html -share/doc/postgresql/html/trigger-manager.html -share/doc/postgresql/html/triggers.html -share/doc/postgresql/html/tutorial.html -share/doc/postgresql/html/type-system.html -share/doc/postgresql/html/typeconv-func.html -share/doc/postgresql/html/typeconv-oper.html -share/doc/postgresql/html/typeconv-query.html -share/doc/postgresql/html/typeconv-union-case.html -share/doc/postgresql/html/typeconv.html -share/doc/postgresql/html/units-history.html -share/doc/postgresql/html/user-manag.html -share/doc/postgresql/html/user.html -share/doc/postgresql/html/wal-configuration.html -share/doc/postgresql/html/wal-implementation.html -share/doc/postgresql/html/wal.html -share/doc/postgresql/html/xact-read-committed.html -share/doc/postgresql/html/xact-serializable.html -share/doc/postgresql/html/xaggr.html -share/doc/postgresql/html/xfunc-c.html -share/doc/postgresql/html/xfunc-internal.html -share/doc/postgresql/html/xfunc-overload.html -share/doc/postgresql/html/xfunc-pl.html -share/doc/postgresql/html/xfunc.html -share/doc/postgresql/html/xindex.html -share/doc/postgresql/html/xoper.html -share/doc/postgresql/html/xplang.html -share/doc/postgresql/html/xtypes.html -share/doc/postgresql/html/y2k.html -share/doc/postgresql/html/catalogs.gif -share/doc/postgresql/html/clientserver.gif -share/doc/postgresql/html/connections.gif -@dirrm share/doc/postgresql/html -@dirrm share/doc/postgresql diff --git a/databases/postgresql80-server/pkg-plist.jdbc b/databases/postgresql80-server/pkg-plist.jdbc deleted file mode 100644 index 8f7bd41a54d7..000000000000 --- a/databases/postgresql80-server/pkg-plist.jdbc +++ /dev/null @@ -1,27 +0,0 @@ -share/examples/postgresql/corba/StockClient.java -share/examples/postgresql/corba/StockDB.java -share/examples/postgresql/corba/StockDispenserImpl.java -share/examples/postgresql/corba/StockItemImpl.java -share/examples/postgresql/corba/StockServer.java -share/examples/postgresql/corba/readme -share/examples/postgresql/corba/stock.idl -share/examples/postgresql/corba/stock.sql -@dirrm share/examples/postgresql/corba -share/examples/postgresql/ImageViewer.java -share/examples/postgresql/Unicode.java -share/examples/postgresql/basic.java -share/examples/postgresql/blobtest.java -share/examples/postgresql/datestyle.java -share/examples/postgresql/metadata.java -share/examples/postgresql/psql.java -share/examples/postgresql/threadsafe.java -share/examples/postgresql/README -share/examples/postgresql/Implementation -@dirrm share/examples/postgresql -share/postgresql/java/postgresql-examples.jar -share/postgresql/java/postgresql.jar -share/postgresql/java/retepTools.jar -@dirrm share/postgresql/java -share/java/classes/postgresql.jar -@unexec rmdir %D/share/java/classes 2>/dev/null || true -@unexec rmdir %D/share/java 2>/dev/null || true diff --git a/databases/postgresql80-server/pkg-plist.notk b/databases/postgresql80-server/pkg-plist.notk deleted file mode 100644 index 8dcbc5f88bd6..000000000000 --- a/databases/postgresql80-server/pkg-plist.notk +++ /dev/null @@ -1,6 +0,0 @@ -%%PG_PREFIX%%bin/pgtclsh -%%PG_INCLUDE%%/libpgtcl.h -%%PG_PREFIX%%lib/libpgtcl.a -%%PG_PREFIX%%lib/libpgtcl.so -%%PG_PREFIX%%lib/libpgtcl.so.2 -%%PG_PREFIX%%lib/pltcl.so diff --git a/databases/postgresql80-server/pkg-plist.odbc b/databases/postgresql80-server/pkg-plist.odbc deleted file mode 100644 index f047b7cb64a1..000000000000 --- a/databases/postgresql80-server/pkg-plist.odbc +++ /dev/null @@ -1,10 +0,0 @@ -%%PG_INCLUDE%%/iodbc/iodbc.h -%%PG_INCLUDE%%/iodbc/isql.h -%%PG_INCLUDE%%/iodbc/isqlext.h -@dirrm %%PG_INCLUDE%%/iodbc -%%PG_PREFIX%%lib/libpsqlodbc.a -%%PG_PREFIX%%lib/libpsqlodbc.so -%%PG_PREFIX%%lib/libpsqlodbc.so.0 -etc/postgresql/odbcinst.ini -@dirrm etc/postgresql -share/postgresql/odbc.sql diff --git a/databases/postgresql80-server/pkg-plist.tcl b/databases/postgresql80-server/pkg-plist.tcl deleted file mode 100644 index da5f4367cb80..000000000000 --- a/databases/postgresql80-server/pkg-plist.tcl +++ /dev/null @@ -1,148 +0,0 @@ -%%PG_PREFIX%%bin/pgaccess -%%PG_PREFIX%%bin/pgtclsh -%%PG_PREFIX%%bin/pgtksh -%%PG_INCLUDE%%/libpgtcl.h -%%PG_PREFIX%%lib/libpgtcl.a -%%PG_PREFIX%%lib/libpgtcl.so -%%PG_PREFIX%%lib/libpgtcl.so.2 -%%PG_PREFIX%%lib/pltcl.so -lib/tcl%%WITH_TCL%%/Pgtcl1.3/pkgIndex.tcl -share/postgresql/pgaccess/images/icon_button.gif -share/postgresql/pgaccess/images/icon_checkbutton.gif -share/postgresql/pgaccess/images/icon_entry.gif -share/postgresql/pgaccess/images/icon_frame.gif -share/postgresql/pgaccess/images/icon_label.gif -share/postgresql/pgaccess/images/icon_listbox.gif -share/postgresql/pgaccess/images/icon_query.gif -share/postgresql/pgaccess/images/icon_radiobutton.gif -share/postgresql/pgaccess/images/icon_text.gif -share/postgresql/pgaccess/lib/database.tcl -share/postgresql/pgaccess/lib/forms.tcl -share/postgresql/pgaccess/lib/functions.tcl -share/postgresql/pgaccess/lib/help/abort.hlp -share/postgresql/pgaccess/lib/help/add_records.hlp -share/postgresql/pgaccess/lib/help/alter_table.hlp -share/postgresql/pgaccess/lib/help/alter_user.hlp -share/postgresql/pgaccess/lib/help/author.hlp -share/postgresql/pgaccess/lib/help/begin.hlp -share/postgresql/pgaccess/lib/help/close.hlp -share/postgresql/pgaccess/lib/help/cluster.hlp -share/postgresql/pgaccess/lib/help/commit.hlp -share/postgresql/pgaccess/lib/help/copy.hlp -share/postgresql/pgaccess/lib/help/copyrights.hlp -share/postgresql/pgaccess/lib/help/create_aggregate.hlp -share/postgresql/pgaccess/lib/help/create_database.hlp -share/postgresql/pgaccess/lib/help/create_function.hlp -share/postgresql/pgaccess/lib/help/create_index.hlp -share/postgresql/pgaccess/lib/help/create_language.hlp -share/postgresql/pgaccess/lib/help/create_operator.hlp -share/postgresql/pgaccess/lib/help/create_rule.hlp -share/postgresql/pgaccess/lib/help/create_sequence.hlp -share/postgresql/pgaccess/lib/help/create_table.hlp -share/postgresql/pgaccess/lib/help/create_table_as.hlp -share/postgresql/pgaccess/lib/help/create_trigger.hlp -share/postgresql/pgaccess/lib/help/create_type.hlp -share/postgresql/pgaccess/lib/help/create_user.hlp -share/postgresql/pgaccess/lib/help/create_view.hlp -share/postgresql/pgaccess/lib/help/data_types.hlp -share/postgresql/pgaccess/lib/help/datefunc.hlp -share/postgresql/pgaccess/lib/help/declare.hlp -share/postgresql/pgaccess/lib/help/delete.hlp -share/postgresql/pgaccess/lib/help/drop_aggregate.hlp -share/postgresql/pgaccess/lib/help/drop_database.hlp -share/postgresql/pgaccess/lib/help/drop_function.hlp -share/postgresql/pgaccess/lib/help/drop_index.hlp -share/postgresql/pgaccess/lib/help/drop_language.hlp -share/postgresql/pgaccess/lib/help/drop_operator.hlp -share/postgresql/pgaccess/lib/help/drop_rule.hlp -share/postgresql/pgaccess/lib/help/drop_sequence.hlp -share/postgresql/pgaccess/lib/help/drop_table.hlp -share/postgresql/pgaccess/lib/help/drop_trigger.hlp -share/postgresql/pgaccess/lib/help/drop_type.hlp -share/postgresql/pgaccess/lib/help/drop_user.hlp -share/postgresql/pgaccess/lib/help/drop_view.hlp -share/postgresql/pgaccess/lib/help/explain.hlp -share/postgresql/pgaccess/lib/help/fetch.hlp -share/postgresql/pgaccess/lib/help/form_design.hlp -share/postgresql/pgaccess/lib/help/forms.hlp -share/postgresql/pgaccess/lib/help/functions.hlp -share/postgresql/pgaccess/lib/help/geomfunc.hlp -share/postgresql/pgaccess/lib/help/grant.hlp -share/postgresql/pgaccess/lib/help/history.hlp -share/postgresql/pgaccess/lib/help/index.hlp -share/postgresql/pgaccess/lib/help/inheritance.hlp -share/postgresql/pgaccess/lib/help/insert.hlp -share/postgresql/pgaccess/lib/help/ipv4func.hlp -share/postgresql/pgaccess/lib/help/isolation.hlp -share/postgresql/pgaccess/lib/help/keywords.hlp -share/postgresql/pgaccess/lib/help/listen.hlp -share/postgresql/pgaccess/lib/help/load.hlp -share/postgresql/pgaccess/lib/help/lock.hlp -share/postgresql/pgaccess/lib/help/mathfunc.hlp -share/postgresql/pgaccess/lib/help/move.hlp -share/postgresql/pgaccess/lib/help/mvcc.hlp -share/postgresql/pgaccess/lib/help/new_query.hlp -share/postgresql/pgaccess/lib/help/new_table.hlp -share/postgresql/pgaccess/lib/help/notify.hlp -share/postgresql/pgaccess/lib/help/open_query.hlp -share/postgresql/pgaccess/lib/help/open_table.hlp -share/postgresql/pgaccess/lib/help/pgfunctions.hlp -share/postgresql/pgaccess/lib/help/postgresql.hlp -share/postgresql/pgaccess/lib/help/queries.hlp -share/postgresql/pgaccess/lib/help/reports.hlp -share/postgresql/pgaccess/lib/help/reset.hlp -share/postgresql/pgaccess/lib/help/revoke.hlp -share/postgresql/pgaccess/lib/help/rollback.hlp -share/postgresql/pgaccess/lib/help/schema.hlp -share/postgresql/pgaccess/lib/help/scripts.hlp -share/postgresql/pgaccess/lib/help/select.hlp -share/postgresql/pgaccess/lib/help/select_into.hlp -share/postgresql/pgaccess/lib/help/sequences.hlp -share/postgresql/pgaccess/lib/help/set.hlp -share/postgresql/pgaccess/lib/help/show.hlp -share/postgresql/pgaccess/lib/help/sql_guide.hlp -share/postgresql/pgaccess/lib/help/sqlfunc.hlp -share/postgresql/pgaccess/lib/help/stringfunc.hlp -share/postgresql/pgaccess/lib/help/tables.hlp -share/postgresql/pgaccess/lib/help/unlisten.hlp -share/postgresql/pgaccess/lib/help/update.hlp -share/postgresql/pgaccess/lib/help/users.hlp -share/postgresql/pgaccess/lib/help/vacuum.hlp -share/postgresql/pgaccess/lib/help/view_table_structure.hlp -share/postgresql/pgaccess/lib/help/views.hlp -share/postgresql/pgaccess/lib/help/visual_designer.hlp -share/postgresql/pgaccess/lib/help/y2k.hlp -share/postgresql/pgaccess/lib/help.tcl -share/postgresql/pgaccess/lib/languages/czech -share/postgresql/pgaccess/lib/languages/chinese_big5 -share/postgresql/pgaccess/lib/languages/chinese_gb -share/postgresql/pgaccess/lib/languages/deutsch -share/postgresql/pgaccess/lib/languages/euskara -share/postgresql/pgaccess/lib/languages/francais -share/postgresql/pgaccess/lib/languages/italiano -share/postgresql/pgaccess/lib/languages/japanese -share/postgresql/pgaccess/lib/languages/magyar -share/postgresql/pgaccess/lib/languages/nederlands -share/postgresql/pgaccess/lib/languages/portugues -share/postgresql/pgaccess/lib/languages/romana -share/postgresql/pgaccess/lib/languages/russian.koi8r -share/postgresql/pgaccess/lib/languages/russian_win -share/postgresql/pgaccess/lib/languages/spanish -share/postgresql/pgaccess/lib/mainlib.tcl -share/postgresql/pgaccess/lib/preferences.tcl -share/postgresql/pgaccess/lib/queries.tcl -share/postgresql/pgaccess/lib/reports.tcl -share/postgresql/pgaccess/lib/schema.tcl -share/postgresql/pgaccess/lib/scripts.tcl -share/postgresql/pgaccess/lib/sequences.tcl -share/postgresql/pgaccess/lib/tables.tcl -share/postgresql/pgaccess/lib/users.tcl -share/postgresql/pgaccess/lib/views.tcl -share/postgresql/pgaccess/lib/visualqb.tcl -share/postgresql/pgaccess/main.tcl -@dirrm share/postgresql/pgaccess/images -@dirrm share/postgresql/pgaccess/lib/help -@dirrm share/postgresql/pgaccess/lib/languages -@dirrm share/postgresql/pgaccess/lib -@dirrm share/postgresql/pgaccess -@dirrm lib/tcl%%WITH_TCL%%/Pgtcl1.3 diff --git a/databases/postgresql80-server/scripts/configure.postgresql b/databases/postgresql80-server/scripts/configure.postgresql deleted file mode 100644 index 0b288ad43d25..000000000000 --- a/databases/postgresql80-server/scripts/configure.postgresql +++ /dev/null @@ -1,278 +0,0 @@ -#!/bin/sh -# -*- tab-width: 4; -*- -# ex:ts=4 -# -# $FreeBSD$ -# -if [ -f ${WRKDIRPREFIX}${CURDIR}/Makefile.inc ]; then - exit -fi - -if [ ! "${BATCH}" ]; then - dialog --title "Backup your data NOW" \ - --msgbox "`sed -e \"s#%%PREFIX%%#${PREFIX}#\" < ${FILESDIR}/pre-install-notes`" \ - -1 -1 -fi - -if [ "${BATCH}" ]; then - set \"MultiByte\" \"ODBC\" \"SSL\" \"TCL\" \"TCLTK\" -else - /usr/bin/dialog --title "configuration options" --clear \ - --checklist "\n\ -Please select desired options:" -1 -1 7 \ -JDBC "Java DataBase Connectivity" OFF \ -MultiByte "Multibyte for Multilingualism" ON \ -ODBC "Open Database Connectivity" ON \ -TCL "Tcl" ON \ -TCLTK "Tcl/Tk" ON \ -SSL "Secure Socket Layer" ON \ -KRB5 "Kerberos 5" OFF \ -2> /tmp/checklist.tmp.$$ - - retval=$? - - if [ -s /tmp/checklist.tmp.$$ ]; then - set `cat /tmp/checklist.tmp.$$` - fi - rm -f /tmp/checklist.tmp.$$ - - case $retval in - 0) if [ -z "$*" ]; then - echo "Nothing selected" - fi - ;; - 1) echo "Cancel pressed." - exit 1 - ;; - esac -fi - -${MKDIR} ${WRKDIRPREFIX}${CURDIR} -exec > ${WRKDIRPREFIX}${CURDIR}/Makefile.inc - -while [ "$1" ]; do - case $1 in - \"JDBC\") - # We use JAVA_HOME if set correctly. If the user has - # specified a JVM with JAVA_HOME or via the javavmwrapper, - # we validate that it really exists. It is unnecessarily - # complicated and error prone to try to figure out the - # correct java version just to be able to determine a - # BUILD_DEPEND in this case. Instead, assume that a set - # JAVA_HOME together with simple sanity check mean we have - # an installed JVM, and we don't bother setting - # BUILD_DEPENDS. - - echo "# JDBC" - # if JAVA_HOME is set and exists, use it - if [ "${JAVA_HOME}" -a -x "${JAVA_HOME}/bin/javac" ]; then - echo JAVA_HOME=${JAVA_HOME} - else - # No JAVA_HOME, check javavmwrapper's config file - if [ -r "${LOCALBASE}/etc/javavms" ]; then - VMS=`/usr/bin/sed 's|#.*||' < "${LOCALBASE}/etc/javavms" | uniq` - for JAVAVM in ${VMS}; do - if [ -x "${JAVAVM}" ]; then - JAVA_HOME=`echo ${JAVAVM} | /usr/bin/sed 's|/bin/java$||` - break - fi - done - fi - if [ "${JAVA_HOME}" -a -x "${JAVA_HOME}/bin/javac" ]; then - # yep, wrapper was good - echo JAVA_HOME=${JAVA_HOME} - else - # nothing, use our boring 1.1.8, the only native non-beta jdk :( - echo BUILD_DEPENDS+= \${LOCALBASE}/jdk1.1.8/bin/javac:\${PORTSDIR}/java/jdk - echo JAVA_HOME=\${LOCALBASE}/jdk1.1.8 - fi - fi - cat <<-EOF - BUILD_DEPENDS+= \${LOCALBASE}/bin/ant:\${PORTSDIR}/devel/jakarta-ant - CONFIGURE_ENV+= ANT=\${LOCALBASE}/bin/ant - WITH_JDBC=YES - MAKE_ENV+= JAVA_HOME=\${JAVA_HOME} - SCRIPTS_ENV+= JAVA_HOME=\${JAVA_HOME} - CONFIGURE_ARGS+= --with-java - - EOF - ;; - \"MultiByte\") - MULTIBYTE=1 - ;; - \"ODBC\") - cat <<-EOF - # ODBC - WITH_ODBC=YES - CONFIGURE_ARGS+= --with-odbc - - EOF - ;; - \"TCL\") - TCL=1 - ;; - \"TCLTK\") - echo "#TCLTK" - echo WITH_TK=YES - echo - TCL=1 - ;; - \"SSL\") - cat <<-EOF - # SSL - USE_OPENSSL= yes - CFLAGS+= -DUSE_SSL - WITH_SSL= yes - CONFIGURE_ENV+= LDFLAGS="-L\${OPENSSLLIB} -lssl -lcrypto" - CONFIGURE_ARGS+= --with-openssl - - EOF - ;; - \"KRB5\") - KRB5=1 - ;; - \"nothing\"|true) - ;; - *) - echo "Invalid option(s): $*" > /dev/stderr - rm -f ${WRKDIRPREFIX}${CURDIR}/Makefile.inc - exit 1 - ;; - esac - shift -done - -exec > /dev/stderr - -# if multibyte, determine charset -echo "# Multibyte" >> ${WRKDIRPREFIX}${CURDIR}/Makefile.inc - -if [ ! "${MULTIBYTE}" ]; then - echo "WITHOUT_MULTIBYTE=YES" >> ${WRKDIRPREFIX}${CURDIR}/Makefile.inc -else - if [ "${BATCH}" ]; then - set "nothing" - else - /usr/bin/dialog --title "configuration options" --clear \ - --radiolist "\n\ -Please select desired options:" -1 -1 16 \ -nothing "Default Encoding" ON \ -SQL_ASCII "SQL_ASCII" OFF \ -LATIN1 "LATIN1" OFF \ -LATIN2 "LATIN2" OFF \ -LATIN3 "LATIN3" OFF \ -LATIN4 "LATIN4" OFF \ -LATIN5 "LATIN5" OFF \ -EUC_JP "EUC_JP" OFF \ -EUC_CN "EUC_CN" OFF \ -EUC_KR "EUC_KR" OFF \ -EUC_TW "EUC_TW" OFF \ -KOI8 "KOI8" OFF \ -UNICODE "UNICODE" OFF \ -MULE_INTERNAL "MULE_INTERNAL" OFF \ -WIN "WIN" OFF \ -ALT "ALT" OFF \ -2> /tmp/checklist.tmp.$$ - - retval=$? - - if [ -s /tmp/checklist.tmp.$$ ]; then - set `cat /tmp/checklist.tmp.$$` - fi - rm -f /tmp/checklist.tmp.$$ - if [ $retval = 1 ]; then - echo "Cancel pressed." - rm ${WRKDIRPREFIX}${CURDIR}/Makefile.inc - exit 1 - fi - fi - - if [ "$1" = "nothing" ]; then - echo "CONFIGURE_ARGS+= --enable-multibyte" \ - >> ${WRKDIRPREFIX}${CURDIR}/Makefile.inc - else - echo "CONFIGURE_ARGS+= --enable-multibyte=$1" \ - >> ${WRKDIRPREFIX}${CURDIR}/Makefile.inc - fi -fi -echo - -if [ "${TCL}" ]; then - echo "# TCL" >> ${WRKDIRPREFIX}${CURDIR}/Makefile.inc - if [ "${BATCH}" ]; then - echo WITH_TCL=8.3 >> ${WRKDIRPREFIX}${CURDIR}/Makefile.inc - else - dialog --title "TCL version" \ - --inputbox "Please enter TCL version. Default is 8.3." -1 -1 "8.3" \ - 2> /tmp/checklist.tmp.$$ - retval=$? - if [ -s /tmp/checklist.tmp.$$ ]; then - set `cat /tmp/checklist.tmp.$$` - fi - rm -f /tmp/checklist.tmp.$$ - case $retval in - 0) if [ -z "$*" ]; then - echo "Nothing selected" - fi - ;; - 1) echo "Cancel pressed." - rm -f ${WRKDIRPREFIX}${CURDIR}/Makefile.inc - exit 1 - ;; - esac - echo WITH_TCL=$1 >> ${WRKDIRPREFIX}${CURDIR}/Makefile.inc - fi - cat <<-EOF >> ${WRKDIRPREFIX}${CURDIR}/Makefile.inc - CONFIGURE_ARGS+= --with-tcl --with-tclconfig="\${TCLCONFIG}" - TCLV=\${WITH_TCL:S/.//} - TCL_INCDIR= \${LOCALBASE}/include/tcl\${WITH_TCL} - MAKE_ENV+= TCL_INCDIR=\${TCL_INCDIR} - LIB_DEPENDS+= tcl\${TCLV}:\${PORTSDIR}/lang/tcl\${TCLV} - TCLCONFIG= "\${LOCALBASE}/lib/tcl\${WITH_TCL}" - .if defined(WITH_TK) - CONFIGURE_ARGS+= --with-tkconfig="\${TKCONFIG}" - TK_INCDIR= \${LOCALBASE}/include/tk\${WITH_TCL} - CONFIGURE_ENV+= WISH=\${LOCALBASE}/bin/wish\${WITH_TCL} - LIB_DEPENDS+= tk\${TCLV}:\${PORTSDIR}/x11-toolkits/tk\${TCLV} - TKCONFIG= "\${LOCALBASE}/lib/tk\${WITH_TCL}" - TCLCONFIG+= \${TKCONFIG} - TCL_PLIST= pkg-plist.tcl - .else - TCL_PLIST= pkg-plist.notk - CONFIGURE_ARGS+= --without-tk - .endif - - EOF -fi - -if [ "${KRB5}" ]; then - if [ "${BATCH}" ]; then - # never gets here, but what the heck... - echo KRB5_HOME=\${LOCALBASE} >> ${WRKDIRPREFIX}${CURDIR}/Makefile.inc - else - dialog --inputbox "Please enter the KRB5_HOME path" -1 -1 "${KRB_HOME:-${LOCALBASE}}" \ - 2> /tmp/checklist.tmp.$$ - retval=$? - if [ -s /tmp/checklist.tmp.$$ ]; then - set `cat /tmp/checklist.tmp.$$` - fi - rm -f /tmp/checklist.tmp.$$ - case $retval in - 0) if [ -z "$*" ]; then - echo "No input" - fi - ;; - 1) echo "Cancel pressed." - rm -f ${WRKDIRPREFIX}${CURDIR}/Makefile.inc - exit 1 - ;; - esac - echo KRB5_HOME=\"$1\" >> ${WRKDIRPREFIX}${CURDIR}/Makefile.inc - fi - cat <<-EOF >> ${WRKDIRPREFIX}${CURDIR}/Makefile.inc - .if defined(KRB5_HOME) && exists(\${KRB5_HOME}) - CONFIGURE_KRB= --with-krb5=\${KRB5_HOME} - .endif - - EOF -fi diff --git a/databases/postgresql81-server/Makefile b/databases/postgresql81-server/Makefile deleted file mode 100644 index 4a30008d77bc..000000000000 --- a/databases/postgresql81-server/Makefile +++ /dev/null @@ -1,198 +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.1.3 -CATEGORIES= databases -MASTER_SITES= ftp://ftp.sunet.se/pub/unix/databases/relational/postgresql/%SUBDIR%/ \ - ftp://ftp.postgresql.org/pub/%SUBDIR%/ \ - ftp://ftp.de.postgresql.org/%SUBDIR%/ \ - ftp://ftp.digex.net/pub/packages/database/postgresql/%SUBDIR%/ \ - ftp://ftp.chg.ru/pub/databases/postgresql/%SUBDIR%/ \ - ${MASTER_SITE_RINGSERVER:S,%SUBDIR%,misc/db/postgresql/&,} -MASTER_SITE_SUBDIR= source/v${PORTVERSION} -DISTFILES= ${PORTNAME}-base-${PORTVERSION}${EXTRACT_SUFX} \ - ${PORTNAME}-opt-${PORTVERSION}${EXTRACT_SUFX} -.if !defined(NOPORTDOCS) -DISTFILES+= ${PORTNAME}-docs-${PORTVERSION}${EXTRACT_SUFX} -.endif - -MAINTAINER= girgen@partitur.se - -DIST_SUBDIR= postgresql - -INSTALLS_SHLIB= YES - -DOCDIR= ${WRKDIR}/${DISTNAME}/doc -PLIST= ${WRKDIR}/.PLIST.generated - -USE_GMAKE= YES -HAS_CONFIGURE= YES -CONFIGURE_ARGS= --enable-locale \ - --enable-syslog --with-CXX \ - --sysconfdir=${PREFIX}/etc/postgresql \ - --with-includes="${PREFIX}/include ${TCL_INCDIR} ${TK_INCDIR}" \ - --with-libraries=${PREFIX}/lib -.if defined(WITH_OLD_LAYOUT) -CONFIGURE_ARGS+=--docdir=${PREFIX}/share/doc --includedir=${PREFIX}/pgsql/include \ - --datadir=${PREFIX}/share \ - --with-template=`uname -s | ${TR} '[A-Z]' '[a-z]'` \ - --prefix=${PREFIX}/pgsql -PG_PREFIX= pgsql/ -PG_INCLUDE= pgsql/include -LDCONFIG_DIRS= %%PREFIX%%/pgsql/lib -MANPREFIX= ${PREFIX}/pgsql -.else -GNU_CONFIGURE= YES -CONFIGURE_ARGS+=--docdir=${PREFIX}/share/doc --includedir=${PREFIX}/include/pgsql -PG_PREFIX="" -PG_INCLUDE= include/pgsql -.endif - -PLIST_SUB= PG_PREFIX="${PG_PREFIX}" PG_INCLUDE="${PG_INCLUDE}" WITH_TCL="${WITH_TCL}" - -MAN1= createdb.1 createlang.1 createuser.1 dropdb.1 droplang.1 \ - dropuser.1 ecpg.1 initdb.1 initlocation.1 ipcclean.1 pg_config.1 \ - pg_ctl.1 pg_dump.1 pg_dumpall.1 pg_passwd.1 pg_restore.1 \ - pgaccess.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 checkpoint.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 set_constraints.l set_transaction.l show.l \ - truncate.l unlisten.l update.l vacuum.l - -SCRIPTS_ENV= WRKDIRPREFIX="${WRKDIRPREFIX}" \ - WRKDIR="${WRKDIR}" \ - FILESDIR="${FILESDIR}" \ - TOUCH="${TOUCH}" \ - MKDIR="${MKDIR}" \ - NO_OPENSSL="${NO_OPENSSL}" \ - DISTNAME="${DISTNAME}" - -# We must .include here because we need the Makefile.inc @ pre-install -# to determine the correct plist. -.if exists(${WRKDIRPREFIX}${.CURDIR}/Makefile.inc) -.include "${WRKDIRPREFIX}${.CURDIR}/Makefile.inc" -.else -# make utility targets like depends and describe happy -LIB_DEPENDS= tcl83:${PORTSDIR}/lang/tcl83 \ - tk83:${PORTSDIR}/x11-toolkits/tk83 -.endif - -pre-everything:: - @ ${SETENV} ${SCRIPTS_ENV} ${SH} ${SCRIPTDIR}/configure.postgresql - -pre-install: - @ ${SETENV} PKG_PREFIX=${PREFIX} ${SH} ${PKGDIR}/pkg-install ${PORTNAME} PRE-INSTALL -.if !defined(BATCH) -# remind folks twice for a while, so they really don't miss the layout shift - @ ${SED} "s|/usr/local|${PREFIX}|g" < ${PKGMESSAGE} | head -n 25 | more -e -.endif - @ ${CP} ${PKGDIR}/pkg-plist ${PLIST} -.if defined(WITHOUT_MULTIBYTE) - @${CP} ${PLIST} ${PLIST}.nomulti ;\ - ${GREP} -v bin/pg_encoding ${PLIST}.nomulti > ${PLIST} -.endif -.if defined(WITH_TCL) - @ ${CP} ${PLIST} ${PLIST}.notcl ;\ - ${CAT} ${PKGDIR}/${TCL_PLIST} ${PLIST}.notcl > ${PLIST} ;\ - ${RM} ${PLIST}.notcl -.endif -.if defined(WITH_ODBC) - @ ${CP} ${PLIST} ${PLIST}.noodbc ;\ - ${CAT} ${PKGDIR}/pkg-plist.odbc ${PLIST}.noodbc > ${PLIST} ;\ - ${RM} ${PLIST}.noodbc -.endif -.if defined(WITH_JDBC) - @ ${CP} ${PLIST} ${PLIST}.nojdbc ;\ - ${CAT} ${PKGDIR}/pkg-plist.jdbc ${PLIST}.nojdbc > ${PLIST} ;\ - ${RM} ${PLIST}.nojdbc -.endif -.if !defined(NOPORTDOCS) - @ ${CAT} ${PKGDIR}/pkg-plist.doc >> ${PLIST} -.endif - -post-install: -# install shell defaults for pgsql user -.for i in profile cshrc - @ ${SED} "s|%%PREFIX%%|${PREFIX}|g; s|%%PG_PREFIX%%|${PG_PREFIX}|g" \ - < ${FILESDIR}/dot.$i.in \ - > ${PREFIX}/share/postgresql/dot.$i.dist; \ - ${CP} ${PREFIX}/share/postgresql/dot.$i.dist ~pgsql/; \ - if [ ! -f ~pgsql/.$i ]; then \ - ${CP} ${PREFIX}/share/postgresql/dot.$i.dist ~pgsql/.$i; \ - fi -.endfor - @ ${SED} -e "s|%%PREFIX%%|${PREFIX}|g; s|%%PG_PREFIX%%|${PG_PREFIX}|g" \ - < ${FILESDIR}/pgsql.sh.tmpl \ - > ${PREFIX}/etc/rc.d/010.pgsql.sh - @ ${CHMOD} 554 ${PREFIX}/etc/rc.d/010.pgsql.sh - @ ${CHOWN} root:pgsql ${PREFIX}/etc/rc.d/010.pgsql.sh -.if defined(WITH_TCL) -# Preparing a loadable TCL-package (pkgIndex.tcl) - @${MKDIR} ${PREFIX}/lib/tcl${WITH_TCL}/Pgtcl1.3 - @${SED} "s|%%PREFIX%%|${PREFIX}|g" < ${FILESDIR}/pkgIndex.tcl.in \ - > ${PREFIX}/lib/tcl${WITH_TCL}/Pgtcl1.3/pkgIndex.tcl -.endif -.if defined(WITH_JDBC) - @ ${MKDIR} -m 0555 ${PREFIX}/share/java/classes - @ ${INSTALL_DATA} ${WRKSRC}/src/interfaces/jdbc/jars/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} "---------------------------------------------------------" -.if !defined(NOPORTDOCS) - @ ${MKDIR} -m 0555 ${PREFIX}/share/examples/postgresql ;\ - cd ${WRKSRC}/src/interfaces/jdbc/example ;\ - pax -rw . ${PREFIX}/share/examples/postgresql -.for i in README Implementation - @ ${INSTALL_DATA} ${WRKSRC}/src/interfaces/jdbc/$i \ - ${PREFIX}/share/examples/postgresql -.endfor - @ ${ECHO_MSG} "---------------------------------------------------------------" - @ ${ECHO_MSG} "Putting java examples into ${PREFIX}/share/examples/postgresql" - @ ${ECHO_MSG} "---------------------------------------------------------------" -.endif -.endif -.if !defined(DEBUG_FLAGS) -.for file in ecpg pg_dump pg_id pg_passwd pg_restore postgres psql - @ strip ${PREFIX}/${PG_PREFIX}bin/${file} -.endfor -.endif -# information overload mode activated, sorry about this... ;-) - @ ${CAT} ${FILESDIR}/post-install-notes ${PKGMESSAGE} |\ - ${SED} "s|/usr/local|${PREFIX}|g" |\ - tee ${PREFIX}/share/postgresql/post-install-notes ;\ - ${INSTALL_DATA} ${PREFIX}/share/postgresql/post-install-notes ~pgsql/. ;\ - ${CHOWN} -R pgsql:pgsql ~pgsql/. -.if defined(WITH_OLD_LAYOUT) - @ ${CHOWN} root:pgsql ${PREFIX}/${PG_PREFIX}lib -.endif - -post-clean: - @ ${RM} -f ${WRKDIRPREFIX}${.CURDIR}/Makefile.inc - -post-extract: ${POSTEXTRACT} - -.include <bsd.port.mk> diff --git a/databases/postgresql81-server/distinfo b/databases/postgresql81-server/distinfo deleted file mode 100644 index 23e07754313f..000000000000 --- a/databases/postgresql81-server/distinfo +++ /dev/null @@ -1,3 +0,0 @@ -MD5 (postgresql/postgresql-base-7.1.3.tar.gz) = f932dea12806972402aaaf17a2a97034 -MD5 (postgresql/postgresql-opt-7.1.3.tar.gz) = e84e9c51b31567d4571c7612e0c0fbd6 -MD5 (postgresql/postgresql-docs-7.1.3.tar.gz) = 7061ab7f7ec3c4d18f8e6cb2858896d0 diff --git a/databases/postgresql81-server/files/dot.cshrc.in b/databases/postgresql81-server/files/dot.cshrc.in deleted file mode 100644 index a326041bff7b..000000000000 --- a/databases/postgresql81-server/files/dot.cshrc.in +++ /dev/null @@ -1,13 +0,0 @@ -set path = ( %%PREFIX%%/%%PG_PREFIX%%bin $path ) - -setenv PGLIB %%PREFIX%%/%%PG_PREFIX%%lib - -# note: PGDATA can be overridden by the -D startup option -setenv PGDATA $HOME/data - -#You might want to set some locale stuff here -#setenv PGDATESTYLE ISO -#setenv LC_ALL sv_SE.ISO_8859-1 - -# if you want to make regression tests use this TZ -#setenv TZ PST8PDT diff --git a/databases/postgresql81-server/files/dot.profile.in b/databases/postgresql81-server/files/dot.profile.in deleted file mode 100644 index 4aca6aadd19a..000000000000 --- a/databases/postgresql81-server/files/dot.profile.in +++ /dev/null @@ -1,18 +0,0 @@ -# both new and old layout's paths, but new path first... -PATH=%%PREFIX%%/%%PG_PREFIX%%bin:${PATH} - -PGLIB=%%PREFIX%%/%%PG_PREFIX%%lib - -# note: PGDATA can be overridden by the -D startup option -PGDATA=${HOME}/data - -export PATH PGLIB PGDATA - -#You might want to set some locale stuff here -#PGDATESTYLE=ISO -#LC_ALL=sv_SE.ISO_8859-1 -#export PGDATESTYLE LC_ALL - -# if you want to make regression tests use this TZ -#TZ=PST8PDT -#export TZ diff --git a/databases/postgresql81-server/files/patch-aj b/databases/postgresql81-server/files/patch-aj deleted file mode 100644 index 94c0d6d79991..000000000000 --- a/databases/postgresql81-server/files/patch-aj +++ /dev/null @@ -1,118 +0,0 @@ ---- src/bin/pg_passwd/pg_passwd.c.orig Sat Mar 24 01:54:55 2001 -+++ src/bin/pg_passwd/pg_passwd.c Wed Apr 18 04:54:14 2001 -@@ -7,6 +7,12 @@ - #include <errno.h> - #include <time.h> - #include <ctype.h> -+ -+#if defined(__FreeBSD__) -+#include <pwd.h> /* defines _PASSWORD_LEN, max # of characters in a password */ -+#include <sys/time.h> /* gettimeofday for password salt */ -+#endif -+ - #define issaltchar(c) (isalnum((unsigned char) (c)) || (c) == '.' || (c) == '/') - - #ifdef HAVE_TERMIOS_H -@@ -23,18 +29,31 @@ - * We assume that the output of crypt(3) is always 13 characters, - * and that at most 8 characters can usefully be sent to it. - * -+ * For FreeBSD, take these values from /usr/include/pwd.h - * Postgres usernames are assumed to be less than NAMEDATALEN chars long. - */ -+#if defined(__FreeBSD__) -+#define CLEAR_PASSWD_LEN _PASSWORD_LEN -+#define CRYPTED_PASSWD_LEN _PASSWORD_LEN /* max length, not containing NULL */ -+#define SALT_LEN 10 -+#else - #define CLEAR_PASSWD_LEN 8 /* not including null */ - #define CRYPTED_PASSWD_LEN 13 /* not including null */ -+#define SALT_LEN 3 -+#endif -+ -+static unsigned char itoa64[] = /* 0 ... 63 => ascii - 64 */ -+ "./0123456789ABCDEFGHIJKLMNOPQRSTUVWXYZabcdefghijklmnopqrstuvwxyz"; -+ - - const char *progname; - - static void usage(void); -+static void to64(char *s, long v, int n); - static void read_pwd_file(char *filename); - static void write_pwd_file(char *filename, char *bkname); - static void encrypt_pwd(char key[CLEAR_PASSWD_LEN + 1], -- char salt[3], -+ char salt[SALT_LEN], - char passwd[CRYPTED_PASSWD_LEN + 1]); - static void prompt_for_username(char *username); - static void prompt_for_password(char *prompt, char *password); -@@ -47,6 +66,15 @@ - printf("Report bugs to <pgsql-bugs@postgresql.org>.\n"); - } - -+static void -+to64(char *s, long v, int n) -+{ -+ while (--n >= 0) { -+ *s++ = itoa64[v&0x3f]; -+ v >>= 6; -+ } -+} -+ - typedef struct - { - char *uname; -@@ -154,7 +182,7 @@ - if (q != NULL) - *(q++) = '\0'; - -- if (strlen(p) != CRYPTED_PASSWD_LEN && strcmp(p, "+") != 0) -+ if (strlen(p) > CRYPTED_PASSWD_LEN && strcmp(p, "+") != 0) - { - fprintf(stderr, "%s:%d: warning: invalid password length\n", - filename, npwds + 1); -@@ -221,15 +249,25 @@ - - static void - encrypt_pwd(char key[CLEAR_PASSWD_LEN + 1], -- char salt[3], -+ char salt[SALT_LEN], - char passwd[CRYPTED_PASSWD_LEN + 1]) - { -+#if !defined(__FreeBSD__) - int n; -- -+#endif - /* select a salt, if not already given */ - if (salt[0] == '\0') - { -+#if defined(__FreeBSD__) -+ struct timeval tv; -+ srandomdev(); -+ gettimeofday(&tv,0); -+ to64(&salt[0], random(), 3); -+ to64(&salt[3], tv.tv_usec, 3); -+ to64(&salt[6], tv.tv_sec, 2); -+ salt[8] = '\0'; - srand(time(NULL)); -+#else - do - { - n = rand() % 256; -@@ -241,6 +279,7 @@ - } while (!issaltchar(n)); - salt[1] = n; - salt[2] = '\0'; -+#endif - } - - /* get encrypted password */ -@@ -335,7 +374,7 @@ - char *filename; - char bkname[MAXPGPATH]; - char username[NAMEDATALEN]; -- char salt[3]; -+ char salt[SALT_LEN]; - char key[CLEAR_PASSWD_LEN + 1], - key2[CLEAR_PASSWD_LEN + 1]; - char e_passwd[CRYPTED_PASSWD_LEN + 1]; diff --git a/databases/postgresql81-server/files/patch-contrib-retep-build b/databases/postgresql81-server/files/patch-contrib-retep-build deleted file mode 100644 index 80f40f1cc86d..000000000000 --- a/databases/postgresql81-server/files/patch-contrib-retep-build +++ /dev/null @@ -1,37 +0,0 @@ -=================================================================== -RCS file: /home/projects/pgsql/cvsroot/pgsql/contrib/retep/build.xml,v -retrieving revision 1.4 -retrieving revision 1.5 -diff -u -r1.4 -r1.5 ---- contrib/retep/build.xml 2001/03/11 11:06:59 1.4 -+++ contrib/retep/build.xml 2001/05/16 16:20:51 1.5 -@@ -2,7 +2,7 @@ - - build file to build the donated retep tools packages - -- $Id: build.xml,v 1.4 2001/03/11 11:06:59 petere Exp $ -+ $Id: build.xml,v 1.5 2001/05/16 16:20:51 momjian Exp $ - - --> - -@@ -22,6 +22,11 @@ - <available property="xml" classname="org.xml.sax.Parser" /> - </target> - -+ <target name="warning" depends="checks" unless="jdk1.2+"> -+ <echo message="WARNING -- contributed retep tools need jdk1.2 or later -- compilation NOT done." /> -+ </target> -+ -+ - <!-- Prepares the build by creating a directory to place the class files --> - <target name="prepare"> - <mkdir dir="${dest}" /> -@@ -35,7 +40,7 @@ - </target> - - <!-- Builds the XML Tools --> -- <target name="compile" depends="checks,prepare"> -+ <target name="compile" depends="checks,prepare,warning" if="jdk1.2+"> - <javac srcdir="${src}" destdir="${dest}"> - <include name="${package}/**" /> - </javac> diff --git a/databases/postgresql81-server/files/patch-doc-makefile b/databases/postgresql81-server/files/patch-doc-makefile deleted file mode 100644 index fa27bed2af3f..000000000000 --- a/databases/postgresql81-server/files/patch-doc-makefile +++ /dev/null @@ -1,19 +0,0 @@ ---- doc/Makefile~ Sun Jan 7 03:03:22 2001 -+++ doc/Makefile Wed Apr 18 08:12:30 2001 -@@ -43,10 +43,13 @@ - gzip -d -c man.tar.gz | ( cd $(DESTDIR)$(mandir) && $(TAR) xf - ) - endif - -- - installdirs: -- $(mkinstalldirs) $(DESTDIR)$(mandir) $(DESTDIR)$(docdir)/html -- -+ifdef found_html -+ $(mkinstalldirs) $(DESTDIR)$(docdir)/html -+endif -+ifdef found_man -+ $(mkinstalldirs) $(DESTDIR)$(mandir) -+endif - - uninstall: - ifdef found_html diff --git a/databases/postgresql81-server/files/patch-jdbc-Connection b/databases/postgresql81-server/files/patch-jdbc-Connection deleted file mode 100644 index 26fbc260d639..000000000000 --- a/databases/postgresql81-server/files/patch-jdbc-Connection +++ /dev/null @@ -1,51 +0,0 @@ -=================================================================== -RCS file: /home/projects/pgsql/cvsroot/pgsql/src/interfaces/jdbc/org/postgresql/Connection.java,v -retrieving revision 1.14 -retrieving revision 1.16 -diff -u -r1.14 -r1.16 ---- src/interfaces/jdbc/org/postgresql/Connection.java 2001/01/31 08:26:01 1.14 -+++ src/interfaces/jdbc/org/postgresql/Connection.java 2001/06/01 20:57:58 1.16 -@@ -10,7 +10,7 @@ - import org.postgresql.util.*; - - /** -- * $Id: Connection.java,v 1.14 2001/01/31 08:26:01 peter Exp $ -+ * $Id: Connection.java,v 1.16 2001/06/01 20:57:58 momjian Exp $ - * - * This abstract class is used by org.postgresql.Driver to open either the JDBC1 or - * JDBC2 versions of the Connection class. -@@ -267,7 +267,8 @@ - // - firstWarning = null; - -- java.sql.ResultSet initrset = ExecSQL("set datestyle to 'ISO'; select getdatabaseencoding()"); -+ java.sql.ResultSet initrset = ExecSQL("set datestyle to 'ISO'; " + -+ "select case when pg_encoding_to_char(1) = 'SQL_ASCII' then 'UNKNOWN' else getdatabaseencoding() end"); - - String dbEncoding = null; - //retrieve DB properties -@@ -307,9 +308,23 @@ - } else if (dbEncoding.equals("EUC_TW")) { - dbEncoding = "EUC_TW"; - } else if (dbEncoding.equals("KOI8")) { -- dbEncoding = "KOI8_R"; -+ // try first if KOI8_U is present, it's a superset of KOI8_R -+ try { -+ dbEncoding = "KOI8_U"; -+ "test".getBytes(dbEncoding); -+ } -+ catch(UnsupportedEncodingException uee) { -+ // well, KOI8_U is still not in standard JDK, falling back to KOI8_R :( -+ dbEncoding = "KOI8_R"; -+ } -+ - } else if (dbEncoding.equals("WIN")) { - dbEncoding = "Cp1252"; -+ } else if (dbEncoding.equals("UNKNOWN")) { -+ //This isn't a multibyte database so we don't have an encoding to use -+ //We leave dbEncoding null which will cause the default encoding for the -+ //JVM to be used -+ dbEncoding = null; - } else { - dbEncoding = null; - } diff --git a/databases/postgresql81-server/files/patch-jdbc-build-xml b/databases/postgresql81-server/files/patch-jdbc-build-xml deleted file mode 100644 index b1c703a9c978..000000000000 --- a/databases/postgresql81-server/files/patch-jdbc-build-xml +++ /dev/null @@ -1,10 +0,0 @@ ---- src/interfaces/jdbc/build.xml~ Fri Mar 16 22:50:43 2001 -+++ src/interfaces/jdbc/build.xml Wed Apr 18 08:57:57 2001 -@@ -120,6 +120,7 @@ - <javac srcdir="${src}" destdir="${dest}"> - <include name="example/**" /> - <exclude name="example/corba/**"/> -+ <exclude name="example/blobtest.java" unless="jdk1.2+"/> - </javac> - </target> - diff --git a/databases/postgresql81-server/files/patch-jdbc-getdate b/databases/postgresql81-server/files/patch-jdbc-getdate deleted file mode 100644 index 744407ae14b5..000000000000 --- a/databases/postgresql81-server/files/patch-jdbc-getdate +++ /dev/null @@ -1,34 +0,0 @@ ---- src/interfaces/jdbc/org/postgresql/jdbc2/ResultSet.java~ Fri Feb 23 19:12:23 2001 -+++ src/interfaces/jdbc/org/postgresql/jdbc2/ResultSet.java Wed May 9 04:31:11 2001 -@@ -423,8 +423,13 @@ - String s = getString(columnIndex); - if(s==null) - return null; -- -- return java.sql.Date.valueOf(s); -+ // length == 10: SQL Date -+ // length > 10: SQL Timestamp, assumes PGDATESTYLE=ISO -+ try { -+ return java.sql.Date.valueOf((s.length() == 10) ? s : s.substring(0,10)); -+ } catch (NumberFormatException e) { -+ throw new PSQLException("postgresql.res.baddate", s); -+ } - } - - /** -@@ -441,8 +446,13 @@ - - if(s==null) - return null; // SQL NULL -- -- return java.sql.Time.valueOf(s); -+ // length == 8: SQL Time -+ // length > 8: SQL Timestamp -+ try { -+ return java.sql.Time.valueOf((s.length() == 8) ? s : s.substring(11,19)); -+ } catch (NumberFormatException e) { -+ throw new PSQLException("postgresql.res.badtime",s); -+ } - } - - /** diff --git a/databases/postgresql81-server/files/pgsql.sh.tmpl b/databases/postgresql81-server/files/pgsql.sh.tmpl deleted file mode 100644 index cd78771219ed..000000000000 --- a/databases/postgresql81-server/files/pgsql.sh.tmpl +++ /dev/null @@ -1,36 +0,0 @@ -#!/bin/sh - -# $FreeBSD$ -# -# For postmaster startup options, edit $PGDATA/postgresql.conf - -PGBIN=%%PREFIX%%/%%PG_PREFIX%%bin - -case $1 in -start) - [ -d %%PREFIX%%/%%PG_PREFIX%%lib ] && /sbin/ldconfig -m %%PREFIX%%/%%PG_PREFIX%%lib - [ -x ${PGBIN}/pg_ctl ] && { - su -l pgsql -c \ - '[ -d ${PGDATA} ] && exec %%PREFIX%%/%%PG_PREFIX%%bin/pg_ctl start -s -w -l ~pgsql/errlog' - echo -n ' pgsql' - } - ;; - -stop) - [ -x ${PGBIN}/pg_ctl ] && { - su -l pgsql -c 'exec %%PREFIX%%/%%PG_PREFIX%%bin/pg_ctl stop -s -m fast' - echo -n ' pgsql' - } - ;; - -status) - [ -x ${PGBIN}/pg_ctl ] && { - exec su -l pgsql -c 'exec %%PREFIX%%/%%PG_PREFIX%%bin/pg_ctl status' - } - ;; - -*) - echo "usage: `basename $0` {start|stop|status}" >&2 - exit 64 - ;; -esac diff --git a/databases/postgresql81-server/files/pkgIndex.tcl.in b/databases/postgresql81-server/files/pkgIndex.tcl.in deleted file mode 100644 index bd8329b15c69..000000000000 --- a/databases/postgresql81-server/files/pkgIndex.tcl.in +++ /dev/null @@ -1,4 +0,0 @@ -# Package-index file for Pgtcl-package. Enables you to load PostgreSQL -# interface functions right into you TCL-interpreter as simply as -# package require Pgtcl -package ifneeded Pgtcl 1.3 "load %%PREFIX%%/lib/libpgtcl.so" diff --git a/databases/postgresql81-server/files/post-install-notes b/databases/postgresql81-server/files/post-install-notes deleted file mode 100644 index 9347fc51c247..000000000000 --- a/databases/postgresql81-server/files/post-install-notes +++ /dev/null @@ -1,25 +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/TK support, you can use the pgaccess -utility to get a TCL/TK based database frontend for database -operations. You do NOT need to install the pgaccess port separately. - -If you built in the TCL support, you can load the Pg package into your -TCL scripts as easily as ``package require Pgtcl''. - -If you built with Java support, add -/usr/local/share/java/classes/postgresql.jar to your classpath. - -If you have many tables and many clients running, consider raising -kern.maxfiles using sysctl(8). - -Use createlang(1) to install languages into your database. -Supported languages are 'plpgsql', 'pltcl', 'pltclu', and 'plperl'. diff --git a/databases/postgresql81-server/files/pre-install-notes b/databases/postgresql81-server/files/pre-install-notes deleted file mode 100644 index 697ce3cedb79..000000000000 --- a/databases/postgresql81-server/files/pre-install-notes +++ /dev/null @@ -1,21 +0,0 @@ - * IMPORTANT UPGRADE NOTICE * IMPORTANT UPGRADE NOTICE * - -The PostgreSQL port now obeys hier(7) by default, which means that it -installs into: - -%%PREFIX%%/bin -%%PREFIX%%/lib -%%PREFIX%%/include/pgsql - -You *must* move away your old installation to avoid problems with -ldconfig(8) and user's PATH:s. If you rather install using the -old-fashion layout, cancel at next screen and run make as: - -$ make -DWITH_OLD_LAYOUT - -As always, you *must* dump existing databases before stopping and -removing your old postgresql, as part of the update. This is *NOT* -done by this port! - -If you want JAVA support, I will try to determine your JAVA_HOME using -javavmwrapper. If you want a different JVM, please set JAVA_HOME. 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 463e4e49815f..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 cfc983fc2f66..000000000000 --- a/databases/postgresql81-server/pkg-install +++ /dev/null @@ -1,46 +0,0 @@ -#! /bin/sh - -# $FreeBSD$ - -PATH=/bin:/usr/sbin - -DB_DIR=${PKG_PREFIX}/pgsql - -case $2 in -PRE-INSTALL) - USER=pgsql - GROUP=${USER} - UID=70 - 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} -c "PostgreSQL Daemon" - then - echo "Added user \"${USER}\"." - else - echo "Adding user \"${USER}\" failed..." - exit 1 - fi - fi - - if ! [ -x ~pgsql ] ; then - mkdir -p ${DB_DIR} - chown pgsql:pgsql ${DB_DIR} - fi - ;; - -esac diff --git a/databases/postgresql81-server/pkg-message b/databases/postgresql81-server/pkg-message deleted file mode 100644 index 1a3f9f1e4147..000000000000 --- a/databases/postgresql81-server/pkg-message +++ /dev/null @@ -1,38 +0,0 @@ - -====================================================================== - - * IMPORTANT UPGRADE NOTICE * IMPORTANT UPGRADE NOTICE * - -The PostgreSQL port now obeys hier(7) by default, which means that it -installs into: - -/usr/local/bin -/usr/local/lib -/usr/local/include/pgsql - -You *must* move away your old installation from users' and -ldconfig(8)'s PATHs. If you rather install using the old-fashion -layout, cancel now and build the port with "make -DWITH_OLD_LAYOUT". - -The pgsql user's home dir is /usr/local/pgsql by default, but can be -changed with for example chpass(1). Datadir defaults to ~pgsql/data, -but can be changed by modifying the ~pgsql/.profile script. - -As always, backup your data before upgrading. If the upgrade leads to -a higher minor revision (i.e. 7.0.x -> 7.1.x), a dump and restore of -all databases is required. This is *NOT* done by the port! - -====================================================================== - -To initialize the database, you should run initdb as the "pgsql" user. - -Example: - - su -l pgsql -c initdb - -You can then start PostgreSQL by running: - - /usr/local/etc/rc.d/010.pgsql.sh start - -For postmaster settings, see ~pgsql/data/postgresql.conf -====================================================================== diff --git a/databases/postgresql81-server/pkg-plist b/databases/postgresql81-server/pkg-plist deleted file mode 100644 index a7493ddb7898..000000000000 --- a/databases/postgresql81-server/pkg-plist +++ /dev/null @@ -1,91 +0,0 @@ -%%PG_PREFIX%%bin/postmaster -%%PG_PREFIX%%bin/postgres -%%PG_PREFIX%%bin/ecpg -%%PG_PREFIX%%bin/initdb -%%PG_PREFIX%%bin/initlocation -%%PG_PREFIX%%bin/ipcclean -%%PG_PREFIX%%bin/pg_ctl -%%PG_PREFIX%%bin/pg_dump -%%PG_PREFIX%%bin/pg_restore -%%PG_PREFIX%%bin/pg_encoding -%%PG_PREFIX%%bin/pg_dumpall -%%PG_PREFIX%%bin/pg_id -%%PG_PREFIX%%bin/pg_passwd -%%PG_PREFIX%%bin/psql -%%PG_PREFIX%%bin/createdb -%%PG_PREFIX%%bin/dropdb -%%PG_PREFIX%%bin/createuser -%%PG_PREFIX%%bin/dropuser -%%PG_PREFIX%%bin/droplang -%%PG_PREFIX%%bin/vacuumdb -%%PG_PREFIX%%bin/createlang -%%PG_PREFIX%%bin/pg_config -etc/rc.d/010.pgsql.sh -%%PG_INCLUDE%%/lib/dllist.h -@dirrm %%PG_INCLUDE%%/lib -%%PG_INCLUDE%%/libpq/pqcomm.h -%%PG_INCLUDE%%/libpq/libpq-fs.h -@dirrm %%PG_INCLUDE%%/libpq -%%PG_INCLUDE%%/libpq++/pgconnection.h -%%PG_INCLUDE%%/libpq++/pgdatabase.h -%%PG_INCLUDE%%/libpq++/pgtransdb.h -%%PG_INCLUDE%%/libpq++/pgcursordb.h -%%PG_INCLUDE%%/libpq++/pglobject.h -@dirrm %%PG_INCLUDE%%/libpq++ -%%PG_INCLUDE%%/c.h -%%PG_INCLUDE%%/postgres_ext.h -%%PG_INCLUDE%%/postgres_fe.h -%%PG_INCLUDE%%/os.h -%%PG_INCLUDE%%/config.h -%%PG_INCLUDE%%/libpq-fe.h -%%PG_INCLUDE%%/libpq-int.h -%%PG_INCLUDE%%/pqexpbuffer.h -%%PG_INCLUDE%%/ecpgerrno.h -%%PG_INCLUDE%%/ecpglib.h -%%PG_INCLUDE%%/ecpgtype.h -%%PG_INCLUDE%%/sqlca.h -%%PG_INCLUDE%%/sql3types.h -%%PG_INCLUDE%%/libpgeasy.h -%%PG_INCLUDE%%/libpq++.h -@dirrm %%PG_INCLUDE%% -%%PG_PREFIX%%lib/libpq.so -%%PG_PREFIX%%lib/libpq.a -%%PG_PREFIX%%lib/libpq.so.2 -%%PG_PREFIX%%lib/libecpg.so -%%PG_PREFIX%%lib/libecpg.a -%%PG_PREFIX%%lib/libecpg.so.3 -%%PG_PREFIX%%lib/libpgeasy.so -%%PG_PREFIX%%lib/libpgeasy.a -%%PG_PREFIX%%lib/libpgeasy.so.2 -%%PG_PREFIX%%lib/libpq++.so -%%PG_PREFIX%%lib/libpq++.a -%%PG_PREFIX%%lib/libpq++.so.3 -%%PG_PREFIX%%lib/plpgsql.so -share/postgresql/global.bki -share/postgresql/global.description -share/postgresql/post-install-notes -share/postgresql/template1.bki -share/postgresql/template1.description -share/postgresql/pg_hba.conf.sample -share/postgresql/pg_ident.conf.sample -share/postgresql/postgresql.conf.sample -@unexec if cmp -s ~pgsql/.profile %D/share/postgresql/dot.profile.dist; then rm -f ~pgsql/.profile; fi -@unexec if cmp -s ~pgsql/.cshrc %D/share/postgresql/dot.cshrc.dist; then rm -f ~pgsql/.cshrc; fi -@unexec [ -f ~pgsql/dot.profile.dist ] && rm ~pgsql/dot.profile.dist -@unexec [ -f ~pgsql/dot.cshrc.dist ] && rm ~pgsql/dot.cshrc.dist -@exec [ -f %D/share/postgresql/post-install-notes ] && cp %D/share/postgresql/post-install-notes ~pgsql && chown pgsql:pgsql ~pgsql/post-install-notes -@unexec [ -f ~pgsql/post-install-notes ] && rm ~pgsql/post-install-notes -share/postgresql/dot.profile.dist -share/postgresql/dot.cshrc.dist -@dirrm share/postgresql -@exec [ -f %D/share/postgresql/dot.profile.dist ] && cp %D/share/postgresql/dot.profile.dist ~pgsql/. -@exec [ -f %D/share/postgresql/dot.cshrc.dist ] && cp %D/share/postgresql/dot.cshrc.dist ~pgsql/. -@exec [ -f ~pgsql/.profile ] || (cp %D/share/postgresql/dot.profile.dist ~pgsql/.profile && chown pgsql:pgsql ~pgsql/.profile) -@exec [ -f ~pgsql/.cshrc ] || (cp %D/share/postgresql/dot.cshrc.dist ~pgsql/.cshrc && chown pgsql:pgsql ~pgsql/.cshrc) -@unexec [ X%%PG_PREFIX%% != X ] && rmdir %D/%%PG_PREFIX%%bin 2> /dev/null || true -@unexec [ X%%PG_PREFIX%% != X ] && rmdir %D/%%PG_PREFIX%%lib 2> /dev/null || true -@unexec [ X%%PG_PREFIX%% != X ] && rmdir %D/%%PG_PREFIX%%man/man1 2> /dev/null || true -@unexec [ X%%PG_PREFIX%% != X ] && rmdir %D/%%PG_PREFIX%%man/manl 2> /dev/null || true -@unexec [ X%%PG_PREFIX%% != X ] && rmdir %D/%%PG_PREFIX%%man 2> /dev/null || true -@unexec rmdir ~pgsql 2> /dev/null || true -@unexec echo "Warning: If you will *NOT* use this package anymore, please remove %D/pgsql and the pgsql user manually." diff --git a/databases/postgresql81-server/pkg-plist.doc b/databases/postgresql81-server/pkg-plist.doc deleted file mode 100644 index c4d50ecb24f0..000000000000 --- a/databases/postgresql81-server/pkg-plist.doc +++ /dev/null @@ -1,494 +0,0 @@ -share/doc/postgresql/html/admin.html -share/doc/postgresql/html/advanced.html -share/doc/postgresql/html/altern-locations.html -share/doc/postgresql/html/app-createdb.html -share/doc/postgresql/html/app-createlang.html -share/doc/postgresql/html/app-createuser.html -share/doc/postgresql/html/app-dropdb.html -share/doc/postgresql/html/app-droplang.html -share/doc/postgresql/html/app-dropuser.html -share/doc/postgresql/html/app-ecpg.html -share/doc/postgresql/html/app-initdb.html -share/doc/postgresql/html/app-initlocation.html -share/doc/postgresql/html/app-ipcclean.html -share/doc/postgresql/html/app-pg-ctl.html -share/doc/postgresql/html/app-pg-dumpall.html -share/doc/postgresql/html/app-pg-passwd.html -share/doc/postgresql/html/app-pgaccess.html -share/doc/postgresql/html/app-pgadmin.html -share/doc/postgresql/html/app-pgconfig.html -share/doc/postgresql/html/app-pgdump.html -share/doc/postgresql/html/app-pgrestore.html -share/doc/postgresql/html/app-pgtclsh.html -share/doc/postgresql/html/app-pgtksh.html -share/doc/postgresql/html/app-postgres.html -share/doc/postgresql/html/app-postmaster.html -share/doc/postgresql/html/app-psql.html -share/doc/postgresql/html/app-vacuumdb.html -share/doc/postgresql/html/applevel-consistency.html -share/doc/postgresql/html/arch-pg.html -share/doc/postgresql/html/arch.html -share/doc/postgresql/html/arrays.html -share/doc/postgresql/html/auth-methods.html -share/doc/postgresql/html/backup-file.html -share/doc/postgresql/html/backup.html -share/doc/postgresql/html/biblio.html -share/doc/postgresql/html/bki-commands.html -share/doc/postgresql/html/bki-example.html -share/doc/postgresql/html/bki.html -share/doc/postgresql/html/bug-reporting.html -share/doc/postgresql/html/catalog-pg-aggregate.html -share/doc/postgresql/html/catalog-pg-attrdef.html -share/doc/postgresql/html/catalog-pg-attribute.html -share/doc/postgresql/html/catalog-pg-class.html -share/doc/postgresql/html/catalog-pg-database.html -share/doc/postgresql/html/catalog-pg-description.html -share/doc/postgresql/html/catalog-pg-group.html -share/doc/postgresql/html/catalog-pg-index.html -share/doc/postgresql/html/catalog-pg-inherits.html -share/doc/postgresql/html/catalog-pg-language.html -share/doc/postgresql/html/catalog-pg-operator.html -share/doc/postgresql/html/catalog-pg-proc.html -share/doc/postgresql/html/catalog-pg-relcheck.html -share/doc/postgresql/html/catalog-pg-shadow.html -share/doc/postgresql/html/catalog-pg-type.html -share/doc/postgresql/html/catalogs.html -share/doc/postgresql/html/charset.html -share/doc/postgresql/html/client-authentication-problems.html -share/doc/postgresql/html/client-authentication.html -share/doc/postgresql/html/compiler.html -share/doc/postgresql/html/connect-estab.html -share/doc/postgresql/html/creating-cluster.html -share/doc/postgresql/html/cvs-tree.html -share/doc/postgresql/html/cvs.html -share/doc/postgresql/html/cvsup.html -share/doc/postgresql/html/datatype-bit.html -share/doc/postgresql/html/datatype-boolean.html -share/doc/postgresql/html/datatype-character.html -share/doc/postgresql/html/datatype-datetime.html -share/doc/postgresql/html/datatype-geometric.html -share/doc/postgresql/html/datatype-money.html -share/doc/postgresql/html/ecpg.html -share/doc/postgresql/html/datatype-net-types.html -share/doc/postgresql/html/datatype.html -share/doc/postgresql/html/datetime-appendix.html -share/doc/postgresql/html/db-accessing.html -share/doc/postgresql/html/db-destroy.html -share/doc/postgresql/html/developer.html -share/doc/postgresql/html/doc-build.html -share/doc/postgresql/html/doc-sources.html -share/doc/postgresql/html/doc-toolsets.html -share/doc/postgresql/html/docguide.html -share/doc/postgresql/html/ecpg-concept.html -share/doc/postgresql/html/ecpg-develop.html -share/doc/postgresql/html/ecpg-limitations.html -share/doc/postgresql/html/ecpg-porting.html -share/doc/postgresql/html/ecpg-use.html -share/doc/postgresql/html/executor.html -share/doc/postgresql/html/explicit-joins.html -share/doc/postgresql/html/extend.html -share/doc/postgresql/html/functions-datetime.html -share/doc/postgresql/html/functions-aggregate.html -share/doc/postgresql/html/functions-comparison.html -share/doc/postgresql/html/functions-conditional.html -share/doc/postgresql/html/functions-formatting.html -share/doc/postgresql/html/functions-geometry.html -share/doc/postgresql/html/functions-matching.html -share/doc/postgresql/html/functions-math.html -share/doc/postgresql/html/functions-misc.html -share/doc/postgresql/html/functions-net.html -share/doc/postgresql/html/functions-string.html -share/doc/postgresql/html/functions.html -share/doc/postgresql/html/geqo-intro2.html -share/doc/postgresql/html/geqo-pg-intro.html -share/doc/postgresql/html/geqo.html -share/doc/postgresql/html/gist.html -share/doc/postgresql/html/groups.html -share/doc/postgresql/html/history.html -share/doc/postgresql/html/index.html -share/doc/postgresql/html/indexcost.html -share/doc/postgresql/html/indices-functional.html -share/doc/postgresql/html/indices-multicolumn.html -share/doc/postgresql/html/indices-opclass.html -share/doc/postgresql/html/indices-types.html -share/doc/postgresql/html/indices-unique.html -share/doc/postgresql/html/indices.html -share/doc/postgresql/html/inherit.html -share/doc/postgresql/html/install-getsource.html -share/doc/postgresql/html/install-post.html -share/doc/postgresql/html/install-procedure.html -share/doc/postgresql/html/install-requirements.html -share/doc/postgresql/html/install-upgrading.html -share/doc/postgresql/html/install-win32.html -share/doc/postgresql/html/installation.html -share/doc/postgresql/html/jdbc-ext.html -share/doc/postgresql/html/jdbc-lo.html -share/doc/postgresql/html/jdbc.html -share/doc/postgresql/html/jdbc-query.html -share/doc/postgresql/html/jdbc-reading.html -share/doc/postgresql/html/jdbc-thread.html -share/doc/postgresql/html/jdbc-update.html -share/doc/postgresql/html/jdbc-use.html -share/doc/postgresql/html/kernel-resources.html -share/doc/postgresql/html/keys.html -share/doc/postgresql/html/largeobjects.html -share/doc/postgresql/html/libpgtcl-examples.html -share/doc/postgresql/html/libpgtcl-ref.html -share/doc/postgresql/html/libpq-async.html -share/doc/postgresql/html/libpq-control.html -share/doc/postgresql/html/libpq-copy.html -share/doc/postgresql/html/libpq-envars.html -share/doc/postgresql/html/libpq-example.html -share/doc/postgresql/html/libpq-exec.html -share/doc/postgresql/html/libpq-fastpath.html -share/doc/postgresql/html/libpq-notify.html -share/doc/postgresql/html/libpq.html -share/doc/postgresql/html/libpq-threading.html -share/doc/postgresql/html/libpq-trace.html -share/doc/postgresql/html/libpqplusplus.html -share/doc/postgresql/html/libpqpp-classes.html -share/doc/postgresql/html/libpqpp-connect.html -share/doc/postgresql/html/libpqpp-copy.html -share/doc/postgresql/html/libpqpp-exec.html -share/doc/postgresql/html/libpqpp-notify.html -share/doc/postgresql/html/lisp.html -share/doc/postgresql/html/ln11330.html -share/doc/postgresql/html/ln1274.html -share/doc/postgresql/html/ln15181.html -share/doc/postgresql/html/ln24.html -share/doc/postgresql/html/ln25010.html -share/doc/postgresql/html/ln37176.html -share/doc/postgresql/html/ln8.html -share/doc/postgresql/html/lo-funcs.html -share/doc/postgresql/html/lo-implementation.html -share/doc/postgresql/html/lo-interfaces.html -share/doc/postgresql/html/lo-libpq.html -share/doc/postgresql/html/lo-sample.html -share/doc/postgresql/html/locking-indices.html -share/doc/postgresql/html/locking-tables.html -share/doc/postgresql/html/manage-ag-accessdb.html -share/doc/postgresql/html/manage-ag-dropdb.html -share/doc/postgresql/html/manage.html -share/doc/postgresql/html/managing-databases.html -share/doc/postgresql/html/migration.html -share/doc/postgresql/html/more-advanced.html -share/doc/postgresql/html/multibyte.html -share/doc/postgresql/html/mvcc.html -share/doc/postgresql/html/non-atomic-values.html -share/doc/postgresql/html/notation.html -share/doc/postgresql/html/odbc-applixware.html -share/doc/postgresql/html/odbc-config.html -share/doc/postgresql/html/odbc-install.html -share/doc/postgresql/html/odbc-windows.html -share/doc/postgresql/html/odbc.html -share/doc/postgresql/html/organization.html -share/doc/postgresql/html/overview.html -share/doc/postgresql/html/page.html -share/doc/postgresql/html/parser-stage.html -share/doc/postgresql/html/partial-index.html -share/doc/postgresql/html/performance-tips.html -share/doc/postgresql/html/perm-functions.html -share/doc/postgresql/html/pg-system-catalogs.html -share/doc/postgresql/html/pgeasy-chapter.html -share/doc/postgresql/html/pgtcl-pgconndefaults.html -share/doc/postgresql/html/pgtcl-pgconnect.html -share/doc/postgresql/html/pgtcl-pgdisconnect.html -share/doc/postgresql/html/pgtcl-pgexec.html -share/doc/postgresql/html/pgtcl-pglisten.html -share/doc/postgresql/html/pgtcl-pgloclose.html -share/doc/postgresql/html/pgtcl-pglocreat.html -share/doc/postgresql/html/pgtcl-pgloexport.html -share/doc/postgresql/html/pgtcl-pgloimport.html -share/doc/postgresql/html/pgtcl-pglolseek.html -share/doc/postgresql/html/pgtcl-pgloopen.html -share/doc/postgresql/html/pgtcl-pgloread.html -share/doc/postgresql/html/pgtcl-pglotell.html -share/doc/postgresql/html/pgtcl-pglounlink.html -share/doc/postgresql/html/pgtcl-pglowrite.html -share/doc/postgresql/html/pgtcl-pgresult.html -share/doc/postgresql/html/pgtcl-pgselect.html -share/doc/postgresql/html/pgtcl.html -share/doc/postgresql/html/planner-optimizer.html -share/doc/postgresql/html/plperl-use.html -share/doc/postgresql/html/plperl.html -share/doc/postgresql/html/plpgsql-description.html -share/doc/postgresql/html/plpgsql-examples.html -share/doc/postgresql/html/plpgsql-porting.html -share/doc/postgresql/html/plpgsql-trigger.html -share/doc/postgresql/html/plpgsql.html -share/doc/postgresql/html/pltcl-description.html -share/doc/postgresql/html/pltcl.html -share/doc/postgresql/html/populate.html -share/doc/postgresql/html/postgres.html -share/doc/postgresql/html/postmaster-shutdown.html -share/doc/postgresql/html/postmaster-start.html -share/doc/postgresql/html/preface.html -share/doc/postgresql/html/privileges.html -share/doc/postgresql/html/programmer-client.html -share/doc/postgresql/html/programmer-pl.html -share/doc/postgresql/html/programmer-server.html -share/doc/postgresql/html/programmer.html -share/doc/postgresql/html/protocol-message-formats.html -share/doc/postgresql/html/protocol-message-types.html -share/doc/postgresql/html/protocol-protocol.html -share/doc/postgresql/html/protocol.html -share/doc/postgresql/html/pygresql.html -share/doc/postgresql/html/pygresql-close.html -share/doc/postgresql/html/pygresql-connect.html -share/doc/postgresql/html/pygresql-db-api.html -share/doc/postgresql/html/pygresql-db-clear.html -share/doc/postgresql/html/pygresql-db-delete.html -share/doc/postgresql/html/pygresql-db-get-attnames.html -share/doc/postgresql/html/pygresql-db-get-databases.html -share/doc/postgresql/html/pygresql-db-get-tables.html -share/doc/postgresql/html/pygresql-db-get.html -share/doc/postgresql/html/pygresql-db-insert.html -share/doc/postgresql/html/pygresql-db-pkey.html -share/doc/postgresql/html/pygresql-db-update.html -share/doc/postgresql/html/pygresql-endcopy.html -share/doc/postgresql/html/pygresql-fileno.html -share/doc/postgresql/html/pygresql-get-defbase.html -share/doc/postgresql/html/pygresql-get-defhost.html -share/doc/postgresql/html/pygresql-get-defopt.html -share/doc/postgresql/html/pygresql-get-defport.html -share/doc/postgresql/html/pygresql-get-deftty.html -share/doc/postgresql/html/pygresql-getline.html -share/doc/postgresql/html/pygresql-getlo.html -share/doc/postgresql/html/pygresql-getnotify.html -share/doc/postgresql/html/pygresql-inserttable.html -share/doc/postgresql/html/pygresql-locreate.html -share/doc/postgresql/html/pygresql-loimport.html -share/doc/postgresql/html/pygresql-pg-db.html -share/doc/postgresql/html/pygresql-pg-functions.html -share/doc/postgresql/html/pygresql-pg-pglarge.html -share/doc/postgresql/html/pygresql-pg-pgobject.html -share/doc/postgresql/html/pygresql-pg-pgqueryobject.html -share/doc/postgresql/html/pygresql-pglargeobject-close.html -share/doc/postgresql/html/pygresql-pglargeobject-export.html -share/doc/postgresql/html/pygresql-pglargeobject-open.html -share/doc/postgresql/html/pygresql-pglargeobject-read.html -share/doc/postgresql/html/pygresql-pglargeobject-seek.html -share/doc/postgresql/html/pygresql-pglargeobject-size.html -share/doc/postgresql/html/pygresql-pglargeobject-tell.html -share/doc/postgresql/html/pygresql-pglargeobject-unlink.html -share/doc/postgresql/html/pygresql-pglargeobject-write.html -share/doc/postgresql/html/pygresql-pgqueryobject-dictresult.html -share/doc/postgresql/html/pygresql-pgqueryobject-fieldname.html -share/doc/postgresql/html/query.html -share/doc/postgresql/html/pygresql-pgqueryobject-fieldnum.html -share/doc/postgresql/html/pygresql-pgqueryobject-getresult.html -share/doc/postgresql/html/pygresql-pgqueryobject-listfields.html -share/doc/postgresql/html/pygresql-pgqueryobject-ntuples.html -share/doc/postgresql/html/pygresql-putline.html -share/doc/postgresql/html/pygresql-query.html -share/doc/postgresql/html/pygresql-reset.html -share/doc/postgresql/html/pygresql-set-defbase.html -share/doc/postgresql/html/pygresql-set-defhost.html -share/doc/postgresql/html/pygresql-set-defopt.html -share/doc/postgresql/html/pygresql-set-defport.html -share/doc/postgresql/html/pygresql-set-deftty.html -share/doc/postgresql/html/queries-limit.html -share/doc/postgresql/html/queries-order.html -share/doc/postgresql/html/queries-select-lists.html -share/doc/postgresql/html/queries-union.html -share/doc/postgresql/html/queries.html -share/doc/postgresql/html/query-agg.html -share/doc/postgresql/html/query-concepts.html -share/doc/postgresql/html/query-delete.html -share/doc/postgresql/html/query-join.html -share/doc/postgresql/html/query-populate.html -share/doc/postgresql/html/query-query.html -share/doc/postgresql/html/query-selectinto.html -share/doc/postgresql/html/query-table.html -share/doc/postgresql/html/query-update.html -share/doc/postgresql/html/recode.html -share/doc/postgresql/html/recovery.html -share/doc/postgresql/html/reference-client.html -share/doc/postgresql/html/reference-server.html -share/doc/postgresql/html/reference.html -share/doc/postgresql/html/regress-platform.html -share/doc/postgresql/html/regress.html -share/doc/postgresql/html/release-0-01.html -share/doc/postgresql/html/release-0-02.html -share/doc/postgresql/html/release-0-03.html -share/doc/postgresql/html/release-1-0.html -share/doc/postgresql/html/release-1-01.html -share/doc/postgresql/html/release-1-02.html -share/doc/postgresql/html/release-1-09.html -share/doc/postgresql/html/release-6-0.html -share/doc/postgresql/html/release-6-1-1.html -share/doc/postgresql/html/release-6-1.html -share/doc/postgresql/html/release-6-2-1.html -share/doc/postgresql/html/release-6-2.html -share/doc/postgresql/html/release-6-3-1.html -share/doc/postgresql/html/release-6-3-2.html -share/doc/postgresql/html/release-6-3.html -share/doc/postgresql/html/release-6-4-1.html -share/doc/postgresql/html/release-6-4-2.html -share/doc/postgresql/html/release-6-4.html -share/doc/postgresql/html/release-6-5-1.html -share/doc/postgresql/html/release-6-5-2.html -share/doc/postgresql/html/release-6-5-3.html -share/doc/postgresql/html/release-6-5.html -share/doc/postgresql/html/release-7-0-1.html -share/doc/postgresql/html/release-7-0-2.html -share/doc/postgresql/html/release-7-0-3.html -share/doc/postgresql/html/release-7-0.html -share/doc/postgresql/html/release-7-1.html -share/doc/postgresql/html/release-7-1-1.html -share/doc/postgresql/html/release-7-1-2.html -share/doc/postgresql/html/release.html -share/doc/postgresql/html/relmodel-formal.html -share/doc/postgresql/html/relmodel-oper.html -share/doc/postgresql/html/resources.html -share/doc/postgresql/html/rule-system.html -share/doc/postgresql/html/rules-insert.html -share/doc/postgresql/html/rules-permissions.html -share/doc/postgresql/html/rules-triggers.html -share/doc/postgresql/html/rules-views.html -share/doc/postgresql/html/rules.html -share/doc/postgresql/html/runtime-config.html -share/doc/postgresql/html/runtime.html -share/doc/postgresql/html/source.html -share/doc/postgresql/html/spi-examples.html -share/doc/postgresql/html/spi-interface-support.html -share/doc/postgresql/html/spi-memory.html -share/doc/postgresql/html/spi-spiconnect.html -share/doc/postgresql/html/spi-spicopytuple.html -share/doc/postgresql/html/spi-spiexec.html -share/doc/postgresql/html/spi-spiexecp.html -share/doc/postgresql/html/spi-spifinish.html -share/doc/postgresql/html/spi-spifname.html -share/doc/postgresql/html/spi-spifnumber.html -share/doc/postgresql/html/spi-spigetbinval.html -share/doc/postgresql/html/spi-spigetrelname.html -share/doc/postgresql/html/spi-spigettype.html -share/doc/postgresql/html/spi-spigettypeid.html -share/doc/postgresql/html/spi-spigetvalue.html -share/doc/postgresql/html/spi-spimodifytuple.html -share/doc/postgresql/html/spi-spipalloc.html -share/doc/postgresql/html/spi-spipfree.html -share/doc/postgresql/html/spi-spiprepare.html -share/doc/postgresql/html/spi-spirepalloc.html -share/doc/postgresql/html/spi-spisaveplan.html -share/doc/postgresql/html/spi-visibility.html -share/doc/postgresql/html/spi.html -share/doc/postgresql/html/sql-abort.html -share/doc/postgresql/html/sql-altergroup.html -share/doc/postgresql/html/sql-altertable.html -share/doc/postgresql/html/sql-alteruser.html -share/doc/postgresql/html/sql-begin.html -share/doc/postgresql/html/sql-checkpoint.html -share/doc/postgresql/html/sql-close.html -share/doc/postgresql/html/sql-cluster.html -share/doc/postgresql/html/sql-commands.html -share/doc/postgresql/html/sql-comment.html -share/doc/postgresql/html/sql-commit.html -share/doc/postgresql/html/sql-copy.html -share/doc/postgresql/html/sql-createaggregate.html -share/doc/postgresql/html/sql-createconstraint.html -share/doc/postgresql/html/sql-createdatabase.html -share/doc/postgresql/html/sql-createfunction.html -share/doc/postgresql/html/sql-creategroup.html -share/doc/postgresql/html/sql-createindex.html -share/doc/postgresql/html/sql-createlanguage.html -share/doc/postgresql/html/sql-createoperator.html -share/doc/postgresql/html/sql-createrule.html -share/doc/postgresql/html/sql-createsequence.html -share/doc/postgresql/html/sql-createtable.html -share/doc/postgresql/html/sql-createtableas.html -share/doc/postgresql/html/sql-createtrigger.html -share/doc/postgresql/html/sql-createtype.html -share/doc/postgresql/html/sql-createuser.html -share/doc/postgresql/html/sql-createview.html -share/doc/postgresql/html/sql-declare.html -share/doc/postgresql/html/sql-delete.html -share/doc/postgresql/html/sql-dropaggregate.html -share/doc/postgresql/html/sql-dropdatabase.html -share/doc/postgresql/html/sql-dropfunction.html -share/doc/postgresql/html/sql-dropgroup.html -share/doc/postgresql/html/sql-dropindex.html -share/doc/postgresql/html/sql-droplanguage.html -share/doc/postgresql/html/sql-dropoperator.html -share/doc/postgresql/html/sql-droprule.html -share/doc/postgresql/html/sql-dropsequence.html -share/doc/postgresql/html/sql-droptable.html -share/doc/postgresql/html/sql-droptrigger.html -share/doc/postgresql/html/sql-droptype.html -share/doc/postgresql/html/sql-dropuser.html -share/doc/postgresql/html/sql-dropview.html -share/doc/postgresql/html/sql-end.html -share/doc/postgresql/html/sql-explain.html -share/doc/postgresql/html/sql-expressions.html -share/doc/postgresql/html/sql-fetch.html -share/doc/postgresql/html/sql-grant.html -share/doc/postgresql/html/sql-insert.html -share/doc/postgresql/html/sql-keywords-appendix.html -share/doc/postgresql/html/sql-language.html -share/doc/postgresql/html/sql-listen.html -share/doc/postgresql/html/sql-load.html -share/doc/postgresql/html/sql-lock.html -share/doc/postgresql/html/sql-move.html -share/doc/postgresql/html/sql-notify.html -share/doc/postgresql/html/sql-precedence.html -share/doc/postgresql/html/sql-reindex.html -share/doc/postgresql/html/sql-reset.html -share/doc/postgresql/html/sql-revoke.html -share/doc/postgresql/html/sql-rollback.html -share/doc/postgresql/html/sql-select.html -share/doc/postgresql/html/sql-selectinto.html -share/doc/postgresql/html/sql-set-constraints.html -share/doc/postgresql/html/sql-set-transaction.html -share/doc/postgresql/html/sql-set.html -share/doc/postgresql/html/sql-show.html -share/doc/postgresql/html/sql-syntax-columns.html -share/doc/postgresql/html/sql-syntax.html -share/doc/postgresql/html/sql-truncate.html -share/doc/postgresql/html/sql-unlisten.html -share/doc/postgresql/html/sql-update.html -share/doc/postgresql/html/sql-vacuum.html -share/doc/postgresql/html/sql.html -share/doc/postgresql/html/ssh-tunnels.html -share/doc/postgresql/html/ssl-tcp.html -share/doc/postgresql/html/start-manage-db.html -share/doc/postgresql/html/start-psql.html -share/doc/postgresql/html/start.html -share/doc/postgresql/html/storage.html -share/doc/postgresql/html/supported-platforms.html -share/doc/postgresql/html/timing-results.html -share/doc/postgresql/html/transaction-iso.html -share/doc/postgresql/html/trigger-datachanges.html -share/doc/postgresql/html/trigger-examples.html -share/doc/postgresql/html/trigger-manager.html -share/doc/postgresql/html/triggers.html -share/doc/postgresql/html/tutorial.html -share/doc/postgresql/html/type-system.html -share/doc/postgresql/html/typeconv-func.html -share/doc/postgresql/html/typeconv-oper.html -share/doc/postgresql/html/typeconv-query.html -share/doc/postgresql/html/typeconv-union-case.html -share/doc/postgresql/html/typeconv.html -share/doc/postgresql/html/units-history.html -share/doc/postgresql/html/user-manag.html -share/doc/postgresql/html/user.html -share/doc/postgresql/html/wal-configuration.html -share/doc/postgresql/html/wal-implementation.html -share/doc/postgresql/html/wal.html -share/doc/postgresql/html/xact-read-committed.html -share/doc/postgresql/html/xact-serializable.html -share/doc/postgresql/html/xaggr.html -share/doc/postgresql/html/xfunc-c.html -share/doc/postgresql/html/xfunc-internal.html -share/doc/postgresql/html/xfunc-overload.html -share/doc/postgresql/html/xfunc-pl.html -share/doc/postgresql/html/xfunc.html -share/doc/postgresql/html/xindex.html -share/doc/postgresql/html/xoper.html -share/doc/postgresql/html/xplang.html -share/doc/postgresql/html/xtypes.html -share/doc/postgresql/html/y2k.html -share/doc/postgresql/html/catalogs.gif -share/doc/postgresql/html/clientserver.gif -share/doc/postgresql/html/connections.gif -@dirrm share/doc/postgresql/html -@dirrm share/doc/postgresql diff --git a/databases/postgresql81-server/pkg-plist.jdbc b/databases/postgresql81-server/pkg-plist.jdbc deleted file mode 100644 index 8f7bd41a54d7..000000000000 --- a/databases/postgresql81-server/pkg-plist.jdbc +++ /dev/null @@ -1,27 +0,0 @@ -share/examples/postgresql/corba/StockClient.java -share/examples/postgresql/corba/StockDB.java -share/examples/postgresql/corba/StockDispenserImpl.java -share/examples/postgresql/corba/StockItemImpl.java -share/examples/postgresql/corba/StockServer.java -share/examples/postgresql/corba/readme -share/examples/postgresql/corba/stock.idl -share/examples/postgresql/corba/stock.sql -@dirrm share/examples/postgresql/corba -share/examples/postgresql/ImageViewer.java -share/examples/postgresql/Unicode.java -share/examples/postgresql/basic.java -share/examples/postgresql/blobtest.java -share/examples/postgresql/datestyle.java -share/examples/postgresql/metadata.java -share/examples/postgresql/psql.java -share/examples/postgresql/threadsafe.java -share/examples/postgresql/README -share/examples/postgresql/Implementation -@dirrm share/examples/postgresql -share/postgresql/java/postgresql-examples.jar -share/postgresql/java/postgresql.jar -share/postgresql/java/retepTools.jar -@dirrm share/postgresql/java -share/java/classes/postgresql.jar -@unexec rmdir %D/share/java/classes 2>/dev/null || true -@unexec rmdir %D/share/java 2>/dev/null || true diff --git a/databases/postgresql81-server/pkg-plist.notk b/databases/postgresql81-server/pkg-plist.notk deleted file mode 100644 index 8dcbc5f88bd6..000000000000 --- a/databases/postgresql81-server/pkg-plist.notk +++ /dev/null @@ -1,6 +0,0 @@ -%%PG_PREFIX%%bin/pgtclsh -%%PG_INCLUDE%%/libpgtcl.h -%%PG_PREFIX%%lib/libpgtcl.a -%%PG_PREFIX%%lib/libpgtcl.so -%%PG_PREFIX%%lib/libpgtcl.so.2 -%%PG_PREFIX%%lib/pltcl.so diff --git a/databases/postgresql81-server/pkg-plist.odbc b/databases/postgresql81-server/pkg-plist.odbc deleted file mode 100644 index f047b7cb64a1..000000000000 --- a/databases/postgresql81-server/pkg-plist.odbc +++ /dev/null @@ -1,10 +0,0 @@ -%%PG_INCLUDE%%/iodbc/iodbc.h -%%PG_INCLUDE%%/iodbc/isql.h -%%PG_INCLUDE%%/iodbc/isqlext.h -@dirrm %%PG_INCLUDE%%/iodbc -%%PG_PREFIX%%lib/libpsqlodbc.a -%%PG_PREFIX%%lib/libpsqlodbc.so -%%PG_PREFIX%%lib/libpsqlodbc.so.0 -etc/postgresql/odbcinst.ini -@dirrm etc/postgresql -share/postgresql/odbc.sql diff --git a/databases/postgresql81-server/pkg-plist.tcl b/databases/postgresql81-server/pkg-plist.tcl deleted file mode 100644 index da5f4367cb80..000000000000 --- a/databases/postgresql81-server/pkg-plist.tcl +++ /dev/null @@ -1,148 +0,0 @@ -%%PG_PREFIX%%bin/pgaccess -%%PG_PREFIX%%bin/pgtclsh -%%PG_PREFIX%%bin/pgtksh -%%PG_INCLUDE%%/libpgtcl.h -%%PG_PREFIX%%lib/libpgtcl.a -%%PG_PREFIX%%lib/libpgtcl.so -%%PG_PREFIX%%lib/libpgtcl.so.2 -%%PG_PREFIX%%lib/pltcl.so -lib/tcl%%WITH_TCL%%/Pgtcl1.3/pkgIndex.tcl -share/postgresql/pgaccess/images/icon_button.gif -share/postgresql/pgaccess/images/icon_checkbutton.gif -share/postgresql/pgaccess/images/icon_entry.gif -share/postgresql/pgaccess/images/icon_frame.gif -share/postgresql/pgaccess/images/icon_label.gif -share/postgresql/pgaccess/images/icon_listbox.gif -share/postgresql/pgaccess/images/icon_query.gif -share/postgresql/pgaccess/images/icon_radiobutton.gif -share/postgresql/pgaccess/images/icon_text.gif -share/postgresql/pgaccess/lib/database.tcl -share/postgresql/pgaccess/lib/forms.tcl -share/postgresql/pgaccess/lib/functions.tcl -share/postgresql/pgaccess/lib/help/abort.hlp -share/postgresql/pgaccess/lib/help/add_records.hlp -share/postgresql/pgaccess/lib/help/alter_table.hlp -share/postgresql/pgaccess/lib/help/alter_user.hlp -share/postgresql/pgaccess/lib/help/author.hlp -share/postgresql/pgaccess/lib/help/begin.hlp -share/postgresql/pgaccess/lib/help/close.hlp -share/postgresql/pgaccess/lib/help/cluster.hlp -share/postgresql/pgaccess/lib/help/commit.hlp -share/postgresql/pgaccess/lib/help/copy.hlp -share/postgresql/pgaccess/lib/help/copyrights.hlp -share/postgresql/pgaccess/lib/help/create_aggregate.hlp -share/postgresql/pgaccess/lib/help/create_database.hlp -share/postgresql/pgaccess/lib/help/create_function.hlp -share/postgresql/pgaccess/lib/help/create_index.hlp -share/postgresql/pgaccess/lib/help/create_language.hlp -share/postgresql/pgaccess/lib/help/create_operator.hlp -share/postgresql/pgaccess/lib/help/create_rule.hlp -share/postgresql/pgaccess/lib/help/create_sequence.hlp -share/postgresql/pgaccess/lib/help/create_table.hlp -share/postgresql/pgaccess/lib/help/create_table_as.hlp -share/postgresql/pgaccess/lib/help/create_trigger.hlp -share/postgresql/pgaccess/lib/help/create_type.hlp -share/postgresql/pgaccess/lib/help/create_user.hlp -share/postgresql/pgaccess/lib/help/create_view.hlp -share/postgresql/pgaccess/lib/help/data_types.hlp -share/postgresql/pgaccess/lib/help/datefunc.hlp -share/postgresql/pgaccess/lib/help/declare.hlp -share/postgresql/pgaccess/lib/help/delete.hlp -share/postgresql/pgaccess/lib/help/drop_aggregate.hlp -share/postgresql/pgaccess/lib/help/drop_database.hlp -share/postgresql/pgaccess/lib/help/drop_function.hlp -share/postgresql/pgaccess/lib/help/drop_index.hlp -share/postgresql/pgaccess/lib/help/drop_language.hlp -share/postgresql/pgaccess/lib/help/drop_operator.hlp -share/postgresql/pgaccess/lib/help/drop_rule.hlp -share/postgresql/pgaccess/lib/help/drop_sequence.hlp -share/postgresql/pgaccess/lib/help/drop_table.hlp -share/postgresql/pgaccess/lib/help/drop_trigger.hlp -share/postgresql/pgaccess/lib/help/drop_type.hlp -share/postgresql/pgaccess/lib/help/drop_user.hlp -share/postgresql/pgaccess/lib/help/drop_view.hlp -share/postgresql/pgaccess/lib/help/explain.hlp -share/postgresql/pgaccess/lib/help/fetch.hlp -share/postgresql/pgaccess/lib/help/form_design.hlp -share/postgresql/pgaccess/lib/help/forms.hlp -share/postgresql/pgaccess/lib/help/functions.hlp -share/postgresql/pgaccess/lib/help/geomfunc.hlp -share/postgresql/pgaccess/lib/help/grant.hlp -share/postgresql/pgaccess/lib/help/history.hlp -share/postgresql/pgaccess/lib/help/index.hlp -share/postgresql/pgaccess/lib/help/inheritance.hlp -share/postgresql/pgaccess/lib/help/insert.hlp -share/postgresql/pgaccess/lib/help/ipv4func.hlp -share/postgresql/pgaccess/lib/help/isolation.hlp -share/postgresql/pgaccess/lib/help/keywords.hlp -share/postgresql/pgaccess/lib/help/listen.hlp -share/postgresql/pgaccess/lib/help/load.hlp -share/postgresql/pgaccess/lib/help/lock.hlp -share/postgresql/pgaccess/lib/help/mathfunc.hlp -share/postgresql/pgaccess/lib/help/move.hlp -share/postgresql/pgaccess/lib/help/mvcc.hlp -share/postgresql/pgaccess/lib/help/new_query.hlp -share/postgresql/pgaccess/lib/help/new_table.hlp -share/postgresql/pgaccess/lib/help/notify.hlp -share/postgresql/pgaccess/lib/help/open_query.hlp -share/postgresql/pgaccess/lib/help/open_table.hlp -share/postgresql/pgaccess/lib/help/pgfunctions.hlp -share/postgresql/pgaccess/lib/help/postgresql.hlp -share/postgresql/pgaccess/lib/help/queries.hlp -share/postgresql/pgaccess/lib/help/reports.hlp -share/postgresql/pgaccess/lib/help/reset.hlp -share/postgresql/pgaccess/lib/help/revoke.hlp -share/postgresql/pgaccess/lib/help/rollback.hlp -share/postgresql/pgaccess/lib/help/schema.hlp -share/postgresql/pgaccess/lib/help/scripts.hlp -share/postgresql/pgaccess/lib/help/select.hlp -share/postgresql/pgaccess/lib/help/select_into.hlp -share/postgresql/pgaccess/lib/help/sequences.hlp -share/postgresql/pgaccess/lib/help/set.hlp -share/postgresql/pgaccess/lib/help/show.hlp -share/postgresql/pgaccess/lib/help/sql_guide.hlp -share/postgresql/pgaccess/lib/help/sqlfunc.hlp -share/postgresql/pgaccess/lib/help/stringfunc.hlp -share/postgresql/pgaccess/lib/help/tables.hlp -share/postgresql/pgaccess/lib/help/unlisten.hlp -share/postgresql/pgaccess/lib/help/update.hlp -share/postgresql/pgaccess/lib/help/users.hlp -share/postgresql/pgaccess/lib/help/vacuum.hlp -share/postgresql/pgaccess/lib/help/view_table_structure.hlp -share/postgresql/pgaccess/lib/help/views.hlp -share/postgresql/pgaccess/lib/help/visual_designer.hlp -share/postgresql/pgaccess/lib/help/y2k.hlp -share/postgresql/pgaccess/lib/help.tcl -share/postgresql/pgaccess/lib/languages/czech -share/postgresql/pgaccess/lib/languages/chinese_big5 -share/postgresql/pgaccess/lib/languages/chinese_gb -share/postgresql/pgaccess/lib/languages/deutsch -share/postgresql/pgaccess/lib/languages/euskara -share/postgresql/pgaccess/lib/languages/francais -share/postgresql/pgaccess/lib/languages/italiano -share/postgresql/pgaccess/lib/languages/japanese -share/postgresql/pgaccess/lib/languages/magyar -share/postgresql/pgaccess/lib/languages/nederlands -share/postgresql/pgaccess/lib/languages/portugues -share/postgresql/pgaccess/lib/languages/romana -share/postgresql/pgaccess/lib/languages/russian.koi8r -share/postgresql/pgaccess/lib/languages/russian_win -share/postgresql/pgaccess/lib/languages/spanish -share/postgresql/pgaccess/lib/mainlib.tcl -share/postgresql/pgaccess/lib/preferences.tcl -share/postgresql/pgaccess/lib/queries.tcl -share/postgresql/pgaccess/lib/reports.tcl -share/postgresql/pgaccess/lib/schema.tcl -share/postgresql/pgaccess/lib/scripts.tcl -share/postgresql/pgaccess/lib/sequences.tcl -share/postgresql/pgaccess/lib/tables.tcl -share/postgresql/pgaccess/lib/users.tcl -share/postgresql/pgaccess/lib/views.tcl -share/postgresql/pgaccess/lib/visualqb.tcl -share/postgresql/pgaccess/main.tcl -@dirrm share/postgresql/pgaccess/images -@dirrm share/postgresql/pgaccess/lib/help -@dirrm share/postgresql/pgaccess/lib/languages -@dirrm share/postgresql/pgaccess/lib -@dirrm share/postgresql/pgaccess -@dirrm lib/tcl%%WITH_TCL%%/Pgtcl1.3 diff --git a/databases/postgresql81-server/scripts/configure.postgresql b/databases/postgresql81-server/scripts/configure.postgresql deleted file mode 100644 index 0b288ad43d25..000000000000 --- a/databases/postgresql81-server/scripts/configure.postgresql +++ /dev/null @@ -1,278 +0,0 @@ -#!/bin/sh -# -*- tab-width: 4; -*- -# ex:ts=4 -# -# $FreeBSD$ -# -if [ -f ${WRKDIRPREFIX}${CURDIR}/Makefile.inc ]; then - exit -fi - -if [ ! "${BATCH}" ]; then - dialog --title "Backup your data NOW" \ - --msgbox "`sed -e \"s#%%PREFIX%%#${PREFIX}#\" < ${FILESDIR}/pre-install-notes`" \ - -1 -1 -fi - -if [ "${BATCH}" ]; then - set \"MultiByte\" \"ODBC\" \"SSL\" \"TCL\" \"TCLTK\" -else - /usr/bin/dialog --title "configuration options" --clear \ - --checklist "\n\ -Please select desired options:" -1 -1 7 \ -JDBC "Java DataBase Connectivity" OFF \ -MultiByte "Multibyte for Multilingualism" ON \ -ODBC "Open Database Connectivity" ON \ -TCL "Tcl" ON \ -TCLTK "Tcl/Tk" ON \ -SSL "Secure Socket Layer" ON \ -KRB5 "Kerberos 5" OFF \ -2> /tmp/checklist.tmp.$$ - - retval=$? - - if [ -s /tmp/checklist.tmp.$$ ]; then - set `cat /tmp/checklist.tmp.$$` - fi - rm -f /tmp/checklist.tmp.$$ - - case $retval in - 0) if [ -z "$*" ]; then - echo "Nothing selected" - fi - ;; - 1) echo "Cancel pressed." - exit 1 - ;; - esac -fi - -${MKDIR} ${WRKDIRPREFIX}${CURDIR} -exec > ${WRKDIRPREFIX}${CURDIR}/Makefile.inc - -while [ "$1" ]; do - case $1 in - \"JDBC\") - # We use JAVA_HOME if set correctly. If the user has - # specified a JVM with JAVA_HOME or via the javavmwrapper, - # we validate that it really exists. It is unnecessarily - # complicated and error prone to try to figure out the - # correct java version just to be able to determine a - # BUILD_DEPEND in this case. Instead, assume that a set - # JAVA_HOME together with simple sanity check mean we have - # an installed JVM, and we don't bother setting - # BUILD_DEPENDS. - - echo "# JDBC" - # if JAVA_HOME is set and exists, use it - if [ "${JAVA_HOME}" -a -x "${JAVA_HOME}/bin/javac" ]; then - echo JAVA_HOME=${JAVA_HOME} - else - # No JAVA_HOME, check javavmwrapper's config file - if [ -r "${LOCALBASE}/etc/javavms" ]; then - VMS=`/usr/bin/sed 's|#.*||' < "${LOCALBASE}/etc/javavms" | uniq` - for JAVAVM in ${VMS}; do - if [ -x "${JAVAVM}" ]; then - JAVA_HOME=`echo ${JAVAVM} | /usr/bin/sed 's|/bin/java$||` - break - fi - done - fi - if [ "${JAVA_HOME}" -a -x "${JAVA_HOME}/bin/javac" ]; then - # yep, wrapper was good - echo JAVA_HOME=${JAVA_HOME} - else - # nothing, use our boring 1.1.8, the only native non-beta jdk :( - echo BUILD_DEPENDS+= \${LOCALBASE}/jdk1.1.8/bin/javac:\${PORTSDIR}/java/jdk - echo JAVA_HOME=\${LOCALBASE}/jdk1.1.8 - fi - fi - cat <<-EOF - BUILD_DEPENDS+= \${LOCALBASE}/bin/ant:\${PORTSDIR}/devel/jakarta-ant - CONFIGURE_ENV+= ANT=\${LOCALBASE}/bin/ant - WITH_JDBC=YES - MAKE_ENV+= JAVA_HOME=\${JAVA_HOME} - SCRIPTS_ENV+= JAVA_HOME=\${JAVA_HOME} - CONFIGURE_ARGS+= --with-java - - EOF - ;; - \"MultiByte\") - MULTIBYTE=1 - ;; - \"ODBC\") - cat <<-EOF - # ODBC - WITH_ODBC=YES - CONFIGURE_ARGS+= --with-odbc - - EOF - ;; - \"TCL\") - TCL=1 - ;; - \"TCLTK\") - echo "#TCLTK" - echo WITH_TK=YES - echo - TCL=1 - ;; - \"SSL\") - cat <<-EOF - # SSL - USE_OPENSSL= yes - CFLAGS+= -DUSE_SSL - WITH_SSL= yes - CONFIGURE_ENV+= LDFLAGS="-L\${OPENSSLLIB} -lssl -lcrypto" - CONFIGURE_ARGS+= --with-openssl - - EOF - ;; - \"KRB5\") - KRB5=1 - ;; - \"nothing\"|true) - ;; - *) - echo "Invalid option(s): $*" > /dev/stderr - rm -f ${WRKDIRPREFIX}${CURDIR}/Makefile.inc - exit 1 - ;; - esac - shift -done - -exec > /dev/stderr - -# if multibyte, determine charset -echo "# Multibyte" >> ${WRKDIRPREFIX}${CURDIR}/Makefile.inc - -if [ ! "${MULTIBYTE}" ]; then - echo "WITHOUT_MULTIBYTE=YES" >> ${WRKDIRPREFIX}${CURDIR}/Makefile.inc -else - if [ "${BATCH}" ]; then - set "nothing" - else - /usr/bin/dialog --title "configuration options" --clear \ - --radiolist "\n\ -Please select desired options:" -1 -1 16 \ -nothing "Default Encoding" ON \ -SQL_ASCII "SQL_ASCII" OFF \ -LATIN1 "LATIN1" OFF \ -LATIN2 "LATIN2" OFF \ -LATIN3 "LATIN3" OFF \ -LATIN4 "LATIN4" OFF \ -LATIN5 "LATIN5" OFF \ -EUC_JP "EUC_JP" OFF \ -EUC_CN "EUC_CN" OFF \ -EUC_KR "EUC_KR" OFF \ -EUC_TW "EUC_TW" OFF \ -KOI8 "KOI8" OFF \ -UNICODE "UNICODE" OFF \ -MULE_INTERNAL "MULE_INTERNAL" OFF \ -WIN "WIN" OFF \ -ALT "ALT" OFF \ -2> /tmp/checklist.tmp.$$ - - retval=$? - - if [ -s /tmp/checklist.tmp.$$ ]; then - set `cat /tmp/checklist.tmp.$$` - fi - rm -f /tmp/checklist.tmp.$$ - if [ $retval = 1 ]; then - echo "Cancel pressed." - rm ${WRKDIRPREFIX}${CURDIR}/Makefile.inc - exit 1 - fi - fi - - if [ "$1" = "nothing" ]; then - echo "CONFIGURE_ARGS+= --enable-multibyte" \ - >> ${WRKDIRPREFIX}${CURDIR}/Makefile.inc - else - echo "CONFIGURE_ARGS+= --enable-multibyte=$1" \ - >> ${WRKDIRPREFIX}${CURDIR}/Makefile.inc - fi -fi -echo - -if [ "${TCL}" ]; then - echo "# TCL" >> ${WRKDIRPREFIX}${CURDIR}/Makefile.inc - if [ "${BATCH}" ]; then - echo WITH_TCL=8.3 >> ${WRKDIRPREFIX}${CURDIR}/Makefile.inc - else - dialog --title "TCL version" \ - --inputbox "Please enter TCL version. Default is 8.3." -1 -1 "8.3" \ - 2> /tmp/checklist.tmp.$$ - retval=$? - if [ -s /tmp/checklist.tmp.$$ ]; then - set `cat /tmp/checklist.tmp.$$` - fi - rm -f /tmp/checklist.tmp.$$ - case $retval in - 0) if [ -z "$*" ]; then - echo "Nothing selected" - fi - ;; - 1) echo "Cancel pressed." - rm -f ${WRKDIRPREFIX}${CURDIR}/Makefile.inc - exit 1 - ;; - esac - echo WITH_TCL=$1 >> ${WRKDIRPREFIX}${CURDIR}/Makefile.inc - fi - cat <<-EOF >> ${WRKDIRPREFIX}${CURDIR}/Makefile.inc - CONFIGURE_ARGS+= --with-tcl --with-tclconfig="\${TCLCONFIG}" - TCLV=\${WITH_TCL:S/.//} - TCL_INCDIR= \${LOCALBASE}/include/tcl\${WITH_TCL} - MAKE_ENV+= TCL_INCDIR=\${TCL_INCDIR} - LIB_DEPENDS+= tcl\${TCLV}:\${PORTSDIR}/lang/tcl\${TCLV} - TCLCONFIG= "\${LOCALBASE}/lib/tcl\${WITH_TCL}" - .if defined(WITH_TK) - CONFIGURE_ARGS+= --with-tkconfig="\${TKCONFIG}" - TK_INCDIR= \${LOCALBASE}/include/tk\${WITH_TCL} - CONFIGURE_ENV+= WISH=\${LOCALBASE}/bin/wish\${WITH_TCL} - LIB_DEPENDS+= tk\${TCLV}:\${PORTSDIR}/x11-toolkits/tk\${TCLV} - TKCONFIG= "\${LOCALBASE}/lib/tk\${WITH_TCL}" - TCLCONFIG+= \${TKCONFIG} - TCL_PLIST= pkg-plist.tcl - .else - TCL_PLIST= pkg-plist.notk - CONFIGURE_ARGS+= --without-tk - .endif - - EOF -fi - -if [ "${KRB5}" ]; then - if [ "${BATCH}" ]; then - # never gets here, but what the heck... - echo KRB5_HOME=\${LOCALBASE} >> ${WRKDIRPREFIX}${CURDIR}/Makefile.inc - else - dialog --inputbox "Please enter the KRB5_HOME path" -1 -1 "${KRB_HOME:-${LOCALBASE}}" \ - 2> /tmp/checklist.tmp.$$ - retval=$? - if [ -s /tmp/checklist.tmp.$$ ]; then - set `cat /tmp/checklist.tmp.$$` - fi - rm -f /tmp/checklist.tmp.$$ - case $retval in - 0) if [ -z "$*" ]; then - echo "No input" - fi - ;; - 1) echo "Cancel pressed." - rm -f ${WRKDIRPREFIX}${CURDIR}/Makefile.inc - exit 1 - ;; - esac - echo KRB5_HOME=\"$1\" >> ${WRKDIRPREFIX}${CURDIR}/Makefile.inc - fi - cat <<-EOF >> ${WRKDIRPREFIX}${CURDIR}/Makefile.inc - .if defined(KRB5_HOME) && exists(\${KRB5_HOME}) - CONFIGURE_KRB= --with-krb5=\${KRB5_HOME} - .endif - - EOF -fi diff --git a/databases/postgresql82-server/Makefile b/databases/postgresql82-server/Makefile deleted file mode 100644 index 4a30008d77bc..000000000000 --- a/databases/postgresql82-server/Makefile +++ /dev/null @@ -1,198 +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.1.3 -CATEGORIES= databases -MASTER_SITES= ftp://ftp.sunet.se/pub/unix/databases/relational/postgresql/%SUBDIR%/ \ - ftp://ftp.postgresql.org/pub/%SUBDIR%/ \ - ftp://ftp.de.postgresql.org/%SUBDIR%/ \ - ftp://ftp.digex.net/pub/packages/database/postgresql/%SUBDIR%/ \ - ftp://ftp.chg.ru/pub/databases/postgresql/%SUBDIR%/ \ - ${MASTER_SITE_RINGSERVER:S,%SUBDIR%,misc/db/postgresql/&,} -MASTER_SITE_SUBDIR= source/v${PORTVERSION} -DISTFILES= ${PORTNAME}-base-${PORTVERSION}${EXTRACT_SUFX} \ - ${PORTNAME}-opt-${PORTVERSION}${EXTRACT_SUFX} -.if !defined(NOPORTDOCS) -DISTFILES+= ${PORTNAME}-docs-${PORTVERSION}${EXTRACT_SUFX} -.endif - -MAINTAINER= girgen@partitur.se - -DIST_SUBDIR= postgresql - -INSTALLS_SHLIB= YES - -DOCDIR= ${WRKDIR}/${DISTNAME}/doc -PLIST= ${WRKDIR}/.PLIST.generated - -USE_GMAKE= YES -HAS_CONFIGURE= YES -CONFIGURE_ARGS= --enable-locale \ - --enable-syslog --with-CXX \ - --sysconfdir=${PREFIX}/etc/postgresql \ - --with-includes="${PREFIX}/include ${TCL_INCDIR} ${TK_INCDIR}" \ - --with-libraries=${PREFIX}/lib -.if defined(WITH_OLD_LAYOUT) -CONFIGURE_ARGS+=--docdir=${PREFIX}/share/doc --includedir=${PREFIX}/pgsql/include \ - --datadir=${PREFIX}/share \ - --with-template=`uname -s | ${TR} '[A-Z]' '[a-z]'` \ - --prefix=${PREFIX}/pgsql -PG_PREFIX= pgsql/ -PG_INCLUDE= pgsql/include -LDCONFIG_DIRS= %%PREFIX%%/pgsql/lib -MANPREFIX= ${PREFIX}/pgsql -.else -GNU_CONFIGURE= YES -CONFIGURE_ARGS+=--docdir=${PREFIX}/share/doc --includedir=${PREFIX}/include/pgsql -PG_PREFIX="" -PG_INCLUDE= include/pgsql -.endif - -PLIST_SUB= PG_PREFIX="${PG_PREFIX}" PG_INCLUDE="${PG_INCLUDE}" WITH_TCL="${WITH_TCL}" - -MAN1= createdb.1 createlang.1 createuser.1 dropdb.1 droplang.1 \ - dropuser.1 ecpg.1 initdb.1 initlocation.1 ipcclean.1 pg_config.1 \ - pg_ctl.1 pg_dump.1 pg_dumpall.1 pg_passwd.1 pg_restore.1 \ - pgaccess.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 checkpoint.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 set_constraints.l set_transaction.l show.l \ - truncate.l unlisten.l update.l vacuum.l - -SCRIPTS_ENV= WRKDIRPREFIX="${WRKDIRPREFIX}" \ - WRKDIR="${WRKDIR}" \ - FILESDIR="${FILESDIR}" \ - TOUCH="${TOUCH}" \ - MKDIR="${MKDIR}" \ - NO_OPENSSL="${NO_OPENSSL}" \ - DISTNAME="${DISTNAME}" - -# We must .include here because we need the Makefile.inc @ pre-install -# to determine the correct plist. -.if exists(${WRKDIRPREFIX}${.CURDIR}/Makefile.inc) -.include "${WRKDIRPREFIX}${.CURDIR}/Makefile.inc" -.else -# make utility targets like depends and describe happy -LIB_DEPENDS= tcl83:${PORTSDIR}/lang/tcl83 \ - tk83:${PORTSDIR}/x11-toolkits/tk83 -.endif - -pre-everything:: - @ ${SETENV} ${SCRIPTS_ENV} ${SH} ${SCRIPTDIR}/configure.postgresql - -pre-install: - @ ${SETENV} PKG_PREFIX=${PREFIX} ${SH} ${PKGDIR}/pkg-install ${PORTNAME} PRE-INSTALL -.if !defined(BATCH) -# remind folks twice for a while, so they really don't miss the layout shift - @ ${SED} "s|/usr/local|${PREFIX}|g" < ${PKGMESSAGE} | head -n 25 | more -e -.endif - @ ${CP} ${PKGDIR}/pkg-plist ${PLIST} -.if defined(WITHOUT_MULTIBYTE) - @${CP} ${PLIST} ${PLIST}.nomulti ;\ - ${GREP} -v bin/pg_encoding ${PLIST}.nomulti > ${PLIST} -.endif -.if defined(WITH_TCL) - @ ${CP} ${PLIST} ${PLIST}.notcl ;\ - ${CAT} ${PKGDIR}/${TCL_PLIST} ${PLIST}.notcl > ${PLIST} ;\ - ${RM} ${PLIST}.notcl -.endif -.if defined(WITH_ODBC) - @ ${CP} ${PLIST} ${PLIST}.noodbc ;\ - ${CAT} ${PKGDIR}/pkg-plist.odbc ${PLIST}.noodbc > ${PLIST} ;\ - ${RM} ${PLIST}.noodbc -.endif -.if defined(WITH_JDBC) - @ ${CP} ${PLIST} ${PLIST}.nojdbc ;\ - ${CAT} ${PKGDIR}/pkg-plist.jdbc ${PLIST}.nojdbc > ${PLIST} ;\ - ${RM} ${PLIST}.nojdbc -.endif -.if !defined(NOPORTDOCS) - @ ${CAT} ${PKGDIR}/pkg-plist.doc >> ${PLIST} -.endif - -post-install: -# install shell defaults for pgsql user -.for i in profile cshrc - @ ${SED} "s|%%PREFIX%%|${PREFIX}|g; s|%%PG_PREFIX%%|${PG_PREFIX}|g" \ - < ${FILESDIR}/dot.$i.in \ - > ${PREFIX}/share/postgresql/dot.$i.dist; \ - ${CP} ${PREFIX}/share/postgresql/dot.$i.dist ~pgsql/; \ - if [ ! -f ~pgsql/.$i ]; then \ - ${CP} ${PREFIX}/share/postgresql/dot.$i.dist ~pgsql/.$i; \ - fi -.endfor - @ ${SED} -e "s|%%PREFIX%%|${PREFIX}|g; s|%%PG_PREFIX%%|${PG_PREFIX}|g" \ - < ${FILESDIR}/pgsql.sh.tmpl \ - > ${PREFIX}/etc/rc.d/010.pgsql.sh - @ ${CHMOD} 554 ${PREFIX}/etc/rc.d/010.pgsql.sh - @ ${CHOWN} root:pgsql ${PREFIX}/etc/rc.d/010.pgsql.sh -.if defined(WITH_TCL) -# Preparing a loadable TCL-package (pkgIndex.tcl) - @${MKDIR} ${PREFIX}/lib/tcl${WITH_TCL}/Pgtcl1.3 - @${SED} "s|%%PREFIX%%|${PREFIX}|g" < ${FILESDIR}/pkgIndex.tcl.in \ - > ${PREFIX}/lib/tcl${WITH_TCL}/Pgtcl1.3/pkgIndex.tcl -.endif -.if defined(WITH_JDBC) - @ ${MKDIR} -m 0555 ${PREFIX}/share/java/classes - @ ${INSTALL_DATA} ${WRKSRC}/src/interfaces/jdbc/jars/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} "---------------------------------------------------------" -.if !defined(NOPORTDOCS) - @ ${MKDIR} -m 0555 ${PREFIX}/share/examples/postgresql ;\ - cd ${WRKSRC}/src/interfaces/jdbc/example ;\ - pax -rw . ${PREFIX}/share/examples/postgresql -.for i in README Implementation - @ ${INSTALL_DATA} ${WRKSRC}/src/interfaces/jdbc/$i \ - ${PREFIX}/share/examples/postgresql -.endfor - @ ${ECHO_MSG} "---------------------------------------------------------------" - @ ${ECHO_MSG} "Putting java examples into ${PREFIX}/share/examples/postgresql" - @ ${ECHO_MSG} "---------------------------------------------------------------" -.endif -.endif -.if !defined(DEBUG_FLAGS) -.for file in ecpg pg_dump pg_id pg_passwd pg_restore postgres psql - @ strip ${PREFIX}/${PG_PREFIX}bin/${file} -.endfor -.endif -# information overload mode activated, sorry about this... ;-) - @ ${CAT} ${FILESDIR}/post-install-notes ${PKGMESSAGE} |\ - ${SED} "s|/usr/local|${PREFIX}|g" |\ - tee ${PREFIX}/share/postgresql/post-install-notes ;\ - ${INSTALL_DATA} ${PREFIX}/share/postgresql/post-install-notes ~pgsql/. ;\ - ${CHOWN} -R pgsql:pgsql ~pgsql/. -.if defined(WITH_OLD_LAYOUT) - @ ${CHOWN} root:pgsql ${PREFIX}/${PG_PREFIX}lib -.endif - -post-clean: - @ ${RM} -f ${WRKDIRPREFIX}${.CURDIR}/Makefile.inc - -post-extract: ${POSTEXTRACT} - -.include <bsd.port.mk> diff --git a/databases/postgresql82-server/distinfo b/databases/postgresql82-server/distinfo deleted file mode 100644 index 23e07754313f..000000000000 --- a/databases/postgresql82-server/distinfo +++ /dev/null @@ -1,3 +0,0 @@ -MD5 (postgresql/postgresql-base-7.1.3.tar.gz) = f932dea12806972402aaaf17a2a97034 -MD5 (postgresql/postgresql-opt-7.1.3.tar.gz) = e84e9c51b31567d4571c7612e0c0fbd6 -MD5 (postgresql/postgresql-docs-7.1.3.tar.gz) = 7061ab7f7ec3c4d18f8e6cb2858896d0 diff --git a/databases/postgresql82-server/files/dot.cshrc.in b/databases/postgresql82-server/files/dot.cshrc.in deleted file mode 100644 index a326041bff7b..000000000000 --- a/databases/postgresql82-server/files/dot.cshrc.in +++ /dev/null @@ -1,13 +0,0 @@ -set path = ( %%PREFIX%%/%%PG_PREFIX%%bin $path ) - -setenv PGLIB %%PREFIX%%/%%PG_PREFIX%%lib - -# note: PGDATA can be overridden by the -D startup option -setenv PGDATA $HOME/data - -#You might want to set some locale stuff here -#setenv PGDATESTYLE ISO -#setenv LC_ALL sv_SE.ISO_8859-1 - -# if you want to make regression tests use this TZ -#setenv TZ PST8PDT diff --git a/databases/postgresql82-server/files/dot.profile.in b/databases/postgresql82-server/files/dot.profile.in deleted file mode 100644 index 4aca6aadd19a..000000000000 --- a/databases/postgresql82-server/files/dot.profile.in +++ /dev/null @@ -1,18 +0,0 @@ -# both new and old layout's paths, but new path first... -PATH=%%PREFIX%%/%%PG_PREFIX%%bin:${PATH} - -PGLIB=%%PREFIX%%/%%PG_PREFIX%%lib - -# note: PGDATA can be overridden by the -D startup option -PGDATA=${HOME}/data - -export PATH PGLIB PGDATA - -#You might want to set some locale stuff here -#PGDATESTYLE=ISO -#LC_ALL=sv_SE.ISO_8859-1 -#export PGDATESTYLE LC_ALL - -# if you want to make regression tests use this TZ -#TZ=PST8PDT -#export TZ diff --git a/databases/postgresql82-server/files/patch-aj b/databases/postgresql82-server/files/patch-aj deleted file mode 100644 index 94c0d6d79991..000000000000 --- a/databases/postgresql82-server/files/patch-aj +++ /dev/null @@ -1,118 +0,0 @@ ---- src/bin/pg_passwd/pg_passwd.c.orig Sat Mar 24 01:54:55 2001 -+++ src/bin/pg_passwd/pg_passwd.c Wed Apr 18 04:54:14 2001 -@@ -7,6 +7,12 @@ - #include <errno.h> - #include <time.h> - #include <ctype.h> -+ -+#if defined(__FreeBSD__) -+#include <pwd.h> /* defines _PASSWORD_LEN, max # of characters in a password */ -+#include <sys/time.h> /* gettimeofday for password salt */ -+#endif -+ - #define issaltchar(c) (isalnum((unsigned char) (c)) || (c) == '.' || (c) == '/') - - #ifdef HAVE_TERMIOS_H -@@ -23,18 +29,31 @@ - * We assume that the output of crypt(3) is always 13 characters, - * and that at most 8 characters can usefully be sent to it. - * -+ * For FreeBSD, take these values from /usr/include/pwd.h - * Postgres usernames are assumed to be less than NAMEDATALEN chars long. - */ -+#if defined(__FreeBSD__) -+#define CLEAR_PASSWD_LEN _PASSWORD_LEN -+#define CRYPTED_PASSWD_LEN _PASSWORD_LEN /* max length, not containing NULL */ -+#define SALT_LEN 10 -+#else - #define CLEAR_PASSWD_LEN 8 /* not including null */ - #define CRYPTED_PASSWD_LEN 13 /* not including null */ -+#define SALT_LEN 3 -+#endif -+ -+static unsigned char itoa64[] = /* 0 ... 63 => ascii - 64 */ -+ "./0123456789ABCDEFGHIJKLMNOPQRSTUVWXYZabcdefghijklmnopqrstuvwxyz"; -+ - - const char *progname; - - static void usage(void); -+static void to64(char *s, long v, int n); - static void read_pwd_file(char *filename); - static void write_pwd_file(char *filename, char *bkname); - static void encrypt_pwd(char key[CLEAR_PASSWD_LEN + 1], -- char salt[3], -+ char salt[SALT_LEN], - char passwd[CRYPTED_PASSWD_LEN + 1]); - static void prompt_for_username(char *username); - static void prompt_for_password(char *prompt, char *password); -@@ -47,6 +66,15 @@ - printf("Report bugs to <pgsql-bugs@postgresql.org>.\n"); - } - -+static void -+to64(char *s, long v, int n) -+{ -+ while (--n >= 0) { -+ *s++ = itoa64[v&0x3f]; -+ v >>= 6; -+ } -+} -+ - typedef struct - { - char *uname; -@@ -154,7 +182,7 @@ - if (q != NULL) - *(q++) = '\0'; - -- if (strlen(p) != CRYPTED_PASSWD_LEN && strcmp(p, "+") != 0) -+ if (strlen(p) > CRYPTED_PASSWD_LEN && strcmp(p, "+") != 0) - { - fprintf(stderr, "%s:%d: warning: invalid password length\n", - filename, npwds + 1); -@@ -221,15 +249,25 @@ - - static void - encrypt_pwd(char key[CLEAR_PASSWD_LEN + 1], -- char salt[3], -+ char salt[SALT_LEN], - char passwd[CRYPTED_PASSWD_LEN + 1]) - { -+#if !defined(__FreeBSD__) - int n; -- -+#endif - /* select a salt, if not already given */ - if (salt[0] == '\0') - { -+#if defined(__FreeBSD__) -+ struct timeval tv; -+ srandomdev(); -+ gettimeofday(&tv,0); -+ to64(&salt[0], random(), 3); -+ to64(&salt[3], tv.tv_usec, 3); -+ to64(&salt[6], tv.tv_sec, 2); -+ salt[8] = '\0'; - srand(time(NULL)); -+#else - do - { - n = rand() % 256; -@@ -241,6 +279,7 @@ - } while (!issaltchar(n)); - salt[1] = n; - salt[2] = '\0'; -+#endif - } - - /* get encrypted password */ -@@ -335,7 +374,7 @@ - char *filename; - char bkname[MAXPGPATH]; - char username[NAMEDATALEN]; -- char salt[3]; -+ char salt[SALT_LEN]; - char key[CLEAR_PASSWD_LEN + 1], - key2[CLEAR_PASSWD_LEN + 1]; - char e_passwd[CRYPTED_PASSWD_LEN + 1]; diff --git a/databases/postgresql82-server/files/patch-contrib-retep-build b/databases/postgresql82-server/files/patch-contrib-retep-build deleted file mode 100644 index 80f40f1cc86d..000000000000 --- a/databases/postgresql82-server/files/patch-contrib-retep-build +++ /dev/null @@ -1,37 +0,0 @@ -=================================================================== -RCS file: /home/projects/pgsql/cvsroot/pgsql/contrib/retep/build.xml,v -retrieving revision 1.4 -retrieving revision 1.5 -diff -u -r1.4 -r1.5 ---- contrib/retep/build.xml 2001/03/11 11:06:59 1.4 -+++ contrib/retep/build.xml 2001/05/16 16:20:51 1.5 -@@ -2,7 +2,7 @@ - - build file to build the donated retep tools packages - -- $Id: build.xml,v 1.4 2001/03/11 11:06:59 petere Exp $ -+ $Id: build.xml,v 1.5 2001/05/16 16:20:51 momjian Exp $ - - --> - -@@ -22,6 +22,11 @@ - <available property="xml" classname="org.xml.sax.Parser" /> - </target> - -+ <target name="warning" depends="checks" unless="jdk1.2+"> -+ <echo message="WARNING -- contributed retep tools need jdk1.2 or later -- compilation NOT done." /> -+ </target> -+ -+ - <!-- Prepares the build by creating a directory to place the class files --> - <target name="prepare"> - <mkdir dir="${dest}" /> -@@ -35,7 +40,7 @@ - </target> - - <!-- Builds the XML Tools --> -- <target name="compile" depends="checks,prepare"> -+ <target name="compile" depends="checks,prepare,warning" if="jdk1.2+"> - <javac srcdir="${src}" destdir="${dest}"> - <include name="${package}/**" /> - </javac> diff --git a/databases/postgresql82-server/files/patch-doc-makefile b/databases/postgresql82-server/files/patch-doc-makefile deleted file mode 100644 index fa27bed2af3f..000000000000 --- a/databases/postgresql82-server/files/patch-doc-makefile +++ /dev/null @@ -1,19 +0,0 @@ ---- doc/Makefile~ Sun Jan 7 03:03:22 2001 -+++ doc/Makefile Wed Apr 18 08:12:30 2001 -@@ -43,10 +43,13 @@ - gzip -d -c man.tar.gz | ( cd $(DESTDIR)$(mandir) && $(TAR) xf - ) - endif - -- - installdirs: -- $(mkinstalldirs) $(DESTDIR)$(mandir) $(DESTDIR)$(docdir)/html -- -+ifdef found_html -+ $(mkinstalldirs) $(DESTDIR)$(docdir)/html -+endif -+ifdef found_man -+ $(mkinstalldirs) $(DESTDIR)$(mandir) -+endif - - uninstall: - ifdef found_html diff --git a/databases/postgresql82-server/files/patch-jdbc-Connection b/databases/postgresql82-server/files/patch-jdbc-Connection deleted file mode 100644 index 26fbc260d639..000000000000 --- a/databases/postgresql82-server/files/patch-jdbc-Connection +++ /dev/null @@ -1,51 +0,0 @@ -=================================================================== -RCS file: /home/projects/pgsql/cvsroot/pgsql/src/interfaces/jdbc/org/postgresql/Connection.java,v -retrieving revision 1.14 -retrieving revision 1.16 -diff -u -r1.14 -r1.16 ---- src/interfaces/jdbc/org/postgresql/Connection.java 2001/01/31 08:26:01 1.14 -+++ src/interfaces/jdbc/org/postgresql/Connection.java 2001/06/01 20:57:58 1.16 -@@ -10,7 +10,7 @@ - import org.postgresql.util.*; - - /** -- * $Id: Connection.java,v 1.14 2001/01/31 08:26:01 peter Exp $ -+ * $Id: Connection.java,v 1.16 2001/06/01 20:57:58 momjian Exp $ - * - * This abstract class is used by org.postgresql.Driver to open either the JDBC1 or - * JDBC2 versions of the Connection class. -@@ -267,7 +267,8 @@ - // - firstWarning = null; - -- java.sql.ResultSet initrset = ExecSQL("set datestyle to 'ISO'; select getdatabaseencoding()"); -+ java.sql.ResultSet initrset = ExecSQL("set datestyle to 'ISO'; " + -+ "select case when pg_encoding_to_char(1) = 'SQL_ASCII' then 'UNKNOWN' else getdatabaseencoding() end"); - - String dbEncoding = null; - //retrieve DB properties -@@ -307,9 +308,23 @@ - } else if (dbEncoding.equals("EUC_TW")) { - dbEncoding = "EUC_TW"; - } else if (dbEncoding.equals("KOI8")) { -- dbEncoding = "KOI8_R"; -+ // try first if KOI8_U is present, it's a superset of KOI8_R -+ try { -+ dbEncoding = "KOI8_U"; -+ "test".getBytes(dbEncoding); -+ } -+ catch(UnsupportedEncodingException uee) { -+ // well, KOI8_U is still not in standard JDK, falling back to KOI8_R :( -+ dbEncoding = "KOI8_R"; -+ } -+ - } else if (dbEncoding.equals("WIN")) { - dbEncoding = "Cp1252"; -+ } else if (dbEncoding.equals("UNKNOWN")) { -+ //This isn't a multibyte database so we don't have an encoding to use -+ //We leave dbEncoding null which will cause the default encoding for the -+ //JVM to be used -+ dbEncoding = null; - } else { - dbEncoding = null; - } diff --git a/databases/postgresql82-server/files/patch-jdbc-build-xml b/databases/postgresql82-server/files/patch-jdbc-build-xml deleted file mode 100644 index b1c703a9c978..000000000000 --- a/databases/postgresql82-server/files/patch-jdbc-build-xml +++ /dev/null @@ -1,10 +0,0 @@ ---- src/interfaces/jdbc/build.xml~ Fri Mar 16 22:50:43 2001 -+++ src/interfaces/jdbc/build.xml Wed Apr 18 08:57:57 2001 -@@ -120,6 +120,7 @@ - <javac srcdir="${src}" destdir="${dest}"> - <include name="example/**" /> - <exclude name="example/corba/**"/> -+ <exclude name="example/blobtest.java" unless="jdk1.2+"/> - </javac> - </target> - diff --git a/databases/postgresql82-server/files/patch-jdbc-getdate b/databases/postgresql82-server/files/patch-jdbc-getdate deleted file mode 100644 index 744407ae14b5..000000000000 --- a/databases/postgresql82-server/files/patch-jdbc-getdate +++ /dev/null @@ -1,34 +0,0 @@ ---- src/interfaces/jdbc/org/postgresql/jdbc2/ResultSet.java~ Fri Feb 23 19:12:23 2001 -+++ src/interfaces/jdbc/org/postgresql/jdbc2/ResultSet.java Wed May 9 04:31:11 2001 -@@ -423,8 +423,13 @@ - String s = getString(columnIndex); - if(s==null) - return null; -- -- return java.sql.Date.valueOf(s); -+ // length == 10: SQL Date -+ // length > 10: SQL Timestamp, assumes PGDATESTYLE=ISO -+ try { -+ return java.sql.Date.valueOf((s.length() == 10) ? s : s.substring(0,10)); -+ } catch (NumberFormatException e) { -+ throw new PSQLException("postgresql.res.baddate", s); -+ } - } - - /** -@@ -441,8 +446,13 @@ - - if(s==null) - return null; // SQL NULL -- -- return java.sql.Time.valueOf(s); -+ // length == 8: SQL Time -+ // length > 8: SQL Timestamp -+ try { -+ return java.sql.Time.valueOf((s.length() == 8) ? s : s.substring(11,19)); -+ } catch (NumberFormatException e) { -+ throw new PSQLException("postgresql.res.badtime",s); -+ } - } - - /** diff --git a/databases/postgresql82-server/files/pgsql.sh.tmpl b/databases/postgresql82-server/files/pgsql.sh.tmpl deleted file mode 100644 index cd78771219ed..000000000000 --- a/databases/postgresql82-server/files/pgsql.sh.tmpl +++ /dev/null @@ -1,36 +0,0 @@ -#!/bin/sh - -# $FreeBSD$ -# -# For postmaster startup options, edit $PGDATA/postgresql.conf - -PGBIN=%%PREFIX%%/%%PG_PREFIX%%bin - -case $1 in -start) - [ -d %%PREFIX%%/%%PG_PREFIX%%lib ] && /sbin/ldconfig -m %%PREFIX%%/%%PG_PREFIX%%lib - [ -x ${PGBIN}/pg_ctl ] && { - su -l pgsql -c \ - '[ -d ${PGDATA} ] && exec %%PREFIX%%/%%PG_PREFIX%%bin/pg_ctl start -s -w -l ~pgsql/errlog' - echo -n ' pgsql' - } - ;; - -stop) - [ -x ${PGBIN}/pg_ctl ] && { - su -l pgsql -c 'exec %%PREFIX%%/%%PG_PREFIX%%bin/pg_ctl stop -s -m fast' - echo -n ' pgsql' - } - ;; - -status) - [ -x ${PGBIN}/pg_ctl ] && { - exec su -l pgsql -c 'exec %%PREFIX%%/%%PG_PREFIX%%bin/pg_ctl status' - } - ;; - -*) - echo "usage: `basename $0` {start|stop|status}" >&2 - exit 64 - ;; -esac diff --git a/databases/postgresql82-server/files/pkgIndex.tcl.in b/databases/postgresql82-server/files/pkgIndex.tcl.in deleted file mode 100644 index bd8329b15c69..000000000000 --- a/databases/postgresql82-server/files/pkgIndex.tcl.in +++ /dev/null @@ -1,4 +0,0 @@ -# Package-index file for Pgtcl-package. Enables you to load PostgreSQL -# interface functions right into you TCL-interpreter as simply as -# package require Pgtcl -package ifneeded Pgtcl 1.3 "load %%PREFIX%%/lib/libpgtcl.so" diff --git a/databases/postgresql82-server/files/post-install-notes b/databases/postgresql82-server/files/post-install-notes deleted file mode 100644 index 9347fc51c247..000000000000 --- a/databases/postgresql82-server/files/post-install-notes +++ /dev/null @@ -1,25 +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/TK support, you can use the pgaccess -utility to get a TCL/TK based database frontend for database -operations. You do NOT need to install the pgaccess port separately. - -If you built in the TCL support, you can load the Pg package into your -TCL scripts as easily as ``package require Pgtcl''. - -If you built with Java support, add -/usr/local/share/java/classes/postgresql.jar to your classpath. - -If you have many tables and many clients running, consider raising -kern.maxfiles using sysctl(8). - -Use createlang(1) to install languages into your database. -Supported languages are 'plpgsql', 'pltcl', 'pltclu', and 'plperl'. diff --git a/databases/postgresql82-server/files/pre-install-notes b/databases/postgresql82-server/files/pre-install-notes deleted file mode 100644 index 697ce3cedb79..000000000000 --- a/databases/postgresql82-server/files/pre-install-notes +++ /dev/null @@ -1,21 +0,0 @@ - * IMPORTANT UPGRADE NOTICE * IMPORTANT UPGRADE NOTICE * - -The PostgreSQL port now obeys hier(7) by default, which means that it -installs into: - -%%PREFIX%%/bin -%%PREFIX%%/lib -%%PREFIX%%/include/pgsql - -You *must* move away your old installation to avoid problems with -ldconfig(8) and user's PATH:s. If you rather install using the -old-fashion layout, cancel at next screen and run make as: - -$ make -DWITH_OLD_LAYOUT - -As always, you *must* dump existing databases before stopping and -removing your old postgresql, as part of the update. This is *NOT* -done by this port! - -If you want JAVA support, I will try to determine your JAVA_HOME using -javavmwrapper. If you want a different JVM, please set JAVA_HOME. 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 463e4e49815f..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 cfc983fc2f66..000000000000 --- a/databases/postgresql82-server/pkg-install +++ /dev/null @@ -1,46 +0,0 @@ -#! /bin/sh - -# $FreeBSD$ - -PATH=/bin:/usr/sbin - -DB_DIR=${PKG_PREFIX}/pgsql - -case $2 in -PRE-INSTALL) - USER=pgsql - GROUP=${USER} - UID=70 - 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} -c "PostgreSQL Daemon" - then - echo "Added user \"${USER}\"." - else - echo "Adding user \"${USER}\" failed..." - exit 1 - fi - fi - - if ! [ -x ~pgsql ] ; then - mkdir -p ${DB_DIR} - chown pgsql:pgsql ${DB_DIR} - fi - ;; - -esac diff --git a/databases/postgresql82-server/pkg-message b/databases/postgresql82-server/pkg-message deleted file mode 100644 index 1a3f9f1e4147..000000000000 --- a/databases/postgresql82-server/pkg-message +++ /dev/null @@ -1,38 +0,0 @@ - -====================================================================== - - * IMPORTANT UPGRADE NOTICE * IMPORTANT UPGRADE NOTICE * - -The PostgreSQL port now obeys hier(7) by default, which means that it -installs into: - -/usr/local/bin -/usr/local/lib -/usr/local/include/pgsql - -You *must* move away your old installation from users' and -ldconfig(8)'s PATHs. If you rather install using the old-fashion -layout, cancel now and build the port with "make -DWITH_OLD_LAYOUT". - -The pgsql user's home dir is /usr/local/pgsql by default, but can be -changed with for example chpass(1). Datadir defaults to ~pgsql/data, -but can be changed by modifying the ~pgsql/.profile script. - -As always, backup your data before upgrading. If the upgrade leads to -a higher minor revision (i.e. 7.0.x -> 7.1.x), a dump and restore of -all databases is required. This is *NOT* done by the port! - -====================================================================== - -To initialize the database, you should run initdb as the "pgsql" user. - -Example: - - su -l pgsql -c initdb - -You can then start PostgreSQL by running: - - /usr/local/etc/rc.d/010.pgsql.sh start - -For postmaster settings, see ~pgsql/data/postgresql.conf -====================================================================== diff --git a/databases/postgresql82-server/pkg-plist b/databases/postgresql82-server/pkg-plist deleted file mode 100644 index a7493ddb7898..000000000000 --- a/databases/postgresql82-server/pkg-plist +++ /dev/null @@ -1,91 +0,0 @@ -%%PG_PREFIX%%bin/postmaster -%%PG_PREFIX%%bin/postgres -%%PG_PREFIX%%bin/ecpg -%%PG_PREFIX%%bin/initdb -%%PG_PREFIX%%bin/initlocation -%%PG_PREFIX%%bin/ipcclean -%%PG_PREFIX%%bin/pg_ctl -%%PG_PREFIX%%bin/pg_dump -%%PG_PREFIX%%bin/pg_restore -%%PG_PREFIX%%bin/pg_encoding -%%PG_PREFIX%%bin/pg_dumpall -%%PG_PREFIX%%bin/pg_id -%%PG_PREFIX%%bin/pg_passwd -%%PG_PREFIX%%bin/psql -%%PG_PREFIX%%bin/createdb -%%PG_PREFIX%%bin/dropdb -%%PG_PREFIX%%bin/createuser -%%PG_PREFIX%%bin/dropuser -%%PG_PREFIX%%bin/droplang -%%PG_PREFIX%%bin/vacuumdb -%%PG_PREFIX%%bin/createlang -%%PG_PREFIX%%bin/pg_config -etc/rc.d/010.pgsql.sh -%%PG_INCLUDE%%/lib/dllist.h -@dirrm %%PG_INCLUDE%%/lib -%%PG_INCLUDE%%/libpq/pqcomm.h -%%PG_INCLUDE%%/libpq/libpq-fs.h -@dirrm %%PG_INCLUDE%%/libpq -%%PG_INCLUDE%%/libpq++/pgconnection.h -%%PG_INCLUDE%%/libpq++/pgdatabase.h -%%PG_INCLUDE%%/libpq++/pgtransdb.h -%%PG_INCLUDE%%/libpq++/pgcursordb.h -%%PG_INCLUDE%%/libpq++/pglobject.h -@dirrm %%PG_INCLUDE%%/libpq++ -%%PG_INCLUDE%%/c.h -%%PG_INCLUDE%%/postgres_ext.h -%%PG_INCLUDE%%/postgres_fe.h -%%PG_INCLUDE%%/os.h -%%PG_INCLUDE%%/config.h -%%PG_INCLUDE%%/libpq-fe.h -%%PG_INCLUDE%%/libpq-int.h -%%PG_INCLUDE%%/pqexpbuffer.h -%%PG_INCLUDE%%/ecpgerrno.h -%%PG_INCLUDE%%/ecpglib.h -%%PG_INCLUDE%%/ecpgtype.h -%%PG_INCLUDE%%/sqlca.h -%%PG_INCLUDE%%/sql3types.h -%%PG_INCLUDE%%/libpgeasy.h -%%PG_INCLUDE%%/libpq++.h -@dirrm %%PG_INCLUDE%% -%%PG_PREFIX%%lib/libpq.so -%%PG_PREFIX%%lib/libpq.a -%%PG_PREFIX%%lib/libpq.so.2 -%%PG_PREFIX%%lib/libecpg.so -%%PG_PREFIX%%lib/libecpg.a -%%PG_PREFIX%%lib/libecpg.so.3 -%%PG_PREFIX%%lib/libpgeasy.so -%%PG_PREFIX%%lib/libpgeasy.a -%%PG_PREFIX%%lib/libpgeasy.so.2 -%%PG_PREFIX%%lib/libpq++.so -%%PG_PREFIX%%lib/libpq++.a -%%PG_PREFIX%%lib/libpq++.so.3 -%%PG_PREFIX%%lib/plpgsql.so -share/postgresql/global.bki -share/postgresql/global.description -share/postgresql/post-install-notes -share/postgresql/template1.bki -share/postgresql/template1.description -share/postgresql/pg_hba.conf.sample -share/postgresql/pg_ident.conf.sample -share/postgresql/postgresql.conf.sample -@unexec if cmp -s ~pgsql/.profile %D/share/postgresql/dot.profile.dist; then rm -f ~pgsql/.profile; fi -@unexec if cmp -s ~pgsql/.cshrc %D/share/postgresql/dot.cshrc.dist; then rm -f ~pgsql/.cshrc; fi -@unexec [ -f ~pgsql/dot.profile.dist ] && rm ~pgsql/dot.profile.dist -@unexec [ -f ~pgsql/dot.cshrc.dist ] && rm ~pgsql/dot.cshrc.dist -@exec [ -f %D/share/postgresql/post-install-notes ] && cp %D/share/postgresql/post-install-notes ~pgsql && chown pgsql:pgsql ~pgsql/post-install-notes -@unexec [ -f ~pgsql/post-install-notes ] && rm ~pgsql/post-install-notes -share/postgresql/dot.profile.dist -share/postgresql/dot.cshrc.dist -@dirrm share/postgresql -@exec [ -f %D/share/postgresql/dot.profile.dist ] && cp %D/share/postgresql/dot.profile.dist ~pgsql/. -@exec [ -f %D/share/postgresql/dot.cshrc.dist ] && cp %D/share/postgresql/dot.cshrc.dist ~pgsql/. -@exec [ -f ~pgsql/.profile ] || (cp %D/share/postgresql/dot.profile.dist ~pgsql/.profile && chown pgsql:pgsql ~pgsql/.profile) -@exec [ -f ~pgsql/.cshrc ] || (cp %D/share/postgresql/dot.cshrc.dist ~pgsql/.cshrc && chown pgsql:pgsql ~pgsql/.cshrc) -@unexec [ X%%PG_PREFIX%% != X ] && rmdir %D/%%PG_PREFIX%%bin 2> /dev/null || true -@unexec [ X%%PG_PREFIX%% != X ] && rmdir %D/%%PG_PREFIX%%lib 2> /dev/null || true -@unexec [ X%%PG_PREFIX%% != X ] && rmdir %D/%%PG_PREFIX%%man/man1 2> /dev/null || true -@unexec [ X%%PG_PREFIX%% != X ] && rmdir %D/%%PG_PREFIX%%man/manl 2> /dev/null || true -@unexec [ X%%PG_PREFIX%% != X ] && rmdir %D/%%PG_PREFIX%%man 2> /dev/null || true -@unexec rmdir ~pgsql 2> /dev/null || true -@unexec echo "Warning: If you will *NOT* use this package anymore, please remove %D/pgsql and the pgsql user manually." diff --git a/databases/postgresql82-server/pkg-plist.doc b/databases/postgresql82-server/pkg-plist.doc deleted file mode 100644 index c4d50ecb24f0..000000000000 --- a/databases/postgresql82-server/pkg-plist.doc +++ /dev/null @@ -1,494 +0,0 @@ -share/doc/postgresql/html/admin.html -share/doc/postgresql/html/advanced.html -share/doc/postgresql/html/altern-locations.html -share/doc/postgresql/html/app-createdb.html -share/doc/postgresql/html/app-createlang.html -share/doc/postgresql/html/app-createuser.html -share/doc/postgresql/html/app-dropdb.html -share/doc/postgresql/html/app-droplang.html -share/doc/postgresql/html/app-dropuser.html -share/doc/postgresql/html/app-ecpg.html -share/doc/postgresql/html/app-initdb.html -share/doc/postgresql/html/app-initlocation.html -share/doc/postgresql/html/app-ipcclean.html -share/doc/postgresql/html/app-pg-ctl.html -share/doc/postgresql/html/app-pg-dumpall.html -share/doc/postgresql/html/app-pg-passwd.html -share/doc/postgresql/html/app-pgaccess.html -share/doc/postgresql/html/app-pgadmin.html -share/doc/postgresql/html/app-pgconfig.html -share/doc/postgresql/html/app-pgdump.html -share/doc/postgresql/html/app-pgrestore.html -share/doc/postgresql/html/app-pgtclsh.html -share/doc/postgresql/html/app-pgtksh.html -share/doc/postgresql/html/app-postgres.html -share/doc/postgresql/html/app-postmaster.html -share/doc/postgresql/html/app-psql.html -share/doc/postgresql/html/app-vacuumdb.html -share/doc/postgresql/html/applevel-consistency.html -share/doc/postgresql/html/arch-pg.html -share/doc/postgresql/html/arch.html -share/doc/postgresql/html/arrays.html -share/doc/postgresql/html/auth-methods.html -share/doc/postgresql/html/backup-file.html -share/doc/postgresql/html/backup.html -share/doc/postgresql/html/biblio.html -share/doc/postgresql/html/bki-commands.html -share/doc/postgresql/html/bki-example.html -share/doc/postgresql/html/bki.html -share/doc/postgresql/html/bug-reporting.html -share/doc/postgresql/html/catalog-pg-aggregate.html -share/doc/postgresql/html/catalog-pg-attrdef.html -share/doc/postgresql/html/catalog-pg-attribute.html -share/doc/postgresql/html/catalog-pg-class.html -share/doc/postgresql/html/catalog-pg-database.html -share/doc/postgresql/html/catalog-pg-description.html -share/doc/postgresql/html/catalog-pg-group.html -share/doc/postgresql/html/catalog-pg-index.html -share/doc/postgresql/html/catalog-pg-inherits.html -share/doc/postgresql/html/catalog-pg-language.html -share/doc/postgresql/html/catalog-pg-operator.html -share/doc/postgresql/html/catalog-pg-proc.html -share/doc/postgresql/html/catalog-pg-relcheck.html -share/doc/postgresql/html/catalog-pg-shadow.html -share/doc/postgresql/html/catalog-pg-type.html -share/doc/postgresql/html/catalogs.html -share/doc/postgresql/html/charset.html -share/doc/postgresql/html/client-authentication-problems.html -share/doc/postgresql/html/client-authentication.html -share/doc/postgresql/html/compiler.html -share/doc/postgresql/html/connect-estab.html -share/doc/postgresql/html/creating-cluster.html -share/doc/postgresql/html/cvs-tree.html -share/doc/postgresql/html/cvs.html -share/doc/postgresql/html/cvsup.html -share/doc/postgresql/html/datatype-bit.html -share/doc/postgresql/html/datatype-boolean.html -share/doc/postgresql/html/datatype-character.html -share/doc/postgresql/html/datatype-datetime.html -share/doc/postgresql/html/datatype-geometric.html -share/doc/postgresql/html/datatype-money.html -share/doc/postgresql/html/ecpg.html -share/doc/postgresql/html/datatype-net-types.html -share/doc/postgresql/html/datatype.html -share/doc/postgresql/html/datetime-appendix.html -share/doc/postgresql/html/db-accessing.html -share/doc/postgresql/html/db-destroy.html -share/doc/postgresql/html/developer.html -share/doc/postgresql/html/doc-build.html -share/doc/postgresql/html/doc-sources.html -share/doc/postgresql/html/doc-toolsets.html -share/doc/postgresql/html/docguide.html -share/doc/postgresql/html/ecpg-concept.html -share/doc/postgresql/html/ecpg-develop.html -share/doc/postgresql/html/ecpg-limitations.html -share/doc/postgresql/html/ecpg-porting.html -share/doc/postgresql/html/ecpg-use.html -share/doc/postgresql/html/executor.html -share/doc/postgresql/html/explicit-joins.html -share/doc/postgresql/html/extend.html -share/doc/postgresql/html/functions-datetime.html -share/doc/postgresql/html/functions-aggregate.html -share/doc/postgresql/html/functions-comparison.html -share/doc/postgresql/html/functions-conditional.html -share/doc/postgresql/html/functions-formatting.html -share/doc/postgresql/html/functions-geometry.html -share/doc/postgresql/html/functions-matching.html -share/doc/postgresql/html/functions-math.html -share/doc/postgresql/html/functions-misc.html -share/doc/postgresql/html/functions-net.html -share/doc/postgresql/html/functions-string.html -share/doc/postgresql/html/functions.html -share/doc/postgresql/html/geqo-intro2.html -share/doc/postgresql/html/geqo-pg-intro.html -share/doc/postgresql/html/geqo.html -share/doc/postgresql/html/gist.html -share/doc/postgresql/html/groups.html -share/doc/postgresql/html/history.html -share/doc/postgresql/html/index.html -share/doc/postgresql/html/indexcost.html -share/doc/postgresql/html/indices-functional.html -share/doc/postgresql/html/indices-multicolumn.html -share/doc/postgresql/html/indices-opclass.html -share/doc/postgresql/html/indices-types.html -share/doc/postgresql/html/indices-unique.html -share/doc/postgresql/html/indices.html -share/doc/postgresql/html/inherit.html -share/doc/postgresql/html/install-getsource.html -share/doc/postgresql/html/install-post.html -share/doc/postgresql/html/install-procedure.html -share/doc/postgresql/html/install-requirements.html -share/doc/postgresql/html/install-upgrading.html -share/doc/postgresql/html/install-win32.html -share/doc/postgresql/html/installation.html -share/doc/postgresql/html/jdbc-ext.html -share/doc/postgresql/html/jdbc-lo.html -share/doc/postgresql/html/jdbc.html -share/doc/postgresql/html/jdbc-query.html -share/doc/postgresql/html/jdbc-reading.html -share/doc/postgresql/html/jdbc-thread.html -share/doc/postgresql/html/jdbc-update.html -share/doc/postgresql/html/jdbc-use.html -share/doc/postgresql/html/kernel-resources.html -share/doc/postgresql/html/keys.html -share/doc/postgresql/html/largeobjects.html -share/doc/postgresql/html/libpgtcl-examples.html -share/doc/postgresql/html/libpgtcl-ref.html -share/doc/postgresql/html/libpq-async.html -share/doc/postgresql/html/libpq-control.html -share/doc/postgresql/html/libpq-copy.html -share/doc/postgresql/html/libpq-envars.html -share/doc/postgresql/html/libpq-example.html -share/doc/postgresql/html/libpq-exec.html -share/doc/postgresql/html/libpq-fastpath.html -share/doc/postgresql/html/libpq-notify.html -share/doc/postgresql/html/libpq.html -share/doc/postgresql/html/libpq-threading.html -share/doc/postgresql/html/libpq-trace.html -share/doc/postgresql/html/libpqplusplus.html -share/doc/postgresql/html/libpqpp-classes.html -share/doc/postgresql/html/libpqpp-connect.html -share/doc/postgresql/html/libpqpp-copy.html -share/doc/postgresql/html/libpqpp-exec.html -share/doc/postgresql/html/libpqpp-notify.html -share/doc/postgresql/html/lisp.html -share/doc/postgresql/html/ln11330.html -share/doc/postgresql/html/ln1274.html -share/doc/postgresql/html/ln15181.html -share/doc/postgresql/html/ln24.html -share/doc/postgresql/html/ln25010.html -share/doc/postgresql/html/ln37176.html -share/doc/postgresql/html/ln8.html -share/doc/postgresql/html/lo-funcs.html -share/doc/postgresql/html/lo-implementation.html -share/doc/postgresql/html/lo-interfaces.html -share/doc/postgresql/html/lo-libpq.html -share/doc/postgresql/html/lo-sample.html -share/doc/postgresql/html/locking-indices.html -share/doc/postgresql/html/locking-tables.html -share/doc/postgresql/html/manage-ag-accessdb.html -share/doc/postgresql/html/manage-ag-dropdb.html -share/doc/postgresql/html/manage.html -share/doc/postgresql/html/managing-databases.html -share/doc/postgresql/html/migration.html -share/doc/postgresql/html/more-advanced.html -share/doc/postgresql/html/multibyte.html -share/doc/postgresql/html/mvcc.html -share/doc/postgresql/html/non-atomic-values.html -share/doc/postgresql/html/notation.html -share/doc/postgresql/html/odbc-applixware.html -share/doc/postgresql/html/odbc-config.html -share/doc/postgresql/html/odbc-install.html -share/doc/postgresql/html/odbc-windows.html -share/doc/postgresql/html/odbc.html -share/doc/postgresql/html/organization.html -share/doc/postgresql/html/overview.html -share/doc/postgresql/html/page.html -share/doc/postgresql/html/parser-stage.html -share/doc/postgresql/html/partial-index.html -share/doc/postgresql/html/performance-tips.html -share/doc/postgresql/html/perm-functions.html -share/doc/postgresql/html/pg-system-catalogs.html -share/doc/postgresql/html/pgeasy-chapter.html -share/doc/postgresql/html/pgtcl-pgconndefaults.html -share/doc/postgresql/html/pgtcl-pgconnect.html -share/doc/postgresql/html/pgtcl-pgdisconnect.html -share/doc/postgresql/html/pgtcl-pgexec.html -share/doc/postgresql/html/pgtcl-pglisten.html -share/doc/postgresql/html/pgtcl-pgloclose.html -share/doc/postgresql/html/pgtcl-pglocreat.html -share/doc/postgresql/html/pgtcl-pgloexport.html -share/doc/postgresql/html/pgtcl-pgloimport.html -share/doc/postgresql/html/pgtcl-pglolseek.html -share/doc/postgresql/html/pgtcl-pgloopen.html -share/doc/postgresql/html/pgtcl-pgloread.html -share/doc/postgresql/html/pgtcl-pglotell.html -share/doc/postgresql/html/pgtcl-pglounlink.html -share/doc/postgresql/html/pgtcl-pglowrite.html -share/doc/postgresql/html/pgtcl-pgresult.html -share/doc/postgresql/html/pgtcl-pgselect.html -share/doc/postgresql/html/pgtcl.html -share/doc/postgresql/html/planner-optimizer.html -share/doc/postgresql/html/plperl-use.html -share/doc/postgresql/html/plperl.html -share/doc/postgresql/html/plpgsql-description.html -share/doc/postgresql/html/plpgsql-examples.html -share/doc/postgresql/html/plpgsql-porting.html -share/doc/postgresql/html/plpgsql-trigger.html -share/doc/postgresql/html/plpgsql.html -share/doc/postgresql/html/pltcl-description.html -share/doc/postgresql/html/pltcl.html -share/doc/postgresql/html/populate.html -share/doc/postgresql/html/postgres.html -share/doc/postgresql/html/postmaster-shutdown.html -share/doc/postgresql/html/postmaster-start.html -share/doc/postgresql/html/preface.html -share/doc/postgresql/html/privileges.html -share/doc/postgresql/html/programmer-client.html -share/doc/postgresql/html/programmer-pl.html -share/doc/postgresql/html/programmer-server.html -share/doc/postgresql/html/programmer.html -share/doc/postgresql/html/protocol-message-formats.html -share/doc/postgresql/html/protocol-message-types.html -share/doc/postgresql/html/protocol-protocol.html -share/doc/postgresql/html/protocol.html -share/doc/postgresql/html/pygresql.html -share/doc/postgresql/html/pygresql-close.html -share/doc/postgresql/html/pygresql-connect.html -share/doc/postgresql/html/pygresql-db-api.html -share/doc/postgresql/html/pygresql-db-clear.html -share/doc/postgresql/html/pygresql-db-delete.html -share/doc/postgresql/html/pygresql-db-get-attnames.html -share/doc/postgresql/html/pygresql-db-get-databases.html -share/doc/postgresql/html/pygresql-db-get-tables.html -share/doc/postgresql/html/pygresql-db-get.html -share/doc/postgresql/html/pygresql-db-insert.html -share/doc/postgresql/html/pygresql-db-pkey.html -share/doc/postgresql/html/pygresql-db-update.html -share/doc/postgresql/html/pygresql-endcopy.html -share/doc/postgresql/html/pygresql-fileno.html -share/doc/postgresql/html/pygresql-get-defbase.html -share/doc/postgresql/html/pygresql-get-defhost.html -share/doc/postgresql/html/pygresql-get-defopt.html -share/doc/postgresql/html/pygresql-get-defport.html -share/doc/postgresql/html/pygresql-get-deftty.html -share/doc/postgresql/html/pygresql-getline.html -share/doc/postgresql/html/pygresql-getlo.html -share/doc/postgresql/html/pygresql-getnotify.html -share/doc/postgresql/html/pygresql-inserttable.html -share/doc/postgresql/html/pygresql-locreate.html -share/doc/postgresql/html/pygresql-loimport.html -share/doc/postgresql/html/pygresql-pg-db.html -share/doc/postgresql/html/pygresql-pg-functions.html -share/doc/postgresql/html/pygresql-pg-pglarge.html -share/doc/postgresql/html/pygresql-pg-pgobject.html -share/doc/postgresql/html/pygresql-pg-pgqueryobject.html -share/doc/postgresql/html/pygresql-pglargeobject-close.html -share/doc/postgresql/html/pygresql-pglargeobject-export.html -share/doc/postgresql/html/pygresql-pglargeobject-open.html -share/doc/postgresql/html/pygresql-pglargeobject-read.html -share/doc/postgresql/html/pygresql-pglargeobject-seek.html -share/doc/postgresql/html/pygresql-pglargeobject-size.html -share/doc/postgresql/html/pygresql-pglargeobject-tell.html -share/doc/postgresql/html/pygresql-pglargeobject-unlink.html -share/doc/postgresql/html/pygresql-pglargeobject-write.html -share/doc/postgresql/html/pygresql-pgqueryobject-dictresult.html -share/doc/postgresql/html/pygresql-pgqueryobject-fieldname.html -share/doc/postgresql/html/query.html -share/doc/postgresql/html/pygresql-pgqueryobject-fieldnum.html -share/doc/postgresql/html/pygresql-pgqueryobject-getresult.html -share/doc/postgresql/html/pygresql-pgqueryobject-listfields.html -share/doc/postgresql/html/pygresql-pgqueryobject-ntuples.html -share/doc/postgresql/html/pygresql-putline.html -share/doc/postgresql/html/pygresql-query.html -share/doc/postgresql/html/pygresql-reset.html -share/doc/postgresql/html/pygresql-set-defbase.html -share/doc/postgresql/html/pygresql-set-defhost.html -share/doc/postgresql/html/pygresql-set-defopt.html -share/doc/postgresql/html/pygresql-set-defport.html -share/doc/postgresql/html/pygresql-set-deftty.html -share/doc/postgresql/html/queries-limit.html -share/doc/postgresql/html/queries-order.html -share/doc/postgresql/html/queries-select-lists.html -share/doc/postgresql/html/queries-union.html -share/doc/postgresql/html/queries.html -share/doc/postgresql/html/query-agg.html -share/doc/postgresql/html/query-concepts.html -share/doc/postgresql/html/query-delete.html -share/doc/postgresql/html/query-join.html -share/doc/postgresql/html/query-populate.html -share/doc/postgresql/html/query-query.html -share/doc/postgresql/html/query-selectinto.html -share/doc/postgresql/html/query-table.html -share/doc/postgresql/html/query-update.html -share/doc/postgresql/html/recode.html -share/doc/postgresql/html/recovery.html -share/doc/postgresql/html/reference-client.html -share/doc/postgresql/html/reference-server.html -share/doc/postgresql/html/reference.html -share/doc/postgresql/html/regress-platform.html -share/doc/postgresql/html/regress.html -share/doc/postgresql/html/release-0-01.html -share/doc/postgresql/html/release-0-02.html -share/doc/postgresql/html/release-0-03.html -share/doc/postgresql/html/release-1-0.html -share/doc/postgresql/html/release-1-01.html -share/doc/postgresql/html/release-1-02.html -share/doc/postgresql/html/release-1-09.html -share/doc/postgresql/html/release-6-0.html -share/doc/postgresql/html/release-6-1-1.html -share/doc/postgresql/html/release-6-1.html -share/doc/postgresql/html/release-6-2-1.html -share/doc/postgresql/html/release-6-2.html -share/doc/postgresql/html/release-6-3-1.html -share/doc/postgresql/html/release-6-3-2.html -share/doc/postgresql/html/release-6-3.html -share/doc/postgresql/html/release-6-4-1.html -share/doc/postgresql/html/release-6-4-2.html -share/doc/postgresql/html/release-6-4.html -share/doc/postgresql/html/release-6-5-1.html -share/doc/postgresql/html/release-6-5-2.html -share/doc/postgresql/html/release-6-5-3.html -share/doc/postgresql/html/release-6-5.html -share/doc/postgresql/html/release-7-0-1.html -share/doc/postgresql/html/release-7-0-2.html -share/doc/postgresql/html/release-7-0-3.html -share/doc/postgresql/html/release-7-0.html -share/doc/postgresql/html/release-7-1.html -share/doc/postgresql/html/release-7-1-1.html -share/doc/postgresql/html/release-7-1-2.html -share/doc/postgresql/html/release.html -share/doc/postgresql/html/relmodel-formal.html -share/doc/postgresql/html/relmodel-oper.html -share/doc/postgresql/html/resources.html -share/doc/postgresql/html/rule-system.html -share/doc/postgresql/html/rules-insert.html -share/doc/postgresql/html/rules-permissions.html -share/doc/postgresql/html/rules-triggers.html -share/doc/postgresql/html/rules-views.html -share/doc/postgresql/html/rules.html -share/doc/postgresql/html/runtime-config.html -share/doc/postgresql/html/runtime.html -share/doc/postgresql/html/source.html -share/doc/postgresql/html/spi-examples.html -share/doc/postgresql/html/spi-interface-support.html -share/doc/postgresql/html/spi-memory.html -share/doc/postgresql/html/spi-spiconnect.html -share/doc/postgresql/html/spi-spicopytuple.html -share/doc/postgresql/html/spi-spiexec.html -share/doc/postgresql/html/spi-spiexecp.html -share/doc/postgresql/html/spi-spifinish.html -share/doc/postgresql/html/spi-spifname.html -share/doc/postgresql/html/spi-spifnumber.html -share/doc/postgresql/html/spi-spigetbinval.html -share/doc/postgresql/html/spi-spigetrelname.html -share/doc/postgresql/html/spi-spigettype.html -share/doc/postgresql/html/spi-spigettypeid.html -share/doc/postgresql/html/spi-spigetvalue.html -share/doc/postgresql/html/spi-spimodifytuple.html -share/doc/postgresql/html/spi-spipalloc.html -share/doc/postgresql/html/spi-spipfree.html -share/doc/postgresql/html/spi-spiprepare.html -share/doc/postgresql/html/spi-spirepalloc.html -share/doc/postgresql/html/spi-spisaveplan.html -share/doc/postgresql/html/spi-visibility.html -share/doc/postgresql/html/spi.html -share/doc/postgresql/html/sql-abort.html -share/doc/postgresql/html/sql-altergroup.html -share/doc/postgresql/html/sql-altertable.html -share/doc/postgresql/html/sql-alteruser.html -share/doc/postgresql/html/sql-begin.html -share/doc/postgresql/html/sql-checkpoint.html -share/doc/postgresql/html/sql-close.html -share/doc/postgresql/html/sql-cluster.html -share/doc/postgresql/html/sql-commands.html -share/doc/postgresql/html/sql-comment.html -share/doc/postgresql/html/sql-commit.html -share/doc/postgresql/html/sql-copy.html -share/doc/postgresql/html/sql-createaggregate.html -share/doc/postgresql/html/sql-createconstraint.html -share/doc/postgresql/html/sql-createdatabase.html -share/doc/postgresql/html/sql-createfunction.html -share/doc/postgresql/html/sql-creategroup.html -share/doc/postgresql/html/sql-createindex.html -share/doc/postgresql/html/sql-createlanguage.html -share/doc/postgresql/html/sql-createoperator.html -share/doc/postgresql/html/sql-createrule.html -share/doc/postgresql/html/sql-createsequence.html -share/doc/postgresql/html/sql-createtable.html -share/doc/postgresql/html/sql-createtableas.html -share/doc/postgresql/html/sql-createtrigger.html -share/doc/postgresql/html/sql-createtype.html -share/doc/postgresql/html/sql-createuser.html -share/doc/postgresql/html/sql-createview.html -share/doc/postgresql/html/sql-declare.html -share/doc/postgresql/html/sql-delete.html -share/doc/postgresql/html/sql-dropaggregate.html -share/doc/postgresql/html/sql-dropdatabase.html -share/doc/postgresql/html/sql-dropfunction.html -share/doc/postgresql/html/sql-dropgroup.html -share/doc/postgresql/html/sql-dropindex.html -share/doc/postgresql/html/sql-droplanguage.html -share/doc/postgresql/html/sql-dropoperator.html -share/doc/postgresql/html/sql-droprule.html -share/doc/postgresql/html/sql-dropsequence.html -share/doc/postgresql/html/sql-droptable.html -share/doc/postgresql/html/sql-droptrigger.html -share/doc/postgresql/html/sql-droptype.html -share/doc/postgresql/html/sql-dropuser.html -share/doc/postgresql/html/sql-dropview.html -share/doc/postgresql/html/sql-end.html -share/doc/postgresql/html/sql-explain.html -share/doc/postgresql/html/sql-expressions.html -share/doc/postgresql/html/sql-fetch.html -share/doc/postgresql/html/sql-grant.html -share/doc/postgresql/html/sql-insert.html -share/doc/postgresql/html/sql-keywords-appendix.html -share/doc/postgresql/html/sql-language.html -share/doc/postgresql/html/sql-listen.html -share/doc/postgresql/html/sql-load.html -share/doc/postgresql/html/sql-lock.html -share/doc/postgresql/html/sql-move.html -share/doc/postgresql/html/sql-notify.html -share/doc/postgresql/html/sql-precedence.html -share/doc/postgresql/html/sql-reindex.html -share/doc/postgresql/html/sql-reset.html -share/doc/postgresql/html/sql-revoke.html -share/doc/postgresql/html/sql-rollback.html -share/doc/postgresql/html/sql-select.html -share/doc/postgresql/html/sql-selectinto.html -share/doc/postgresql/html/sql-set-constraints.html -share/doc/postgresql/html/sql-set-transaction.html -share/doc/postgresql/html/sql-set.html -share/doc/postgresql/html/sql-show.html -share/doc/postgresql/html/sql-syntax-columns.html -share/doc/postgresql/html/sql-syntax.html -share/doc/postgresql/html/sql-truncate.html -share/doc/postgresql/html/sql-unlisten.html -share/doc/postgresql/html/sql-update.html -share/doc/postgresql/html/sql-vacuum.html -share/doc/postgresql/html/sql.html -share/doc/postgresql/html/ssh-tunnels.html -share/doc/postgresql/html/ssl-tcp.html -share/doc/postgresql/html/start-manage-db.html -share/doc/postgresql/html/start-psql.html -share/doc/postgresql/html/start.html -share/doc/postgresql/html/storage.html -share/doc/postgresql/html/supported-platforms.html -share/doc/postgresql/html/timing-results.html -share/doc/postgresql/html/transaction-iso.html -share/doc/postgresql/html/trigger-datachanges.html -share/doc/postgresql/html/trigger-examples.html -share/doc/postgresql/html/trigger-manager.html -share/doc/postgresql/html/triggers.html -share/doc/postgresql/html/tutorial.html -share/doc/postgresql/html/type-system.html -share/doc/postgresql/html/typeconv-func.html -share/doc/postgresql/html/typeconv-oper.html -share/doc/postgresql/html/typeconv-query.html -share/doc/postgresql/html/typeconv-union-case.html -share/doc/postgresql/html/typeconv.html -share/doc/postgresql/html/units-history.html -share/doc/postgresql/html/user-manag.html -share/doc/postgresql/html/user.html -share/doc/postgresql/html/wal-configuration.html -share/doc/postgresql/html/wal-implementation.html -share/doc/postgresql/html/wal.html -share/doc/postgresql/html/xact-read-committed.html -share/doc/postgresql/html/xact-serializable.html -share/doc/postgresql/html/xaggr.html -share/doc/postgresql/html/xfunc-c.html -share/doc/postgresql/html/xfunc-internal.html -share/doc/postgresql/html/xfunc-overload.html -share/doc/postgresql/html/xfunc-pl.html -share/doc/postgresql/html/xfunc.html -share/doc/postgresql/html/xindex.html -share/doc/postgresql/html/xoper.html -share/doc/postgresql/html/xplang.html -share/doc/postgresql/html/xtypes.html -share/doc/postgresql/html/y2k.html -share/doc/postgresql/html/catalogs.gif -share/doc/postgresql/html/clientserver.gif -share/doc/postgresql/html/connections.gif -@dirrm share/doc/postgresql/html -@dirrm share/doc/postgresql diff --git a/databases/postgresql82-server/pkg-plist.jdbc b/databases/postgresql82-server/pkg-plist.jdbc deleted file mode 100644 index 8f7bd41a54d7..000000000000 --- a/databases/postgresql82-server/pkg-plist.jdbc +++ /dev/null @@ -1,27 +0,0 @@ -share/examples/postgresql/corba/StockClient.java -share/examples/postgresql/corba/StockDB.java -share/examples/postgresql/corba/StockDispenserImpl.java -share/examples/postgresql/corba/StockItemImpl.java -share/examples/postgresql/corba/StockServer.java -share/examples/postgresql/corba/readme -share/examples/postgresql/corba/stock.idl -share/examples/postgresql/corba/stock.sql -@dirrm share/examples/postgresql/corba -share/examples/postgresql/ImageViewer.java -share/examples/postgresql/Unicode.java -share/examples/postgresql/basic.java -share/examples/postgresql/blobtest.java -share/examples/postgresql/datestyle.java -share/examples/postgresql/metadata.java -share/examples/postgresql/psql.java -share/examples/postgresql/threadsafe.java -share/examples/postgresql/README -share/examples/postgresql/Implementation -@dirrm share/examples/postgresql -share/postgresql/java/postgresql-examples.jar -share/postgresql/java/postgresql.jar -share/postgresql/java/retepTools.jar -@dirrm share/postgresql/java -share/java/classes/postgresql.jar -@unexec rmdir %D/share/java/classes 2>/dev/null || true -@unexec rmdir %D/share/java 2>/dev/null || true diff --git a/databases/postgresql82-server/pkg-plist.notk b/databases/postgresql82-server/pkg-plist.notk deleted file mode 100644 index 8dcbc5f88bd6..000000000000 --- a/databases/postgresql82-server/pkg-plist.notk +++ /dev/null @@ -1,6 +0,0 @@ -%%PG_PREFIX%%bin/pgtclsh -%%PG_INCLUDE%%/libpgtcl.h -%%PG_PREFIX%%lib/libpgtcl.a -%%PG_PREFIX%%lib/libpgtcl.so -%%PG_PREFIX%%lib/libpgtcl.so.2 -%%PG_PREFIX%%lib/pltcl.so diff --git a/databases/postgresql82-server/pkg-plist.odbc b/databases/postgresql82-server/pkg-plist.odbc deleted file mode 100644 index f047b7cb64a1..000000000000 --- a/databases/postgresql82-server/pkg-plist.odbc +++ /dev/null @@ -1,10 +0,0 @@ -%%PG_INCLUDE%%/iodbc/iodbc.h -%%PG_INCLUDE%%/iodbc/isql.h -%%PG_INCLUDE%%/iodbc/isqlext.h -@dirrm %%PG_INCLUDE%%/iodbc -%%PG_PREFIX%%lib/libpsqlodbc.a -%%PG_PREFIX%%lib/libpsqlodbc.so -%%PG_PREFIX%%lib/libpsqlodbc.so.0 -etc/postgresql/odbcinst.ini -@dirrm etc/postgresql -share/postgresql/odbc.sql diff --git a/databases/postgresql82-server/pkg-plist.tcl b/databases/postgresql82-server/pkg-plist.tcl deleted file mode 100644 index da5f4367cb80..000000000000 --- a/databases/postgresql82-server/pkg-plist.tcl +++ /dev/null @@ -1,148 +0,0 @@ -%%PG_PREFIX%%bin/pgaccess -%%PG_PREFIX%%bin/pgtclsh -%%PG_PREFIX%%bin/pgtksh -%%PG_INCLUDE%%/libpgtcl.h -%%PG_PREFIX%%lib/libpgtcl.a -%%PG_PREFIX%%lib/libpgtcl.so -%%PG_PREFIX%%lib/libpgtcl.so.2 -%%PG_PREFIX%%lib/pltcl.so -lib/tcl%%WITH_TCL%%/Pgtcl1.3/pkgIndex.tcl -share/postgresql/pgaccess/images/icon_button.gif -share/postgresql/pgaccess/images/icon_checkbutton.gif -share/postgresql/pgaccess/images/icon_entry.gif -share/postgresql/pgaccess/images/icon_frame.gif -share/postgresql/pgaccess/images/icon_label.gif -share/postgresql/pgaccess/images/icon_listbox.gif -share/postgresql/pgaccess/images/icon_query.gif -share/postgresql/pgaccess/images/icon_radiobutton.gif -share/postgresql/pgaccess/images/icon_text.gif -share/postgresql/pgaccess/lib/database.tcl -share/postgresql/pgaccess/lib/forms.tcl -share/postgresql/pgaccess/lib/functions.tcl -share/postgresql/pgaccess/lib/help/abort.hlp -share/postgresql/pgaccess/lib/help/add_records.hlp -share/postgresql/pgaccess/lib/help/alter_table.hlp -share/postgresql/pgaccess/lib/help/alter_user.hlp -share/postgresql/pgaccess/lib/help/author.hlp -share/postgresql/pgaccess/lib/help/begin.hlp -share/postgresql/pgaccess/lib/help/close.hlp -share/postgresql/pgaccess/lib/help/cluster.hlp -share/postgresql/pgaccess/lib/help/commit.hlp -share/postgresql/pgaccess/lib/help/copy.hlp -share/postgresql/pgaccess/lib/help/copyrights.hlp -share/postgresql/pgaccess/lib/help/create_aggregate.hlp -share/postgresql/pgaccess/lib/help/create_database.hlp -share/postgresql/pgaccess/lib/help/create_function.hlp -share/postgresql/pgaccess/lib/help/create_index.hlp -share/postgresql/pgaccess/lib/help/create_language.hlp -share/postgresql/pgaccess/lib/help/create_operator.hlp -share/postgresql/pgaccess/lib/help/create_rule.hlp -share/postgresql/pgaccess/lib/help/create_sequence.hlp -share/postgresql/pgaccess/lib/help/create_table.hlp -share/postgresql/pgaccess/lib/help/create_table_as.hlp -share/postgresql/pgaccess/lib/help/create_trigger.hlp -share/postgresql/pgaccess/lib/help/create_type.hlp -share/postgresql/pgaccess/lib/help/create_user.hlp -share/postgresql/pgaccess/lib/help/create_view.hlp -share/postgresql/pgaccess/lib/help/data_types.hlp -share/postgresql/pgaccess/lib/help/datefunc.hlp -share/postgresql/pgaccess/lib/help/declare.hlp -share/postgresql/pgaccess/lib/help/delete.hlp -share/postgresql/pgaccess/lib/help/drop_aggregate.hlp -share/postgresql/pgaccess/lib/help/drop_database.hlp -share/postgresql/pgaccess/lib/help/drop_function.hlp -share/postgresql/pgaccess/lib/help/drop_index.hlp -share/postgresql/pgaccess/lib/help/drop_language.hlp -share/postgresql/pgaccess/lib/help/drop_operator.hlp -share/postgresql/pgaccess/lib/help/drop_rule.hlp -share/postgresql/pgaccess/lib/help/drop_sequence.hlp -share/postgresql/pgaccess/lib/help/drop_table.hlp -share/postgresql/pgaccess/lib/help/drop_trigger.hlp -share/postgresql/pgaccess/lib/help/drop_type.hlp -share/postgresql/pgaccess/lib/help/drop_user.hlp -share/postgresql/pgaccess/lib/help/drop_view.hlp -share/postgresql/pgaccess/lib/help/explain.hlp -share/postgresql/pgaccess/lib/help/fetch.hlp -share/postgresql/pgaccess/lib/help/form_design.hlp -share/postgresql/pgaccess/lib/help/forms.hlp -share/postgresql/pgaccess/lib/help/functions.hlp -share/postgresql/pgaccess/lib/help/geomfunc.hlp -share/postgresql/pgaccess/lib/help/grant.hlp -share/postgresql/pgaccess/lib/help/history.hlp -share/postgresql/pgaccess/lib/help/index.hlp -share/postgresql/pgaccess/lib/help/inheritance.hlp -share/postgresql/pgaccess/lib/help/insert.hlp -share/postgresql/pgaccess/lib/help/ipv4func.hlp -share/postgresql/pgaccess/lib/help/isolation.hlp -share/postgresql/pgaccess/lib/help/keywords.hlp -share/postgresql/pgaccess/lib/help/listen.hlp -share/postgresql/pgaccess/lib/help/load.hlp -share/postgresql/pgaccess/lib/help/lock.hlp -share/postgresql/pgaccess/lib/help/mathfunc.hlp -share/postgresql/pgaccess/lib/help/move.hlp -share/postgresql/pgaccess/lib/help/mvcc.hlp -share/postgresql/pgaccess/lib/help/new_query.hlp -share/postgresql/pgaccess/lib/help/new_table.hlp -share/postgresql/pgaccess/lib/help/notify.hlp -share/postgresql/pgaccess/lib/help/open_query.hlp -share/postgresql/pgaccess/lib/help/open_table.hlp -share/postgresql/pgaccess/lib/help/pgfunctions.hlp -share/postgresql/pgaccess/lib/help/postgresql.hlp -share/postgresql/pgaccess/lib/help/queries.hlp -share/postgresql/pgaccess/lib/help/reports.hlp -share/postgresql/pgaccess/lib/help/reset.hlp -share/postgresql/pgaccess/lib/help/revoke.hlp -share/postgresql/pgaccess/lib/help/rollback.hlp -share/postgresql/pgaccess/lib/help/schema.hlp -share/postgresql/pgaccess/lib/help/scripts.hlp -share/postgresql/pgaccess/lib/help/select.hlp -share/postgresql/pgaccess/lib/help/select_into.hlp -share/postgresql/pgaccess/lib/help/sequences.hlp -share/postgresql/pgaccess/lib/help/set.hlp -share/postgresql/pgaccess/lib/help/show.hlp -share/postgresql/pgaccess/lib/help/sql_guide.hlp -share/postgresql/pgaccess/lib/help/sqlfunc.hlp -share/postgresql/pgaccess/lib/help/stringfunc.hlp -share/postgresql/pgaccess/lib/help/tables.hlp -share/postgresql/pgaccess/lib/help/unlisten.hlp -share/postgresql/pgaccess/lib/help/update.hlp -share/postgresql/pgaccess/lib/help/users.hlp -share/postgresql/pgaccess/lib/help/vacuum.hlp -share/postgresql/pgaccess/lib/help/view_table_structure.hlp -share/postgresql/pgaccess/lib/help/views.hlp -share/postgresql/pgaccess/lib/help/visual_designer.hlp -share/postgresql/pgaccess/lib/help/y2k.hlp -share/postgresql/pgaccess/lib/help.tcl -share/postgresql/pgaccess/lib/languages/czech -share/postgresql/pgaccess/lib/languages/chinese_big5 -share/postgresql/pgaccess/lib/languages/chinese_gb -share/postgresql/pgaccess/lib/languages/deutsch -share/postgresql/pgaccess/lib/languages/euskara -share/postgresql/pgaccess/lib/languages/francais -share/postgresql/pgaccess/lib/languages/italiano -share/postgresql/pgaccess/lib/languages/japanese -share/postgresql/pgaccess/lib/languages/magyar -share/postgresql/pgaccess/lib/languages/nederlands -share/postgresql/pgaccess/lib/languages/portugues -share/postgresql/pgaccess/lib/languages/romana -share/postgresql/pgaccess/lib/languages/russian.koi8r -share/postgresql/pgaccess/lib/languages/russian_win -share/postgresql/pgaccess/lib/languages/spanish -share/postgresql/pgaccess/lib/mainlib.tcl -share/postgresql/pgaccess/lib/preferences.tcl -share/postgresql/pgaccess/lib/queries.tcl -share/postgresql/pgaccess/lib/reports.tcl -share/postgresql/pgaccess/lib/schema.tcl -share/postgresql/pgaccess/lib/scripts.tcl -share/postgresql/pgaccess/lib/sequences.tcl -share/postgresql/pgaccess/lib/tables.tcl -share/postgresql/pgaccess/lib/users.tcl -share/postgresql/pgaccess/lib/views.tcl -share/postgresql/pgaccess/lib/visualqb.tcl -share/postgresql/pgaccess/main.tcl -@dirrm share/postgresql/pgaccess/images -@dirrm share/postgresql/pgaccess/lib/help -@dirrm share/postgresql/pgaccess/lib/languages -@dirrm share/postgresql/pgaccess/lib -@dirrm share/postgresql/pgaccess -@dirrm lib/tcl%%WITH_TCL%%/Pgtcl1.3 diff --git a/databases/postgresql82-server/scripts/configure.postgresql b/databases/postgresql82-server/scripts/configure.postgresql deleted file mode 100644 index 0b288ad43d25..000000000000 --- a/databases/postgresql82-server/scripts/configure.postgresql +++ /dev/null @@ -1,278 +0,0 @@ -#!/bin/sh -# -*- tab-width: 4; -*- -# ex:ts=4 -# -# $FreeBSD$ -# -if [ -f ${WRKDIRPREFIX}${CURDIR}/Makefile.inc ]; then - exit -fi - -if [ ! "${BATCH}" ]; then - dialog --title "Backup your data NOW" \ - --msgbox "`sed -e \"s#%%PREFIX%%#${PREFIX}#\" < ${FILESDIR}/pre-install-notes`" \ - -1 -1 -fi - -if [ "${BATCH}" ]; then - set \"MultiByte\" \"ODBC\" \"SSL\" \"TCL\" \"TCLTK\" -else - /usr/bin/dialog --title "configuration options" --clear \ - --checklist "\n\ -Please select desired options:" -1 -1 7 \ -JDBC "Java DataBase Connectivity" OFF \ -MultiByte "Multibyte for Multilingualism" ON \ -ODBC "Open Database Connectivity" ON \ -TCL "Tcl" ON \ -TCLTK "Tcl/Tk" ON \ -SSL "Secure Socket Layer" ON \ -KRB5 "Kerberos 5" OFF \ -2> /tmp/checklist.tmp.$$ - - retval=$? - - if [ -s /tmp/checklist.tmp.$$ ]; then - set `cat /tmp/checklist.tmp.$$` - fi - rm -f /tmp/checklist.tmp.$$ - - case $retval in - 0) if [ -z "$*" ]; then - echo "Nothing selected" - fi - ;; - 1) echo "Cancel pressed." - exit 1 - ;; - esac -fi - -${MKDIR} ${WRKDIRPREFIX}${CURDIR} -exec > ${WRKDIRPREFIX}${CURDIR}/Makefile.inc - -while [ "$1" ]; do - case $1 in - \"JDBC\") - # We use JAVA_HOME if set correctly. If the user has - # specified a JVM with JAVA_HOME or via the javavmwrapper, - # we validate that it really exists. It is unnecessarily - # complicated and error prone to try to figure out the - # correct java version just to be able to determine a - # BUILD_DEPEND in this case. Instead, assume that a set - # JAVA_HOME together with simple sanity check mean we have - # an installed JVM, and we don't bother setting - # BUILD_DEPENDS. - - echo "# JDBC" - # if JAVA_HOME is set and exists, use it - if [ "${JAVA_HOME}" -a -x "${JAVA_HOME}/bin/javac" ]; then - echo JAVA_HOME=${JAVA_HOME} - else - # No JAVA_HOME, check javavmwrapper's config file - if [ -r "${LOCALBASE}/etc/javavms" ]; then - VMS=`/usr/bin/sed 's|#.*||' < "${LOCALBASE}/etc/javavms" | uniq` - for JAVAVM in ${VMS}; do - if [ -x "${JAVAVM}" ]; then - JAVA_HOME=`echo ${JAVAVM} | /usr/bin/sed 's|/bin/java$||` - break - fi - done - fi - if [ "${JAVA_HOME}" -a -x "${JAVA_HOME}/bin/javac" ]; then - # yep, wrapper was good - echo JAVA_HOME=${JAVA_HOME} - else - # nothing, use our boring 1.1.8, the only native non-beta jdk :( - echo BUILD_DEPENDS+= \${LOCALBASE}/jdk1.1.8/bin/javac:\${PORTSDIR}/java/jdk - echo JAVA_HOME=\${LOCALBASE}/jdk1.1.8 - fi - fi - cat <<-EOF - BUILD_DEPENDS+= \${LOCALBASE}/bin/ant:\${PORTSDIR}/devel/jakarta-ant - CONFIGURE_ENV+= ANT=\${LOCALBASE}/bin/ant - WITH_JDBC=YES - MAKE_ENV+= JAVA_HOME=\${JAVA_HOME} - SCRIPTS_ENV+= JAVA_HOME=\${JAVA_HOME} - CONFIGURE_ARGS+= --with-java - - EOF - ;; - \"MultiByte\") - MULTIBYTE=1 - ;; - \"ODBC\") - cat <<-EOF - # ODBC - WITH_ODBC=YES - CONFIGURE_ARGS+= --with-odbc - - EOF - ;; - \"TCL\") - TCL=1 - ;; - \"TCLTK\") - echo "#TCLTK" - echo WITH_TK=YES - echo - TCL=1 - ;; - \"SSL\") - cat <<-EOF - # SSL - USE_OPENSSL= yes - CFLAGS+= -DUSE_SSL - WITH_SSL= yes - CONFIGURE_ENV+= LDFLAGS="-L\${OPENSSLLIB} -lssl -lcrypto" - CONFIGURE_ARGS+= --with-openssl - - EOF - ;; - \"KRB5\") - KRB5=1 - ;; - \"nothing\"|true) - ;; - *) - echo "Invalid option(s): $*" > /dev/stderr - rm -f ${WRKDIRPREFIX}${CURDIR}/Makefile.inc - exit 1 - ;; - esac - shift -done - -exec > /dev/stderr - -# if multibyte, determine charset -echo "# Multibyte" >> ${WRKDIRPREFIX}${CURDIR}/Makefile.inc - -if [ ! "${MULTIBYTE}" ]; then - echo "WITHOUT_MULTIBYTE=YES" >> ${WRKDIRPREFIX}${CURDIR}/Makefile.inc -else - if [ "${BATCH}" ]; then - set "nothing" - else - /usr/bin/dialog --title "configuration options" --clear \ - --radiolist "\n\ -Please select desired options:" -1 -1 16 \ -nothing "Default Encoding" ON \ -SQL_ASCII "SQL_ASCII" OFF \ -LATIN1 "LATIN1" OFF \ -LATIN2 "LATIN2" OFF \ -LATIN3 "LATIN3" OFF \ -LATIN4 "LATIN4" OFF \ -LATIN5 "LATIN5" OFF \ -EUC_JP "EUC_JP" OFF \ -EUC_CN "EUC_CN" OFF \ -EUC_KR "EUC_KR" OFF \ -EUC_TW "EUC_TW" OFF \ -KOI8 "KOI8" OFF \ -UNICODE "UNICODE" OFF \ -MULE_INTERNAL "MULE_INTERNAL" OFF \ -WIN "WIN" OFF \ -ALT "ALT" OFF \ -2> /tmp/checklist.tmp.$$ - - retval=$? - - if [ -s /tmp/checklist.tmp.$$ ]; then - set `cat /tmp/checklist.tmp.$$` - fi - rm -f /tmp/checklist.tmp.$$ - if [ $retval = 1 ]; then - echo "Cancel pressed." - rm ${WRKDIRPREFIX}${CURDIR}/Makefile.inc - exit 1 - fi - fi - - if [ "$1" = "nothing" ]; then - echo "CONFIGURE_ARGS+= --enable-multibyte" \ - >> ${WRKDIRPREFIX}${CURDIR}/Makefile.inc - else - echo "CONFIGURE_ARGS+= --enable-multibyte=$1" \ - >> ${WRKDIRPREFIX}${CURDIR}/Makefile.inc - fi -fi -echo - -if [ "${TCL}" ]; then - echo "# TCL" >> ${WRKDIRPREFIX}${CURDIR}/Makefile.inc - if [ "${BATCH}" ]; then - echo WITH_TCL=8.3 >> ${WRKDIRPREFIX}${CURDIR}/Makefile.inc - else - dialog --title "TCL version" \ - --inputbox "Please enter TCL version. Default is 8.3." -1 -1 "8.3" \ - 2> /tmp/checklist.tmp.$$ - retval=$? - if [ -s /tmp/checklist.tmp.$$ ]; then - set `cat /tmp/checklist.tmp.$$` - fi - rm -f /tmp/checklist.tmp.$$ - case $retval in - 0) if [ -z "$*" ]; then - echo "Nothing selected" - fi - ;; - 1) echo "Cancel pressed." - rm -f ${WRKDIRPREFIX}${CURDIR}/Makefile.inc - exit 1 - ;; - esac - echo WITH_TCL=$1 >> ${WRKDIRPREFIX}${CURDIR}/Makefile.inc - fi - cat <<-EOF >> ${WRKDIRPREFIX}${CURDIR}/Makefile.inc - CONFIGURE_ARGS+= --with-tcl --with-tclconfig="\${TCLCONFIG}" - TCLV=\${WITH_TCL:S/.//} - TCL_INCDIR= \${LOCALBASE}/include/tcl\${WITH_TCL} - MAKE_ENV+= TCL_INCDIR=\${TCL_INCDIR} - LIB_DEPENDS+= tcl\${TCLV}:\${PORTSDIR}/lang/tcl\${TCLV} - TCLCONFIG= "\${LOCALBASE}/lib/tcl\${WITH_TCL}" - .if defined(WITH_TK) - CONFIGURE_ARGS+= --with-tkconfig="\${TKCONFIG}" - TK_INCDIR= \${LOCALBASE}/include/tk\${WITH_TCL} - CONFIGURE_ENV+= WISH=\${LOCALBASE}/bin/wish\${WITH_TCL} - LIB_DEPENDS+= tk\${TCLV}:\${PORTSDIR}/x11-toolkits/tk\${TCLV} - TKCONFIG= "\${LOCALBASE}/lib/tk\${WITH_TCL}" - TCLCONFIG+= \${TKCONFIG} - TCL_PLIST= pkg-plist.tcl - .else - TCL_PLIST= pkg-plist.notk - CONFIGURE_ARGS+= --without-tk - .endif - - EOF -fi - -if [ "${KRB5}" ]; then - if [ "${BATCH}" ]; then - # never gets here, but what the heck... - echo KRB5_HOME=\${LOCALBASE} >> ${WRKDIRPREFIX}${CURDIR}/Makefile.inc - else - dialog --inputbox "Please enter the KRB5_HOME path" -1 -1 "${KRB_HOME:-${LOCALBASE}}" \ - 2> /tmp/checklist.tmp.$$ - retval=$? - if [ -s /tmp/checklist.tmp.$$ ]; then - set `cat /tmp/checklist.tmp.$$` - fi - rm -f /tmp/checklist.tmp.$$ - case $retval in - 0) if [ -z "$*" ]; then - echo "No input" - fi - ;; - 1) echo "Cancel pressed." - rm -f ${WRKDIRPREFIX}${CURDIR}/Makefile.inc - exit 1 - ;; - esac - echo KRB5_HOME=\"$1\" >> ${WRKDIRPREFIX}${CURDIR}/Makefile.inc - fi - cat <<-EOF >> ${WRKDIRPREFIX}${CURDIR}/Makefile.inc - .if defined(KRB5_HOME) && exists(\${KRB5_HOME}) - CONFIGURE_KRB= --with-krb5=\${KRB5_HOME} - .endif - - EOF -fi diff --git a/databases/postgresql83-server/Makefile b/databases/postgresql83-server/Makefile deleted file mode 100644 index 4a30008d77bc..000000000000 --- a/databases/postgresql83-server/Makefile +++ /dev/null @@ -1,198 +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.1.3 -CATEGORIES= databases -MASTER_SITES= ftp://ftp.sunet.se/pub/unix/databases/relational/postgresql/%SUBDIR%/ \ - ftp://ftp.postgresql.org/pub/%SUBDIR%/ \ - ftp://ftp.de.postgresql.org/%SUBDIR%/ \ - ftp://ftp.digex.net/pub/packages/database/postgresql/%SUBDIR%/ \ - ftp://ftp.chg.ru/pub/databases/postgresql/%SUBDIR%/ \ - ${MASTER_SITE_RINGSERVER:S,%SUBDIR%,misc/db/postgresql/&,} -MASTER_SITE_SUBDIR= source/v${PORTVERSION} -DISTFILES= ${PORTNAME}-base-${PORTVERSION}${EXTRACT_SUFX} \ - ${PORTNAME}-opt-${PORTVERSION}${EXTRACT_SUFX} -.if !defined(NOPORTDOCS) -DISTFILES+= ${PORTNAME}-docs-${PORTVERSION}${EXTRACT_SUFX} -.endif - -MAINTAINER= girgen@partitur.se - -DIST_SUBDIR= postgresql - -INSTALLS_SHLIB= YES - -DOCDIR= ${WRKDIR}/${DISTNAME}/doc -PLIST= ${WRKDIR}/.PLIST.generated - -USE_GMAKE= YES -HAS_CONFIGURE= YES -CONFIGURE_ARGS= --enable-locale \ - --enable-syslog --with-CXX \ - --sysconfdir=${PREFIX}/etc/postgresql \ - --with-includes="${PREFIX}/include ${TCL_INCDIR} ${TK_INCDIR}" \ - --with-libraries=${PREFIX}/lib -.if defined(WITH_OLD_LAYOUT) -CONFIGURE_ARGS+=--docdir=${PREFIX}/share/doc --includedir=${PREFIX}/pgsql/include \ - --datadir=${PREFIX}/share \ - --with-template=`uname -s | ${TR} '[A-Z]' '[a-z]'` \ - --prefix=${PREFIX}/pgsql -PG_PREFIX= pgsql/ -PG_INCLUDE= pgsql/include -LDCONFIG_DIRS= %%PREFIX%%/pgsql/lib -MANPREFIX= ${PREFIX}/pgsql -.else -GNU_CONFIGURE= YES -CONFIGURE_ARGS+=--docdir=${PREFIX}/share/doc --includedir=${PREFIX}/include/pgsql -PG_PREFIX="" -PG_INCLUDE= include/pgsql -.endif - -PLIST_SUB= PG_PREFIX="${PG_PREFIX}" PG_INCLUDE="${PG_INCLUDE}" WITH_TCL="${WITH_TCL}" - -MAN1= createdb.1 createlang.1 createuser.1 dropdb.1 droplang.1 \ - dropuser.1 ecpg.1 initdb.1 initlocation.1 ipcclean.1 pg_config.1 \ - pg_ctl.1 pg_dump.1 pg_dumpall.1 pg_passwd.1 pg_restore.1 \ - pgaccess.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 checkpoint.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 set_constraints.l set_transaction.l show.l \ - truncate.l unlisten.l update.l vacuum.l - -SCRIPTS_ENV= WRKDIRPREFIX="${WRKDIRPREFIX}" \ - WRKDIR="${WRKDIR}" \ - FILESDIR="${FILESDIR}" \ - TOUCH="${TOUCH}" \ - MKDIR="${MKDIR}" \ - NO_OPENSSL="${NO_OPENSSL}" \ - DISTNAME="${DISTNAME}" - -# We must .include here because we need the Makefile.inc @ pre-install -# to determine the correct plist. -.if exists(${WRKDIRPREFIX}${.CURDIR}/Makefile.inc) -.include "${WRKDIRPREFIX}${.CURDIR}/Makefile.inc" -.else -# make utility targets like depends and describe happy -LIB_DEPENDS= tcl83:${PORTSDIR}/lang/tcl83 \ - tk83:${PORTSDIR}/x11-toolkits/tk83 -.endif - -pre-everything:: - @ ${SETENV} ${SCRIPTS_ENV} ${SH} ${SCRIPTDIR}/configure.postgresql - -pre-install: - @ ${SETENV} PKG_PREFIX=${PREFIX} ${SH} ${PKGDIR}/pkg-install ${PORTNAME} PRE-INSTALL -.if !defined(BATCH) -# remind folks twice for a while, so they really don't miss the layout shift - @ ${SED} "s|/usr/local|${PREFIX}|g" < ${PKGMESSAGE} | head -n 25 | more -e -.endif - @ ${CP} ${PKGDIR}/pkg-plist ${PLIST} -.if defined(WITHOUT_MULTIBYTE) - @${CP} ${PLIST} ${PLIST}.nomulti ;\ - ${GREP} -v bin/pg_encoding ${PLIST}.nomulti > ${PLIST} -.endif -.if defined(WITH_TCL) - @ ${CP} ${PLIST} ${PLIST}.notcl ;\ - ${CAT} ${PKGDIR}/${TCL_PLIST} ${PLIST}.notcl > ${PLIST} ;\ - ${RM} ${PLIST}.notcl -.endif -.if defined(WITH_ODBC) - @ ${CP} ${PLIST} ${PLIST}.noodbc ;\ - ${CAT} ${PKGDIR}/pkg-plist.odbc ${PLIST}.noodbc > ${PLIST} ;\ - ${RM} ${PLIST}.noodbc -.endif -.if defined(WITH_JDBC) - @ ${CP} ${PLIST} ${PLIST}.nojdbc ;\ - ${CAT} ${PKGDIR}/pkg-plist.jdbc ${PLIST}.nojdbc > ${PLIST} ;\ - ${RM} ${PLIST}.nojdbc -.endif -.if !defined(NOPORTDOCS) - @ ${CAT} ${PKGDIR}/pkg-plist.doc >> ${PLIST} -.endif - -post-install: -# install shell defaults for pgsql user -.for i in profile cshrc - @ ${SED} "s|%%PREFIX%%|${PREFIX}|g; s|%%PG_PREFIX%%|${PG_PREFIX}|g" \ - < ${FILESDIR}/dot.$i.in \ - > ${PREFIX}/share/postgresql/dot.$i.dist; \ - ${CP} ${PREFIX}/share/postgresql/dot.$i.dist ~pgsql/; \ - if [ ! -f ~pgsql/.$i ]; then \ - ${CP} ${PREFIX}/share/postgresql/dot.$i.dist ~pgsql/.$i; \ - fi -.endfor - @ ${SED} -e "s|%%PREFIX%%|${PREFIX}|g; s|%%PG_PREFIX%%|${PG_PREFIX}|g" \ - < ${FILESDIR}/pgsql.sh.tmpl \ - > ${PREFIX}/etc/rc.d/010.pgsql.sh - @ ${CHMOD} 554 ${PREFIX}/etc/rc.d/010.pgsql.sh - @ ${CHOWN} root:pgsql ${PREFIX}/etc/rc.d/010.pgsql.sh -.if defined(WITH_TCL) -# Preparing a loadable TCL-package (pkgIndex.tcl) - @${MKDIR} ${PREFIX}/lib/tcl${WITH_TCL}/Pgtcl1.3 - @${SED} "s|%%PREFIX%%|${PREFIX}|g" < ${FILESDIR}/pkgIndex.tcl.in \ - > ${PREFIX}/lib/tcl${WITH_TCL}/Pgtcl1.3/pkgIndex.tcl -.endif -.if defined(WITH_JDBC) - @ ${MKDIR} -m 0555 ${PREFIX}/share/java/classes - @ ${INSTALL_DATA} ${WRKSRC}/src/interfaces/jdbc/jars/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} "---------------------------------------------------------" -.if !defined(NOPORTDOCS) - @ ${MKDIR} -m 0555 ${PREFIX}/share/examples/postgresql ;\ - cd ${WRKSRC}/src/interfaces/jdbc/example ;\ - pax -rw . ${PREFIX}/share/examples/postgresql -.for i in README Implementation - @ ${INSTALL_DATA} ${WRKSRC}/src/interfaces/jdbc/$i \ - ${PREFIX}/share/examples/postgresql -.endfor - @ ${ECHO_MSG} "---------------------------------------------------------------" - @ ${ECHO_MSG} "Putting java examples into ${PREFIX}/share/examples/postgresql" - @ ${ECHO_MSG} "---------------------------------------------------------------" -.endif -.endif -.if !defined(DEBUG_FLAGS) -.for file in ecpg pg_dump pg_id pg_passwd pg_restore postgres psql - @ strip ${PREFIX}/${PG_PREFIX}bin/${file} -.endfor -.endif -# information overload mode activated, sorry about this... ;-) - @ ${CAT} ${FILESDIR}/post-install-notes ${PKGMESSAGE} |\ - ${SED} "s|/usr/local|${PREFIX}|g" |\ - tee ${PREFIX}/share/postgresql/post-install-notes ;\ - ${INSTALL_DATA} ${PREFIX}/share/postgresql/post-install-notes ~pgsql/. ;\ - ${CHOWN} -R pgsql:pgsql ~pgsql/. -.if defined(WITH_OLD_LAYOUT) - @ ${CHOWN} root:pgsql ${PREFIX}/${PG_PREFIX}lib -.endif - -post-clean: - @ ${RM} -f ${WRKDIRPREFIX}${.CURDIR}/Makefile.inc - -post-extract: ${POSTEXTRACT} - -.include <bsd.port.mk> diff --git a/databases/postgresql83-server/distinfo b/databases/postgresql83-server/distinfo deleted file mode 100644 index 23e07754313f..000000000000 --- a/databases/postgresql83-server/distinfo +++ /dev/null @@ -1,3 +0,0 @@ -MD5 (postgresql/postgresql-base-7.1.3.tar.gz) = f932dea12806972402aaaf17a2a97034 -MD5 (postgresql/postgresql-opt-7.1.3.tar.gz) = e84e9c51b31567d4571c7612e0c0fbd6 -MD5 (postgresql/postgresql-docs-7.1.3.tar.gz) = 7061ab7f7ec3c4d18f8e6cb2858896d0 diff --git a/databases/postgresql83-server/files/dot.cshrc.in b/databases/postgresql83-server/files/dot.cshrc.in deleted file mode 100644 index a326041bff7b..000000000000 --- a/databases/postgresql83-server/files/dot.cshrc.in +++ /dev/null @@ -1,13 +0,0 @@ -set path = ( %%PREFIX%%/%%PG_PREFIX%%bin $path ) - -setenv PGLIB %%PREFIX%%/%%PG_PREFIX%%lib - -# note: PGDATA can be overridden by the -D startup option -setenv PGDATA $HOME/data - -#You might want to set some locale stuff here -#setenv PGDATESTYLE ISO -#setenv LC_ALL sv_SE.ISO_8859-1 - -# if you want to make regression tests use this TZ -#setenv TZ PST8PDT diff --git a/databases/postgresql83-server/files/dot.profile.in b/databases/postgresql83-server/files/dot.profile.in deleted file mode 100644 index 4aca6aadd19a..000000000000 --- a/databases/postgresql83-server/files/dot.profile.in +++ /dev/null @@ -1,18 +0,0 @@ -# both new and old layout's paths, but new path first... -PATH=%%PREFIX%%/%%PG_PREFIX%%bin:${PATH} - -PGLIB=%%PREFIX%%/%%PG_PREFIX%%lib - -# note: PGDATA can be overridden by the -D startup option -PGDATA=${HOME}/data - -export PATH PGLIB PGDATA - -#You might want to set some locale stuff here -#PGDATESTYLE=ISO -#LC_ALL=sv_SE.ISO_8859-1 -#export PGDATESTYLE LC_ALL - -# if you want to make regression tests use this TZ -#TZ=PST8PDT -#export TZ diff --git a/databases/postgresql83-server/files/patch-aj b/databases/postgresql83-server/files/patch-aj deleted file mode 100644 index 94c0d6d79991..000000000000 --- a/databases/postgresql83-server/files/patch-aj +++ /dev/null @@ -1,118 +0,0 @@ ---- src/bin/pg_passwd/pg_passwd.c.orig Sat Mar 24 01:54:55 2001 -+++ src/bin/pg_passwd/pg_passwd.c Wed Apr 18 04:54:14 2001 -@@ -7,6 +7,12 @@ - #include <errno.h> - #include <time.h> - #include <ctype.h> -+ -+#if defined(__FreeBSD__) -+#include <pwd.h> /* defines _PASSWORD_LEN, max # of characters in a password */ -+#include <sys/time.h> /* gettimeofday for password salt */ -+#endif -+ - #define issaltchar(c) (isalnum((unsigned char) (c)) || (c) == '.' || (c) == '/') - - #ifdef HAVE_TERMIOS_H -@@ -23,18 +29,31 @@ - * We assume that the output of crypt(3) is always 13 characters, - * and that at most 8 characters can usefully be sent to it. - * -+ * For FreeBSD, take these values from /usr/include/pwd.h - * Postgres usernames are assumed to be less than NAMEDATALEN chars long. - */ -+#if defined(__FreeBSD__) -+#define CLEAR_PASSWD_LEN _PASSWORD_LEN -+#define CRYPTED_PASSWD_LEN _PASSWORD_LEN /* max length, not containing NULL */ -+#define SALT_LEN 10 -+#else - #define CLEAR_PASSWD_LEN 8 /* not including null */ - #define CRYPTED_PASSWD_LEN 13 /* not including null */ -+#define SALT_LEN 3 -+#endif -+ -+static unsigned char itoa64[] = /* 0 ... 63 => ascii - 64 */ -+ "./0123456789ABCDEFGHIJKLMNOPQRSTUVWXYZabcdefghijklmnopqrstuvwxyz"; -+ - - const char *progname; - - static void usage(void); -+static void to64(char *s, long v, int n); - static void read_pwd_file(char *filename); - static void write_pwd_file(char *filename, char *bkname); - static void encrypt_pwd(char key[CLEAR_PASSWD_LEN + 1], -- char salt[3], -+ char salt[SALT_LEN], - char passwd[CRYPTED_PASSWD_LEN + 1]); - static void prompt_for_username(char *username); - static void prompt_for_password(char *prompt, char *password); -@@ -47,6 +66,15 @@ - printf("Report bugs to <pgsql-bugs@postgresql.org>.\n"); - } - -+static void -+to64(char *s, long v, int n) -+{ -+ while (--n >= 0) { -+ *s++ = itoa64[v&0x3f]; -+ v >>= 6; -+ } -+} -+ - typedef struct - { - char *uname; -@@ -154,7 +182,7 @@ - if (q != NULL) - *(q++) = '\0'; - -- if (strlen(p) != CRYPTED_PASSWD_LEN && strcmp(p, "+") != 0) -+ if (strlen(p) > CRYPTED_PASSWD_LEN && strcmp(p, "+") != 0) - { - fprintf(stderr, "%s:%d: warning: invalid password length\n", - filename, npwds + 1); -@@ -221,15 +249,25 @@ - - static void - encrypt_pwd(char key[CLEAR_PASSWD_LEN + 1], -- char salt[3], -+ char salt[SALT_LEN], - char passwd[CRYPTED_PASSWD_LEN + 1]) - { -+#if !defined(__FreeBSD__) - int n; -- -+#endif - /* select a salt, if not already given */ - if (salt[0] == '\0') - { -+#if defined(__FreeBSD__) -+ struct timeval tv; -+ srandomdev(); -+ gettimeofday(&tv,0); -+ to64(&salt[0], random(), 3); -+ to64(&salt[3], tv.tv_usec, 3); -+ to64(&salt[6], tv.tv_sec, 2); -+ salt[8] = '\0'; - srand(time(NULL)); -+#else - do - { - n = rand() % 256; -@@ -241,6 +279,7 @@ - } while (!issaltchar(n)); - salt[1] = n; - salt[2] = '\0'; -+#endif - } - - /* get encrypted password */ -@@ -335,7 +374,7 @@ - char *filename; - char bkname[MAXPGPATH]; - char username[NAMEDATALEN]; -- char salt[3]; -+ char salt[SALT_LEN]; - char key[CLEAR_PASSWD_LEN + 1], - key2[CLEAR_PASSWD_LEN + 1]; - char e_passwd[CRYPTED_PASSWD_LEN + 1]; diff --git a/databases/postgresql83-server/files/patch-contrib-retep-build b/databases/postgresql83-server/files/patch-contrib-retep-build deleted file mode 100644 index 80f40f1cc86d..000000000000 --- a/databases/postgresql83-server/files/patch-contrib-retep-build +++ /dev/null @@ -1,37 +0,0 @@ -=================================================================== -RCS file: /home/projects/pgsql/cvsroot/pgsql/contrib/retep/build.xml,v -retrieving revision 1.4 -retrieving revision 1.5 -diff -u -r1.4 -r1.5 ---- contrib/retep/build.xml 2001/03/11 11:06:59 1.4 -+++ contrib/retep/build.xml 2001/05/16 16:20:51 1.5 -@@ -2,7 +2,7 @@ - - build file to build the donated retep tools packages - -- $Id: build.xml,v 1.4 2001/03/11 11:06:59 petere Exp $ -+ $Id: build.xml,v 1.5 2001/05/16 16:20:51 momjian Exp $ - - --> - -@@ -22,6 +22,11 @@ - <available property="xml" classname="org.xml.sax.Parser" /> - </target> - -+ <target name="warning" depends="checks" unless="jdk1.2+"> -+ <echo message="WARNING -- contributed retep tools need jdk1.2 or later -- compilation NOT done." /> -+ </target> -+ -+ - <!-- Prepares the build by creating a directory to place the class files --> - <target name="prepare"> - <mkdir dir="${dest}" /> -@@ -35,7 +40,7 @@ - </target> - - <!-- Builds the XML Tools --> -- <target name="compile" depends="checks,prepare"> -+ <target name="compile" depends="checks,prepare,warning" if="jdk1.2+"> - <javac srcdir="${src}" destdir="${dest}"> - <include name="${package}/**" /> - </javac> diff --git a/databases/postgresql83-server/files/patch-doc-makefile b/databases/postgresql83-server/files/patch-doc-makefile deleted file mode 100644 index fa27bed2af3f..000000000000 --- a/databases/postgresql83-server/files/patch-doc-makefile +++ /dev/null @@ -1,19 +0,0 @@ ---- doc/Makefile~ Sun Jan 7 03:03:22 2001 -+++ doc/Makefile Wed Apr 18 08:12:30 2001 -@@ -43,10 +43,13 @@ - gzip -d -c man.tar.gz | ( cd $(DESTDIR)$(mandir) && $(TAR) xf - ) - endif - -- - installdirs: -- $(mkinstalldirs) $(DESTDIR)$(mandir) $(DESTDIR)$(docdir)/html -- -+ifdef found_html -+ $(mkinstalldirs) $(DESTDIR)$(docdir)/html -+endif -+ifdef found_man -+ $(mkinstalldirs) $(DESTDIR)$(mandir) -+endif - - uninstall: - ifdef found_html diff --git a/databases/postgresql83-server/files/patch-jdbc-Connection b/databases/postgresql83-server/files/patch-jdbc-Connection deleted file mode 100644 index 26fbc260d639..000000000000 --- a/databases/postgresql83-server/files/patch-jdbc-Connection +++ /dev/null @@ -1,51 +0,0 @@ -=================================================================== -RCS file: /home/projects/pgsql/cvsroot/pgsql/src/interfaces/jdbc/org/postgresql/Connection.java,v -retrieving revision 1.14 -retrieving revision 1.16 -diff -u -r1.14 -r1.16 ---- src/interfaces/jdbc/org/postgresql/Connection.java 2001/01/31 08:26:01 1.14 -+++ src/interfaces/jdbc/org/postgresql/Connection.java 2001/06/01 20:57:58 1.16 -@@ -10,7 +10,7 @@ - import org.postgresql.util.*; - - /** -- * $Id: Connection.java,v 1.14 2001/01/31 08:26:01 peter Exp $ -+ * $Id: Connection.java,v 1.16 2001/06/01 20:57:58 momjian Exp $ - * - * This abstract class is used by org.postgresql.Driver to open either the JDBC1 or - * JDBC2 versions of the Connection class. -@@ -267,7 +267,8 @@ - // - firstWarning = null; - -- java.sql.ResultSet initrset = ExecSQL("set datestyle to 'ISO'; select getdatabaseencoding()"); -+ java.sql.ResultSet initrset = ExecSQL("set datestyle to 'ISO'; " + -+ "select case when pg_encoding_to_char(1) = 'SQL_ASCII' then 'UNKNOWN' else getdatabaseencoding() end"); - - String dbEncoding = null; - //retrieve DB properties -@@ -307,9 +308,23 @@ - } else if (dbEncoding.equals("EUC_TW")) { - dbEncoding = "EUC_TW"; - } else if (dbEncoding.equals("KOI8")) { -- dbEncoding = "KOI8_R"; -+ // try first if KOI8_U is present, it's a superset of KOI8_R -+ try { -+ dbEncoding = "KOI8_U"; -+ "test".getBytes(dbEncoding); -+ } -+ catch(UnsupportedEncodingException uee) { -+ // well, KOI8_U is still not in standard JDK, falling back to KOI8_R :( -+ dbEncoding = "KOI8_R"; -+ } -+ - } else if (dbEncoding.equals("WIN")) { - dbEncoding = "Cp1252"; -+ } else if (dbEncoding.equals("UNKNOWN")) { -+ //This isn't a multibyte database so we don't have an encoding to use -+ //We leave dbEncoding null which will cause the default encoding for the -+ //JVM to be used -+ dbEncoding = null; - } else { - dbEncoding = null; - } diff --git a/databases/postgresql83-server/files/patch-jdbc-build-xml b/databases/postgresql83-server/files/patch-jdbc-build-xml deleted file mode 100644 index b1c703a9c978..000000000000 --- a/databases/postgresql83-server/files/patch-jdbc-build-xml +++ /dev/null @@ -1,10 +0,0 @@ ---- src/interfaces/jdbc/build.xml~ Fri Mar 16 22:50:43 2001 -+++ src/interfaces/jdbc/build.xml Wed Apr 18 08:57:57 2001 -@@ -120,6 +120,7 @@ - <javac srcdir="${src}" destdir="${dest}"> - <include name="example/**" /> - <exclude name="example/corba/**"/> -+ <exclude name="example/blobtest.java" unless="jdk1.2+"/> - </javac> - </target> - diff --git a/databases/postgresql83-server/files/patch-jdbc-getdate b/databases/postgresql83-server/files/patch-jdbc-getdate deleted file mode 100644 index 744407ae14b5..000000000000 --- a/databases/postgresql83-server/files/patch-jdbc-getdate +++ /dev/null @@ -1,34 +0,0 @@ ---- src/interfaces/jdbc/org/postgresql/jdbc2/ResultSet.java~ Fri Feb 23 19:12:23 2001 -+++ src/interfaces/jdbc/org/postgresql/jdbc2/ResultSet.java Wed May 9 04:31:11 2001 -@@ -423,8 +423,13 @@ - String s = getString(columnIndex); - if(s==null) - return null; -- -- return java.sql.Date.valueOf(s); -+ // length == 10: SQL Date -+ // length > 10: SQL Timestamp, assumes PGDATESTYLE=ISO -+ try { -+ return java.sql.Date.valueOf((s.length() == 10) ? s : s.substring(0,10)); -+ } catch (NumberFormatException e) { -+ throw new PSQLException("postgresql.res.baddate", s); -+ } - } - - /** -@@ -441,8 +446,13 @@ - - if(s==null) - return null; // SQL NULL -- -- return java.sql.Time.valueOf(s); -+ // length == 8: SQL Time -+ // length > 8: SQL Timestamp -+ try { -+ return java.sql.Time.valueOf((s.length() == 8) ? s : s.substring(11,19)); -+ } catch (NumberFormatException e) { -+ throw new PSQLException("postgresql.res.badtime",s); -+ } - } - - /** diff --git a/databases/postgresql83-server/files/pgsql.sh.tmpl b/databases/postgresql83-server/files/pgsql.sh.tmpl deleted file mode 100644 index cd78771219ed..000000000000 --- a/databases/postgresql83-server/files/pgsql.sh.tmpl +++ /dev/null @@ -1,36 +0,0 @@ -#!/bin/sh - -# $FreeBSD$ -# -# For postmaster startup options, edit $PGDATA/postgresql.conf - -PGBIN=%%PREFIX%%/%%PG_PREFIX%%bin - -case $1 in -start) - [ -d %%PREFIX%%/%%PG_PREFIX%%lib ] && /sbin/ldconfig -m %%PREFIX%%/%%PG_PREFIX%%lib - [ -x ${PGBIN}/pg_ctl ] && { - su -l pgsql -c \ - '[ -d ${PGDATA} ] && exec %%PREFIX%%/%%PG_PREFIX%%bin/pg_ctl start -s -w -l ~pgsql/errlog' - echo -n ' pgsql' - } - ;; - -stop) - [ -x ${PGBIN}/pg_ctl ] && { - su -l pgsql -c 'exec %%PREFIX%%/%%PG_PREFIX%%bin/pg_ctl stop -s -m fast' - echo -n ' pgsql' - } - ;; - -status) - [ -x ${PGBIN}/pg_ctl ] && { - exec su -l pgsql -c 'exec %%PREFIX%%/%%PG_PREFIX%%bin/pg_ctl status' - } - ;; - -*) - echo "usage: `basename $0` {start|stop|status}" >&2 - exit 64 - ;; -esac diff --git a/databases/postgresql83-server/files/pkgIndex.tcl.in b/databases/postgresql83-server/files/pkgIndex.tcl.in deleted file mode 100644 index bd8329b15c69..000000000000 --- a/databases/postgresql83-server/files/pkgIndex.tcl.in +++ /dev/null @@ -1,4 +0,0 @@ -# Package-index file for Pgtcl-package. Enables you to load PostgreSQL -# interface functions right into you TCL-interpreter as simply as -# package require Pgtcl -package ifneeded Pgtcl 1.3 "load %%PREFIX%%/lib/libpgtcl.so" diff --git a/databases/postgresql83-server/files/post-install-notes b/databases/postgresql83-server/files/post-install-notes deleted file mode 100644 index 9347fc51c247..000000000000 --- a/databases/postgresql83-server/files/post-install-notes +++ /dev/null @@ -1,25 +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/TK support, you can use the pgaccess -utility to get a TCL/TK based database frontend for database -operations. You do NOT need to install the pgaccess port separately. - -If you built in the TCL support, you can load the Pg package into your -TCL scripts as easily as ``package require Pgtcl''. - -If you built with Java support, add -/usr/local/share/java/classes/postgresql.jar to your classpath. - -If you have many tables and many clients running, consider raising -kern.maxfiles using sysctl(8). - -Use createlang(1) to install languages into your database. -Supported languages are 'plpgsql', 'pltcl', 'pltclu', and 'plperl'. diff --git a/databases/postgresql83-server/files/pre-install-notes b/databases/postgresql83-server/files/pre-install-notes deleted file mode 100644 index 697ce3cedb79..000000000000 --- a/databases/postgresql83-server/files/pre-install-notes +++ /dev/null @@ -1,21 +0,0 @@ - * IMPORTANT UPGRADE NOTICE * IMPORTANT UPGRADE NOTICE * - -The PostgreSQL port now obeys hier(7) by default, which means that it -installs into: - -%%PREFIX%%/bin -%%PREFIX%%/lib -%%PREFIX%%/include/pgsql - -You *must* move away your old installation to avoid problems with -ldconfig(8) and user's PATH:s. If you rather install using the -old-fashion layout, cancel at next screen and run make as: - -$ make -DWITH_OLD_LAYOUT - -As always, you *must* dump existing databases before stopping and -removing your old postgresql, as part of the update. This is *NOT* -done by this port! - -If you want JAVA support, I will try to determine your JAVA_HOME using -javavmwrapper. If you want a different JVM, please set JAVA_HOME. 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 463e4e49815f..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 cfc983fc2f66..000000000000 --- a/databases/postgresql83-server/pkg-install +++ /dev/null @@ -1,46 +0,0 @@ -#! /bin/sh - -# $FreeBSD$ - -PATH=/bin:/usr/sbin - -DB_DIR=${PKG_PREFIX}/pgsql - -case $2 in -PRE-INSTALL) - USER=pgsql - GROUP=${USER} - UID=70 - 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} -c "PostgreSQL Daemon" - then - echo "Added user \"${USER}\"." - else - echo "Adding user \"${USER}\" failed..." - exit 1 - fi - fi - - if ! [ -x ~pgsql ] ; then - mkdir -p ${DB_DIR} - chown pgsql:pgsql ${DB_DIR} - fi - ;; - -esac diff --git a/databases/postgresql83-server/pkg-message b/databases/postgresql83-server/pkg-message deleted file mode 100644 index 1a3f9f1e4147..000000000000 --- a/databases/postgresql83-server/pkg-message +++ /dev/null @@ -1,38 +0,0 @@ - -====================================================================== - - * IMPORTANT UPGRADE NOTICE * IMPORTANT UPGRADE NOTICE * - -The PostgreSQL port now obeys hier(7) by default, which means that it -installs into: - -/usr/local/bin -/usr/local/lib -/usr/local/include/pgsql - -You *must* move away your old installation from users' and -ldconfig(8)'s PATHs. If you rather install using the old-fashion -layout, cancel now and build the port with "make -DWITH_OLD_LAYOUT". - -The pgsql user's home dir is /usr/local/pgsql by default, but can be -changed with for example chpass(1). Datadir defaults to ~pgsql/data, -but can be changed by modifying the ~pgsql/.profile script. - -As always, backup your data before upgrading. If the upgrade leads to -a higher minor revision (i.e. 7.0.x -> 7.1.x), a dump and restore of -all databases is required. This is *NOT* done by the port! - -====================================================================== - -To initialize the database, you should run initdb as the "pgsql" user. - -Example: - - su -l pgsql -c initdb - -You can then start PostgreSQL by running: - - /usr/local/etc/rc.d/010.pgsql.sh start - -For postmaster settings, see ~pgsql/data/postgresql.conf -====================================================================== diff --git a/databases/postgresql83-server/pkg-plist b/databases/postgresql83-server/pkg-plist deleted file mode 100644 index a7493ddb7898..000000000000 --- a/databases/postgresql83-server/pkg-plist +++ /dev/null @@ -1,91 +0,0 @@ -%%PG_PREFIX%%bin/postmaster -%%PG_PREFIX%%bin/postgres -%%PG_PREFIX%%bin/ecpg -%%PG_PREFIX%%bin/initdb -%%PG_PREFIX%%bin/initlocation -%%PG_PREFIX%%bin/ipcclean -%%PG_PREFIX%%bin/pg_ctl -%%PG_PREFIX%%bin/pg_dump -%%PG_PREFIX%%bin/pg_restore -%%PG_PREFIX%%bin/pg_encoding -%%PG_PREFIX%%bin/pg_dumpall -%%PG_PREFIX%%bin/pg_id -%%PG_PREFIX%%bin/pg_passwd -%%PG_PREFIX%%bin/psql -%%PG_PREFIX%%bin/createdb -%%PG_PREFIX%%bin/dropdb -%%PG_PREFIX%%bin/createuser -%%PG_PREFIX%%bin/dropuser -%%PG_PREFIX%%bin/droplang -%%PG_PREFIX%%bin/vacuumdb -%%PG_PREFIX%%bin/createlang -%%PG_PREFIX%%bin/pg_config -etc/rc.d/010.pgsql.sh -%%PG_INCLUDE%%/lib/dllist.h -@dirrm %%PG_INCLUDE%%/lib -%%PG_INCLUDE%%/libpq/pqcomm.h -%%PG_INCLUDE%%/libpq/libpq-fs.h -@dirrm %%PG_INCLUDE%%/libpq -%%PG_INCLUDE%%/libpq++/pgconnection.h -%%PG_INCLUDE%%/libpq++/pgdatabase.h -%%PG_INCLUDE%%/libpq++/pgtransdb.h -%%PG_INCLUDE%%/libpq++/pgcursordb.h -%%PG_INCLUDE%%/libpq++/pglobject.h -@dirrm %%PG_INCLUDE%%/libpq++ -%%PG_INCLUDE%%/c.h -%%PG_INCLUDE%%/postgres_ext.h -%%PG_INCLUDE%%/postgres_fe.h -%%PG_INCLUDE%%/os.h -%%PG_INCLUDE%%/config.h -%%PG_INCLUDE%%/libpq-fe.h -%%PG_INCLUDE%%/libpq-int.h -%%PG_INCLUDE%%/pqexpbuffer.h -%%PG_INCLUDE%%/ecpgerrno.h -%%PG_INCLUDE%%/ecpglib.h -%%PG_INCLUDE%%/ecpgtype.h -%%PG_INCLUDE%%/sqlca.h -%%PG_INCLUDE%%/sql3types.h -%%PG_INCLUDE%%/libpgeasy.h -%%PG_INCLUDE%%/libpq++.h -@dirrm %%PG_INCLUDE%% -%%PG_PREFIX%%lib/libpq.so -%%PG_PREFIX%%lib/libpq.a -%%PG_PREFIX%%lib/libpq.so.2 -%%PG_PREFIX%%lib/libecpg.so -%%PG_PREFIX%%lib/libecpg.a -%%PG_PREFIX%%lib/libecpg.so.3 -%%PG_PREFIX%%lib/libpgeasy.so -%%PG_PREFIX%%lib/libpgeasy.a -%%PG_PREFIX%%lib/libpgeasy.so.2 -%%PG_PREFIX%%lib/libpq++.so -%%PG_PREFIX%%lib/libpq++.a -%%PG_PREFIX%%lib/libpq++.so.3 -%%PG_PREFIX%%lib/plpgsql.so -share/postgresql/global.bki -share/postgresql/global.description -share/postgresql/post-install-notes -share/postgresql/template1.bki -share/postgresql/template1.description -share/postgresql/pg_hba.conf.sample -share/postgresql/pg_ident.conf.sample -share/postgresql/postgresql.conf.sample -@unexec if cmp -s ~pgsql/.profile %D/share/postgresql/dot.profile.dist; then rm -f ~pgsql/.profile; fi -@unexec if cmp -s ~pgsql/.cshrc %D/share/postgresql/dot.cshrc.dist; then rm -f ~pgsql/.cshrc; fi -@unexec [ -f ~pgsql/dot.profile.dist ] && rm ~pgsql/dot.profile.dist -@unexec [ -f ~pgsql/dot.cshrc.dist ] && rm ~pgsql/dot.cshrc.dist -@exec [ -f %D/share/postgresql/post-install-notes ] && cp %D/share/postgresql/post-install-notes ~pgsql && chown pgsql:pgsql ~pgsql/post-install-notes -@unexec [ -f ~pgsql/post-install-notes ] && rm ~pgsql/post-install-notes -share/postgresql/dot.profile.dist -share/postgresql/dot.cshrc.dist -@dirrm share/postgresql -@exec [ -f %D/share/postgresql/dot.profile.dist ] && cp %D/share/postgresql/dot.profile.dist ~pgsql/. -@exec [ -f %D/share/postgresql/dot.cshrc.dist ] && cp %D/share/postgresql/dot.cshrc.dist ~pgsql/. -@exec [ -f ~pgsql/.profile ] || (cp %D/share/postgresql/dot.profile.dist ~pgsql/.profile && chown pgsql:pgsql ~pgsql/.profile) -@exec [ -f ~pgsql/.cshrc ] || (cp %D/share/postgresql/dot.cshrc.dist ~pgsql/.cshrc && chown pgsql:pgsql ~pgsql/.cshrc) -@unexec [ X%%PG_PREFIX%% != X ] && rmdir %D/%%PG_PREFIX%%bin 2> /dev/null || true -@unexec [ X%%PG_PREFIX%% != X ] && rmdir %D/%%PG_PREFIX%%lib 2> /dev/null || true -@unexec [ X%%PG_PREFIX%% != X ] && rmdir %D/%%PG_PREFIX%%man/man1 2> /dev/null || true -@unexec [ X%%PG_PREFIX%% != X ] && rmdir %D/%%PG_PREFIX%%man/manl 2> /dev/null || true -@unexec [ X%%PG_PREFIX%% != X ] && rmdir %D/%%PG_PREFIX%%man 2> /dev/null || true -@unexec rmdir ~pgsql 2> /dev/null || true -@unexec echo "Warning: If you will *NOT* use this package anymore, please remove %D/pgsql and the pgsql user manually." diff --git a/databases/postgresql83-server/pkg-plist.doc b/databases/postgresql83-server/pkg-plist.doc deleted file mode 100644 index c4d50ecb24f0..000000000000 --- a/databases/postgresql83-server/pkg-plist.doc +++ /dev/null @@ -1,494 +0,0 @@ -share/doc/postgresql/html/admin.html -share/doc/postgresql/html/advanced.html -share/doc/postgresql/html/altern-locations.html -share/doc/postgresql/html/app-createdb.html -share/doc/postgresql/html/app-createlang.html -share/doc/postgresql/html/app-createuser.html -share/doc/postgresql/html/app-dropdb.html -share/doc/postgresql/html/app-droplang.html -share/doc/postgresql/html/app-dropuser.html -share/doc/postgresql/html/app-ecpg.html -share/doc/postgresql/html/app-initdb.html -share/doc/postgresql/html/app-initlocation.html -share/doc/postgresql/html/app-ipcclean.html -share/doc/postgresql/html/app-pg-ctl.html -share/doc/postgresql/html/app-pg-dumpall.html -share/doc/postgresql/html/app-pg-passwd.html -share/doc/postgresql/html/app-pgaccess.html -share/doc/postgresql/html/app-pgadmin.html -share/doc/postgresql/html/app-pgconfig.html -share/doc/postgresql/html/app-pgdump.html -share/doc/postgresql/html/app-pgrestore.html -share/doc/postgresql/html/app-pgtclsh.html -share/doc/postgresql/html/app-pgtksh.html -share/doc/postgresql/html/app-postgres.html -share/doc/postgresql/html/app-postmaster.html -share/doc/postgresql/html/app-psql.html -share/doc/postgresql/html/app-vacuumdb.html -share/doc/postgresql/html/applevel-consistency.html -share/doc/postgresql/html/arch-pg.html -share/doc/postgresql/html/arch.html -share/doc/postgresql/html/arrays.html -share/doc/postgresql/html/auth-methods.html -share/doc/postgresql/html/backup-file.html -share/doc/postgresql/html/backup.html -share/doc/postgresql/html/biblio.html -share/doc/postgresql/html/bki-commands.html -share/doc/postgresql/html/bki-example.html -share/doc/postgresql/html/bki.html -share/doc/postgresql/html/bug-reporting.html -share/doc/postgresql/html/catalog-pg-aggregate.html -share/doc/postgresql/html/catalog-pg-attrdef.html -share/doc/postgresql/html/catalog-pg-attribute.html -share/doc/postgresql/html/catalog-pg-class.html -share/doc/postgresql/html/catalog-pg-database.html -share/doc/postgresql/html/catalog-pg-description.html -share/doc/postgresql/html/catalog-pg-group.html -share/doc/postgresql/html/catalog-pg-index.html -share/doc/postgresql/html/catalog-pg-inherits.html -share/doc/postgresql/html/catalog-pg-language.html -share/doc/postgresql/html/catalog-pg-operator.html -share/doc/postgresql/html/catalog-pg-proc.html -share/doc/postgresql/html/catalog-pg-relcheck.html -share/doc/postgresql/html/catalog-pg-shadow.html -share/doc/postgresql/html/catalog-pg-type.html -share/doc/postgresql/html/catalogs.html -share/doc/postgresql/html/charset.html -share/doc/postgresql/html/client-authentication-problems.html -share/doc/postgresql/html/client-authentication.html -share/doc/postgresql/html/compiler.html -share/doc/postgresql/html/connect-estab.html -share/doc/postgresql/html/creating-cluster.html -share/doc/postgresql/html/cvs-tree.html -share/doc/postgresql/html/cvs.html -share/doc/postgresql/html/cvsup.html -share/doc/postgresql/html/datatype-bit.html -share/doc/postgresql/html/datatype-boolean.html -share/doc/postgresql/html/datatype-character.html -share/doc/postgresql/html/datatype-datetime.html -share/doc/postgresql/html/datatype-geometric.html -share/doc/postgresql/html/datatype-money.html -share/doc/postgresql/html/ecpg.html -share/doc/postgresql/html/datatype-net-types.html -share/doc/postgresql/html/datatype.html -share/doc/postgresql/html/datetime-appendix.html -share/doc/postgresql/html/db-accessing.html -share/doc/postgresql/html/db-destroy.html -share/doc/postgresql/html/developer.html -share/doc/postgresql/html/doc-build.html -share/doc/postgresql/html/doc-sources.html -share/doc/postgresql/html/doc-toolsets.html -share/doc/postgresql/html/docguide.html -share/doc/postgresql/html/ecpg-concept.html -share/doc/postgresql/html/ecpg-develop.html -share/doc/postgresql/html/ecpg-limitations.html -share/doc/postgresql/html/ecpg-porting.html -share/doc/postgresql/html/ecpg-use.html -share/doc/postgresql/html/executor.html -share/doc/postgresql/html/explicit-joins.html -share/doc/postgresql/html/extend.html -share/doc/postgresql/html/functions-datetime.html -share/doc/postgresql/html/functions-aggregate.html -share/doc/postgresql/html/functions-comparison.html -share/doc/postgresql/html/functions-conditional.html -share/doc/postgresql/html/functions-formatting.html -share/doc/postgresql/html/functions-geometry.html -share/doc/postgresql/html/functions-matching.html -share/doc/postgresql/html/functions-math.html -share/doc/postgresql/html/functions-misc.html -share/doc/postgresql/html/functions-net.html -share/doc/postgresql/html/functions-string.html -share/doc/postgresql/html/functions.html -share/doc/postgresql/html/geqo-intro2.html -share/doc/postgresql/html/geqo-pg-intro.html -share/doc/postgresql/html/geqo.html -share/doc/postgresql/html/gist.html -share/doc/postgresql/html/groups.html -share/doc/postgresql/html/history.html -share/doc/postgresql/html/index.html -share/doc/postgresql/html/indexcost.html -share/doc/postgresql/html/indices-functional.html -share/doc/postgresql/html/indices-multicolumn.html -share/doc/postgresql/html/indices-opclass.html -share/doc/postgresql/html/indices-types.html -share/doc/postgresql/html/indices-unique.html -share/doc/postgresql/html/indices.html -share/doc/postgresql/html/inherit.html -share/doc/postgresql/html/install-getsource.html -share/doc/postgresql/html/install-post.html -share/doc/postgresql/html/install-procedure.html -share/doc/postgresql/html/install-requirements.html -share/doc/postgresql/html/install-upgrading.html -share/doc/postgresql/html/install-win32.html -share/doc/postgresql/html/installation.html -share/doc/postgresql/html/jdbc-ext.html -share/doc/postgresql/html/jdbc-lo.html -share/doc/postgresql/html/jdbc.html -share/doc/postgresql/html/jdbc-query.html -share/doc/postgresql/html/jdbc-reading.html -share/doc/postgresql/html/jdbc-thread.html -share/doc/postgresql/html/jdbc-update.html -share/doc/postgresql/html/jdbc-use.html -share/doc/postgresql/html/kernel-resources.html -share/doc/postgresql/html/keys.html -share/doc/postgresql/html/largeobjects.html -share/doc/postgresql/html/libpgtcl-examples.html -share/doc/postgresql/html/libpgtcl-ref.html -share/doc/postgresql/html/libpq-async.html -share/doc/postgresql/html/libpq-control.html -share/doc/postgresql/html/libpq-copy.html -share/doc/postgresql/html/libpq-envars.html -share/doc/postgresql/html/libpq-example.html -share/doc/postgresql/html/libpq-exec.html -share/doc/postgresql/html/libpq-fastpath.html -share/doc/postgresql/html/libpq-notify.html -share/doc/postgresql/html/libpq.html -share/doc/postgresql/html/libpq-threading.html -share/doc/postgresql/html/libpq-trace.html -share/doc/postgresql/html/libpqplusplus.html -share/doc/postgresql/html/libpqpp-classes.html -share/doc/postgresql/html/libpqpp-connect.html -share/doc/postgresql/html/libpqpp-copy.html -share/doc/postgresql/html/libpqpp-exec.html -share/doc/postgresql/html/libpqpp-notify.html -share/doc/postgresql/html/lisp.html -share/doc/postgresql/html/ln11330.html -share/doc/postgresql/html/ln1274.html -share/doc/postgresql/html/ln15181.html -share/doc/postgresql/html/ln24.html -share/doc/postgresql/html/ln25010.html -share/doc/postgresql/html/ln37176.html -share/doc/postgresql/html/ln8.html -share/doc/postgresql/html/lo-funcs.html -share/doc/postgresql/html/lo-implementation.html -share/doc/postgresql/html/lo-interfaces.html -share/doc/postgresql/html/lo-libpq.html -share/doc/postgresql/html/lo-sample.html -share/doc/postgresql/html/locking-indices.html -share/doc/postgresql/html/locking-tables.html -share/doc/postgresql/html/manage-ag-accessdb.html -share/doc/postgresql/html/manage-ag-dropdb.html -share/doc/postgresql/html/manage.html -share/doc/postgresql/html/managing-databases.html -share/doc/postgresql/html/migration.html -share/doc/postgresql/html/more-advanced.html -share/doc/postgresql/html/multibyte.html -share/doc/postgresql/html/mvcc.html -share/doc/postgresql/html/non-atomic-values.html -share/doc/postgresql/html/notation.html -share/doc/postgresql/html/odbc-applixware.html -share/doc/postgresql/html/odbc-config.html -share/doc/postgresql/html/odbc-install.html -share/doc/postgresql/html/odbc-windows.html -share/doc/postgresql/html/odbc.html -share/doc/postgresql/html/organization.html -share/doc/postgresql/html/overview.html -share/doc/postgresql/html/page.html -share/doc/postgresql/html/parser-stage.html -share/doc/postgresql/html/partial-index.html -share/doc/postgresql/html/performance-tips.html -share/doc/postgresql/html/perm-functions.html -share/doc/postgresql/html/pg-system-catalogs.html -share/doc/postgresql/html/pgeasy-chapter.html -share/doc/postgresql/html/pgtcl-pgconndefaults.html -share/doc/postgresql/html/pgtcl-pgconnect.html -share/doc/postgresql/html/pgtcl-pgdisconnect.html -share/doc/postgresql/html/pgtcl-pgexec.html -share/doc/postgresql/html/pgtcl-pglisten.html -share/doc/postgresql/html/pgtcl-pgloclose.html -share/doc/postgresql/html/pgtcl-pglocreat.html -share/doc/postgresql/html/pgtcl-pgloexport.html -share/doc/postgresql/html/pgtcl-pgloimport.html -share/doc/postgresql/html/pgtcl-pglolseek.html -share/doc/postgresql/html/pgtcl-pgloopen.html -share/doc/postgresql/html/pgtcl-pgloread.html -share/doc/postgresql/html/pgtcl-pglotell.html -share/doc/postgresql/html/pgtcl-pglounlink.html -share/doc/postgresql/html/pgtcl-pglowrite.html -share/doc/postgresql/html/pgtcl-pgresult.html -share/doc/postgresql/html/pgtcl-pgselect.html -share/doc/postgresql/html/pgtcl.html -share/doc/postgresql/html/planner-optimizer.html -share/doc/postgresql/html/plperl-use.html -share/doc/postgresql/html/plperl.html -share/doc/postgresql/html/plpgsql-description.html -share/doc/postgresql/html/plpgsql-examples.html -share/doc/postgresql/html/plpgsql-porting.html -share/doc/postgresql/html/plpgsql-trigger.html -share/doc/postgresql/html/plpgsql.html -share/doc/postgresql/html/pltcl-description.html -share/doc/postgresql/html/pltcl.html -share/doc/postgresql/html/populate.html -share/doc/postgresql/html/postgres.html -share/doc/postgresql/html/postmaster-shutdown.html -share/doc/postgresql/html/postmaster-start.html -share/doc/postgresql/html/preface.html -share/doc/postgresql/html/privileges.html -share/doc/postgresql/html/programmer-client.html -share/doc/postgresql/html/programmer-pl.html -share/doc/postgresql/html/programmer-server.html -share/doc/postgresql/html/programmer.html -share/doc/postgresql/html/protocol-message-formats.html -share/doc/postgresql/html/protocol-message-types.html -share/doc/postgresql/html/protocol-protocol.html -share/doc/postgresql/html/protocol.html -share/doc/postgresql/html/pygresql.html -share/doc/postgresql/html/pygresql-close.html -share/doc/postgresql/html/pygresql-connect.html -share/doc/postgresql/html/pygresql-db-api.html -share/doc/postgresql/html/pygresql-db-clear.html -share/doc/postgresql/html/pygresql-db-delete.html -share/doc/postgresql/html/pygresql-db-get-attnames.html -share/doc/postgresql/html/pygresql-db-get-databases.html -share/doc/postgresql/html/pygresql-db-get-tables.html -share/doc/postgresql/html/pygresql-db-get.html -share/doc/postgresql/html/pygresql-db-insert.html -share/doc/postgresql/html/pygresql-db-pkey.html -share/doc/postgresql/html/pygresql-db-update.html -share/doc/postgresql/html/pygresql-endcopy.html -share/doc/postgresql/html/pygresql-fileno.html -share/doc/postgresql/html/pygresql-get-defbase.html -share/doc/postgresql/html/pygresql-get-defhost.html -share/doc/postgresql/html/pygresql-get-defopt.html -share/doc/postgresql/html/pygresql-get-defport.html -share/doc/postgresql/html/pygresql-get-deftty.html -share/doc/postgresql/html/pygresql-getline.html -share/doc/postgresql/html/pygresql-getlo.html -share/doc/postgresql/html/pygresql-getnotify.html -share/doc/postgresql/html/pygresql-inserttable.html -share/doc/postgresql/html/pygresql-locreate.html -share/doc/postgresql/html/pygresql-loimport.html -share/doc/postgresql/html/pygresql-pg-db.html -share/doc/postgresql/html/pygresql-pg-functions.html -share/doc/postgresql/html/pygresql-pg-pglarge.html -share/doc/postgresql/html/pygresql-pg-pgobject.html -share/doc/postgresql/html/pygresql-pg-pgqueryobject.html -share/doc/postgresql/html/pygresql-pglargeobject-close.html -share/doc/postgresql/html/pygresql-pglargeobject-export.html -share/doc/postgresql/html/pygresql-pglargeobject-open.html -share/doc/postgresql/html/pygresql-pglargeobject-read.html -share/doc/postgresql/html/pygresql-pglargeobject-seek.html -share/doc/postgresql/html/pygresql-pglargeobject-size.html -share/doc/postgresql/html/pygresql-pglargeobject-tell.html -share/doc/postgresql/html/pygresql-pglargeobject-unlink.html -share/doc/postgresql/html/pygresql-pglargeobject-write.html -share/doc/postgresql/html/pygresql-pgqueryobject-dictresult.html -share/doc/postgresql/html/pygresql-pgqueryobject-fieldname.html -share/doc/postgresql/html/query.html -share/doc/postgresql/html/pygresql-pgqueryobject-fieldnum.html -share/doc/postgresql/html/pygresql-pgqueryobject-getresult.html -share/doc/postgresql/html/pygresql-pgqueryobject-listfields.html -share/doc/postgresql/html/pygresql-pgqueryobject-ntuples.html -share/doc/postgresql/html/pygresql-putline.html -share/doc/postgresql/html/pygresql-query.html -share/doc/postgresql/html/pygresql-reset.html -share/doc/postgresql/html/pygresql-set-defbase.html -share/doc/postgresql/html/pygresql-set-defhost.html -share/doc/postgresql/html/pygresql-set-defopt.html -share/doc/postgresql/html/pygresql-set-defport.html -share/doc/postgresql/html/pygresql-set-deftty.html -share/doc/postgresql/html/queries-limit.html -share/doc/postgresql/html/queries-order.html -share/doc/postgresql/html/queries-select-lists.html -share/doc/postgresql/html/queries-union.html -share/doc/postgresql/html/queries.html -share/doc/postgresql/html/query-agg.html -share/doc/postgresql/html/query-concepts.html -share/doc/postgresql/html/query-delete.html -share/doc/postgresql/html/query-join.html -share/doc/postgresql/html/query-populate.html -share/doc/postgresql/html/query-query.html -share/doc/postgresql/html/query-selectinto.html -share/doc/postgresql/html/query-table.html -share/doc/postgresql/html/query-update.html -share/doc/postgresql/html/recode.html -share/doc/postgresql/html/recovery.html -share/doc/postgresql/html/reference-client.html -share/doc/postgresql/html/reference-server.html -share/doc/postgresql/html/reference.html -share/doc/postgresql/html/regress-platform.html -share/doc/postgresql/html/regress.html -share/doc/postgresql/html/release-0-01.html -share/doc/postgresql/html/release-0-02.html -share/doc/postgresql/html/release-0-03.html -share/doc/postgresql/html/release-1-0.html -share/doc/postgresql/html/release-1-01.html -share/doc/postgresql/html/release-1-02.html -share/doc/postgresql/html/release-1-09.html -share/doc/postgresql/html/release-6-0.html -share/doc/postgresql/html/release-6-1-1.html -share/doc/postgresql/html/release-6-1.html -share/doc/postgresql/html/release-6-2-1.html -share/doc/postgresql/html/release-6-2.html -share/doc/postgresql/html/release-6-3-1.html -share/doc/postgresql/html/release-6-3-2.html -share/doc/postgresql/html/release-6-3.html -share/doc/postgresql/html/release-6-4-1.html -share/doc/postgresql/html/release-6-4-2.html -share/doc/postgresql/html/release-6-4.html -share/doc/postgresql/html/release-6-5-1.html -share/doc/postgresql/html/release-6-5-2.html -share/doc/postgresql/html/release-6-5-3.html -share/doc/postgresql/html/release-6-5.html -share/doc/postgresql/html/release-7-0-1.html -share/doc/postgresql/html/release-7-0-2.html -share/doc/postgresql/html/release-7-0-3.html -share/doc/postgresql/html/release-7-0.html -share/doc/postgresql/html/release-7-1.html -share/doc/postgresql/html/release-7-1-1.html -share/doc/postgresql/html/release-7-1-2.html -share/doc/postgresql/html/release.html -share/doc/postgresql/html/relmodel-formal.html -share/doc/postgresql/html/relmodel-oper.html -share/doc/postgresql/html/resources.html -share/doc/postgresql/html/rule-system.html -share/doc/postgresql/html/rules-insert.html -share/doc/postgresql/html/rules-permissions.html -share/doc/postgresql/html/rules-triggers.html -share/doc/postgresql/html/rules-views.html -share/doc/postgresql/html/rules.html -share/doc/postgresql/html/runtime-config.html -share/doc/postgresql/html/runtime.html -share/doc/postgresql/html/source.html -share/doc/postgresql/html/spi-examples.html -share/doc/postgresql/html/spi-interface-support.html -share/doc/postgresql/html/spi-memory.html -share/doc/postgresql/html/spi-spiconnect.html -share/doc/postgresql/html/spi-spicopytuple.html -share/doc/postgresql/html/spi-spiexec.html -share/doc/postgresql/html/spi-spiexecp.html -share/doc/postgresql/html/spi-spifinish.html -share/doc/postgresql/html/spi-spifname.html -share/doc/postgresql/html/spi-spifnumber.html -share/doc/postgresql/html/spi-spigetbinval.html -share/doc/postgresql/html/spi-spigetrelname.html -share/doc/postgresql/html/spi-spigettype.html -share/doc/postgresql/html/spi-spigettypeid.html -share/doc/postgresql/html/spi-spigetvalue.html -share/doc/postgresql/html/spi-spimodifytuple.html -share/doc/postgresql/html/spi-spipalloc.html -share/doc/postgresql/html/spi-spipfree.html -share/doc/postgresql/html/spi-spiprepare.html -share/doc/postgresql/html/spi-spirepalloc.html -share/doc/postgresql/html/spi-spisaveplan.html -share/doc/postgresql/html/spi-visibility.html -share/doc/postgresql/html/spi.html -share/doc/postgresql/html/sql-abort.html -share/doc/postgresql/html/sql-altergroup.html -share/doc/postgresql/html/sql-altertable.html -share/doc/postgresql/html/sql-alteruser.html -share/doc/postgresql/html/sql-begin.html -share/doc/postgresql/html/sql-checkpoint.html -share/doc/postgresql/html/sql-close.html -share/doc/postgresql/html/sql-cluster.html -share/doc/postgresql/html/sql-commands.html -share/doc/postgresql/html/sql-comment.html -share/doc/postgresql/html/sql-commit.html -share/doc/postgresql/html/sql-copy.html -share/doc/postgresql/html/sql-createaggregate.html -share/doc/postgresql/html/sql-createconstraint.html -share/doc/postgresql/html/sql-createdatabase.html -share/doc/postgresql/html/sql-createfunction.html -share/doc/postgresql/html/sql-creategroup.html -share/doc/postgresql/html/sql-createindex.html -share/doc/postgresql/html/sql-createlanguage.html -share/doc/postgresql/html/sql-createoperator.html -share/doc/postgresql/html/sql-createrule.html -share/doc/postgresql/html/sql-createsequence.html -share/doc/postgresql/html/sql-createtable.html -share/doc/postgresql/html/sql-createtableas.html -share/doc/postgresql/html/sql-createtrigger.html -share/doc/postgresql/html/sql-createtype.html -share/doc/postgresql/html/sql-createuser.html -share/doc/postgresql/html/sql-createview.html -share/doc/postgresql/html/sql-declare.html -share/doc/postgresql/html/sql-delete.html -share/doc/postgresql/html/sql-dropaggregate.html -share/doc/postgresql/html/sql-dropdatabase.html -share/doc/postgresql/html/sql-dropfunction.html -share/doc/postgresql/html/sql-dropgroup.html -share/doc/postgresql/html/sql-dropindex.html -share/doc/postgresql/html/sql-droplanguage.html -share/doc/postgresql/html/sql-dropoperator.html -share/doc/postgresql/html/sql-droprule.html -share/doc/postgresql/html/sql-dropsequence.html -share/doc/postgresql/html/sql-droptable.html -share/doc/postgresql/html/sql-droptrigger.html -share/doc/postgresql/html/sql-droptype.html -share/doc/postgresql/html/sql-dropuser.html -share/doc/postgresql/html/sql-dropview.html -share/doc/postgresql/html/sql-end.html -share/doc/postgresql/html/sql-explain.html -share/doc/postgresql/html/sql-expressions.html -share/doc/postgresql/html/sql-fetch.html -share/doc/postgresql/html/sql-grant.html -share/doc/postgresql/html/sql-insert.html -share/doc/postgresql/html/sql-keywords-appendix.html -share/doc/postgresql/html/sql-language.html -share/doc/postgresql/html/sql-listen.html -share/doc/postgresql/html/sql-load.html -share/doc/postgresql/html/sql-lock.html -share/doc/postgresql/html/sql-move.html -share/doc/postgresql/html/sql-notify.html -share/doc/postgresql/html/sql-precedence.html -share/doc/postgresql/html/sql-reindex.html -share/doc/postgresql/html/sql-reset.html -share/doc/postgresql/html/sql-revoke.html -share/doc/postgresql/html/sql-rollback.html -share/doc/postgresql/html/sql-select.html -share/doc/postgresql/html/sql-selectinto.html -share/doc/postgresql/html/sql-set-constraints.html -share/doc/postgresql/html/sql-set-transaction.html -share/doc/postgresql/html/sql-set.html -share/doc/postgresql/html/sql-show.html -share/doc/postgresql/html/sql-syntax-columns.html -share/doc/postgresql/html/sql-syntax.html -share/doc/postgresql/html/sql-truncate.html -share/doc/postgresql/html/sql-unlisten.html -share/doc/postgresql/html/sql-update.html -share/doc/postgresql/html/sql-vacuum.html -share/doc/postgresql/html/sql.html -share/doc/postgresql/html/ssh-tunnels.html -share/doc/postgresql/html/ssl-tcp.html -share/doc/postgresql/html/start-manage-db.html -share/doc/postgresql/html/start-psql.html -share/doc/postgresql/html/start.html -share/doc/postgresql/html/storage.html -share/doc/postgresql/html/supported-platforms.html -share/doc/postgresql/html/timing-results.html -share/doc/postgresql/html/transaction-iso.html -share/doc/postgresql/html/trigger-datachanges.html -share/doc/postgresql/html/trigger-examples.html -share/doc/postgresql/html/trigger-manager.html -share/doc/postgresql/html/triggers.html -share/doc/postgresql/html/tutorial.html -share/doc/postgresql/html/type-system.html -share/doc/postgresql/html/typeconv-func.html -share/doc/postgresql/html/typeconv-oper.html -share/doc/postgresql/html/typeconv-query.html -share/doc/postgresql/html/typeconv-union-case.html -share/doc/postgresql/html/typeconv.html -share/doc/postgresql/html/units-history.html -share/doc/postgresql/html/user-manag.html -share/doc/postgresql/html/user.html -share/doc/postgresql/html/wal-configuration.html -share/doc/postgresql/html/wal-implementation.html -share/doc/postgresql/html/wal.html -share/doc/postgresql/html/xact-read-committed.html -share/doc/postgresql/html/xact-serializable.html -share/doc/postgresql/html/xaggr.html -share/doc/postgresql/html/xfunc-c.html -share/doc/postgresql/html/xfunc-internal.html -share/doc/postgresql/html/xfunc-overload.html -share/doc/postgresql/html/xfunc-pl.html -share/doc/postgresql/html/xfunc.html -share/doc/postgresql/html/xindex.html -share/doc/postgresql/html/xoper.html -share/doc/postgresql/html/xplang.html -share/doc/postgresql/html/xtypes.html -share/doc/postgresql/html/y2k.html -share/doc/postgresql/html/catalogs.gif -share/doc/postgresql/html/clientserver.gif -share/doc/postgresql/html/connections.gif -@dirrm share/doc/postgresql/html -@dirrm share/doc/postgresql diff --git a/databases/postgresql83-server/pkg-plist.jdbc b/databases/postgresql83-server/pkg-plist.jdbc deleted file mode 100644 index 8f7bd41a54d7..000000000000 --- a/databases/postgresql83-server/pkg-plist.jdbc +++ /dev/null @@ -1,27 +0,0 @@ -share/examples/postgresql/corba/StockClient.java -share/examples/postgresql/corba/StockDB.java -share/examples/postgresql/corba/StockDispenserImpl.java -share/examples/postgresql/corba/StockItemImpl.java -share/examples/postgresql/corba/StockServer.java -share/examples/postgresql/corba/readme -share/examples/postgresql/corba/stock.idl -share/examples/postgresql/corba/stock.sql -@dirrm share/examples/postgresql/corba -share/examples/postgresql/ImageViewer.java -share/examples/postgresql/Unicode.java -share/examples/postgresql/basic.java -share/examples/postgresql/blobtest.java -share/examples/postgresql/datestyle.java -share/examples/postgresql/metadata.java -share/examples/postgresql/psql.java -share/examples/postgresql/threadsafe.java -share/examples/postgresql/README -share/examples/postgresql/Implementation -@dirrm share/examples/postgresql -share/postgresql/java/postgresql-examples.jar -share/postgresql/java/postgresql.jar -share/postgresql/java/retepTools.jar -@dirrm share/postgresql/java -share/java/classes/postgresql.jar -@unexec rmdir %D/share/java/classes 2>/dev/null || true -@unexec rmdir %D/share/java 2>/dev/null || true diff --git a/databases/postgresql83-server/pkg-plist.notk b/databases/postgresql83-server/pkg-plist.notk deleted file mode 100644 index 8dcbc5f88bd6..000000000000 --- a/databases/postgresql83-server/pkg-plist.notk +++ /dev/null @@ -1,6 +0,0 @@ -%%PG_PREFIX%%bin/pgtclsh -%%PG_INCLUDE%%/libpgtcl.h -%%PG_PREFIX%%lib/libpgtcl.a -%%PG_PREFIX%%lib/libpgtcl.so -%%PG_PREFIX%%lib/libpgtcl.so.2 -%%PG_PREFIX%%lib/pltcl.so diff --git a/databases/postgresql83-server/pkg-plist.odbc b/databases/postgresql83-server/pkg-plist.odbc deleted file mode 100644 index f047b7cb64a1..000000000000 --- a/databases/postgresql83-server/pkg-plist.odbc +++ /dev/null @@ -1,10 +0,0 @@ -%%PG_INCLUDE%%/iodbc/iodbc.h -%%PG_INCLUDE%%/iodbc/isql.h -%%PG_INCLUDE%%/iodbc/isqlext.h -@dirrm %%PG_INCLUDE%%/iodbc -%%PG_PREFIX%%lib/libpsqlodbc.a -%%PG_PREFIX%%lib/libpsqlodbc.so -%%PG_PREFIX%%lib/libpsqlodbc.so.0 -etc/postgresql/odbcinst.ini -@dirrm etc/postgresql -share/postgresql/odbc.sql diff --git a/databases/postgresql83-server/pkg-plist.tcl b/databases/postgresql83-server/pkg-plist.tcl deleted file mode 100644 index da5f4367cb80..000000000000 --- a/databases/postgresql83-server/pkg-plist.tcl +++ /dev/null @@ -1,148 +0,0 @@ -%%PG_PREFIX%%bin/pgaccess -%%PG_PREFIX%%bin/pgtclsh -%%PG_PREFIX%%bin/pgtksh -%%PG_INCLUDE%%/libpgtcl.h -%%PG_PREFIX%%lib/libpgtcl.a -%%PG_PREFIX%%lib/libpgtcl.so -%%PG_PREFIX%%lib/libpgtcl.so.2 -%%PG_PREFIX%%lib/pltcl.so -lib/tcl%%WITH_TCL%%/Pgtcl1.3/pkgIndex.tcl -share/postgresql/pgaccess/images/icon_button.gif -share/postgresql/pgaccess/images/icon_checkbutton.gif -share/postgresql/pgaccess/images/icon_entry.gif -share/postgresql/pgaccess/images/icon_frame.gif -share/postgresql/pgaccess/images/icon_label.gif -share/postgresql/pgaccess/images/icon_listbox.gif -share/postgresql/pgaccess/images/icon_query.gif -share/postgresql/pgaccess/images/icon_radiobutton.gif -share/postgresql/pgaccess/images/icon_text.gif -share/postgresql/pgaccess/lib/database.tcl -share/postgresql/pgaccess/lib/forms.tcl -share/postgresql/pgaccess/lib/functions.tcl -share/postgresql/pgaccess/lib/help/abort.hlp -share/postgresql/pgaccess/lib/help/add_records.hlp -share/postgresql/pgaccess/lib/help/alter_table.hlp -share/postgresql/pgaccess/lib/help/alter_user.hlp -share/postgresql/pgaccess/lib/help/author.hlp -share/postgresql/pgaccess/lib/help/begin.hlp -share/postgresql/pgaccess/lib/help/close.hlp -share/postgresql/pgaccess/lib/help/cluster.hlp -share/postgresql/pgaccess/lib/help/commit.hlp -share/postgresql/pgaccess/lib/help/copy.hlp -share/postgresql/pgaccess/lib/help/copyrights.hlp -share/postgresql/pgaccess/lib/help/create_aggregate.hlp -share/postgresql/pgaccess/lib/help/create_database.hlp -share/postgresql/pgaccess/lib/help/create_function.hlp -share/postgresql/pgaccess/lib/help/create_index.hlp -share/postgresql/pgaccess/lib/help/create_language.hlp -share/postgresql/pgaccess/lib/help/create_operator.hlp -share/postgresql/pgaccess/lib/help/create_rule.hlp -share/postgresql/pgaccess/lib/help/create_sequence.hlp -share/postgresql/pgaccess/lib/help/create_table.hlp -share/postgresql/pgaccess/lib/help/create_table_as.hlp -share/postgresql/pgaccess/lib/help/create_trigger.hlp -share/postgresql/pgaccess/lib/help/create_type.hlp -share/postgresql/pgaccess/lib/help/create_user.hlp -share/postgresql/pgaccess/lib/help/create_view.hlp -share/postgresql/pgaccess/lib/help/data_types.hlp -share/postgresql/pgaccess/lib/help/datefunc.hlp -share/postgresql/pgaccess/lib/help/declare.hlp -share/postgresql/pgaccess/lib/help/delete.hlp -share/postgresql/pgaccess/lib/help/drop_aggregate.hlp -share/postgresql/pgaccess/lib/help/drop_database.hlp -share/postgresql/pgaccess/lib/help/drop_function.hlp -share/postgresql/pgaccess/lib/help/drop_index.hlp -share/postgresql/pgaccess/lib/help/drop_language.hlp -share/postgresql/pgaccess/lib/help/drop_operator.hlp -share/postgresql/pgaccess/lib/help/drop_rule.hlp -share/postgresql/pgaccess/lib/help/drop_sequence.hlp -share/postgresql/pgaccess/lib/help/drop_table.hlp -share/postgresql/pgaccess/lib/help/drop_trigger.hlp -share/postgresql/pgaccess/lib/help/drop_type.hlp -share/postgresql/pgaccess/lib/help/drop_user.hlp -share/postgresql/pgaccess/lib/help/drop_view.hlp -share/postgresql/pgaccess/lib/help/explain.hlp -share/postgresql/pgaccess/lib/help/fetch.hlp -share/postgresql/pgaccess/lib/help/form_design.hlp -share/postgresql/pgaccess/lib/help/forms.hlp -share/postgresql/pgaccess/lib/help/functions.hlp -share/postgresql/pgaccess/lib/help/geomfunc.hlp -share/postgresql/pgaccess/lib/help/grant.hlp -share/postgresql/pgaccess/lib/help/history.hlp -share/postgresql/pgaccess/lib/help/index.hlp -share/postgresql/pgaccess/lib/help/inheritance.hlp -share/postgresql/pgaccess/lib/help/insert.hlp -share/postgresql/pgaccess/lib/help/ipv4func.hlp -share/postgresql/pgaccess/lib/help/isolation.hlp -share/postgresql/pgaccess/lib/help/keywords.hlp -share/postgresql/pgaccess/lib/help/listen.hlp -share/postgresql/pgaccess/lib/help/load.hlp -share/postgresql/pgaccess/lib/help/lock.hlp -share/postgresql/pgaccess/lib/help/mathfunc.hlp -share/postgresql/pgaccess/lib/help/move.hlp -share/postgresql/pgaccess/lib/help/mvcc.hlp -share/postgresql/pgaccess/lib/help/new_query.hlp -share/postgresql/pgaccess/lib/help/new_table.hlp -share/postgresql/pgaccess/lib/help/notify.hlp -share/postgresql/pgaccess/lib/help/open_query.hlp -share/postgresql/pgaccess/lib/help/open_table.hlp -share/postgresql/pgaccess/lib/help/pgfunctions.hlp -share/postgresql/pgaccess/lib/help/postgresql.hlp -share/postgresql/pgaccess/lib/help/queries.hlp -share/postgresql/pgaccess/lib/help/reports.hlp -share/postgresql/pgaccess/lib/help/reset.hlp -share/postgresql/pgaccess/lib/help/revoke.hlp -share/postgresql/pgaccess/lib/help/rollback.hlp -share/postgresql/pgaccess/lib/help/schema.hlp -share/postgresql/pgaccess/lib/help/scripts.hlp -share/postgresql/pgaccess/lib/help/select.hlp -share/postgresql/pgaccess/lib/help/select_into.hlp -share/postgresql/pgaccess/lib/help/sequences.hlp -share/postgresql/pgaccess/lib/help/set.hlp -share/postgresql/pgaccess/lib/help/show.hlp -share/postgresql/pgaccess/lib/help/sql_guide.hlp -share/postgresql/pgaccess/lib/help/sqlfunc.hlp -share/postgresql/pgaccess/lib/help/stringfunc.hlp -share/postgresql/pgaccess/lib/help/tables.hlp -share/postgresql/pgaccess/lib/help/unlisten.hlp -share/postgresql/pgaccess/lib/help/update.hlp -share/postgresql/pgaccess/lib/help/users.hlp -share/postgresql/pgaccess/lib/help/vacuum.hlp -share/postgresql/pgaccess/lib/help/view_table_structure.hlp -share/postgresql/pgaccess/lib/help/views.hlp -share/postgresql/pgaccess/lib/help/visual_designer.hlp -share/postgresql/pgaccess/lib/help/y2k.hlp -share/postgresql/pgaccess/lib/help.tcl -share/postgresql/pgaccess/lib/languages/czech -share/postgresql/pgaccess/lib/languages/chinese_big5 -share/postgresql/pgaccess/lib/languages/chinese_gb -share/postgresql/pgaccess/lib/languages/deutsch -share/postgresql/pgaccess/lib/languages/euskara -share/postgresql/pgaccess/lib/languages/francais -share/postgresql/pgaccess/lib/languages/italiano -share/postgresql/pgaccess/lib/languages/japanese -share/postgresql/pgaccess/lib/languages/magyar -share/postgresql/pgaccess/lib/languages/nederlands -share/postgresql/pgaccess/lib/languages/portugues -share/postgresql/pgaccess/lib/languages/romana -share/postgresql/pgaccess/lib/languages/russian.koi8r -share/postgresql/pgaccess/lib/languages/russian_win -share/postgresql/pgaccess/lib/languages/spanish -share/postgresql/pgaccess/lib/mainlib.tcl -share/postgresql/pgaccess/lib/preferences.tcl -share/postgresql/pgaccess/lib/queries.tcl -share/postgresql/pgaccess/lib/reports.tcl -share/postgresql/pgaccess/lib/schema.tcl -share/postgresql/pgaccess/lib/scripts.tcl -share/postgresql/pgaccess/lib/sequences.tcl -share/postgresql/pgaccess/lib/tables.tcl -share/postgresql/pgaccess/lib/users.tcl -share/postgresql/pgaccess/lib/views.tcl -share/postgresql/pgaccess/lib/visualqb.tcl -share/postgresql/pgaccess/main.tcl -@dirrm share/postgresql/pgaccess/images -@dirrm share/postgresql/pgaccess/lib/help -@dirrm share/postgresql/pgaccess/lib/languages -@dirrm share/postgresql/pgaccess/lib -@dirrm share/postgresql/pgaccess -@dirrm lib/tcl%%WITH_TCL%%/Pgtcl1.3 diff --git a/databases/postgresql83-server/scripts/configure.postgresql b/databases/postgresql83-server/scripts/configure.postgresql deleted file mode 100644 index 0b288ad43d25..000000000000 --- a/databases/postgresql83-server/scripts/configure.postgresql +++ /dev/null @@ -1,278 +0,0 @@ -#!/bin/sh -# -*- tab-width: 4; -*- -# ex:ts=4 -# -# $FreeBSD$ -# -if [ -f ${WRKDIRPREFIX}${CURDIR}/Makefile.inc ]; then - exit -fi - -if [ ! "${BATCH}" ]; then - dialog --title "Backup your data NOW" \ - --msgbox "`sed -e \"s#%%PREFIX%%#${PREFIX}#\" < ${FILESDIR}/pre-install-notes`" \ - -1 -1 -fi - -if [ "${BATCH}" ]; then - set \"MultiByte\" \"ODBC\" \"SSL\" \"TCL\" \"TCLTK\" -else - /usr/bin/dialog --title "configuration options" --clear \ - --checklist "\n\ -Please select desired options:" -1 -1 7 \ -JDBC "Java DataBase Connectivity" OFF \ -MultiByte "Multibyte for Multilingualism" ON \ -ODBC "Open Database Connectivity" ON \ -TCL "Tcl" ON \ -TCLTK "Tcl/Tk" ON \ -SSL "Secure Socket Layer" ON \ -KRB5 "Kerberos 5" OFF \ -2> /tmp/checklist.tmp.$$ - - retval=$? - - if [ -s /tmp/checklist.tmp.$$ ]; then - set `cat /tmp/checklist.tmp.$$` - fi - rm -f /tmp/checklist.tmp.$$ - - case $retval in - 0) if [ -z "$*" ]; then - echo "Nothing selected" - fi - ;; - 1) echo "Cancel pressed." - exit 1 - ;; - esac -fi - -${MKDIR} ${WRKDIRPREFIX}${CURDIR} -exec > ${WRKDIRPREFIX}${CURDIR}/Makefile.inc - -while [ "$1" ]; do - case $1 in - \"JDBC\") - # We use JAVA_HOME if set correctly. If the user has - # specified a JVM with JAVA_HOME or via the javavmwrapper, - # we validate that it really exists. It is unnecessarily - # complicated and error prone to try to figure out the - # correct java version just to be able to determine a - # BUILD_DEPEND in this case. Instead, assume that a set - # JAVA_HOME together with simple sanity check mean we have - # an installed JVM, and we don't bother setting - # BUILD_DEPENDS. - - echo "# JDBC" - # if JAVA_HOME is set and exists, use it - if [ "${JAVA_HOME}" -a -x "${JAVA_HOME}/bin/javac" ]; then - echo JAVA_HOME=${JAVA_HOME} - else - # No JAVA_HOME, check javavmwrapper's config file - if [ -r "${LOCALBASE}/etc/javavms" ]; then - VMS=`/usr/bin/sed 's|#.*||' < "${LOCALBASE}/etc/javavms" | uniq` - for JAVAVM in ${VMS}; do - if [ -x "${JAVAVM}" ]; then - JAVA_HOME=`echo ${JAVAVM} | /usr/bin/sed 's|/bin/java$||` - break - fi - done - fi - if [ "${JAVA_HOME}" -a -x "${JAVA_HOME}/bin/javac" ]; then - # yep, wrapper was good - echo JAVA_HOME=${JAVA_HOME} - else - # nothing, use our boring 1.1.8, the only native non-beta jdk :( - echo BUILD_DEPENDS+= \${LOCALBASE}/jdk1.1.8/bin/javac:\${PORTSDIR}/java/jdk - echo JAVA_HOME=\${LOCALBASE}/jdk1.1.8 - fi - fi - cat <<-EOF - BUILD_DEPENDS+= \${LOCALBASE}/bin/ant:\${PORTSDIR}/devel/jakarta-ant - CONFIGURE_ENV+= ANT=\${LOCALBASE}/bin/ant - WITH_JDBC=YES - MAKE_ENV+= JAVA_HOME=\${JAVA_HOME} - SCRIPTS_ENV+= JAVA_HOME=\${JAVA_HOME} - CONFIGURE_ARGS+= --with-java - - EOF - ;; - \"MultiByte\") - MULTIBYTE=1 - ;; - \"ODBC\") - cat <<-EOF - # ODBC - WITH_ODBC=YES - CONFIGURE_ARGS+= --with-odbc - - EOF - ;; - \"TCL\") - TCL=1 - ;; - \"TCLTK\") - echo "#TCLTK" - echo WITH_TK=YES - echo - TCL=1 - ;; - \"SSL\") - cat <<-EOF - # SSL - USE_OPENSSL= yes - CFLAGS+= -DUSE_SSL - WITH_SSL= yes - CONFIGURE_ENV+= LDFLAGS="-L\${OPENSSLLIB} -lssl -lcrypto" - CONFIGURE_ARGS+= --with-openssl - - EOF - ;; - \"KRB5\") - KRB5=1 - ;; - \"nothing\"|true) - ;; - *) - echo "Invalid option(s): $*" > /dev/stderr - rm -f ${WRKDIRPREFIX}${CURDIR}/Makefile.inc - exit 1 - ;; - esac - shift -done - -exec > /dev/stderr - -# if multibyte, determine charset -echo "# Multibyte" >> ${WRKDIRPREFIX}${CURDIR}/Makefile.inc - -if [ ! "${MULTIBYTE}" ]; then - echo "WITHOUT_MULTIBYTE=YES" >> ${WRKDIRPREFIX}${CURDIR}/Makefile.inc -else - if [ "${BATCH}" ]; then - set "nothing" - else - /usr/bin/dialog --title "configuration options" --clear \ - --radiolist "\n\ -Please select desired options:" -1 -1 16 \ -nothing "Default Encoding" ON \ -SQL_ASCII "SQL_ASCII" OFF \ -LATIN1 "LATIN1" OFF \ -LATIN2 "LATIN2" OFF \ -LATIN3 "LATIN3" OFF \ -LATIN4 "LATIN4" OFF \ -LATIN5 "LATIN5" OFF \ -EUC_JP "EUC_JP" OFF \ -EUC_CN "EUC_CN" OFF \ -EUC_KR "EUC_KR" OFF \ -EUC_TW "EUC_TW" OFF \ -KOI8 "KOI8" OFF \ -UNICODE "UNICODE" OFF \ -MULE_INTERNAL "MULE_INTERNAL" OFF \ -WIN "WIN" OFF \ -ALT "ALT" OFF \ -2> /tmp/checklist.tmp.$$ - - retval=$? - - if [ -s /tmp/checklist.tmp.$$ ]; then - set `cat /tmp/checklist.tmp.$$` - fi - rm -f /tmp/checklist.tmp.$$ - if [ $retval = 1 ]; then - echo "Cancel pressed." - rm ${WRKDIRPREFIX}${CURDIR}/Makefile.inc - exit 1 - fi - fi - - if [ "$1" = "nothing" ]; then - echo "CONFIGURE_ARGS+= --enable-multibyte" \ - >> ${WRKDIRPREFIX}${CURDIR}/Makefile.inc - else - echo "CONFIGURE_ARGS+= --enable-multibyte=$1" \ - >> ${WRKDIRPREFIX}${CURDIR}/Makefile.inc - fi -fi -echo - -if [ "${TCL}" ]; then - echo "# TCL" >> ${WRKDIRPREFIX}${CURDIR}/Makefile.inc - if [ "${BATCH}" ]; then - echo WITH_TCL=8.3 >> ${WRKDIRPREFIX}${CURDIR}/Makefile.inc - else - dialog --title "TCL version" \ - --inputbox "Please enter TCL version. Default is 8.3." -1 -1 "8.3" \ - 2> /tmp/checklist.tmp.$$ - retval=$? - if [ -s /tmp/checklist.tmp.$$ ]; then - set `cat /tmp/checklist.tmp.$$` - fi - rm -f /tmp/checklist.tmp.$$ - case $retval in - 0) if [ -z "$*" ]; then - echo "Nothing selected" - fi - ;; - 1) echo "Cancel pressed." - rm -f ${WRKDIRPREFIX}${CURDIR}/Makefile.inc - exit 1 - ;; - esac - echo WITH_TCL=$1 >> ${WRKDIRPREFIX}${CURDIR}/Makefile.inc - fi - cat <<-EOF >> ${WRKDIRPREFIX}${CURDIR}/Makefile.inc - CONFIGURE_ARGS+= --with-tcl --with-tclconfig="\${TCLCONFIG}" - TCLV=\${WITH_TCL:S/.//} - TCL_INCDIR= \${LOCALBASE}/include/tcl\${WITH_TCL} - MAKE_ENV+= TCL_INCDIR=\${TCL_INCDIR} - LIB_DEPENDS+= tcl\${TCLV}:\${PORTSDIR}/lang/tcl\${TCLV} - TCLCONFIG= "\${LOCALBASE}/lib/tcl\${WITH_TCL}" - .if defined(WITH_TK) - CONFIGURE_ARGS+= --with-tkconfig="\${TKCONFIG}" - TK_INCDIR= \${LOCALBASE}/include/tk\${WITH_TCL} - CONFIGURE_ENV+= WISH=\${LOCALBASE}/bin/wish\${WITH_TCL} - LIB_DEPENDS+= tk\${TCLV}:\${PORTSDIR}/x11-toolkits/tk\${TCLV} - TKCONFIG= "\${LOCALBASE}/lib/tk\${WITH_TCL}" - TCLCONFIG+= \${TKCONFIG} - TCL_PLIST= pkg-plist.tcl - .else - TCL_PLIST= pkg-plist.notk - CONFIGURE_ARGS+= --without-tk - .endif - - EOF -fi - -if [ "${KRB5}" ]; then - if [ "${BATCH}" ]; then - # never gets here, but what the heck... - echo KRB5_HOME=\${LOCALBASE} >> ${WRKDIRPREFIX}${CURDIR}/Makefile.inc - else - dialog --inputbox "Please enter the KRB5_HOME path" -1 -1 "${KRB_HOME:-${LOCALBASE}}" \ - 2> /tmp/checklist.tmp.$$ - retval=$? - if [ -s /tmp/checklist.tmp.$$ ]; then - set `cat /tmp/checklist.tmp.$$` - fi - rm -f /tmp/checklist.tmp.$$ - case $retval in - 0) if [ -z "$*" ]; then - echo "No input" - fi - ;; - 1) echo "Cancel pressed." - rm -f ${WRKDIRPREFIX}${CURDIR}/Makefile.inc - exit 1 - ;; - esac - echo KRB5_HOME=\"$1\" >> ${WRKDIRPREFIX}${CURDIR}/Makefile.inc - fi - cat <<-EOF >> ${WRKDIRPREFIX}${CURDIR}/Makefile.inc - .if defined(KRB5_HOME) && exists(\${KRB5_HOME}) - CONFIGURE_KRB= --with-krb5=\${KRB5_HOME} - .endif - - EOF -fi diff --git a/databases/postgresql84-server/Makefile b/databases/postgresql84-server/Makefile deleted file mode 100644 index 4a30008d77bc..000000000000 --- a/databases/postgresql84-server/Makefile +++ /dev/null @@ -1,198 +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.1.3 -CATEGORIES= databases -MASTER_SITES= ftp://ftp.sunet.se/pub/unix/databases/relational/postgresql/%SUBDIR%/ \ - ftp://ftp.postgresql.org/pub/%SUBDIR%/ \ - ftp://ftp.de.postgresql.org/%SUBDIR%/ \ - ftp://ftp.digex.net/pub/packages/database/postgresql/%SUBDIR%/ \ - ftp://ftp.chg.ru/pub/databases/postgresql/%SUBDIR%/ \ - ${MASTER_SITE_RINGSERVER:S,%SUBDIR%,misc/db/postgresql/&,} -MASTER_SITE_SUBDIR= source/v${PORTVERSION} -DISTFILES= ${PORTNAME}-base-${PORTVERSION}${EXTRACT_SUFX} \ - ${PORTNAME}-opt-${PORTVERSION}${EXTRACT_SUFX} -.if !defined(NOPORTDOCS) -DISTFILES+= ${PORTNAME}-docs-${PORTVERSION}${EXTRACT_SUFX} -.endif - -MAINTAINER= girgen@partitur.se - -DIST_SUBDIR= postgresql - -INSTALLS_SHLIB= YES - -DOCDIR= ${WRKDIR}/${DISTNAME}/doc -PLIST= ${WRKDIR}/.PLIST.generated - -USE_GMAKE= YES -HAS_CONFIGURE= YES -CONFIGURE_ARGS= --enable-locale \ - --enable-syslog --with-CXX \ - --sysconfdir=${PREFIX}/etc/postgresql \ - --with-includes="${PREFIX}/include ${TCL_INCDIR} ${TK_INCDIR}" \ - --with-libraries=${PREFIX}/lib -.if defined(WITH_OLD_LAYOUT) -CONFIGURE_ARGS+=--docdir=${PREFIX}/share/doc --includedir=${PREFIX}/pgsql/include \ - --datadir=${PREFIX}/share \ - --with-template=`uname -s | ${TR} '[A-Z]' '[a-z]'` \ - --prefix=${PREFIX}/pgsql -PG_PREFIX= pgsql/ -PG_INCLUDE= pgsql/include -LDCONFIG_DIRS= %%PREFIX%%/pgsql/lib -MANPREFIX= ${PREFIX}/pgsql -.else -GNU_CONFIGURE= YES -CONFIGURE_ARGS+=--docdir=${PREFIX}/share/doc --includedir=${PREFIX}/include/pgsql -PG_PREFIX="" -PG_INCLUDE= include/pgsql -.endif - -PLIST_SUB= PG_PREFIX="${PG_PREFIX}" PG_INCLUDE="${PG_INCLUDE}" WITH_TCL="${WITH_TCL}" - -MAN1= createdb.1 createlang.1 createuser.1 dropdb.1 droplang.1 \ - dropuser.1 ecpg.1 initdb.1 initlocation.1 ipcclean.1 pg_config.1 \ - pg_ctl.1 pg_dump.1 pg_dumpall.1 pg_passwd.1 pg_restore.1 \ - pgaccess.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 checkpoint.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 set_constraints.l set_transaction.l show.l \ - truncate.l unlisten.l update.l vacuum.l - -SCRIPTS_ENV= WRKDIRPREFIX="${WRKDIRPREFIX}" \ - WRKDIR="${WRKDIR}" \ - FILESDIR="${FILESDIR}" \ - TOUCH="${TOUCH}" \ - MKDIR="${MKDIR}" \ - NO_OPENSSL="${NO_OPENSSL}" \ - DISTNAME="${DISTNAME}" - -# We must .include here because we need the Makefile.inc @ pre-install -# to determine the correct plist. -.if exists(${WRKDIRPREFIX}${.CURDIR}/Makefile.inc) -.include "${WRKDIRPREFIX}${.CURDIR}/Makefile.inc" -.else -# make utility targets like depends and describe happy -LIB_DEPENDS= tcl83:${PORTSDIR}/lang/tcl83 \ - tk83:${PORTSDIR}/x11-toolkits/tk83 -.endif - -pre-everything:: - @ ${SETENV} ${SCRIPTS_ENV} ${SH} ${SCRIPTDIR}/configure.postgresql - -pre-install: - @ ${SETENV} PKG_PREFIX=${PREFIX} ${SH} ${PKGDIR}/pkg-install ${PORTNAME} PRE-INSTALL -.if !defined(BATCH) -# remind folks twice for a while, so they really don't miss the layout shift - @ ${SED} "s|/usr/local|${PREFIX}|g" < ${PKGMESSAGE} | head -n 25 | more -e -.endif - @ ${CP} ${PKGDIR}/pkg-plist ${PLIST} -.if defined(WITHOUT_MULTIBYTE) - @${CP} ${PLIST} ${PLIST}.nomulti ;\ - ${GREP} -v bin/pg_encoding ${PLIST}.nomulti > ${PLIST} -.endif -.if defined(WITH_TCL) - @ ${CP} ${PLIST} ${PLIST}.notcl ;\ - ${CAT} ${PKGDIR}/${TCL_PLIST} ${PLIST}.notcl > ${PLIST} ;\ - ${RM} ${PLIST}.notcl -.endif -.if defined(WITH_ODBC) - @ ${CP} ${PLIST} ${PLIST}.noodbc ;\ - ${CAT} ${PKGDIR}/pkg-plist.odbc ${PLIST}.noodbc > ${PLIST} ;\ - ${RM} ${PLIST}.noodbc -.endif -.if defined(WITH_JDBC) - @ ${CP} ${PLIST} ${PLIST}.nojdbc ;\ - ${CAT} ${PKGDIR}/pkg-plist.jdbc ${PLIST}.nojdbc > ${PLIST} ;\ - ${RM} ${PLIST}.nojdbc -.endif -.if !defined(NOPORTDOCS) - @ ${CAT} ${PKGDIR}/pkg-plist.doc >> ${PLIST} -.endif - -post-install: -# install shell defaults for pgsql user -.for i in profile cshrc - @ ${SED} "s|%%PREFIX%%|${PREFIX}|g; s|%%PG_PREFIX%%|${PG_PREFIX}|g" \ - < ${FILESDIR}/dot.$i.in \ - > ${PREFIX}/share/postgresql/dot.$i.dist; \ - ${CP} ${PREFIX}/share/postgresql/dot.$i.dist ~pgsql/; \ - if [ ! -f ~pgsql/.$i ]; then \ - ${CP} ${PREFIX}/share/postgresql/dot.$i.dist ~pgsql/.$i; \ - fi -.endfor - @ ${SED} -e "s|%%PREFIX%%|${PREFIX}|g; s|%%PG_PREFIX%%|${PG_PREFIX}|g" \ - < ${FILESDIR}/pgsql.sh.tmpl \ - > ${PREFIX}/etc/rc.d/010.pgsql.sh - @ ${CHMOD} 554 ${PREFIX}/etc/rc.d/010.pgsql.sh - @ ${CHOWN} root:pgsql ${PREFIX}/etc/rc.d/010.pgsql.sh -.if defined(WITH_TCL) -# Preparing a loadable TCL-package (pkgIndex.tcl) - @${MKDIR} ${PREFIX}/lib/tcl${WITH_TCL}/Pgtcl1.3 - @${SED} "s|%%PREFIX%%|${PREFIX}|g" < ${FILESDIR}/pkgIndex.tcl.in \ - > ${PREFIX}/lib/tcl${WITH_TCL}/Pgtcl1.3/pkgIndex.tcl -.endif -.if defined(WITH_JDBC) - @ ${MKDIR} -m 0555 ${PREFIX}/share/java/classes - @ ${INSTALL_DATA} ${WRKSRC}/src/interfaces/jdbc/jars/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} "---------------------------------------------------------" -.if !defined(NOPORTDOCS) - @ ${MKDIR} -m 0555 ${PREFIX}/share/examples/postgresql ;\ - cd ${WRKSRC}/src/interfaces/jdbc/example ;\ - pax -rw . ${PREFIX}/share/examples/postgresql -.for i in README Implementation - @ ${INSTALL_DATA} ${WRKSRC}/src/interfaces/jdbc/$i \ - ${PREFIX}/share/examples/postgresql -.endfor - @ ${ECHO_MSG} "---------------------------------------------------------------" - @ ${ECHO_MSG} "Putting java examples into ${PREFIX}/share/examples/postgresql" - @ ${ECHO_MSG} "---------------------------------------------------------------" -.endif -.endif -.if !defined(DEBUG_FLAGS) -.for file in ecpg pg_dump pg_id pg_passwd pg_restore postgres psql - @ strip ${PREFIX}/${PG_PREFIX}bin/${file} -.endfor -.endif -# information overload mode activated, sorry about this... ;-) - @ ${CAT} ${FILESDIR}/post-install-notes ${PKGMESSAGE} |\ - ${SED} "s|/usr/local|${PREFIX}|g" |\ - tee ${PREFIX}/share/postgresql/post-install-notes ;\ - ${INSTALL_DATA} ${PREFIX}/share/postgresql/post-install-notes ~pgsql/. ;\ - ${CHOWN} -R pgsql:pgsql ~pgsql/. -.if defined(WITH_OLD_LAYOUT) - @ ${CHOWN} root:pgsql ${PREFIX}/${PG_PREFIX}lib -.endif - -post-clean: - @ ${RM} -f ${WRKDIRPREFIX}${.CURDIR}/Makefile.inc - -post-extract: ${POSTEXTRACT} - -.include <bsd.port.mk> diff --git a/databases/postgresql84-server/distinfo b/databases/postgresql84-server/distinfo deleted file mode 100644 index 23e07754313f..000000000000 --- a/databases/postgresql84-server/distinfo +++ /dev/null @@ -1,3 +0,0 @@ -MD5 (postgresql/postgresql-base-7.1.3.tar.gz) = f932dea12806972402aaaf17a2a97034 -MD5 (postgresql/postgresql-opt-7.1.3.tar.gz) = e84e9c51b31567d4571c7612e0c0fbd6 -MD5 (postgresql/postgresql-docs-7.1.3.tar.gz) = 7061ab7f7ec3c4d18f8e6cb2858896d0 diff --git a/databases/postgresql84-server/files/dot.cshrc.in b/databases/postgresql84-server/files/dot.cshrc.in deleted file mode 100644 index a326041bff7b..000000000000 --- a/databases/postgresql84-server/files/dot.cshrc.in +++ /dev/null @@ -1,13 +0,0 @@ -set path = ( %%PREFIX%%/%%PG_PREFIX%%bin $path ) - -setenv PGLIB %%PREFIX%%/%%PG_PREFIX%%lib - -# note: PGDATA can be overridden by the -D startup option -setenv PGDATA $HOME/data - -#You might want to set some locale stuff here -#setenv PGDATESTYLE ISO -#setenv LC_ALL sv_SE.ISO_8859-1 - -# if you want to make regression tests use this TZ -#setenv TZ PST8PDT diff --git a/databases/postgresql84-server/files/dot.profile.in b/databases/postgresql84-server/files/dot.profile.in deleted file mode 100644 index 4aca6aadd19a..000000000000 --- a/databases/postgresql84-server/files/dot.profile.in +++ /dev/null @@ -1,18 +0,0 @@ -# both new and old layout's paths, but new path first... -PATH=%%PREFIX%%/%%PG_PREFIX%%bin:${PATH} - -PGLIB=%%PREFIX%%/%%PG_PREFIX%%lib - -# note: PGDATA can be overridden by the -D startup option -PGDATA=${HOME}/data - -export PATH PGLIB PGDATA - -#You might want to set some locale stuff here -#PGDATESTYLE=ISO -#LC_ALL=sv_SE.ISO_8859-1 -#export PGDATESTYLE LC_ALL - -# if you want to make regression tests use this TZ -#TZ=PST8PDT -#export TZ diff --git a/databases/postgresql84-server/files/patch-aj b/databases/postgresql84-server/files/patch-aj deleted file mode 100644 index 94c0d6d79991..000000000000 --- a/databases/postgresql84-server/files/patch-aj +++ /dev/null @@ -1,118 +0,0 @@ ---- src/bin/pg_passwd/pg_passwd.c.orig Sat Mar 24 01:54:55 2001 -+++ src/bin/pg_passwd/pg_passwd.c Wed Apr 18 04:54:14 2001 -@@ -7,6 +7,12 @@ - #include <errno.h> - #include <time.h> - #include <ctype.h> -+ -+#if defined(__FreeBSD__) -+#include <pwd.h> /* defines _PASSWORD_LEN, max # of characters in a password */ -+#include <sys/time.h> /* gettimeofday for password salt */ -+#endif -+ - #define issaltchar(c) (isalnum((unsigned char) (c)) || (c) == '.' || (c) == '/') - - #ifdef HAVE_TERMIOS_H -@@ -23,18 +29,31 @@ - * We assume that the output of crypt(3) is always 13 characters, - * and that at most 8 characters can usefully be sent to it. - * -+ * For FreeBSD, take these values from /usr/include/pwd.h - * Postgres usernames are assumed to be less than NAMEDATALEN chars long. - */ -+#if defined(__FreeBSD__) -+#define CLEAR_PASSWD_LEN _PASSWORD_LEN -+#define CRYPTED_PASSWD_LEN _PASSWORD_LEN /* max length, not containing NULL */ -+#define SALT_LEN 10 -+#else - #define CLEAR_PASSWD_LEN 8 /* not including null */ - #define CRYPTED_PASSWD_LEN 13 /* not including null */ -+#define SALT_LEN 3 -+#endif -+ -+static unsigned char itoa64[] = /* 0 ... 63 => ascii - 64 */ -+ "./0123456789ABCDEFGHIJKLMNOPQRSTUVWXYZabcdefghijklmnopqrstuvwxyz"; -+ - - const char *progname; - - static void usage(void); -+static void to64(char *s, long v, int n); - static void read_pwd_file(char *filename); - static void write_pwd_file(char *filename, char *bkname); - static void encrypt_pwd(char key[CLEAR_PASSWD_LEN + 1], -- char salt[3], -+ char salt[SALT_LEN], - char passwd[CRYPTED_PASSWD_LEN + 1]); - static void prompt_for_username(char *username); - static void prompt_for_password(char *prompt, char *password); -@@ -47,6 +66,15 @@ - printf("Report bugs to <pgsql-bugs@postgresql.org>.\n"); - } - -+static void -+to64(char *s, long v, int n) -+{ -+ while (--n >= 0) { -+ *s++ = itoa64[v&0x3f]; -+ v >>= 6; -+ } -+} -+ - typedef struct - { - char *uname; -@@ -154,7 +182,7 @@ - if (q != NULL) - *(q++) = '\0'; - -- if (strlen(p) != CRYPTED_PASSWD_LEN && strcmp(p, "+") != 0) -+ if (strlen(p) > CRYPTED_PASSWD_LEN && strcmp(p, "+") != 0) - { - fprintf(stderr, "%s:%d: warning: invalid password length\n", - filename, npwds + 1); -@@ -221,15 +249,25 @@ - - static void - encrypt_pwd(char key[CLEAR_PASSWD_LEN + 1], -- char salt[3], -+ char salt[SALT_LEN], - char passwd[CRYPTED_PASSWD_LEN + 1]) - { -+#if !defined(__FreeBSD__) - int n; -- -+#endif - /* select a salt, if not already given */ - if (salt[0] == '\0') - { -+#if defined(__FreeBSD__) -+ struct timeval tv; -+ srandomdev(); -+ gettimeofday(&tv,0); -+ to64(&salt[0], random(), 3); -+ to64(&salt[3], tv.tv_usec, 3); -+ to64(&salt[6], tv.tv_sec, 2); -+ salt[8] = '\0'; - srand(time(NULL)); -+#else - do - { - n = rand() % 256; -@@ -241,6 +279,7 @@ - } while (!issaltchar(n)); - salt[1] = n; - salt[2] = '\0'; -+#endif - } - - /* get encrypted password */ -@@ -335,7 +374,7 @@ - char *filename; - char bkname[MAXPGPATH]; - char username[NAMEDATALEN]; -- char salt[3]; -+ char salt[SALT_LEN]; - char key[CLEAR_PASSWD_LEN + 1], - key2[CLEAR_PASSWD_LEN + 1]; - char e_passwd[CRYPTED_PASSWD_LEN + 1]; diff --git a/databases/postgresql84-server/files/patch-contrib-retep-build b/databases/postgresql84-server/files/patch-contrib-retep-build deleted file mode 100644 index 80f40f1cc86d..000000000000 --- a/databases/postgresql84-server/files/patch-contrib-retep-build +++ /dev/null @@ -1,37 +0,0 @@ -=================================================================== -RCS file: /home/projects/pgsql/cvsroot/pgsql/contrib/retep/build.xml,v -retrieving revision 1.4 -retrieving revision 1.5 -diff -u -r1.4 -r1.5 ---- contrib/retep/build.xml 2001/03/11 11:06:59 1.4 -+++ contrib/retep/build.xml 2001/05/16 16:20:51 1.5 -@@ -2,7 +2,7 @@ - - build file to build the donated retep tools packages - -- $Id: build.xml,v 1.4 2001/03/11 11:06:59 petere Exp $ -+ $Id: build.xml,v 1.5 2001/05/16 16:20:51 momjian Exp $ - - --> - -@@ -22,6 +22,11 @@ - <available property="xml" classname="org.xml.sax.Parser" /> - </target> - -+ <target name="warning" depends="checks" unless="jdk1.2+"> -+ <echo message="WARNING -- contributed retep tools need jdk1.2 or later -- compilation NOT done." /> -+ </target> -+ -+ - <!-- Prepares the build by creating a directory to place the class files --> - <target name="prepare"> - <mkdir dir="${dest}" /> -@@ -35,7 +40,7 @@ - </target> - - <!-- Builds the XML Tools --> -- <target name="compile" depends="checks,prepare"> -+ <target name="compile" depends="checks,prepare,warning" if="jdk1.2+"> - <javac srcdir="${src}" destdir="${dest}"> - <include name="${package}/**" /> - </javac> diff --git a/databases/postgresql84-server/files/patch-doc-makefile b/databases/postgresql84-server/files/patch-doc-makefile deleted file mode 100644 index fa27bed2af3f..000000000000 --- a/databases/postgresql84-server/files/patch-doc-makefile +++ /dev/null @@ -1,19 +0,0 @@ ---- doc/Makefile~ Sun Jan 7 03:03:22 2001 -+++ doc/Makefile Wed Apr 18 08:12:30 2001 -@@ -43,10 +43,13 @@ - gzip -d -c man.tar.gz | ( cd $(DESTDIR)$(mandir) && $(TAR) xf - ) - endif - -- - installdirs: -- $(mkinstalldirs) $(DESTDIR)$(mandir) $(DESTDIR)$(docdir)/html -- -+ifdef found_html -+ $(mkinstalldirs) $(DESTDIR)$(docdir)/html -+endif -+ifdef found_man -+ $(mkinstalldirs) $(DESTDIR)$(mandir) -+endif - - uninstall: - ifdef found_html diff --git a/databases/postgresql84-server/files/patch-jdbc-Connection b/databases/postgresql84-server/files/patch-jdbc-Connection deleted file mode 100644 index 26fbc260d639..000000000000 --- a/databases/postgresql84-server/files/patch-jdbc-Connection +++ /dev/null @@ -1,51 +0,0 @@ -=================================================================== -RCS file: /home/projects/pgsql/cvsroot/pgsql/src/interfaces/jdbc/org/postgresql/Connection.java,v -retrieving revision 1.14 -retrieving revision 1.16 -diff -u -r1.14 -r1.16 ---- src/interfaces/jdbc/org/postgresql/Connection.java 2001/01/31 08:26:01 1.14 -+++ src/interfaces/jdbc/org/postgresql/Connection.java 2001/06/01 20:57:58 1.16 -@@ -10,7 +10,7 @@ - import org.postgresql.util.*; - - /** -- * $Id: Connection.java,v 1.14 2001/01/31 08:26:01 peter Exp $ -+ * $Id: Connection.java,v 1.16 2001/06/01 20:57:58 momjian Exp $ - * - * This abstract class is used by org.postgresql.Driver to open either the JDBC1 or - * JDBC2 versions of the Connection class. -@@ -267,7 +267,8 @@ - // - firstWarning = null; - -- java.sql.ResultSet initrset = ExecSQL("set datestyle to 'ISO'; select getdatabaseencoding()"); -+ java.sql.ResultSet initrset = ExecSQL("set datestyle to 'ISO'; " + -+ "select case when pg_encoding_to_char(1) = 'SQL_ASCII' then 'UNKNOWN' else getdatabaseencoding() end"); - - String dbEncoding = null; - //retrieve DB properties -@@ -307,9 +308,23 @@ - } else if (dbEncoding.equals("EUC_TW")) { - dbEncoding = "EUC_TW"; - } else if (dbEncoding.equals("KOI8")) { -- dbEncoding = "KOI8_R"; -+ // try first if KOI8_U is present, it's a superset of KOI8_R -+ try { -+ dbEncoding = "KOI8_U"; -+ "test".getBytes(dbEncoding); -+ } -+ catch(UnsupportedEncodingException uee) { -+ // well, KOI8_U is still not in standard JDK, falling back to KOI8_R :( -+ dbEncoding = "KOI8_R"; -+ } -+ - } else if (dbEncoding.equals("WIN")) { - dbEncoding = "Cp1252"; -+ } else if (dbEncoding.equals("UNKNOWN")) { -+ //This isn't a multibyte database so we don't have an encoding to use -+ //We leave dbEncoding null which will cause the default encoding for the -+ //JVM to be used -+ dbEncoding = null; - } else { - dbEncoding = null; - } diff --git a/databases/postgresql84-server/files/patch-jdbc-build-xml b/databases/postgresql84-server/files/patch-jdbc-build-xml deleted file mode 100644 index b1c703a9c978..000000000000 --- a/databases/postgresql84-server/files/patch-jdbc-build-xml +++ /dev/null @@ -1,10 +0,0 @@ ---- src/interfaces/jdbc/build.xml~ Fri Mar 16 22:50:43 2001 -+++ src/interfaces/jdbc/build.xml Wed Apr 18 08:57:57 2001 -@@ -120,6 +120,7 @@ - <javac srcdir="${src}" destdir="${dest}"> - <include name="example/**" /> - <exclude name="example/corba/**"/> -+ <exclude name="example/blobtest.java" unless="jdk1.2+"/> - </javac> - </target> - diff --git a/databases/postgresql84-server/files/patch-jdbc-getdate b/databases/postgresql84-server/files/patch-jdbc-getdate deleted file mode 100644 index 744407ae14b5..000000000000 --- a/databases/postgresql84-server/files/patch-jdbc-getdate +++ /dev/null @@ -1,34 +0,0 @@ ---- src/interfaces/jdbc/org/postgresql/jdbc2/ResultSet.java~ Fri Feb 23 19:12:23 2001 -+++ src/interfaces/jdbc/org/postgresql/jdbc2/ResultSet.java Wed May 9 04:31:11 2001 -@@ -423,8 +423,13 @@ - String s = getString(columnIndex); - if(s==null) - return null; -- -- return java.sql.Date.valueOf(s); -+ // length == 10: SQL Date -+ // length > 10: SQL Timestamp, assumes PGDATESTYLE=ISO -+ try { -+ return java.sql.Date.valueOf((s.length() == 10) ? s : s.substring(0,10)); -+ } catch (NumberFormatException e) { -+ throw new PSQLException("postgresql.res.baddate", s); -+ } - } - - /** -@@ -441,8 +446,13 @@ - - if(s==null) - return null; // SQL NULL -- -- return java.sql.Time.valueOf(s); -+ // length == 8: SQL Time -+ // length > 8: SQL Timestamp -+ try { -+ return java.sql.Time.valueOf((s.length() == 8) ? s : s.substring(11,19)); -+ } catch (NumberFormatException e) { -+ throw new PSQLException("postgresql.res.badtime",s); -+ } - } - - /** diff --git a/databases/postgresql84-server/files/pgsql.sh.tmpl b/databases/postgresql84-server/files/pgsql.sh.tmpl deleted file mode 100644 index cd78771219ed..000000000000 --- a/databases/postgresql84-server/files/pgsql.sh.tmpl +++ /dev/null @@ -1,36 +0,0 @@ -#!/bin/sh - -# $FreeBSD$ -# -# For postmaster startup options, edit $PGDATA/postgresql.conf - -PGBIN=%%PREFIX%%/%%PG_PREFIX%%bin - -case $1 in -start) - [ -d %%PREFIX%%/%%PG_PREFIX%%lib ] && /sbin/ldconfig -m %%PREFIX%%/%%PG_PREFIX%%lib - [ -x ${PGBIN}/pg_ctl ] && { - su -l pgsql -c \ - '[ -d ${PGDATA} ] && exec %%PREFIX%%/%%PG_PREFIX%%bin/pg_ctl start -s -w -l ~pgsql/errlog' - echo -n ' pgsql' - } - ;; - -stop) - [ -x ${PGBIN}/pg_ctl ] && { - su -l pgsql -c 'exec %%PREFIX%%/%%PG_PREFIX%%bin/pg_ctl stop -s -m fast' - echo -n ' pgsql' - } - ;; - -status) - [ -x ${PGBIN}/pg_ctl ] && { - exec su -l pgsql -c 'exec %%PREFIX%%/%%PG_PREFIX%%bin/pg_ctl status' - } - ;; - -*) - echo "usage: `basename $0` {start|stop|status}" >&2 - exit 64 - ;; -esac diff --git a/databases/postgresql84-server/files/pkgIndex.tcl.in b/databases/postgresql84-server/files/pkgIndex.tcl.in deleted file mode 100644 index bd8329b15c69..000000000000 --- a/databases/postgresql84-server/files/pkgIndex.tcl.in +++ /dev/null @@ -1,4 +0,0 @@ -# Package-index file for Pgtcl-package. Enables you to load PostgreSQL -# interface functions right into you TCL-interpreter as simply as -# package require Pgtcl -package ifneeded Pgtcl 1.3 "load %%PREFIX%%/lib/libpgtcl.so" diff --git a/databases/postgresql84-server/files/post-install-notes b/databases/postgresql84-server/files/post-install-notes deleted file mode 100644 index 9347fc51c247..000000000000 --- a/databases/postgresql84-server/files/post-install-notes +++ /dev/null @@ -1,25 +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/TK support, you can use the pgaccess -utility to get a TCL/TK based database frontend for database -operations. You do NOT need to install the pgaccess port separately. - -If you built in the TCL support, you can load the Pg package into your -TCL scripts as easily as ``package require Pgtcl''. - -If you built with Java support, add -/usr/local/share/java/classes/postgresql.jar to your classpath. - -If you have many tables and many clients running, consider raising -kern.maxfiles using sysctl(8). - -Use createlang(1) to install languages into your database. -Supported languages are 'plpgsql', 'pltcl', 'pltclu', and 'plperl'. diff --git a/databases/postgresql84-server/files/pre-install-notes b/databases/postgresql84-server/files/pre-install-notes deleted file mode 100644 index 697ce3cedb79..000000000000 --- a/databases/postgresql84-server/files/pre-install-notes +++ /dev/null @@ -1,21 +0,0 @@ - * IMPORTANT UPGRADE NOTICE * IMPORTANT UPGRADE NOTICE * - -The PostgreSQL port now obeys hier(7) by default, which means that it -installs into: - -%%PREFIX%%/bin -%%PREFIX%%/lib -%%PREFIX%%/include/pgsql - -You *must* move away your old installation to avoid problems with -ldconfig(8) and user's PATH:s. If you rather install using the -old-fashion layout, cancel at next screen and run make as: - -$ make -DWITH_OLD_LAYOUT - -As always, you *must* dump existing databases before stopping and -removing your old postgresql, as part of the update. This is *NOT* -done by this port! - -If you want JAVA support, I will try to determine your JAVA_HOME using -javavmwrapper. If you want a different JVM, please set JAVA_HOME. 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 463e4e49815f..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 cfc983fc2f66..000000000000 --- a/databases/postgresql84-server/pkg-install +++ /dev/null @@ -1,46 +0,0 @@ -#! /bin/sh - -# $FreeBSD$ - -PATH=/bin:/usr/sbin - -DB_DIR=${PKG_PREFIX}/pgsql - -case $2 in -PRE-INSTALL) - USER=pgsql - GROUP=${USER} - UID=70 - 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} -c "PostgreSQL Daemon" - then - echo "Added user \"${USER}\"." - else - echo "Adding user \"${USER}\" failed..." - exit 1 - fi - fi - - if ! [ -x ~pgsql ] ; then - mkdir -p ${DB_DIR} - chown pgsql:pgsql ${DB_DIR} - fi - ;; - -esac diff --git a/databases/postgresql84-server/pkg-message b/databases/postgresql84-server/pkg-message deleted file mode 100644 index 1a3f9f1e4147..000000000000 --- a/databases/postgresql84-server/pkg-message +++ /dev/null @@ -1,38 +0,0 @@ - -====================================================================== - - * IMPORTANT UPGRADE NOTICE * IMPORTANT UPGRADE NOTICE * - -The PostgreSQL port now obeys hier(7) by default, which means that it -installs into: - -/usr/local/bin -/usr/local/lib -/usr/local/include/pgsql - -You *must* move away your old installation from users' and -ldconfig(8)'s PATHs. If you rather install using the old-fashion -layout, cancel now and build the port with "make -DWITH_OLD_LAYOUT". - -The pgsql user's home dir is /usr/local/pgsql by default, but can be -changed with for example chpass(1). Datadir defaults to ~pgsql/data, -but can be changed by modifying the ~pgsql/.profile script. - -As always, backup your data before upgrading. If the upgrade leads to -a higher minor revision (i.e. 7.0.x -> 7.1.x), a dump and restore of -all databases is required. This is *NOT* done by the port! - -====================================================================== - -To initialize the database, you should run initdb as the "pgsql" user. - -Example: - - su -l pgsql -c initdb - -You can then start PostgreSQL by running: - - /usr/local/etc/rc.d/010.pgsql.sh start - -For postmaster settings, see ~pgsql/data/postgresql.conf -====================================================================== diff --git a/databases/postgresql84-server/pkg-plist b/databases/postgresql84-server/pkg-plist deleted file mode 100644 index a7493ddb7898..000000000000 --- a/databases/postgresql84-server/pkg-plist +++ /dev/null @@ -1,91 +0,0 @@ -%%PG_PREFIX%%bin/postmaster -%%PG_PREFIX%%bin/postgres -%%PG_PREFIX%%bin/ecpg -%%PG_PREFIX%%bin/initdb -%%PG_PREFIX%%bin/initlocation -%%PG_PREFIX%%bin/ipcclean -%%PG_PREFIX%%bin/pg_ctl -%%PG_PREFIX%%bin/pg_dump -%%PG_PREFIX%%bin/pg_restore -%%PG_PREFIX%%bin/pg_encoding -%%PG_PREFIX%%bin/pg_dumpall -%%PG_PREFIX%%bin/pg_id -%%PG_PREFIX%%bin/pg_passwd -%%PG_PREFIX%%bin/psql -%%PG_PREFIX%%bin/createdb -%%PG_PREFIX%%bin/dropdb -%%PG_PREFIX%%bin/createuser -%%PG_PREFIX%%bin/dropuser -%%PG_PREFIX%%bin/droplang -%%PG_PREFIX%%bin/vacuumdb -%%PG_PREFIX%%bin/createlang -%%PG_PREFIX%%bin/pg_config -etc/rc.d/010.pgsql.sh -%%PG_INCLUDE%%/lib/dllist.h -@dirrm %%PG_INCLUDE%%/lib -%%PG_INCLUDE%%/libpq/pqcomm.h -%%PG_INCLUDE%%/libpq/libpq-fs.h -@dirrm %%PG_INCLUDE%%/libpq -%%PG_INCLUDE%%/libpq++/pgconnection.h -%%PG_INCLUDE%%/libpq++/pgdatabase.h -%%PG_INCLUDE%%/libpq++/pgtransdb.h -%%PG_INCLUDE%%/libpq++/pgcursordb.h -%%PG_INCLUDE%%/libpq++/pglobject.h -@dirrm %%PG_INCLUDE%%/libpq++ -%%PG_INCLUDE%%/c.h -%%PG_INCLUDE%%/postgres_ext.h -%%PG_INCLUDE%%/postgres_fe.h -%%PG_INCLUDE%%/os.h -%%PG_INCLUDE%%/config.h -%%PG_INCLUDE%%/libpq-fe.h -%%PG_INCLUDE%%/libpq-int.h -%%PG_INCLUDE%%/pqexpbuffer.h -%%PG_INCLUDE%%/ecpgerrno.h -%%PG_INCLUDE%%/ecpglib.h -%%PG_INCLUDE%%/ecpgtype.h -%%PG_INCLUDE%%/sqlca.h -%%PG_INCLUDE%%/sql3types.h -%%PG_INCLUDE%%/libpgeasy.h -%%PG_INCLUDE%%/libpq++.h -@dirrm %%PG_INCLUDE%% -%%PG_PREFIX%%lib/libpq.so -%%PG_PREFIX%%lib/libpq.a -%%PG_PREFIX%%lib/libpq.so.2 -%%PG_PREFIX%%lib/libecpg.so -%%PG_PREFIX%%lib/libecpg.a -%%PG_PREFIX%%lib/libecpg.so.3 -%%PG_PREFIX%%lib/libpgeasy.so -%%PG_PREFIX%%lib/libpgeasy.a -%%PG_PREFIX%%lib/libpgeasy.so.2 -%%PG_PREFIX%%lib/libpq++.so -%%PG_PREFIX%%lib/libpq++.a -%%PG_PREFIX%%lib/libpq++.so.3 -%%PG_PREFIX%%lib/plpgsql.so -share/postgresql/global.bki -share/postgresql/global.description -share/postgresql/post-install-notes -share/postgresql/template1.bki -share/postgresql/template1.description -share/postgresql/pg_hba.conf.sample -share/postgresql/pg_ident.conf.sample -share/postgresql/postgresql.conf.sample -@unexec if cmp -s ~pgsql/.profile %D/share/postgresql/dot.profile.dist; then rm -f ~pgsql/.profile; fi -@unexec if cmp -s ~pgsql/.cshrc %D/share/postgresql/dot.cshrc.dist; then rm -f ~pgsql/.cshrc; fi -@unexec [ -f ~pgsql/dot.profile.dist ] && rm ~pgsql/dot.profile.dist -@unexec [ -f ~pgsql/dot.cshrc.dist ] && rm ~pgsql/dot.cshrc.dist -@exec [ -f %D/share/postgresql/post-install-notes ] && cp %D/share/postgresql/post-install-notes ~pgsql && chown pgsql:pgsql ~pgsql/post-install-notes -@unexec [ -f ~pgsql/post-install-notes ] && rm ~pgsql/post-install-notes -share/postgresql/dot.profile.dist -share/postgresql/dot.cshrc.dist -@dirrm share/postgresql -@exec [ -f %D/share/postgresql/dot.profile.dist ] && cp %D/share/postgresql/dot.profile.dist ~pgsql/. -@exec [ -f %D/share/postgresql/dot.cshrc.dist ] && cp %D/share/postgresql/dot.cshrc.dist ~pgsql/. -@exec [ -f ~pgsql/.profile ] || (cp %D/share/postgresql/dot.profile.dist ~pgsql/.profile && chown pgsql:pgsql ~pgsql/.profile) -@exec [ -f ~pgsql/.cshrc ] || (cp %D/share/postgresql/dot.cshrc.dist ~pgsql/.cshrc && chown pgsql:pgsql ~pgsql/.cshrc) -@unexec [ X%%PG_PREFIX%% != X ] && rmdir %D/%%PG_PREFIX%%bin 2> /dev/null || true -@unexec [ X%%PG_PREFIX%% != X ] && rmdir %D/%%PG_PREFIX%%lib 2> /dev/null || true -@unexec [ X%%PG_PREFIX%% != X ] && rmdir %D/%%PG_PREFIX%%man/man1 2> /dev/null || true -@unexec [ X%%PG_PREFIX%% != X ] && rmdir %D/%%PG_PREFIX%%man/manl 2> /dev/null || true -@unexec [ X%%PG_PREFIX%% != X ] && rmdir %D/%%PG_PREFIX%%man 2> /dev/null || true -@unexec rmdir ~pgsql 2> /dev/null || true -@unexec echo "Warning: If you will *NOT* use this package anymore, please remove %D/pgsql and the pgsql user manually." diff --git a/databases/postgresql84-server/pkg-plist.doc b/databases/postgresql84-server/pkg-plist.doc deleted file mode 100644 index c4d50ecb24f0..000000000000 --- a/databases/postgresql84-server/pkg-plist.doc +++ /dev/null @@ -1,494 +0,0 @@ -share/doc/postgresql/html/admin.html -share/doc/postgresql/html/advanced.html -share/doc/postgresql/html/altern-locations.html -share/doc/postgresql/html/app-createdb.html -share/doc/postgresql/html/app-createlang.html -share/doc/postgresql/html/app-createuser.html -share/doc/postgresql/html/app-dropdb.html -share/doc/postgresql/html/app-droplang.html -share/doc/postgresql/html/app-dropuser.html -share/doc/postgresql/html/app-ecpg.html -share/doc/postgresql/html/app-initdb.html -share/doc/postgresql/html/app-initlocation.html -share/doc/postgresql/html/app-ipcclean.html -share/doc/postgresql/html/app-pg-ctl.html -share/doc/postgresql/html/app-pg-dumpall.html -share/doc/postgresql/html/app-pg-passwd.html -share/doc/postgresql/html/app-pgaccess.html -share/doc/postgresql/html/app-pgadmin.html -share/doc/postgresql/html/app-pgconfig.html -share/doc/postgresql/html/app-pgdump.html -share/doc/postgresql/html/app-pgrestore.html -share/doc/postgresql/html/app-pgtclsh.html -share/doc/postgresql/html/app-pgtksh.html -share/doc/postgresql/html/app-postgres.html -share/doc/postgresql/html/app-postmaster.html -share/doc/postgresql/html/app-psql.html -share/doc/postgresql/html/app-vacuumdb.html -share/doc/postgresql/html/applevel-consistency.html -share/doc/postgresql/html/arch-pg.html -share/doc/postgresql/html/arch.html -share/doc/postgresql/html/arrays.html -share/doc/postgresql/html/auth-methods.html -share/doc/postgresql/html/backup-file.html -share/doc/postgresql/html/backup.html -share/doc/postgresql/html/biblio.html -share/doc/postgresql/html/bki-commands.html -share/doc/postgresql/html/bki-example.html -share/doc/postgresql/html/bki.html -share/doc/postgresql/html/bug-reporting.html -share/doc/postgresql/html/catalog-pg-aggregate.html -share/doc/postgresql/html/catalog-pg-attrdef.html -share/doc/postgresql/html/catalog-pg-attribute.html -share/doc/postgresql/html/catalog-pg-class.html -share/doc/postgresql/html/catalog-pg-database.html -share/doc/postgresql/html/catalog-pg-description.html -share/doc/postgresql/html/catalog-pg-group.html -share/doc/postgresql/html/catalog-pg-index.html -share/doc/postgresql/html/catalog-pg-inherits.html -share/doc/postgresql/html/catalog-pg-language.html -share/doc/postgresql/html/catalog-pg-operator.html -share/doc/postgresql/html/catalog-pg-proc.html -share/doc/postgresql/html/catalog-pg-relcheck.html -share/doc/postgresql/html/catalog-pg-shadow.html -share/doc/postgresql/html/catalog-pg-type.html -share/doc/postgresql/html/catalogs.html -share/doc/postgresql/html/charset.html -share/doc/postgresql/html/client-authentication-problems.html -share/doc/postgresql/html/client-authentication.html -share/doc/postgresql/html/compiler.html -share/doc/postgresql/html/connect-estab.html -share/doc/postgresql/html/creating-cluster.html -share/doc/postgresql/html/cvs-tree.html -share/doc/postgresql/html/cvs.html -share/doc/postgresql/html/cvsup.html -share/doc/postgresql/html/datatype-bit.html -share/doc/postgresql/html/datatype-boolean.html -share/doc/postgresql/html/datatype-character.html -share/doc/postgresql/html/datatype-datetime.html -share/doc/postgresql/html/datatype-geometric.html -share/doc/postgresql/html/datatype-money.html -share/doc/postgresql/html/ecpg.html -share/doc/postgresql/html/datatype-net-types.html -share/doc/postgresql/html/datatype.html -share/doc/postgresql/html/datetime-appendix.html -share/doc/postgresql/html/db-accessing.html -share/doc/postgresql/html/db-destroy.html -share/doc/postgresql/html/developer.html -share/doc/postgresql/html/doc-build.html -share/doc/postgresql/html/doc-sources.html -share/doc/postgresql/html/doc-toolsets.html -share/doc/postgresql/html/docguide.html -share/doc/postgresql/html/ecpg-concept.html -share/doc/postgresql/html/ecpg-develop.html -share/doc/postgresql/html/ecpg-limitations.html -share/doc/postgresql/html/ecpg-porting.html -share/doc/postgresql/html/ecpg-use.html -share/doc/postgresql/html/executor.html -share/doc/postgresql/html/explicit-joins.html -share/doc/postgresql/html/extend.html -share/doc/postgresql/html/functions-datetime.html -share/doc/postgresql/html/functions-aggregate.html -share/doc/postgresql/html/functions-comparison.html -share/doc/postgresql/html/functions-conditional.html -share/doc/postgresql/html/functions-formatting.html -share/doc/postgresql/html/functions-geometry.html -share/doc/postgresql/html/functions-matching.html -share/doc/postgresql/html/functions-math.html -share/doc/postgresql/html/functions-misc.html -share/doc/postgresql/html/functions-net.html -share/doc/postgresql/html/functions-string.html -share/doc/postgresql/html/functions.html -share/doc/postgresql/html/geqo-intro2.html -share/doc/postgresql/html/geqo-pg-intro.html -share/doc/postgresql/html/geqo.html -share/doc/postgresql/html/gist.html -share/doc/postgresql/html/groups.html -share/doc/postgresql/html/history.html -share/doc/postgresql/html/index.html -share/doc/postgresql/html/indexcost.html -share/doc/postgresql/html/indices-functional.html -share/doc/postgresql/html/indices-multicolumn.html -share/doc/postgresql/html/indices-opclass.html -share/doc/postgresql/html/indices-types.html -share/doc/postgresql/html/indices-unique.html -share/doc/postgresql/html/indices.html -share/doc/postgresql/html/inherit.html -share/doc/postgresql/html/install-getsource.html -share/doc/postgresql/html/install-post.html -share/doc/postgresql/html/install-procedure.html -share/doc/postgresql/html/install-requirements.html -share/doc/postgresql/html/install-upgrading.html -share/doc/postgresql/html/install-win32.html -share/doc/postgresql/html/installation.html -share/doc/postgresql/html/jdbc-ext.html -share/doc/postgresql/html/jdbc-lo.html -share/doc/postgresql/html/jdbc.html -share/doc/postgresql/html/jdbc-query.html -share/doc/postgresql/html/jdbc-reading.html -share/doc/postgresql/html/jdbc-thread.html -share/doc/postgresql/html/jdbc-update.html -share/doc/postgresql/html/jdbc-use.html -share/doc/postgresql/html/kernel-resources.html -share/doc/postgresql/html/keys.html -share/doc/postgresql/html/largeobjects.html -share/doc/postgresql/html/libpgtcl-examples.html -share/doc/postgresql/html/libpgtcl-ref.html -share/doc/postgresql/html/libpq-async.html -share/doc/postgresql/html/libpq-control.html -share/doc/postgresql/html/libpq-copy.html -share/doc/postgresql/html/libpq-envars.html -share/doc/postgresql/html/libpq-example.html -share/doc/postgresql/html/libpq-exec.html -share/doc/postgresql/html/libpq-fastpath.html -share/doc/postgresql/html/libpq-notify.html -share/doc/postgresql/html/libpq.html -share/doc/postgresql/html/libpq-threading.html -share/doc/postgresql/html/libpq-trace.html -share/doc/postgresql/html/libpqplusplus.html -share/doc/postgresql/html/libpqpp-classes.html -share/doc/postgresql/html/libpqpp-connect.html -share/doc/postgresql/html/libpqpp-copy.html -share/doc/postgresql/html/libpqpp-exec.html -share/doc/postgresql/html/libpqpp-notify.html -share/doc/postgresql/html/lisp.html -share/doc/postgresql/html/ln11330.html -share/doc/postgresql/html/ln1274.html -share/doc/postgresql/html/ln15181.html -share/doc/postgresql/html/ln24.html -share/doc/postgresql/html/ln25010.html -share/doc/postgresql/html/ln37176.html -share/doc/postgresql/html/ln8.html -share/doc/postgresql/html/lo-funcs.html -share/doc/postgresql/html/lo-implementation.html -share/doc/postgresql/html/lo-interfaces.html -share/doc/postgresql/html/lo-libpq.html -share/doc/postgresql/html/lo-sample.html -share/doc/postgresql/html/locking-indices.html -share/doc/postgresql/html/locking-tables.html -share/doc/postgresql/html/manage-ag-accessdb.html -share/doc/postgresql/html/manage-ag-dropdb.html -share/doc/postgresql/html/manage.html -share/doc/postgresql/html/managing-databases.html -share/doc/postgresql/html/migration.html -share/doc/postgresql/html/more-advanced.html -share/doc/postgresql/html/multibyte.html -share/doc/postgresql/html/mvcc.html -share/doc/postgresql/html/non-atomic-values.html -share/doc/postgresql/html/notation.html -share/doc/postgresql/html/odbc-applixware.html -share/doc/postgresql/html/odbc-config.html -share/doc/postgresql/html/odbc-install.html -share/doc/postgresql/html/odbc-windows.html -share/doc/postgresql/html/odbc.html -share/doc/postgresql/html/organization.html -share/doc/postgresql/html/overview.html -share/doc/postgresql/html/page.html -share/doc/postgresql/html/parser-stage.html -share/doc/postgresql/html/partial-index.html -share/doc/postgresql/html/performance-tips.html -share/doc/postgresql/html/perm-functions.html -share/doc/postgresql/html/pg-system-catalogs.html -share/doc/postgresql/html/pgeasy-chapter.html -share/doc/postgresql/html/pgtcl-pgconndefaults.html -share/doc/postgresql/html/pgtcl-pgconnect.html -share/doc/postgresql/html/pgtcl-pgdisconnect.html -share/doc/postgresql/html/pgtcl-pgexec.html -share/doc/postgresql/html/pgtcl-pglisten.html -share/doc/postgresql/html/pgtcl-pgloclose.html -share/doc/postgresql/html/pgtcl-pglocreat.html -share/doc/postgresql/html/pgtcl-pgloexport.html -share/doc/postgresql/html/pgtcl-pgloimport.html -share/doc/postgresql/html/pgtcl-pglolseek.html -share/doc/postgresql/html/pgtcl-pgloopen.html -share/doc/postgresql/html/pgtcl-pgloread.html -share/doc/postgresql/html/pgtcl-pglotell.html -share/doc/postgresql/html/pgtcl-pglounlink.html -share/doc/postgresql/html/pgtcl-pglowrite.html -share/doc/postgresql/html/pgtcl-pgresult.html -share/doc/postgresql/html/pgtcl-pgselect.html -share/doc/postgresql/html/pgtcl.html -share/doc/postgresql/html/planner-optimizer.html -share/doc/postgresql/html/plperl-use.html -share/doc/postgresql/html/plperl.html -share/doc/postgresql/html/plpgsql-description.html -share/doc/postgresql/html/plpgsql-examples.html -share/doc/postgresql/html/plpgsql-porting.html -share/doc/postgresql/html/plpgsql-trigger.html -share/doc/postgresql/html/plpgsql.html -share/doc/postgresql/html/pltcl-description.html -share/doc/postgresql/html/pltcl.html -share/doc/postgresql/html/populate.html -share/doc/postgresql/html/postgres.html -share/doc/postgresql/html/postmaster-shutdown.html -share/doc/postgresql/html/postmaster-start.html -share/doc/postgresql/html/preface.html -share/doc/postgresql/html/privileges.html -share/doc/postgresql/html/programmer-client.html -share/doc/postgresql/html/programmer-pl.html -share/doc/postgresql/html/programmer-server.html -share/doc/postgresql/html/programmer.html -share/doc/postgresql/html/protocol-message-formats.html -share/doc/postgresql/html/protocol-message-types.html -share/doc/postgresql/html/protocol-protocol.html -share/doc/postgresql/html/protocol.html -share/doc/postgresql/html/pygresql.html -share/doc/postgresql/html/pygresql-close.html -share/doc/postgresql/html/pygresql-connect.html -share/doc/postgresql/html/pygresql-db-api.html -share/doc/postgresql/html/pygresql-db-clear.html -share/doc/postgresql/html/pygresql-db-delete.html -share/doc/postgresql/html/pygresql-db-get-attnames.html -share/doc/postgresql/html/pygresql-db-get-databases.html -share/doc/postgresql/html/pygresql-db-get-tables.html -share/doc/postgresql/html/pygresql-db-get.html -share/doc/postgresql/html/pygresql-db-insert.html -share/doc/postgresql/html/pygresql-db-pkey.html -share/doc/postgresql/html/pygresql-db-update.html -share/doc/postgresql/html/pygresql-endcopy.html -share/doc/postgresql/html/pygresql-fileno.html -share/doc/postgresql/html/pygresql-get-defbase.html -share/doc/postgresql/html/pygresql-get-defhost.html -share/doc/postgresql/html/pygresql-get-defopt.html -share/doc/postgresql/html/pygresql-get-defport.html -share/doc/postgresql/html/pygresql-get-deftty.html -share/doc/postgresql/html/pygresql-getline.html -share/doc/postgresql/html/pygresql-getlo.html -share/doc/postgresql/html/pygresql-getnotify.html -share/doc/postgresql/html/pygresql-inserttable.html -share/doc/postgresql/html/pygresql-locreate.html -share/doc/postgresql/html/pygresql-loimport.html -share/doc/postgresql/html/pygresql-pg-db.html -share/doc/postgresql/html/pygresql-pg-functions.html -share/doc/postgresql/html/pygresql-pg-pglarge.html -share/doc/postgresql/html/pygresql-pg-pgobject.html -share/doc/postgresql/html/pygresql-pg-pgqueryobject.html -share/doc/postgresql/html/pygresql-pglargeobject-close.html -share/doc/postgresql/html/pygresql-pglargeobject-export.html -share/doc/postgresql/html/pygresql-pglargeobject-open.html -share/doc/postgresql/html/pygresql-pglargeobject-read.html -share/doc/postgresql/html/pygresql-pglargeobject-seek.html -share/doc/postgresql/html/pygresql-pglargeobject-size.html -share/doc/postgresql/html/pygresql-pglargeobject-tell.html -share/doc/postgresql/html/pygresql-pglargeobject-unlink.html -share/doc/postgresql/html/pygresql-pglargeobject-write.html -share/doc/postgresql/html/pygresql-pgqueryobject-dictresult.html -share/doc/postgresql/html/pygresql-pgqueryobject-fieldname.html -share/doc/postgresql/html/query.html -share/doc/postgresql/html/pygresql-pgqueryobject-fieldnum.html -share/doc/postgresql/html/pygresql-pgqueryobject-getresult.html -share/doc/postgresql/html/pygresql-pgqueryobject-listfields.html -share/doc/postgresql/html/pygresql-pgqueryobject-ntuples.html -share/doc/postgresql/html/pygresql-putline.html -share/doc/postgresql/html/pygresql-query.html -share/doc/postgresql/html/pygresql-reset.html -share/doc/postgresql/html/pygresql-set-defbase.html -share/doc/postgresql/html/pygresql-set-defhost.html -share/doc/postgresql/html/pygresql-set-defopt.html -share/doc/postgresql/html/pygresql-set-defport.html -share/doc/postgresql/html/pygresql-set-deftty.html -share/doc/postgresql/html/queries-limit.html -share/doc/postgresql/html/queries-order.html -share/doc/postgresql/html/queries-select-lists.html -share/doc/postgresql/html/queries-union.html -share/doc/postgresql/html/queries.html -share/doc/postgresql/html/query-agg.html -share/doc/postgresql/html/query-concepts.html -share/doc/postgresql/html/query-delete.html -share/doc/postgresql/html/query-join.html -share/doc/postgresql/html/query-populate.html -share/doc/postgresql/html/query-query.html -share/doc/postgresql/html/query-selectinto.html -share/doc/postgresql/html/query-table.html -share/doc/postgresql/html/query-update.html -share/doc/postgresql/html/recode.html -share/doc/postgresql/html/recovery.html -share/doc/postgresql/html/reference-client.html -share/doc/postgresql/html/reference-server.html -share/doc/postgresql/html/reference.html -share/doc/postgresql/html/regress-platform.html -share/doc/postgresql/html/regress.html -share/doc/postgresql/html/release-0-01.html -share/doc/postgresql/html/release-0-02.html -share/doc/postgresql/html/release-0-03.html -share/doc/postgresql/html/release-1-0.html -share/doc/postgresql/html/release-1-01.html -share/doc/postgresql/html/release-1-02.html -share/doc/postgresql/html/release-1-09.html -share/doc/postgresql/html/release-6-0.html -share/doc/postgresql/html/release-6-1-1.html -share/doc/postgresql/html/release-6-1.html -share/doc/postgresql/html/release-6-2-1.html -share/doc/postgresql/html/release-6-2.html -share/doc/postgresql/html/release-6-3-1.html -share/doc/postgresql/html/release-6-3-2.html -share/doc/postgresql/html/release-6-3.html -share/doc/postgresql/html/release-6-4-1.html -share/doc/postgresql/html/release-6-4-2.html -share/doc/postgresql/html/release-6-4.html -share/doc/postgresql/html/release-6-5-1.html -share/doc/postgresql/html/release-6-5-2.html -share/doc/postgresql/html/release-6-5-3.html -share/doc/postgresql/html/release-6-5.html -share/doc/postgresql/html/release-7-0-1.html -share/doc/postgresql/html/release-7-0-2.html -share/doc/postgresql/html/release-7-0-3.html -share/doc/postgresql/html/release-7-0.html -share/doc/postgresql/html/release-7-1.html -share/doc/postgresql/html/release-7-1-1.html -share/doc/postgresql/html/release-7-1-2.html -share/doc/postgresql/html/release.html -share/doc/postgresql/html/relmodel-formal.html -share/doc/postgresql/html/relmodel-oper.html -share/doc/postgresql/html/resources.html -share/doc/postgresql/html/rule-system.html -share/doc/postgresql/html/rules-insert.html -share/doc/postgresql/html/rules-permissions.html -share/doc/postgresql/html/rules-triggers.html -share/doc/postgresql/html/rules-views.html -share/doc/postgresql/html/rules.html -share/doc/postgresql/html/runtime-config.html -share/doc/postgresql/html/runtime.html -share/doc/postgresql/html/source.html -share/doc/postgresql/html/spi-examples.html -share/doc/postgresql/html/spi-interface-support.html -share/doc/postgresql/html/spi-memory.html -share/doc/postgresql/html/spi-spiconnect.html -share/doc/postgresql/html/spi-spicopytuple.html -share/doc/postgresql/html/spi-spiexec.html -share/doc/postgresql/html/spi-spiexecp.html -share/doc/postgresql/html/spi-spifinish.html -share/doc/postgresql/html/spi-spifname.html -share/doc/postgresql/html/spi-spifnumber.html -share/doc/postgresql/html/spi-spigetbinval.html -share/doc/postgresql/html/spi-spigetrelname.html -share/doc/postgresql/html/spi-spigettype.html -share/doc/postgresql/html/spi-spigettypeid.html -share/doc/postgresql/html/spi-spigetvalue.html -share/doc/postgresql/html/spi-spimodifytuple.html -share/doc/postgresql/html/spi-spipalloc.html -share/doc/postgresql/html/spi-spipfree.html -share/doc/postgresql/html/spi-spiprepare.html -share/doc/postgresql/html/spi-spirepalloc.html -share/doc/postgresql/html/spi-spisaveplan.html -share/doc/postgresql/html/spi-visibility.html -share/doc/postgresql/html/spi.html -share/doc/postgresql/html/sql-abort.html -share/doc/postgresql/html/sql-altergroup.html -share/doc/postgresql/html/sql-altertable.html -share/doc/postgresql/html/sql-alteruser.html -share/doc/postgresql/html/sql-begin.html -share/doc/postgresql/html/sql-checkpoint.html -share/doc/postgresql/html/sql-close.html -share/doc/postgresql/html/sql-cluster.html -share/doc/postgresql/html/sql-commands.html -share/doc/postgresql/html/sql-comment.html -share/doc/postgresql/html/sql-commit.html -share/doc/postgresql/html/sql-copy.html -share/doc/postgresql/html/sql-createaggregate.html -share/doc/postgresql/html/sql-createconstraint.html -share/doc/postgresql/html/sql-createdatabase.html -share/doc/postgresql/html/sql-createfunction.html -share/doc/postgresql/html/sql-creategroup.html -share/doc/postgresql/html/sql-createindex.html -share/doc/postgresql/html/sql-createlanguage.html -share/doc/postgresql/html/sql-createoperator.html -share/doc/postgresql/html/sql-createrule.html -share/doc/postgresql/html/sql-createsequence.html -share/doc/postgresql/html/sql-createtable.html -share/doc/postgresql/html/sql-createtableas.html -share/doc/postgresql/html/sql-createtrigger.html -share/doc/postgresql/html/sql-createtype.html -share/doc/postgresql/html/sql-createuser.html -share/doc/postgresql/html/sql-createview.html -share/doc/postgresql/html/sql-declare.html -share/doc/postgresql/html/sql-delete.html -share/doc/postgresql/html/sql-dropaggregate.html -share/doc/postgresql/html/sql-dropdatabase.html -share/doc/postgresql/html/sql-dropfunction.html -share/doc/postgresql/html/sql-dropgroup.html -share/doc/postgresql/html/sql-dropindex.html -share/doc/postgresql/html/sql-droplanguage.html -share/doc/postgresql/html/sql-dropoperator.html -share/doc/postgresql/html/sql-droprule.html -share/doc/postgresql/html/sql-dropsequence.html -share/doc/postgresql/html/sql-droptable.html -share/doc/postgresql/html/sql-droptrigger.html -share/doc/postgresql/html/sql-droptype.html -share/doc/postgresql/html/sql-dropuser.html -share/doc/postgresql/html/sql-dropview.html -share/doc/postgresql/html/sql-end.html -share/doc/postgresql/html/sql-explain.html -share/doc/postgresql/html/sql-expressions.html -share/doc/postgresql/html/sql-fetch.html -share/doc/postgresql/html/sql-grant.html -share/doc/postgresql/html/sql-insert.html -share/doc/postgresql/html/sql-keywords-appendix.html -share/doc/postgresql/html/sql-language.html -share/doc/postgresql/html/sql-listen.html -share/doc/postgresql/html/sql-load.html -share/doc/postgresql/html/sql-lock.html -share/doc/postgresql/html/sql-move.html -share/doc/postgresql/html/sql-notify.html -share/doc/postgresql/html/sql-precedence.html -share/doc/postgresql/html/sql-reindex.html -share/doc/postgresql/html/sql-reset.html -share/doc/postgresql/html/sql-revoke.html -share/doc/postgresql/html/sql-rollback.html -share/doc/postgresql/html/sql-select.html -share/doc/postgresql/html/sql-selectinto.html -share/doc/postgresql/html/sql-set-constraints.html -share/doc/postgresql/html/sql-set-transaction.html -share/doc/postgresql/html/sql-set.html -share/doc/postgresql/html/sql-show.html -share/doc/postgresql/html/sql-syntax-columns.html -share/doc/postgresql/html/sql-syntax.html -share/doc/postgresql/html/sql-truncate.html -share/doc/postgresql/html/sql-unlisten.html -share/doc/postgresql/html/sql-update.html -share/doc/postgresql/html/sql-vacuum.html -share/doc/postgresql/html/sql.html -share/doc/postgresql/html/ssh-tunnels.html -share/doc/postgresql/html/ssl-tcp.html -share/doc/postgresql/html/start-manage-db.html -share/doc/postgresql/html/start-psql.html -share/doc/postgresql/html/start.html -share/doc/postgresql/html/storage.html -share/doc/postgresql/html/supported-platforms.html -share/doc/postgresql/html/timing-results.html -share/doc/postgresql/html/transaction-iso.html -share/doc/postgresql/html/trigger-datachanges.html -share/doc/postgresql/html/trigger-examples.html -share/doc/postgresql/html/trigger-manager.html -share/doc/postgresql/html/triggers.html -share/doc/postgresql/html/tutorial.html -share/doc/postgresql/html/type-system.html -share/doc/postgresql/html/typeconv-func.html -share/doc/postgresql/html/typeconv-oper.html -share/doc/postgresql/html/typeconv-query.html -share/doc/postgresql/html/typeconv-union-case.html -share/doc/postgresql/html/typeconv.html -share/doc/postgresql/html/units-history.html -share/doc/postgresql/html/user-manag.html -share/doc/postgresql/html/user.html -share/doc/postgresql/html/wal-configuration.html -share/doc/postgresql/html/wal-implementation.html -share/doc/postgresql/html/wal.html -share/doc/postgresql/html/xact-read-committed.html -share/doc/postgresql/html/xact-serializable.html -share/doc/postgresql/html/xaggr.html -share/doc/postgresql/html/xfunc-c.html -share/doc/postgresql/html/xfunc-internal.html -share/doc/postgresql/html/xfunc-overload.html -share/doc/postgresql/html/xfunc-pl.html -share/doc/postgresql/html/xfunc.html -share/doc/postgresql/html/xindex.html -share/doc/postgresql/html/xoper.html -share/doc/postgresql/html/xplang.html -share/doc/postgresql/html/xtypes.html -share/doc/postgresql/html/y2k.html -share/doc/postgresql/html/catalogs.gif -share/doc/postgresql/html/clientserver.gif -share/doc/postgresql/html/connections.gif -@dirrm share/doc/postgresql/html -@dirrm share/doc/postgresql diff --git a/databases/postgresql84-server/pkg-plist.jdbc b/databases/postgresql84-server/pkg-plist.jdbc deleted file mode 100644 index 8f7bd41a54d7..000000000000 --- a/databases/postgresql84-server/pkg-plist.jdbc +++ /dev/null @@ -1,27 +0,0 @@ -share/examples/postgresql/corba/StockClient.java -share/examples/postgresql/corba/StockDB.java -share/examples/postgresql/corba/StockDispenserImpl.java -share/examples/postgresql/corba/StockItemImpl.java -share/examples/postgresql/corba/StockServer.java -share/examples/postgresql/corba/readme -share/examples/postgresql/corba/stock.idl -share/examples/postgresql/corba/stock.sql -@dirrm share/examples/postgresql/corba -share/examples/postgresql/ImageViewer.java -share/examples/postgresql/Unicode.java -share/examples/postgresql/basic.java -share/examples/postgresql/blobtest.java -share/examples/postgresql/datestyle.java -share/examples/postgresql/metadata.java -share/examples/postgresql/psql.java -share/examples/postgresql/threadsafe.java -share/examples/postgresql/README -share/examples/postgresql/Implementation -@dirrm share/examples/postgresql -share/postgresql/java/postgresql-examples.jar -share/postgresql/java/postgresql.jar -share/postgresql/java/retepTools.jar -@dirrm share/postgresql/java -share/java/classes/postgresql.jar -@unexec rmdir %D/share/java/classes 2>/dev/null || true -@unexec rmdir %D/share/java 2>/dev/null || true diff --git a/databases/postgresql84-server/pkg-plist.notk b/databases/postgresql84-server/pkg-plist.notk deleted file mode 100644 index 8dcbc5f88bd6..000000000000 --- a/databases/postgresql84-server/pkg-plist.notk +++ /dev/null @@ -1,6 +0,0 @@ -%%PG_PREFIX%%bin/pgtclsh -%%PG_INCLUDE%%/libpgtcl.h -%%PG_PREFIX%%lib/libpgtcl.a -%%PG_PREFIX%%lib/libpgtcl.so -%%PG_PREFIX%%lib/libpgtcl.so.2 -%%PG_PREFIX%%lib/pltcl.so diff --git a/databases/postgresql84-server/pkg-plist.odbc b/databases/postgresql84-server/pkg-plist.odbc deleted file mode 100644 index f047b7cb64a1..000000000000 --- a/databases/postgresql84-server/pkg-plist.odbc +++ /dev/null @@ -1,10 +0,0 @@ -%%PG_INCLUDE%%/iodbc/iodbc.h -%%PG_INCLUDE%%/iodbc/isql.h -%%PG_INCLUDE%%/iodbc/isqlext.h -@dirrm %%PG_INCLUDE%%/iodbc -%%PG_PREFIX%%lib/libpsqlodbc.a -%%PG_PREFIX%%lib/libpsqlodbc.so -%%PG_PREFIX%%lib/libpsqlodbc.so.0 -etc/postgresql/odbcinst.ini -@dirrm etc/postgresql -share/postgresql/odbc.sql diff --git a/databases/postgresql84-server/pkg-plist.tcl b/databases/postgresql84-server/pkg-plist.tcl deleted file mode 100644 index da5f4367cb80..000000000000 --- a/databases/postgresql84-server/pkg-plist.tcl +++ /dev/null @@ -1,148 +0,0 @@ -%%PG_PREFIX%%bin/pgaccess -%%PG_PREFIX%%bin/pgtclsh -%%PG_PREFIX%%bin/pgtksh -%%PG_INCLUDE%%/libpgtcl.h -%%PG_PREFIX%%lib/libpgtcl.a -%%PG_PREFIX%%lib/libpgtcl.so -%%PG_PREFIX%%lib/libpgtcl.so.2 -%%PG_PREFIX%%lib/pltcl.so -lib/tcl%%WITH_TCL%%/Pgtcl1.3/pkgIndex.tcl -share/postgresql/pgaccess/images/icon_button.gif -share/postgresql/pgaccess/images/icon_checkbutton.gif -share/postgresql/pgaccess/images/icon_entry.gif -share/postgresql/pgaccess/images/icon_frame.gif -share/postgresql/pgaccess/images/icon_label.gif -share/postgresql/pgaccess/images/icon_listbox.gif -share/postgresql/pgaccess/images/icon_query.gif -share/postgresql/pgaccess/images/icon_radiobutton.gif -share/postgresql/pgaccess/images/icon_text.gif -share/postgresql/pgaccess/lib/database.tcl -share/postgresql/pgaccess/lib/forms.tcl -share/postgresql/pgaccess/lib/functions.tcl -share/postgresql/pgaccess/lib/help/abort.hlp -share/postgresql/pgaccess/lib/help/add_records.hlp -share/postgresql/pgaccess/lib/help/alter_table.hlp -share/postgresql/pgaccess/lib/help/alter_user.hlp -share/postgresql/pgaccess/lib/help/author.hlp -share/postgresql/pgaccess/lib/help/begin.hlp -share/postgresql/pgaccess/lib/help/close.hlp -share/postgresql/pgaccess/lib/help/cluster.hlp -share/postgresql/pgaccess/lib/help/commit.hlp -share/postgresql/pgaccess/lib/help/copy.hlp -share/postgresql/pgaccess/lib/help/copyrights.hlp -share/postgresql/pgaccess/lib/help/create_aggregate.hlp -share/postgresql/pgaccess/lib/help/create_database.hlp -share/postgresql/pgaccess/lib/help/create_function.hlp -share/postgresql/pgaccess/lib/help/create_index.hlp -share/postgresql/pgaccess/lib/help/create_language.hlp -share/postgresql/pgaccess/lib/help/create_operator.hlp -share/postgresql/pgaccess/lib/help/create_rule.hlp -share/postgresql/pgaccess/lib/help/create_sequence.hlp -share/postgresql/pgaccess/lib/help/create_table.hlp -share/postgresql/pgaccess/lib/help/create_table_as.hlp -share/postgresql/pgaccess/lib/help/create_trigger.hlp -share/postgresql/pgaccess/lib/help/create_type.hlp -share/postgresql/pgaccess/lib/help/create_user.hlp -share/postgresql/pgaccess/lib/help/create_view.hlp -share/postgresql/pgaccess/lib/help/data_types.hlp -share/postgresql/pgaccess/lib/help/datefunc.hlp -share/postgresql/pgaccess/lib/help/declare.hlp -share/postgresql/pgaccess/lib/help/delete.hlp -share/postgresql/pgaccess/lib/help/drop_aggregate.hlp -share/postgresql/pgaccess/lib/help/drop_database.hlp -share/postgresql/pgaccess/lib/help/drop_function.hlp -share/postgresql/pgaccess/lib/help/drop_index.hlp -share/postgresql/pgaccess/lib/help/drop_language.hlp -share/postgresql/pgaccess/lib/help/drop_operator.hlp -share/postgresql/pgaccess/lib/help/drop_rule.hlp -share/postgresql/pgaccess/lib/help/drop_sequence.hlp -share/postgresql/pgaccess/lib/help/drop_table.hlp -share/postgresql/pgaccess/lib/help/drop_trigger.hlp -share/postgresql/pgaccess/lib/help/drop_type.hlp -share/postgresql/pgaccess/lib/help/drop_user.hlp -share/postgresql/pgaccess/lib/help/drop_view.hlp -share/postgresql/pgaccess/lib/help/explain.hlp -share/postgresql/pgaccess/lib/help/fetch.hlp -share/postgresql/pgaccess/lib/help/form_design.hlp -share/postgresql/pgaccess/lib/help/forms.hlp -share/postgresql/pgaccess/lib/help/functions.hlp -share/postgresql/pgaccess/lib/help/geomfunc.hlp -share/postgresql/pgaccess/lib/help/grant.hlp -share/postgresql/pgaccess/lib/help/history.hlp -share/postgresql/pgaccess/lib/help/index.hlp -share/postgresql/pgaccess/lib/help/inheritance.hlp -share/postgresql/pgaccess/lib/help/insert.hlp -share/postgresql/pgaccess/lib/help/ipv4func.hlp -share/postgresql/pgaccess/lib/help/isolation.hlp -share/postgresql/pgaccess/lib/help/keywords.hlp -share/postgresql/pgaccess/lib/help/listen.hlp -share/postgresql/pgaccess/lib/help/load.hlp -share/postgresql/pgaccess/lib/help/lock.hlp -share/postgresql/pgaccess/lib/help/mathfunc.hlp -share/postgresql/pgaccess/lib/help/move.hlp -share/postgresql/pgaccess/lib/help/mvcc.hlp -share/postgresql/pgaccess/lib/help/new_query.hlp -share/postgresql/pgaccess/lib/help/new_table.hlp -share/postgresql/pgaccess/lib/help/notify.hlp -share/postgresql/pgaccess/lib/help/open_query.hlp -share/postgresql/pgaccess/lib/help/open_table.hlp -share/postgresql/pgaccess/lib/help/pgfunctions.hlp -share/postgresql/pgaccess/lib/help/postgresql.hlp -share/postgresql/pgaccess/lib/help/queries.hlp -share/postgresql/pgaccess/lib/help/reports.hlp -share/postgresql/pgaccess/lib/help/reset.hlp -share/postgresql/pgaccess/lib/help/revoke.hlp -share/postgresql/pgaccess/lib/help/rollback.hlp -share/postgresql/pgaccess/lib/help/schema.hlp -share/postgresql/pgaccess/lib/help/scripts.hlp -share/postgresql/pgaccess/lib/help/select.hlp -share/postgresql/pgaccess/lib/help/select_into.hlp -share/postgresql/pgaccess/lib/help/sequences.hlp -share/postgresql/pgaccess/lib/help/set.hlp -share/postgresql/pgaccess/lib/help/show.hlp -share/postgresql/pgaccess/lib/help/sql_guide.hlp -share/postgresql/pgaccess/lib/help/sqlfunc.hlp -share/postgresql/pgaccess/lib/help/stringfunc.hlp -share/postgresql/pgaccess/lib/help/tables.hlp -share/postgresql/pgaccess/lib/help/unlisten.hlp -share/postgresql/pgaccess/lib/help/update.hlp -share/postgresql/pgaccess/lib/help/users.hlp -share/postgresql/pgaccess/lib/help/vacuum.hlp -share/postgresql/pgaccess/lib/help/view_table_structure.hlp -share/postgresql/pgaccess/lib/help/views.hlp -share/postgresql/pgaccess/lib/help/visual_designer.hlp -share/postgresql/pgaccess/lib/help/y2k.hlp -share/postgresql/pgaccess/lib/help.tcl -share/postgresql/pgaccess/lib/languages/czech -share/postgresql/pgaccess/lib/languages/chinese_big5 -share/postgresql/pgaccess/lib/languages/chinese_gb -share/postgresql/pgaccess/lib/languages/deutsch -share/postgresql/pgaccess/lib/languages/euskara -share/postgresql/pgaccess/lib/languages/francais -share/postgresql/pgaccess/lib/languages/italiano -share/postgresql/pgaccess/lib/languages/japanese -share/postgresql/pgaccess/lib/languages/magyar -share/postgresql/pgaccess/lib/languages/nederlands -share/postgresql/pgaccess/lib/languages/portugues -share/postgresql/pgaccess/lib/languages/romana -share/postgresql/pgaccess/lib/languages/russian.koi8r -share/postgresql/pgaccess/lib/languages/russian_win -share/postgresql/pgaccess/lib/languages/spanish -share/postgresql/pgaccess/lib/mainlib.tcl -share/postgresql/pgaccess/lib/preferences.tcl -share/postgresql/pgaccess/lib/queries.tcl -share/postgresql/pgaccess/lib/reports.tcl -share/postgresql/pgaccess/lib/schema.tcl -share/postgresql/pgaccess/lib/scripts.tcl -share/postgresql/pgaccess/lib/sequences.tcl -share/postgresql/pgaccess/lib/tables.tcl -share/postgresql/pgaccess/lib/users.tcl -share/postgresql/pgaccess/lib/views.tcl -share/postgresql/pgaccess/lib/visualqb.tcl -share/postgresql/pgaccess/main.tcl -@dirrm share/postgresql/pgaccess/images -@dirrm share/postgresql/pgaccess/lib/help -@dirrm share/postgresql/pgaccess/lib/languages -@dirrm share/postgresql/pgaccess/lib -@dirrm share/postgresql/pgaccess -@dirrm lib/tcl%%WITH_TCL%%/Pgtcl1.3 diff --git a/databases/postgresql84-server/scripts/configure.postgresql b/databases/postgresql84-server/scripts/configure.postgresql deleted file mode 100644 index 0b288ad43d25..000000000000 --- a/databases/postgresql84-server/scripts/configure.postgresql +++ /dev/null @@ -1,278 +0,0 @@ -#!/bin/sh -# -*- tab-width: 4; -*- -# ex:ts=4 -# -# $FreeBSD$ -# -if [ -f ${WRKDIRPREFIX}${CURDIR}/Makefile.inc ]; then - exit -fi - -if [ ! "${BATCH}" ]; then - dialog --title "Backup your data NOW" \ - --msgbox "`sed -e \"s#%%PREFIX%%#${PREFIX}#\" < ${FILESDIR}/pre-install-notes`" \ - -1 -1 -fi - -if [ "${BATCH}" ]; then - set \"MultiByte\" \"ODBC\" \"SSL\" \"TCL\" \"TCLTK\" -else - /usr/bin/dialog --title "configuration options" --clear \ - --checklist "\n\ -Please select desired options:" -1 -1 7 \ -JDBC "Java DataBase Connectivity" OFF \ -MultiByte "Multibyte for Multilingualism" ON \ -ODBC "Open Database Connectivity" ON \ -TCL "Tcl" ON \ -TCLTK "Tcl/Tk" ON \ -SSL "Secure Socket Layer" ON \ -KRB5 "Kerberos 5" OFF \ -2> /tmp/checklist.tmp.$$ - - retval=$? - - if [ -s /tmp/checklist.tmp.$$ ]; then - set `cat /tmp/checklist.tmp.$$` - fi - rm -f /tmp/checklist.tmp.$$ - - case $retval in - 0) if [ -z "$*" ]; then - echo "Nothing selected" - fi - ;; - 1) echo "Cancel pressed." - exit 1 - ;; - esac -fi - -${MKDIR} ${WRKDIRPREFIX}${CURDIR} -exec > ${WRKDIRPREFIX}${CURDIR}/Makefile.inc - -while [ "$1" ]; do - case $1 in - \"JDBC\") - # We use JAVA_HOME if set correctly. If the user has - # specified a JVM with JAVA_HOME or via the javavmwrapper, - # we validate that it really exists. It is unnecessarily - # complicated and error prone to try to figure out the - # correct java version just to be able to determine a - # BUILD_DEPEND in this case. Instead, assume that a set - # JAVA_HOME together with simple sanity check mean we have - # an installed JVM, and we don't bother setting - # BUILD_DEPENDS. - - echo "# JDBC" - # if JAVA_HOME is set and exists, use it - if [ "${JAVA_HOME}" -a -x "${JAVA_HOME}/bin/javac" ]; then - echo JAVA_HOME=${JAVA_HOME} - else - # No JAVA_HOME, check javavmwrapper's config file - if [ -r "${LOCALBASE}/etc/javavms" ]; then - VMS=`/usr/bin/sed 's|#.*||' < "${LOCALBASE}/etc/javavms" | uniq` - for JAVAVM in ${VMS}; do - if [ -x "${JAVAVM}" ]; then - JAVA_HOME=`echo ${JAVAVM} | /usr/bin/sed 's|/bin/java$||` - break - fi - done - fi - if [ "${JAVA_HOME}" -a -x "${JAVA_HOME}/bin/javac" ]; then - # yep, wrapper was good - echo JAVA_HOME=${JAVA_HOME} - else - # nothing, use our boring 1.1.8, the only native non-beta jdk :( - echo BUILD_DEPENDS+= \${LOCALBASE}/jdk1.1.8/bin/javac:\${PORTSDIR}/java/jdk - echo JAVA_HOME=\${LOCALBASE}/jdk1.1.8 - fi - fi - cat <<-EOF - BUILD_DEPENDS+= \${LOCALBASE}/bin/ant:\${PORTSDIR}/devel/jakarta-ant - CONFIGURE_ENV+= ANT=\${LOCALBASE}/bin/ant - WITH_JDBC=YES - MAKE_ENV+= JAVA_HOME=\${JAVA_HOME} - SCRIPTS_ENV+= JAVA_HOME=\${JAVA_HOME} - CONFIGURE_ARGS+= --with-java - - EOF - ;; - \"MultiByte\") - MULTIBYTE=1 - ;; - \"ODBC\") - cat <<-EOF - # ODBC - WITH_ODBC=YES - CONFIGURE_ARGS+= --with-odbc - - EOF - ;; - \"TCL\") - TCL=1 - ;; - \"TCLTK\") - echo "#TCLTK" - echo WITH_TK=YES - echo - TCL=1 - ;; - \"SSL\") - cat <<-EOF - # SSL - USE_OPENSSL= yes - CFLAGS+= -DUSE_SSL - WITH_SSL= yes - CONFIGURE_ENV+= LDFLAGS="-L\${OPENSSLLIB} -lssl -lcrypto" - CONFIGURE_ARGS+= --with-openssl - - EOF - ;; - \"KRB5\") - KRB5=1 - ;; - \"nothing\"|true) - ;; - *) - echo "Invalid option(s): $*" > /dev/stderr - rm -f ${WRKDIRPREFIX}${CURDIR}/Makefile.inc - exit 1 - ;; - esac - shift -done - -exec > /dev/stderr - -# if multibyte, determine charset -echo "# Multibyte" >> ${WRKDIRPREFIX}${CURDIR}/Makefile.inc - -if [ ! "${MULTIBYTE}" ]; then - echo "WITHOUT_MULTIBYTE=YES" >> ${WRKDIRPREFIX}${CURDIR}/Makefile.inc -else - if [ "${BATCH}" ]; then - set "nothing" - else - /usr/bin/dialog --title "configuration options" --clear \ - --radiolist "\n\ -Please select desired options:" -1 -1 16 \ -nothing "Default Encoding" ON \ -SQL_ASCII "SQL_ASCII" OFF \ -LATIN1 "LATIN1" OFF \ -LATIN2 "LATIN2" OFF \ -LATIN3 "LATIN3" OFF \ -LATIN4 "LATIN4" OFF \ -LATIN5 "LATIN5" OFF \ -EUC_JP "EUC_JP" OFF \ -EUC_CN "EUC_CN" OFF \ -EUC_KR "EUC_KR" OFF \ -EUC_TW "EUC_TW" OFF \ -KOI8 "KOI8" OFF \ -UNICODE "UNICODE" OFF \ -MULE_INTERNAL "MULE_INTERNAL" OFF \ -WIN "WIN" OFF \ -ALT "ALT" OFF \ -2> /tmp/checklist.tmp.$$ - - retval=$? - - if [ -s /tmp/checklist.tmp.$$ ]; then - set `cat /tmp/checklist.tmp.$$` - fi - rm -f /tmp/checklist.tmp.$$ - if [ $retval = 1 ]; then - echo "Cancel pressed." - rm ${WRKDIRPREFIX}${CURDIR}/Makefile.inc - exit 1 - fi - fi - - if [ "$1" = "nothing" ]; then - echo "CONFIGURE_ARGS+= --enable-multibyte" \ - >> ${WRKDIRPREFIX}${CURDIR}/Makefile.inc - else - echo "CONFIGURE_ARGS+= --enable-multibyte=$1" \ - >> ${WRKDIRPREFIX}${CURDIR}/Makefile.inc - fi -fi -echo - -if [ "${TCL}" ]; then - echo "# TCL" >> ${WRKDIRPREFIX}${CURDIR}/Makefile.inc - if [ "${BATCH}" ]; then - echo WITH_TCL=8.3 >> ${WRKDIRPREFIX}${CURDIR}/Makefile.inc - else - dialog --title "TCL version" \ - --inputbox "Please enter TCL version. Default is 8.3." -1 -1 "8.3" \ - 2> /tmp/checklist.tmp.$$ - retval=$? - if [ -s /tmp/checklist.tmp.$$ ]; then - set `cat /tmp/checklist.tmp.$$` - fi - rm -f /tmp/checklist.tmp.$$ - case $retval in - 0) if [ -z "$*" ]; then - echo "Nothing selected" - fi - ;; - 1) echo "Cancel pressed." - rm -f ${WRKDIRPREFIX}${CURDIR}/Makefile.inc - exit 1 - ;; - esac - echo WITH_TCL=$1 >> ${WRKDIRPREFIX}${CURDIR}/Makefile.inc - fi - cat <<-EOF >> ${WRKDIRPREFIX}${CURDIR}/Makefile.inc - CONFIGURE_ARGS+= --with-tcl --with-tclconfig="\${TCLCONFIG}" - TCLV=\${WITH_TCL:S/.//} - TCL_INCDIR= \${LOCALBASE}/include/tcl\${WITH_TCL} - MAKE_ENV+= TCL_INCDIR=\${TCL_INCDIR} - LIB_DEPENDS+= tcl\${TCLV}:\${PORTSDIR}/lang/tcl\${TCLV} - TCLCONFIG= "\${LOCALBASE}/lib/tcl\${WITH_TCL}" - .if defined(WITH_TK) - CONFIGURE_ARGS+= --with-tkconfig="\${TKCONFIG}" - TK_INCDIR= \${LOCALBASE}/include/tk\${WITH_TCL} - CONFIGURE_ENV+= WISH=\${LOCALBASE}/bin/wish\${WITH_TCL} - LIB_DEPENDS+= tk\${TCLV}:\${PORTSDIR}/x11-toolkits/tk\${TCLV} - TKCONFIG= "\${LOCALBASE}/lib/tk\${WITH_TCL}" - TCLCONFIG+= \${TKCONFIG} - TCL_PLIST= pkg-plist.tcl - .else - TCL_PLIST= pkg-plist.notk - CONFIGURE_ARGS+= --without-tk - .endif - - EOF -fi - -if [ "${KRB5}" ]; then - if [ "${BATCH}" ]; then - # never gets here, but what the heck... - echo KRB5_HOME=\${LOCALBASE} >> ${WRKDIRPREFIX}${CURDIR}/Makefile.inc - else - dialog --inputbox "Please enter the KRB5_HOME path" -1 -1 "${KRB_HOME:-${LOCALBASE}}" \ - 2> /tmp/checklist.tmp.$$ - retval=$? - if [ -s /tmp/checklist.tmp.$$ ]; then - set `cat /tmp/checklist.tmp.$$` - fi - rm -f /tmp/checklist.tmp.$$ - case $retval in - 0) if [ -z "$*" ]; then - echo "No input" - fi - ;; - 1) echo "Cancel pressed." - rm -f ${WRKDIRPREFIX}${CURDIR}/Makefile.inc - exit 1 - ;; - esac - echo KRB5_HOME=\"$1\" >> ${WRKDIRPREFIX}${CURDIR}/Makefile.inc - fi - cat <<-EOF >> ${WRKDIRPREFIX}${CURDIR}/Makefile.inc - .if defined(KRB5_HOME) && exists(\${KRB5_HOME}) - CONFIGURE_KRB= --with-krb5=\${KRB5_HOME} - .endif - - EOF -fi diff --git a/databases/postgresql90-server/Makefile b/databases/postgresql90-server/Makefile deleted file mode 100644 index 4a30008d77bc..000000000000 --- a/databases/postgresql90-server/Makefile +++ /dev/null @@ -1,198 +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.1.3 -CATEGORIES= databases -MASTER_SITES= ftp://ftp.sunet.se/pub/unix/databases/relational/postgresql/%SUBDIR%/ \ - ftp://ftp.postgresql.org/pub/%SUBDIR%/ \ - ftp://ftp.de.postgresql.org/%SUBDIR%/ \ - ftp://ftp.digex.net/pub/packages/database/postgresql/%SUBDIR%/ \ - ftp://ftp.chg.ru/pub/databases/postgresql/%SUBDIR%/ \ - ${MASTER_SITE_RINGSERVER:S,%SUBDIR%,misc/db/postgresql/&,} -MASTER_SITE_SUBDIR= source/v${PORTVERSION} -DISTFILES= ${PORTNAME}-base-${PORTVERSION}${EXTRACT_SUFX} \ - ${PORTNAME}-opt-${PORTVERSION}${EXTRACT_SUFX} -.if !defined(NOPORTDOCS) -DISTFILES+= ${PORTNAME}-docs-${PORTVERSION}${EXTRACT_SUFX} -.endif - -MAINTAINER= girgen@partitur.se - -DIST_SUBDIR= postgresql - -INSTALLS_SHLIB= YES - -DOCDIR= ${WRKDIR}/${DISTNAME}/doc -PLIST= ${WRKDIR}/.PLIST.generated - -USE_GMAKE= YES -HAS_CONFIGURE= YES -CONFIGURE_ARGS= --enable-locale \ - --enable-syslog --with-CXX \ - --sysconfdir=${PREFIX}/etc/postgresql \ - --with-includes="${PREFIX}/include ${TCL_INCDIR} ${TK_INCDIR}" \ - --with-libraries=${PREFIX}/lib -.if defined(WITH_OLD_LAYOUT) -CONFIGURE_ARGS+=--docdir=${PREFIX}/share/doc --includedir=${PREFIX}/pgsql/include \ - --datadir=${PREFIX}/share \ - --with-template=`uname -s | ${TR} '[A-Z]' '[a-z]'` \ - --prefix=${PREFIX}/pgsql -PG_PREFIX= pgsql/ -PG_INCLUDE= pgsql/include -LDCONFIG_DIRS= %%PREFIX%%/pgsql/lib -MANPREFIX= ${PREFIX}/pgsql -.else -GNU_CONFIGURE= YES -CONFIGURE_ARGS+=--docdir=${PREFIX}/share/doc --includedir=${PREFIX}/include/pgsql -PG_PREFIX="" -PG_INCLUDE= include/pgsql -.endif - -PLIST_SUB= PG_PREFIX="${PG_PREFIX}" PG_INCLUDE="${PG_INCLUDE}" WITH_TCL="${WITH_TCL}" - -MAN1= createdb.1 createlang.1 createuser.1 dropdb.1 droplang.1 \ - dropuser.1 ecpg.1 initdb.1 initlocation.1 ipcclean.1 pg_config.1 \ - pg_ctl.1 pg_dump.1 pg_dumpall.1 pg_passwd.1 pg_restore.1 \ - pgaccess.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 checkpoint.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 set_constraints.l set_transaction.l show.l \ - truncate.l unlisten.l update.l vacuum.l - -SCRIPTS_ENV= WRKDIRPREFIX="${WRKDIRPREFIX}" \ - WRKDIR="${WRKDIR}" \ - FILESDIR="${FILESDIR}" \ - TOUCH="${TOUCH}" \ - MKDIR="${MKDIR}" \ - NO_OPENSSL="${NO_OPENSSL}" \ - DISTNAME="${DISTNAME}" - -# We must .include here because we need the Makefile.inc @ pre-install -# to determine the correct plist. -.if exists(${WRKDIRPREFIX}${.CURDIR}/Makefile.inc) -.include "${WRKDIRPREFIX}${.CURDIR}/Makefile.inc" -.else -# make utility targets like depends and describe happy -LIB_DEPENDS= tcl83:${PORTSDIR}/lang/tcl83 \ - tk83:${PORTSDIR}/x11-toolkits/tk83 -.endif - -pre-everything:: - @ ${SETENV} ${SCRIPTS_ENV} ${SH} ${SCRIPTDIR}/configure.postgresql - -pre-install: - @ ${SETENV} PKG_PREFIX=${PREFIX} ${SH} ${PKGDIR}/pkg-install ${PORTNAME} PRE-INSTALL -.if !defined(BATCH) -# remind folks twice for a while, so they really don't miss the layout shift - @ ${SED} "s|/usr/local|${PREFIX}|g" < ${PKGMESSAGE} | head -n 25 | more -e -.endif - @ ${CP} ${PKGDIR}/pkg-plist ${PLIST} -.if defined(WITHOUT_MULTIBYTE) - @${CP} ${PLIST} ${PLIST}.nomulti ;\ - ${GREP} -v bin/pg_encoding ${PLIST}.nomulti > ${PLIST} -.endif -.if defined(WITH_TCL) - @ ${CP} ${PLIST} ${PLIST}.notcl ;\ - ${CAT} ${PKGDIR}/${TCL_PLIST} ${PLIST}.notcl > ${PLIST} ;\ - ${RM} ${PLIST}.notcl -.endif -.if defined(WITH_ODBC) - @ ${CP} ${PLIST} ${PLIST}.noodbc ;\ - ${CAT} ${PKGDIR}/pkg-plist.odbc ${PLIST}.noodbc > ${PLIST} ;\ - ${RM} ${PLIST}.noodbc -.endif -.if defined(WITH_JDBC) - @ ${CP} ${PLIST} ${PLIST}.nojdbc ;\ - ${CAT} ${PKGDIR}/pkg-plist.jdbc ${PLIST}.nojdbc > ${PLIST} ;\ - ${RM} ${PLIST}.nojdbc -.endif -.if !defined(NOPORTDOCS) - @ ${CAT} ${PKGDIR}/pkg-plist.doc >> ${PLIST} -.endif - -post-install: -# install shell defaults for pgsql user -.for i in profile cshrc - @ ${SED} "s|%%PREFIX%%|${PREFIX}|g; s|%%PG_PREFIX%%|${PG_PREFIX}|g" \ - < ${FILESDIR}/dot.$i.in \ - > ${PREFIX}/share/postgresql/dot.$i.dist; \ - ${CP} ${PREFIX}/share/postgresql/dot.$i.dist ~pgsql/; \ - if [ ! -f ~pgsql/.$i ]; then \ - ${CP} ${PREFIX}/share/postgresql/dot.$i.dist ~pgsql/.$i; \ - fi -.endfor - @ ${SED} -e "s|%%PREFIX%%|${PREFIX}|g; s|%%PG_PREFIX%%|${PG_PREFIX}|g" \ - < ${FILESDIR}/pgsql.sh.tmpl \ - > ${PREFIX}/etc/rc.d/010.pgsql.sh - @ ${CHMOD} 554 ${PREFIX}/etc/rc.d/010.pgsql.sh - @ ${CHOWN} root:pgsql ${PREFIX}/etc/rc.d/010.pgsql.sh -.if defined(WITH_TCL) -# Preparing a loadable TCL-package (pkgIndex.tcl) - @${MKDIR} ${PREFIX}/lib/tcl${WITH_TCL}/Pgtcl1.3 - @${SED} "s|%%PREFIX%%|${PREFIX}|g" < ${FILESDIR}/pkgIndex.tcl.in \ - > ${PREFIX}/lib/tcl${WITH_TCL}/Pgtcl1.3/pkgIndex.tcl -.endif -.if defined(WITH_JDBC) - @ ${MKDIR} -m 0555 ${PREFIX}/share/java/classes - @ ${INSTALL_DATA} ${WRKSRC}/src/interfaces/jdbc/jars/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} "---------------------------------------------------------" -.if !defined(NOPORTDOCS) - @ ${MKDIR} -m 0555 ${PREFIX}/share/examples/postgresql ;\ - cd ${WRKSRC}/src/interfaces/jdbc/example ;\ - pax -rw . ${PREFIX}/share/examples/postgresql -.for i in README Implementation - @ ${INSTALL_DATA} ${WRKSRC}/src/interfaces/jdbc/$i \ - ${PREFIX}/share/examples/postgresql -.endfor - @ ${ECHO_MSG} "---------------------------------------------------------------" - @ ${ECHO_MSG} "Putting java examples into ${PREFIX}/share/examples/postgresql" - @ ${ECHO_MSG} "---------------------------------------------------------------" -.endif -.endif -.if !defined(DEBUG_FLAGS) -.for file in ecpg pg_dump pg_id pg_passwd pg_restore postgres psql - @ strip ${PREFIX}/${PG_PREFIX}bin/${file} -.endfor -.endif -# information overload mode activated, sorry about this... ;-) - @ ${CAT} ${FILESDIR}/post-install-notes ${PKGMESSAGE} |\ - ${SED} "s|/usr/local|${PREFIX}|g" |\ - tee ${PREFIX}/share/postgresql/post-install-notes ;\ - ${INSTALL_DATA} ${PREFIX}/share/postgresql/post-install-notes ~pgsql/. ;\ - ${CHOWN} -R pgsql:pgsql ~pgsql/. -.if defined(WITH_OLD_LAYOUT) - @ ${CHOWN} root:pgsql ${PREFIX}/${PG_PREFIX}lib -.endif - -post-clean: - @ ${RM} -f ${WRKDIRPREFIX}${.CURDIR}/Makefile.inc - -post-extract: ${POSTEXTRACT} - -.include <bsd.port.mk> diff --git a/databases/postgresql90-server/distinfo b/databases/postgresql90-server/distinfo deleted file mode 100644 index 23e07754313f..000000000000 --- a/databases/postgresql90-server/distinfo +++ /dev/null @@ -1,3 +0,0 @@ -MD5 (postgresql/postgresql-base-7.1.3.tar.gz) = f932dea12806972402aaaf17a2a97034 -MD5 (postgresql/postgresql-opt-7.1.3.tar.gz) = e84e9c51b31567d4571c7612e0c0fbd6 -MD5 (postgresql/postgresql-docs-7.1.3.tar.gz) = 7061ab7f7ec3c4d18f8e6cb2858896d0 diff --git a/databases/postgresql90-server/files/dot.cshrc.in b/databases/postgresql90-server/files/dot.cshrc.in deleted file mode 100644 index a326041bff7b..000000000000 --- a/databases/postgresql90-server/files/dot.cshrc.in +++ /dev/null @@ -1,13 +0,0 @@ -set path = ( %%PREFIX%%/%%PG_PREFIX%%bin $path ) - -setenv PGLIB %%PREFIX%%/%%PG_PREFIX%%lib - -# note: PGDATA can be overridden by the -D startup option -setenv PGDATA $HOME/data - -#You might want to set some locale stuff here -#setenv PGDATESTYLE ISO -#setenv LC_ALL sv_SE.ISO_8859-1 - -# if you want to make regression tests use this TZ -#setenv TZ PST8PDT diff --git a/databases/postgresql90-server/files/dot.profile.in b/databases/postgresql90-server/files/dot.profile.in deleted file mode 100644 index 4aca6aadd19a..000000000000 --- a/databases/postgresql90-server/files/dot.profile.in +++ /dev/null @@ -1,18 +0,0 @@ -# both new and old layout's paths, but new path first... -PATH=%%PREFIX%%/%%PG_PREFIX%%bin:${PATH} - -PGLIB=%%PREFIX%%/%%PG_PREFIX%%lib - -# note: PGDATA can be overridden by the -D startup option -PGDATA=${HOME}/data - -export PATH PGLIB PGDATA - -#You might want to set some locale stuff here -#PGDATESTYLE=ISO -#LC_ALL=sv_SE.ISO_8859-1 -#export PGDATESTYLE LC_ALL - -# if you want to make regression tests use this TZ -#TZ=PST8PDT -#export TZ diff --git a/databases/postgresql90-server/files/patch-aj b/databases/postgresql90-server/files/patch-aj deleted file mode 100644 index 94c0d6d79991..000000000000 --- a/databases/postgresql90-server/files/patch-aj +++ /dev/null @@ -1,118 +0,0 @@ ---- src/bin/pg_passwd/pg_passwd.c.orig Sat Mar 24 01:54:55 2001 -+++ src/bin/pg_passwd/pg_passwd.c Wed Apr 18 04:54:14 2001 -@@ -7,6 +7,12 @@ - #include <errno.h> - #include <time.h> - #include <ctype.h> -+ -+#if defined(__FreeBSD__) -+#include <pwd.h> /* defines _PASSWORD_LEN, max # of characters in a password */ -+#include <sys/time.h> /* gettimeofday for password salt */ -+#endif -+ - #define issaltchar(c) (isalnum((unsigned char) (c)) || (c) == '.' || (c) == '/') - - #ifdef HAVE_TERMIOS_H -@@ -23,18 +29,31 @@ - * We assume that the output of crypt(3) is always 13 characters, - * and that at most 8 characters can usefully be sent to it. - * -+ * For FreeBSD, take these values from /usr/include/pwd.h - * Postgres usernames are assumed to be less than NAMEDATALEN chars long. - */ -+#if defined(__FreeBSD__) -+#define CLEAR_PASSWD_LEN _PASSWORD_LEN -+#define CRYPTED_PASSWD_LEN _PASSWORD_LEN /* max length, not containing NULL */ -+#define SALT_LEN 10 -+#else - #define CLEAR_PASSWD_LEN 8 /* not including null */ - #define CRYPTED_PASSWD_LEN 13 /* not including null */ -+#define SALT_LEN 3 -+#endif -+ -+static unsigned char itoa64[] = /* 0 ... 63 => ascii - 64 */ -+ "./0123456789ABCDEFGHIJKLMNOPQRSTUVWXYZabcdefghijklmnopqrstuvwxyz"; -+ - - const char *progname; - - static void usage(void); -+static void to64(char *s, long v, int n); - static void read_pwd_file(char *filename); - static void write_pwd_file(char *filename, char *bkname); - static void encrypt_pwd(char key[CLEAR_PASSWD_LEN + 1], -- char salt[3], -+ char salt[SALT_LEN], - char passwd[CRYPTED_PASSWD_LEN + 1]); - static void prompt_for_username(char *username); - static void prompt_for_password(char *prompt, char *password); -@@ -47,6 +66,15 @@ - printf("Report bugs to <pgsql-bugs@postgresql.org>.\n"); - } - -+static void -+to64(char *s, long v, int n) -+{ -+ while (--n >= 0) { -+ *s++ = itoa64[v&0x3f]; -+ v >>= 6; -+ } -+} -+ - typedef struct - { - char *uname; -@@ -154,7 +182,7 @@ - if (q != NULL) - *(q++) = '\0'; - -- if (strlen(p) != CRYPTED_PASSWD_LEN && strcmp(p, "+") != 0) -+ if (strlen(p) > CRYPTED_PASSWD_LEN && strcmp(p, "+") != 0) - { - fprintf(stderr, "%s:%d: warning: invalid password length\n", - filename, npwds + 1); -@@ -221,15 +249,25 @@ - - static void - encrypt_pwd(char key[CLEAR_PASSWD_LEN + 1], -- char salt[3], -+ char salt[SALT_LEN], - char passwd[CRYPTED_PASSWD_LEN + 1]) - { -+#if !defined(__FreeBSD__) - int n; -- -+#endif - /* select a salt, if not already given */ - if (salt[0] == '\0') - { -+#if defined(__FreeBSD__) -+ struct timeval tv; -+ srandomdev(); -+ gettimeofday(&tv,0); -+ to64(&salt[0], random(), 3); -+ to64(&salt[3], tv.tv_usec, 3); -+ to64(&salt[6], tv.tv_sec, 2); -+ salt[8] = '\0'; - srand(time(NULL)); -+#else - do - { - n = rand() % 256; -@@ -241,6 +279,7 @@ - } while (!issaltchar(n)); - salt[1] = n; - salt[2] = '\0'; -+#endif - } - - /* get encrypted password */ -@@ -335,7 +374,7 @@ - char *filename; - char bkname[MAXPGPATH]; - char username[NAMEDATALEN]; -- char salt[3]; -+ char salt[SALT_LEN]; - char key[CLEAR_PASSWD_LEN + 1], - key2[CLEAR_PASSWD_LEN + 1]; - char e_passwd[CRYPTED_PASSWD_LEN + 1]; diff --git a/databases/postgresql90-server/files/patch-contrib-retep-build b/databases/postgresql90-server/files/patch-contrib-retep-build deleted file mode 100644 index 80f40f1cc86d..000000000000 --- a/databases/postgresql90-server/files/patch-contrib-retep-build +++ /dev/null @@ -1,37 +0,0 @@ -=================================================================== -RCS file: /home/projects/pgsql/cvsroot/pgsql/contrib/retep/build.xml,v -retrieving revision 1.4 -retrieving revision 1.5 -diff -u -r1.4 -r1.5 ---- contrib/retep/build.xml 2001/03/11 11:06:59 1.4 -+++ contrib/retep/build.xml 2001/05/16 16:20:51 1.5 -@@ -2,7 +2,7 @@ - - build file to build the donated retep tools packages - -- $Id: build.xml,v 1.4 2001/03/11 11:06:59 petere Exp $ -+ $Id: build.xml,v 1.5 2001/05/16 16:20:51 momjian Exp $ - - --> - -@@ -22,6 +22,11 @@ - <available property="xml" classname="org.xml.sax.Parser" /> - </target> - -+ <target name="warning" depends="checks" unless="jdk1.2+"> -+ <echo message="WARNING -- contributed retep tools need jdk1.2 or later -- compilation NOT done." /> -+ </target> -+ -+ - <!-- Prepares the build by creating a directory to place the class files --> - <target name="prepare"> - <mkdir dir="${dest}" /> -@@ -35,7 +40,7 @@ - </target> - - <!-- Builds the XML Tools --> -- <target name="compile" depends="checks,prepare"> -+ <target name="compile" depends="checks,prepare,warning" if="jdk1.2+"> - <javac srcdir="${src}" destdir="${dest}"> - <include name="${package}/**" /> - </javac> diff --git a/databases/postgresql90-server/files/patch-doc-makefile b/databases/postgresql90-server/files/patch-doc-makefile deleted file mode 100644 index fa27bed2af3f..000000000000 --- a/databases/postgresql90-server/files/patch-doc-makefile +++ /dev/null @@ -1,19 +0,0 @@ ---- doc/Makefile~ Sun Jan 7 03:03:22 2001 -+++ doc/Makefile Wed Apr 18 08:12:30 2001 -@@ -43,10 +43,13 @@ - gzip -d -c man.tar.gz | ( cd $(DESTDIR)$(mandir) && $(TAR) xf - ) - endif - -- - installdirs: -- $(mkinstalldirs) $(DESTDIR)$(mandir) $(DESTDIR)$(docdir)/html -- -+ifdef found_html -+ $(mkinstalldirs) $(DESTDIR)$(docdir)/html -+endif -+ifdef found_man -+ $(mkinstalldirs) $(DESTDIR)$(mandir) -+endif - - uninstall: - ifdef found_html diff --git a/databases/postgresql90-server/files/patch-jdbc-Connection b/databases/postgresql90-server/files/patch-jdbc-Connection deleted file mode 100644 index 26fbc260d639..000000000000 --- a/databases/postgresql90-server/files/patch-jdbc-Connection +++ /dev/null @@ -1,51 +0,0 @@ -=================================================================== -RCS file: /home/projects/pgsql/cvsroot/pgsql/src/interfaces/jdbc/org/postgresql/Connection.java,v -retrieving revision 1.14 -retrieving revision 1.16 -diff -u -r1.14 -r1.16 ---- src/interfaces/jdbc/org/postgresql/Connection.java 2001/01/31 08:26:01 1.14 -+++ src/interfaces/jdbc/org/postgresql/Connection.java 2001/06/01 20:57:58 1.16 -@@ -10,7 +10,7 @@ - import org.postgresql.util.*; - - /** -- * $Id: Connection.java,v 1.14 2001/01/31 08:26:01 peter Exp $ -+ * $Id: Connection.java,v 1.16 2001/06/01 20:57:58 momjian Exp $ - * - * This abstract class is used by org.postgresql.Driver to open either the JDBC1 or - * JDBC2 versions of the Connection class. -@@ -267,7 +267,8 @@ - // - firstWarning = null; - -- java.sql.ResultSet initrset = ExecSQL("set datestyle to 'ISO'; select getdatabaseencoding()"); -+ java.sql.ResultSet initrset = ExecSQL("set datestyle to 'ISO'; " + -+ "select case when pg_encoding_to_char(1) = 'SQL_ASCII' then 'UNKNOWN' else getdatabaseencoding() end"); - - String dbEncoding = null; - //retrieve DB properties -@@ -307,9 +308,23 @@ - } else if (dbEncoding.equals("EUC_TW")) { - dbEncoding = "EUC_TW"; - } else if (dbEncoding.equals("KOI8")) { -- dbEncoding = "KOI8_R"; -+ // try first if KOI8_U is present, it's a superset of KOI8_R -+ try { -+ dbEncoding = "KOI8_U"; -+ "test".getBytes(dbEncoding); -+ } -+ catch(UnsupportedEncodingException uee) { -+ // well, KOI8_U is still not in standard JDK, falling back to KOI8_R :( -+ dbEncoding = "KOI8_R"; -+ } -+ - } else if (dbEncoding.equals("WIN")) { - dbEncoding = "Cp1252"; -+ } else if (dbEncoding.equals("UNKNOWN")) { -+ //This isn't a multibyte database so we don't have an encoding to use -+ //We leave dbEncoding null which will cause the default encoding for the -+ //JVM to be used -+ dbEncoding = null; - } else { - dbEncoding = null; - } diff --git a/databases/postgresql90-server/files/patch-jdbc-build-xml b/databases/postgresql90-server/files/patch-jdbc-build-xml deleted file mode 100644 index b1c703a9c978..000000000000 --- a/databases/postgresql90-server/files/patch-jdbc-build-xml +++ /dev/null @@ -1,10 +0,0 @@ ---- src/interfaces/jdbc/build.xml~ Fri Mar 16 22:50:43 2001 -+++ src/interfaces/jdbc/build.xml Wed Apr 18 08:57:57 2001 -@@ -120,6 +120,7 @@ - <javac srcdir="${src}" destdir="${dest}"> - <include name="example/**" /> - <exclude name="example/corba/**"/> -+ <exclude name="example/blobtest.java" unless="jdk1.2+"/> - </javac> - </target> - diff --git a/databases/postgresql90-server/files/patch-jdbc-getdate b/databases/postgresql90-server/files/patch-jdbc-getdate deleted file mode 100644 index 744407ae14b5..000000000000 --- a/databases/postgresql90-server/files/patch-jdbc-getdate +++ /dev/null @@ -1,34 +0,0 @@ ---- src/interfaces/jdbc/org/postgresql/jdbc2/ResultSet.java~ Fri Feb 23 19:12:23 2001 -+++ src/interfaces/jdbc/org/postgresql/jdbc2/ResultSet.java Wed May 9 04:31:11 2001 -@@ -423,8 +423,13 @@ - String s = getString(columnIndex); - if(s==null) - return null; -- -- return java.sql.Date.valueOf(s); -+ // length == 10: SQL Date -+ // length > 10: SQL Timestamp, assumes PGDATESTYLE=ISO -+ try { -+ return java.sql.Date.valueOf((s.length() == 10) ? s : s.substring(0,10)); -+ } catch (NumberFormatException e) { -+ throw new PSQLException("postgresql.res.baddate", s); -+ } - } - - /** -@@ -441,8 +446,13 @@ - - if(s==null) - return null; // SQL NULL -- -- return java.sql.Time.valueOf(s); -+ // length == 8: SQL Time -+ // length > 8: SQL Timestamp -+ try { -+ return java.sql.Time.valueOf((s.length() == 8) ? s : s.substring(11,19)); -+ } catch (NumberFormatException e) { -+ throw new PSQLException("postgresql.res.badtime",s); -+ } - } - - /** diff --git a/databases/postgresql90-server/files/pgsql.sh.tmpl b/databases/postgresql90-server/files/pgsql.sh.tmpl deleted file mode 100644 index cd78771219ed..000000000000 --- a/databases/postgresql90-server/files/pgsql.sh.tmpl +++ /dev/null @@ -1,36 +0,0 @@ -#!/bin/sh - -# $FreeBSD$ -# -# For postmaster startup options, edit $PGDATA/postgresql.conf - -PGBIN=%%PREFIX%%/%%PG_PREFIX%%bin - -case $1 in -start) - [ -d %%PREFIX%%/%%PG_PREFIX%%lib ] && /sbin/ldconfig -m %%PREFIX%%/%%PG_PREFIX%%lib - [ -x ${PGBIN}/pg_ctl ] && { - su -l pgsql -c \ - '[ -d ${PGDATA} ] && exec %%PREFIX%%/%%PG_PREFIX%%bin/pg_ctl start -s -w -l ~pgsql/errlog' - echo -n ' pgsql' - } - ;; - -stop) - [ -x ${PGBIN}/pg_ctl ] && { - su -l pgsql -c 'exec %%PREFIX%%/%%PG_PREFIX%%bin/pg_ctl stop -s -m fast' - echo -n ' pgsql' - } - ;; - -status) - [ -x ${PGBIN}/pg_ctl ] && { - exec su -l pgsql -c 'exec %%PREFIX%%/%%PG_PREFIX%%bin/pg_ctl status' - } - ;; - -*) - echo "usage: `basename $0` {start|stop|status}" >&2 - exit 64 - ;; -esac diff --git a/databases/postgresql90-server/files/pkgIndex.tcl.in b/databases/postgresql90-server/files/pkgIndex.tcl.in deleted file mode 100644 index bd8329b15c69..000000000000 --- a/databases/postgresql90-server/files/pkgIndex.tcl.in +++ /dev/null @@ -1,4 +0,0 @@ -# Package-index file for Pgtcl-package. Enables you to load PostgreSQL -# interface functions right into you TCL-interpreter as simply as -# package require Pgtcl -package ifneeded Pgtcl 1.3 "load %%PREFIX%%/lib/libpgtcl.so" diff --git a/databases/postgresql90-server/files/post-install-notes b/databases/postgresql90-server/files/post-install-notes deleted file mode 100644 index 9347fc51c247..000000000000 --- a/databases/postgresql90-server/files/post-install-notes +++ /dev/null @@ -1,25 +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/TK support, you can use the pgaccess -utility to get a TCL/TK based database frontend for database -operations. You do NOT need to install the pgaccess port separately. - -If you built in the TCL support, you can load the Pg package into your -TCL scripts as easily as ``package require Pgtcl''. - -If you built with Java support, add -/usr/local/share/java/classes/postgresql.jar to your classpath. - -If you have many tables and many clients running, consider raising -kern.maxfiles using sysctl(8). - -Use createlang(1) to install languages into your database. -Supported languages are 'plpgsql', 'pltcl', 'pltclu', and 'plperl'. diff --git a/databases/postgresql90-server/files/pre-install-notes b/databases/postgresql90-server/files/pre-install-notes deleted file mode 100644 index 697ce3cedb79..000000000000 --- a/databases/postgresql90-server/files/pre-install-notes +++ /dev/null @@ -1,21 +0,0 @@ - * IMPORTANT UPGRADE NOTICE * IMPORTANT UPGRADE NOTICE * - -The PostgreSQL port now obeys hier(7) by default, which means that it -installs into: - -%%PREFIX%%/bin -%%PREFIX%%/lib -%%PREFIX%%/include/pgsql - -You *must* move away your old installation to avoid problems with -ldconfig(8) and user's PATH:s. If you rather install using the -old-fashion layout, cancel at next screen and run make as: - -$ make -DWITH_OLD_LAYOUT - -As always, you *must* dump existing databases before stopping and -removing your old postgresql, as part of the update. This is *NOT* -done by this port! - -If you want JAVA support, I will try to determine your JAVA_HOME using -javavmwrapper. If you want a different JVM, please set JAVA_HOME. 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 463e4e49815f..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 cfc983fc2f66..000000000000 --- a/databases/postgresql90-server/pkg-install +++ /dev/null @@ -1,46 +0,0 @@ -#! /bin/sh - -# $FreeBSD$ - -PATH=/bin:/usr/sbin - -DB_DIR=${PKG_PREFIX}/pgsql - -case $2 in -PRE-INSTALL) - USER=pgsql - GROUP=${USER} - UID=70 - 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} -c "PostgreSQL Daemon" - then - echo "Added user \"${USER}\"." - else - echo "Adding user \"${USER}\" failed..." - exit 1 - fi - fi - - if ! [ -x ~pgsql ] ; then - mkdir -p ${DB_DIR} - chown pgsql:pgsql ${DB_DIR} - fi - ;; - -esac diff --git a/databases/postgresql90-server/pkg-message b/databases/postgresql90-server/pkg-message deleted file mode 100644 index 1a3f9f1e4147..000000000000 --- a/databases/postgresql90-server/pkg-message +++ /dev/null @@ -1,38 +0,0 @@ - -====================================================================== - - * IMPORTANT UPGRADE NOTICE * IMPORTANT UPGRADE NOTICE * - -The PostgreSQL port now obeys hier(7) by default, which means that it -installs into: - -/usr/local/bin -/usr/local/lib -/usr/local/include/pgsql - -You *must* move away your old installation from users' and -ldconfig(8)'s PATHs. If you rather install using the old-fashion -layout, cancel now and build the port with "make -DWITH_OLD_LAYOUT". - -The pgsql user's home dir is /usr/local/pgsql by default, but can be -changed with for example chpass(1). Datadir defaults to ~pgsql/data, -but can be changed by modifying the ~pgsql/.profile script. - -As always, backup your data before upgrading. If the upgrade leads to -a higher minor revision (i.e. 7.0.x -> 7.1.x), a dump and restore of -all databases is required. This is *NOT* done by the port! - -====================================================================== - -To initialize the database, you should run initdb as the "pgsql" user. - -Example: - - su -l pgsql -c initdb - -You can then start PostgreSQL by running: - - /usr/local/etc/rc.d/010.pgsql.sh start - -For postmaster settings, see ~pgsql/data/postgresql.conf -====================================================================== diff --git a/databases/postgresql90-server/pkg-plist b/databases/postgresql90-server/pkg-plist deleted file mode 100644 index a7493ddb7898..000000000000 --- a/databases/postgresql90-server/pkg-plist +++ /dev/null @@ -1,91 +0,0 @@ -%%PG_PREFIX%%bin/postmaster -%%PG_PREFIX%%bin/postgres -%%PG_PREFIX%%bin/ecpg -%%PG_PREFIX%%bin/initdb -%%PG_PREFIX%%bin/initlocation -%%PG_PREFIX%%bin/ipcclean -%%PG_PREFIX%%bin/pg_ctl -%%PG_PREFIX%%bin/pg_dump -%%PG_PREFIX%%bin/pg_restore -%%PG_PREFIX%%bin/pg_encoding -%%PG_PREFIX%%bin/pg_dumpall -%%PG_PREFIX%%bin/pg_id -%%PG_PREFIX%%bin/pg_passwd -%%PG_PREFIX%%bin/psql -%%PG_PREFIX%%bin/createdb -%%PG_PREFIX%%bin/dropdb -%%PG_PREFIX%%bin/createuser -%%PG_PREFIX%%bin/dropuser -%%PG_PREFIX%%bin/droplang -%%PG_PREFIX%%bin/vacuumdb -%%PG_PREFIX%%bin/createlang -%%PG_PREFIX%%bin/pg_config -etc/rc.d/010.pgsql.sh -%%PG_INCLUDE%%/lib/dllist.h -@dirrm %%PG_INCLUDE%%/lib -%%PG_INCLUDE%%/libpq/pqcomm.h -%%PG_INCLUDE%%/libpq/libpq-fs.h -@dirrm %%PG_INCLUDE%%/libpq -%%PG_INCLUDE%%/libpq++/pgconnection.h -%%PG_INCLUDE%%/libpq++/pgdatabase.h -%%PG_INCLUDE%%/libpq++/pgtransdb.h -%%PG_INCLUDE%%/libpq++/pgcursordb.h -%%PG_INCLUDE%%/libpq++/pglobject.h -@dirrm %%PG_INCLUDE%%/libpq++ -%%PG_INCLUDE%%/c.h -%%PG_INCLUDE%%/postgres_ext.h -%%PG_INCLUDE%%/postgres_fe.h -%%PG_INCLUDE%%/os.h -%%PG_INCLUDE%%/config.h -%%PG_INCLUDE%%/libpq-fe.h -%%PG_INCLUDE%%/libpq-int.h -%%PG_INCLUDE%%/pqexpbuffer.h -%%PG_INCLUDE%%/ecpgerrno.h -%%PG_INCLUDE%%/ecpglib.h -%%PG_INCLUDE%%/ecpgtype.h -%%PG_INCLUDE%%/sqlca.h -%%PG_INCLUDE%%/sql3types.h -%%PG_INCLUDE%%/libpgeasy.h -%%PG_INCLUDE%%/libpq++.h -@dirrm %%PG_INCLUDE%% -%%PG_PREFIX%%lib/libpq.so -%%PG_PREFIX%%lib/libpq.a -%%PG_PREFIX%%lib/libpq.so.2 -%%PG_PREFIX%%lib/libecpg.so -%%PG_PREFIX%%lib/libecpg.a -%%PG_PREFIX%%lib/libecpg.so.3 -%%PG_PREFIX%%lib/libpgeasy.so -%%PG_PREFIX%%lib/libpgeasy.a -%%PG_PREFIX%%lib/libpgeasy.so.2 -%%PG_PREFIX%%lib/libpq++.so -%%PG_PREFIX%%lib/libpq++.a -%%PG_PREFIX%%lib/libpq++.so.3 -%%PG_PREFIX%%lib/plpgsql.so -share/postgresql/global.bki -share/postgresql/global.description -share/postgresql/post-install-notes -share/postgresql/template1.bki -share/postgresql/template1.description -share/postgresql/pg_hba.conf.sample -share/postgresql/pg_ident.conf.sample -share/postgresql/postgresql.conf.sample -@unexec if cmp -s ~pgsql/.profile %D/share/postgresql/dot.profile.dist; then rm -f ~pgsql/.profile; fi -@unexec if cmp -s ~pgsql/.cshrc %D/share/postgresql/dot.cshrc.dist; then rm -f ~pgsql/.cshrc; fi -@unexec [ -f ~pgsql/dot.profile.dist ] && rm ~pgsql/dot.profile.dist -@unexec [ -f ~pgsql/dot.cshrc.dist ] && rm ~pgsql/dot.cshrc.dist -@exec [ -f %D/share/postgresql/post-install-notes ] && cp %D/share/postgresql/post-install-notes ~pgsql && chown pgsql:pgsql ~pgsql/post-install-notes -@unexec [ -f ~pgsql/post-install-notes ] && rm ~pgsql/post-install-notes -share/postgresql/dot.profile.dist -share/postgresql/dot.cshrc.dist -@dirrm share/postgresql -@exec [ -f %D/share/postgresql/dot.profile.dist ] && cp %D/share/postgresql/dot.profile.dist ~pgsql/. -@exec [ -f %D/share/postgresql/dot.cshrc.dist ] && cp %D/share/postgresql/dot.cshrc.dist ~pgsql/. -@exec [ -f ~pgsql/.profile ] || (cp %D/share/postgresql/dot.profile.dist ~pgsql/.profile && chown pgsql:pgsql ~pgsql/.profile) -@exec [ -f ~pgsql/.cshrc ] || (cp %D/share/postgresql/dot.cshrc.dist ~pgsql/.cshrc && chown pgsql:pgsql ~pgsql/.cshrc) -@unexec [ X%%PG_PREFIX%% != X ] && rmdir %D/%%PG_PREFIX%%bin 2> /dev/null || true -@unexec [ X%%PG_PREFIX%% != X ] && rmdir %D/%%PG_PREFIX%%lib 2> /dev/null || true -@unexec [ X%%PG_PREFIX%% != X ] && rmdir %D/%%PG_PREFIX%%man/man1 2> /dev/null || true -@unexec [ X%%PG_PREFIX%% != X ] && rmdir %D/%%PG_PREFIX%%man/manl 2> /dev/null || true -@unexec [ X%%PG_PREFIX%% != X ] && rmdir %D/%%PG_PREFIX%%man 2> /dev/null || true -@unexec rmdir ~pgsql 2> /dev/null || true -@unexec echo "Warning: If you will *NOT* use this package anymore, please remove %D/pgsql and the pgsql user manually." diff --git a/databases/postgresql90-server/pkg-plist.doc b/databases/postgresql90-server/pkg-plist.doc deleted file mode 100644 index c4d50ecb24f0..000000000000 --- a/databases/postgresql90-server/pkg-plist.doc +++ /dev/null @@ -1,494 +0,0 @@ -share/doc/postgresql/html/admin.html -share/doc/postgresql/html/advanced.html -share/doc/postgresql/html/altern-locations.html -share/doc/postgresql/html/app-createdb.html -share/doc/postgresql/html/app-createlang.html -share/doc/postgresql/html/app-createuser.html -share/doc/postgresql/html/app-dropdb.html -share/doc/postgresql/html/app-droplang.html -share/doc/postgresql/html/app-dropuser.html -share/doc/postgresql/html/app-ecpg.html -share/doc/postgresql/html/app-initdb.html -share/doc/postgresql/html/app-initlocation.html -share/doc/postgresql/html/app-ipcclean.html -share/doc/postgresql/html/app-pg-ctl.html -share/doc/postgresql/html/app-pg-dumpall.html -share/doc/postgresql/html/app-pg-passwd.html -share/doc/postgresql/html/app-pgaccess.html -share/doc/postgresql/html/app-pgadmin.html -share/doc/postgresql/html/app-pgconfig.html -share/doc/postgresql/html/app-pgdump.html -share/doc/postgresql/html/app-pgrestore.html -share/doc/postgresql/html/app-pgtclsh.html -share/doc/postgresql/html/app-pgtksh.html -share/doc/postgresql/html/app-postgres.html -share/doc/postgresql/html/app-postmaster.html -share/doc/postgresql/html/app-psql.html -share/doc/postgresql/html/app-vacuumdb.html -share/doc/postgresql/html/applevel-consistency.html -share/doc/postgresql/html/arch-pg.html -share/doc/postgresql/html/arch.html -share/doc/postgresql/html/arrays.html -share/doc/postgresql/html/auth-methods.html -share/doc/postgresql/html/backup-file.html -share/doc/postgresql/html/backup.html -share/doc/postgresql/html/biblio.html -share/doc/postgresql/html/bki-commands.html -share/doc/postgresql/html/bki-example.html -share/doc/postgresql/html/bki.html -share/doc/postgresql/html/bug-reporting.html -share/doc/postgresql/html/catalog-pg-aggregate.html -share/doc/postgresql/html/catalog-pg-attrdef.html -share/doc/postgresql/html/catalog-pg-attribute.html -share/doc/postgresql/html/catalog-pg-class.html -share/doc/postgresql/html/catalog-pg-database.html -share/doc/postgresql/html/catalog-pg-description.html -share/doc/postgresql/html/catalog-pg-group.html -share/doc/postgresql/html/catalog-pg-index.html -share/doc/postgresql/html/catalog-pg-inherits.html -share/doc/postgresql/html/catalog-pg-language.html -share/doc/postgresql/html/catalog-pg-operator.html -share/doc/postgresql/html/catalog-pg-proc.html -share/doc/postgresql/html/catalog-pg-relcheck.html -share/doc/postgresql/html/catalog-pg-shadow.html -share/doc/postgresql/html/catalog-pg-type.html -share/doc/postgresql/html/catalogs.html -share/doc/postgresql/html/charset.html -share/doc/postgresql/html/client-authentication-problems.html -share/doc/postgresql/html/client-authentication.html -share/doc/postgresql/html/compiler.html -share/doc/postgresql/html/connect-estab.html -share/doc/postgresql/html/creating-cluster.html -share/doc/postgresql/html/cvs-tree.html -share/doc/postgresql/html/cvs.html -share/doc/postgresql/html/cvsup.html -share/doc/postgresql/html/datatype-bit.html -share/doc/postgresql/html/datatype-boolean.html -share/doc/postgresql/html/datatype-character.html -share/doc/postgresql/html/datatype-datetime.html -share/doc/postgresql/html/datatype-geometric.html -share/doc/postgresql/html/datatype-money.html -share/doc/postgresql/html/ecpg.html -share/doc/postgresql/html/datatype-net-types.html -share/doc/postgresql/html/datatype.html -share/doc/postgresql/html/datetime-appendix.html -share/doc/postgresql/html/db-accessing.html -share/doc/postgresql/html/db-destroy.html -share/doc/postgresql/html/developer.html -share/doc/postgresql/html/doc-build.html -share/doc/postgresql/html/doc-sources.html -share/doc/postgresql/html/doc-toolsets.html -share/doc/postgresql/html/docguide.html -share/doc/postgresql/html/ecpg-concept.html -share/doc/postgresql/html/ecpg-develop.html -share/doc/postgresql/html/ecpg-limitations.html -share/doc/postgresql/html/ecpg-porting.html -share/doc/postgresql/html/ecpg-use.html -share/doc/postgresql/html/executor.html -share/doc/postgresql/html/explicit-joins.html -share/doc/postgresql/html/extend.html -share/doc/postgresql/html/functions-datetime.html -share/doc/postgresql/html/functions-aggregate.html -share/doc/postgresql/html/functions-comparison.html -share/doc/postgresql/html/functions-conditional.html -share/doc/postgresql/html/functions-formatting.html -share/doc/postgresql/html/functions-geometry.html -share/doc/postgresql/html/functions-matching.html -share/doc/postgresql/html/functions-math.html -share/doc/postgresql/html/functions-misc.html -share/doc/postgresql/html/functions-net.html -share/doc/postgresql/html/functions-string.html -share/doc/postgresql/html/functions.html -share/doc/postgresql/html/geqo-intro2.html -share/doc/postgresql/html/geqo-pg-intro.html -share/doc/postgresql/html/geqo.html -share/doc/postgresql/html/gist.html -share/doc/postgresql/html/groups.html -share/doc/postgresql/html/history.html -share/doc/postgresql/html/index.html -share/doc/postgresql/html/indexcost.html -share/doc/postgresql/html/indices-functional.html -share/doc/postgresql/html/indices-multicolumn.html -share/doc/postgresql/html/indices-opclass.html -share/doc/postgresql/html/indices-types.html -share/doc/postgresql/html/indices-unique.html -share/doc/postgresql/html/indices.html -share/doc/postgresql/html/inherit.html -share/doc/postgresql/html/install-getsource.html -share/doc/postgresql/html/install-post.html -share/doc/postgresql/html/install-procedure.html -share/doc/postgresql/html/install-requirements.html -share/doc/postgresql/html/install-upgrading.html -share/doc/postgresql/html/install-win32.html -share/doc/postgresql/html/installation.html -share/doc/postgresql/html/jdbc-ext.html -share/doc/postgresql/html/jdbc-lo.html -share/doc/postgresql/html/jdbc.html -share/doc/postgresql/html/jdbc-query.html -share/doc/postgresql/html/jdbc-reading.html -share/doc/postgresql/html/jdbc-thread.html -share/doc/postgresql/html/jdbc-update.html -share/doc/postgresql/html/jdbc-use.html -share/doc/postgresql/html/kernel-resources.html -share/doc/postgresql/html/keys.html -share/doc/postgresql/html/largeobjects.html -share/doc/postgresql/html/libpgtcl-examples.html -share/doc/postgresql/html/libpgtcl-ref.html -share/doc/postgresql/html/libpq-async.html -share/doc/postgresql/html/libpq-control.html -share/doc/postgresql/html/libpq-copy.html -share/doc/postgresql/html/libpq-envars.html -share/doc/postgresql/html/libpq-example.html -share/doc/postgresql/html/libpq-exec.html -share/doc/postgresql/html/libpq-fastpath.html -share/doc/postgresql/html/libpq-notify.html -share/doc/postgresql/html/libpq.html -share/doc/postgresql/html/libpq-threading.html -share/doc/postgresql/html/libpq-trace.html -share/doc/postgresql/html/libpqplusplus.html -share/doc/postgresql/html/libpqpp-classes.html -share/doc/postgresql/html/libpqpp-connect.html -share/doc/postgresql/html/libpqpp-copy.html -share/doc/postgresql/html/libpqpp-exec.html -share/doc/postgresql/html/libpqpp-notify.html -share/doc/postgresql/html/lisp.html -share/doc/postgresql/html/ln11330.html -share/doc/postgresql/html/ln1274.html -share/doc/postgresql/html/ln15181.html -share/doc/postgresql/html/ln24.html -share/doc/postgresql/html/ln25010.html -share/doc/postgresql/html/ln37176.html -share/doc/postgresql/html/ln8.html -share/doc/postgresql/html/lo-funcs.html -share/doc/postgresql/html/lo-implementation.html -share/doc/postgresql/html/lo-interfaces.html -share/doc/postgresql/html/lo-libpq.html -share/doc/postgresql/html/lo-sample.html -share/doc/postgresql/html/locking-indices.html -share/doc/postgresql/html/locking-tables.html -share/doc/postgresql/html/manage-ag-accessdb.html -share/doc/postgresql/html/manage-ag-dropdb.html -share/doc/postgresql/html/manage.html -share/doc/postgresql/html/managing-databases.html -share/doc/postgresql/html/migration.html -share/doc/postgresql/html/more-advanced.html -share/doc/postgresql/html/multibyte.html -share/doc/postgresql/html/mvcc.html -share/doc/postgresql/html/non-atomic-values.html -share/doc/postgresql/html/notation.html -share/doc/postgresql/html/odbc-applixware.html -share/doc/postgresql/html/odbc-config.html -share/doc/postgresql/html/odbc-install.html -share/doc/postgresql/html/odbc-windows.html -share/doc/postgresql/html/odbc.html -share/doc/postgresql/html/organization.html -share/doc/postgresql/html/overview.html -share/doc/postgresql/html/page.html -share/doc/postgresql/html/parser-stage.html -share/doc/postgresql/html/partial-index.html -share/doc/postgresql/html/performance-tips.html -share/doc/postgresql/html/perm-functions.html -share/doc/postgresql/html/pg-system-catalogs.html -share/doc/postgresql/html/pgeasy-chapter.html -share/doc/postgresql/html/pgtcl-pgconndefaults.html -share/doc/postgresql/html/pgtcl-pgconnect.html -share/doc/postgresql/html/pgtcl-pgdisconnect.html -share/doc/postgresql/html/pgtcl-pgexec.html -share/doc/postgresql/html/pgtcl-pglisten.html -share/doc/postgresql/html/pgtcl-pgloclose.html -share/doc/postgresql/html/pgtcl-pglocreat.html -share/doc/postgresql/html/pgtcl-pgloexport.html -share/doc/postgresql/html/pgtcl-pgloimport.html -share/doc/postgresql/html/pgtcl-pglolseek.html -share/doc/postgresql/html/pgtcl-pgloopen.html -share/doc/postgresql/html/pgtcl-pgloread.html -share/doc/postgresql/html/pgtcl-pglotell.html -share/doc/postgresql/html/pgtcl-pglounlink.html -share/doc/postgresql/html/pgtcl-pglowrite.html -share/doc/postgresql/html/pgtcl-pgresult.html -share/doc/postgresql/html/pgtcl-pgselect.html -share/doc/postgresql/html/pgtcl.html -share/doc/postgresql/html/planner-optimizer.html -share/doc/postgresql/html/plperl-use.html -share/doc/postgresql/html/plperl.html -share/doc/postgresql/html/plpgsql-description.html -share/doc/postgresql/html/plpgsql-examples.html -share/doc/postgresql/html/plpgsql-porting.html -share/doc/postgresql/html/plpgsql-trigger.html -share/doc/postgresql/html/plpgsql.html -share/doc/postgresql/html/pltcl-description.html -share/doc/postgresql/html/pltcl.html -share/doc/postgresql/html/populate.html -share/doc/postgresql/html/postgres.html -share/doc/postgresql/html/postmaster-shutdown.html -share/doc/postgresql/html/postmaster-start.html -share/doc/postgresql/html/preface.html -share/doc/postgresql/html/privileges.html -share/doc/postgresql/html/programmer-client.html -share/doc/postgresql/html/programmer-pl.html -share/doc/postgresql/html/programmer-server.html -share/doc/postgresql/html/programmer.html -share/doc/postgresql/html/protocol-message-formats.html -share/doc/postgresql/html/protocol-message-types.html -share/doc/postgresql/html/protocol-protocol.html -share/doc/postgresql/html/protocol.html -share/doc/postgresql/html/pygresql.html -share/doc/postgresql/html/pygresql-close.html -share/doc/postgresql/html/pygresql-connect.html -share/doc/postgresql/html/pygresql-db-api.html -share/doc/postgresql/html/pygresql-db-clear.html -share/doc/postgresql/html/pygresql-db-delete.html -share/doc/postgresql/html/pygresql-db-get-attnames.html -share/doc/postgresql/html/pygresql-db-get-databases.html -share/doc/postgresql/html/pygresql-db-get-tables.html -share/doc/postgresql/html/pygresql-db-get.html -share/doc/postgresql/html/pygresql-db-insert.html -share/doc/postgresql/html/pygresql-db-pkey.html -share/doc/postgresql/html/pygresql-db-update.html -share/doc/postgresql/html/pygresql-endcopy.html -share/doc/postgresql/html/pygresql-fileno.html -share/doc/postgresql/html/pygresql-get-defbase.html -share/doc/postgresql/html/pygresql-get-defhost.html -share/doc/postgresql/html/pygresql-get-defopt.html -share/doc/postgresql/html/pygresql-get-defport.html -share/doc/postgresql/html/pygresql-get-deftty.html -share/doc/postgresql/html/pygresql-getline.html -share/doc/postgresql/html/pygresql-getlo.html -share/doc/postgresql/html/pygresql-getnotify.html -share/doc/postgresql/html/pygresql-inserttable.html -share/doc/postgresql/html/pygresql-locreate.html -share/doc/postgresql/html/pygresql-loimport.html -share/doc/postgresql/html/pygresql-pg-db.html -share/doc/postgresql/html/pygresql-pg-functions.html -share/doc/postgresql/html/pygresql-pg-pglarge.html -share/doc/postgresql/html/pygresql-pg-pgobject.html -share/doc/postgresql/html/pygresql-pg-pgqueryobject.html -share/doc/postgresql/html/pygresql-pglargeobject-close.html -share/doc/postgresql/html/pygresql-pglargeobject-export.html -share/doc/postgresql/html/pygresql-pglargeobject-open.html -share/doc/postgresql/html/pygresql-pglargeobject-read.html -share/doc/postgresql/html/pygresql-pglargeobject-seek.html -share/doc/postgresql/html/pygresql-pglargeobject-size.html -share/doc/postgresql/html/pygresql-pglargeobject-tell.html -share/doc/postgresql/html/pygresql-pglargeobject-unlink.html -share/doc/postgresql/html/pygresql-pglargeobject-write.html -share/doc/postgresql/html/pygresql-pgqueryobject-dictresult.html -share/doc/postgresql/html/pygresql-pgqueryobject-fieldname.html -share/doc/postgresql/html/query.html -share/doc/postgresql/html/pygresql-pgqueryobject-fieldnum.html -share/doc/postgresql/html/pygresql-pgqueryobject-getresult.html -share/doc/postgresql/html/pygresql-pgqueryobject-listfields.html -share/doc/postgresql/html/pygresql-pgqueryobject-ntuples.html -share/doc/postgresql/html/pygresql-putline.html -share/doc/postgresql/html/pygresql-query.html -share/doc/postgresql/html/pygresql-reset.html -share/doc/postgresql/html/pygresql-set-defbase.html -share/doc/postgresql/html/pygresql-set-defhost.html -share/doc/postgresql/html/pygresql-set-defopt.html -share/doc/postgresql/html/pygresql-set-defport.html -share/doc/postgresql/html/pygresql-set-deftty.html -share/doc/postgresql/html/queries-limit.html -share/doc/postgresql/html/queries-order.html -share/doc/postgresql/html/queries-select-lists.html -share/doc/postgresql/html/queries-union.html -share/doc/postgresql/html/queries.html -share/doc/postgresql/html/query-agg.html -share/doc/postgresql/html/query-concepts.html -share/doc/postgresql/html/query-delete.html -share/doc/postgresql/html/query-join.html -share/doc/postgresql/html/query-populate.html -share/doc/postgresql/html/query-query.html -share/doc/postgresql/html/query-selectinto.html -share/doc/postgresql/html/query-table.html -share/doc/postgresql/html/query-update.html -share/doc/postgresql/html/recode.html -share/doc/postgresql/html/recovery.html -share/doc/postgresql/html/reference-client.html -share/doc/postgresql/html/reference-server.html -share/doc/postgresql/html/reference.html -share/doc/postgresql/html/regress-platform.html -share/doc/postgresql/html/regress.html -share/doc/postgresql/html/release-0-01.html -share/doc/postgresql/html/release-0-02.html -share/doc/postgresql/html/release-0-03.html -share/doc/postgresql/html/release-1-0.html -share/doc/postgresql/html/release-1-01.html -share/doc/postgresql/html/release-1-02.html -share/doc/postgresql/html/release-1-09.html -share/doc/postgresql/html/release-6-0.html -share/doc/postgresql/html/release-6-1-1.html -share/doc/postgresql/html/release-6-1.html -share/doc/postgresql/html/release-6-2-1.html -share/doc/postgresql/html/release-6-2.html -share/doc/postgresql/html/release-6-3-1.html -share/doc/postgresql/html/release-6-3-2.html -share/doc/postgresql/html/release-6-3.html -share/doc/postgresql/html/release-6-4-1.html -share/doc/postgresql/html/release-6-4-2.html -share/doc/postgresql/html/release-6-4.html -share/doc/postgresql/html/release-6-5-1.html -share/doc/postgresql/html/release-6-5-2.html -share/doc/postgresql/html/release-6-5-3.html -share/doc/postgresql/html/release-6-5.html -share/doc/postgresql/html/release-7-0-1.html -share/doc/postgresql/html/release-7-0-2.html -share/doc/postgresql/html/release-7-0-3.html -share/doc/postgresql/html/release-7-0.html -share/doc/postgresql/html/release-7-1.html -share/doc/postgresql/html/release-7-1-1.html -share/doc/postgresql/html/release-7-1-2.html -share/doc/postgresql/html/release.html -share/doc/postgresql/html/relmodel-formal.html -share/doc/postgresql/html/relmodel-oper.html -share/doc/postgresql/html/resources.html -share/doc/postgresql/html/rule-system.html -share/doc/postgresql/html/rules-insert.html -share/doc/postgresql/html/rules-permissions.html -share/doc/postgresql/html/rules-triggers.html -share/doc/postgresql/html/rules-views.html -share/doc/postgresql/html/rules.html -share/doc/postgresql/html/runtime-config.html -share/doc/postgresql/html/runtime.html -share/doc/postgresql/html/source.html -share/doc/postgresql/html/spi-examples.html -share/doc/postgresql/html/spi-interface-support.html -share/doc/postgresql/html/spi-memory.html -share/doc/postgresql/html/spi-spiconnect.html -share/doc/postgresql/html/spi-spicopytuple.html -share/doc/postgresql/html/spi-spiexec.html -share/doc/postgresql/html/spi-spiexecp.html -share/doc/postgresql/html/spi-spifinish.html -share/doc/postgresql/html/spi-spifname.html -share/doc/postgresql/html/spi-spifnumber.html -share/doc/postgresql/html/spi-spigetbinval.html -share/doc/postgresql/html/spi-spigetrelname.html -share/doc/postgresql/html/spi-spigettype.html -share/doc/postgresql/html/spi-spigettypeid.html -share/doc/postgresql/html/spi-spigetvalue.html -share/doc/postgresql/html/spi-spimodifytuple.html -share/doc/postgresql/html/spi-spipalloc.html -share/doc/postgresql/html/spi-spipfree.html -share/doc/postgresql/html/spi-spiprepare.html -share/doc/postgresql/html/spi-spirepalloc.html -share/doc/postgresql/html/spi-spisaveplan.html -share/doc/postgresql/html/spi-visibility.html -share/doc/postgresql/html/spi.html -share/doc/postgresql/html/sql-abort.html -share/doc/postgresql/html/sql-altergroup.html -share/doc/postgresql/html/sql-altertable.html -share/doc/postgresql/html/sql-alteruser.html -share/doc/postgresql/html/sql-begin.html -share/doc/postgresql/html/sql-checkpoint.html -share/doc/postgresql/html/sql-close.html -share/doc/postgresql/html/sql-cluster.html -share/doc/postgresql/html/sql-commands.html -share/doc/postgresql/html/sql-comment.html -share/doc/postgresql/html/sql-commit.html -share/doc/postgresql/html/sql-copy.html -share/doc/postgresql/html/sql-createaggregate.html -share/doc/postgresql/html/sql-createconstraint.html -share/doc/postgresql/html/sql-createdatabase.html -share/doc/postgresql/html/sql-createfunction.html -share/doc/postgresql/html/sql-creategroup.html -share/doc/postgresql/html/sql-createindex.html -share/doc/postgresql/html/sql-createlanguage.html -share/doc/postgresql/html/sql-createoperator.html -share/doc/postgresql/html/sql-createrule.html -share/doc/postgresql/html/sql-createsequence.html -share/doc/postgresql/html/sql-createtable.html -share/doc/postgresql/html/sql-createtableas.html -share/doc/postgresql/html/sql-createtrigger.html -share/doc/postgresql/html/sql-createtype.html -share/doc/postgresql/html/sql-createuser.html -share/doc/postgresql/html/sql-createview.html -share/doc/postgresql/html/sql-declare.html -share/doc/postgresql/html/sql-delete.html -share/doc/postgresql/html/sql-dropaggregate.html -share/doc/postgresql/html/sql-dropdatabase.html -share/doc/postgresql/html/sql-dropfunction.html -share/doc/postgresql/html/sql-dropgroup.html -share/doc/postgresql/html/sql-dropindex.html -share/doc/postgresql/html/sql-droplanguage.html -share/doc/postgresql/html/sql-dropoperator.html -share/doc/postgresql/html/sql-droprule.html -share/doc/postgresql/html/sql-dropsequence.html -share/doc/postgresql/html/sql-droptable.html -share/doc/postgresql/html/sql-droptrigger.html -share/doc/postgresql/html/sql-droptype.html -share/doc/postgresql/html/sql-dropuser.html -share/doc/postgresql/html/sql-dropview.html -share/doc/postgresql/html/sql-end.html -share/doc/postgresql/html/sql-explain.html -share/doc/postgresql/html/sql-expressions.html -share/doc/postgresql/html/sql-fetch.html -share/doc/postgresql/html/sql-grant.html -share/doc/postgresql/html/sql-insert.html -share/doc/postgresql/html/sql-keywords-appendix.html -share/doc/postgresql/html/sql-language.html -share/doc/postgresql/html/sql-listen.html -share/doc/postgresql/html/sql-load.html -share/doc/postgresql/html/sql-lock.html -share/doc/postgresql/html/sql-move.html -share/doc/postgresql/html/sql-notify.html -share/doc/postgresql/html/sql-precedence.html -share/doc/postgresql/html/sql-reindex.html -share/doc/postgresql/html/sql-reset.html -share/doc/postgresql/html/sql-revoke.html -share/doc/postgresql/html/sql-rollback.html -share/doc/postgresql/html/sql-select.html -share/doc/postgresql/html/sql-selectinto.html -share/doc/postgresql/html/sql-set-constraints.html -share/doc/postgresql/html/sql-set-transaction.html -share/doc/postgresql/html/sql-set.html -share/doc/postgresql/html/sql-show.html -share/doc/postgresql/html/sql-syntax-columns.html -share/doc/postgresql/html/sql-syntax.html -share/doc/postgresql/html/sql-truncate.html -share/doc/postgresql/html/sql-unlisten.html -share/doc/postgresql/html/sql-update.html -share/doc/postgresql/html/sql-vacuum.html -share/doc/postgresql/html/sql.html -share/doc/postgresql/html/ssh-tunnels.html -share/doc/postgresql/html/ssl-tcp.html -share/doc/postgresql/html/start-manage-db.html -share/doc/postgresql/html/start-psql.html -share/doc/postgresql/html/start.html -share/doc/postgresql/html/storage.html -share/doc/postgresql/html/supported-platforms.html -share/doc/postgresql/html/timing-results.html -share/doc/postgresql/html/transaction-iso.html -share/doc/postgresql/html/trigger-datachanges.html -share/doc/postgresql/html/trigger-examples.html -share/doc/postgresql/html/trigger-manager.html -share/doc/postgresql/html/triggers.html -share/doc/postgresql/html/tutorial.html -share/doc/postgresql/html/type-system.html -share/doc/postgresql/html/typeconv-func.html -share/doc/postgresql/html/typeconv-oper.html -share/doc/postgresql/html/typeconv-query.html -share/doc/postgresql/html/typeconv-union-case.html -share/doc/postgresql/html/typeconv.html -share/doc/postgresql/html/units-history.html -share/doc/postgresql/html/user-manag.html -share/doc/postgresql/html/user.html -share/doc/postgresql/html/wal-configuration.html -share/doc/postgresql/html/wal-implementation.html -share/doc/postgresql/html/wal.html -share/doc/postgresql/html/xact-read-committed.html -share/doc/postgresql/html/xact-serializable.html -share/doc/postgresql/html/xaggr.html -share/doc/postgresql/html/xfunc-c.html -share/doc/postgresql/html/xfunc-internal.html -share/doc/postgresql/html/xfunc-overload.html -share/doc/postgresql/html/xfunc-pl.html -share/doc/postgresql/html/xfunc.html -share/doc/postgresql/html/xindex.html -share/doc/postgresql/html/xoper.html -share/doc/postgresql/html/xplang.html -share/doc/postgresql/html/xtypes.html -share/doc/postgresql/html/y2k.html -share/doc/postgresql/html/catalogs.gif -share/doc/postgresql/html/clientserver.gif -share/doc/postgresql/html/connections.gif -@dirrm share/doc/postgresql/html -@dirrm share/doc/postgresql diff --git a/databases/postgresql90-server/pkg-plist.jdbc b/databases/postgresql90-server/pkg-plist.jdbc deleted file mode 100644 index 8f7bd41a54d7..000000000000 --- a/databases/postgresql90-server/pkg-plist.jdbc +++ /dev/null @@ -1,27 +0,0 @@ -share/examples/postgresql/corba/StockClient.java -share/examples/postgresql/corba/StockDB.java -share/examples/postgresql/corba/StockDispenserImpl.java -share/examples/postgresql/corba/StockItemImpl.java -share/examples/postgresql/corba/StockServer.java -share/examples/postgresql/corba/readme -share/examples/postgresql/corba/stock.idl -share/examples/postgresql/corba/stock.sql -@dirrm share/examples/postgresql/corba -share/examples/postgresql/ImageViewer.java -share/examples/postgresql/Unicode.java -share/examples/postgresql/basic.java -share/examples/postgresql/blobtest.java -share/examples/postgresql/datestyle.java -share/examples/postgresql/metadata.java -share/examples/postgresql/psql.java -share/examples/postgresql/threadsafe.java -share/examples/postgresql/README -share/examples/postgresql/Implementation -@dirrm share/examples/postgresql -share/postgresql/java/postgresql-examples.jar -share/postgresql/java/postgresql.jar -share/postgresql/java/retepTools.jar -@dirrm share/postgresql/java -share/java/classes/postgresql.jar -@unexec rmdir %D/share/java/classes 2>/dev/null || true -@unexec rmdir %D/share/java 2>/dev/null || true diff --git a/databases/postgresql90-server/pkg-plist.notk b/databases/postgresql90-server/pkg-plist.notk deleted file mode 100644 index 8dcbc5f88bd6..000000000000 --- a/databases/postgresql90-server/pkg-plist.notk +++ /dev/null @@ -1,6 +0,0 @@ -%%PG_PREFIX%%bin/pgtclsh -%%PG_INCLUDE%%/libpgtcl.h -%%PG_PREFIX%%lib/libpgtcl.a -%%PG_PREFIX%%lib/libpgtcl.so -%%PG_PREFIX%%lib/libpgtcl.so.2 -%%PG_PREFIX%%lib/pltcl.so diff --git a/databases/postgresql90-server/pkg-plist.odbc b/databases/postgresql90-server/pkg-plist.odbc deleted file mode 100644 index f047b7cb64a1..000000000000 --- a/databases/postgresql90-server/pkg-plist.odbc +++ /dev/null @@ -1,10 +0,0 @@ -%%PG_INCLUDE%%/iodbc/iodbc.h -%%PG_INCLUDE%%/iodbc/isql.h -%%PG_INCLUDE%%/iodbc/isqlext.h -@dirrm %%PG_INCLUDE%%/iodbc -%%PG_PREFIX%%lib/libpsqlodbc.a -%%PG_PREFIX%%lib/libpsqlodbc.so -%%PG_PREFIX%%lib/libpsqlodbc.so.0 -etc/postgresql/odbcinst.ini -@dirrm etc/postgresql -share/postgresql/odbc.sql diff --git a/databases/postgresql90-server/pkg-plist.tcl b/databases/postgresql90-server/pkg-plist.tcl deleted file mode 100644 index da5f4367cb80..000000000000 --- a/databases/postgresql90-server/pkg-plist.tcl +++ /dev/null @@ -1,148 +0,0 @@ -%%PG_PREFIX%%bin/pgaccess -%%PG_PREFIX%%bin/pgtclsh -%%PG_PREFIX%%bin/pgtksh -%%PG_INCLUDE%%/libpgtcl.h -%%PG_PREFIX%%lib/libpgtcl.a -%%PG_PREFIX%%lib/libpgtcl.so -%%PG_PREFIX%%lib/libpgtcl.so.2 -%%PG_PREFIX%%lib/pltcl.so -lib/tcl%%WITH_TCL%%/Pgtcl1.3/pkgIndex.tcl -share/postgresql/pgaccess/images/icon_button.gif -share/postgresql/pgaccess/images/icon_checkbutton.gif -share/postgresql/pgaccess/images/icon_entry.gif -share/postgresql/pgaccess/images/icon_frame.gif -share/postgresql/pgaccess/images/icon_label.gif -share/postgresql/pgaccess/images/icon_listbox.gif -share/postgresql/pgaccess/images/icon_query.gif -share/postgresql/pgaccess/images/icon_radiobutton.gif -share/postgresql/pgaccess/images/icon_text.gif -share/postgresql/pgaccess/lib/database.tcl -share/postgresql/pgaccess/lib/forms.tcl -share/postgresql/pgaccess/lib/functions.tcl -share/postgresql/pgaccess/lib/help/abort.hlp -share/postgresql/pgaccess/lib/help/add_records.hlp -share/postgresql/pgaccess/lib/help/alter_table.hlp -share/postgresql/pgaccess/lib/help/alter_user.hlp -share/postgresql/pgaccess/lib/help/author.hlp -share/postgresql/pgaccess/lib/help/begin.hlp -share/postgresql/pgaccess/lib/help/close.hlp -share/postgresql/pgaccess/lib/help/cluster.hlp -share/postgresql/pgaccess/lib/help/commit.hlp -share/postgresql/pgaccess/lib/help/copy.hlp -share/postgresql/pgaccess/lib/help/copyrights.hlp -share/postgresql/pgaccess/lib/help/create_aggregate.hlp -share/postgresql/pgaccess/lib/help/create_database.hlp -share/postgresql/pgaccess/lib/help/create_function.hlp -share/postgresql/pgaccess/lib/help/create_index.hlp -share/postgresql/pgaccess/lib/help/create_language.hlp -share/postgresql/pgaccess/lib/help/create_operator.hlp -share/postgresql/pgaccess/lib/help/create_rule.hlp -share/postgresql/pgaccess/lib/help/create_sequence.hlp -share/postgresql/pgaccess/lib/help/create_table.hlp -share/postgresql/pgaccess/lib/help/create_table_as.hlp -share/postgresql/pgaccess/lib/help/create_trigger.hlp -share/postgresql/pgaccess/lib/help/create_type.hlp -share/postgresql/pgaccess/lib/help/create_user.hlp -share/postgresql/pgaccess/lib/help/create_view.hlp -share/postgresql/pgaccess/lib/help/data_types.hlp -share/postgresql/pgaccess/lib/help/datefunc.hlp -share/postgresql/pgaccess/lib/help/declare.hlp -share/postgresql/pgaccess/lib/help/delete.hlp -share/postgresql/pgaccess/lib/help/drop_aggregate.hlp -share/postgresql/pgaccess/lib/help/drop_database.hlp -share/postgresql/pgaccess/lib/help/drop_function.hlp -share/postgresql/pgaccess/lib/help/drop_index.hlp -share/postgresql/pgaccess/lib/help/drop_language.hlp -share/postgresql/pgaccess/lib/help/drop_operator.hlp -share/postgresql/pgaccess/lib/help/drop_rule.hlp -share/postgresql/pgaccess/lib/help/drop_sequence.hlp -share/postgresql/pgaccess/lib/help/drop_table.hlp -share/postgresql/pgaccess/lib/help/drop_trigger.hlp -share/postgresql/pgaccess/lib/help/drop_type.hlp -share/postgresql/pgaccess/lib/help/drop_user.hlp -share/postgresql/pgaccess/lib/help/drop_view.hlp -share/postgresql/pgaccess/lib/help/explain.hlp -share/postgresql/pgaccess/lib/help/fetch.hlp -share/postgresql/pgaccess/lib/help/form_design.hlp -share/postgresql/pgaccess/lib/help/forms.hlp -share/postgresql/pgaccess/lib/help/functions.hlp -share/postgresql/pgaccess/lib/help/geomfunc.hlp -share/postgresql/pgaccess/lib/help/grant.hlp -share/postgresql/pgaccess/lib/help/history.hlp -share/postgresql/pgaccess/lib/help/index.hlp -share/postgresql/pgaccess/lib/help/inheritance.hlp -share/postgresql/pgaccess/lib/help/insert.hlp -share/postgresql/pgaccess/lib/help/ipv4func.hlp -share/postgresql/pgaccess/lib/help/isolation.hlp -share/postgresql/pgaccess/lib/help/keywords.hlp -share/postgresql/pgaccess/lib/help/listen.hlp -share/postgresql/pgaccess/lib/help/load.hlp -share/postgresql/pgaccess/lib/help/lock.hlp -share/postgresql/pgaccess/lib/help/mathfunc.hlp -share/postgresql/pgaccess/lib/help/move.hlp -share/postgresql/pgaccess/lib/help/mvcc.hlp -share/postgresql/pgaccess/lib/help/new_query.hlp -share/postgresql/pgaccess/lib/help/new_table.hlp -share/postgresql/pgaccess/lib/help/notify.hlp -share/postgresql/pgaccess/lib/help/open_query.hlp -share/postgresql/pgaccess/lib/help/open_table.hlp -share/postgresql/pgaccess/lib/help/pgfunctions.hlp -share/postgresql/pgaccess/lib/help/postgresql.hlp -share/postgresql/pgaccess/lib/help/queries.hlp -share/postgresql/pgaccess/lib/help/reports.hlp -share/postgresql/pgaccess/lib/help/reset.hlp -share/postgresql/pgaccess/lib/help/revoke.hlp -share/postgresql/pgaccess/lib/help/rollback.hlp -share/postgresql/pgaccess/lib/help/schema.hlp -share/postgresql/pgaccess/lib/help/scripts.hlp -share/postgresql/pgaccess/lib/help/select.hlp -share/postgresql/pgaccess/lib/help/select_into.hlp -share/postgresql/pgaccess/lib/help/sequences.hlp -share/postgresql/pgaccess/lib/help/set.hlp -share/postgresql/pgaccess/lib/help/show.hlp -share/postgresql/pgaccess/lib/help/sql_guide.hlp -share/postgresql/pgaccess/lib/help/sqlfunc.hlp -share/postgresql/pgaccess/lib/help/stringfunc.hlp -share/postgresql/pgaccess/lib/help/tables.hlp -share/postgresql/pgaccess/lib/help/unlisten.hlp -share/postgresql/pgaccess/lib/help/update.hlp -share/postgresql/pgaccess/lib/help/users.hlp -share/postgresql/pgaccess/lib/help/vacuum.hlp -share/postgresql/pgaccess/lib/help/view_table_structure.hlp -share/postgresql/pgaccess/lib/help/views.hlp -share/postgresql/pgaccess/lib/help/visual_designer.hlp -share/postgresql/pgaccess/lib/help/y2k.hlp -share/postgresql/pgaccess/lib/help.tcl -share/postgresql/pgaccess/lib/languages/czech -share/postgresql/pgaccess/lib/languages/chinese_big5 -share/postgresql/pgaccess/lib/languages/chinese_gb -share/postgresql/pgaccess/lib/languages/deutsch -share/postgresql/pgaccess/lib/languages/euskara -share/postgresql/pgaccess/lib/languages/francais -share/postgresql/pgaccess/lib/languages/italiano -share/postgresql/pgaccess/lib/languages/japanese -share/postgresql/pgaccess/lib/languages/magyar -share/postgresql/pgaccess/lib/languages/nederlands -share/postgresql/pgaccess/lib/languages/portugues -share/postgresql/pgaccess/lib/languages/romana -share/postgresql/pgaccess/lib/languages/russian.koi8r -share/postgresql/pgaccess/lib/languages/russian_win -share/postgresql/pgaccess/lib/languages/spanish -share/postgresql/pgaccess/lib/mainlib.tcl -share/postgresql/pgaccess/lib/preferences.tcl -share/postgresql/pgaccess/lib/queries.tcl -share/postgresql/pgaccess/lib/reports.tcl -share/postgresql/pgaccess/lib/schema.tcl -share/postgresql/pgaccess/lib/scripts.tcl -share/postgresql/pgaccess/lib/sequences.tcl -share/postgresql/pgaccess/lib/tables.tcl -share/postgresql/pgaccess/lib/users.tcl -share/postgresql/pgaccess/lib/views.tcl -share/postgresql/pgaccess/lib/visualqb.tcl -share/postgresql/pgaccess/main.tcl -@dirrm share/postgresql/pgaccess/images -@dirrm share/postgresql/pgaccess/lib/help -@dirrm share/postgresql/pgaccess/lib/languages -@dirrm share/postgresql/pgaccess/lib -@dirrm share/postgresql/pgaccess -@dirrm lib/tcl%%WITH_TCL%%/Pgtcl1.3 diff --git a/databases/postgresql90-server/scripts/configure.postgresql b/databases/postgresql90-server/scripts/configure.postgresql deleted file mode 100644 index 0b288ad43d25..000000000000 --- a/databases/postgresql90-server/scripts/configure.postgresql +++ /dev/null @@ -1,278 +0,0 @@ -#!/bin/sh -# -*- tab-width: 4; -*- -# ex:ts=4 -# -# $FreeBSD$ -# -if [ -f ${WRKDIRPREFIX}${CURDIR}/Makefile.inc ]; then - exit -fi - -if [ ! "${BATCH}" ]; then - dialog --title "Backup your data NOW" \ - --msgbox "`sed -e \"s#%%PREFIX%%#${PREFIX}#\" < ${FILESDIR}/pre-install-notes`" \ - -1 -1 -fi - -if [ "${BATCH}" ]; then - set \"MultiByte\" \"ODBC\" \"SSL\" \"TCL\" \"TCLTK\" -else - /usr/bin/dialog --title "configuration options" --clear \ - --checklist "\n\ -Please select desired options:" -1 -1 7 \ -JDBC "Java DataBase Connectivity" OFF \ -MultiByte "Multibyte for Multilingualism" ON \ -ODBC "Open Database Connectivity" ON \ -TCL "Tcl" ON \ -TCLTK "Tcl/Tk" ON \ -SSL "Secure Socket Layer" ON \ -KRB5 "Kerberos 5" OFF \ -2> /tmp/checklist.tmp.$$ - - retval=$? - - if [ -s /tmp/checklist.tmp.$$ ]; then - set `cat /tmp/checklist.tmp.$$` - fi - rm -f /tmp/checklist.tmp.$$ - - case $retval in - 0) if [ -z "$*" ]; then - echo "Nothing selected" - fi - ;; - 1) echo "Cancel pressed." - exit 1 - ;; - esac -fi - -${MKDIR} ${WRKDIRPREFIX}${CURDIR} -exec > ${WRKDIRPREFIX}${CURDIR}/Makefile.inc - -while [ "$1" ]; do - case $1 in - \"JDBC\") - # We use JAVA_HOME if set correctly. If the user has - # specified a JVM with JAVA_HOME or via the javavmwrapper, - # we validate that it really exists. It is unnecessarily - # complicated and error prone to try to figure out the - # correct java version just to be able to determine a - # BUILD_DEPEND in this case. Instead, assume that a set - # JAVA_HOME together with simple sanity check mean we have - # an installed JVM, and we don't bother setting - # BUILD_DEPENDS. - - echo "# JDBC" - # if JAVA_HOME is set and exists, use it - if [ "${JAVA_HOME}" -a -x "${JAVA_HOME}/bin/javac" ]; then - echo JAVA_HOME=${JAVA_HOME} - else - # No JAVA_HOME, check javavmwrapper's config file - if [ -r "${LOCALBASE}/etc/javavms" ]; then - VMS=`/usr/bin/sed 's|#.*||' < "${LOCALBASE}/etc/javavms" | uniq` - for JAVAVM in ${VMS}; do - if [ -x "${JAVAVM}" ]; then - JAVA_HOME=`echo ${JAVAVM} | /usr/bin/sed 's|/bin/java$||` - break - fi - done - fi - if [ "${JAVA_HOME}" -a -x "${JAVA_HOME}/bin/javac" ]; then - # yep, wrapper was good - echo JAVA_HOME=${JAVA_HOME} - else - # nothing, use our boring 1.1.8, the only native non-beta jdk :( - echo BUILD_DEPENDS+= \${LOCALBASE}/jdk1.1.8/bin/javac:\${PORTSDIR}/java/jdk - echo JAVA_HOME=\${LOCALBASE}/jdk1.1.8 - fi - fi - cat <<-EOF - BUILD_DEPENDS+= \${LOCALBASE}/bin/ant:\${PORTSDIR}/devel/jakarta-ant - CONFIGURE_ENV+= ANT=\${LOCALBASE}/bin/ant - WITH_JDBC=YES - MAKE_ENV+= JAVA_HOME=\${JAVA_HOME} - SCRIPTS_ENV+= JAVA_HOME=\${JAVA_HOME} - CONFIGURE_ARGS+= --with-java - - EOF - ;; - \"MultiByte\") - MULTIBYTE=1 - ;; - \"ODBC\") - cat <<-EOF - # ODBC - WITH_ODBC=YES - CONFIGURE_ARGS+= --with-odbc - - EOF - ;; - \"TCL\") - TCL=1 - ;; - \"TCLTK\") - echo "#TCLTK" - echo WITH_TK=YES - echo - TCL=1 - ;; - \"SSL\") - cat <<-EOF - # SSL - USE_OPENSSL= yes - CFLAGS+= -DUSE_SSL - WITH_SSL= yes - CONFIGURE_ENV+= LDFLAGS="-L\${OPENSSLLIB} -lssl -lcrypto" - CONFIGURE_ARGS+= --with-openssl - - EOF - ;; - \"KRB5\") - KRB5=1 - ;; - \"nothing\"|true) - ;; - *) - echo "Invalid option(s): $*" > /dev/stderr - rm -f ${WRKDIRPREFIX}${CURDIR}/Makefile.inc - exit 1 - ;; - esac - shift -done - -exec > /dev/stderr - -# if multibyte, determine charset -echo "# Multibyte" >> ${WRKDIRPREFIX}${CURDIR}/Makefile.inc - -if [ ! "${MULTIBYTE}" ]; then - echo "WITHOUT_MULTIBYTE=YES" >> ${WRKDIRPREFIX}${CURDIR}/Makefile.inc -else - if [ "${BATCH}" ]; then - set "nothing" - else - /usr/bin/dialog --title "configuration options" --clear \ - --radiolist "\n\ -Please select desired options:" -1 -1 16 \ -nothing "Default Encoding" ON \ -SQL_ASCII "SQL_ASCII" OFF \ -LATIN1 "LATIN1" OFF \ -LATIN2 "LATIN2" OFF \ -LATIN3 "LATIN3" OFF \ -LATIN4 "LATIN4" OFF \ -LATIN5 "LATIN5" OFF \ -EUC_JP "EUC_JP" OFF \ -EUC_CN "EUC_CN" OFF \ -EUC_KR "EUC_KR" OFF \ -EUC_TW "EUC_TW" OFF \ -KOI8 "KOI8" OFF \ -UNICODE "UNICODE" OFF \ -MULE_INTERNAL "MULE_INTERNAL" OFF \ -WIN "WIN" OFF \ -ALT "ALT" OFF \ -2> /tmp/checklist.tmp.$$ - - retval=$? - - if [ -s /tmp/checklist.tmp.$$ ]; then - set `cat /tmp/checklist.tmp.$$` - fi - rm -f /tmp/checklist.tmp.$$ - if [ $retval = 1 ]; then - echo "Cancel pressed." - rm ${WRKDIRPREFIX}${CURDIR}/Makefile.inc - exit 1 - fi - fi - - if [ "$1" = "nothing" ]; then - echo "CONFIGURE_ARGS+= --enable-multibyte" \ - >> ${WRKDIRPREFIX}${CURDIR}/Makefile.inc - else - echo "CONFIGURE_ARGS+= --enable-multibyte=$1" \ - >> ${WRKDIRPREFIX}${CURDIR}/Makefile.inc - fi -fi -echo - -if [ "${TCL}" ]; then - echo "# TCL" >> ${WRKDIRPREFIX}${CURDIR}/Makefile.inc - if [ "${BATCH}" ]; then - echo WITH_TCL=8.3 >> ${WRKDIRPREFIX}${CURDIR}/Makefile.inc - else - dialog --title "TCL version" \ - --inputbox "Please enter TCL version. Default is 8.3." -1 -1 "8.3" \ - 2> /tmp/checklist.tmp.$$ - retval=$? - if [ -s /tmp/checklist.tmp.$$ ]; then - set `cat /tmp/checklist.tmp.$$` - fi - rm -f /tmp/checklist.tmp.$$ - case $retval in - 0) if [ -z "$*" ]; then - echo "Nothing selected" - fi - ;; - 1) echo "Cancel pressed." - rm -f ${WRKDIRPREFIX}${CURDIR}/Makefile.inc - exit 1 - ;; - esac - echo WITH_TCL=$1 >> ${WRKDIRPREFIX}${CURDIR}/Makefile.inc - fi - cat <<-EOF >> ${WRKDIRPREFIX}${CURDIR}/Makefile.inc - CONFIGURE_ARGS+= --with-tcl --with-tclconfig="\${TCLCONFIG}" - TCLV=\${WITH_TCL:S/.//} - TCL_INCDIR= \${LOCALBASE}/include/tcl\${WITH_TCL} - MAKE_ENV+= TCL_INCDIR=\${TCL_INCDIR} - LIB_DEPENDS+= tcl\${TCLV}:\${PORTSDIR}/lang/tcl\${TCLV} - TCLCONFIG= "\${LOCALBASE}/lib/tcl\${WITH_TCL}" - .if defined(WITH_TK) - CONFIGURE_ARGS+= --with-tkconfig="\${TKCONFIG}" - TK_INCDIR= \${LOCALBASE}/include/tk\${WITH_TCL} - CONFIGURE_ENV+= WISH=\${LOCALBASE}/bin/wish\${WITH_TCL} - LIB_DEPENDS+= tk\${TCLV}:\${PORTSDIR}/x11-toolkits/tk\${TCLV} - TKCONFIG= "\${LOCALBASE}/lib/tk\${WITH_TCL}" - TCLCONFIG+= \${TKCONFIG} - TCL_PLIST= pkg-plist.tcl - .else - TCL_PLIST= pkg-plist.notk - CONFIGURE_ARGS+= --without-tk - .endif - - EOF -fi - -if [ "${KRB5}" ]; then - if [ "${BATCH}" ]; then - # never gets here, but what the heck... - echo KRB5_HOME=\${LOCALBASE} >> ${WRKDIRPREFIX}${CURDIR}/Makefile.inc - else - dialog --inputbox "Please enter the KRB5_HOME path" -1 -1 "${KRB_HOME:-${LOCALBASE}}" \ - 2> /tmp/checklist.tmp.$$ - retval=$? - if [ -s /tmp/checklist.tmp.$$ ]; then - set `cat /tmp/checklist.tmp.$$` - fi - rm -f /tmp/checklist.tmp.$$ - case $retval in - 0) if [ -z "$*" ]; then - echo "No input" - fi - ;; - 1) echo "Cancel pressed." - rm -f ${WRKDIRPREFIX}${CURDIR}/Makefile.inc - exit 1 - ;; - esac - echo KRB5_HOME=\"$1\" >> ${WRKDIRPREFIX}${CURDIR}/Makefile.inc - fi - cat <<-EOF >> ${WRKDIRPREFIX}${CURDIR}/Makefile.inc - .if defined(KRB5_HOME) && exists(\${KRB5_HOME}) - CONFIGURE_KRB= --with-krb5=\${KRB5_HOME} - .endif - - EOF -fi diff --git a/databases/postgresql91-server/Makefile b/databases/postgresql91-server/Makefile deleted file mode 100644 index 4a30008d77bc..000000000000 --- a/databases/postgresql91-server/Makefile +++ /dev/null @@ -1,198 +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.1.3 -CATEGORIES= databases -MASTER_SITES= ftp://ftp.sunet.se/pub/unix/databases/relational/postgresql/%SUBDIR%/ \ - ftp://ftp.postgresql.org/pub/%SUBDIR%/ \ - ftp://ftp.de.postgresql.org/%SUBDIR%/ \ - ftp://ftp.digex.net/pub/packages/database/postgresql/%SUBDIR%/ \ - ftp://ftp.chg.ru/pub/databases/postgresql/%SUBDIR%/ \ - ${MASTER_SITE_RINGSERVER:S,%SUBDIR%,misc/db/postgresql/&,} -MASTER_SITE_SUBDIR= source/v${PORTVERSION} -DISTFILES= ${PORTNAME}-base-${PORTVERSION}${EXTRACT_SUFX} \ - ${PORTNAME}-opt-${PORTVERSION}${EXTRACT_SUFX} -.if !defined(NOPORTDOCS) -DISTFILES+= ${PORTNAME}-docs-${PORTVERSION}${EXTRACT_SUFX} -.endif - -MAINTAINER= girgen@partitur.se - -DIST_SUBDIR= postgresql - -INSTALLS_SHLIB= YES - -DOCDIR= ${WRKDIR}/${DISTNAME}/doc -PLIST= ${WRKDIR}/.PLIST.generated - -USE_GMAKE= YES -HAS_CONFIGURE= YES -CONFIGURE_ARGS= --enable-locale \ - --enable-syslog --with-CXX \ - --sysconfdir=${PREFIX}/etc/postgresql \ - --with-includes="${PREFIX}/include ${TCL_INCDIR} ${TK_INCDIR}" \ - --with-libraries=${PREFIX}/lib -.if defined(WITH_OLD_LAYOUT) -CONFIGURE_ARGS+=--docdir=${PREFIX}/share/doc --includedir=${PREFIX}/pgsql/include \ - --datadir=${PREFIX}/share \ - --with-template=`uname -s | ${TR} '[A-Z]' '[a-z]'` \ - --prefix=${PREFIX}/pgsql -PG_PREFIX= pgsql/ -PG_INCLUDE= pgsql/include -LDCONFIG_DIRS= %%PREFIX%%/pgsql/lib -MANPREFIX= ${PREFIX}/pgsql -.else -GNU_CONFIGURE= YES -CONFIGURE_ARGS+=--docdir=${PREFIX}/share/doc --includedir=${PREFIX}/include/pgsql -PG_PREFIX="" -PG_INCLUDE= include/pgsql -.endif - -PLIST_SUB= PG_PREFIX="${PG_PREFIX}" PG_INCLUDE="${PG_INCLUDE}" WITH_TCL="${WITH_TCL}" - -MAN1= createdb.1 createlang.1 createuser.1 dropdb.1 droplang.1 \ - dropuser.1 ecpg.1 initdb.1 initlocation.1 ipcclean.1 pg_config.1 \ - pg_ctl.1 pg_dump.1 pg_dumpall.1 pg_passwd.1 pg_restore.1 \ - pgaccess.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 checkpoint.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 set_constraints.l set_transaction.l show.l \ - truncate.l unlisten.l update.l vacuum.l - -SCRIPTS_ENV= WRKDIRPREFIX="${WRKDIRPREFIX}" \ - WRKDIR="${WRKDIR}" \ - FILESDIR="${FILESDIR}" \ - TOUCH="${TOUCH}" \ - MKDIR="${MKDIR}" \ - NO_OPENSSL="${NO_OPENSSL}" \ - DISTNAME="${DISTNAME}" - -# We must .include here because we need the Makefile.inc @ pre-install -# to determine the correct plist. -.if exists(${WRKDIRPREFIX}${.CURDIR}/Makefile.inc) -.include "${WRKDIRPREFIX}${.CURDIR}/Makefile.inc" -.else -# make utility targets like depends and describe happy -LIB_DEPENDS= tcl83:${PORTSDIR}/lang/tcl83 \ - tk83:${PORTSDIR}/x11-toolkits/tk83 -.endif - -pre-everything:: - @ ${SETENV} ${SCRIPTS_ENV} ${SH} ${SCRIPTDIR}/configure.postgresql - -pre-install: - @ ${SETENV} PKG_PREFIX=${PREFIX} ${SH} ${PKGDIR}/pkg-install ${PORTNAME} PRE-INSTALL -.if !defined(BATCH) -# remind folks twice for a while, so they really don't miss the layout shift - @ ${SED} "s|/usr/local|${PREFIX}|g" < ${PKGMESSAGE} | head -n 25 | more -e -.endif - @ ${CP} ${PKGDIR}/pkg-plist ${PLIST} -.if defined(WITHOUT_MULTIBYTE) - @${CP} ${PLIST} ${PLIST}.nomulti ;\ - ${GREP} -v bin/pg_encoding ${PLIST}.nomulti > ${PLIST} -.endif -.if defined(WITH_TCL) - @ ${CP} ${PLIST} ${PLIST}.notcl ;\ - ${CAT} ${PKGDIR}/${TCL_PLIST} ${PLIST}.notcl > ${PLIST} ;\ - ${RM} ${PLIST}.notcl -.endif -.if defined(WITH_ODBC) - @ ${CP} ${PLIST} ${PLIST}.noodbc ;\ - ${CAT} ${PKGDIR}/pkg-plist.odbc ${PLIST}.noodbc > ${PLIST} ;\ - ${RM} ${PLIST}.noodbc -.endif -.if defined(WITH_JDBC) - @ ${CP} ${PLIST} ${PLIST}.nojdbc ;\ - ${CAT} ${PKGDIR}/pkg-plist.jdbc ${PLIST}.nojdbc > ${PLIST} ;\ - ${RM} ${PLIST}.nojdbc -.endif -.if !defined(NOPORTDOCS) - @ ${CAT} ${PKGDIR}/pkg-plist.doc >> ${PLIST} -.endif - -post-install: -# install shell defaults for pgsql user -.for i in profile cshrc - @ ${SED} "s|%%PREFIX%%|${PREFIX}|g; s|%%PG_PREFIX%%|${PG_PREFIX}|g" \ - < ${FILESDIR}/dot.$i.in \ - > ${PREFIX}/share/postgresql/dot.$i.dist; \ - ${CP} ${PREFIX}/share/postgresql/dot.$i.dist ~pgsql/; \ - if [ ! -f ~pgsql/.$i ]; then \ - ${CP} ${PREFIX}/share/postgresql/dot.$i.dist ~pgsql/.$i; \ - fi -.endfor - @ ${SED} -e "s|%%PREFIX%%|${PREFIX}|g; s|%%PG_PREFIX%%|${PG_PREFIX}|g" \ - < ${FILESDIR}/pgsql.sh.tmpl \ - > ${PREFIX}/etc/rc.d/010.pgsql.sh - @ ${CHMOD} 554 ${PREFIX}/etc/rc.d/010.pgsql.sh - @ ${CHOWN} root:pgsql ${PREFIX}/etc/rc.d/010.pgsql.sh -.if defined(WITH_TCL) -# Preparing a loadable TCL-package (pkgIndex.tcl) - @${MKDIR} ${PREFIX}/lib/tcl${WITH_TCL}/Pgtcl1.3 - @${SED} "s|%%PREFIX%%|${PREFIX}|g" < ${FILESDIR}/pkgIndex.tcl.in \ - > ${PREFIX}/lib/tcl${WITH_TCL}/Pgtcl1.3/pkgIndex.tcl -.endif -.if defined(WITH_JDBC) - @ ${MKDIR} -m 0555 ${PREFIX}/share/java/classes - @ ${INSTALL_DATA} ${WRKSRC}/src/interfaces/jdbc/jars/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} "---------------------------------------------------------" -.if !defined(NOPORTDOCS) - @ ${MKDIR} -m 0555 ${PREFIX}/share/examples/postgresql ;\ - cd ${WRKSRC}/src/interfaces/jdbc/example ;\ - pax -rw . ${PREFIX}/share/examples/postgresql -.for i in README Implementation - @ ${INSTALL_DATA} ${WRKSRC}/src/interfaces/jdbc/$i \ - ${PREFIX}/share/examples/postgresql -.endfor - @ ${ECHO_MSG} "---------------------------------------------------------------" - @ ${ECHO_MSG} "Putting java examples into ${PREFIX}/share/examples/postgresql" - @ ${ECHO_MSG} "---------------------------------------------------------------" -.endif -.endif -.if !defined(DEBUG_FLAGS) -.for file in ecpg pg_dump pg_id pg_passwd pg_restore postgres psql - @ strip ${PREFIX}/${PG_PREFIX}bin/${file} -.endfor -.endif -# information overload mode activated, sorry about this... ;-) - @ ${CAT} ${FILESDIR}/post-install-notes ${PKGMESSAGE} |\ - ${SED} "s|/usr/local|${PREFIX}|g" |\ - tee ${PREFIX}/share/postgresql/post-install-notes ;\ - ${INSTALL_DATA} ${PREFIX}/share/postgresql/post-install-notes ~pgsql/. ;\ - ${CHOWN} -R pgsql:pgsql ~pgsql/. -.if defined(WITH_OLD_LAYOUT) - @ ${CHOWN} root:pgsql ${PREFIX}/${PG_PREFIX}lib -.endif - -post-clean: - @ ${RM} -f ${WRKDIRPREFIX}${.CURDIR}/Makefile.inc - -post-extract: ${POSTEXTRACT} - -.include <bsd.port.mk> diff --git a/databases/postgresql91-server/distinfo b/databases/postgresql91-server/distinfo deleted file mode 100644 index 23e07754313f..000000000000 --- a/databases/postgresql91-server/distinfo +++ /dev/null @@ -1,3 +0,0 @@ -MD5 (postgresql/postgresql-base-7.1.3.tar.gz) = f932dea12806972402aaaf17a2a97034 -MD5 (postgresql/postgresql-opt-7.1.3.tar.gz) = e84e9c51b31567d4571c7612e0c0fbd6 -MD5 (postgresql/postgresql-docs-7.1.3.tar.gz) = 7061ab7f7ec3c4d18f8e6cb2858896d0 diff --git a/databases/postgresql91-server/files/dot.cshrc.in b/databases/postgresql91-server/files/dot.cshrc.in deleted file mode 100644 index a326041bff7b..000000000000 --- a/databases/postgresql91-server/files/dot.cshrc.in +++ /dev/null @@ -1,13 +0,0 @@ -set path = ( %%PREFIX%%/%%PG_PREFIX%%bin $path ) - -setenv PGLIB %%PREFIX%%/%%PG_PREFIX%%lib - -# note: PGDATA can be overridden by the -D startup option -setenv PGDATA $HOME/data - -#You might want to set some locale stuff here -#setenv PGDATESTYLE ISO -#setenv LC_ALL sv_SE.ISO_8859-1 - -# if you want to make regression tests use this TZ -#setenv TZ PST8PDT diff --git a/databases/postgresql91-server/files/dot.profile.in b/databases/postgresql91-server/files/dot.profile.in deleted file mode 100644 index 4aca6aadd19a..000000000000 --- a/databases/postgresql91-server/files/dot.profile.in +++ /dev/null @@ -1,18 +0,0 @@ -# both new and old layout's paths, but new path first... -PATH=%%PREFIX%%/%%PG_PREFIX%%bin:${PATH} - -PGLIB=%%PREFIX%%/%%PG_PREFIX%%lib - -# note: PGDATA can be overridden by the -D startup option -PGDATA=${HOME}/data - -export PATH PGLIB PGDATA - -#You might want to set some locale stuff here -#PGDATESTYLE=ISO -#LC_ALL=sv_SE.ISO_8859-1 -#export PGDATESTYLE LC_ALL - -# if you want to make regression tests use this TZ -#TZ=PST8PDT -#export TZ diff --git a/databases/postgresql91-server/files/patch-aj b/databases/postgresql91-server/files/patch-aj deleted file mode 100644 index 94c0d6d79991..000000000000 --- a/databases/postgresql91-server/files/patch-aj +++ /dev/null @@ -1,118 +0,0 @@ ---- src/bin/pg_passwd/pg_passwd.c.orig Sat Mar 24 01:54:55 2001 -+++ src/bin/pg_passwd/pg_passwd.c Wed Apr 18 04:54:14 2001 -@@ -7,6 +7,12 @@ - #include <errno.h> - #include <time.h> - #include <ctype.h> -+ -+#if defined(__FreeBSD__) -+#include <pwd.h> /* defines _PASSWORD_LEN, max # of characters in a password */ -+#include <sys/time.h> /* gettimeofday for password salt */ -+#endif -+ - #define issaltchar(c) (isalnum((unsigned char) (c)) || (c) == '.' || (c) == '/') - - #ifdef HAVE_TERMIOS_H -@@ -23,18 +29,31 @@ - * We assume that the output of crypt(3) is always 13 characters, - * and that at most 8 characters can usefully be sent to it. - * -+ * For FreeBSD, take these values from /usr/include/pwd.h - * Postgres usernames are assumed to be less than NAMEDATALEN chars long. - */ -+#if defined(__FreeBSD__) -+#define CLEAR_PASSWD_LEN _PASSWORD_LEN -+#define CRYPTED_PASSWD_LEN _PASSWORD_LEN /* max length, not containing NULL */ -+#define SALT_LEN 10 -+#else - #define CLEAR_PASSWD_LEN 8 /* not including null */ - #define CRYPTED_PASSWD_LEN 13 /* not including null */ -+#define SALT_LEN 3 -+#endif -+ -+static unsigned char itoa64[] = /* 0 ... 63 => ascii - 64 */ -+ "./0123456789ABCDEFGHIJKLMNOPQRSTUVWXYZabcdefghijklmnopqrstuvwxyz"; -+ - - const char *progname; - - static void usage(void); -+static void to64(char *s, long v, int n); - static void read_pwd_file(char *filename); - static void write_pwd_file(char *filename, char *bkname); - static void encrypt_pwd(char key[CLEAR_PASSWD_LEN + 1], -- char salt[3], -+ char salt[SALT_LEN], - char passwd[CRYPTED_PASSWD_LEN + 1]); - static void prompt_for_username(char *username); - static void prompt_for_password(char *prompt, char *password); -@@ -47,6 +66,15 @@ - printf("Report bugs to <pgsql-bugs@postgresql.org>.\n"); - } - -+static void -+to64(char *s, long v, int n) -+{ -+ while (--n >= 0) { -+ *s++ = itoa64[v&0x3f]; -+ v >>= 6; -+ } -+} -+ - typedef struct - { - char *uname; -@@ -154,7 +182,7 @@ - if (q != NULL) - *(q++) = '\0'; - -- if (strlen(p) != CRYPTED_PASSWD_LEN && strcmp(p, "+") != 0) -+ if (strlen(p) > CRYPTED_PASSWD_LEN && strcmp(p, "+") != 0) - { - fprintf(stderr, "%s:%d: warning: invalid password length\n", - filename, npwds + 1); -@@ -221,15 +249,25 @@ - - static void - encrypt_pwd(char key[CLEAR_PASSWD_LEN + 1], -- char salt[3], -+ char salt[SALT_LEN], - char passwd[CRYPTED_PASSWD_LEN + 1]) - { -+#if !defined(__FreeBSD__) - int n; -- -+#endif - /* select a salt, if not already given */ - if (salt[0] == '\0') - { -+#if defined(__FreeBSD__) -+ struct timeval tv; -+ srandomdev(); -+ gettimeofday(&tv,0); -+ to64(&salt[0], random(), 3); -+ to64(&salt[3], tv.tv_usec, 3); -+ to64(&salt[6], tv.tv_sec, 2); -+ salt[8] = '\0'; - srand(time(NULL)); -+#else - do - { - n = rand() % 256; -@@ -241,6 +279,7 @@ - } while (!issaltchar(n)); - salt[1] = n; - salt[2] = '\0'; -+#endif - } - - /* get encrypted password */ -@@ -335,7 +374,7 @@ - char *filename; - char bkname[MAXPGPATH]; - char username[NAMEDATALEN]; -- char salt[3]; -+ char salt[SALT_LEN]; - char key[CLEAR_PASSWD_LEN + 1], - key2[CLEAR_PASSWD_LEN + 1]; - char e_passwd[CRYPTED_PASSWD_LEN + 1]; diff --git a/databases/postgresql91-server/files/patch-contrib-retep-build b/databases/postgresql91-server/files/patch-contrib-retep-build deleted file mode 100644 index 80f40f1cc86d..000000000000 --- a/databases/postgresql91-server/files/patch-contrib-retep-build +++ /dev/null @@ -1,37 +0,0 @@ -=================================================================== -RCS file: /home/projects/pgsql/cvsroot/pgsql/contrib/retep/build.xml,v -retrieving revision 1.4 -retrieving revision 1.5 -diff -u -r1.4 -r1.5 ---- contrib/retep/build.xml 2001/03/11 11:06:59 1.4 -+++ contrib/retep/build.xml 2001/05/16 16:20:51 1.5 -@@ -2,7 +2,7 @@ - - build file to build the donated retep tools packages - -- $Id: build.xml,v 1.4 2001/03/11 11:06:59 petere Exp $ -+ $Id: build.xml,v 1.5 2001/05/16 16:20:51 momjian Exp $ - - --> - -@@ -22,6 +22,11 @@ - <available property="xml" classname="org.xml.sax.Parser" /> - </target> - -+ <target name="warning" depends="checks" unless="jdk1.2+"> -+ <echo message="WARNING -- contributed retep tools need jdk1.2 or later -- compilation NOT done." /> -+ </target> -+ -+ - <!-- Prepares the build by creating a directory to place the class files --> - <target name="prepare"> - <mkdir dir="${dest}" /> -@@ -35,7 +40,7 @@ - </target> - - <!-- Builds the XML Tools --> -- <target name="compile" depends="checks,prepare"> -+ <target name="compile" depends="checks,prepare,warning" if="jdk1.2+"> - <javac srcdir="${src}" destdir="${dest}"> - <include name="${package}/**" /> - </javac> diff --git a/databases/postgresql91-server/files/patch-doc-makefile b/databases/postgresql91-server/files/patch-doc-makefile deleted file mode 100644 index fa27bed2af3f..000000000000 --- a/databases/postgresql91-server/files/patch-doc-makefile +++ /dev/null @@ -1,19 +0,0 @@ ---- doc/Makefile~ Sun Jan 7 03:03:22 2001 -+++ doc/Makefile Wed Apr 18 08:12:30 2001 -@@ -43,10 +43,13 @@ - gzip -d -c man.tar.gz | ( cd $(DESTDIR)$(mandir) && $(TAR) xf - ) - endif - -- - installdirs: -- $(mkinstalldirs) $(DESTDIR)$(mandir) $(DESTDIR)$(docdir)/html -- -+ifdef found_html -+ $(mkinstalldirs) $(DESTDIR)$(docdir)/html -+endif -+ifdef found_man -+ $(mkinstalldirs) $(DESTDIR)$(mandir) -+endif - - uninstall: - ifdef found_html diff --git a/databases/postgresql91-server/files/patch-jdbc-Connection b/databases/postgresql91-server/files/patch-jdbc-Connection deleted file mode 100644 index 26fbc260d639..000000000000 --- a/databases/postgresql91-server/files/patch-jdbc-Connection +++ /dev/null @@ -1,51 +0,0 @@ -=================================================================== -RCS file: /home/projects/pgsql/cvsroot/pgsql/src/interfaces/jdbc/org/postgresql/Connection.java,v -retrieving revision 1.14 -retrieving revision 1.16 -diff -u -r1.14 -r1.16 ---- src/interfaces/jdbc/org/postgresql/Connection.java 2001/01/31 08:26:01 1.14 -+++ src/interfaces/jdbc/org/postgresql/Connection.java 2001/06/01 20:57:58 1.16 -@@ -10,7 +10,7 @@ - import org.postgresql.util.*; - - /** -- * $Id: Connection.java,v 1.14 2001/01/31 08:26:01 peter Exp $ -+ * $Id: Connection.java,v 1.16 2001/06/01 20:57:58 momjian Exp $ - * - * This abstract class is used by org.postgresql.Driver to open either the JDBC1 or - * JDBC2 versions of the Connection class. -@@ -267,7 +267,8 @@ - // - firstWarning = null; - -- java.sql.ResultSet initrset = ExecSQL("set datestyle to 'ISO'; select getdatabaseencoding()"); -+ java.sql.ResultSet initrset = ExecSQL("set datestyle to 'ISO'; " + -+ "select case when pg_encoding_to_char(1) = 'SQL_ASCII' then 'UNKNOWN' else getdatabaseencoding() end"); - - String dbEncoding = null; - //retrieve DB properties -@@ -307,9 +308,23 @@ - } else if (dbEncoding.equals("EUC_TW")) { - dbEncoding = "EUC_TW"; - } else if (dbEncoding.equals("KOI8")) { -- dbEncoding = "KOI8_R"; -+ // try first if KOI8_U is present, it's a superset of KOI8_R -+ try { -+ dbEncoding = "KOI8_U"; -+ "test".getBytes(dbEncoding); -+ } -+ catch(UnsupportedEncodingException uee) { -+ // well, KOI8_U is still not in standard JDK, falling back to KOI8_R :( -+ dbEncoding = "KOI8_R"; -+ } -+ - } else if (dbEncoding.equals("WIN")) { - dbEncoding = "Cp1252"; -+ } else if (dbEncoding.equals("UNKNOWN")) { -+ //This isn't a multibyte database so we don't have an encoding to use -+ //We leave dbEncoding null which will cause the default encoding for the -+ //JVM to be used -+ dbEncoding = null; - } else { - dbEncoding = null; - } diff --git a/databases/postgresql91-server/files/patch-jdbc-build-xml b/databases/postgresql91-server/files/patch-jdbc-build-xml deleted file mode 100644 index b1c703a9c978..000000000000 --- a/databases/postgresql91-server/files/patch-jdbc-build-xml +++ /dev/null @@ -1,10 +0,0 @@ ---- src/interfaces/jdbc/build.xml~ Fri Mar 16 22:50:43 2001 -+++ src/interfaces/jdbc/build.xml Wed Apr 18 08:57:57 2001 -@@ -120,6 +120,7 @@ - <javac srcdir="${src}" destdir="${dest}"> - <include name="example/**" /> - <exclude name="example/corba/**"/> -+ <exclude name="example/blobtest.java" unless="jdk1.2+"/> - </javac> - </target> - diff --git a/databases/postgresql91-server/files/patch-jdbc-getdate b/databases/postgresql91-server/files/patch-jdbc-getdate deleted file mode 100644 index 744407ae14b5..000000000000 --- a/databases/postgresql91-server/files/patch-jdbc-getdate +++ /dev/null @@ -1,34 +0,0 @@ ---- src/interfaces/jdbc/org/postgresql/jdbc2/ResultSet.java~ Fri Feb 23 19:12:23 2001 -+++ src/interfaces/jdbc/org/postgresql/jdbc2/ResultSet.java Wed May 9 04:31:11 2001 -@@ -423,8 +423,13 @@ - String s = getString(columnIndex); - if(s==null) - return null; -- -- return java.sql.Date.valueOf(s); -+ // length == 10: SQL Date -+ // length > 10: SQL Timestamp, assumes PGDATESTYLE=ISO -+ try { -+ return java.sql.Date.valueOf((s.length() == 10) ? s : s.substring(0,10)); -+ } catch (NumberFormatException e) { -+ throw new PSQLException("postgresql.res.baddate", s); -+ } - } - - /** -@@ -441,8 +446,13 @@ - - if(s==null) - return null; // SQL NULL -- -- return java.sql.Time.valueOf(s); -+ // length == 8: SQL Time -+ // length > 8: SQL Timestamp -+ try { -+ return java.sql.Time.valueOf((s.length() == 8) ? s : s.substring(11,19)); -+ } catch (NumberFormatException e) { -+ throw new PSQLException("postgresql.res.badtime",s); -+ } - } - - /** diff --git a/databases/postgresql91-server/files/pgsql.sh.tmpl b/databases/postgresql91-server/files/pgsql.sh.tmpl deleted file mode 100644 index cd78771219ed..000000000000 --- a/databases/postgresql91-server/files/pgsql.sh.tmpl +++ /dev/null @@ -1,36 +0,0 @@ -#!/bin/sh - -# $FreeBSD$ -# -# For postmaster startup options, edit $PGDATA/postgresql.conf - -PGBIN=%%PREFIX%%/%%PG_PREFIX%%bin - -case $1 in -start) - [ -d %%PREFIX%%/%%PG_PREFIX%%lib ] && /sbin/ldconfig -m %%PREFIX%%/%%PG_PREFIX%%lib - [ -x ${PGBIN}/pg_ctl ] && { - su -l pgsql -c \ - '[ -d ${PGDATA} ] && exec %%PREFIX%%/%%PG_PREFIX%%bin/pg_ctl start -s -w -l ~pgsql/errlog' - echo -n ' pgsql' - } - ;; - -stop) - [ -x ${PGBIN}/pg_ctl ] && { - su -l pgsql -c 'exec %%PREFIX%%/%%PG_PREFIX%%bin/pg_ctl stop -s -m fast' - echo -n ' pgsql' - } - ;; - -status) - [ -x ${PGBIN}/pg_ctl ] && { - exec su -l pgsql -c 'exec %%PREFIX%%/%%PG_PREFIX%%bin/pg_ctl status' - } - ;; - -*) - echo "usage: `basename $0` {start|stop|status}" >&2 - exit 64 - ;; -esac diff --git a/databases/postgresql91-server/files/pkgIndex.tcl.in b/databases/postgresql91-server/files/pkgIndex.tcl.in deleted file mode 100644 index bd8329b15c69..000000000000 --- a/databases/postgresql91-server/files/pkgIndex.tcl.in +++ /dev/null @@ -1,4 +0,0 @@ -# Package-index file for Pgtcl-package. Enables you to load PostgreSQL -# interface functions right into you TCL-interpreter as simply as -# package require Pgtcl -package ifneeded Pgtcl 1.3 "load %%PREFIX%%/lib/libpgtcl.so" diff --git a/databases/postgresql91-server/files/post-install-notes b/databases/postgresql91-server/files/post-install-notes deleted file mode 100644 index 9347fc51c247..000000000000 --- a/databases/postgresql91-server/files/post-install-notes +++ /dev/null @@ -1,25 +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/TK support, you can use the pgaccess -utility to get a TCL/TK based database frontend for database -operations. You do NOT need to install the pgaccess port separately. - -If you built in the TCL support, you can load the Pg package into your -TCL scripts as easily as ``package require Pgtcl''. - -If you built with Java support, add -/usr/local/share/java/classes/postgresql.jar to your classpath. - -If you have many tables and many clients running, consider raising -kern.maxfiles using sysctl(8). - -Use createlang(1) to install languages into your database. -Supported languages are 'plpgsql', 'pltcl', 'pltclu', and 'plperl'. diff --git a/databases/postgresql91-server/files/pre-install-notes b/databases/postgresql91-server/files/pre-install-notes deleted file mode 100644 index 697ce3cedb79..000000000000 --- a/databases/postgresql91-server/files/pre-install-notes +++ /dev/null @@ -1,21 +0,0 @@ - * IMPORTANT UPGRADE NOTICE * IMPORTANT UPGRADE NOTICE * - -The PostgreSQL port now obeys hier(7) by default, which means that it -installs into: - -%%PREFIX%%/bin -%%PREFIX%%/lib -%%PREFIX%%/include/pgsql - -You *must* move away your old installation to avoid problems with -ldconfig(8) and user's PATH:s. If you rather install using the -old-fashion layout, cancel at next screen and run make as: - -$ make -DWITH_OLD_LAYOUT - -As always, you *must* dump existing databases before stopping and -removing your old postgresql, as part of the update. This is *NOT* -done by this port! - -If you want JAVA support, I will try to determine your JAVA_HOME using -javavmwrapper. If you want a different JVM, please set JAVA_HOME. 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 463e4e49815f..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 cfc983fc2f66..000000000000 --- a/databases/postgresql91-server/pkg-install +++ /dev/null @@ -1,46 +0,0 @@ -#! /bin/sh - -# $FreeBSD$ - -PATH=/bin:/usr/sbin - -DB_DIR=${PKG_PREFIX}/pgsql - -case $2 in -PRE-INSTALL) - USER=pgsql - GROUP=${USER} - UID=70 - 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} -c "PostgreSQL Daemon" - then - echo "Added user \"${USER}\"." - else - echo "Adding user \"${USER}\" failed..." - exit 1 - fi - fi - - if ! [ -x ~pgsql ] ; then - mkdir -p ${DB_DIR} - chown pgsql:pgsql ${DB_DIR} - fi - ;; - -esac diff --git a/databases/postgresql91-server/pkg-message b/databases/postgresql91-server/pkg-message deleted file mode 100644 index 1a3f9f1e4147..000000000000 --- a/databases/postgresql91-server/pkg-message +++ /dev/null @@ -1,38 +0,0 @@ - -====================================================================== - - * IMPORTANT UPGRADE NOTICE * IMPORTANT UPGRADE NOTICE * - -The PostgreSQL port now obeys hier(7) by default, which means that it -installs into: - -/usr/local/bin -/usr/local/lib -/usr/local/include/pgsql - -You *must* move away your old installation from users' and -ldconfig(8)'s PATHs. If you rather install using the old-fashion -layout, cancel now and build the port with "make -DWITH_OLD_LAYOUT". - -The pgsql user's home dir is /usr/local/pgsql by default, but can be -changed with for example chpass(1). Datadir defaults to ~pgsql/data, -but can be changed by modifying the ~pgsql/.profile script. - -As always, backup your data before upgrading. If the upgrade leads to -a higher minor revision (i.e. 7.0.x -> 7.1.x), a dump and restore of -all databases is required. This is *NOT* done by the port! - -====================================================================== - -To initialize the database, you should run initdb as the "pgsql" user. - -Example: - - su -l pgsql -c initdb - -You can then start PostgreSQL by running: - - /usr/local/etc/rc.d/010.pgsql.sh start - -For postmaster settings, see ~pgsql/data/postgresql.conf -====================================================================== diff --git a/databases/postgresql91-server/pkg-plist b/databases/postgresql91-server/pkg-plist deleted file mode 100644 index a7493ddb7898..000000000000 --- a/databases/postgresql91-server/pkg-plist +++ /dev/null @@ -1,91 +0,0 @@ -%%PG_PREFIX%%bin/postmaster -%%PG_PREFIX%%bin/postgres -%%PG_PREFIX%%bin/ecpg -%%PG_PREFIX%%bin/initdb -%%PG_PREFIX%%bin/initlocation -%%PG_PREFIX%%bin/ipcclean -%%PG_PREFIX%%bin/pg_ctl -%%PG_PREFIX%%bin/pg_dump -%%PG_PREFIX%%bin/pg_restore -%%PG_PREFIX%%bin/pg_encoding -%%PG_PREFIX%%bin/pg_dumpall -%%PG_PREFIX%%bin/pg_id -%%PG_PREFIX%%bin/pg_passwd -%%PG_PREFIX%%bin/psql -%%PG_PREFIX%%bin/createdb -%%PG_PREFIX%%bin/dropdb -%%PG_PREFIX%%bin/createuser -%%PG_PREFIX%%bin/dropuser -%%PG_PREFIX%%bin/droplang -%%PG_PREFIX%%bin/vacuumdb -%%PG_PREFIX%%bin/createlang -%%PG_PREFIX%%bin/pg_config -etc/rc.d/010.pgsql.sh -%%PG_INCLUDE%%/lib/dllist.h -@dirrm %%PG_INCLUDE%%/lib -%%PG_INCLUDE%%/libpq/pqcomm.h -%%PG_INCLUDE%%/libpq/libpq-fs.h -@dirrm %%PG_INCLUDE%%/libpq -%%PG_INCLUDE%%/libpq++/pgconnection.h -%%PG_INCLUDE%%/libpq++/pgdatabase.h -%%PG_INCLUDE%%/libpq++/pgtransdb.h -%%PG_INCLUDE%%/libpq++/pgcursordb.h -%%PG_INCLUDE%%/libpq++/pglobject.h -@dirrm %%PG_INCLUDE%%/libpq++ -%%PG_INCLUDE%%/c.h -%%PG_INCLUDE%%/postgres_ext.h -%%PG_INCLUDE%%/postgres_fe.h -%%PG_INCLUDE%%/os.h -%%PG_INCLUDE%%/config.h -%%PG_INCLUDE%%/libpq-fe.h -%%PG_INCLUDE%%/libpq-int.h -%%PG_INCLUDE%%/pqexpbuffer.h -%%PG_INCLUDE%%/ecpgerrno.h -%%PG_INCLUDE%%/ecpglib.h -%%PG_INCLUDE%%/ecpgtype.h -%%PG_INCLUDE%%/sqlca.h -%%PG_INCLUDE%%/sql3types.h -%%PG_INCLUDE%%/libpgeasy.h -%%PG_INCLUDE%%/libpq++.h -@dirrm %%PG_INCLUDE%% -%%PG_PREFIX%%lib/libpq.so -%%PG_PREFIX%%lib/libpq.a -%%PG_PREFIX%%lib/libpq.so.2 -%%PG_PREFIX%%lib/libecpg.so -%%PG_PREFIX%%lib/libecpg.a -%%PG_PREFIX%%lib/libecpg.so.3 -%%PG_PREFIX%%lib/libpgeasy.so -%%PG_PREFIX%%lib/libpgeasy.a -%%PG_PREFIX%%lib/libpgeasy.so.2 -%%PG_PREFIX%%lib/libpq++.so -%%PG_PREFIX%%lib/libpq++.a -%%PG_PREFIX%%lib/libpq++.so.3 -%%PG_PREFIX%%lib/plpgsql.so -share/postgresql/global.bki -share/postgresql/global.description -share/postgresql/post-install-notes -share/postgresql/template1.bki -share/postgresql/template1.description -share/postgresql/pg_hba.conf.sample -share/postgresql/pg_ident.conf.sample -share/postgresql/postgresql.conf.sample -@unexec if cmp -s ~pgsql/.profile %D/share/postgresql/dot.profile.dist; then rm -f ~pgsql/.profile; fi -@unexec if cmp -s ~pgsql/.cshrc %D/share/postgresql/dot.cshrc.dist; then rm -f ~pgsql/.cshrc; fi -@unexec [ -f ~pgsql/dot.profile.dist ] && rm ~pgsql/dot.profile.dist -@unexec [ -f ~pgsql/dot.cshrc.dist ] && rm ~pgsql/dot.cshrc.dist -@exec [ -f %D/share/postgresql/post-install-notes ] && cp %D/share/postgresql/post-install-notes ~pgsql && chown pgsql:pgsql ~pgsql/post-install-notes -@unexec [ -f ~pgsql/post-install-notes ] && rm ~pgsql/post-install-notes -share/postgresql/dot.profile.dist -share/postgresql/dot.cshrc.dist -@dirrm share/postgresql -@exec [ -f %D/share/postgresql/dot.profile.dist ] && cp %D/share/postgresql/dot.profile.dist ~pgsql/. -@exec [ -f %D/share/postgresql/dot.cshrc.dist ] && cp %D/share/postgresql/dot.cshrc.dist ~pgsql/. -@exec [ -f ~pgsql/.profile ] || (cp %D/share/postgresql/dot.profile.dist ~pgsql/.profile && chown pgsql:pgsql ~pgsql/.profile) -@exec [ -f ~pgsql/.cshrc ] || (cp %D/share/postgresql/dot.cshrc.dist ~pgsql/.cshrc && chown pgsql:pgsql ~pgsql/.cshrc) -@unexec [ X%%PG_PREFIX%% != X ] && rmdir %D/%%PG_PREFIX%%bin 2> /dev/null || true -@unexec [ X%%PG_PREFIX%% != X ] && rmdir %D/%%PG_PREFIX%%lib 2> /dev/null || true -@unexec [ X%%PG_PREFIX%% != X ] && rmdir %D/%%PG_PREFIX%%man/man1 2> /dev/null || true -@unexec [ X%%PG_PREFIX%% != X ] && rmdir %D/%%PG_PREFIX%%man/manl 2> /dev/null || true -@unexec [ X%%PG_PREFIX%% != X ] && rmdir %D/%%PG_PREFIX%%man 2> /dev/null || true -@unexec rmdir ~pgsql 2> /dev/null || true -@unexec echo "Warning: If you will *NOT* use this package anymore, please remove %D/pgsql and the pgsql user manually." diff --git a/databases/postgresql91-server/pkg-plist.doc b/databases/postgresql91-server/pkg-plist.doc deleted file mode 100644 index c4d50ecb24f0..000000000000 --- a/databases/postgresql91-server/pkg-plist.doc +++ /dev/null @@ -1,494 +0,0 @@ -share/doc/postgresql/html/admin.html -share/doc/postgresql/html/advanced.html -share/doc/postgresql/html/altern-locations.html -share/doc/postgresql/html/app-createdb.html -share/doc/postgresql/html/app-createlang.html -share/doc/postgresql/html/app-createuser.html -share/doc/postgresql/html/app-dropdb.html -share/doc/postgresql/html/app-droplang.html -share/doc/postgresql/html/app-dropuser.html -share/doc/postgresql/html/app-ecpg.html -share/doc/postgresql/html/app-initdb.html -share/doc/postgresql/html/app-initlocation.html -share/doc/postgresql/html/app-ipcclean.html -share/doc/postgresql/html/app-pg-ctl.html -share/doc/postgresql/html/app-pg-dumpall.html -share/doc/postgresql/html/app-pg-passwd.html -share/doc/postgresql/html/app-pgaccess.html -share/doc/postgresql/html/app-pgadmin.html -share/doc/postgresql/html/app-pgconfig.html -share/doc/postgresql/html/app-pgdump.html -share/doc/postgresql/html/app-pgrestore.html -share/doc/postgresql/html/app-pgtclsh.html -share/doc/postgresql/html/app-pgtksh.html -share/doc/postgresql/html/app-postgres.html -share/doc/postgresql/html/app-postmaster.html -share/doc/postgresql/html/app-psql.html -share/doc/postgresql/html/app-vacuumdb.html -share/doc/postgresql/html/applevel-consistency.html -share/doc/postgresql/html/arch-pg.html -share/doc/postgresql/html/arch.html -share/doc/postgresql/html/arrays.html -share/doc/postgresql/html/auth-methods.html -share/doc/postgresql/html/backup-file.html -share/doc/postgresql/html/backup.html -share/doc/postgresql/html/biblio.html -share/doc/postgresql/html/bki-commands.html -share/doc/postgresql/html/bki-example.html -share/doc/postgresql/html/bki.html -share/doc/postgresql/html/bug-reporting.html -share/doc/postgresql/html/catalog-pg-aggregate.html -share/doc/postgresql/html/catalog-pg-attrdef.html -share/doc/postgresql/html/catalog-pg-attribute.html -share/doc/postgresql/html/catalog-pg-class.html -share/doc/postgresql/html/catalog-pg-database.html -share/doc/postgresql/html/catalog-pg-description.html -share/doc/postgresql/html/catalog-pg-group.html -share/doc/postgresql/html/catalog-pg-index.html -share/doc/postgresql/html/catalog-pg-inherits.html -share/doc/postgresql/html/catalog-pg-language.html -share/doc/postgresql/html/catalog-pg-operator.html -share/doc/postgresql/html/catalog-pg-proc.html -share/doc/postgresql/html/catalog-pg-relcheck.html -share/doc/postgresql/html/catalog-pg-shadow.html -share/doc/postgresql/html/catalog-pg-type.html -share/doc/postgresql/html/catalogs.html -share/doc/postgresql/html/charset.html -share/doc/postgresql/html/client-authentication-problems.html -share/doc/postgresql/html/client-authentication.html -share/doc/postgresql/html/compiler.html -share/doc/postgresql/html/connect-estab.html -share/doc/postgresql/html/creating-cluster.html -share/doc/postgresql/html/cvs-tree.html -share/doc/postgresql/html/cvs.html -share/doc/postgresql/html/cvsup.html -share/doc/postgresql/html/datatype-bit.html -share/doc/postgresql/html/datatype-boolean.html -share/doc/postgresql/html/datatype-character.html -share/doc/postgresql/html/datatype-datetime.html -share/doc/postgresql/html/datatype-geometric.html -share/doc/postgresql/html/datatype-money.html -share/doc/postgresql/html/ecpg.html -share/doc/postgresql/html/datatype-net-types.html -share/doc/postgresql/html/datatype.html -share/doc/postgresql/html/datetime-appendix.html -share/doc/postgresql/html/db-accessing.html -share/doc/postgresql/html/db-destroy.html -share/doc/postgresql/html/developer.html -share/doc/postgresql/html/doc-build.html -share/doc/postgresql/html/doc-sources.html -share/doc/postgresql/html/doc-toolsets.html -share/doc/postgresql/html/docguide.html -share/doc/postgresql/html/ecpg-concept.html -share/doc/postgresql/html/ecpg-develop.html -share/doc/postgresql/html/ecpg-limitations.html -share/doc/postgresql/html/ecpg-porting.html -share/doc/postgresql/html/ecpg-use.html -share/doc/postgresql/html/executor.html -share/doc/postgresql/html/explicit-joins.html -share/doc/postgresql/html/extend.html -share/doc/postgresql/html/functions-datetime.html -share/doc/postgresql/html/functions-aggregate.html -share/doc/postgresql/html/functions-comparison.html -share/doc/postgresql/html/functions-conditional.html -share/doc/postgresql/html/functions-formatting.html -share/doc/postgresql/html/functions-geometry.html -share/doc/postgresql/html/functions-matching.html -share/doc/postgresql/html/functions-math.html -share/doc/postgresql/html/functions-misc.html -share/doc/postgresql/html/functions-net.html -share/doc/postgresql/html/functions-string.html -share/doc/postgresql/html/functions.html -share/doc/postgresql/html/geqo-intro2.html -share/doc/postgresql/html/geqo-pg-intro.html -share/doc/postgresql/html/geqo.html -share/doc/postgresql/html/gist.html -share/doc/postgresql/html/groups.html -share/doc/postgresql/html/history.html -share/doc/postgresql/html/index.html -share/doc/postgresql/html/indexcost.html -share/doc/postgresql/html/indices-functional.html -share/doc/postgresql/html/indices-multicolumn.html -share/doc/postgresql/html/indices-opclass.html -share/doc/postgresql/html/indices-types.html -share/doc/postgresql/html/indices-unique.html -share/doc/postgresql/html/indices.html -share/doc/postgresql/html/inherit.html -share/doc/postgresql/html/install-getsource.html -share/doc/postgresql/html/install-post.html -share/doc/postgresql/html/install-procedure.html -share/doc/postgresql/html/install-requirements.html -share/doc/postgresql/html/install-upgrading.html -share/doc/postgresql/html/install-win32.html -share/doc/postgresql/html/installation.html -share/doc/postgresql/html/jdbc-ext.html -share/doc/postgresql/html/jdbc-lo.html -share/doc/postgresql/html/jdbc.html -share/doc/postgresql/html/jdbc-query.html -share/doc/postgresql/html/jdbc-reading.html -share/doc/postgresql/html/jdbc-thread.html -share/doc/postgresql/html/jdbc-update.html -share/doc/postgresql/html/jdbc-use.html -share/doc/postgresql/html/kernel-resources.html -share/doc/postgresql/html/keys.html -share/doc/postgresql/html/largeobjects.html -share/doc/postgresql/html/libpgtcl-examples.html -share/doc/postgresql/html/libpgtcl-ref.html -share/doc/postgresql/html/libpq-async.html -share/doc/postgresql/html/libpq-control.html -share/doc/postgresql/html/libpq-copy.html -share/doc/postgresql/html/libpq-envars.html -share/doc/postgresql/html/libpq-example.html -share/doc/postgresql/html/libpq-exec.html -share/doc/postgresql/html/libpq-fastpath.html -share/doc/postgresql/html/libpq-notify.html -share/doc/postgresql/html/libpq.html -share/doc/postgresql/html/libpq-threading.html -share/doc/postgresql/html/libpq-trace.html -share/doc/postgresql/html/libpqplusplus.html -share/doc/postgresql/html/libpqpp-classes.html -share/doc/postgresql/html/libpqpp-connect.html -share/doc/postgresql/html/libpqpp-copy.html -share/doc/postgresql/html/libpqpp-exec.html -share/doc/postgresql/html/libpqpp-notify.html -share/doc/postgresql/html/lisp.html -share/doc/postgresql/html/ln11330.html -share/doc/postgresql/html/ln1274.html -share/doc/postgresql/html/ln15181.html -share/doc/postgresql/html/ln24.html -share/doc/postgresql/html/ln25010.html -share/doc/postgresql/html/ln37176.html -share/doc/postgresql/html/ln8.html -share/doc/postgresql/html/lo-funcs.html -share/doc/postgresql/html/lo-implementation.html -share/doc/postgresql/html/lo-interfaces.html -share/doc/postgresql/html/lo-libpq.html -share/doc/postgresql/html/lo-sample.html -share/doc/postgresql/html/locking-indices.html -share/doc/postgresql/html/locking-tables.html -share/doc/postgresql/html/manage-ag-accessdb.html -share/doc/postgresql/html/manage-ag-dropdb.html -share/doc/postgresql/html/manage.html -share/doc/postgresql/html/managing-databases.html -share/doc/postgresql/html/migration.html -share/doc/postgresql/html/more-advanced.html -share/doc/postgresql/html/multibyte.html -share/doc/postgresql/html/mvcc.html -share/doc/postgresql/html/non-atomic-values.html -share/doc/postgresql/html/notation.html -share/doc/postgresql/html/odbc-applixware.html -share/doc/postgresql/html/odbc-config.html -share/doc/postgresql/html/odbc-install.html -share/doc/postgresql/html/odbc-windows.html -share/doc/postgresql/html/odbc.html -share/doc/postgresql/html/organization.html -share/doc/postgresql/html/overview.html -share/doc/postgresql/html/page.html -share/doc/postgresql/html/parser-stage.html -share/doc/postgresql/html/partial-index.html -share/doc/postgresql/html/performance-tips.html -share/doc/postgresql/html/perm-functions.html -share/doc/postgresql/html/pg-system-catalogs.html -share/doc/postgresql/html/pgeasy-chapter.html -share/doc/postgresql/html/pgtcl-pgconndefaults.html -share/doc/postgresql/html/pgtcl-pgconnect.html -share/doc/postgresql/html/pgtcl-pgdisconnect.html -share/doc/postgresql/html/pgtcl-pgexec.html -share/doc/postgresql/html/pgtcl-pglisten.html -share/doc/postgresql/html/pgtcl-pgloclose.html -share/doc/postgresql/html/pgtcl-pglocreat.html -share/doc/postgresql/html/pgtcl-pgloexport.html -share/doc/postgresql/html/pgtcl-pgloimport.html -share/doc/postgresql/html/pgtcl-pglolseek.html -share/doc/postgresql/html/pgtcl-pgloopen.html -share/doc/postgresql/html/pgtcl-pgloread.html -share/doc/postgresql/html/pgtcl-pglotell.html -share/doc/postgresql/html/pgtcl-pglounlink.html -share/doc/postgresql/html/pgtcl-pglowrite.html -share/doc/postgresql/html/pgtcl-pgresult.html -share/doc/postgresql/html/pgtcl-pgselect.html -share/doc/postgresql/html/pgtcl.html -share/doc/postgresql/html/planner-optimizer.html -share/doc/postgresql/html/plperl-use.html -share/doc/postgresql/html/plperl.html -share/doc/postgresql/html/plpgsql-description.html -share/doc/postgresql/html/plpgsql-examples.html -share/doc/postgresql/html/plpgsql-porting.html -share/doc/postgresql/html/plpgsql-trigger.html -share/doc/postgresql/html/plpgsql.html -share/doc/postgresql/html/pltcl-description.html -share/doc/postgresql/html/pltcl.html -share/doc/postgresql/html/populate.html -share/doc/postgresql/html/postgres.html -share/doc/postgresql/html/postmaster-shutdown.html -share/doc/postgresql/html/postmaster-start.html -share/doc/postgresql/html/preface.html -share/doc/postgresql/html/privileges.html -share/doc/postgresql/html/programmer-client.html -share/doc/postgresql/html/programmer-pl.html -share/doc/postgresql/html/programmer-server.html -share/doc/postgresql/html/programmer.html -share/doc/postgresql/html/protocol-message-formats.html -share/doc/postgresql/html/protocol-message-types.html -share/doc/postgresql/html/protocol-protocol.html -share/doc/postgresql/html/protocol.html -share/doc/postgresql/html/pygresql.html -share/doc/postgresql/html/pygresql-close.html -share/doc/postgresql/html/pygresql-connect.html -share/doc/postgresql/html/pygresql-db-api.html -share/doc/postgresql/html/pygresql-db-clear.html -share/doc/postgresql/html/pygresql-db-delete.html -share/doc/postgresql/html/pygresql-db-get-attnames.html -share/doc/postgresql/html/pygresql-db-get-databases.html -share/doc/postgresql/html/pygresql-db-get-tables.html -share/doc/postgresql/html/pygresql-db-get.html -share/doc/postgresql/html/pygresql-db-insert.html -share/doc/postgresql/html/pygresql-db-pkey.html -share/doc/postgresql/html/pygresql-db-update.html -share/doc/postgresql/html/pygresql-endcopy.html -share/doc/postgresql/html/pygresql-fileno.html -share/doc/postgresql/html/pygresql-get-defbase.html -share/doc/postgresql/html/pygresql-get-defhost.html -share/doc/postgresql/html/pygresql-get-defopt.html -share/doc/postgresql/html/pygresql-get-defport.html -share/doc/postgresql/html/pygresql-get-deftty.html -share/doc/postgresql/html/pygresql-getline.html -share/doc/postgresql/html/pygresql-getlo.html -share/doc/postgresql/html/pygresql-getnotify.html -share/doc/postgresql/html/pygresql-inserttable.html -share/doc/postgresql/html/pygresql-locreate.html -share/doc/postgresql/html/pygresql-loimport.html -share/doc/postgresql/html/pygresql-pg-db.html -share/doc/postgresql/html/pygresql-pg-functions.html -share/doc/postgresql/html/pygresql-pg-pglarge.html -share/doc/postgresql/html/pygresql-pg-pgobject.html -share/doc/postgresql/html/pygresql-pg-pgqueryobject.html -share/doc/postgresql/html/pygresql-pglargeobject-close.html -share/doc/postgresql/html/pygresql-pglargeobject-export.html -share/doc/postgresql/html/pygresql-pglargeobject-open.html -share/doc/postgresql/html/pygresql-pglargeobject-read.html -share/doc/postgresql/html/pygresql-pglargeobject-seek.html -share/doc/postgresql/html/pygresql-pglargeobject-size.html -share/doc/postgresql/html/pygresql-pglargeobject-tell.html -share/doc/postgresql/html/pygresql-pglargeobject-unlink.html -share/doc/postgresql/html/pygresql-pglargeobject-write.html -share/doc/postgresql/html/pygresql-pgqueryobject-dictresult.html -share/doc/postgresql/html/pygresql-pgqueryobject-fieldname.html -share/doc/postgresql/html/query.html -share/doc/postgresql/html/pygresql-pgqueryobject-fieldnum.html -share/doc/postgresql/html/pygresql-pgqueryobject-getresult.html -share/doc/postgresql/html/pygresql-pgqueryobject-listfields.html -share/doc/postgresql/html/pygresql-pgqueryobject-ntuples.html -share/doc/postgresql/html/pygresql-putline.html -share/doc/postgresql/html/pygresql-query.html -share/doc/postgresql/html/pygresql-reset.html -share/doc/postgresql/html/pygresql-set-defbase.html -share/doc/postgresql/html/pygresql-set-defhost.html -share/doc/postgresql/html/pygresql-set-defopt.html -share/doc/postgresql/html/pygresql-set-defport.html -share/doc/postgresql/html/pygresql-set-deftty.html -share/doc/postgresql/html/queries-limit.html -share/doc/postgresql/html/queries-order.html -share/doc/postgresql/html/queries-select-lists.html -share/doc/postgresql/html/queries-union.html -share/doc/postgresql/html/queries.html -share/doc/postgresql/html/query-agg.html -share/doc/postgresql/html/query-concepts.html -share/doc/postgresql/html/query-delete.html -share/doc/postgresql/html/query-join.html -share/doc/postgresql/html/query-populate.html -share/doc/postgresql/html/query-query.html -share/doc/postgresql/html/query-selectinto.html -share/doc/postgresql/html/query-table.html -share/doc/postgresql/html/query-update.html -share/doc/postgresql/html/recode.html -share/doc/postgresql/html/recovery.html -share/doc/postgresql/html/reference-client.html -share/doc/postgresql/html/reference-server.html -share/doc/postgresql/html/reference.html -share/doc/postgresql/html/regress-platform.html -share/doc/postgresql/html/regress.html -share/doc/postgresql/html/release-0-01.html -share/doc/postgresql/html/release-0-02.html -share/doc/postgresql/html/release-0-03.html -share/doc/postgresql/html/release-1-0.html -share/doc/postgresql/html/release-1-01.html -share/doc/postgresql/html/release-1-02.html -share/doc/postgresql/html/release-1-09.html -share/doc/postgresql/html/release-6-0.html -share/doc/postgresql/html/release-6-1-1.html -share/doc/postgresql/html/release-6-1.html -share/doc/postgresql/html/release-6-2-1.html -share/doc/postgresql/html/release-6-2.html -share/doc/postgresql/html/release-6-3-1.html -share/doc/postgresql/html/release-6-3-2.html -share/doc/postgresql/html/release-6-3.html -share/doc/postgresql/html/release-6-4-1.html -share/doc/postgresql/html/release-6-4-2.html -share/doc/postgresql/html/release-6-4.html -share/doc/postgresql/html/release-6-5-1.html -share/doc/postgresql/html/release-6-5-2.html -share/doc/postgresql/html/release-6-5-3.html -share/doc/postgresql/html/release-6-5.html -share/doc/postgresql/html/release-7-0-1.html -share/doc/postgresql/html/release-7-0-2.html -share/doc/postgresql/html/release-7-0-3.html -share/doc/postgresql/html/release-7-0.html -share/doc/postgresql/html/release-7-1.html -share/doc/postgresql/html/release-7-1-1.html -share/doc/postgresql/html/release-7-1-2.html -share/doc/postgresql/html/release.html -share/doc/postgresql/html/relmodel-formal.html -share/doc/postgresql/html/relmodel-oper.html -share/doc/postgresql/html/resources.html -share/doc/postgresql/html/rule-system.html -share/doc/postgresql/html/rules-insert.html -share/doc/postgresql/html/rules-permissions.html -share/doc/postgresql/html/rules-triggers.html -share/doc/postgresql/html/rules-views.html -share/doc/postgresql/html/rules.html -share/doc/postgresql/html/runtime-config.html -share/doc/postgresql/html/runtime.html -share/doc/postgresql/html/source.html -share/doc/postgresql/html/spi-examples.html -share/doc/postgresql/html/spi-interface-support.html -share/doc/postgresql/html/spi-memory.html -share/doc/postgresql/html/spi-spiconnect.html -share/doc/postgresql/html/spi-spicopytuple.html -share/doc/postgresql/html/spi-spiexec.html -share/doc/postgresql/html/spi-spiexecp.html -share/doc/postgresql/html/spi-spifinish.html -share/doc/postgresql/html/spi-spifname.html -share/doc/postgresql/html/spi-spifnumber.html -share/doc/postgresql/html/spi-spigetbinval.html -share/doc/postgresql/html/spi-spigetrelname.html -share/doc/postgresql/html/spi-spigettype.html -share/doc/postgresql/html/spi-spigettypeid.html -share/doc/postgresql/html/spi-spigetvalue.html -share/doc/postgresql/html/spi-spimodifytuple.html -share/doc/postgresql/html/spi-spipalloc.html -share/doc/postgresql/html/spi-spipfree.html -share/doc/postgresql/html/spi-spiprepare.html -share/doc/postgresql/html/spi-spirepalloc.html -share/doc/postgresql/html/spi-spisaveplan.html -share/doc/postgresql/html/spi-visibility.html -share/doc/postgresql/html/spi.html -share/doc/postgresql/html/sql-abort.html -share/doc/postgresql/html/sql-altergroup.html -share/doc/postgresql/html/sql-altertable.html -share/doc/postgresql/html/sql-alteruser.html -share/doc/postgresql/html/sql-begin.html -share/doc/postgresql/html/sql-checkpoint.html -share/doc/postgresql/html/sql-close.html -share/doc/postgresql/html/sql-cluster.html -share/doc/postgresql/html/sql-commands.html -share/doc/postgresql/html/sql-comment.html -share/doc/postgresql/html/sql-commit.html -share/doc/postgresql/html/sql-copy.html -share/doc/postgresql/html/sql-createaggregate.html -share/doc/postgresql/html/sql-createconstraint.html -share/doc/postgresql/html/sql-createdatabase.html -share/doc/postgresql/html/sql-createfunction.html -share/doc/postgresql/html/sql-creategroup.html -share/doc/postgresql/html/sql-createindex.html -share/doc/postgresql/html/sql-createlanguage.html -share/doc/postgresql/html/sql-createoperator.html -share/doc/postgresql/html/sql-createrule.html -share/doc/postgresql/html/sql-createsequence.html -share/doc/postgresql/html/sql-createtable.html -share/doc/postgresql/html/sql-createtableas.html -share/doc/postgresql/html/sql-createtrigger.html -share/doc/postgresql/html/sql-createtype.html -share/doc/postgresql/html/sql-createuser.html -share/doc/postgresql/html/sql-createview.html -share/doc/postgresql/html/sql-declare.html -share/doc/postgresql/html/sql-delete.html -share/doc/postgresql/html/sql-dropaggregate.html -share/doc/postgresql/html/sql-dropdatabase.html -share/doc/postgresql/html/sql-dropfunction.html -share/doc/postgresql/html/sql-dropgroup.html -share/doc/postgresql/html/sql-dropindex.html -share/doc/postgresql/html/sql-droplanguage.html -share/doc/postgresql/html/sql-dropoperator.html -share/doc/postgresql/html/sql-droprule.html -share/doc/postgresql/html/sql-dropsequence.html -share/doc/postgresql/html/sql-droptable.html -share/doc/postgresql/html/sql-droptrigger.html -share/doc/postgresql/html/sql-droptype.html -share/doc/postgresql/html/sql-dropuser.html -share/doc/postgresql/html/sql-dropview.html -share/doc/postgresql/html/sql-end.html -share/doc/postgresql/html/sql-explain.html -share/doc/postgresql/html/sql-expressions.html -share/doc/postgresql/html/sql-fetch.html -share/doc/postgresql/html/sql-grant.html -share/doc/postgresql/html/sql-insert.html -share/doc/postgresql/html/sql-keywords-appendix.html -share/doc/postgresql/html/sql-language.html -share/doc/postgresql/html/sql-listen.html -share/doc/postgresql/html/sql-load.html -share/doc/postgresql/html/sql-lock.html -share/doc/postgresql/html/sql-move.html -share/doc/postgresql/html/sql-notify.html -share/doc/postgresql/html/sql-precedence.html -share/doc/postgresql/html/sql-reindex.html -share/doc/postgresql/html/sql-reset.html -share/doc/postgresql/html/sql-revoke.html -share/doc/postgresql/html/sql-rollback.html -share/doc/postgresql/html/sql-select.html -share/doc/postgresql/html/sql-selectinto.html -share/doc/postgresql/html/sql-set-constraints.html -share/doc/postgresql/html/sql-set-transaction.html -share/doc/postgresql/html/sql-set.html -share/doc/postgresql/html/sql-show.html -share/doc/postgresql/html/sql-syntax-columns.html -share/doc/postgresql/html/sql-syntax.html -share/doc/postgresql/html/sql-truncate.html -share/doc/postgresql/html/sql-unlisten.html -share/doc/postgresql/html/sql-update.html -share/doc/postgresql/html/sql-vacuum.html -share/doc/postgresql/html/sql.html -share/doc/postgresql/html/ssh-tunnels.html -share/doc/postgresql/html/ssl-tcp.html -share/doc/postgresql/html/start-manage-db.html -share/doc/postgresql/html/start-psql.html -share/doc/postgresql/html/start.html -share/doc/postgresql/html/storage.html -share/doc/postgresql/html/supported-platforms.html -share/doc/postgresql/html/timing-results.html -share/doc/postgresql/html/transaction-iso.html -share/doc/postgresql/html/trigger-datachanges.html -share/doc/postgresql/html/trigger-examples.html -share/doc/postgresql/html/trigger-manager.html -share/doc/postgresql/html/triggers.html -share/doc/postgresql/html/tutorial.html -share/doc/postgresql/html/type-system.html -share/doc/postgresql/html/typeconv-func.html -share/doc/postgresql/html/typeconv-oper.html -share/doc/postgresql/html/typeconv-query.html -share/doc/postgresql/html/typeconv-union-case.html -share/doc/postgresql/html/typeconv.html -share/doc/postgresql/html/units-history.html -share/doc/postgresql/html/user-manag.html -share/doc/postgresql/html/user.html -share/doc/postgresql/html/wal-configuration.html -share/doc/postgresql/html/wal-implementation.html -share/doc/postgresql/html/wal.html -share/doc/postgresql/html/xact-read-committed.html -share/doc/postgresql/html/xact-serializable.html -share/doc/postgresql/html/xaggr.html -share/doc/postgresql/html/xfunc-c.html -share/doc/postgresql/html/xfunc-internal.html -share/doc/postgresql/html/xfunc-overload.html -share/doc/postgresql/html/xfunc-pl.html -share/doc/postgresql/html/xfunc.html -share/doc/postgresql/html/xindex.html -share/doc/postgresql/html/xoper.html -share/doc/postgresql/html/xplang.html -share/doc/postgresql/html/xtypes.html -share/doc/postgresql/html/y2k.html -share/doc/postgresql/html/catalogs.gif -share/doc/postgresql/html/clientserver.gif -share/doc/postgresql/html/connections.gif -@dirrm share/doc/postgresql/html -@dirrm share/doc/postgresql diff --git a/databases/postgresql91-server/pkg-plist.jdbc b/databases/postgresql91-server/pkg-plist.jdbc deleted file mode 100644 index 8f7bd41a54d7..000000000000 --- a/databases/postgresql91-server/pkg-plist.jdbc +++ /dev/null @@ -1,27 +0,0 @@ -share/examples/postgresql/corba/StockClient.java -share/examples/postgresql/corba/StockDB.java -share/examples/postgresql/corba/StockDispenserImpl.java -share/examples/postgresql/corba/StockItemImpl.java -share/examples/postgresql/corba/StockServer.java -share/examples/postgresql/corba/readme -share/examples/postgresql/corba/stock.idl -share/examples/postgresql/corba/stock.sql -@dirrm share/examples/postgresql/corba -share/examples/postgresql/ImageViewer.java -share/examples/postgresql/Unicode.java -share/examples/postgresql/basic.java -share/examples/postgresql/blobtest.java -share/examples/postgresql/datestyle.java -share/examples/postgresql/metadata.java -share/examples/postgresql/psql.java -share/examples/postgresql/threadsafe.java -share/examples/postgresql/README -share/examples/postgresql/Implementation -@dirrm share/examples/postgresql -share/postgresql/java/postgresql-examples.jar -share/postgresql/java/postgresql.jar -share/postgresql/java/retepTools.jar -@dirrm share/postgresql/java -share/java/classes/postgresql.jar -@unexec rmdir %D/share/java/classes 2>/dev/null || true -@unexec rmdir %D/share/java 2>/dev/null || true diff --git a/databases/postgresql91-server/pkg-plist.notk b/databases/postgresql91-server/pkg-plist.notk deleted file mode 100644 index 8dcbc5f88bd6..000000000000 --- a/databases/postgresql91-server/pkg-plist.notk +++ /dev/null @@ -1,6 +0,0 @@ -%%PG_PREFIX%%bin/pgtclsh -%%PG_INCLUDE%%/libpgtcl.h -%%PG_PREFIX%%lib/libpgtcl.a -%%PG_PREFIX%%lib/libpgtcl.so -%%PG_PREFIX%%lib/libpgtcl.so.2 -%%PG_PREFIX%%lib/pltcl.so diff --git a/databases/postgresql91-server/pkg-plist.odbc b/databases/postgresql91-server/pkg-plist.odbc deleted file mode 100644 index f047b7cb64a1..000000000000 --- a/databases/postgresql91-server/pkg-plist.odbc +++ /dev/null @@ -1,10 +0,0 @@ -%%PG_INCLUDE%%/iodbc/iodbc.h -%%PG_INCLUDE%%/iodbc/isql.h -%%PG_INCLUDE%%/iodbc/isqlext.h -@dirrm %%PG_INCLUDE%%/iodbc -%%PG_PREFIX%%lib/libpsqlodbc.a -%%PG_PREFIX%%lib/libpsqlodbc.so -%%PG_PREFIX%%lib/libpsqlodbc.so.0 -etc/postgresql/odbcinst.ini -@dirrm etc/postgresql -share/postgresql/odbc.sql diff --git a/databases/postgresql91-server/pkg-plist.tcl b/databases/postgresql91-server/pkg-plist.tcl deleted file mode 100644 index da5f4367cb80..000000000000 --- a/databases/postgresql91-server/pkg-plist.tcl +++ /dev/null @@ -1,148 +0,0 @@ -%%PG_PREFIX%%bin/pgaccess -%%PG_PREFIX%%bin/pgtclsh -%%PG_PREFIX%%bin/pgtksh -%%PG_INCLUDE%%/libpgtcl.h -%%PG_PREFIX%%lib/libpgtcl.a -%%PG_PREFIX%%lib/libpgtcl.so -%%PG_PREFIX%%lib/libpgtcl.so.2 -%%PG_PREFIX%%lib/pltcl.so -lib/tcl%%WITH_TCL%%/Pgtcl1.3/pkgIndex.tcl -share/postgresql/pgaccess/images/icon_button.gif -share/postgresql/pgaccess/images/icon_checkbutton.gif -share/postgresql/pgaccess/images/icon_entry.gif -share/postgresql/pgaccess/images/icon_frame.gif -share/postgresql/pgaccess/images/icon_label.gif -share/postgresql/pgaccess/images/icon_listbox.gif -share/postgresql/pgaccess/images/icon_query.gif -share/postgresql/pgaccess/images/icon_radiobutton.gif -share/postgresql/pgaccess/images/icon_text.gif -share/postgresql/pgaccess/lib/database.tcl -share/postgresql/pgaccess/lib/forms.tcl -share/postgresql/pgaccess/lib/functions.tcl -share/postgresql/pgaccess/lib/help/abort.hlp -share/postgresql/pgaccess/lib/help/add_records.hlp -share/postgresql/pgaccess/lib/help/alter_table.hlp -share/postgresql/pgaccess/lib/help/alter_user.hlp -share/postgresql/pgaccess/lib/help/author.hlp -share/postgresql/pgaccess/lib/help/begin.hlp -share/postgresql/pgaccess/lib/help/close.hlp -share/postgresql/pgaccess/lib/help/cluster.hlp -share/postgresql/pgaccess/lib/help/commit.hlp -share/postgresql/pgaccess/lib/help/copy.hlp -share/postgresql/pgaccess/lib/help/copyrights.hlp -share/postgresql/pgaccess/lib/help/create_aggregate.hlp -share/postgresql/pgaccess/lib/help/create_database.hlp -share/postgresql/pgaccess/lib/help/create_function.hlp -share/postgresql/pgaccess/lib/help/create_index.hlp -share/postgresql/pgaccess/lib/help/create_language.hlp -share/postgresql/pgaccess/lib/help/create_operator.hlp -share/postgresql/pgaccess/lib/help/create_rule.hlp -share/postgresql/pgaccess/lib/help/create_sequence.hlp -share/postgresql/pgaccess/lib/help/create_table.hlp -share/postgresql/pgaccess/lib/help/create_table_as.hlp -share/postgresql/pgaccess/lib/help/create_trigger.hlp -share/postgresql/pgaccess/lib/help/create_type.hlp -share/postgresql/pgaccess/lib/help/create_user.hlp -share/postgresql/pgaccess/lib/help/create_view.hlp -share/postgresql/pgaccess/lib/help/data_types.hlp -share/postgresql/pgaccess/lib/help/datefunc.hlp -share/postgresql/pgaccess/lib/help/declare.hlp -share/postgresql/pgaccess/lib/help/delete.hlp -share/postgresql/pgaccess/lib/help/drop_aggregate.hlp -share/postgresql/pgaccess/lib/help/drop_database.hlp -share/postgresql/pgaccess/lib/help/drop_function.hlp -share/postgresql/pgaccess/lib/help/drop_index.hlp -share/postgresql/pgaccess/lib/help/drop_language.hlp -share/postgresql/pgaccess/lib/help/drop_operator.hlp -share/postgresql/pgaccess/lib/help/drop_rule.hlp -share/postgresql/pgaccess/lib/help/drop_sequence.hlp -share/postgresql/pgaccess/lib/help/drop_table.hlp -share/postgresql/pgaccess/lib/help/drop_trigger.hlp -share/postgresql/pgaccess/lib/help/drop_type.hlp -share/postgresql/pgaccess/lib/help/drop_user.hlp -share/postgresql/pgaccess/lib/help/drop_view.hlp -share/postgresql/pgaccess/lib/help/explain.hlp -share/postgresql/pgaccess/lib/help/fetch.hlp -share/postgresql/pgaccess/lib/help/form_design.hlp -share/postgresql/pgaccess/lib/help/forms.hlp -share/postgresql/pgaccess/lib/help/functions.hlp -share/postgresql/pgaccess/lib/help/geomfunc.hlp -share/postgresql/pgaccess/lib/help/grant.hlp -share/postgresql/pgaccess/lib/help/history.hlp -share/postgresql/pgaccess/lib/help/index.hlp -share/postgresql/pgaccess/lib/help/inheritance.hlp -share/postgresql/pgaccess/lib/help/insert.hlp -share/postgresql/pgaccess/lib/help/ipv4func.hlp -share/postgresql/pgaccess/lib/help/isolation.hlp -share/postgresql/pgaccess/lib/help/keywords.hlp -share/postgresql/pgaccess/lib/help/listen.hlp -share/postgresql/pgaccess/lib/help/load.hlp -share/postgresql/pgaccess/lib/help/lock.hlp -share/postgresql/pgaccess/lib/help/mathfunc.hlp -share/postgresql/pgaccess/lib/help/move.hlp -share/postgresql/pgaccess/lib/help/mvcc.hlp -share/postgresql/pgaccess/lib/help/new_query.hlp -share/postgresql/pgaccess/lib/help/new_table.hlp -share/postgresql/pgaccess/lib/help/notify.hlp -share/postgresql/pgaccess/lib/help/open_query.hlp -share/postgresql/pgaccess/lib/help/open_table.hlp -share/postgresql/pgaccess/lib/help/pgfunctions.hlp -share/postgresql/pgaccess/lib/help/postgresql.hlp -share/postgresql/pgaccess/lib/help/queries.hlp -share/postgresql/pgaccess/lib/help/reports.hlp -share/postgresql/pgaccess/lib/help/reset.hlp -share/postgresql/pgaccess/lib/help/revoke.hlp -share/postgresql/pgaccess/lib/help/rollback.hlp -share/postgresql/pgaccess/lib/help/schema.hlp -share/postgresql/pgaccess/lib/help/scripts.hlp -share/postgresql/pgaccess/lib/help/select.hlp -share/postgresql/pgaccess/lib/help/select_into.hlp -share/postgresql/pgaccess/lib/help/sequences.hlp -share/postgresql/pgaccess/lib/help/set.hlp -share/postgresql/pgaccess/lib/help/show.hlp -share/postgresql/pgaccess/lib/help/sql_guide.hlp -share/postgresql/pgaccess/lib/help/sqlfunc.hlp -share/postgresql/pgaccess/lib/help/stringfunc.hlp -share/postgresql/pgaccess/lib/help/tables.hlp -share/postgresql/pgaccess/lib/help/unlisten.hlp -share/postgresql/pgaccess/lib/help/update.hlp -share/postgresql/pgaccess/lib/help/users.hlp -share/postgresql/pgaccess/lib/help/vacuum.hlp -share/postgresql/pgaccess/lib/help/view_table_structure.hlp -share/postgresql/pgaccess/lib/help/views.hlp -share/postgresql/pgaccess/lib/help/visual_designer.hlp -share/postgresql/pgaccess/lib/help/y2k.hlp -share/postgresql/pgaccess/lib/help.tcl -share/postgresql/pgaccess/lib/languages/czech -share/postgresql/pgaccess/lib/languages/chinese_big5 -share/postgresql/pgaccess/lib/languages/chinese_gb -share/postgresql/pgaccess/lib/languages/deutsch -share/postgresql/pgaccess/lib/languages/euskara -share/postgresql/pgaccess/lib/languages/francais -share/postgresql/pgaccess/lib/languages/italiano -share/postgresql/pgaccess/lib/languages/japanese -share/postgresql/pgaccess/lib/languages/magyar -share/postgresql/pgaccess/lib/languages/nederlands -share/postgresql/pgaccess/lib/languages/portugues -share/postgresql/pgaccess/lib/languages/romana -share/postgresql/pgaccess/lib/languages/russian.koi8r -share/postgresql/pgaccess/lib/languages/russian_win -share/postgresql/pgaccess/lib/languages/spanish -share/postgresql/pgaccess/lib/mainlib.tcl -share/postgresql/pgaccess/lib/preferences.tcl -share/postgresql/pgaccess/lib/queries.tcl -share/postgresql/pgaccess/lib/reports.tcl -share/postgresql/pgaccess/lib/schema.tcl -share/postgresql/pgaccess/lib/scripts.tcl -share/postgresql/pgaccess/lib/sequences.tcl -share/postgresql/pgaccess/lib/tables.tcl -share/postgresql/pgaccess/lib/users.tcl -share/postgresql/pgaccess/lib/views.tcl -share/postgresql/pgaccess/lib/visualqb.tcl -share/postgresql/pgaccess/main.tcl -@dirrm share/postgresql/pgaccess/images -@dirrm share/postgresql/pgaccess/lib/help -@dirrm share/postgresql/pgaccess/lib/languages -@dirrm share/postgresql/pgaccess/lib -@dirrm share/postgresql/pgaccess -@dirrm lib/tcl%%WITH_TCL%%/Pgtcl1.3 diff --git a/databases/postgresql91-server/scripts/configure.postgresql b/databases/postgresql91-server/scripts/configure.postgresql deleted file mode 100644 index 0b288ad43d25..000000000000 --- a/databases/postgresql91-server/scripts/configure.postgresql +++ /dev/null @@ -1,278 +0,0 @@ -#!/bin/sh -# -*- tab-width: 4; -*- -# ex:ts=4 -# -# $FreeBSD$ -# -if [ -f ${WRKDIRPREFIX}${CURDIR}/Makefile.inc ]; then - exit -fi - -if [ ! "${BATCH}" ]; then - dialog --title "Backup your data NOW" \ - --msgbox "`sed -e \"s#%%PREFIX%%#${PREFIX}#\" < ${FILESDIR}/pre-install-notes`" \ - -1 -1 -fi - -if [ "${BATCH}" ]; then - set \"MultiByte\" \"ODBC\" \"SSL\" \"TCL\" \"TCLTK\" -else - /usr/bin/dialog --title "configuration options" --clear \ - --checklist "\n\ -Please select desired options:" -1 -1 7 \ -JDBC "Java DataBase Connectivity" OFF \ -MultiByte "Multibyte for Multilingualism" ON \ -ODBC "Open Database Connectivity" ON \ -TCL "Tcl" ON \ -TCLTK "Tcl/Tk" ON \ -SSL "Secure Socket Layer" ON \ -KRB5 "Kerberos 5" OFF \ -2> /tmp/checklist.tmp.$$ - - retval=$? - - if [ -s /tmp/checklist.tmp.$$ ]; then - set `cat /tmp/checklist.tmp.$$` - fi - rm -f /tmp/checklist.tmp.$$ - - case $retval in - 0) if [ -z "$*" ]; then - echo "Nothing selected" - fi - ;; - 1) echo "Cancel pressed." - exit 1 - ;; - esac -fi - -${MKDIR} ${WRKDIRPREFIX}${CURDIR} -exec > ${WRKDIRPREFIX}${CURDIR}/Makefile.inc - -while [ "$1" ]; do - case $1 in - \"JDBC\") - # We use JAVA_HOME if set correctly. If the user has - # specified a JVM with JAVA_HOME or via the javavmwrapper, - # we validate that it really exists. It is unnecessarily - # complicated and error prone to try to figure out the - # correct java version just to be able to determine a - # BUILD_DEPEND in this case. Instead, assume that a set - # JAVA_HOME together with simple sanity check mean we have - # an installed JVM, and we don't bother setting - # BUILD_DEPENDS. - - echo "# JDBC" - # if JAVA_HOME is set and exists, use it - if [ "${JAVA_HOME}" -a -x "${JAVA_HOME}/bin/javac" ]; then - echo JAVA_HOME=${JAVA_HOME} - else - # No JAVA_HOME, check javavmwrapper's config file - if [ -r "${LOCALBASE}/etc/javavms" ]; then - VMS=`/usr/bin/sed 's|#.*||' < "${LOCALBASE}/etc/javavms" | uniq` - for JAVAVM in ${VMS}; do - if [ -x "${JAVAVM}" ]; then - JAVA_HOME=`echo ${JAVAVM} | /usr/bin/sed 's|/bin/java$||` - break - fi - done - fi - if [ "${JAVA_HOME}" -a -x "${JAVA_HOME}/bin/javac" ]; then - # yep, wrapper was good - echo JAVA_HOME=${JAVA_HOME} - else - # nothing, use our boring 1.1.8, the only native non-beta jdk :( - echo BUILD_DEPENDS+= \${LOCALBASE}/jdk1.1.8/bin/javac:\${PORTSDIR}/java/jdk - echo JAVA_HOME=\${LOCALBASE}/jdk1.1.8 - fi - fi - cat <<-EOF - BUILD_DEPENDS+= \${LOCALBASE}/bin/ant:\${PORTSDIR}/devel/jakarta-ant - CONFIGURE_ENV+= ANT=\${LOCALBASE}/bin/ant - WITH_JDBC=YES - MAKE_ENV+= JAVA_HOME=\${JAVA_HOME} - SCRIPTS_ENV+= JAVA_HOME=\${JAVA_HOME} - CONFIGURE_ARGS+= --with-java - - EOF - ;; - \"MultiByte\") - MULTIBYTE=1 - ;; - \"ODBC\") - cat <<-EOF - # ODBC - WITH_ODBC=YES - CONFIGURE_ARGS+= --with-odbc - - EOF - ;; - \"TCL\") - TCL=1 - ;; - \"TCLTK\") - echo "#TCLTK" - echo WITH_TK=YES - echo - TCL=1 - ;; - \"SSL\") - cat <<-EOF - # SSL - USE_OPENSSL= yes - CFLAGS+= -DUSE_SSL - WITH_SSL= yes - CONFIGURE_ENV+= LDFLAGS="-L\${OPENSSLLIB} -lssl -lcrypto" - CONFIGURE_ARGS+= --with-openssl - - EOF - ;; - \"KRB5\") - KRB5=1 - ;; - \"nothing\"|true) - ;; - *) - echo "Invalid option(s): $*" > /dev/stderr - rm -f ${WRKDIRPREFIX}${CURDIR}/Makefile.inc - exit 1 - ;; - esac - shift -done - -exec > /dev/stderr - -# if multibyte, determine charset -echo "# Multibyte" >> ${WRKDIRPREFIX}${CURDIR}/Makefile.inc - -if [ ! "${MULTIBYTE}" ]; then - echo "WITHOUT_MULTIBYTE=YES" >> ${WRKDIRPREFIX}${CURDIR}/Makefile.inc -else - if [ "${BATCH}" ]; then - set "nothing" - else - /usr/bin/dialog --title "configuration options" --clear \ - --radiolist "\n\ -Please select desired options:" -1 -1 16 \ -nothing "Default Encoding" ON \ -SQL_ASCII "SQL_ASCII" OFF \ -LATIN1 "LATIN1" OFF \ -LATIN2 "LATIN2" OFF \ -LATIN3 "LATIN3" OFF \ -LATIN4 "LATIN4" OFF \ -LATIN5 "LATIN5" OFF \ -EUC_JP "EUC_JP" OFF \ -EUC_CN "EUC_CN" OFF \ -EUC_KR "EUC_KR" OFF \ -EUC_TW "EUC_TW" OFF \ -KOI8 "KOI8" OFF \ -UNICODE "UNICODE" OFF \ -MULE_INTERNAL "MULE_INTERNAL" OFF \ -WIN "WIN" OFF \ -ALT "ALT" OFF \ -2> /tmp/checklist.tmp.$$ - - retval=$? - - if [ -s /tmp/checklist.tmp.$$ ]; then - set `cat /tmp/checklist.tmp.$$` - fi - rm -f /tmp/checklist.tmp.$$ - if [ $retval = 1 ]; then - echo "Cancel pressed." - rm ${WRKDIRPREFIX}${CURDIR}/Makefile.inc - exit 1 - fi - fi - - if [ "$1" = "nothing" ]; then - echo "CONFIGURE_ARGS+= --enable-multibyte" \ - >> ${WRKDIRPREFIX}${CURDIR}/Makefile.inc - else - echo "CONFIGURE_ARGS+= --enable-multibyte=$1" \ - >> ${WRKDIRPREFIX}${CURDIR}/Makefile.inc - fi -fi -echo - -if [ "${TCL}" ]; then - echo "# TCL" >> ${WRKDIRPREFIX}${CURDIR}/Makefile.inc - if [ "${BATCH}" ]; then - echo WITH_TCL=8.3 >> ${WRKDIRPREFIX}${CURDIR}/Makefile.inc - else - dialog --title "TCL version" \ - --inputbox "Please enter TCL version. Default is 8.3." -1 -1 "8.3" \ - 2> /tmp/checklist.tmp.$$ - retval=$? - if [ -s /tmp/checklist.tmp.$$ ]; then - set `cat /tmp/checklist.tmp.$$` - fi - rm -f /tmp/checklist.tmp.$$ - case $retval in - 0) if [ -z "$*" ]; then - echo "Nothing selected" - fi - ;; - 1) echo "Cancel pressed." - rm -f ${WRKDIRPREFIX}${CURDIR}/Makefile.inc - exit 1 - ;; - esac - echo WITH_TCL=$1 >> ${WRKDIRPREFIX}${CURDIR}/Makefile.inc - fi - cat <<-EOF >> ${WRKDIRPREFIX}${CURDIR}/Makefile.inc - CONFIGURE_ARGS+= --with-tcl --with-tclconfig="\${TCLCONFIG}" - TCLV=\${WITH_TCL:S/.//} - TCL_INCDIR= \${LOCALBASE}/include/tcl\${WITH_TCL} - MAKE_ENV+= TCL_INCDIR=\${TCL_INCDIR} - LIB_DEPENDS+= tcl\${TCLV}:\${PORTSDIR}/lang/tcl\${TCLV} - TCLCONFIG= "\${LOCALBASE}/lib/tcl\${WITH_TCL}" - .if defined(WITH_TK) - CONFIGURE_ARGS+= --with-tkconfig="\${TKCONFIG}" - TK_INCDIR= \${LOCALBASE}/include/tk\${WITH_TCL} - CONFIGURE_ENV+= WISH=\${LOCALBASE}/bin/wish\${WITH_TCL} - LIB_DEPENDS+= tk\${TCLV}:\${PORTSDIR}/x11-toolkits/tk\${TCLV} - TKCONFIG= "\${LOCALBASE}/lib/tk\${WITH_TCL}" - TCLCONFIG+= \${TKCONFIG} - TCL_PLIST= pkg-plist.tcl - .else - TCL_PLIST= pkg-plist.notk - CONFIGURE_ARGS+= --without-tk - .endif - - EOF -fi - -if [ "${KRB5}" ]; then - if [ "${BATCH}" ]; then - # never gets here, but what the heck... - echo KRB5_HOME=\${LOCALBASE} >> ${WRKDIRPREFIX}${CURDIR}/Makefile.inc - else - dialog --inputbox "Please enter the KRB5_HOME path" -1 -1 "${KRB_HOME:-${LOCALBASE}}" \ - 2> /tmp/checklist.tmp.$$ - retval=$? - if [ -s /tmp/checklist.tmp.$$ ]; then - set `cat /tmp/checklist.tmp.$$` - fi - rm -f /tmp/checklist.tmp.$$ - case $retval in - 0) if [ -z "$*" ]; then - echo "No input" - fi - ;; - 1) echo "Cancel pressed." - rm -f ${WRKDIRPREFIX}${CURDIR}/Makefile.inc - exit 1 - ;; - esac - echo KRB5_HOME=\"$1\" >> ${WRKDIRPREFIX}${CURDIR}/Makefile.inc - fi - cat <<-EOF >> ${WRKDIRPREFIX}${CURDIR}/Makefile.inc - .if defined(KRB5_HOME) && exists(\${KRB5_HOME}) - CONFIGURE_KRB= --with-krb5=\${KRB5_HOME} - .endif - - EOF -fi diff --git a/databases/postgresql92-server/Makefile b/databases/postgresql92-server/Makefile deleted file mode 100644 index 4a30008d77bc..000000000000 --- a/databases/postgresql92-server/Makefile +++ /dev/null @@ -1,198 +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.1.3 -CATEGORIES= databases -MASTER_SITES= ftp://ftp.sunet.se/pub/unix/databases/relational/postgresql/%SUBDIR%/ \ - ftp://ftp.postgresql.org/pub/%SUBDIR%/ \ - ftp://ftp.de.postgresql.org/%SUBDIR%/ \ - ftp://ftp.digex.net/pub/packages/database/postgresql/%SUBDIR%/ \ - ftp://ftp.chg.ru/pub/databases/postgresql/%SUBDIR%/ \ - ${MASTER_SITE_RINGSERVER:S,%SUBDIR%,misc/db/postgresql/&,} -MASTER_SITE_SUBDIR= source/v${PORTVERSION} -DISTFILES= ${PORTNAME}-base-${PORTVERSION}${EXTRACT_SUFX} \ - ${PORTNAME}-opt-${PORTVERSION}${EXTRACT_SUFX} -.if !defined(NOPORTDOCS) -DISTFILES+= ${PORTNAME}-docs-${PORTVERSION}${EXTRACT_SUFX} -.endif - -MAINTAINER= girgen@partitur.se - -DIST_SUBDIR= postgresql - -INSTALLS_SHLIB= YES - -DOCDIR= ${WRKDIR}/${DISTNAME}/doc -PLIST= ${WRKDIR}/.PLIST.generated - -USE_GMAKE= YES -HAS_CONFIGURE= YES -CONFIGURE_ARGS= --enable-locale \ - --enable-syslog --with-CXX \ - --sysconfdir=${PREFIX}/etc/postgresql \ - --with-includes="${PREFIX}/include ${TCL_INCDIR} ${TK_INCDIR}" \ - --with-libraries=${PREFIX}/lib -.if defined(WITH_OLD_LAYOUT) -CONFIGURE_ARGS+=--docdir=${PREFIX}/share/doc --includedir=${PREFIX}/pgsql/include \ - --datadir=${PREFIX}/share \ - --with-template=`uname -s | ${TR} '[A-Z]' '[a-z]'` \ - --prefix=${PREFIX}/pgsql -PG_PREFIX= pgsql/ -PG_INCLUDE= pgsql/include -LDCONFIG_DIRS= %%PREFIX%%/pgsql/lib -MANPREFIX= ${PREFIX}/pgsql -.else -GNU_CONFIGURE= YES -CONFIGURE_ARGS+=--docdir=${PREFIX}/share/doc --includedir=${PREFIX}/include/pgsql -PG_PREFIX="" -PG_INCLUDE= include/pgsql -.endif - -PLIST_SUB= PG_PREFIX="${PG_PREFIX}" PG_INCLUDE="${PG_INCLUDE}" WITH_TCL="${WITH_TCL}" - -MAN1= createdb.1 createlang.1 createuser.1 dropdb.1 droplang.1 \ - dropuser.1 ecpg.1 initdb.1 initlocation.1 ipcclean.1 pg_config.1 \ - pg_ctl.1 pg_dump.1 pg_dumpall.1 pg_passwd.1 pg_restore.1 \ - pgaccess.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 checkpoint.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 set_constraints.l set_transaction.l show.l \ - truncate.l unlisten.l update.l vacuum.l - -SCRIPTS_ENV= WRKDIRPREFIX="${WRKDIRPREFIX}" \ - WRKDIR="${WRKDIR}" \ - FILESDIR="${FILESDIR}" \ - TOUCH="${TOUCH}" \ - MKDIR="${MKDIR}" \ - NO_OPENSSL="${NO_OPENSSL}" \ - DISTNAME="${DISTNAME}" - -# We must .include here because we need the Makefile.inc @ pre-install -# to determine the correct plist. -.if exists(${WRKDIRPREFIX}${.CURDIR}/Makefile.inc) -.include "${WRKDIRPREFIX}${.CURDIR}/Makefile.inc" -.else -# make utility targets like depends and describe happy -LIB_DEPENDS= tcl83:${PORTSDIR}/lang/tcl83 \ - tk83:${PORTSDIR}/x11-toolkits/tk83 -.endif - -pre-everything:: - @ ${SETENV} ${SCRIPTS_ENV} ${SH} ${SCRIPTDIR}/configure.postgresql - -pre-install: - @ ${SETENV} PKG_PREFIX=${PREFIX} ${SH} ${PKGDIR}/pkg-install ${PORTNAME} PRE-INSTALL -.if !defined(BATCH) -# remind folks twice for a while, so they really don't miss the layout shift - @ ${SED} "s|/usr/local|${PREFIX}|g" < ${PKGMESSAGE} | head -n 25 | more -e -.endif - @ ${CP} ${PKGDIR}/pkg-plist ${PLIST} -.if defined(WITHOUT_MULTIBYTE) - @${CP} ${PLIST} ${PLIST}.nomulti ;\ - ${GREP} -v bin/pg_encoding ${PLIST}.nomulti > ${PLIST} -.endif -.if defined(WITH_TCL) - @ ${CP} ${PLIST} ${PLIST}.notcl ;\ - ${CAT} ${PKGDIR}/${TCL_PLIST} ${PLIST}.notcl > ${PLIST} ;\ - ${RM} ${PLIST}.notcl -.endif -.if defined(WITH_ODBC) - @ ${CP} ${PLIST} ${PLIST}.noodbc ;\ - ${CAT} ${PKGDIR}/pkg-plist.odbc ${PLIST}.noodbc > ${PLIST} ;\ - ${RM} ${PLIST}.noodbc -.endif -.if defined(WITH_JDBC) - @ ${CP} ${PLIST} ${PLIST}.nojdbc ;\ - ${CAT} ${PKGDIR}/pkg-plist.jdbc ${PLIST}.nojdbc > ${PLIST} ;\ - ${RM} ${PLIST}.nojdbc -.endif -.if !defined(NOPORTDOCS) - @ ${CAT} ${PKGDIR}/pkg-plist.doc >> ${PLIST} -.endif - -post-install: -# install shell defaults for pgsql user -.for i in profile cshrc - @ ${SED} "s|%%PREFIX%%|${PREFIX}|g; s|%%PG_PREFIX%%|${PG_PREFIX}|g" \ - < ${FILESDIR}/dot.$i.in \ - > ${PREFIX}/share/postgresql/dot.$i.dist; \ - ${CP} ${PREFIX}/share/postgresql/dot.$i.dist ~pgsql/; \ - if [ ! -f ~pgsql/.$i ]; then \ - ${CP} ${PREFIX}/share/postgresql/dot.$i.dist ~pgsql/.$i; \ - fi -.endfor - @ ${SED} -e "s|%%PREFIX%%|${PREFIX}|g; s|%%PG_PREFIX%%|${PG_PREFIX}|g" \ - < ${FILESDIR}/pgsql.sh.tmpl \ - > ${PREFIX}/etc/rc.d/010.pgsql.sh - @ ${CHMOD} 554 ${PREFIX}/etc/rc.d/010.pgsql.sh - @ ${CHOWN} root:pgsql ${PREFIX}/etc/rc.d/010.pgsql.sh -.if defined(WITH_TCL) -# Preparing a loadable TCL-package (pkgIndex.tcl) - @${MKDIR} ${PREFIX}/lib/tcl${WITH_TCL}/Pgtcl1.3 - @${SED} "s|%%PREFIX%%|${PREFIX}|g" < ${FILESDIR}/pkgIndex.tcl.in \ - > ${PREFIX}/lib/tcl${WITH_TCL}/Pgtcl1.3/pkgIndex.tcl -.endif -.if defined(WITH_JDBC) - @ ${MKDIR} -m 0555 ${PREFIX}/share/java/classes - @ ${INSTALL_DATA} ${WRKSRC}/src/interfaces/jdbc/jars/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} "---------------------------------------------------------" -.if !defined(NOPORTDOCS) - @ ${MKDIR} -m 0555 ${PREFIX}/share/examples/postgresql ;\ - cd ${WRKSRC}/src/interfaces/jdbc/example ;\ - pax -rw . ${PREFIX}/share/examples/postgresql -.for i in README Implementation - @ ${INSTALL_DATA} ${WRKSRC}/src/interfaces/jdbc/$i \ - ${PREFIX}/share/examples/postgresql -.endfor - @ ${ECHO_MSG} "---------------------------------------------------------------" - @ ${ECHO_MSG} "Putting java examples into ${PREFIX}/share/examples/postgresql" - @ ${ECHO_MSG} "---------------------------------------------------------------" -.endif -.endif -.if !defined(DEBUG_FLAGS) -.for file in ecpg pg_dump pg_id pg_passwd pg_restore postgres psql - @ strip ${PREFIX}/${PG_PREFIX}bin/${file} -.endfor -.endif -# information overload mode activated, sorry about this... ;-) - @ ${CAT} ${FILESDIR}/post-install-notes ${PKGMESSAGE} |\ - ${SED} "s|/usr/local|${PREFIX}|g" |\ - tee ${PREFIX}/share/postgresql/post-install-notes ;\ - ${INSTALL_DATA} ${PREFIX}/share/postgresql/post-install-notes ~pgsql/. ;\ - ${CHOWN} -R pgsql:pgsql ~pgsql/. -.if defined(WITH_OLD_LAYOUT) - @ ${CHOWN} root:pgsql ${PREFIX}/${PG_PREFIX}lib -.endif - -post-clean: - @ ${RM} -f ${WRKDIRPREFIX}${.CURDIR}/Makefile.inc - -post-extract: ${POSTEXTRACT} - -.include <bsd.port.mk> diff --git a/databases/postgresql92-server/distinfo b/databases/postgresql92-server/distinfo deleted file mode 100644 index 23e07754313f..000000000000 --- a/databases/postgresql92-server/distinfo +++ /dev/null @@ -1,3 +0,0 @@ -MD5 (postgresql/postgresql-base-7.1.3.tar.gz) = f932dea12806972402aaaf17a2a97034 -MD5 (postgresql/postgresql-opt-7.1.3.tar.gz) = e84e9c51b31567d4571c7612e0c0fbd6 -MD5 (postgresql/postgresql-docs-7.1.3.tar.gz) = 7061ab7f7ec3c4d18f8e6cb2858896d0 diff --git a/databases/postgresql92-server/files/dot.cshrc.in b/databases/postgresql92-server/files/dot.cshrc.in deleted file mode 100644 index a326041bff7b..000000000000 --- a/databases/postgresql92-server/files/dot.cshrc.in +++ /dev/null @@ -1,13 +0,0 @@ -set path = ( %%PREFIX%%/%%PG_PREFIX%%bin $path ) - -setenv PGLIB %%PREFIX%%/%%PG_PREFIX%%lib - -# note: PGDATA can be overridden by the -D startup option -setenv PGDATA $HOME/data - -#You might want to set some locale stuff here -#setenv PGDATESTYLE ISO -#setenv LC_ALL sv_SE.ISO_8859-1 - -# if you want to make regression tests use this TZ -#setenv TZ PST8PDT diff --git a/databases/postgresql92-server/files/dot.profile.in b/databases/postgresql92-server/files/dot.profile.in deleted file mode 100644 index 4aca6aadd19a..000000000000 --- a/databases/postgresql92-server/files/dot.profile.in +++ /dev/null @@ -1,18 +0,0 @@ -# both new and old layout's paths, but new path first... -PATH=%%PREFIX%%/%%PG_PREFIX%%bin:${PATH} - -PGLIB=%%PREFIX%%/%%PG_PREFIX%%lib - -# note: PGDATA can be overridden by the -D startup option -PGDATA=${HOME}/data - -export PATH PGLIB PGDATA - -#You might want to set some locale stuff here -#PGDATESTYLE=ISO -#LC_ALL=sv_SE.ISO_8859-1 -#export PGDATESTYLE LC_ALL - -# if you want to make regression tests use this TZ -#TZ=PST8PDT -#export TZ diff --git a/databases/postgresql92-server/files/patch-aj b/databases/postgresql92-server/files/patch-aj deleted file mode 100644 index 94c0d6d79991..000000000000 --- a/databases/postgresql92-server/files/patch-aj +++ /dev/null @@ -1,118 +0,0 @@ ---- src/bin/pg_passwd/pg_passwd.c.orig Sat Mar 24 01:54:55 2001 -+++ src/bin/pg_passwd/pg_passwd.c Wed Apr 18 04:54:14 2001 -@@ -7,6 +7,12 @@ - #include <errno.h> - #include <time.h> - #include <ctype.h> -+ -+#if defined(__FreeBSD__) -+#include <pwd.h> /* defines _PASSWORD_LEN, max # of characters in a password */ -+#include <sys/time.h> /* gettimeofday for password salt */ -+#endif -+ - #define issaltchar(c) (isalnum((unsigned char) (c)) || (c) == '.' || (c) == '/') - - #ifdef HAVE_TERMIOS_H -@@ -23,18 +29,31 @@ - * We assume that the output of crypt(3) is always 13 characters, - * and that at most 8 characters can usefully be sent to it. - * -+ * For FreeBSD, take these values from /usr/include/pwd.h - * Postgres usernames are assumed to be less than NAMEDATALEN chars long. - */ -+#if defined(__FreeBSD__) -+#define CLEAR_PASSWD_LEN _PASSWORD_LEN -+#define CRYPTED_PASSWD_LEN _PASSWORD_LEN /* max length, not containing NULL */ -+#define SALT_LEN 10 -+#else - #define CLEAR_PASSWD_LEN 8 /* not including null */ - #define CRYPTED_PASSWD_LEN 13 /* not including null */ -+#define SALT_LEN 3 -+#endif -+ -+static unsigned char itoa64[] = /* 0 ... 63 => ascii - 64 */ -+ "./0123456789ABCDEFGHIJKLMNOPQRSTUVWXYZabcdefghijklmnopqrstuvwxyz"; -+ - - const char *progname; - - static void usage(void); -+static void to64(char *s, long v, int n); - static void read_pwd_file(char *filename); - static void write_pwd_file(char *filename, char *bkname); - static void encrypt_pwd(char key[CLEAR_PASSWD_LEN + 1], -- char salt[3], -+ char salt[SALT_LEN], - char passwd[CRYPTED_PASSWD_LEN + 1]); - static void prompt_for_username(char *username); - static void prompt_for_password(char *prompt, char *password); -@@ -47,6 +66,15 @@ - printf("Report bugs to <pgsql-bugs@postgresql.org>.\n"); - } - -+static void -+to64(char *s, long v, int n) -+{ -+ while (--n >= 0) { -+ *s++ = itoa64[v&0x3f]; -+ v >>= 6; -+ } -+} -+ - typedef struct - { - char *uname; -@@ -154,7 +182,7 @@ - if (q != NULL) - *(q++) = '\0'; - -- if (strlen(p) != CRYPTED_PASSWD_LEN && strcmp(p, "+") != 0) -+ if (strlen(p) > CRYPTED_PASSWD_LEN && strcmp(p, "+") != 0) - { - fprintf(stderr, "%s:%d: warning: invalid password length\n", - filename, npwds + 1); -@@ -221,15 +249,25 @@ - - static void - encrypt_pwd(char key[CLEAR_PASSWD_LEN + 1], -- char salt[3], -+ char salt[SALT_LEN], - char passwd[CRYPTED_PASSWD_LEN + 1]) - { -+#if !defined(__FreeBSD__) - int n; -- -+#endif - /* select a salt, if not already given */ - if (salt[0] == '\0') - { -+#if defined(__FreeBSD__) -+ struct timeval tv; -+ srandomdev(); -+ gettimeofday(&tv,0); -+ to64(&salt[0], random(), 3); -+ to64(&salt[3], tv.tv_usec, 3); -+ to64(&salt[6], tv.tv_sec, 2); -+ salt[8] = '\0'; - srand(time(NULL)); -+#else - do - { - n = rand() % 256; -@@ -241,6 +279,7 @@ - } while (!issaltchar(n)); - salt[1] = n; - salt[2] = '\0'; -+#endif - } - - /* get encrypted password */ -@@ -335,7 +374,7 @@ - char *filename; - char bkname[MAXPGPATH]; - char username[NAMEDATALEN]; -- char salt[3]; -+ char salt[SALT_LEN]; - char key[CLEAR_PASSWD_LEN + 1], - key2[CLEAR_PASSWD_LEN + 1]; - char e_passwd[CRYPTED_PASSWD_LEN + 1]; diff --git a/databases/postgresql92-server/files/patch-contrib-retep-build b/databases/postgresql92-server/files/patch-contrib-retep-build deleted file mode 100644 index 80f40f1cc86d..000000000000 --- a/databases/postgresql92-server/files/patch-contrib-retep-build +++ /dev/null @@ -1,37 +0,0 @@ -=================================================================== -RCS file: /home/projects/pgsql/cvsroot/pgsql/contrib/retep/build.xml,v -retrieving revision 1.4 -retrieving revision 1.5 -diff -u -r1.4 -r1.5 ---- contrib/retep/build.xml 2001/03/11 11:06:59 1.4 -+++ contrib/retep/build.xml 2001/05/16 16:20:51 1.5 -@@ -2,7 +2,7 @@ - - build file to build the donated retep tools packages - -- $Id: build.xml,v 1.4 2001/03/11 11:06:59 petere Exp $ -+ $Id: build.xml,v 1.5 2001/05/16 16:20:51 momjian Exp $ - - --> - -@@ -22,6 +22,11 @@ - <available property="xml" classname="org.xml.sax.Parser" /> - </target> - -+ <target name="warning" depends="checks" unless="jdk1.2+"> -+ <echo message="WARNING -- contributed retep tools need jdk1.2 or later -- compilation NOT done." /> -+ </target> -+ -+ - <!-- Prepares the build by creating a directory to place the class files --> - <target name="prepare"> - <mkdir dir="${dest}" /> -@@ -35,7 +40,7 @@ - </target> - - <!-- Builds the XML Tools --> -- <target name="compile" depends="checks,prepare"> -+ <target name="compile" depends="checks,prepare,warning" if="jdk1.2+"> - <javac srcdir="${src}" destdir="${dest}"> - <include name="${package}/**" /> - </javac> diff --git a/databases/postgresql92-server/files/patch-doc-makefile b/databases/postgresql92-server/files/patch-doc-makefile deleted file mode 100644 index fa27bed2af3f..000000000000 --- a/databases/postgresql92-server/files/patch-doc-makefile +++ /dev/null @@ -1,19 +0,0 @@ ---- doc/Makefile~ Sun Jan 7 03:03:22 2001 -+++ doc/Makefile Wed Apr 18 08:12:30 2001 -@@ -43,10 +43,13 @@ - gzip -d -c man.tar.gz | ( cd $(DESTDIR)$(mandir) && $(TAR) xf - ) - endif - -- - installdirs: -- $(mkinstalldirs) $(DESTDIR)$(mandir) $(DESTDIR)$(docdir)/html -- -+ifdef found_html -+ $(mkinstalldirs) $(DESTDIR)$(docdir)/html -+endif -+ifdef found_man -+ $(mkinstalldirs) $(DESTDIR)$(mandir) -+endif - - uninstall: - ifdef found_html diff --git a/databases/postgresql92-server/files/patch-jdbc-Connection b/databases/postgresql92-server/files/patch-jdbc-Connection deleted file mode 100644 index 26fbc260d639..000000000000 --- a/databases/postgresql92-server/files/patch-jdbc-Connection +++ /dev/null @@ -1,51 +0,0 @@ -=================================================================== -RCS file: /home/projects/pgsql/cvsroot/pgsql/src/interfaces/jdbc/org/postgresql/Connection.java,v -retrieving revision 1.14 -retrieving revision 1.16 -diff -u -r1.14 -r1.16 ---- src/interfaces/jdbc/org/postgresql/Connection.java 2001/01/31 08:26:01 1.14 -+++ src/interfaces/jdbc/org/postgresql/Connection.java 2001/06/01 20:57:58 1.16 -@@ -10,7 +10,7 @@ - import org.postgresql.util.*; - - /** -- * $Id: Connection.java,v 1.14 2001/01/31 08:26:01 peter Exp $ -+ * $Id: Connection.java,v 1.16 2001/06/01 20:57:58 momjian Exp $ - * - * This abstract class is used by org.postgresql.Driver to open either the JDBC1 or - * JDBC2 versions of the Connection class. -@@ -267,7 +267,8 @@ - // - firstWarning = null; - -- java.sql.ResultSet initrset = ExecSQL("set datestyle to 'ISO'; select getdatabaseencoding()"); -+ java.sql.ResultSet initrset = ExecSQL("set datestyle to 'ISO'; " + -+ "select case when pg_encoding_to_char(1) = 'SQL_ASCII' then 'UNKNOWN' else getdatabaseencoding() end"); - - String dbEncoding = null; - //retrieve DB properties -@@ -307,9 +308,23 @@ - } else if (dbEncoding.equals("EUC_TW")) { - dbEncoding = "EUC_TW"; - } else if (dbEncoding.equals("KOI8")) { -- dbEncoding = "KOI8_R"; -+ // try first if KOI8_U is present, it's a superset of KOI8_R -+ try { -+ dbEncoding = "KOI8_U"; -+ "test".getBytes(dbEncoding); -+ } -+ catch(UnsupportedEncodingException uee) { -+ // well, KOI8_U is still not in standard JDK, falling back to KOI8_R :( -+ dbEncoding = "KOI8_R"; -+ } -+ - } else if (dbEncoding.equals("WIN")) { - dbEncoding = "Cp1252"; -+ } else if (dbEncoding.equals("UNKNOWN")) { -+ //This isn't a multibyte database so we don't have an encoding to use -+ //We leave dbEncoding null which will cause the default encoding for the -+ //JVM to be used -+ dbEncoding = null; - } else { - dbEncoding = null; - } diff --git a/databases/postgresql92-server/files/patch-jdbc-build-xml b/databases/postgresql92-server/files/patch-jdbc-build-xml deleted file mode 100644 index b1c703a9c978..000000000000 --- a/databases/postgresql92-server/files/patch-jdbc-build-xml +++ /dev/null @@ -1,10 +0,0 @@ ---- src/interfaces/jdbc/build.xml~ Fri Mar 16 22:50:43 2001 -+++ src/interfaces/jdbc/build.xml Wed Apr 18 08:57:57 2001 -@@ -120,6 +120,7 @@ - <javac srcdir="${src}" destdir="${dest}"> - <include name="example/**" /> - <exclude name="example/corba/**"/> -+ <exclude name="example/blobtest.java" unless="jdk1.2+"/> - </javac> - </target> - diff --git a/databases/postgresql92-server/files/patch-jdbc-getdate b/databases/postgresql92-server/files/patch-jdbc-getdate deleted file mode 100644 index 744407ae14b5..000000000000 --- a/databases/postgresql92-server/files/patch-jdbc-getdate +++ /dev/null @@ -1,34 +0,0 @@ ---- src/interfaces/jdbc/org/postgresql/jdbc2/ResultSet.java~ Fri Feb 23 19:12:23 2001 -+++ src/interfaces/jdbc/org/postgresql/jdbc2/ResultSet.java Wed May 9 04:31:11 2001 -@@ -423,8 +423,13 @@ - String s = getString(columnIndex); - if(s==null) - return null; -- -- return java.sql.Date.valueOf(s); -+ // length == 10: SQL Date -+ // length > 10: SQL Timestamp, assumes PGDATESTYLE=ISO -+ try { -+ return java.sql.Date.valueOf((s.length() == 10) ? s : s.substring(0,10)); -+ } catch (NumberFormatException e) { -+ throw new PSQLException("postgresql.res.baddate", s); -+ } - } - - /** -@@ -441,8 +446,13 @@ - - if(s==null) - return null; // SQL NULL -- -- return java.sql.Time.valueOf(s); -+ // length == 8: SQL Time -+ // length > 8: SQL Timestamp -+ try { -+ return java.sql.Time.valueOf((s.length() == 8) ? s : s.substring(11,19)); -+ } catch (NumberFormatException e) { -+ throw new PSQLException("postgresql.res.badtime",s); -+ } - } - - /** diff --git a/databases/postgresql92-server/files/pgsql.sh.tmpl b/databases/postgresql92-server/files/pgsql.sh.tmpl deleted file mode 100644 index cd78771219ed..000000000000 --- a/databases/postgresql92-server/files/pgsql.sh.tmpl +++ /dev/null @@ -1,36 +0,0 @@ -#!/bin/sh - -# $FreeBSD$ -# -# For postmaster startup options, edit $PGDATA/postgresql.conf - -PGBIN=%%PREFIX%%/%%PG_PREFIX%%bin - -case $1 in -start) - [ -d %%PREFIX%%/%%PG_PREFIX%%lib ] && /sbin/ldconfig -m %%PREFIX%%/%%PG_PREFIX%%lib - [ -x ${PGBIN}/pg_ctl ] && { - su -l pgsql -c \ - '[ -d ${PGDATA} ] && exec %%PREFIX%%/%%PG_PREFIX%%bin/pg_ctl start -s -w -l ~pgsql/errlog' - echo -n ' pgsql' - } - ;; - -stop) - [ -x ${PGBIN}/pg_ctl ] && { - su -l pgsql -c 'exec %%PREFIX%%/%%PG_PREFIX%%bin/pg_ctl stop -s -m fast' - echo -n ' pgsql' - } - ;; - -status) - [ -x ${PGBIN}/pg_ctl ] && { - exec su -l pgsql -c 'exec %%PREFIX%%/%%PG_PREFIX%%bin/pg_ctl status' - } - ;; - -*) - echo "usage: `basename $0` {start|stop|status}" >&2 - exit 64 - ;; -esac diff --git a/databases/postgresql92-server/files/pkgIndex.tcl.in b/databases/postgresql92-server/files/pkgIndex.tcl.in deleted file mode 100644 index bd8329b15c69..000000000000 --- a/databases/postgresql92-server/files/pkgIndex.tcl.in +++ /dev/null @@ -1,4 +0,0 @@ -# Package-index file for Pgtcl-package. Enables you to load PostgreSQL -# interface functions right into you TCL-interpreter as simply as -# package require Pgtcl -package ifneeded Pgtcl 1.3 "load %%PREFIX%%/lib/libpgtcl.so" diff --git a/databases/postgresql92-server/files/post-install-notes b/databases/postgresql92-server/files/post-install-notes deleted file mode 100644 index 9347fc51c247..000000000000 --- a/databases/postgresql92-server/files/post-install-notes +++ /dev/null @@ -1,25 +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/TK support, you can use the pgaccess -utility to get a TCL/TK based database frontend for database -operations. You do NOT need to install the pgaccess port separately. - -If you built in the TCL support, you can load the Pg package into your -TCL scripts as easily as ``package require Pgtcl''. - -If you built with Java support, add -/usr/local/share/java/classes/postgresql.jar to your classpath. - -If you have many tables and many clients running, consider raising -kern.maxfiles using sysctl(8). - -Use createlang(1) to install languages into your database. -Supported languages are 'plpgsql', 'pltcl', 'pltclu', and 'plperl'. diff --git a/databases/postgresql92-server/files/pre-install-notes b/databases/postgresql92-server/files/pre-install-notes deleted file mode 100644 index 697ce3cedb79..000000000000 --- a/databases/postgresql92-server/files/pre-install-notes +++ /dev/null @@ -1,21 +0,0 @@ - * IMPORTANT UPGRADE NOTICE * IMPORTANT UPGRADE NOTICE * - -The PostgreSQL port now obeys hier(7) by default, which means that it -installs into: - -%%PREFIX%%/bin -%%PREFIX%%/lib -%%PREFIX%%/include/pgsql - -You *must* move away your old installation to avoid problems with -ldconfig(8) and user's PATH:s. If you rather install using the -old-fashion layout, cancel at next screen and run make as: - -$ make -DWITH_OLD_LAYOUT - -As always, you *must* dump existing databases before stopping and -removing your old postgresql, as part of the update. This is *NOT* -done by this port! - -If you want JAVA support, I will try to determine your JAVA_HOME using -javavmwrapper. If you want a different JVM, please set JAVA_HOME. 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 463e4e49815f..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 cfc983fc2f66..000000000000 --- a/databases/postgresql92-server/pkg-install +++ /dev/null @@ -1,46 +0,0 @@ -#! /bin/sh - -# $FreeBSD$ - -PATH=/bin:/usr/sbin - -DB_DIR=${PKG_PREFIX}/pgsql - -case $2 in -PRE-INSTALL) - USER=pgsql - GROUP=${USER} - UID=70 - 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} -c "PostgreSQL Daemon" - then - echo "Added user \"${USER}\"." - else - echo "Adding user \"${USER}\" failed..." - exit 1 - fi - fi - - if ! [ -x ~pgsql ] ; then - mkdir -p ${DB_DIR} - chown pgsql:pgsql ${DB_DIR} - fi - ;; - -esac diff --git a/databases/postgresql92-server/pkg-message b/databases/postgresql92-server/pkg-message deleted file mode 100644 index 1a3f9f1e4147..000000000000 --- a/databases/postgresql92-server/pkg-message +++ /dev/null @@ -1,38 +0,0 @@ - -====================================================================== - - * IMPORTANT UPGRADE NOTICE * IMPORTANT UPGRADE NOTICE * - -The PostgreSQL port now obeys hier(7) by default, which means that it -installs into: - -/usr/local/bin -/usr/local/lib -/usr/local/include/pgsql - -You *must* move away your old installation from users' and -ldconfig(8)'s PATHs. If you rather install using the old-fashion -layout, cancel now and build the port with "make -DWITH_OLD_LAYOUT". - -The pgsql user's home dir is /usr/local/pgsql by default, but can be -changed with for example chpass(1). Datadir defaults to ~pgsql/data, -but can be changed by modifying the ~pgsql/.profile script. - -As always, backup your data before upgrading. If the upgrade leads to -a higher minor revision (i.e. 7.0.x -> 7.1.x), a dump and restore of -all databases is required. This is *NOT* done by the port! - -====================================================================== - -To initialize the database, you should run initdb as the "pgsql" user. - -Example: - - su -l pgsql -c initdb - -You can then start PostgreSQL by running: - - /usr/local/etc/rc.d/010.pgsql.sh start - -For postmaster settings, see ~pgsql/data/postgresql.conf -====================================================================== diff --git a/databases/postgresql92-server/pkg-plist b/databases/postgresql92-server/pkg-plist deleted file mode 100644 index a7493ddb7898..000000000000 --- a/databases/postgresql92-server/pkg-plist +++ /dev/null @@ -1,91 +0,0 @@ -%%PG_PREFIX%%bin/postmaster -%%PG_PREFIX%%bin/postgres -%%PG_PREFIX%%bin/ecpg -%%PG_PREFIX%%bin/initdb -%%PG_PREFIX%%bin/initlocation -%%PG_PREFIX%%bin/ipcclean -%%PG_PREFIX%%bin/pg_ctl -%%PG_PREFIX%%bin/pg_dump -%%PG_PREFIX%%bin/pg_restore -%%PG_PREFIX%%bin/pg_encoding -%%PG_PREFIX%%bin/pg_dumpall -%%PG_PREFIX%%bin/pg_id -%%PG_PREFIX%%bin/pg_passwd -%%PG_PREFIX%%bin/psql -%%PG_PREFIX%%bin/createdb -%%PG_PREFIX%%bin/dropdb -%%PG_PREFIX%%bin/createuser -%%PG_PREFIX%%bin/dropuser -%%PG_PREFIX%%bin/droplang -%%PG_PREFIX%%bin/vacuumdb -%%PG_PREFIX%%bin/createlang -%%PG_PREFIX%%bin/pg_config -etc/rc.d/010.pgsql.sh -%%PG_INCLUDE%%/lib/dllist.h -@dirrm %%PG_INCLUDE%%/lib -%%PG_INCLUDE%%/libpq/pqcomm.h -%%PG_INCLUDE%%/libpq/libpq-fs.h -@dirrm %%PG_INCLUDE%%/libpq -%%PG_INCLUDE%%/libpq++/pgconnection.h -%%PG_INCLUDE%%/libpq++/pgdatabase.h -%%PG_INCLUDE%%/libpq++/pgtransdb.h -%%PG_INCLUDE%%/libpq++/pgcursordb.h -%%PG_INCLUDE%%/libpq++/pglobject.h -@dirrm %%PG_INCLUDE%%/libpq++ -%%PG_INCLUDE%%/c.h -%%PG_INCLUDE%%/postgres_ext.h -%%PG_INCLUDE%%/postgres_fe.h -%%PG_INCLUDE%%/os.h -%%PG_INCLUDE%%/config.h -%%PG_INCLUDE%%/libpq-fe.h -%%PG_INCLUDE%%/libpq-int.h -%%PG_INCLUDE%%/pqexpbuffer.h -%%PG_INCLUDE%%/ecpgerrno.h -%%PG_INCLUDE%%/ecpglib.h -%%PG_INCLUDE%%/ecpgtype.h -%%PG_INCLUDE%%/sqlca.h -%%PG_INCLUDE%%/sql3types.h -%%PG_INCLUDE%%/libpgeasy.h -%%PG_INCLUDE%%/libpq++.h -@dirrm %%PG_INCLUDE%% -%%PG_PREFIX%%lib/libpq.so -%%PG_PREFIX%%lib/libpq.a -%%PG_PREFIX%%lib/libpq.so.2 -%%PG_PREFIX%%lib/libecpg.so -%%PG_PREFIX%%lib/libecpg.a -%%PG_PREFIX%%lib/libecpg.so.3 -%%PG_PREFIX%%lib/libpgeasy.so -%%PG_PREFIX%%lib/libpgeasy.a -%%PG_PREFIX%%lib/libpgeasy.so.2 -%%PG_PREFIX%%lib/libpq++.so -%%PG_PREFIX%%lib/libpq++.a -%%PG_PREFIX%%lib/libpq++.so.3 -%%PG_PREFIX%%lib/plpgsql.so -share/postgresql/global.bki -share/postgresql/global.description -share/postgresql/post-install-notes -share/postgresql/template1.bki -share/postgresql/template1.description -share/postgresql/pg_hba.conf.sample -share/postgresql/pg_ident.conf.sample -share/postgresql/postgresql.conf.sample -@unexec if cmp -s ~pgsql/.profile %D/share/postgresql/dot.profile.dist; then rm -f ~pgsql/.profile; fi -@unexec if cmp -s ~pgsql/.cshrc %D/share/postgresql/dot.cshrc.dist; then rm -f ~pgsql/.cshrc; fi -@unexec [ -f ~pgsql/dot.profile.dist ] && rm ~pgsql/dot.profile.dist -@unexec [ -f ~pgsql/dot.cshrc.dist ] && rm ~pgsql/dot.cshrc.dist -@exec [ -f %D/share/postgresql/post-install-notes ] && cp %D/share/postgresql/post-install-notes ~pgsql && chown pgsql:pgsql ~pgsql/post-install-notes -@unexec [ -f ~pgsql/post-install-notes ] && rm ~pgsql/post-install-notes -share/postgresql/dot.profile.dist -share/postgresql/dot.cshrc.dist -@dirrm share/postgresql -@exec [ -f %D/share/postgresql/dot.profile.dist ] && cp %D/share/postgresql/dot.profile.dist ~pgsql/. -@exec [ -f %D/share/postgresql/dot.cshrc.dist ] && cp %D/share/postgresql/dot.cshrc.dist ~pgsql/. -@exec [ -f ~pgsql/.profile ] || (cp %D/share/postgresql/dot.profile.dist ~pgsql/.profile && chown pgsql:pgsql ~pgsql/.profile) -@exec [ -f ~pgsql/.cshrc ] || (cp %D/share/postgresql/dot.cshrc.dist ~pgsql/.cshrc && chown pgsql:pgsql ~pgsql/.cshrc) -@unexec [ X%%PG_PREFIX%% != X ] && rmdir %D/%%PG_PREFIX%%bin 2> /dev/null || true -@unexec [ X%%PG_PREFIX%% != X ] && rmdir %D/%%PG_PREFIX%%lib 2> /dev/null || true -@unexec [ X%%PG_PREFIX%% != X ] && rmdir %D/%%PG_PREFIX%%man/man1 2> /dev/null || true -@unexec [ X%%PG_PREFIX%% != X ] && rmdir %D/%%PG_PREFIX%%man/manl 2> /dev/null || true -@unexec [ X%%PG_PREFIX%% != X ] && rmdir %D/%%PG_PREFIX%%man 2> /dev/null || true -@unexec rmdir ~pgsql 2> /dev/null || true -@unexec echo "Warning: If you will *NOT* use this package anymore, please remove %D/pgsql and the pgsql user manually." diff --git a/databases/postgresql92-server/pkg-plist.doc b/databases/postgresql92-server/pkg-plist.doc deleted file mode 100644 index c4d50ecb24f0..000000000000 --- a/databases/postgresql92-server/pkg-plist.doc +++ /dev/null @@ -1,494 +0,0 @@ -share/doc/postgresql/html/admin.html -share/doc/postgresql/html/advanced.html -share/doc/postgresql/html/altern-locations.html -share/doc/postgresql/html/app-createdb.html -share/doc/postgresql/html/app-createlang.html -share/doc/postgresql/html/app-createuser.html -share/doc/postgresql/html/app-dropdb.html -share/doc/postgresql/html/app-droplang.html -share/doc/postgresql/html/app-dropuser.html -share/doc/postgresql/html/app-ecpg.html -share/doc/postgresql/html/app-initdb.html -share/doc/postgresql/html/app-initlocation.html -share/doc/postgresql/html/app-ipcclean.html -share/doc/postgresql/html/app-pg-ctl.html -share/doc/postgresql/html/app-pg-dumpall.html -share/doc/postgresql/html/app-pg-passwd.html -share/doc/postgresql/html/app-pgaccess.html -share/doc/postgresql/html/app-pgadmin.html -share/doc/postgresql/html/app-pgconfig.html -share/doc/postgresql/html/app-pgdump.html -share/doc/postgresql/html/app-pgrestore.html -share/doc/postgresql/html/app-pgtclsh.html -share/doc/postgresql/html/app-pgtksh.html -share/doc/postgresql/html/app-postgres.html -share/doc/postgresql/html/app-postmaster.html -share/doc/postgresql/html/app-psql.html -share/doc/postgresql/html/app-vacuumdb.html -share/doc/postgresql/html/applevel-consistency.html -share/doc/postgresql/html/arch-pg.html -share/doc/postgresql/html/arch.html -share/doc/postgresql/html/arrays.html -share/doc/postgresql/html/auth-methods.html -share/doc/postgresql/html/backup-file.html -share/doc/postgresql/html/backup.html -share/doc/postgresql/html/biblio.html -share/doc/postgresql/html/bki-commands.html -share/doc/postgresql/html/bki-example.html -share/doc/postgresql/html/bki.html -share/doc/postgresql/html/bug-reporting.html -share/doc/postgresql/html/catalog-pg-aggregate.html -share/doc/postgresql/html/catalog-pg-attrdef.html -share/doc/postgresql/html/catalog-pg-attribute.html -share/doc/postgresql/html/catalog-pg-class.html -share/doc/postgresql/html/catalog-pg-database.html -share/doc/postgresql/html/catalog-pg-description.html -share/doc/postgresql/html/catalog-pg-group.html -share/doc/postgresql/html/catalog-pg-index.html -share/doc/postgresql/html/catalog-pg-inherits.html -share/doc/postgresql/html/catalog-pg-language.html -share/doc/postgresql/html/catalog-pg-operator.html -share/doc/postgresql/html/catalog-pg-proc.html -share/doc/postgresql/html/catalog-pg-relcheck.html -share/doc/postgresql/html/catalog-pg-shadow.html -share/doc/postgresql/html/catalog-pg-type.html -share/doc/postgresql/html/catalogs.html -share/doc/postgresql/html/charset.html -share/doc/postgresql/html/client-authentication-problems.html -share/doc/postgresql/html/client-authentication.html -share/doc/postgresql/html/compiler.html -share/doc/postgresql/html/connect-estab.html -share/doc/postgresql/html/creating-cluster.html -share/doc/postgresql/html/cvs-tree.html -share/doc/postgresql/html/cvs.html -share/doc/postgresql/html/cvsup.html -share/doc/postgresql/html/datatype-bit.html -share/doc/postgresql/html/datatype-boolean.html -share/doc/postgresql/html/datatype-character.html -share/doc/postgresql/html/datatype-datetime.html -share/doc/postgresql/html/datatype-geometric.html -share/doc/postgresql/html/datatype-money.html -share/doc/postgresql/html/ecpg.html -share/doc/postgresql/html/datatype-net-types.html -share/doc/postgresql/html/datatype.html -share/doc/postgresql/html/datetime-appendix.html -share/doc/postgresql/html/db-accessing.html -share/doc/postgresql/html/db-destroy.html -share/doc/postgresql/html/developer.html -share/doc/postgresql/html/doc-build.html -share/doc/postgresql/html/doc-sources.html -share/doc/postgresql/html/doc-toolsets.html -share/doc/postgresql/html/docguide.html -share/doc/postgresql/html/ecpg-concept.html -share/doc/postgresql/html/ecpg-develop.html -share/doc/postgresql/html/ecpg-limitations.html -share/doc/postgresql/html/ecpg-porting.html -share/doc/postgresql/html/ecpg-use.html -share/doc/postgresql/html/executor.html -share/doc/postgresql/html/explicit-joins.html -share/doc/postgresql/html/extend.html -share/doc/postgresql/html/functions-datetime.html -share/doc/postgresql/html/functions-aggregate.html -share/doc/postgresql/html/functions-comparison.html -share/doc/postgresql/html/functions-conditional.html -share/doc/postgresql/html/functions-formatting.html -share/doc/postgresql/html/functions-geometry.html -share/doc/postgresql/html/functions-matching.html -share/doc/postgresql/html/functions-math.html -share/doc/postgresql/html/functions-misc.html -share/doc/postgresql/html/functions-net.html -share/doc/postgresql/html/functions-string.html -share/doc/postgresql/html/functions.html -share/doc/postgresql/html/geqo-intro2.html -share/doc/postgresql/html/geqo-pg-intro.html -share/doc/postgresql/html/geqo.html -share/doc/postgresql/html/gist.html -share/doc/postgresql/html/groups.html -share/doc/postgresql/html/history.html -share/doc/postgresql/html/index.html -share/doc/postgresql/html/indexcost.html -share/doc/postgresql/html/indices-functional.html -share/doc/postgresql/html/indices-multicolumn.html -share/doc/postgresql/html/indices-opclass.html -share/doc/postgresql/html/indices-types.html -share/doc/postgresql/html/indices-unique.html -share/doc/postgresql/html/indices.html -share/doc/postgresql/html/inherit.html -share/doc/postgresql/html/install-getsource.html -share/doc/postgresql/html/install-post.html -share/doc/postgresql/html/install-procedure.html -share/doc/postgresql/html/install-requirements.html -share/doc/postgresql/html/install-upgrading.html -share/doc/postgresql/html/install-win32.html -share/doc/postgresql/html/installation.html -share/doc/postgresql/html/jdbc-ext.html -share/doc/postgresql/html/jdbc-lo.html -share/doc/postgresql/html/jdbc.html -share/doc/postgresql/html/jdbc-query.html -share/doc/postgresql/html/jdbc-reading.html -share/doc/postgresql/html/jdbc-thread.html -share/doc/postgresql/html/jdbc-update.html -share/doc/postgresql/html/jdbc-use.html -share/doc/postgresql/html/kernel-resources.html -share/doc/postgresql/html/keys.html -share/doc/postgresql/html/largeobjects.html -share/doc/postgresql/html/libpgtcl-examples.html -share/doc/postgresql/html/libpgtcl-ref.html -share/doc/postgresql/html/libpq-async.html -share/doc/postgresql/html/libpq-control.html -share/doc/postgresql/html/libpq-copy.html -share/doc/postgresql/html/libpq-envars.html -share/doc/postgresql/html/libpq-example.html -share/doc/postgresql/html/libpq-exec.html -share/doc/postgresql/html/libpq-fastpath.html -share/doc/postgresql/html/libpq-notify.html -share/doc/postgresql/html/libpq.html -share/doc/postgresql/html/libpq-threading.html -share/doc/postgresql/html/libpq-trace.html -share/doc/postgresql/html/libpqplusplus.html -share/doc/postgresql/html/libpqpp-classes.html -share/doc/postgresql/html/libpqpp-connect.html -share/doc/postgresql/html/libpqpp-copy.html -share/doc/postgresql/html/libpqpp-exec.html -share/doc/postgresql/html/libpqpp-notify.html -share/doc/postgresql/html/lisp.html -share/doc/postgresql/html/ln11330.html -share/doc/postgresql/html/ln1274.html -share/doc/postgresql/html/ln15181.html -share/doc/postgresql/html/ln24.html -share/doc/postgresql/html/ln25010.html -share/doc/postgresql/html/ln37176.html -share/doc/postgresql/html/ln8.html -share/doc/postgresql/html/lo-funcs.html -share/doc/postgresql/html/lo-implementation.html -share/doc/postgresql/html/lo-interfaces.html -share/doc/postgresql/html/lo-libpq.html -share/doc/postgresql/html/lo-sample.html -share/doc/postgresql/html/locking-indices.html -share/doc/postgresql/html/locking-tables.html -share/doc/postgresql/html/manage-ag-accessdb.html -share/doc/postgresql/html/manage-ag-dropdb.html -share/doc/postgresql/html/manage.html -share/doc/postgresql/html/managing-databases.html -share/doc/postgresql/html/migration.html -share/doc/postgresql/html/more-advanced.html -share/doc/postgresql/html/multibyte.html -share/doc/postgresql/html/mvcc.html -share/doc/postgresql/html/non-atomic-values.html -share/doc/postgresql/html/notation.html -share/doc/postgresql/html/odbc-applixware.html -share/doc/postgresql/html/odbc-config.html -share/doc/postgresql/html/odbc-install.html -share/doc/postgresql/html/odbc-windows.html -share/doc/postgresql/html/odbc.html -share/doc/postgresql/html/organization.html -share/doc/postgresql/html/overview.html -share/doc/postgresql/html/page.html -share/doc/postgresql/html/parser-stage.html -share/doc/postgresql/html/partial-index.html -share/doc/postgresql/html/performance-tips.html -share/doc/postgresql/html/perm-functions.html -share/doc/postgresql/html/pg-system-catalogs.html -share/doc/postgresql/html/pgeasy-chapter.html -share/doc/postgresql/html/pgtcl-pgconndefaults.html -share/doc/postgresql/html/pgtcl-pgconnect.html -share/doc/postgresql/html/pgtcl-pgdisconnect.html -share/doc/postgresql/html/pgtcl-pgexec.html -share/doc/postgresql/html/pgtcl-pglisten.html -share/doc/postgresql/html/pgtcl-pgloclose.html -share/doc/postgresql/html/pgtcl-pglocreat.html -share/doc/postgresql/html/pgtcl-pgloexport.html -share/doc/postgresql/html/pgtcl-pgloimport.html -share/doc/postgresql/html/pgtcl-pglolseek.html -share/doc/postgresql/html/pgtcl-pgloopen.html -share/doc/postgresql/html/pgtcl-pgloread.html -share/doc/postgresql/html/pgtcl-pglotell.html -share/doc/postgresql/html/pgtcl-pglounlink.html -share/doc/postgresql/html/pgtcl-pglowrite.html -share/doc/postgresql/html/pgtcl-pgresult.html -share/doc/postgresql/html/pgtcl-pgselect.html -share/doc/postgresql/html/pgtcl.html -share/doc/postgresql/html/planner-optimizer.html -share/doc/postgresql/html/plperl-use.html -share/doc/postgresql/html/plperl.html -share/doc/postgresql/html/plpgsql-description.html -share/doc/postgresql/html/plpgsql-examples.html -share/doc/postgresql/html/plpgsql-porting.html -share/doc/postgresql/html/plpgsql-trigger.html -share/doc/postgresql/html/plpgsql.html -share/doc/postgresql/html/pltcl-description.html -share/doc/postgresql/html/pltcl.html -share/doc/postgresql/html/populate.html -share/doc/postgresql/html/postgres.html -share/doc/postgresql/html/postmaster-shutdown.html -share/doc/postgresql/html/postmaster-start.html -share/doc/postgresql/html/preface.html -share/doc/postgresql/html/privileges.html -share/doc/postgresql/html/programmer-client.html -share/doc/postgresql/html/programmer-pl.html -share/doc/postgresql/html/programmer-server.html -share/doc/postgresql/html/programmer.html -share/doc/postgresql/html/protocol-message-formats.html -share/doc/postgresql/html/protocol-message-types.html -share/doc/postgresql/html/protocol-protocol.html -share/doc/postgresql/html/protocol.html -share/doc/postgresql/html/pygresql.html -share/doc/postgresql/html/pygresql-close.html -share/doc/postgresql/html/pygresql-connect.html -share/doc/postgresql/html/pygresql-db-api.html -share/doc/postgresql/html/pygresql-db-clear.html -share/doc/postgresql/html/pygresql-db-delete.html -share/doc/postgresql/html/pygresql-db-get-attnames.html -share/doc/postgresql/html/pygresql-db-get-databases.html -share/doc/postgresql/html/pygresql-db-get-tables.html -share/doc/postgresql/html/pygresql-db-get.html -share/doc/postgresql/html/pygresql-db-insert.html -share/doc/postgresql/html/pygresql-db-pkey.html -share/doc/postgresql/html/pygresql-db-update.html -share/doc/postgresql/html/pygresql-endcopy.html -share/doc/postgresql/html/pygresql-fileno.html -share/doc/postgresql/html/pygresql-get-defbase.html -share/doc/postgresql/html/pygresql-get-defhost.html -share/doc/postgresql/html/pygresql-get-defopt.html -share/doc/postgresql/html/pygresql-get-defport.html -share/doc/postgresql/html/pygresql-get-deftty.html -share/doc/postgresql/html/pygresql-getline.html -share/doc/postgresql/html/pygresql-getlo.html -share/doc/postgresql/html/pygresql-getnotify.html -share/doc/postgresql/html/pygresql-inserttable.html -share/doc/postgresql/html/pygresql-locreate.html -share/doc/postgresql/html/pygresql-loimport.html -share/doc/postgresql/html/pygresql-pg-db.html -share/doc/postgresql/html/pygresql-pg-functions.html -share/doc/postgresql/html/pygresql-pg-pglarge.html -share/doc/postgresql/html/pygresql-pg-pgobject.html -share/doc/postgresql/html/pygresql-pg-pgqueryobject.html -share/doc/postgresql/html/pygresql-pglargeobject-close.html -share/doc/postgresql/html/pygresql-pglargeobject-export.html -share/doc/postgresql/html/pygresql-pglargeobject-open.html -share/doc/postgresql/html/pygresql-pglargeobject-read.html -share/doc/postgresql/html/pygresql-pglargeobject-seek.html -share/doc/postgresql/html/pygresql-pglargeobject-size.html -share/doc/postgresql/html/pygresql-pglargeobject-tell.html -share/doc/postgresql/html/pygresql-pglargeobject-unlink.html -share/doc/postgresql/html/pygresql-pglargeobject-write.html -share/doc/postgresql/html/pygresql-pgqueryobject-dictresult.html -share/doc/postgresql/html/pygresql-pgqueryobject-fieldname.html -share/doc/postgresql/html/query.html -share/doc/postgresql/html/pygresql-pgqueryobject-fieldnum.html -share/doc/postgresql/html/pygresql-pgqueryobject-getresult.html -share/doc/postgresql/html/pygresql-pgqueryobject-listfields.html -share/doc/postgresql/html/pygresql-pgqueryobject-ntuples.html -share/doc/postgresql/html/pygresql-putline.html -share/doc/postgresql/html/pygresql-query.html -share/doc/postgresql/html/pygresql-reset.html -share/doc/postgresql/html/pygresql-set-defbase.html -share/doc/postgresql/html/pygresql-set-defhost.html -share/doc/postgresql/html/pygresql-set-defopt.html -share/doc/postgresql/html/pygresql-set-defport.html -share/doc/postgresql/html/pygresql-set-deftty.html -share/doc/postgresql/html/queries-limit.html -share/doc/postgresql/html/queries-order.html -share/doc/postgresql/html/queries-select-lists.html -share/doc/postgresql/html/queries-union.html -share/doc/postgresql/html/queries.html -share/doc/postgresql/html/query-agg.html -share/doc/postgresql/html/query-concepts.html -share/doc/postgresql/html/query-delete.html -share/doc/postgresql/html/query-join.html -share/doc/postgresql/html/query-populate.html -share/doc/postgresql/html/query-query.html -share/doc/postgresql/html/query-selectinto.html -share/doc/postgresql/html/query-table.html -share/doc/postgresql/html/query-update.html -share/doc/postgresql/html/recode.html -share/doc/postgresql/html/recovery.html -share/doc/postgresql/html/reference-client.html -share/doc/postgresql/html/reference-server.html -share/doc/postgresql/html/reference.html -share/doc/postgresql/html/regress-platform.html -share/doc/postgresql/html/regress.html -share/doc/postgresql/html/release-0-01.html -share/doc/postgresql/html/release-0-02.html -share/doc/postgresql/html/release-0-03.html -share/doc/postgresql/html/release-1-0.html -share/doc/postgresql/html/release-1-01.html -share/doc/postgresql/html/release-1-02.html -share/doc/postgresql/html/release-1-09.html -share/doc/postgresql/html/release-6-0.html -share/doc/postgresql/html/release-6-1-1.html -share/doc/postgresql/html/release-6-1.html -share/doc/postgresql/html/release-6-2-1.html -share/doc/postgresql/html/release-6-2.html -share/doc/postgresql/html/release-6-3-1.html -share/doc/postgresql/html/release-6-3-2.html -share/doc/postgresql/html/release-6-3.html -share/doc/postgresql/html/release-6-4-1.html -share/doc/postgresql/html/release-6-4-2.html -share/doc/postgresql/html/release-6-4.html -share/doc/postgresql/html/release-6-5-1.html -share/doc/postgresql/html/release-6-5-2.html -share/doc/postgresql/html/release-6-5-3.html -share/doc/postgresql/html/release-6-5.html -share/doc/postgresql/html/release-7-0-1.html -share/doc/postgresql/html/release-7-0-2.html -share/doc/postgresql/html/release-7-0-3.html -share/doc/postgresql/html/release-7-0.html -share/doc/postgresql/html/release-7-1.html -share/doc/postgresql/html/release-7-1-1.html -share/doc/postgresql/html/release-7-1-2.html -share/doc/postgresql/html/release.html -share/doc/postgresql/html/relmodel-formal.html -share/doc/postgresql/html/relmodel-oper.html -share/doc/postgresql/html/resources.html -share/doc/postgresql/html/rule-system.html -share/doc/postgresql/html/rules-insert.html -share/doc/postgresql/html/rules-permissions.html -share/doc/postgresql/html/rules-triggers.html -share/doc/postgresql/html/rules-views.html -share/doc/postgresql/html/rules.html -share/doc/postgresql/html/runtime-config.html -share/doc/postgresql/html/runtime.html -share/doc/postgresql/html/source.html -share/doc/postgresql/html/spi-examples.html -share/doc/postgresql/html/spi-interface-support.html -share/doc/postgresql/html/spi-memory.html -share/doc/postgresql/html/spi-spiconnect.html -share/doc/postgresql/html/spi-spicopytuple.html -share/doc/postgresql/html/spi-spiexec.html -share/doc/postgresql/html/spi-spiexecp.html -share/doc/postgresql/html/spi-spifinish.html -share/doc/postgresql/html/spi-spifname.html -share/doc/postgresql/html/spi-spifnumber.html -share/doc/postgresql/html/spi-spigetbinval.html -share/doc/postgresql/html/spi-spigetrelname.html -share/doc/postgresql/html/spi-spigettype.html -share/doc/postgresql/html/spi-spigettypeid.html -share/doc/postgresql/html/spi-spigetvalue.html -share/doc/postgresql/html/spi-spimodifytuple.html -share/doc/postgresql/html/spi-spipalloc.html -share/doc/postgresql/html/spi-spipfree.html -share/doc/postgresql/html/spi-spiprepare.html -share/doc/postgresql/html/spi-spirepalloc.html -share/doc/postgresql/html/spi-spisaveplan.html -share/doc/postgresql/html/spi-visibility.html -share/doc/postgresql/html/spi.html -share/doc/postgresql/html/sql-abort.html -share/doc/postgresql/html/sql-altergroup.html -share/doc/postgresql/html/sql-altertable.html -share/doc/postgresql/html/sql-alteruser.html -share/doc/postgresql/html/sql-begin.html -share/doc/postgresql/html/sql-checkpoint.html -share/doc/postgresql/html/sql-close.html -share/doc/postgresql/html/sql-cluster.html -share/doc/postgresql/html/sql-commands.html -share/doc/postgresql/html/sql-comment.html -share/doc/postgresql/html/sql-commit.html -share/doc/postgresql/html/sql-copy.html -share/doc/postgresql/html/sql-createaggregate.html -share/doc/postgresql/html/sql-createconstraint.html -share/doc/postgresql/html/sql-createdatabase.html -share/doc/postgresql/html/sql-createfunction.html -share/doc/postgresql/html/sql-creategroup.html -share/doc/postgresql/html/sql-createindex.html -share/doc/postgresql/html/sql-createlanguage.html -share/doc/postgresql/html/sql-createoperator.html -share/doc/postgresql/html/sql-createrule.html -share/doc/postgresql/html/sql-createsequence.html -share/doc/postgresql/html/sql-createtable.html -share/doc/postgresql/html/sql-createtableas.html -share/doc/postgresql/html/sql-createtrigger.html -share/doc/postgresql/html/sql-createtype.html -share/doc/postgresql/html/sql-createuser.html -share/doc/postgresql/html/sql-createview.html -share/doc/postgresql/html/sql-declare.html -share/doc/postgresql/html/sql-delete.html -share/doc/postgresql/html/sql-dropaggregate.html -share/doc/postgresql/html/sql-dropdatabase.html -share/doc/postgresql/html/sql-dropfunction.html -share/doc/postgresql/html/sql-dropgroup.html -share/doc/postgresql/html/sql-dropindex.html -share/doc/postgresql/html/sql-droplanguage.html -share/doc/postgresql/html/sql-dropoperator.html -share/doc/postgresql/html/sql-droprule.html -share/doc/postgresql/html/sql-dropsequence.html -share/doc/postgresql/html/sql-droptable.html -share/doc/postgresql/html/sql-droptrigger.html -share/doc/postgresql/html/sql-droptype.html -share/doc/postgresql/html/sql-dropuser.html -share/doc/postgresql/html/sql-dropview.html -share/doc/postgresql/html/sql-end.html -share/doc/postgresql/html/sql-explain.html -share/doc/postgresql/html/sql-expressions.html -share/doc/postgresql/html/sql-fetch.html -share/doc/postgresql/html/sql-grant.html -share/doc/postgresql/html/sql-insert.html -share/doc/postgresql/html/sql-keywords-appendix.html -share/doc/postgresql/html/sql-language.html -share/doc/postgresql/html/sql-listen.html -share/doc/postgresql/html/sql-load.html -share/doc/postgresql/html/sql-lock.html -share/doc/postgresql/html/sql-move.html -share/doc/postgresql/html/sql-notify.html -share/doc/postgresql/html/sql-precedence.html -share/doc/postgresql/html/sql-reindex.html -share/doc/postgresql/html/sql-reset.html -share/doc/postgresql/html/sql-revoke.html -share/doc/postgresql/html/sql-rollback.html -share/doc/postgresql/html/sql-select.html -share/doc/postgresql/html/sql-selectinto.html -share/doc/postgresql/html/sql-set-constraints.html -share/doc/postgresql/html/sql-set-transaction.html -share/doc/postgresql/html/sql-set.html -share/doc/postgresql/html/sql-show.html -share/doc/postgresql/html/sql-syntax-columns.html -share/doc/postgresql/html/sql-syntax.html -share/doc/postgresql/html/sql-truncate.html -share/doc/postgresql/html/sql-unlisten.html -share/doc/postgresql/html/sql-update.html -share/doc/postgresql/html/sql-vacuum.html -share/doc/postgresql/html/sql.html -share/doc/postgresql/html/ssh-tunnels.html -share/doc/postgresql/html/ssl-tcp.html -share/doc/postgresql/html/start-manage-db.html -share/doc/postgresql/html/start-psql.html -share/doc/postgresql/html/start.html -share/doc/postgresql/html/storage.html -share/doc/postgresql/html/supported-platforms.html -share/doc/postgresql/html/timing-results.html -share/doc/postgresql/html/transaction-iso.html -share/doc/postgresql/html/trigger-datachanges.html -share/doc/postgresql/html/trigger-examples.html -share/doc/postgresql/html/trigger-manager.html -share/doc/postgresql/html/triggers.html -share/doc/postgresql/html/tutorial.html -share/doc/postgresql/html/type-system.html -share/doc/postgresql/html/typeconv-func.html -share/doc/postgresql/html/typeconv-oper.html -share/doc/postgresql/html/typeconv-query.html -share/doc/postgresql/html/typeconv-union-case.html -share/doc/postgresql/html/typeconv.html -share/doc/postgresql/html/units-history.html -share/doc/postgresql/html/user-manag.html -share/doc/postgresql/html/user.html -share/doc/postgresql/html/wal-configuration.html -share/doc/postgresql/html/wal-implementation.html -share/doc/postgresql/html/wal.html -share/doc/postgresql/html/xact-read-committed.html -share/doc/postgresql/html/xact-serializable.html -share/doc/postgresql/html/xaggr.html -share/doc/postgresql/html/xfunc-c.html -share/doc/postgresql/html/xfunc-internal.html -share/doc/postgresql/html/xfunc-overload.html -share/doc/postgresql/html/xfunc-pl.html -share/doc/postgresql/html/xfunc.html -share/doc/postgresql/html/xindex.html -share/doc/postgresql/html/xoper.html -share/doc/postgresql/html/xplang.html -share/doc/postgresql/html/xtypes.html -share/doc/postgresql/html/y2k.html -share/doc/postgresql/html/catalogs.gif -share/doc/postgresql/html/clientserver.gif -share/doc/postgresql/html/connections.gif -@dirrm share/doc/postgresql/html -@dirrm share/doc/postgresql diff --git a/databases/postgresql92-server/pkg-plist.jdbc b/databases/postgresql92-server/pkg-plist.jdbc deleted file mode 100644 index 8f7bd41a54d7..000000000000 --- a/databases/postgresql92-server/pkg-plist.jdbc +++ /dev/null @@ -1,27 +0,0 @@ -share/examples/postgresql/corba/StockClient.java -share/examples/postgresql/corba/StockDB.java -share/examples/postgresql/corba/StockDispenserImpl.java -share/examples/postgresql/corba/StockItemImpl.java -share/examples/postgresql/corba/StockServer.java -share/examples/postgresql/corba/readme -share/examples/postgresql/corba/stock.idl -share/examples/postgresql/corba/stock.sql -@dirrm share/examples/postgresql/corba -share/examples/postgresql/ImageViewer.java -share/examples/postgresql/Unicode.java -share/examples/postgresql/basic.java -share/examples/postgresql/blobtest.java -share/examples/postgresql/datestyle.java -share/examples/postgresql/metadata.java -share/examples/postgresql/psql.java -share/examples/postgresql/threadsafe.java -share/examples/postgresql/README -share/examples/postgresql/Implementation -@dirrm share/examples/postgresql -share/postgresql/java/postgresql-examples.jar -share/postgresql/java/postgresql.jar -share/postgresql/java/retepTools.jar -@dirrm share/postgresql/java -share/java/classes/postgresql.jar -@unexec rmdir %D/share/java/classes 2>/dev/null || true -@unexec rmdir %D/share/java 2>/dev/null || true diff --git a/databases/postgresql92-server/pkg-plist.notk b/databases/postgresql92-server/pkg-plist.notk deleted file mode 100644 index 8dcbc5f88bd6..000000000000 --- a/databases/postgresql92-server/pkg-plist.notk +++ /dev/null @@ -1,6 +0,0 @@ -%%PG_PREFIX%%bin/pgtclsh -%%PG_INCLUDE%%/libpgtcl.h -%%PG_PREFIX%%lib/libpgtcl.a -%%PG_PREFIX%%lib/libpgtcl.so -%%PG_PREFIX%%lib/libpgtcl.so.2 -%%PG_PREFIX%%lib/pltcl.so diff --git a/databases/postgresql92-server/pkg-plist.odbc b/databases/postgresql92-server/pkg-plist.odbc deleted file mode 100644 index f047b7cb64a1..000000000000 --- a/databases/postgresql92-server/pkg-plist.odbc +++ /dev/null @@ -1,10 +0,0 @@ -%%PG_INCLUDE%%/iodbc/iodbc.h -%%PG_INCLUDE%%/iodbc/isql.h -%%PG_INCLUDE%%/iodbc/isqlext.h -@dirrm %%PG_INCLUDE%%/iodbc -%%PG_PREFIX%%lib/libpsqlodbc.a -%%PG_PREFIX%%lib/libpsqlodbc.so -%%PG_PREFIX%%lib/libpsqlodbc.so.0 -etc/postgresql/odbcinst.ini -@dirrm etc/postgresql -share/postgresql/odbc.sql diff --git a/databases/postgresql92-server/pkg-plist.tcl b/databases/postgresql92-server/pkg-plist.tcl deleted file mode 100644 index da5f4367cb80..000000000000 --- a/databases/postgresql92-server/pkg-plist.tcl +++ /dev/null @@ -1,148 +0,0 @@ -%%PG_PREFIX%%bin/pgaccess -%%PG_PREFIX%%bin/pgtclsh -%%PG_PREFIX%%bin/pgtksh -%%PG_INCLUDE%%/libpgtcl.h -%%PG_PREFIX%%lib/libpgtcl.a -%%PG_PREFIX%%lib/libpgtcl.so -%%PG_PREFIX%%lib/libpgtcl.so.2 -%%PG_PREFIX%%lib/pltcl.so -lib/tcl%%WITH_TCL%%/Pgtcl1.3/pkgIndex.tcl -share/postgresql/pgaccess/images/icon_button.gif -share/postgresql/pgaccess/images/icon_checkbutton.gif -share/postgresql/pgaccess/images/icon_entry.gif -share/postgresql/pgaccess/images/icon_frame.gif -share/postgresql/pgaccess/images/icon_label.gif -share/postgresql/pgaccess/images/icon_listbox.gif -share/postgresql/pgaccess/images/icon_query.gif -share/postgresql/pgaccess/images/icon_radiobutton.gif -share/postgresql/pgaccess/images/icon_text.gif -share/postgresql/pgaccess/lib/database.tcl -share/postgresql/pgaccess/lib/forms.tcl -share/postgresql/pgaccess/lib/functions.tcl -share/postgresql/pgaccess/lib/help/abort.hlp -share/postgresql/pgaccess/lib/help/add_records.hlp -share/postgresql/pgaccess/lib/help/alter_table.hlp -share/postgresql/pgaccess/lib/help/alter_user.hlp -share/postgresql/pgaccess/lib/help/author.hlp -share/postgresql/pgaccess/lib/help/begin.hlp -share/postgresql/pgaccess/lib/help/close.hlp -share/postgresql/pgaccess/lib/help/cluster.hlp -share/postgresql/pgaccess/lib/help/commit.hlp -share/postgresql/pgaccess/lib/help/copy.hlp -share/postgresql/pgaccess/lib/help/copyrights.hlp -share/postgresql/pgaccess/lib/help/create_aggregate.hlp -share/postgresql/pgaccess/lib/help/create_database.hlp -share/postgresql/pgaccess/lib/help/create_function.hlp -share/postgresql/pgaccess/lib/help/create_index.hlp -share/postgresql/pgaccess/lib/help/create_language.hlp -share/postgresql/pgaccess/lib/help/create_operator.hlp -share/postgresql/pgaccess/lib/help/create_rule.hlp -share/postgresql/pgaccess/lib/help/create_sequence.hlp -share/postgresql/pgaccess/lib/help/create_table.hlp -share/postgresql/pgaccess/lib/help/create_table_as.hlp -share/postgresql/pgaccess/lib/help/create_trigger.hlp -share/postgresql/pgaccess/lib/help/create_type.hlp -share/postgresql/pgaccess/lib/help/create_user.hlp -share/postgresql/pgaccess/lib/help/create_view.hlp -share/postgresql/pgaccess/lib/help/data_types.hlp -share/postgresql/pgaccess/lib/help/datefunc.hlp -share/postgresql/pgaccess/lib/help/declare.hlp -share/postgresql/pgaccess/lib/help/delete.hlp -share/postgresql/pgaccess/lib/help/drop_aggregate.hlp -share/postgresql/pgaccess/lib/help/drop_database.hlp -share/postgresql/pgaccess/lib/help/drop_function.hlp -share/postgresql/pgaccess/lib/help/drop_index.hlp -share/postgresql/pgaccess/lib/help/drop_language.hlp -share/postgresql/pgaccess/lib/help/drop_operator.hlp -share/postgresql/pgaccess/lib/help/drop_rule.hlp -share/postgresql/pgaccess/lib/help/drop_sequence.hlp -share/postgresql/pgaccess/lib/help/drop_table.hlp -share/postgresql/pgaccess/lib/help/drop_trigger.hlp -share/postgresql/pgaccess/lib/help/drop_type.hlp -share/postgresql/pgaccess/lib/help/drop_user.hlp -share/postgresql/pgaccess/lib/help/drop_view.hlp -share/postgresql/pgaccess/lib/help/explain.hlp -share/postgresql/pgaccess/lib/help/fetch.hlp -share/postgresql/pgaccess/lib/help/form_design.hlp -share/postgresql/pgaccess/lib/help/forms.hlp -share/postgresql/pgaccess/lib/help/functions.hlp -share/postgresql/pgaccess/lib/help/geomfunc.hlp -share/postgresql/pgaccess/lib/help/grant.hlp -share/postgresql/pgaccess/lib/help/history.hlp -share/postgresql/pgaccess/lib/help/index.hlp -share/postgresql/pgaccess/lib/help/inheritance.hlp -share/postgresql/pgaccess/lib/help/insert.hlp -share/postgresql/pgaccess/lib/help/ipv4func.hlp -share/postgresql/pgaccess/lib/help/isolation.hlp -share/postgresql/pgaccess/lib/help/keywords.hlp -share/postgresql/pgaccess/lib/help/listen.hlp -share/postgresql/pgaccess/lib/help/load.hlp -share/postgresql/pgaccess/lib/help/lock.hlp -share/postgresql/pgaccess/lib/help/mathfunc.hlp -share/postgresql/pgaccess/lib/help/move.hlp -share/postgresql/pgaccess/lib/help/mvcc.hlp -share/postgresql/pgaccess/lib/help/new_query.hlp -share/postgresql/pgaccess/lib/help/new_table.hlp -share/postgresql/pgaccess/lib/help/notify.hlp -share/postgresql/pgaccess/lib/help/open_query.hlp -share/postgresql/pgaccess/lib/help/open_table.hlp -share/postgresql/pgaccess/lib/help/pgfunctions.hlp -share/postgresql/pgaccess/lib/help/postgresql.hlp -share/postgresql/pgaccess/lib/help/queries.hlp -share/postgresql/pgaccess/lib/help/reports.hlp -share/postgresql/pgaccess/lib/help/reset.hlp -share/postgresql/pgaccess/lib/help/revoke.hlp -share/postgresql/pgaccess/lib/help/rollback.hlp -share/postgresql/pgaccess/lib/help/schema.hlp -share/postgresql/pgaccess/lib/help/scripts.hlp -share/postgresql/pgaccess/lib/help/select.hlp -share/postgresql/pgaccess/lib/help/select_into.hlp -share/postgresql/pgaccess/lib/help/sequences.hlp -share/postgresql/pgaccess/lib/help/set.hlp -share/postgresql/pgaccess/lib/help/show.hlp -share/postgresql/pgaccess/lib/help/sql_guide.hlp -share/postgresql/pgaccess/lib/help/sqlfunc.hlp -share/postgresql/pgaccess/lib/help/stringfunc.hlp -share/postgresql/pgaccess/lib/help/tables.hlp -share/postgresql/pgaccess/lib/help/unlisten.hlp -share/postgresql/pgaccess/lib/help/update.hlp -share/postgresql/pgaccess/lib/help/users.hlp -share/postgresql/pgaccess/lib/help/vacuum.hlp -share/postgresql/pgaccess/lib/help/view_table_structure.hlp -share/postgresql/pgaccess/lib/help/views.hlp -share/postgresql/pgaccess/lib/help/visual_designer.hlp -share/postgresql/pgaccess/lib/help/y2k.hlp -share/postgresql/pgaccess/lib/help.tcl -share/postgresql/pgaccess/lib/languages/czech -share/postgresql/pgaccess/lib/languages/chinese_big5 -share/postgresql/pgaccess/lib/languages/chinese_gb -share/postgresql/pgaccess/lib/languages/deutsch -share/postgresql/pgaccess/lib/languages/euskara -share/postgresql/pgaccess/lib/languages/francais -share/postgresql/pgaccess/lib/languages/italiano -share/postgresql/pgaccess/lib/languages/japanese -share/postgresql/pgaccess/lib/languages/magyar -share/postgresql/pgaccess/lib/languages/nederlands -share/postgresql/pgaccess/lib/languages/portugues -share/postgresql/pgaccess/lib/languages/romana -share/postgresql/pgaccess/lib/languages/russian.koi8r -share/postgresql/pgaccess/lib/languages/russian_win -share/postgresql/pgaccess/lib/languages/spanish -share/postgresql/pgaccess/lib/mainlib.tcl -share/postgresql/pgaccess/lib/preferences.tcl -share/postgresql/pgaccess/lib/queries.tcl -share/postgresql/pgaccess/lib/reports.tcl -share/postgresql/pgaccess/lib/schema.tcl -share/postgresql/pgaccess/lib/scripts.tcl -share/postgresql/pgaccess/lib/sequences.tcl -share/postgresql/pgaccess/lib/tables.tcl -share/postgresql/pgaccess/lib/users.tcl -share/postgresql/pgaccess/lib/views.tcl -share/postgresql/pgaccess/lib/visualqb.tcl -share/postgresql/pgaccess/main.tcl -@dirrm share/postgresql/pgaccess/images -@dirrm share/postgresql/pgaccess/lib/help -@dirrm share/postgresql/pgaccess/lib/languages -@dirrm share/postgresql/pgaccess/lib -@dirrm share/postgresql/pgaccess -@dirrm lib/tcl%%WITH_TCL%%/Pgtcl1.3 diff --git a/databases/postgresql92-server/scripts/configure.postgresql b/databases/postgresql92-server/scripts/configure.postgresql deleted file mode 100644 index 0b288ad43d25..000000000000 --- a/databases/postgresql92-server/scripts/configure.postgresql +++ /dev/null @@ -1,278 +0,0 @@ -#!/bin/sh -# -*- tab-width: 4; -*- -# ex:ts=4 -# -# $FreeBSD$ -# -if [ -f ${WRKDIRPREFIX}${CURDIR}/Makefile.inc ]; then - exit -fi - -if [ ! "${BATCH}" ]; then - dialog --title "Backup your data NOW" \ - --msgbox "`sed -e \"s#%%PREFIX%%#${PREFIX}#\" < ${FILESDIR}/pre-install-notes`" \ - -1 -1 -fi - -if [ "${BATCH}" ]; then - set \"MultiByte\" \"ODBC\" \"SSL\" \"TCL\" \"TCLTK\" -else - /usr/bin/dialog --title "configuration options" --clear \ - --checklist "\n\ -Please select desired options:" -1 -1 7 \ -JDBC "Java DataBase Connectivity" OFF \ -MultiByte "Multibyte for Multilingualism" ON \ -ODBC "Open Database Connectivity" ON \ -TCL "Tcl" ON \ -TCLTK "Tcl/Tk" ON \ -SSL "Secure Socket Layer" ON \ -KRB5 "Kerberos 5" OFF \ -2> /tmp/checklist.tmp.$$ - - retval=$? - - if [ -s /tmp/checklist.tmp.$$ ]; then - set `cat /tmp/checklist.tmp.$$` - fi - rm -f /tmp/checklist.tmp.$$ - - case $retval in - 0) if [ -z "$*" ]; then - echo "Nothing selected" - fi - ;; - 1) echo "Cancel pressed." - exit 1 - ;; - esac -fi - -${MKDIR} ${WRKDIRPREFIX}${CURDIR} -exec > ${WRKDIRPREFIX}${CURDIR}/Makefile.inc - -while [ "$1" ]; do - case $1 in - \"JDBC\") - # We use JAVA_HOME if set correctly. If the user has - # specified a JVM with JAVA_HOME or via the javavmwrapper, - # we validate that it really exists. It is unnecessarily - # complicated and error prone to try to figure out the - # correct java version just to be able to determine a - # BUILD_DEPEND in this case. Instead, assume that a set - # JAVA_HOME together with simple sanity check mean we have - # an installed JVM, and we don't bother setting - # BUILD_DEPENDS. - - echo "# JDBC" - # if JAVA_HOME is set and exists, use it - if [ "${JAVA_HOME}" -a -x "${JAVA_HOME}/bin/javac" ]; then - echo JAVA_HOME=${JAVA_HOME} - else - # No JAVA_HOME, check javavmwrapper's config file - if [ -r "${LOCALBASE}/etc/javavms" ]; then - VMS=`/usr/bin/sed 's|#.*||' < "${LOCALBASE}/etc/javavms" | uniq` - for JAVAVM in ${VMS}; do - if [ -x "${JAVAVM}" ]; then - JAVA_HOME=`echo ${JAVAVM} | /usr/bin/sed 's|/bin/java$||` - break - fi - done - fi - if [ "${JAVA_HOME}" -a -x "${JAVA_HOME}/bin/javac" ]; then - # yep, wrapper was good - echo JAVA_HOME=${JAVA_HOME} - else - # nothing, use our boring 1.1.8, the only native non-beta jdk :( - echo BUILD_DEPENDS+= \${LOCALBASE}/jdk1.1.8/bin/javac:\${PORTSDIR}/java/jdk - echo JAVA_HOME=\${LOCALBASE}/jdk1.1.8 - fi - fi - cat <<-EOF - BUILD_DEPENDS+= \${LOCALBASE}/bin/ant:\${PORTSDIR}/devel/jakarta-ant - CONFIGURE_ENV+= ANT=\${LOCALBASE}/bin/ant - WITH_JDBC=YES - MAKE_ENV+= JAVA_HOME=\${JAVA_HOME} - SCRIPTS_ENV+= JAVA_HOME=\${JAVA_HOME} - CONFIGURE_ARGS+= --with-java - - EOF - ;; - \"MultiByte\") - MULTIBYTE=1 - ;; - \"ODBC\") - cat <<-EOF - # ODBC - WITH_ODBC=YES - CONFIGURE_ARGS+= --with-odbc - - EOF - ;; - \"TCL\") - TCL=1 - ;; - \"TCLTK\") - echo "#TCLTK" - echo WITH_TK=YES - echo - TCL=1 - ;; - \"SSL\") - cat <<-EOF - # SSL - USE_OPENSSL= yes - CFLAGS+= -DUSE_SSL - WITH_SSL= yes - CONFIGURE_ENV+= LDFLAGS="-L\${OPENSSLLIB} -lssl -lcrypto" - CONFIGURE_ARGS+= --with-openssl - - EOF - ;; - \"KRB5\") - KRB5=1 - ;; - \"nothing\"|true) - ;; - *) - echo "Invalid option(s): $*" > /dev/stderr - rm -f ${WRKDIRPREFIX}${CURDIR}/Makefile.inc - exit 1 - ;; - esac - shift -done - -exec > /dev/stderr - -# if multibyte, determine charset -echo "# Multibyte" >> ${WRKDIRPREFIX}${CURDIR}/Makefile.inc - -if [ ! "${MULTIBYTE}" ]; then - echo "WITHOUT_MULTIBYTE=YES" >> ${WRKDIRPREFIX}${CURDIR}/Makefile.inc -else - if [ "${BATCH}" ]; then - set "nothing" - else - /usr/bin/dialog --title "configuration options" --clear \ - --radiolist "\n\ -Please select desired options:" -1 -1 16 \ -nothing "Default Encoding" ON \ -SQL_ASCII "SQL_ASCII" OFF \ -LATIN1 "LATIN1" OFF \ -LATIN2 "LATIN2" OFF \ -LATIN3 "LATIN3" OFF \ -LATIN4 "LATIN4" OFF \ -LATIN5 "LATIN5" OFF \ -EUC_JP "EUC_JP" OFF \ -EUC_CN "EUC_CN" OFF \ -EUC_KR "EUC_KR" OFF \ -EUC_TW "EUC_TW" OFF \ -KOI8 "KOI8" OFF \ -UNICODE "UNICODE" OFF \ -MULE_INTERNAL "MULE_INTERNAL" OFF \ -WIN "WIN" OFF \ -ALT "ALT" OFF \ -2> /tmp/checklist.tmp.$$ - - retval=$? - - if [ -s /tmp/checklist.tmp.$$ ]; then - set `cat /tmp/checklist.tmp.$$` - fi - rm -f /tmp/checklist.tmp.$$ - if [ $retval = 1 ]; then - echo "Cancel pressed." - rm ${WRKDIRPREFIX}${CURDIR}/Makefile.inc - exit 1 - fi - fi - - if [ "$1" = "nothing" ]; then - echo "CONFIGURE_ARGS+= --enable-multibyte" \ - >> ${WRKDIRPREFIX}${CURDIR}/Makefile.inc - else - echo "CONFIGURE_ARGS+= --enable-multibyte=$1" \ - >> ${WRKDIRPREFIX}${CURDIR}/Makefile.inc - fi -fi -echo - -if [ "${TCL}" ]; then - echo "# TCL" >> ${WRKDIRPREFIX}${CURDIR}/Makefile.inc - if [ "${BATCH}" ]; then - echo WITH_TCL=8.3 >> ${WRKDIRPREFIX}${CURDIR}/Makefile.inc - else - dialog --title "TCL version" \ - --inputbox "Please enter TCL version. Default is 8.3." -1 -1 "8.3" \ - 2> /tmp/checklist.tmp.$$ - retval=$? - if [ -s /tmp/checklist.tmp.$$ ]; then - set `cat /tmp/checklist.tmp.$$` - fi - rm -f /tmp/checklist.tmp.$$ - case $retval in - 0) if [ -z "$*" ]; then - echo "Nothing selected" - fi - ;; - 1) echo "Cancel pressed." - rm -f ${WRKDIRPREFIX}${CURDIR}/Makefile.inc - exit 1 - ;; - esac - echo WITH_TCL=$1 >> ${WRKDIRPREFIX}${CURDIR}/Makefile.inc - fi - cat <<-EOF >> ${WRKDIRPREFIX}${CURDIR}/Makefile.inc - CONFIGURE_ARGS+= --with-tcl --with-tclconfig="\${TCLCONFIG}" - TCLV=\${WITH_TCL:S/.//} - TCL_INCDIR= \${LOCALBASE}/include/tcl\${WITH_TCL} - MAKE_ENV+= TCL_INCDIR=\${TCL_INCDIR} - LIB_DEPENDS+= tcl\${TCLV}:\${PORTSDIR}/lang/tcl\${TCLV} - TCLCONFIG= "\${LOCALBASE}/lib/tcl\${WITH_TCL}" - .if defined(WITH_TK) - CONFIGURE_ARGS+= --with-tkconfig="\${TKCONFIG}" - TK_INCDIR= \${LOCALBASE}/include/tk\${WITH_TCL} - CONFIGURE_ENV+= WISH=\${LOCALBASE}/bin/wish\${WITH_TCL} - LIB_DEPENDS+= tk\${TCLV}:\${PORTSDIR}/x11-toolkits/tk\${TCLV} - TKCONFIG= "\${LOCALBASE}/lib/tk\${WITH_TCL}" - TCLCONFIG+= \${TKCONFIG} - TCL_PLIST= pkg-plist.tcl - .else - TCL_PLIST= pkg-plist.notk - CONFIGURE_ARGS+= --without-tk - .endif - - EOF -fi - -if [ "${KRB5}" ]; then - if [ "${BATCH}" ]; then - # never gets here, but what the heck... - echo KRB5_HOME=\${LOCALBASE} >> ${WRKDIRPREFIX}${CURDIR}/Makefile.inc - else - dialog --inputbox "Please enter the KRB5_HOME path" -1 -1 "${KRB_HOME:-${LOCALBASE}}" \ - 2> /tmp/checklist.tmp.$$ - retval=$? - if [ -s /tmp/checklist.tmp.$$ ]; then - set `cat /tmp/checklist.tmp.$$` - fi - rm -f /tmp/checklist.tmp.$$ - case $retval in - 0) if [ -z "$*" ]; then - echo "No input" - fi - ;; - 1) echo "Cancel pressed." - rm -f ${WRKDIRPREFIX}${CURDIR}/Makefile.inc - exit 1 - ;; - esac - echo KRB5_HOME=\"$1\" >> ${WRKDIRPREFIX}${CURDIR}/Makefile.inc - fi - cat <<-EOF >> ${WRKDIRPREFIX}${CURDIR}/Makefile.inc - .if defined(KRB5_HOME) && exists(\${KRB5_HOME}) - CONFIGURE_KRB= --with-krb5=\${KRB5_HOME} - .endif - - EOF -fi diff --git a/databases/py-MySQLdb-devel/Makefile b/databases/py-MySQLdb-devel/Makefile deleted file mode 100644 index 3f747aaa835e..000000000000 --- a/databases/py-MySQLdb-devel/Makefile +++ /dev/null @@ -1,40 +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.9.0 -CATEGORIES= databases python -MASTER_SITES= ${MASTER_SITE_SOURCEFORGE} -MASTER_SITE_SUBDIR= mysql-python -DISTNAME= MySQL-python-${PORTVERSION} - -MAINTAINER= sobomax@FreeBSD.org - -BUILD_DEPENDS= ${PYDISTUTILS} -LIB_DEPENDS= mysqlclient.10:${PORTSDIR}/databases/mysql323-client - -USE_PYTHON= yes -SETUP_CMD= cd ${WRKSRC} && ${PYTHON_CMD} setup.py - -DOCS= MANIFEST README doc/*.html - -do-configure: - @${PERL} -pi -e 's|%%LOCALBASE%%|${LOCALBASE}|g' ${WRKSRC}/setup.py - -do-build: - ${SETUP_CMD} build - -do-install: - ${SETUP_CMD} install -c -O1 --prefix=${PREFIX} -.if !defined(NOPORTDOCS) - @${MKDIR} ${DOCSDIR} -.for file in ${DOCS} - @${INSTALL_MAN} ${WRKSRC}/${file} ${DOCSDIR} -.endfor -.endif - -.include <bsd.port.mk> diff --git a/databases/py-MySQLdb-devel/distinfo b/databases/py-MySQLdb-devel/distinfo deleted file mode 100644 index 3139d8885f2b..000000000000 --- a/databases/py-MySQLdb-devel/distinfo +++ /dev/null @@ -1 +0,0 @@ -MD5 (MySQL-python-0.9.0.tar.gz) = bd56fa81769739d6710e320b3765675b diff --git a/databases/py-MySQLdb-devel/files/patch-_mysql.c b/databases/py-MySQLdb-devel/files/patch-_mysql.c deleted file mode 100644 index fe72118ba2fb..000000000000 --- a/databases/py-MySQLdb-devel/files/patch-_mysql.c +++ /dev/null @@ -1,17 +0,0 @@ - -$FreeBSD$ - ---- _mysql.c 2002/01/09 13:02:08 1.1 -+++ _mysql.c 2002/01/09 13:06:07 -@@ -781,7 +781,11 @@ - goto error; - } - if (!row) { -+#if PY_VERSION_HEX < 0x02020000 - if (_PyTuple_Resize(r, i, 0) == -1) goto error; -+#else -+ if (_PyTuple_Resize(r, i) == -1) goto error; -+#endif - break; - } - v = convert_row(self, row); diff --git a/databases/py-MySQLdb-devel/files/patch-ab b/databases/py-MySQLdb-devel/files/patch-ab deleted file mode 100644 index 12b44feae719..000000000000 --- a/databases/py-MySQLdb-devel/files/patch-ab +++ /dev/null @@ -1,13 +0,0 @@ ---- setup.py.orig Tue Oct 31 21:28:16 2000 -+++ setup.py Wed Nov 1 13:51:41 2000 -@@ -32,8 +32,8 @@ - runtime_library_dirs = [] - extra_objects = [r'c:\mysql\lib\opt\mysqlclient.lib'] - elif os.name == "posix": # most Linux/UNIX platforms -- include_dirs = ['/usr/include/mysql'] -- library_dirs = ['/usr/lib/mysql'] -+ include_dirs = ['%%LOCALBASE%%/include/mysql'] -+ library_dirs = ['%%LOCALBASE%%/lib/mysql'] - # MySQL-3.23 seems to need libz - libraries = [mysqlclient, "z"] - # On some platorms, this can be used to find the shared libraries 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 7b7933cc13e6..000000000000 --- a/databases/py-MySQLdb-devel/pkg-plist +++ /dev/null @@ -1,60 +0,0 @@ -lib/%%PYTHON_VERSION%%/site-packages/CompatMysqldb.py -lib/%%PYTHON_VERSION%%/site-packages/CompatMysqldb.pyc -lib/%%PYTHON_VERSION%%/site-packages/CompatMysqldb.pyo -lib/%%PYTHON_VERSION%%/site-packages/MySQLdb/__init__.py -lib/%%PYTHON_VERSION%%/site-packages/MySQLdb/__init__.pyc -lib/%%PYTHON_VERSION%%/site-packages/MySQLdb/__init__.pyo -lib/%%PYTHON_VERSION%%/site-packages/MySQLdb/connections.py -lib/%%PYTHON_VERSION%%/site-packages/MySQLdb/connections.pyc -lib/%%PYTHON_VERSION%%/site-packages/MySQLdb/connections.pyo -lib/%%PYTHON_VERSION%%/site-packages/MySQLdb/constants/CLIENT.py -lib/%%PYTHON_VERSION%%/site-packages/MySQLdb/constants/CLIENT.pyc -lib/%%PYTHON_VERSION%%/site-packages/MySQLdb/constants/CLIENT.pyo -lib/%%PYTHON_VERSION%%/site-packages/MySQLdb/constants/CR.py -lib/%%PYTHON_VERSION%%/site-packages/MySQLdb/constants/CR.pyc -lib/%%PYTHON_VERSION%%/site-packages/MySQLdb/constants/CR.pyo -lib/%%PYTHON_VERSION%%/site-packages/MySQLdb/constants/ER.py -lib/%%PYTHON_VERSION%%/site-packages/MySQLdb/constants/ER.pyc -lib/%%PYTHON_VERSION%%/site-packages/MySQLdb/constants/ER.pyo -lib/%%PYTHON_VERSION%%/site-packages/MySQLdb/constants/FIELD_TYPE.py -lib/%%PYTHON_VERSION%%/site-packages/MySQLdb/constants/FIELD_TYPE.pyc -lib/%%PYTHON_VERSION%%/site-packages/MySQLdb/constants/FIELD_TYPE.pyo -lib/%%PYTHON_VERSION%%/site-packages/MySQLdb/constants/FLAG.py -lib/%%PYTHON_VERSION%%/site-packages/MySQLdb/constants/FLAG.pyc -lib/%%PYTHON_VERSION%%/site-packages/MySQLdb/constants/FLAG.pyo -lib/%%PYTHON_VERSION%%/site-packages/MySQLdb/constants/REFRESH.py -lib/%%PYTHON_VERSION%%/site-packages/MySQLdb/constants/REFRESH.pyc -lib/%%PYTHON_VERSION%%/site-packages/MySQLdb/constants/REFRESH.pyo -lib/%%PYTHON_VERSION%%/site-packages/MySQLdb/constants/__init__.py -lib/%%PYTHON_VERSION%%/site-packages/MySQLdb/constants/__init__.pyc -lib/%%PYTHON_VERSION%%/site-packages/MySQLdb/constants/__init__.pyo -lib/%%PYTHON_VERSION%%/site-packages/MySQLdb/converters.py -lib/%%PYTHON_VERSION%%/site-packages/MySQLdb/converters.pyc -lib/%%PYTHON_VERSION%%/site-packages/MySQLdb/converters.pyo -lib/%%PYTHON_VERSION%%/site-packages/MySQLdb/cursors.py -lib/%%PYTHON_VERSION%%/site-packages/MySQLdb/cursors.pyc -lib/%%PYTHON_VERSION%%/site-packages/MySQLdb/cursors.pyo -lib/%%PYTHON_VERSION%%/site-packages/MySQLdb/sets.py -lib/%%PYTHON_VERSION%%/site-packages/MySQLdb/sets.pyc -lib/%%PYTHON_VERSION%%/site-packages/MySQLdb/sets.pyo -lib/%%PYTHON_VERSION%%/site-packages/MySQLdb/times.py -lib/%%PYTHON_VERSION%%/site-packages/MySQLdb/times.pyc -lib/%%PYTHON_VERSION%%/site-packages/MySQLdb/times.pyo -lib/%%PYTHON_VERSION%%/site-packages/_mysql.so -lib/%%PYTHON_VERSION%%/site-packages/_mysql_exceptions.py -lib/%%PYTHON_VERSION%%/site-packages/_mysql_exceptions.pyc -lib/%%PYTHON_VERSION%%/site-packages/_mysql_exceptions.pyo -%%PORTDOCS%%share/doc/py-MySQLdb/MANIFEST -%%PORTDOCS%%share/doc/py-MySQLdb/MySQLdb-1.html -%%PORTDOCS%%share/doc/py-MySQLdb/MySQLdb-2.html -%%PORTDOCS%%share/doc/py-MySQLdb/MySQLdb-3.html -%%PORTDOCS%%share/doc/py-MySQLdb/MySQLdb-4.html -%%PORTDOCS%%share/doc/py-MySQLdb/MySQLdb-FAQ-1.html -%%PORTDOCS%%share/doc/py-MySQLdb/MySQLdb-FAQ-2.html -%%PORTDOCS%%share/doc/py-MySQLdb/MySQLdb-FAQ-3.html -%%PORTDOCS%%share/doc/py-MySQLdb/MySQLdb-FAQ.html -%%PORTDOCS%%share/doc/py-MySQLdb/MySQLdb.html -%%PORTDOCS%%share/doc/py-MySQLdb/README -%%PORTDOCS%%@dirrm share/doc/py-MySQLdb -@dirrm lib/%%PYTHON_VERSION%%/site-packages/MySQLdb/constants -@dirrm lib/%%PYTHON_VERSION%%/site-packages/MySQLdb diff --git a/databases/rrdtool/Makefile b/databases/rrdtool/Makefile deleted file mode 100644 index d0007efddc2b..000000000000 --- a/databases/rrdtool/Makefile +++ /dev/null @@ -1,40 +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.33 -CATEGORIES= net -MASTER_SITES= http://people.ee.ethz.ch/~oetiker/webtools/rrdtool/pub/ - -MAINTAINER= demon@FreeBSD.org - -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} -CFLAGS:= ${CFLAGS:N-ffast-math} - -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 rrdtutorial.es.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 aedd58977a94..000000000000 --- a/databases/rrdtool/distinfo +++ /dev/null @@ -1 +0,0 @@ -MD5 (rrdtool-1.0.33.tar.gz) = 54bb6daf131cdc4bbe2bcf005bf583a5 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 26d5410e4faf..000000000000 --- a/databases/rrdtool/files/patch-ac +++ /dev/null @@ -1,21 +0,0 @@ ---- Makefile.in.orig Wed Oct 4 13:09:37 2000 -+++ Makefile.in Wed Oct 4 13:10:39 2000 -@@ -383,12 +383,12 @@ - - # lets schedule the perl stuff for installation - # the special call to install-sh is because the -d switch is not portable --install-data-local: -- ./config/mkinstalldirs $(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 -+# ./config/mkinstalldirs $(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 fde216a89988..000000000000 --- a/databases/rrdtool/files/patch-ag +++ /dev/null @@ -1,11 +0,0 @@ ---- contrib/Makefile.in.orig Thu Feb 22 12:56:40 2001 -+++ contrib/Makefile.in Thu Feb 22 12:56:57 2001 -@@ -87,7 +87,7 @@ - ZLIB_LIB_DIR = @ZLIB_LIB_DIR@ - - SUBDIRS = trytime --contribdir = $(prefix)/contrib -+contribdir = $(prefix)/share/examples/rrdtool - contrib_DATA = README - EXTRA_DIST = rrdview log2rrd rrd-file-icon rrdproc rrdlastds add_ds killspike rrdfetchnames snmpstats rrdexplorer php3 php4 - mkinstalldirs = $(SHELL) $(top_srcdir)/config/mkinstalldirs 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/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 3afc8fccadcc..000000000000 --- a/databases/rrdtool/pkg-plist +++ /dev/null @@ -1,85 +0,0 @@ -bin/rrdtool -bin/rrdcgi -bin/trytime -bin/rrdupdate -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/trytime/trytime.c -share/examples/rrdtool/trytime/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/rrdtutorial.es.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/rrdtutorial.es.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/rrdtutorial.es.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/trytime -@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 d0007efddc2b..000000000000 --- a/databases/rrdtool10/Makefile +++ /dev/null @@ -1,40 +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.33 -CATEGORIES= net -MASTER_SITES= http://people.ee.ethz.ch/~oetiker/webtools/rrdtool/pub/ - -MAINTAINER= demon@FreeBSD.org - -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} -CFLAGS:= ${CFLAGS:N-ffast-math} - -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 rrdtutorial.es.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 aedd58977a94..000000000000 --- a/databases/rrdtool10/distinfo +++ /dev/null @@ -1 +0,0 @@ -MD5 (rrdtool-1.0.33.tar.gz) = 54bb6daf131cdc4bbe2bcf005bf583a5 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 26d5410e4faf..000000000000 --- a/databases/rrdtool10/files/patch-ac +++ /dev/null @@ -1,21 +0,0 @@ ---- Makefile.in.orig Wed Oct 4 13:09:37 2000 -+++ Makefile.in Wed Oct 4 13:10:39 2000 -@@ -383,12 +383,12 @@ - - # lets schedule the perl stuff for installation - # the special call to install-sh is because the -d switch is not portable --install-data-local: -- ./config/mkinstalldirs $(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 -+# ./config/mkinstalldirs $(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 fde216a89988..000000000000 --- a/databases/rrdtool10/files/patch-ag +++ /dev/null @@ -1,11 +0,0 @@ ---- contrib/Makefile.in.orig Thu Feb 22 12:56:40 2001 -+++ contrib/Makefile.in Thu Feb 22 12:56:57 2001 -@@ -87,7 +87,7 @@ - ZLIB_LIB_DIR = @ZLIB_LIB_DIR@ - - SUBDIRS = trytime --contribdir = $(prefix)/contrib -+contribdir = $(prefix)/share/examples/rrdtool - contrib_DATA = README - EXTRA_DIST = rrdview log2rrd rrd-file-icon rrdproc rrdlastds add_ds killspike rrdfetchnames snmpstats rrdexplorer php3 php4 - mkinstalldirs = $(SHELL) $(top_srcdir)/config/mkinstalldirs 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/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 3afc8fccadcc..000000000000 --- a/databases/rrdtool10/pkg-plist +++ /dev/null @@ -1,85 +0,0 @@ -bin/rrdtool -bin/rrdcgi -bin/trytime -bin/rrdupdate -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/trytime/trytime.c -share/examples/rrdtool/trytime/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/rrdtutorial.es.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/rrdtutorial.es.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/rrdtutorial.es.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/trytime -@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 1d7651da2a34..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= postgres -PORTVERSION= 0.6.5 -CATEGORIES= databases ruby -MASTER_SITES= http://www.postgresql.jp/interfaces/ruby/archive/ -PKGNAMEPREFIX= ${RUBY_PKGNAMEPREFIX} -DISTNAME= ruby-${PORTNAME}-${PORTVERSION} -DIST_SUBDIR= ruby - -MAINTAINER= knu@FreeBSD.org - -LIB_DEPENDS= pq.2:${PORTSDIR}/databases/postgresql7 - -USE_RUBY= yes -USE_RUBY_EXTCONF= yes - -.if defined(WITH_OLD_LAYOUT) -CONFIGURE_ARGS= --with-pgsql-include-dir="${LOCALBASE}/pgsql/include" \ - --with-pgsql-lib-dir="${LOCALBASE}/pgsql/lib" -.else -CONFIGURE_ARGS= --with-pgsql-include-dir="${LOCALBASE}/include/pgsql" -.endif -INSTALL_TARGET= site-install - -DOCS_EN= ChangeLog README doc/postgres.html -DOCS_JA= README.jp doc/postgres.jp.html - -post-install: -.if !defined(NOPORTDOCS) - ${MKDIR} ${RUBY_EXAMPLESDIR}/postgres - ${INSTALL_DATA} ${WRKSRC}/sample/*.rb ${RUBY_EXAMPLESDIR}/postgres/ - ${MKDIR} ${RUBY_DOCDIR}/postgres/ja -.for f in ${DOCS_EN} - ${INSTALL_DATA} ${WRKSRC}/${f} ${RUBY_DOCDIR}/postgres/ -.endfor -.for f in ${DOCS_JA} - ${INSTALL_DATA} ${WRKSRC}/${f} ${RUBY_DOCDIR}/postgres/ja/ -.endfor -.endif - -.include <bsd.port.mk> diff --git a/databases/rubygem-postgres/distinfo b/databases/rubygem-postgres/distinfo deleted file mode 100644 index b25dd1dd6058..000000000000 --- a/databases/rubygem-postgres/distinfo +++ /dev/null @@ -1 +0,0 @@ -MD5 (ruby/ruby-postgres-0.6.5.tar.gz) = ec0b248a887d1b5d2ff4622583c28c8a 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 074748923a80..000000000000 --- a/databases/rubygem-postgres/pkg-descr +++ /dev/null @@ -1,7 +0,0 @@ -This is an extention module to access PostgreSQL database from Ruby. -This library works with PostgreSQL 6.4/6.5 and 7.0/7.1. - -Authors: Yukihiro Matsumoto <matz@ruby-lang.org> - Eiji Matsumoto <usagi@ruby.club.or.jp> - Noboru Saitou <noborus@zetabits.com> (current maintainer) -WWW: http://www.postgresql.jp/interfaces/ruby/archive/ diff --git a/databases/rubygem-postgres/pkg-plist b/databases/rubygem-postgres/pkg-plist deleted file mode 100644 index 6e2e16172337..000000000000 --- a/databases/rubygem-postgres/pkg-plist +++ /dev/null @@ -1,15 +0,0 @@ -%%RUBY_SITEARCHLIBDIR%%/postgres.so -%%PORTDOCS%%%%RUBY_EXAMPLESDIR%%/postgres/losample.rb -%%PORTDOCS%%%%RUBY_EXAMPLESDIR%%/postgres/psql.rb -%%PORTDOCS%%%%RUBY_EXAMPLESDIR%%/postgres/psqlHelp.rb -%%PORTDOCS%%%%RUBY_EXAMPLESDIR%%/postgres/test1.rb -%%PORTDOCS%%%%RUBY_EXAMPLESDIR%%/postgres/test2.rb -%%PORTDOCS%%%%RUBY_EXAMPLESDIR%%/postgres/test4.rb -%%PORTDOCS%%@dirrm %%RUBY_EXAMPLESDIR%%/postgres -%%PORTDOCS%%%%RUBY_DOCDIR%%/postgres/ChangeLog -%%PORTDOCS%%%%RUBY_DOCDIR%%/postgres/README -%%PORTDOCS%%%%RUBY_DOCDIR%%/postgres/postgres.html -%%PORTDOCS%%%%RUBY_DOCDIR%%/postgres/ja/README.jp -%%PORTDOCS%%%%RUBY_DOCDIR%%/postgres/ja/postgres.jp.html -%%PORTDOCS%%@dirrm %%RUBY_DOCDIR%%/postgres/ja -%%PORTDOCS%%@dirrm %%RUBY_DOCDIR%%/postgres diff --git a/databases/sqlite2/Makefile b/databases/sqlite2/Makefile deleted file mode 100644 index a08f79690cde..000000000000 --- a/databases/sqlite2/Makefile +++ /dev/null @@ -1,65 +0,0 @@ -# ex:ts=8 -# New ports collection makefile for: sqlite -# Date created: Feb 21, 2001 -# Whom: Ying-Chieh Liao <ijliao@FreeBSD.org> -# -# $FreeBSD$ -# - -PORTNAME= sqlite -PORTVERSION= 1.0.32 -CATEGORIES= databases -MASTER_SITES= http://www.hwaci.com/sw/sqlite/ - -MAINTAINER= ports@FreeBSD.org - -LIB_DEPENDS= gdbm.2:${PORTSDIR}/databases/gdbm \ - tcl${TCL_VER:S/.//}:${PORTSDIR}/lang/tcl${TCL_VER:S/.//} -BUILD_DEPENDS= lemon:${PORTSDIR}/devel/lemon - -MAKEFILE= ${FILESDIR}/Makefile.bsd -MAKE_ARGS+= -j2 -MAKE_ENV+= TCL_VER=${TCL_VER} -TCL_VER?= 8.3 - -GDBM_TOOLS= gdbmdump gdbmstat - -post-build: test -.for p in ${GDBM_TOOLS} - cd ${WRKSRC}/tool && ${MAKE} CFLAGS="${CFLAGS} -I${PREFIX}/include" \ - LDADD="-L${PREFIX}/lib -lgdbm" PROG=$p NOMAN=1 \ - -f bsd.prog.mk -.endfor - cd ${WRKSRC} && ${MAKE} VPATH=${WRKSRC}/src \ - CFLAGS="${CFLAGS} -I${WRKSRC} -I${WRKSRC}/src" \ - LDADD="-L${WRKSRC} -lsqlite" PROG=sqlite SRCS=shell.c NOMAN=1 \ - -f bsd.prog.mk -.ifndef NOPORTDOCS - cd ${WRKSRC}/www && ${SETENV} ${MAKE_ENV} \ - ${MAKE} ${MAKE_ARGS} -f ${FILESDIR}/Makefile.docs -.endif - -post-install: -.for p in ${GDBM_TOOLS} - cd ${WRKSRC}/tool && ${MAKE} BINDIR="${PREFIX}/bin" \ - PROG=$p NOMAN=1 -f bsd.prog.mk install -.endfor - cd ${WRKSRC} && ${MAKE} PROG=sqlite NOMAN=1 BINDIR="${PREFIX}/bin" \ - -f bsd.prog.mk install - ${MKDIR} ${PREFIX}/lib/sqlite - ${INSTALL_DATA} ${FILESDIR}/pkgIndex.tcl ${PREFIX}/lib/sqlite/ -.ifndef NOPORTDOCS - ${MKDIR} ${PREFIX}/share/doc/sqlite - ${INSTALL_DATA} ${WRKSRC}/www/*.html ${WRKSRC}/www/*.png \ - ${PREFIX}/share/doc/sqlite -.endif - -test: - # ------------------------------------------------------- - # Running the vendor's tests -- there should be 0 errors. - # ------------------------------------------------------- - cd ${WRKSRC} && ${PREFIX}/bin/tclsh${TCL_VER} ${WRKSRC}/test/all.test \ - ${WRKSRC}/libsqlite.so - # ------------------------------------------------------- - -.include <bsd.port.mk> diff --git a/databases/sqlite2/distinfo b/databases/sqlite2/distinfo deleted file mode 100644 index 311a0ded1b81..000000000000 --- a/databases/sqlite2/distinfo +++ /dev/null @@ -1 +0,0 @@ -MD5 (sqlite-1.0.32.tar.gz) = 308be6d8b9e9514150ef4f89902b2fbc diff --git a/databases/sqlite2/files/Makefile.bsd b/databases/sqlite2/files/Makefile.bsd deleted file mode 100644 index 1e04897443de..000000000000 --- a/databases/sqlite2/files/Makefile.bsd +++ /dev/null @@ -1,37 +0,0 @@ -TCL_VER ?= 8.3 -TCL_DVER = ${TCL_VER:S/.//} -PREFIX ?= /usr/local - -CFLAGS += -DHAVE_READLINE=1 -DOS_UNIX=1 -DOS_WIN=0 -CFLAGS += -I${PREFIX}/include/tcl${TCL_VER} -I${PREFIX}/include -CFLAGS += -I${.CURDIR}/src -I${.CURDIR} - -LDADD += -lreadline -L${PREFIX}/lib -ltcl${TCL_DVER} -lm -lgdbm - -.PATH: ${.CURDIR}/src - -SRCS = btree.c build.c dbbe.c dbbegdbm.c dbbemem.c delete.c expr.c \ - insert.c main.c pager.c parse.y printf.c random.c select.c \ - shell.c table.c tokenize.c update.c util.c vdbe.c where.c \ - tclsqlite.c - -INCS = sqlite.h - -LIB = sqlite -SHLIB_MAJOR= 1 -SHLIB_MINOR= 0 - -sqlite.h: sqlite.h.in VERSION - sed -e s/--VERS--/`cat ${.CURDIR}/VERSION`/ \ - -e s/--ENCODING--/ISO8859/ \ - ${.CURDIR}/src/sqlite.h.in > sqlite.h - -parse.h parse.c: parse.y - lemon o=parse ${.ALLSRC} - -INCDIR = ${PREFIX}/include -LIBDIR = ${PREFIX}/lib - -.include <bsd.lib.mk> - -${OBJS} ${SOBJS}: parse.h sqlite.h diff --git a/databases/sqlite2/files/Makefile.docs b/databases/sqlite2/files/Makefile.docs deleted file mode 100644 index 77d95a57d548..000000000000 --- a/databases/sqlite2/files/Makefile.docs +++ /dev/null @@ -1,25 +0,0 @@ -TCL_VER ?= 8.3 - -SRCS != echo ${.CURDIR}/*.tcl -DOCS = ${SRCS:Nopcode.tcl:.tcl=.html} -CODE != echo ${.CURDIR}/../src/*.[chy] - -all: ${DOCS} opcode.html - -opcode.html:: opcode.tcl vdbe.c - tclsh${TCL_VER} ${.ALLSRC} > opcode.html - -.SUFFIXES: .tcl .html - -.tcl.html: - tclsh${TCL_VER} $*.tcl > $*.html - -${DOCS}: last_change - -.PATH: ${.CURDIR}/../src - -last_change: ${CODE} - awk '/\$$Id:/ && NF > 4 { \ - if ($$2 == "\$$Id:") print $$5 "," $$6; \ - else print $$6 "," $$7 \ - }' ${.ALLSRC} | sort -t, | tail -1 > lc && mv lc last_change diff --git a/databases/sqlite2/files/patch-docs b/databases/sqlite2/files/patch-docs deleted file mode 100644 index ce5498da4d16..000000000000 --- a/databases/sqlite2/files/patch-docs +++ /dev/null @@ -1,30 +0,0 @@ ---- www/index.tcl Thu Apr 5 12:49:44 2001 -+++ www/index.tcl Fri Jun 8 17:46:08 2001 -@@ -117,12 +117,6 @@ - --puts {<h2>Download</h2> -+puts "<!-- h2>Download</h2 --><h3>This installation of Sqlite $vers was made" -+puts {by the <A href="http://www.freebsd.org/cgi/ports.cgi?query=sqlite">FreeBSD -+Port</A>.</h3>} - --<p>You can download a tarball containing all source --code for SQLite --} --puts "version $vers" --puts { --(including the TCL scripts that generate the --HTML files for this website) at <a href="sqlite.tar.gz">sqlite.tar.gz</a>.} --puts "This is a [file size sqlite.tar.gz] byte download." - puts {</p> ---- www/dynload.tcl Sun Feb 11 11:58:22 2001 -+++ www/dynload.tcl Mon Jun 11 19:09:47 2001 -@@ -15,3 +15,3 @@ - <i>This note was contributed by --<a href="bsaunder@tampabay.rr.com.nospam">Bill Saunders</a>. Thanks, Bill!</i> -+<a href="mailto:bsaunder@tampabay.rr.com.nospam">Bill Saunders</a>. Thanks, Bill!</i> - -@@ -67,3 +67,3 @@ - Have fun....</p></li> --</ul> -+</ol> - diff --git a/databases/sqlite2/files/patch-test b/databases/sqlite2/files/patch-test deleted file mode 100644 index 3adee03362f9..000000000000 --- a/databases/sqlite2/files/patch-test +++ /dev/null @@ -1,12 +0,0 @@ ---- test/all.test Tue Feb 6 08:29:31 2001 -+++ test/all.test Fri Jun 8 16:28:34 2001 -@@ -27,2 +27,3 @@ - set testdir [file dirname $argv0] -+load [lindex $argv 0] - source $testdir/tester.tcl ---- test/tableapi.test.orig Wed Apr 11 23:28:43 2001 -+++ test/tableapi.test Mon Sep 3 21:24:06 2001 -@@ -30,2 +30,3 @@ - source $testdir/tester.tcl -+set ::big_str "" - diff --git a/databases/sqlite2/files/pkgIndex.tcl b/databases/sqlite2/files/pkgIndex.tcl deleted file mode 100644 index df0b6bb0a82d..000000000000 --- a/databases/sqlite2/files/pkgIndex.tcl +++ /dev/null @@ -1 +0,0 @@ -package ifneeded sqlite 1.0 [list load $dir/../libsqlite.so] diff --git a/databases/sqlite2/pkg-comment b/databases/sqlite2/pkg-comment deleted file mode 100644 index 750bd919d8c7..000000000000 --- a/databases/sqlite2/pkg-comment +++ /dev/null @@ -1 +0,0 @@ -SQL library that uses GDBM as its underlying file storage mechanism diff --git a/databases/sqlite2/pkg-descr b/databases/sqlite2/pkg-descr deleted file mode 100644 index 9637e448f5bb..000000000000 --- a/databases/sqlite2/pkg-descr +++ /dev/null @@ -1,8 +0,0 @@ -SQLite is an SQL database library that uses GDBM as its underlying -file storage mechanism. Programs that link the SQLite library can -have SQL database access without running a separate RDBMS process. -The distribution comes with a standalone command-line access program -(sqlite) that can be used to administer an SQLite database and which -serves as an example of how to use the SQLite library. - -WWW: http://www.hwaci.com/sw/sqlite/ diff --git a/databases/sqlite2/pkg-plist b/databases/sqlite2/pkg-plist deleted file mode 100644 index 1004425fe405..000000000000 --- a/databases/sqlite2/pkg-plist +++ /dev/null @@ -1,25 +0,0 @@ -bin/sqlite -bin/gdbmdump -bin/gdbmstat -lib/libsqlite.a -lib/libsqlite_p.a -lib/libsqlite.so -lib/libsqlite.so.1.0 -lib/sqlite/pkgIndex.tcl -@dirrm lib/sqlite -include/sqlite.h -%%PORTDOCS%%share/doc/sqlite/arch.html -%%PORTDOCS%%share/doc/sqlite/arch.png -%%PORTDOCS%%share/doc/sqlite/c_interface.html -%%PORTDOCS%%share/doc/sqlite/changes.html -%%PORTDOCS%%share/doc/sqlite/crosscompile.html -%%PORTDOCS%%share/doc/sqlite/dynload.html -%%PORTDOCS%%share/doc/sqlite/fileformat.html -%%PORTDOCS%%share/doc/sqlite/index.html -%%PORTDOCS%%share/doc/sqlite/lang.html -%%PORTDOCS%%share/doc/sqlite/mingw.html -%%PORTDOCS%%share/doc/sqlite/opcode.html -%%PORTDOCS%%share/doc/sqlite/sqlite.html -%%PORTDOCS%%share/doc/sqlite/tclsqlite.html -%%PORTDOCS%%share/doc/sqlite/vdbe.html -%%PORTDOCS%%@dirrm share/doc/sqlite |