From owner-freebsd-ports Wed Jan 6 18:50:09 1999 Return-Path: Received: (from majordom@localhost) by hub.freebsd.org (8.8.8/8.8.8) id SAA16132 for freebsd-ports-outgoing; Wed, 6 Jan 1999 18:50:09 -0800 (PST) (envelope-from owner-freebsd-ports@FreeBSD.ORG) Received: from freefall.freebsd.org (freefall.FreeBSD.ORG [204.216.27.21]) by hub.freebsd.org (8.8.8/8.8.8) with ESMTP id SAA16117 for ; Wed, 6 Jan 1999 18:50:06 -0800 (PST) (envelope-from gnats@FreeBSD.org) Received: (from gnats@localhost) by freefall.freebsd.org (8.8.8/8.8.5) id SAA26244; Wed, 6 Jan 1999 18:50:00 -0800 (PST) Received: from trumpet.partitur.se (trumpet.partitur.se [193.219.246.210]) by hub.freebsd.org (8.8.8/8.8.8) with ESMTP id SAA15373; Wed, 6 Jan 1999 18:43:36 -0800 (PST) (envelope-from girgen@trumpet.partitur.se) Received: (from girgen@localhost) by trumpet.partitur.se (8.9.1/8.8.8) id DAA95075; Thu, 7 Jan 1999 03:43:07 +0100 (CET) (envelope-from girgen) Message-Id: <199901070243.DAA95075@trumpet.partitur.se> Date: Thu, 7 Jan 1999 03:43:07 +0100 (CET) From: girgen@partitur.se Reply-To: girgen@partitur.se To: FreeBSD-gnats-submit@FreeBSD.ORG, andreas@FreeBSD.ORG X-Send-Pr-Version: 3.2 Subject: ports/9356: PostgreSQL distfiles unfetchable, updated to 6.4.2 [patch included] Sender: owner-freebsd-ports@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.org >Number: 9356 >Category: ports >Synopsis: PostgreSQL distfiles unfetchable, updated to 6.4.2 [patch included] >Confidential: no >Severity: non-critical >Priority: medium >Responsible: freebsd-ports >State: open >Quarter: >Keywords: >Date-Required: >Class: change-request >Submitter-Id: current-users >Arrival-Date: Wed Jan 6 18:50:00 PST 1999 >Closed-Date: >Last-Modified: >Originator: Palle Girgensohn >Release: FreeBSD 3.0-CURRENT #1 >Organization: Partitur >Environment: Successfully built on FreeBSD puka.partitur.se 2.2.7-STABLE FreeBSD 2.2.7-STABLE #0: Mon Oct 12 01:45:24 CEST 1998 girgen@puka.partitur.se:/usr/src/sys/compile/PUKA i386 and FreeBSD trumpet.partitur.se 3.0-CURRENT FreeBSD 3.0-CURRENT #1: Mon Jan 4 20:26:55 CET 1999 girgen@trumpet.partitur.se:/disk3/src/sys/compile/TRUMPET i386 >Description: Here comes patches that will make postgres into version 6.4.2 Also, added a USE_JDBC switch, to build and install the Java JDBC support. Docs are maked and installed as html and ps.gz instead of sgml. Added a comment about CFLAGS (breaks on STABLE with -O2 or -O3; no big surpise, many things do) and some tips on upgrading. Fixed naming of shared libs under ELF, and this port should also work better on non-ELF 3.0 systems (using PORTOBJFORMAT). >How-To-Repeat: >Fix: diff -urN postgresql/Makefile postgresql.new/Makefile --- postgresql/Makefile Wed Dec 23 18:37:03 1998 +++ postgresql.new/Makefile Thu Jan 7 03:21:12 1999 @@ -5,9 +5,13 @@ # # $Id: Makefile,v 1.31 1998/12/23 17:37:03 billf Exp $ # +# Note! All of postgres will probably not build with optimization higher than 1 (-O) +# I reommend to always use CFLAGS= -O -pipe in /etc/make.conf +# +# /Palle +# -DISTNAME= postgresql-v6.4 -PKGNAME= postgresql-6.4 +DISTNAME= postgresql-6.4.2 CATEGORIES= databases MASTER_SITES= ftp://ftp.postgresql.org/pub/ @@ -23,6 +27,13 @@ WITH_TCL= --with-tcl --with-tclconfig="${PREFIX}/lib/tcl8.0 ${PREFIX}/lib/tk8.0" .endif +# if you want jdbc, type make USE_JDBC=yes +# Honors JAVA_HOME if you have it set, and don't want the dependency. +.if defined(USE_JDBC) +JAVA_HOME?= ${LOCALBASE}/jdk1.1.7 +BUILD_DEPENDS= ${JAVA_HOME}/bin/javac:${PORTSDIR}/lang/jdk +.endif + NO_PACKAGE= "Requires pgsql uid" WRKSRC= ${WRKDIR}/${DISTNAME}/src @@ -32,8 +43,8 @@ CONFIGURE_ARGS= --prefix=${PREFIX}/pgsql \ --enable-locale \ --with-template=`uname -s | ${TR} '[A-Z]' '[a-z]'` \ - --with-includes="/usr/local/include ${TCL_INCDIR} ${TK_INCDIR}" ${WITH_TCL} \ - --with-libraries=/usr/local/lib + --with-includes="${LOCALBASE}/include ${TCL_INCDIR} ${TK_INCDIR}" ${WITH_TCL} \ + --with-libraries=${LOCALBASE}/lib INSTALL_TARGET= install install-man @@ -66,6 +77,13 @@ @${ECHO_MSG} "Building PostgreSQL with \"libpgtcl\"." .endif +.if !defined(USE_JDBC) + @ ${ECHO_MSG} "To build Java (JDBC) support, type:" + @ ${ECHO_MSG} " make USE_JDBC=yes" +.else + @ ${ECHO_MSG} "Building PostgreSQL with \"postgresql.jar\"." +.endif + post-patch: @ ${MV} ${WRKSRC}/template/freebsd ${WRKSRC}/template/freebsd.orig @@ -74,14 +92,38 @@ ${WRKSRC}/template/freebsd.orig >> ${WRKSRC}/template/freebsd post-build: - @ ${ECHO} "------------------------------------------------------------" - @ ${ECHO} "Dump existing databases, before installing new db version !!" - @ ${ECHO} "Detailed instructions, see INSTALL file under ${WRKDIR}... " - @ ${ECHO} "------------------------------------------------------------" +.if defined(USE_TCL) + @ ${MV} ${WRKSRC}/bin/pgaccess/pgaccess.tcl \ + ${WRKSRC}/bin/pgaccess/pgaccess.tcl.orig + @ ${SED} -e "s=/usr/bin/wish=`/usr/bin/which wish`=" \ + < ${WRKSRC}/bin/pgaccess/pgaccess.tcl.orig \ + > ${WRKSRC}/bin/pgaccess/pgaccess.tcl +.endif + +.if defined(USE_JDBC) + @ cd ${WRKSRC}/interfaces/jdbc && ${GMAKE} +.if !defined(NOPORTDOCS) + @ cd ${WRKSRC}/interfaces/jdbc && ${GMAKE} examples +.endif +.endif + + @ ${ECHO} "----------------------------------------------------------------" + @ ${ECHO} "Migration to v6.4.2:" + @ ${ECHO} " A dump/restore is not required for those upgrading from 6.4." + @ ${ECHO} " A dump/restore using pg_dump or pg_dumpall is" + @ ${ECHO} " required for those wishing to migrate data from pre-6.4" + @ ${ECHO} " releases of Postgres. pg_upgrade may be helpful for those" + @ ${ECHO} " upgrading from 6.3.*." + @ ${ECHO} "Read more on pg_upgrade using this command line:" + @ ${ECHO} " groff -Tascii -man ${WRKSRC}/man/pg_upgrade.1" + @ ${ECHO} "" + @ ${ECHO} "Dump existing databases, before installing new db version!!!" + @ ${ECHO} "Detailed instructions, see" + @ ${ECHO} "${WRKDIR}/${DISTNAME}/INSTALL" pre-install: .if defined(PACKAGE_BUILDING) - /bin/rm -rf ${PREFIX}/pgsql + ${RM} -rf ${PREFIX}/pgsql .endif @ ${MKDIR} ${PREFIX}/pgsql @ ${SETENV} ${MAKE_ENV} perl ${SCRIPTDIR}/createuser @@ -118,9 +160,35 @@ @ chmod 554 ${PREFIX}/etc/rc.d/pgsql.sh @ chown root.pgsql ${PREFIX}/etc/rc.d/pgsql.sh @ ${INSTALL_DATA} ${FILESDIR}/post-install-notes ${PREFIX}/pgsql + +.if defined(USE_JDBC) + @ ${INSTALL_DATA} -d ${PREFIX}/share/java + @ ${INSTALL_DATA} ${WRKSRC}/interfaces/jdbc/postgresql.jar \ + ${PREFIX}/share/java/postgresql.jar + @ ${ECHO_MSG} "---------------------------------------------------------" + @ ${ECHO_MSG} "Putting postgresql.jar in ${PREFIX}/share/java" + @ ${ECHO_MSG} "Add this to your $CLASSPATH!" + @ ${ECHO_MSG} "---------------------------------------------------------" +.if !defined(NOPORTDOCS) + @ ${INSTALL_DATA} -d ${PREFIX}/share/examples/pgsql/jdbc + @ ${INSTALL_DATA} ${WRKSRC}/interfaces/jdbc/example/*java \ + ${WRKSRC}/interfaces/jdbc/example/*class \ + ${PREFIX}/share/examples/pgsql/jdbc + @ ${INSTALL_DATA} ${WRKSRC}/interfaces/jdbc/README* \ + ${PREFIX}/share/examples/pgsql/jdbc + @ ${ECHO_MSG} "---------------------------------------------------------" + @ ${ECHO_MSG} "Putting jdbc examples into ${PREFIX}/share/examples/pgsql" + @ ${ECHO_MSG} "---------------------------------------------------------" +.endif +.endif + .if !defined(NOPORTDOCS) ${MKDIR} ${PREFIX}/share/doc/pgsql - ${CP} -r ${WRKDIR}/${DISTNAME}/doc/* ${PREFIX}/share/doc/pgsql + @ ${GMAKE} -C ${WRKSRC}/../doc install + ${INSTALL_MAN} ${WRKDIR}/${DISTNAME}/doc/FAQ* ${PREFIX}/share/doc/pgsql + ${INSTALL_MAN} ${WRKDIR}/${DISTNAME}/doc/README* ${PREFIX}/share/doc/pgsql + ${INSTALL_MAN} ${WRKDIR}/${DISTNAME}/doc/TODO* ${PREFIX}/share/doc/pgsql + ${INSTALL_MAN} ${WRKDIR}/${DISTNAME}/doc/*ps.gz ${PREFIX}/share/doc/pgsql .endif .if !defined(BATCH) @ more -e ${FILESDIR}/post-install-notes diff -urN postgresql/files/md5 postgresql.new/files/md5 --- postgresql/files/md5 Sun Nov 22 22:33:19 1998 +++ postgresql.new/files/md5 Mon Jan 4 11:24:59 1999 @@ -1 +1 @@ -MD5 (postgresql-v6.4.tar.gz) = 8a6e224f90b0201757eb05aa0068bfa9 +MD5 (postgresql-6.4.2.tar.gz) = 4f5e0409921892ca08fff2d8c099b3d7 diff -urN postgresql/files/post-install-notes postgresql.new/files/post-install-notes --- postgresql/files/post-install-notes Sun Oct 5 12:23:18 1997 +++ postgresql.new/files/post-install-notes Thu Jan 7 00:27:20 1999 @@ -3,6 +3,8 @@ implementation guides. These can be found at: http://www.PostgreSQL.org/docs +or + ${PREFIX}/share/doc/pgsql You may wish to subscribe to the PostgreSQL user-support mailing list. Send an e-mail to pgsql-questions-request@postgresql.org with the @@ -10,4 +12,7 @@ If you build PostgreSQL with TCL support, then you can use the TCL/TK based database frontend "pgaccess" for database operations. + +** Please note that pgaccess is now part of the PostgreSQL distribution, +** and you should probably delete earlier versions. diff -urN postgresql/patches/patch-an postgresql.new/patches/patch-an --- postgresql/patches/patch-an Sun Nov 22 22:34:00 1998 +++ postgresql.new/patches/patch-an Mon Jan 4 11:24:21 1999 @@ -1,11 +1,11 @@ ---- pl/tcl/Makefile.orig Fri Nov 13 00:08:57 1998 -+++ pl/tcl/Makefile Fri Nov 13 00:14:50 1998 -@@ -44,8 +44,16 @@ - # they should work if the shared build of tcl was successful - # on this system. - # +--- pl/tcl/Makefile.orig Mon Dec 14 00:47:17 1998 ++++ pl/tcl/Makefile Mon Dec 28 16:19:54 1998 +@@ -55,8 +55,16 @@ + SHLIB_EXTRA_LIBS= + endif + -%$(TCL_SHLIB_SUFFIX): %.o -- $(TCL_SHLIB_LD) -o $@ $< $(TCL_SHLIB_LD_LIBS) $(TCL_LIB_SPEC) $(TCL_LIBS) +- $(TCL_SHLIB_LD) -o $@ $< $(TCL_LIB_SPEC) $(SHLIB_EXTRA_LIBS) +# XXX - This rule is already present - and this technique won't work anyway, +# since the twice-eval'd value of TCL_SHLIB_LD in FreeBSD ELF: +# @@ -15,7 +15,7 @@ +# generally messing things up. +# +#%$(TCL_SHLIB_SUFFIX): %.o -+# $(TCL_SHLIB_LD) -o $@ $< $(TCL_SHLIB_LD_LIBS) $(TCL_LIB_SPEC) $(TCL_LIBS) ++# $(TCL_SHLIB_LD) -o $@ $< $(TCL_LIB_SPEC) $(SHLIB_EXTRA_LIBS) # diff -urN postgresql/patches/patch-aq postgresql.new/patches/patch-aq --- postgresql/patches/patch-aq Thu Jan 1 01:00:00 1970 +++ postgresql.new/patches/patch-aq Mon Jan 4 14:24:31 1999 @@ -0,0 +1,16 @@ +--- /home/girgen/postgresql-6.4.2/src/Makefile.shlib Mon Nov 30 01:31:19 1998 ++++ Makefile.shlib Mon Jan 4 12:41:47 1999 +@@ -59,10 +59,11 @@ + ifeq ($(PORTNAME), freebsd) + ifdef BSD_SHLIB + install-shlib-dep := install-shlib +- shlib := lib$(NAME)$(DLSUFFIX).$(SO_MAJOR_VERSION).$(SO_MINOR_VERSION) + ifdef ELF_SYSTEM +- LDFLAGS_SL := -x -Bshareable ++ shlib := lib$(NAME)$(DLSUFFIX).$(SO_MAJOR_VERSION) ++ LDFLAGS_SL := -x -shared + else ++ shlib := lib$(NAME)$(DLSUFFIX).$(SO_MAJOR_VERSION).$(SO_MINOR_VERSION) + LDFLAGS_SL := -x -Bshareable -Bforcearchive + endif + CFLAGS += $(CFLAGS_SL) diff -urN postgresql/patches/patch-ar postgresql.new/patches/patch-ar --- postgresql/patches/patch-ar Thu Jan 1 01:00:00 1970 +++ postgresql.new/patches/patch-ar Wed Jan 6 19:09:24 1999 @@ -0,0 +1,20 @@ +--- /usr/local/src/postgresql-v6.4/src/configure Mon Nov 2 06:30:06 1998 ++++ configure Fri Nov 20 20:33:36 1998 +@@ -617,7 +617,7 @@ + aux*) os=aux need_tas=no ;; + linux*) os=linux need_tas=no ;; + bsdi*) os=bsdi need_tas=no ;; +- freebsd3*) os=freebsd need_tas=no elf=yes ;; ++ freebsd3*) os=freebsd need_tas=no ;; + freebsd1*|freebsd2*) os=freebsd need_tas=no ;; + netbsd*|openbsd*) os=bsd need_tas=no ;; + dgux*) os=dgux need_tas=no ;; +@@ -649,7 +649,7 @@ + exit;; + esac + +-if test "X$elf" = "Xyes" ++if test "X$PORTOBJFORMAT" = "Xelf" + then + ELF_SYS=true + else diff -urN postgresql/patches/patch-as postgresql.new/patches/patch-as --- postgresql/patches/patch-as Thu Jan 1 01:00:00 1970 +++ postgresql.new/patches/patch-as Wed Jan 6 19:10:12 1999 @@ -0,0 +1,11 @@ +--- Makefile.global.in~ Fri Oct 30 05:53:55 1998 ++++ Makefile.global.in Fri Nov 20 15:19:53 1998 +@@ -79,7 +79,7 @@ + POSTMANDIR= $(POSTGRESDIR)/man + + # Where the formatted documents (e.g., the reference manual) get installed. +-POSTDOCDIR= $(POSTGRESDIR)/doc ++POSTDOCDIR= $(PREFIX)/share/doc/pgsql + + # Where the header files necessary to build frontend programs get installed. + HEADERDIR= $(POSTGRESDIR)/include diff -urN postgresql/patches/patch-at postgresql.new/patches/patch-at --- postgresql/patches/patch-at Thu Jan 1 01:00:00 1970 +++ postgresql.new/patches/patch-at Wed Jan 6 19:10:34 1999 @@ -0,0 +1,19 @@ +--- ../doc/Makefile~ Wed Oct 21 01:14:35 1998 ++++ ../doc/Makefile Fri Nov 20 16:17:33 1998 +@@ -12,7 +12,6 @@ + # + #---------------------------------------------------------------------------- + +-PGDOCS= $(POSTGRESDIR)/doc + SRCDIR= ../src + + TAR= tar +@@ -24,6 +23,8 @@ + ifneq ($(wildcard $(SRCDIR)/Makefile.global), ) + include $(SRCDIR)/Makefile.global + endif ++ ++PGDOCS= $(POSTDOCDIR) + + # Hmm, made this optional but jade _really_ doesn't like them missing + # - thomas 1998-03-01 diff -urN postgresql/pkg/PLIST postgresql.new/pkg/PLIST --- postgresql/pkg/PLIST Tue Dec 22 06:36:02 1998 +++ postgresql.new/pkg/PLIST Thu Jan 7 01:24:38 1999 @@ -1,5 +1,6 @@ etc/rc.d/pgsql.sh pgsql/.profile +pgsql/.msgsrc pgsql/bin/cleardbdir pgsql/bin/createdb pgsql/bin/createuser @@ -15,119 +16,849 @@ pgsql/bin/pg_passwd pgsql/bin/pg_upgrade pgsql/bin/pg_version +pgsql/bin/pgaccess +pgsql/bin/pgtclsh +pgsql/bin/pgtksh pgsql/bin/postgres pgsql/bin/postmaster pgsql/bin/psql -pgsql/data/PG_VERSION -pgsql/data/base/template1/PG_VERSION -pgsql/data/base/template1/pg_aggregate -pgsql/data/base/template1/pg_am -pgsql/data/base/template1/pg_amop -pgsql/data/base/template1/pg_amproc -pgsql/data/base/template1/pg_attrdef -pgsql/data/base/template1/pg_attrdef_adrelid_index +pgsql/lib/global1.bki.source +pgsql/lib/global1.description +pgsql/lib/local1_template1.bki.source +pgsql/lib/local1_template1.description +pgsql/lib/pg_hba.conf.sample +pgsql/lib/pg_geqo.sample +pgsql/lib/libpq.a +pgsql/lib/libpq.so.2 +pgsql/lib/libpq.so +pgsql/lib/libecpg.a +pgsql/lib/libecpg.so.2.6.2 +pgsql/lib/libecpg.so.2.6 +pgsql/lib/libecpg.so +pgsql/lib/libpq++.a +pgsql/lib/libpq++.so.2 +pgsql/lib/libpq++.so +pgsql/lib/libpgtcl.a +pgsql/lib/libpgtcl.so.2 +pgsql/lib/libpgtcl.so +pgsql/lib/plpgsql.so +pgsql/lib/pltcl.so +@exec /usr/bin/env OBJFORMAT=%%PORTOBJFORMAT%% /sbin/ldconfig -m %B +@unexec /usr/bin/env OBJFORMAT=%%PORTOBJFORMAT%% /sbin/ldconfig -R +pgsql/include/fmgr.h +pgsql/include/lib/dllist.h +pgsql/include/libpq/pqcomm.h +pgsql/include/libpq/libpq-fs.h +pgsql/include/utils/geo_decls.h +pgsql/include/utils/elog.h +pgsql/include/utils/palloc.h +pgsql/include/access/attnum.h +pgsql/include/executor/spi.h +pgsql/include/commands/trigger.h +pgsql/include/os.h +pgsql/include/config.h +pgsql/include/c.h +pgsql/include/postgres.h +pgsql/include/postgres_ext.h +pgsql/include/libpq-fe.h +pgsql/include/libpq-int.h +pgsql/include/ecpgerrno.h +pgsql/include/ecpglib.h +pgsql/include/ecpgtype.h +pgsql/include/sqlca.h +pgsql/include/libpq++/pgenv.h +pgsql/include/libpq++/pgconnection.h +pgsql/include/libpq++/pgdatabase.h +pgsql/include/libpq++/pgtransdb.h +pgsql/include/libpq++/pgcursordb.h +pgsql/include/libpq++/pglobject.h +pgsql/include/libpq++.h +pgsql/include/libpgtcl.h +pgsql/data/base/template1/pg_proc +pgsql/data/base/template1/pg_type pgsql/data/base/template1/pg_attribute -pgsql/data/base/template1/pg_attribute_attrelid_index -pgsql/data/base/template1/pg_attribute_relid_attnam_index -pgsql/data/base/template1/pg_attribute_relid_attnum_index pgsql/data/base/template1/pg_class -pgsql/data/base/template1/pg_class_oid_index -pgsql/data/base/template1/pg_class_relname_index -pgsql/data/base/template1/pg_description -pgsql/data/base/template1/pg_description_objoid_index -pgsql/data/base/template1/pg_index -pgsql/data/base/template1/pg_indexes -pgsql/data/base/template1/pg_inheritproc pgsql/data/base/template1/pg_inherits -pgsql/data/base/template1/pg_internal.init -pgsql/data/base/template1/pg_ipl -pgsql/data/base/template1/pg_language -pgsql/data/base/template1/pg_listener -pgsql/data/base/template1/pg_opclass +pgsql/data/base/template1/pg_index +pgsql/data/base/template1/pg_statistic pgsql/data/base/template1/pg_operator +pgsql/data/base/template1/pg_opclass +pgsql/data/base/template1/pg_am +pgsql/data/base/template1/pg_amop +pgsql/data/base/template1/pg_amproc +pgsql/data/base/template1/pg_language pgsql/data/base/template1/pg_parg -pgsql/data/base/template1/pg_proc +pgsql/data/base/template1/pg_aggregate +pgsql/data/base/template1/pg_ipl +pgsql/data/base/template1/pg_inheritproc +pgsql/data/base/template1/pg_rewrite +pgsql/data/base/template1/pg_listener +pgsql/data/base/template1/pg_description +pgsql/data/base/template1/pg_attribute_relid_attnam_index +pgsql/data/base/template1/pg_attribute_relid_attnum_index +pgsql/data/base/template1/pg_attribute_attrelid_index pgsql/data/base/template1/pg_proc_oid_index pgsql/data/base/template1/pg_proc_proname_narg_type_index pgsql/data/base/template1/pg_proc_prosrc_index +pgsql/data/base/template1/pg_type_oid_index +pgsql/data/base/template1/pg_type_typname_index +pgsql/data/base/template1/pg_class_oid_index +pgsql/data/base/template1/pg_class_relname_index +pgsql/data/base/template1/pg_attrdef +pgsql/data/base/template1/pg_attrdef_adrelid_index pgsql/data/base/template1/pg_relcheck pgsql/data/base/template1/pg_relcheck_rcrelid_index -pgsql/data/base/template1/pg_rewrite -pgsql/data/base/template1/pg_rules -pgsql/data/base/template1/pg_statistic -pgsql/data/base/template1/pg_tables pgsql/data/base/template1/pg_trigger pgsql/data/base/template1/pg_trigger_tgrelid_index -pgsql/data/base/template1/pg_type -pgsql/data/base/template1/pg_type_oid_index -pgsql/data/base/template1/pg_type_typname_index +pgsql/data/base/template1/pg_description_objoid_index +pgsql/data/base/template1/PG_VERSION +pgsql/data/base/template1/pg_internal.init pgsql/data/base/template1/pg_user +pgsql/data/base/template1/pg_rules pgsql/data/base/template1/pg_views +pgsql/data/base/template1/pg_tables +pgsql/data/base/template1/pg_indexes +pgsql/data/pg_variable pgsql/data/pg_database -pgsql/data/pg_geqo.sample +pgsql/data/pg_shadow pgsql/data/pg_group -pgsql/data/pg_hba.conf pgsql/data/pg_log +pgsql/data/PG_VERSION +pgsql/data/pg_hba.conf +pgsql/data/pg_geqo.sample pgsql/data/pg_pwd -pgsql/data/pg_shadow -pgsql/data/pg_variable -pgsql/include/access/attnum.h -pgsql/include/c.h -pgsql/include/commands/trigger.h -pgsql/include/config.h -pgsql/include/ecpgerrno.h -pgsql/include/ecpglib.h -pgsql/include/ecpgtype.h -pgsql/include/executor/spi.h -pgsql/include/fmgr.h -pgsql/include/lib/dllist.h -pgsql/include/libpq++.h -pgsql/include/libpq++/pgconnection.h -pgsql/include/libpq++/pgcursordb.h -pgsql/include/libpq++/pgdatabase.h -pgsql/include/libpq++/pgenv.h -pgsql/include/libpq++/pglobject.h -pgsql/include/libpq++/pgtransdb.h -pgsql/include/libpq-fe.h -pgsql/include/libpq-int.h -pgsql/include/libpq/libpq-fs.h -pgsql/include/libpq/pqcomm.h -pgsql/include/os.h -pgsql/include/postgres.h -pgsql/include/postgres_ext.h -pgsql/include/sqlca.h -pgsql/include/utils/elog.h -pgsql/include/utils/geo_decls.h -pgsql/include/utils/palloc.h -pgsql/lib/global1.bki.source -pgsql/lib/global1.description -pgsql/lib/libecpg.a -pgsql/lib/libecpg.so.2.6.2 -pgsql/lib/libecpg.so.2.3 -pgsql/lib/libecpg.so -pgsql/lib/libpq++.a -pgsql/lib/libpq++.so -pgsql/lib/libpq++.so.2.0 -pgsql/lib/libpq++.so.2 -pgsql/lib/libpq.a -pgsql/lib/libpq.so -pgsql/lib/libpq.so.2.0 -pgsql/lib/libpq.so.2 -pgsql/lib/local1_template1.bki.source -pgsql/lib/local1_template1.description -pgsql/lib/pg_geqo.sample -pgsql/lib/pg_hba.conf.sample -pgsql/lib/plpgsql.so -@exec /usr/bin/env OBJFORMAT=%%PORTOBJFORMAT%% /sbin/ldconfig -m %B -@unexec /usr/bin/env OBJFORMAT=%%PORTOBJFORMAT%% /sbin/ldconfig -R pgsql/post-install-notes +@dirrm pgsql/lib +@dirrm pgsql/bin +@dirrm pgsql/include/port/freebsd +@dirrm pgsql/include/port +@dirrm pgsql/include/lib +@dirrm pgsql/include/libpq +@dirrm pgsql/include/utils +@dirrm pgsql/include/access +@dirrm pgsql/include/executor +@dirrm pgsql/include/commands +@dirrm pgsql/include/libpq++ +@dirrm pgsql/include +@dirrm pgsql/man/man1 +@dirrm pgsql/man/man3 +@dirrm pgsql/man/man5 +@dirrm pgsql/man/manl +@dirrm pgsql/man +@dirrm pgsql/data/base/template1 +@dirrm pgsql/data/base +@dirrm pgsql/data +@dirrm pgsql +share/doc/pgsql/admin/admin.htm +share/doc/pgsql/admin/biblio.htm +share/doc/pgsql/admin/config.htm +share/doc/pgsql/admin/config490.htm +share/doc/pgsql/admin/config565.htm +share/doc/pgsql/admin/config602.htm +share/doc/pgsql/admin/disk.htm +share/doc/pgsql/admin/install.htm +share/doc/pgsql/admin/install1088.htm +share/doc/pgsql/admin/install1108.htm +share/doc/pgsql/admin/install1117.htm +share/doc/pgsql/admin/install733.htm +share/doc/pgsql/admin/intro-ag.htm +share/doc/pgsql/admin/intro-ag103.htm +share/doc/pgsql/admin/intro-ag134.htm +share/doc/pgsql/admin/intro-ag161.htm +share/doc/pgsql/admin/intro-ag192.htm +share/doc/pgsql/admin/layout.htm +share/doc/pgsql/admin/manage-ag.htm +share/doc/pgsql/admin/manage-ag1487.htm +share/doc/pgsql/admin/manage-ag1520.htm +share/doc/pgsql/admin/newuser.htm +share/doc/pgsql/admin/pg-options.htm +share/doc/pgsql/admin/ports.htm +share/doc/pgsql/admin/ports410.htm +share/doc/pgsql/admin/postmaster.htm +share/doc/pgsql/admin/preface.htm +share/doc/pgsql/admin/recovery.htm +share/doc/pgsql/admin/regress.htm +share/doc/pgsql/admin/regress1560.htm +share/doc/pgsql/admin/regress1567.htm +share/doc/pgsql/admin/regress1605.htm +share/doc/pgsql/admin/release.htm +share/doc/pgsql/admin/release1696.htm +share/doc/pgsql/admin/release1712.htm +share/doc/pgsql/admin/release1733.htm +share/doc/pgsql/admin/release1777.htm +share/doc/pgsql/admin/release1799.htm +share/doc/pgsql/admin/release1814.htm +share/doc/pgsql/admin/release1823.htm +share/doc/pgsql/admin/runtime.htm +share/doc/pgsql/admin/release1846.htm +share/doc/pgsql/admin/release1860.htm +share/doc/pgsql/admin/release1863.htm +share/doc/pgsql/admin/release1888.htm +share/doc/pgsql/admin/release1925.htm +share/doc/pgsql/admin/release1932.htm +share/doc/pgsql/admin/release1939.htm +share/doc/pgsql/admin/release1946.htm +share/doc/pgsql/admin/release1950.htm +share/doc/pgsql/admin/trouble.htm +share/doc/pgsql/admin/layout.gif +share/doc/pgsql/postgres/advanced.htm +share/doc/pgsql/postgres/advanced659.htm +share/doc/pgsql/postgres/advanced681.htm +share/doc/pgsql/postgres/advanced701.htm +share/doc/pgsql/postgres/app-createdb.htm +share/doc/pgsql/postgres/app-createuser.htm +share/doc/pgsql/postgres/app-destroydb.htm +share/doc/pgsql/postgres/app-destroyuser.htm +share/doc/pgsql/postgres/app-initdb.htm +share/doc/pgsql/postgres/app-initlocation.htm +share/doc/pgsql/postgres/app-pg-dump.htm +share/doc/pgsql/postgres/app-pg-dumpall.htm +share/doc/pgsql/postgres/app-psql.htm +share/doc/pgsql/postgres/arch-dev.htm +share/doc/pgsql/postgres/arch-pg.htm +share/doc/pgsql/postgres/arch.htm +share/doc/pgsql/postgres/arrays.htm +share/doc/pgsql/postgres/biblio.htm +share/doc/pgsql/postgres/bki.htm +share/doc/pgsql/postgres/bki20318.htm +share/doc/pgsql/postgres/bki20403.htm +share/doc/pgsql/postgres/bki20427.htm +share/doc/pgsql/postgres/bki20488.htm +share/doc/pgsql/postgres/compiler.htm +share/doc/pgsql/postgres/config.htm +share/doc/pgsql/postgres/config11820.htm +share/doc/pgsql/postgres/config11895.htm +share/doc/pgsql/postgres/config11932.htm +share/doc/pgsql/postgres/contacts.htm +share/doc/pgsql/postgres/datatype.htm +share/doc/pgsql/postgres/datatype1102.htm +share/doc/pgsql/postgres/datatype1129.htm +share/doc/pgsql/postgres/datatype1193.htm +share/doc/pgsql/postgres/datatype1539.htm +share/doc/pgsql/postgres/datatype1571.htm +share/doc/pgsql/postgres/datatype1665.htm +share/doc/pgsql/postgres/dfunc.htm +share/doc/pgsql/postgres/dfunc14519.htm +share/doc/pgsql/postgres/dfunc14529.htm +share/doc/pgsql/postgres/disk.htm +share/doc/pgsql/postgres/docguide.htm +share/doc/pgsql/postgres/docguide20661.htm +share/doc/pgsql/postgres/docguide20724.htm +share/doc/pgsql/postgres/docguide20777.htm +share/doc/pgsql/postgres/docguide20797.htm +share/doc/pgsql/postgres/docguide20847.htm +share/doc/pgsql/postgres/docguide21127.htm +share/doc/pgsql/postgres/ecpg.htm +share/doc/pgsql/postgres/ecpg16446.htm +share/doc/pgsql/postgres/ecpg16464.htm +share/doc/pgsql/postgres/ecpg16624.htm +share/doc/pgsql/postgres/ecpg16634.htm +share/doc/pgsql/postgres/ecpg16639.htm +share/doc/pgsql/postgres/ecpg16644.htm +share/doc/pgsql/postgres/environ.htm +share/doc/pgsql/postgres/extend.htm +share/doc/pgsql/postgres/extend13559.htm +share/doc/pgsql/postgres/extend13571.htm +share/doc/pgsql/postgres/func-ref.htm +share/doc/pgsql/postgres/functions.htm +share/doc/pgsql/postgres/functions2317.htm +share/doc/pgsql/postgres/functions2441.htm +share/doc/pgsql/postgres/functions2526.htm +share/doc/pgsql/postgres/functions2742.htm +share/doc/pgsql/postgres/geqo-biblio.htm +share/doc/pgsql/postgres/geqo.htm +share/doc/pgsql/postgres/geqo19324.htm +share/doc/pgsql/postgres/geqo19347.htm +share/doc/pgsql/postgres/geqo19385.htm +share/doc/pgsql/postgres/gist.htm +share/doc/pgsql/postgres/inherit.htm +share/doc/pgsql/postgres/install.htm +share/doc/pgsql/postgres/install12063.htm +share/doc/pgsql/postgres/install12418.htm +share/doc/pgsql/postgres/install12438.htm +share/doc/pgsql/postgres/install12447.htm +share/doc/pgsql/postgres/intro-ag.htm +share/doc/pgsql/postgres/intro-ag11433.htm +share/doc/pgsql/postgres/intro-ag11464.htm +share/doc/pgsql/postgres/intro-ag11491.htm +share/doc/pgsql/postgres/intro-ag11522.htm +share/doc/pgsql/postgres/intro-pg.htm +share/doc/pgsql/postgres/intro-pg13390.htm +share/doc/pgsql/postgres/intro-pg13421.htm +share/doc/pgsql/postgres/intro-pg13448.htm +share/doc/pgsql/postgres/intro-pg13479.htm +share/doc/pgsql/postgres/intro.htm +share/doc/pgsql/postgres/intro153.htm +share/doc/pgsql/postgres/intro163.htm +share/doc/pgsql/postgres/intro232.htm +share/doc/pgsql/postgres/intro263.htm +share/doc/pgsql/postgres/intro290.htm +share/doc/pgsql/postgres/intro321.htm +share/doc/pgsql/postgres/intro60.htm +share/doc/pgsql/postgres/jdbc.htm +share/doc/pgsql/postgres/jdbc19051.htm +share/doc/pgsql/postgres/jdbc19065.htm +share/doc/pgsql/postgres/jdbc19073.htm +share/doc/pgsql/postgres/jdbc19081.htm +share/doc/pgsql/postgres/jdbc19100.htm +share/doc/pgsql/postgres/jdbc19138.htm +share/doc/pgsql/postgres/jdbc19172.htm +share/doc/pgsql/postgres/jdbc19177.htm +share/doc/pgsql/postgres/jdbc19181.htm +share/doc/pgsql/postgres/jdbc19204.htm +share/doc/pgsql/postgres/jdbc19234.htm +share/doc/pgsql/postgres/keys.htm +share/doc/pgsql/postgres/largeobjects.htm +share/doc/pgsql/postgres/largeobjects16334.htm +share/doc/pgsql/postgres/largeobjects16337.htm +share/doc/pgsql/postgres/largeobjects16389.htm +share/doc/pgsql/postgres/largeobjects16396.htm +share/doc/pgsql/postgres/largeobjects16400.htm +share/doc/pgsql/postgres/layout.htm +share/doc/pgsql/postgres/libpq-chapter.htm +share/doc/pgsql/postgres/libpq-chapter16943.htm +share/doc/pgsql/postgres/libpq-chapter17044.htm +share/doc/pgsql/postgres/libpq-chapter17093.htm +share/doc/pgsql/postgres/libpq-chapter17104.htm +share/doc/pgsql/postgres/libpq-chapter17121.htm +share/doc/pgsql/postgres/libpq-chapter17153.htm +share/doc/pgsql/postgres/libpq-chapter17166.htm +share/doc/pgsql/postgres/libpq-chapter17181.htm +share/doc/pgsql/postgres/libpq-chapter17260.htm +share/doc/pgsql/postgres/libpq-chapter17263.htm +share/doc/pgsql/postgres/libpq-envars.htm +share/doc/pgsql/postgres/manage-ag.htm +share/doc/pgsql/postgres/manage-ag12817.htm +share/doc/pgsql/postgres/manage-ag12850.htm +share/doc/pgsql/postgres/manage.htm +share/doc/pgsql/postgres/manage770.htm +share/doc/pgsql/postgres/manage795.htm +share/doc/pgsql/postgres/manage836.htm +share/doc/pgsql/postgres/newuser.htm +share/doc/pgsql/postgres/odbc.htm +share/doc/pgsql/postgres/odbc18418.htm +share/doc/pgsql/postgres/odbc18456.htm +share/doc/pgsql/postgres/odbc18624.htm +share/doc/pgsql/postgres/odbc18646.htm +share/doc/pgsql/postgres/operators.htm +share/doc/pgsql/postgres/operators1855.htm +share/doc/pgsql/postgres/operators1926.htm +share/doc/pgsql/postgres/operators1996.htm +share/doc/pgsql/postgres/operators2106.htm +share/doc/pgsql/postgres/operators2165.htm +share/doc/pgsql/postgres/operators2219.htm +share/doc/pgsql/postgres/page.htm +share/doc/pgsql/postgres/page20551.htm +share/doc/pgsql/postgres/page20565.htm +share/doc/pgsql/postgres/part-admin.htm +share/doc/pgsql/postgres/part-appendix.htm +share/doc/pgsql/postgres/part-developer.htm +share/doc/pgsql/postgres/part-interfaces.htm +share/doc/pgsql/postgres/part-programmer.htm +share/doc/pgsql/postgres/part-tutorial.htm +share/doc/pgsql/postgres/part-user.htm +share/doc/pgsql/postgres/pg-options.htm +share/doc/pgsql/postgres/spi.htm +share/doc/pgsql/postgres/pgaccess.htm +share/doc/pgsql/postgres/pgtcl-pgconndefaults.htm +share/doc/pgsql/postgres/pgtcl-pgconnect.htm +share/doc/pgsql/postgres/pgtcl-pgdisconnect.htm +share/doc/pgsql/postgres/pgtcl-pgexec.htm +share/doc/pgsql/postgres/pgtcl-pglisten.htm +share/doc/pgsql/postgres/pgtcl-pgloclose.htm +share/doc/pgsql/postgres/pgtcl-pglocreat.htm +share/doc/pgsql/postgres/pgtcl-pgloexport.htm +share/doc/pgsql/postgres/pgtcl-pgloimport.htm +share/doc/pgsql/postgres/pgtcl-pglolseek.htm +share/doc/pgsql/postgres/pgtcl-pgloopen.htm +share/doc/pgsql/postgres/pgtcl-pgloread.htm +share/doc/pgsql/postgres/pgtcl-pglotell.htm +share/doc/pgsql/postgres/pgtcl-pglounlink.htm +share/doc/pgsql/postgres/pgtcl-pglowrite.htm +share/doc/pgsql/postgres/pgtcl-pgresult.htm +share/doc/pgsql/postgres/pgtcl-pgselect.htm +share/doc/pgsql/postgres/pgtcl.htm +share/doc/pgsql/postgres/pgtcl17351.htm +share/doc/pgsql/postgres/pgtcl17355.htm +share/doc/pgsql/postgres/ports.htm +share/doc/pgsql/postgres/ports11740.htm +share/doc/pgsql/postgres/postgres.htm +share/doc/pgsql/postgres/postmaster.htm +share/doc/pgsql/postgres/preface.htm +share/doc/pgsql/postgres/protocol.htm +share/doc/pgsql/postgres/protocol19504.htm +share/doc/pgsql/postgres/protocol19663.htm +share/doc/pgsql/postgres/protocol19700.htm +share/doc/pgsql/postgres/psql.htm +share/doc/pgsql/postgres/query-ug.htm +share/doc/pgsql/postgres/query-ug3159.htm +share/doc/pgsql/postgres/query-ug3183.htm +share/doc/pgsql/postgres/query-ug3192.htm +share/doc/pgsql/postgres/query-ug3209.htm +share/doc/pgsql/postgres/query-ug3216.htm +share/doc/pgsql/postgres/query-ug3231.htm +share/doc/pgsql/postgres/query-ug3235.htm +share/doc/pgsql/postgres/query-ug3242.htm +share/doc/pgsql/postgres/query.htm +share/doc/pgsql/postgres/query515.htm +share/doc/pgsql/postgres/query531.htm +share/doc/pgsql/postgres/query552.htm +share/doc/pgsql/postgres/query560.htm +share/doc/pgsql/postgres/query577.htm +share/doc/pgsql/postgres/query584.htm +share/doc/pgsql/postgres/query599.htm +share/doc/pgsql/postgres/query603.htm +share/doc/pgsql/postgres/query610.htm +share/doc/pgsql/postgres/recovery.htm +share/doc/pgsql/postgres/regress.htm +share/doc/pgsql/postgres/regress12890.htm +share/doc/pgsql/postgres/regress12897.htm +share/doc/pgsql/postgres/regress12935.htm +share/doc/pgsql/postgres/release.htm +share/doc/pgsql/postgres/release13026.htm +share/doc/pgsql/postgres/release13042.htm +share/doc/pgsql/postgres/release13063.htm +share/doc/pgsql/postgres/release13107.htm +share/doc/pgsql/postgres/release13129.htm +share/doc/pgsql/postgres/release13144.htm +share/doc/pgsql/postgres/release13153.htm +share/doc/pgsql/postgres/release13176.htm +share/doc/pgsql/postgres/release13190.htm +share/doc/pgsql/postgres/release13193.htm +share/doc/pgsql/postgres/release13218.htm +share/doc/pgsql/postgres/release13255.htm +share/doc/pgsql/postgres/release13262.htm +share/doc/pgsql/postgres/release13269.htm +share/doc/pgsql/postgres/release13276.htm +share/doc/pgsql/postgres/release13280.htm +share/doc/pgsql/postgres/rules.htm +share/doc/pgsql/postgres/rules13914.htm +share/doc/pgsql/postgres/rules14075.htm +share/doc/pgsql/postgres/rules14206.htm +share/doc/pgsql/postgres/rules14220.htm +share/doc/pgsql/postgres/runtime.htm +share/doc/pgsql/postgres/signals.htm +share/doc/pgsql/postgres/spi-spiconnect.htm +share/doc/pgsql/postgres/spi-spicopytuple.htm +share/doc/pgsql/postgres/spi-spiexec.htm +share/doc/pgsql/postgres/spi-spiexecp.htm +share/doc/pgsql/postgres/spi-spifinish.htm +share/doc/pgsql/postgres/spi-spifname.htm +share/doc/pgsql/postgres/spi-spifnumber.htm +share/doc/pgsql/postgres/spi-spigetbinval.htm +share/doc/pgsql/postgres/spi-spigetrelname.htm +share/doc/pgsql/postgres/spi-spigettype.htm +share/doc/pgsql/postgres/spi-spigettypeid.htm +share/doc/pgsql/postgres/spi-spigetvalue.htm +share/doc/pgsql/postgres/spi-spimodifytuple.htm +share/doc/pgsql/postgres/spi-spipalloc.htm +share/doc/pgsql/postgres/spi-spipfree.htm +share/doc/pgsql/postgres/spi-spiprepare.htm +share/doc/pgsql/postgres/spi-spirepalloc.htm +share/doc/pgsql/postgres/spi-spisaveplan.htm +share/doc/pgsql/postgres/spi15094.htm +share/doc/pgsql/postgres/spi15807.htm +share/doc/pgsql/postgres/spi15829.htm +share/doc/pgsql/postgres/spi15834.htm +share/doc/pgsql/postgres/sql-abort.htm +share/doc/pgsql/postgres/sql-altertable.htm +share/doc/pgsql/postgres/sql-alteruser.htm +share/doc/pgsql/postgres/sql-beginwork.htm +share/doc/pgsql/postgres/sql-close.htm +share/doc/pgsql/postgres/sql-cluster.htm +share/doc/pgsql/postgres/sql-commands.htm +share/doc/pgsql/postgres/sql-commit.htm +share/doc/pgsql/postgres/sql-copy.htm +share/doc/pgsql/postgres/sql-createaggregate.htm +share/doc/pgsql/postgres/sql-createdatabase.htm +share/doc/pgsql/postgres/sql-createfunction.htm +share/doc/pgsql/postgres/sql-createindex.htm +share/doc/pgsql/postgres/sql-createlanguage.htm +share/doc/pgsql/postgres/sql-createoperator.htm +share/doc/pgsql/postgres/sql-createrule.htm +share/doc/pgsql/postgres/sql-createsequence.htm +share/doc/pgsql/postgres/sql-createtable.htm +share/doc/pgsql/postgres/sql-createtableas.htm +share/doc/pgsql/postgres/sql-createtrigger.htm +share/doc/pgsql/postgres/sql-createtype.htm +share/doc/pgsql/postgres/sql-createuser.htm +share/doc/pgsql/postgres/sql-createview.htm +share/doc/pgsql/postgres/sql-declare.htm +share/doc/pgsql/postgres/sql-delete.htm +share/doc/pgsql/postgres/sql-dropaggregate.htm +share/doc/pgsql/postgres/sql-dropdatabase.htm +share/doc/pgsql/postgres/sql-dropfunction.htm +share/doc/pgsql/postgres/sql-dropindex.htm +share/doc/pgsql/postgres/sql-droplanguage.htm +share/doc/pgsql/postgres/sql-dropoperator.htm +share/doc/pgsql/postgres/sql-droprule.htm +share/doc/pgsql/postgres/sql-dropsequence.htm +share/doc/pgsql/postgres/sql-droptable.htm +share/doc/pgsql/postgres/sql-droptrigger.htm +share/doc/pgsql/postgres/sql-droptype.htm +share/doc/pgsql/postgres/sql-dropuser.htm +share/doc/pgsql/postgres/sql-dropview.htm +share/doc/pgsql/postgres/sql-explain.htm +share/doc/pgsql/postgres/sql-fetch.htm +share/doc/pgsql/postgres/sql-grant.htm +share/doc/pgsql/postgres/sql-insert.htm +share/doc/pgsql/postgres/sql-listen.htm +share/doc/pgsql/postgres/sql-load.htm +share/doc/pgsql/postgres/sql-lock.htm +share/doc/pgsql/postgres/sql-move.htm +share/doc/pgsql/postgres/sql-notify.htm +share/doc/pgsql/postgres/sql-reset.htm +share/doc/pgsql/postgres/sql-revoke.htm +share/doc/pgsql/postgres/sql-rollback.htm +share/doc/pgsql/postgres/sql-select.htm +share/doc/pgsql/postgres/sql-selectinto.htm +share/doc/pgsql/postgres/sql-set.htm +share/doc/pgsql/postgres/sql-show.htm +share/doc/pgsql/postgres/sql-unlisten.htm +share/doc/pgsql/postgres/sql-update.htm +share/doc/pgsql/postgres/sql-vacuum-1.htm +share/doc/pgsql/postgres/start.htm +share/doc/pgsql/postgres/start409.htm +share/doc/pgsql/postgres/start426.htm +share/doc/pgsql/postgres/storage.htm +share/doc/pgsql/postgres/triggers.htm +share/doc/pgsql/postgres/triggers14565.htm +share/doc/pgsql/postgres/triggers14571.htm +share/doc/pgsql/postgres/triggers14579.htm +share/doc/pgsql/postgres/trouble.htm +share/doc/pgsql/postgres/typeconv.htm +share/doc/pgsql/postgres/typeconv2860.htm +share/doc/pgsql/postgres/typeconv2925.htm +share/doc/pgsql/postgres/typeconv2979.htm +share/doc/pgsql/postgres/typeconv3000.htm +share/doc/pgsql/postgres/utilities.htm +share/doc/pgsql/postgres/xaggr.htm +share/doc/pgsql/postgres/xfunc.htm +share/doc/pgsql/postgres/xfunc13697.htm +share/doc/pgsql/postgres/xindex.htm +share/doc/pgsql/postgres/xoper.htm +share/doc/pgsql/postgres/xplang.htm +share/doc/pgsql/postgres/xplang15884.htm +share/doc/pgsql/postgres/xplang16156.htm +share/doc/pgsql/postgres/xtypes.htm +share/doc/pgsql/postgres/catalogs.gif +share/doc/pgsql/postgres/connections.gif +share/doc/pgsql/postgres/layout.gif +share/doc/pgsql/programmer/arch-pg.htm +share/doc/pgsql/programmer/biblio.htm +share/doc/pgsql/programmer/bki.htm +share/doc/pgsql/programmer/bki7235.htm +share/doc/pgsql/programmer/bki7320.htm +share/doc/pgsql/programmer/bki7344.htm +share/doc/pgsql/programmer/bki7405.htm +share/doc/pgsql/programmer/compiler.htm +share/doc/pgsql/programmer/dfunc.htm +share/doc/pgsql/programmer/dfunc1702.htm +share/doc/pgsql/programmer/dfunc1712.htm +share/doc/pgsql/programmer/docguide.htm +share/doc/pgsql/programmer/docguide7574.htm +share/doc/pgsql/programmer/docguide7637.htm +share/doc/pgsql/programmer/docguide7690.htm +share/doc/pgsql/programmer/docguide7710.htm +share/doc/pgsql/programmer/docguide7760.htm +share/doc/pgsql/programmer/docguide8040.htm +share/doc/pgsql/programmer/ecpg.htm +share/doc/pgsql/programmer/ecpg4955.htm +share/doc/pgsql/programmer/ecpg4973.htm +share/doc/pgsql/programmer/ecpg5133.htm +share/doc/pgsql/programmer/ecpg5143.htm +share/doc/pgsql/programmer/ecpg5148.htm +share/doc/pgsql/programmer/ecpg5153.htm +share/doc/pgsql/programmer/extend.htm +share/doc/pgsql/programmer/extend277.htm +share/doc/pgsql/programmer/extend289.htm +share/doc/pgsql/programmer/geqo-biblio.htm +share/doc/pgsql/programmer/geqo.htm +share/doc/pgsql/programmer/geqo6241.htm +share/doc/pgsql/programmer/geqo6264.htm +share/doc/pgsql/programmer/geqo6302.htm +share/doc/pgsql/programmer/gist.htm +share/doc/pgsql/programmer/intro-pg.htm +share/doc/pgsql/programmer/intro-pg108.htm +share/doc/pgsql/programmer/intro-pg139.htm +share/doc/pgsql/programmer/intro-pg166.htm +share/doc/pgsql/programmer/intro-pg197.htm +share/doc/pgsql/programmer/jdbc.htm +share/doc/pgsql/programmer/jdbc6011.htm +share/doc/pgsql/programmer/jdbc6025.htm +share/doc/pgsql/programmer/jdbc6033.htm +share/doc/pgsql/programmer/jdbc6041.htm +share/doc/pgsql/programmer/jdbc6060.htm +share/doc/pgsql/programmer/jdbc6098.htm +share/doc/pgsql/programmer/jdbc6132.htm +share/doc/pgsql/programmer/jdbc6137.htm +share/doc/pgsql/programmer/jdbc6141.htm +share/doc/pgsql/programmer/jdbc6164.htm +share/doc/pgsql/programmer/jdbc6194.htm +share/doc/pgsql/programmer/largeobjects.htm +share/doc/pgsql/programmer/largeobjects3041.htm +share/doc/pgsql/programmer/largeobjects3044.htm +share/doc/pgsql/programmer/largeobjects3096.htm +share/doc/pgsql/programmer/largeobjects3103.htm +share/doc/pgsql/programmer/largeobjects3107.htm +share/doc/pgsql/programmer/libpq-chapter.htm +share/doc/pgsql/programmer/libpq-chapter3231.htm +share/doc/pgsql/programmer/odbc.htm +share/doc/pgsql/programmer/libpq-chapter3332.htm +share/doc/pgsql/programmer/libpq-chapter3381.htm +share/doc/pgsql/programmer/libpq-chapter3392.htm +share/doc/pgsql/programmer/libpq-chapter3409.htm +share/doc/pgsql/programmer/libpq-chapter3441.htm +share/doc/pgsql/programmer/libpq-chapter3454.htm +share/doc/pgsql/programmer/libpq-chapter3469.htm +share/doc/pgsql/programmer/libpq-chapter3548.htm +share/doc/pgsql/programmer/libpq-chapter3551.htm +share/doc/pgsql/programmer/libpq-envars.htm +share/doc/pgsql/programmer/libpqplusplus.htm +share/doc/pgsql/programmer/libpqplusplus3654.htm +share/doc/pgsql/programmer/libpqplusplus3683.htm +share/doc/pgsql/programmer/libpqplusplus3748.htm +share/doc/pgsql/programmer/libpqplusplus3771.htm +share/doc/pgsql/programmer/libpqplusplus3814.htm +share/doc/pgsql/programmer/odbc5378.htm +share/doc/pgsql/programmer/odbc5416.htm +share/doc/pgsql/programmer/odbc5584.htm +share/doc/pgsql/programmer/odbc5606.htm +share/doc/pgsql/programmer/page.htm +share/doc/pgsql/programmer/page7468.htm +share/doc/pgsql/programmer/page7482.htm +share/doc/pgsql/programmer/pgtcl-pgconndefaults.htm +share/doc/pgsql/programmer/pgtcl-pgconnect.htm +share/doc/pgsql/programmer/pgtcl-pgdisconnect.htm +share/doc/pgsql/programmer/pgtcl-pgexec.htm +share/doc/pgsql/programmer/pgtcl-pglisten.htm +share/doc/pgsql/programmer/pgtcl-pgloclose.htm +share/doc/pgsql/programmer/pgtcl-pglocreat.htm +share/doc/pgsql/programmer/pgtcl-pgloexport.htm +share/doc/pgsql/programmer/pgtcl-pgloimport.htm +share/doc/pgsql/programmer/pgtcl-pglolseek.htm +share/doc/pgsql/programmer/pgtcl-pgloopen.htm +share/doc/pgsql/programmer/pgtcl.htm +share/doc/pgsql/programmer/pgtcl-pgloread.htm +share/doc/pgsql/programmer/pgtcl-pglotell.htm +share/doc/pgsql/programmer/pgtcl-pglounlink.htm +share/doc/pgsql/programmer/pgtcl-pglowrite.htm +share/doc/pgsql/programmer/pgtcl-pgresult.htm +share/doc/pgsql/programmer/pgtcl-pgselect.htm +share/doc/pgsql/programmer/pgtcl3892.htm +share/doc/pgsql/programmer/pgtcl3896.htm +share/doc/pgsql/programmer/preface.htm +share/doc/pgsql/programmer/programmer.htm +share/doc/pgsql/programmer/protocol.htm +share/doc/pgsql/programmer/protocol6421.htm +share/doc/pgsql/programmer/protocol6580.htm +share/doc/pgsql/programmer/protocol6617.htm +share/doc/pgsql/programmer/rules.htm +share/doc/pgsql/programmer/rules632.htm +share/doc/pgsql/programmer/rules793.htm +share/doc/pgsql/programmer/rules924.htm +share/doc/pgsql/programmer/rules938.htm +share/doc/pgsql/programmer/signals.htm +share/doc/pgsql/programmer/spi-spiconnect.htm +share/doc/pgsql/programmer/spi-spicopytuple.htm +share/doc/pgsql/programmer/spi-spiexec.htm +share/doc/pgsql/programmer/spi-spiexecp.htm +share/doc/pgsql/programmer/spi-spifinish.htm +share/doc/pgsql/programmer/spi-spifname.htm +share/doc/pgsql/programmer/spi-spifnumber.htm +share/doc/pgsql/programmer/spi-spigetbinval.htm +share/doc/pgsql/programmer/spi-spigetrelname.htm +share/doc/pgsql/programmer/spi-spigettype.htm +share/doc/pgsql/programmer/spi-spigettypeid.htm +share/doc/pgsql/programmer/spi-spigetvalue.htm +share/doc/pgsql/programmer/spi-spimodifytuple.htm +share/doc/pgsql/programmer/spi-spipalloc.htm +share/doc/pgsql/programmer/spi-spipfree.htm +share/doc/pgsql/programmer/spi-spiprepare.htm +share/doc/pgsql/programmer/spi-spirepalloc.htm +share/doc/pgsql/programmer/spi.htm +share/doc/pgsql/programmer/spi-spisaveplan.htm +share/doc/pgsql/programmer/spi2277.htm +share/doc/pgsql/programmer/spi2990.htm +share/doc/pgsql/programmer/spi3012.htm +share/doc/pgsql/programmer/spi3017.htm +share/doc/pgsql/programmer/triggers.htm +share/doc/pgsql/programmer/triggers1748.htm +share/doc/pgsql/programmer/triggers1754.htm +share/doc/pgsql/programmer/triggers1762.htm +share/doc/pgsql/programmer/xaggr.htm +share/doc/pgsql/programmer/xfunc.htm +share/doc/pgsql/programmer/xfunc415.htm +share/doc/pgsql/programmer/xindex.htm +share/doc/pgsql/programmer/xoper.htm +share/doc/pgsql/programmer/xplang.htm +share/doc/pgsql/programmer/xplang1231.htm +share/doc/pgsql/programmer/xplang1503.htm +share/doc/pgsql/programmer/xtypes.htm +share/doc/pgsql/programmer/catalogs.gif +share/doc/pgsql/programmer/connections.gif +share/doc/pgsql/tutorial/book01.htm +share/doc/pgsql/tutorial/f01.htm +share/doc/pgsql/tutorial/c01.htm +share/doc/pgsql/tutorial/c0101.htm +share/doc/pgsql/tutorial/c0102.htm +share/doc/pgsql/tutorial/c0103.htm +share/doc/pgsql/tutorial/c0104.htm +share/doc/pgsql/tutorial/c0105.htm +share/doc/pgsql/tutorial/c02.htm +share/doc/pgsql/tutorial/c03.htm +share/doc/pgsql/tutorial/c0301.htm +share/doc/pgsql/tutorial/c0302.htm +share/doc/pgsql/tutorial/c0303.htm +share/doc/pgsql/tutorial/c04.htm +share/doc/pgsql/tutorial/c0401.htm +share/doc/pgsql/tutorial/c0402.htm +share/doc/pgsql/tutorial/c0403.htm +share/doc/pgsql/tutorial/c0404.htm +share/doc/pgsql/tutorial/c0405.htm +share/doc/pgsql/tutorial/c0406.htm +share/doc/pgsql/tutorial/c0407.htm +share/doc/pgsql/tutorial/c0408.htm +share/doc/pgsql/tutorial/c0409.htm +share/doc/pgsql/tutorial/c0410.htm +share/doc/pgsql/tutorial/c05.htm +share/doc/pgsql/tutorial/c0501.htm +share/doc/pgsql/tutorial/c0502.htm +share/doc/pgsql/tutorial/c0503.htm +share/doc/pgsql/tutorial/c0504.htm +share/doc/pgsql/tutorial/b01.htm +share/doc/pgsql/tutorial/i01.htm +share/doc/pgsql/tutorial/clientserver.gif +share/doc/pgsql/user/app-createdb.htm +share/doc/pgsql/user/app-createuser.htm +share/doc/pgsql/user/app-destroydb.htm +share/doc/pgsql/user/app-destroyuser.htm +share/doc/pgsql/user/app-initdb.htm +share/doc/pgsql/user/app-initlocation.htm +share/doc/pgsql/user/app-pg-dump.htm +share/doc/pgsql/user/app-pg-dumpall.htm +share/doc/pgsql/user/app-psql.htm +share/doc/pgsql/user/arrays.htm +share/doc/pgsql/user/biblio.htm +share/doc/pgsql/user/datatype.htm +share/doc/pgsql/user/datatype1243.htm +share/doc/pgsql/user/datatype1275.htm +share/doc/pgsql/user/datatype1369.htm +share/doc/pgsql/user/datatype806.htm +share/doc/pgsql/user/datatype833.htm +share/doc/pgsql/user/datatype897.htm +share/doc/pgsql/user/environ.htm +share/doc/pgsql/user/functions.htm +share/doc/pgsql/user/functions2021.htm +share/doc/pgsql/user/functions2145.htm +share/doc/pgsql/user/functions2230.htm +share/doc/pgsql/user/functions2446.htm +share/doc/pgsql/user/inherit.htm +share/doc/pgsql/user/intro.htm +share/doc/pgsql/user/intro149.htm +share/doc/pgsql/user/intro159.htm +share/doc/pgsql/user/intro228.htm +share/doc/pgsql/user/intro259.htm +share/doc/pgsql/user/intro286.htm +share/doc/pgsql/user/intro317.htm +share/doc/pgsql/user/intro56.htm +share/doc/pgsql/user/keys.htm +share/doc/pgsql/user/manage.htm +share/doc/pgsql/user/manage387.htm +share/doc/pgsql/user/manage412.htm +share/doc/pgsql/user/manage453.htm +share/doc/pgsql/user/operators.htm +share/doc/pgsql/user/operators1559.htm +share/doc/pgsql/user/operators1630.htm +share/doc/pgsql/user/operators1700.htm +share/doc/pgsql/user/operators1810.htm +share/doc/pgsql/user/operators1869.htm +share/doc/pgsql/user/operators1923.htm +share/doc/pgsql/user/pgaccess.htm +share/doc/pgsql/user/preface.htm +share/doc/pgsql/user/psql.htm +share/doc/pgsql/user/query-ug.htm +share/doc/pgsql/user/query-ug2863.htm +share/doc/pgsql/user/query-ug2887.htm +share/doc/pgsql/user/query-ug2896.htm +share/doc/pgsql/user/query-ug2913.htm +share/doc/pgsql/user/query-ug2920.htm +share/doc/pgsql/user/query-ug2935.htm +share/doc/pgsql/user/query-ug2939.htm +share/doc/pgsql/user/query-ug2946.htm +share/doc/pgsql/user/sql-abort.htm +share/doc/pgsql/user/sql-altertable.htm +share/doc/pgsql/user/sql-alteruser.htm +share/doc/pgsql/user/sql-beginwork.htm +share/doc/pgsql/user/sql-close.htm +share/doc/pgsql/user/sql-cluster.htm +share/doc/pgsql/user/sql-commands.htm +share/doc/pgsql/user/sql-commit.htm +share/doc/pgsql/user/sql-copy.htm +share/doc/pgsql/user/sql-createaggregate.htm +share/doc/pgsql/user/sql-createdatabase.htm +share/doc/pgsql/user/sql-createfunction.htm +share/doc/pgsql/user/sql-createindex.htm +share/doc/pgsql/user/sql-createlanguage.htm +share/doc/pgsql/user/sql-createoperator.htm +share/doc/pgsql/user/sql-createrule.htm +share/doc/pgsql/user/sql-createsequence.htm +share/doc/pgsql/user/sql-createtable.htm +share/doc/pgsql/user/sql-createtableas.htm +share/doc/pgsql/user/sql-createtrigger.htm +share/doc/pgsql/user/sql-createtype.htm +share/doc/pgsql/user/sql-createuser.htm +share/doc/pgsql/user/sql-createview.htm +share/doc/pgsql/user/sql-declare.htm +share/doc/pgsql/user/sql-delete.htm +share/doc/pgsql/user/sql-dropaggregate.htm +share/doc/pgsql/user/sql-dropdatabase.htm +share/doc/pgsql/user/sql-dropfunction.htm +share/doc/pgsql/user/sql-dropindex.htm +share/doc/pgsql/user/sql-droplanguage.htm +share/doc/pgsql/user/sql-dropoperator.htm +share/doc/pgsql/user/sql-droprule.htm +share/doc/pgsql/user/sql-dropsequence.htm +share/doc/pgsql/user/sql-droptable.htm +share/doc/pgsql/user/sql-droptrigger.htm +share/doc/pgsql/user/sql-droptype.htm +share/doc/pgsql/user/sql-dropuser.htm +share/doc/pgsql/user/sql-dropview.htm +share/doc/pgsql/user/sql-explain.htm +share/doc/pgsql/user/sql-fetch.htm +share/doc/pgsql/user/sql-grant.htm +share/doc/pgsql/user/sql-insert.htm +share/doc/pgsql/user/sql-listen.htm +share/doc/pgsql/user/sql-load.htm +share/doc/pgsql/user/sql-lock.htm +share/doc/pgsql/user/sql-move.htm +share/doc/pgsql/user/sql-notify.htm +share/doc/pgsql/user/sql-reset.htm +share/doc/pgsql/user/sql-revoke.htm +share/doc/pgsql/user/sql-rollback.htm +share/doc/pgsql/user/sql-select.htm +share/doc/pgsql/user/sql-selectinto.htm +share/doc/pgsql/user/sql-set.htm +share/doc/pgsql/user/sql-show.htm +share/doc/pgsql/user/sql-unlisten.htm +share/doc/pgsql/user/sql-update.htm +share/doc/pgsql/user/sql-vacuum-1.htm +share/doc/pgsql/user/storage.htm +share/doc/pgsql/user/syntax.htm +share/doc/pgsql/user/typeconv.htm +share/doc/pgsql/user/typeconv2564.htm +share/doc/pgsql/user/typeconv2629.htm +share/doc/pgsql/user/typeconv2683.htm +share/doc/pgsql/user/typeconv2704.htm +share/doc/pgsql/user/user.htm +share/doc/pgsql/user/utilities.htm share/doc/pgsql/FAQ share/doc/pgsql/FAQ_CVS share/doc/pgsql/FAQ_DEV share/doc/pgsql/FAQ_FreeBSD +share/doc/pgsql/FAQ_HPUX share/doc/pgsql/FAQ_Irix share/doc/pgsql/FAQ_Linux -share/doc/pgsql/Makefile share/doc/pgsql/README.fsync share/doc/pgsql/README.inet share/doc/pgsql/README.locale @@ -135,195 +866,53 @@ share/doc/pgsql/README.mb.jp share/doc/pgsql/TODO share/doc/pgsql/admin.ps.gz -share/doc/pgsql/admin.tar.gz -share/doc/pgsql/bug.template -share/doc/pgsql/postgres.tar.gz share/doc/pgsql/programmer.ps.gz -share/doc/pgsql/programmer.tar.gz -share/doc/pgsql/src/Makefile -share/doc/pgsql/src/graphics/catalogs.gif -share/doc/pgsql/src/graphics/catalogs.ps -share/doc/pgsql/src/graphics/clientserver.ag -share/doc/pgsql/src/graphics/clientserver.gif -share/doc/pgsql/src/graphics/connections.ag -share/doc/pgsql/src/graphics/connections.gif -share/doc/pgsql/src/graphics/layout.ag -share/doc/pgsql/src/graphics/layout.gif -share/doc/pgsql/src/sgml/Makefile -share/doc/pgsql/src/sgml/about.sgml -share/doc/pgsql/src/sgml/admin.sgml -share/doc/pgsql/src/sgml/advanced.sgml -share/doc/pgsql/src/sgml/arch-dev.sgml -share/doc/pgsql/src/sgml/arch-pg.sgml -share/doc/pgsql/src/sgml/arch.sgml -share/doc/pgsql/src/sgml/array.sgml -share/doc/pgsql/src/sgml/biblio.sgml -share/doc/pgsql/src/sgml/bki.sgml -share/doc/pgsql/src/sgml/compiler.sgml -share/doc/pgsql/src/sgml/config.sgml -share/doc/pgsql/src/sgml/contacts.sgml -share/doc/pgsql/src/sgml/current.sgml -share/doc/pgsql/src/sgml/datatype.sgml -share/doc/pgsql/src/sgml/dfunc.sgml -share/doc/pgsql/src/sgml/docguide.sgml -share/doc/pgsql/src/sgml/ecpg.sgml -share/doc/pgsql/src/sgml/environ.sgml -share/doc/pgsql/src/sgml/extend.sgml -share/doc/pgsql/src/sgml/func-ref.sgml -share/doc/pgsql/src/sgml/func.sgml -share/doc/pgsql/src/sgml/geqo.sgml -share/doc/pgsql/src/sgml/gist.sgml -share/doc/pgsql/src/sgml/history.sgml -share/doc/pgsql/src/sgml/indices.sgml -share/doc/pgsql/src/sgml/info.sgml -share/doc/pgsql/src/sgml/inherit.sgml -share/doc/pgsql/src/sgml/install.sgml -share/doc/pgsql/src/sgml/installation.sgml -share/doc/pgsql/src/sgml/intro-ag.sgml -share/doc/pgsql/src/sgml/intro-pg.sgml -share/doc/pgsql/src/sgml/intro.sgml -share/doc/pgsql/src/sgml/jdbc.sgml -share/doc/pgsql/src/sgml/keys.sgml -share/doc/pgsql/src/sgml/legal.sgml -share/doc/pgsql/src/sgml/libpgtcl.sgml -share/doc/pgsql/src/sgml/libpq++.sgml -share/doc/pgsql/src/sgml/libpq.sgml -share/doc/pgsql/src/sgml/lobj.sgml -share/doc/pgsql/src/sgml/manage.sgml -share/doc/pgsql/src/sgml/notation.sgml -share/doc/pgsql/src/sgml/odbc.sgml -share/doc/pgsql/src/sgml/oper.sgml -share/doc/pgsql/src/sgml/page.sgml -share/doc/pgsql/src/sgml/pg_options.sgml -share/doc/pgsql/src/sgml/pgaccess.sgml -share/doc/pgsql/src/sgml/ports.sgml -share/doc/pgsql/src/sgml/postgres.sgml -share/doc/pgsql/src/sgml/programmer.sgml -share/doc/pgsql/src/sgml/protocol.sgml -share/doc/pgsql/src/sgml/psql.sgml -share/doc/pgsql/src/sgml/query-ug.sgml -share/doc/pgsql/src/sgml/query.sgml -share/doc/pgsql/src/sgml/recovery.sgml -share/doc/pgsql/src/sgml/ref/abort.sgml -share/doc/pgsql/src/sgml/ref/allfiles.sgml -share/doc/pgsql/src/sgml/ref/alter_table.sgml -share/doc/pgsql/src/sgml/ref/alter_user.sgml -share/doc/pgsql/src/sgml/ref/begin.sgml -share/doc/pgsql/src/sgml/ref/close.sgml -share/doc/pgsql/src/sgml/ref/cluster.sgml -share/doc/pgsql/src/sgml/ref/commands.sgml -share/doc/pgsql/src/sgml/ref/commit.sgml -share/doc/pgsql/src/sgml/ref/copy.sgml -share/doc/pgsql/src/sgml/ref/create_aggregate.sgml -share/doc/pgsql/src/sgml/ref/create_database.sgml -share/doc/pgsql/src/sgml/ref/create_function.sgml -share/doc/pgsql/src/sgml/ref/create_index.sgml -share/doc/pgsql/src/sgml/ref/create_language.sgml -share/doc/pgsql/src/sgml/ref/create_operator.sgml -share/doc/pgsql/src/sgml/ref/create_rule.sgml -share/doc/pgsql/src/sgml/ref/create_sequence.sgml -share/doc/pgsql/src/sgml/ref/create_table.sgml -share/doc/pgsql/src/sgml/ref/create_trigger.sgml -share/doc/pgsql/src/sgml/ref/create_type.sgml -share/doc/pgsql/src/sgml/ref/create_user.sgml -share/doc/pgsql/src/sgml/ref/create_view.sgml -share/doc/pgsql/src/sgml/ref/createdb.sgml -share/doc/pgsql/src/sgml/ref/createuser.sgml -share/doc/pgsql/src/sgml/ref/current_date.sgml -share/doc/pgsql/src/sgml/ref/current_time.sgml -share/doc/pgsql/src/sgml/ref/current_timestamp.sgml -share/doc/pgsql/src/sgml/ref/current_user.sgml -share/doc/pgsql/src/sgml/ref/declare.sgml -share/doc/pgsql/src/sgml/ref/delete.sgml -share/doc/pgsql/src/sgml/ref/destroydb.sgml -share/doc/pgsql/src/sgml/ref/destroyuser.sgml -share/doc/pgsql/src/sgml/ref/drop_aggregate.sgml -share/doc/pgsql/src/sgml/ref/drop_database.sgml -share/doc/pgsql/src/sgml/ref/drop_function.sgml -share/doc/pgsql/src/sgml/ref/drop_index.sgml -share/doc/pgsql/src/sgml/ref/drop_language.sgml -share/doc/pgsql/src/sgml/ref/drop_operator.sgml -share/doc/pgsql/src/sgml/ref/drop_rule.sgml -share/doc/pgsql/src/sgml/ref/drop_sequence.sgml -share/doc/pgsql/src/sgml/ref/drop_table.sgml -share/doc/pgsql/src/sgml/ref/drop_trigger.sgml -share/doc/pgsql/src/sgml/ref/drop_type.sgml -share/doc/pgsql/src/sgml/ref/drop_user.sgml -share/doc/pgsql/src/sgml/ref/drop_view.sgml -share/doc/pgsql/src/sgml/ref/explain.sgml -share/doc/pgsql/src/sgml/ref/fetch.sgml -share/doc/pgsql/src/sgml/ref/grant.sgml -share/doc/pgsql/src/sgml/ref/initdb.sgml -share/doc/pgsql/src/sgml/ref/initlocation.sgml -share/doc/pgsql/src/sgml/ref/insert.sgml -share/doc/pgsql/src/sgml/ref/listen.sgml -share/doc/pgsql/src/sgml/ref/load.sgml -share/doc/pgsql/src/sgml/ref/lock.sgml -share/doc/pgsql/src/sgml/ref/move.sgml -share/doc/pgsql/src/sgml/ref/notify.sgml -share/doc/pgsql/src/sgml/ref/pg_dump.sgml -share/doc/pgsql/src/sgml/ref/pg_dumpall.sgml -share/doc/pgsql/src/sgml/ref/pg_upgrade.sgml -share/doc/pgsql/src/sgml/ref/psql-ref.sgml -share/doc/pgsql/src/sgml/ref/reset.sgml -share/doc/pgsql/src/sgml/ref/revoke.sgml -share/doc/pgsql/src/sgml/ref/rollback.sgml -share/doc/pgsql/src/sgml/ref/select.sgml -share/doc/pgsql/src/sgml/ref/set.sgml -share/doc/pgsql/src/sgml/ref/show.sgml -share/doc/pgsql/src/sgml/ref/unlisten.sgml -share/doc/pgsql/src/sgml/ref/update.sgml -share/doc/pgsql/src/sgml/ref/vacuum.sgml -share/doc/pgsql/src/sgml/reference.sgml -share/doc/pgsql/src/sgml/regress.sgml -share/doc/pgsql/src/sgml/release.sgml -share/doc/pgsql/src/sgml/rules.sgml -share/doc/pgsql/src/sgml/runtime.sgml -share/doc/pgsql/src/sgml/security.sgml -share/doc/pgsql/src/sgml/signals.sgml -share/doc/pgsql/src/sgml/spi.sgml -share/doc/pgsql/src/sgml/start-ag.sgml -share/doc/pgsql/src/sgml/start.sgml -share/doc/pgsql/src/sgml/storage.sgml -share/doc/pgsql/src/sgml/syntax.sgml -share/doc/pgsql/src/sgml/trigger.sgml -share/doc/pgsql/src/sgml/tutorial.sgml -share/doc/pgsql/src/sgml/typeconv.sgml -share/doc/pgsql/src/sgml/user.sgml -share/doc/pgsql/src/sgml/xaggr.sgml -share/doc/pgsql/src/sgml/xfunc.sgml -share/doc/pgsql/src/sgml/xindex.sgml -share/doc/pgsql/src/sgml/xoper.sgml -share/doc/pgsql/src/sgml/xplang.sgml -share/doc/pgsql/src/sgml/xtypes.sgml -share/doc/pgsql/src/sgml/y2k.sgml share/doc/pgsql/tutorial.ps.gz -share/doc/pgsql/tutorial.tar.gz share/doc/pgsql/user.ps.gz -share/doc/pgsql/user.tar.gz -@dirrm share/doc/pgsql/src/sgml/ref -@dirrm share/doc/pgsql/src/sgml -@dirrm share/doc/pgsql/src/graphics -@dirrm share/doc/pgsql/src +share/doc/pgsql/admin/admin.html +share/doc/pgsql/admin/index.html +share/doc/pgsql/postgres/index.html +share/doc/pgsql/postgres/postgres.html +share/doc/pgsql/programmer/index.html +share/doc/pgsql/programmer/programmer.html +share/doc/pgsql/tutorial/index.html +share/doc/pgsql/tutorial/tutorial.html +share/doc/pgsql/user/index.html +share/doc/pgsql/user/user.html +@dirrm share/doc/pgsql/admin +@dirrm share/doc/pgsql/postgres +@dirrm share/doc/pgsql/programmer +@dirrm share/doc/pgsql/tutorial +@dirrm share/doc/pgsql/user @dirrm share/doc/pgsql -@dirrm pgsql/man/manl -@dirrm pgsql/man/man5 -@dirrm pgsql/man/man3 -@dirrm pgsql/man/man1 -@dirrm pgsql/man -@dirrm pgsql/lib -@dirrm pgsql/include/utils -@dirrm pgsql/include/port/freebsd -@dirrm pgsql/include/port -@dirrm pgsql/include/libpq++ -@dirrm pgsql/include/libpq -@dirrm pgsql/include/lib -@dirrm pgsql/include/executor -@dirrm pgsql/include/commands -@dirrm pgsql/include/access -@dirrm pgsql/include -@dirrm pgsql/data/base/template1 -@dirrm pgsql/data/base -@dirrm pgsql/data -@dirrm pgsql/bin -@dirrm pgsql +share/examples/pgsql/jdbc/ImageViewer.java +share/examples/pgsql/jdbc/basic.java +share/examples/pgsql/jdbc/blobtest.java +share/examples/pgsql/jdbc/datestyle.java +share/examples/pgsql/jdbc/metadata.java +share/examples/pgsql/jdbc/psql.java +share/examples/pgsql/jdbc/threadsafe.java +share/examples/pgsql/jdbc/ImageViewer$1.class +share/examples/pgsql/jdbc/ImageViewer$2.class +share/examples/pgsql/jdbc/ImageViewer$3.class +share/examples/pgsql/jdbc/ImageViewer$4.class +share/examples/pgsql/jdbc/ImageViewer$5.class +share/examples/pgsql/jdbc/ImageViewer$imageCanvas.class +share/examples/pgsql/jdbc/ImageViewer$importer.class +share/examples/pgsql/jdbc/ImageViewer.class +share/examples/pgsql/jdbc/basic.class +share/examples/pgsql/jdbc/blobtest.class +share/examples/pgsql/jdbc/datestyle.class +share/examples/pgsql/jdbc/metadata.class +share/examples/pgsql/jdbc/psql.class +share/examples/pgsql/jdbc/threadsafe$thread1.class +share/examples/pgsql/jdbc/threadsafe$thread2.class +share/examples/pgsql/jdbc/threadsafe$thread3.class +share/examples/pgsql/jdbc/threadsafe.class +share/examples/pgsql/jdbc/README +share/examples/pgsql/jdbc/README_6.3 +@dirrm share/examples/pgsql/jdbc +@dirrm share/examples/pgsql +@dirrm share/examples +share/java/postgresql.jar +@dirrm share/java >Release-Note: >Audit-Trail: >Unformatted: To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-ports" in the body of the message