aboutsummaryrefslogtreecommitdiff
path: root/databases/postgresql91-server
diff options
context:
space:
mode:
authorTrevor Johnson <trevor@FreeBSD.org>2002-08-26 08:12:40 +0000
committerTrevor Johnson <trevor@FreeBSD.org>2002-08-26 08:12:40 +0000
commitc80f4eaad8cb1ddb2c90382e4c818d06c3591d53 (patch)
treef2cc466ecfe3a529b10ff5a932b22809e59e65f9 /databases/postgresql91-server
parent070a88502bb820e11f70acbf87b3a6394cdb085b (diff)
downloadports-c80f4eaad8cb1ddb2c90382e4c818d06c3591d53.tar.gz
ports-c80f4eaad8cb1ddb2c90382e4c818d06c3591d53.zip
Notes
Diffstat (limited to 'databases/postgresql91-server')
-rw-r--r--databases/postgresql91-server/Makefile12
-rw-r--r--databases/postgresql91-server/distinfo6
-rw-r--r--databases/postgresql91-server/files/502.pgsql41
-rw-r--r--databases/postgresql91-server/files/post-install-notes3
-rw-r--r--databases/postgresql91-server/pkg-plist550
5 files changed, 24 insertions, 588 deletions
diff --git a/databases/postgresql91-server/Makefile b/databases/postgresql91-server/Makefile
index 2d7c785e6d9f..fd22f955c9db 100644
--- a/databases/postgresql91-server/Makefile
+++ b/databases/postgresql91-server/Makefile
@@ -6,8 +6,7 @@
#
PORTNAME?= postgresql
-PORTVERSION?= 7.2.1
-PORTREVISION?= 1
+PORTVERSION?= 7.2.2
CATEGORIES?= databases
MASTER_SITES= ftp://ftp.postgresql.org/pub/%SUBDIR%/ \
ftp://ftp.se.postgresql.org/pub/database/relational/postgresql/%SUBDIR%/ \
@@ -21,14 +20,9 @@ MASTER_SITES= ftp://ftp.postgresql.org/pub/%SUBDIR%/ \
MASTER_SITE_SUBDIR= source/v${PORTVERSION}
DISTFILES= postgresql-base-${PORTVERSION}${EXTRACT_SUFX} \
postgresql-opt-${PORTVERSION}${EXTRACT_SUFX}
-.if !defined(POSTGRESQL_SUBPORT) && !defined(NOPORTDOCS)
-DISTFILES+= postgresql-docs-${PORTVERSION}${EXTRACT_SUFX}
-.endif
MAINTAINER?= girgen@partitur.se
-FORBIDDEN= "buffer overruns acknowledged by authors--see <URL:http://www3.us.postgresql.org/news.html>"
-
WRKSRC= ${WRKDIR}/postgresql-${PORTVERSION}
DIST_SUBDIR= postgresql
@@ -174,10 +168,6 @@ do-install:
${GMAKE} -C src/bin install ;\
${GMAKE} -C src/include install ;\
${GMAKE} -C src/interfaces install
-.if !defined(NOPORTDOCS)
- @ cd ${WRKSRC}; \
- ${GMAKE} -C doc install
-.endif
.endif
post-clean:
diff --git a/databases/postgresql91-server/distinfo b/databases/postgresql91-server/distinfo
index 0aad32ada824..99c49f5e2f7c 100644
--- a/databases/postgresql91-server/distinfo
+++ b/databases/postgresql91-server/distinfo
@@ -1,3 +1,3 @@
-MD5 (postgresql/postgresql-base-7.2.1.tar.gz) = e294084800e9470d582b57e3d38ec247
-MD5 (postgresql/postgresql-opt-7.2.1.tar.gz) = 5844486d9f3d449e9d1d02666315059f
-MD5 (postgresql/postgresql-docs-7.2.1.tar.gz) = eff48d40b0c1bde1854c77c0b2e1b565
+MD5 (postgresql/postgresql-base-7.2.2.tar.gz) = 669ccb907c8dbd901487391055fe52a5
+MD5 (postgresql/postgresql-opt-7.2.2.tar.gz) = 302e5d0da833530359b55ebb5ee7dc57
+MD5 (postgresql/postgresql-docs-7.2.2.tar.gz) = 1fdb72d0e980aedfefb1b629b02d0d8e
diff --git a/databases/postgresql91-server/files/502.pgsql b/databases/postgresql91-server/files/502.pgsql
index 32d473826f40..3a44f1132ac8 100644
--- a/databases/postgresql91-server/files/502.pgsql
+++ b/databases/postgresql91-server/files/502.pgsql
@@ -1,6 +1,6 @@
#!/bin/sh
#
-# $Id: 502.pgsql.in,v 1.17 2001/10/29 10:12:32 henrik Exp $
+# $FreeBSD$
#
# Maintenance shell script to vacuum and backup database
# Put this in /usr/local/etc/periodic/daily, and it will be run
@@ -11,20 +11,13 @@
# In public domain, do what you like with it,
# and use it at your own risk... :)
#
-############################
-
-# arguments to pg_dump
-PGDUMP_ARGS="-b -F c"
-
-# the directory where the backups will reside
-# ${HOME} is pgsql's home directory
-PGBACKUPDIR=${HOME}/backups
-
-# some data is amazingly more compressed with bzip2, esp. blobs, it seems
-# if your're short on diskspace, give it a try and set USEBZIP=yes
-USEBZIP=no
-
-############################
+######################################################################
+#
+# If you like to tweak the settings of the variables PGBACKUPDIR and
+# PGDUMP_ARGS, you should preferably set them in ~pgsql/.profile.
+# If set there, that setting will override the defaults here.
+#
+######################################################################
DIR=`dirname $0`
progname=`basename $0`
@@ -36,11 +29,13 @@ if [ `id -un` != pgsql ]; then
exit $?
fi
-if [ X${USEBZIP} = Xyes ]; then
- BZIP=`which bzip2 || echo true`
-else
- BZIP=true
-fi
+# arguments to pg_dump
+PGDUMP_ARGS=${PGDUMP_ARGS:-"-b -F c"}
+
+# The directory where the backups will reside.
+# ${HOME} is pgsql's home directory
+#
+PGBACKUPDIR=${PGBACKUPDIR:-${HOME}/backups}
# PGBACKUPDIR must be writeable by user pgsql
# ~pgsql is just that under normal circumstances,
@@ -63,7 +58,6 @@ for db in ${dbnames}; do
file=${PGBACKUPDIR}/pgdump_${db}_`date "+%Y%m%d"`
pg_dump ${PGDUMP_ARGS} -d $db -f ${file}
[ $? -gt 0 ] && rc=3
- ${BZIP} ${file}
done
if [ $rc -gt 0 ]; then
@@ -77,12 +71,11 @@ vacuumdb -a -z -q
if [ $? -gt 0 ]
then
echo
- echo "Errors were reported vacuum."
+ echo "Errors were reported during vacuum."
rc=3
fi
# cleaning up old data
-find ${PGBACKUPDIR} \( -name 'pgdump_*'.${GZIPEXT} -o -name 'pgdumpall_*'.${GZIPEXT} \) \
- -a -atime +7 -delete
+find ${PGBACKUPDIR} -name 'pgdump_*' -a -atime +7 -delete
exit $rc
diff --git a/databases/postgresql91-server/files/post-install-notes b/databases/postgresql91-server/files/post-install-notes
index 55816362579b..cdf343002074 100644
--- a/databases/postgresql91-server/files/post-install-notes
+++ b/databases/postgresql91-server/files/post-install-notes
@@ -1,5 +1,8 @@
The PostgreSQL port has a collection of "side orders":
+postgresql-doc
+ For all of the html documentation
+
p5-Pg
A perl5 API for client access to PostgreSQL databases.
diff --git a/databases/postgresql91-server/pkg-plist b/databases/postgresql91-server/pkg-plist
index 5f88a3e82c56..a103c3faf3da 100644
--- a/databases/postgresql91-server/pkg-plist
+++ b/databases/postgresql91-server/pkg-plist
@@ -73,556 +73,6 @@ lib/libpq++.so.4
%%SERVER%%share/postgresql/postgresql.conf.sample
share/postgresql/post-install-notes
@unexec rmdir %D/share/postgresql 2>/dev/null || true
-%%PORTDOCS%%share/doc/postgresql/html/index.html
-%%PORTDOCS%%share/doc/postgresql/html/tutorial.html
-%%PORTDOCS%%share/doc/postgresql/html/tutorial-welcome.html
-%%PORTDOCS%%share/doc/postgresql/html/tutorial-start.html
-%%PORTDOCS%%share/doc/postgresql/html/tutorial-arch.html
-%%PORTDOCS%%share/doc/postgresql/html/tutorial-createdb.html
-%%PORTDOCS%%share/doc/postgresql/html/tutorial-accessdb.html
-%%PORTDOCS%%share/doc/postgresql/html/tutorial-sql.html
-%%PORTDOCS%%share/doc/postgresql/html/tutorial-concepts.html
-%%PORTDOCS%%share/doc/postgresql/html/tutorial-table.html
-%%PORTDOCS%%share/doc/postgresql/html/tutorial-populate.html
-%%PORTDOCS%%share/doc/postgresql/html/tutorial-select.html
-%%PORTDOCS%%share/doc/postgresql/html/tutorial-join.html
-%%PORTDOCS%%share/doc/postgresql/html/tutorial-agg.html
-%%PORTDOCS%%share/doc/postgresql/html/tutorial-update.html
-%%PORTDOCS%%share/doc/postgresql/html/tutorial-delete.html
-%%PORTDOCS%%share/doc/postgresql/html/user.html
-%%PORTDOCS%%share/doc/postgresql/html/tutorial-advanced.html
-%%PORTDOCS%%share/doc/postgresql/html/tutorial-views.html
-%%PORTDOCS%%share/doc/postgresql/html/tutorial-fk.html
-%%PORTDOCS%%share/doc/postgresql/html/tutorial-transactions.html
-%%PORTDOCS%%share/doc/postgresql/html/tutorial-inheritance.html
-%%PORTDOCS%%share/doc/postgresql/html/tutorial-conclusion.html
-%%PORTDOCS%%share/doc/postgresql/html/preface.html
-%%PORTDOCS%%share/doc/postgresql/html/history.html
-%%PORTDOCS%%share/doc/postgresql/html/resources.html
-%%PORTDOCS%%share/doc/postgresql/html/notation.html
-%%PORTDOCS%%share/doc/postgresql/html/bug-reporting.html
-%%PORTDOCS%%share/doc/postgresql/html/y2k.html
-%%PORTDOCS%%share/doc/postgresql/html/sql-syntax.html
-%%PORTDOCS%%share/doc/postgresql/html/sql-syntax-columns.html
-%%PORTDOCS%%share/doc/postgresql/html/sql-expressions.html
-%%PORTDOCS%%share/doc/postgresql/html/sql-precedence.html
-%%PORTDOCS%%share/doc/postgresql/html/queries.html
-%%PORTDOCS%%share/doc/postgresql/html/queries-union.html
-%%PORTDOCS%%share/doc/postgresql/html/queries-table-expressions.html
-%%PORTDOCS%%share/doc/postgresql/html/queries-select-lists.html
-%%PORTDOCS%%share/doc/postgresql/html/queries-order.html
-%%PORTDOCS%%share/doc/postgresql/html/queries-limit.html
-%%PORTDOCS%%share/doc/postgresql/html/datatype.html
-%%PORTDOCS%%share/doc/postgresql/html/datatype-money.html
-%%PORTDOCS%%share/doc/postgresql/html/datatype-character.html
-%%PORTDOCS%%share/doc/postgresql/html/datatype-binary.html
-%%PORTDOCS%%share/doc/postgresql/html/datatype-datetime.html
-%%PORTDOCS%%share/doc/postgresql/html/datatype-boolean.html
-%%PORTDOCS%%share/doc/postgresql/html/datatype-geometric.html
-%%PORTDOCS%%share/doc/postgresql/html/datatype-net-types.html
-%%PORTDOCS%%share/doc/postgresql/html/datatype-bit.html
-%%PORTDOCS%%share/doc/postgresql/html/functions.html
-%%PORTDOCS%%share/doc/postgresql/html/functions-comparison.html
-%%PORTDOCS%%share/doc/postgresql/html/functions-math.html
-%%PORTDOCS%%share/doc/postgresql/html/arrays.html
-%%PORTDOCS%%share/doc/postgresql/html/functions-string.html
-%%PORTDOCS%%share/doc/postgresql/html/functions-binarystring.html
-%%PORTDOCS%%share/doc/postgresql/html/functions-matching.html
-%%PORTDOCS%%share/doc/postgresql/html/functions-formatting.html
-%%PORTDOCS%%share/doc/postgresql/html/functions-datetime.html
-%%PORTDOCS%%share/doc/postgresql/html/functions-geometry.html
-%%PORTDOCS%%share/doc/postgresql/html/functions-net.html
-%%PORTDOCS%%share/doc/postgresql/html/functions-sequence.html
-%%PORTDOCS%%share/doc/postgresql/html/functions-conditional.html
-%%PORTDOCS%%share/doc/postgresql/html/functions-misc.html
-%%PORTDOCS%%share/doc/postgresql/html/functions-aggregate.html
-%%PORTDOCS%%share/doc/postgresql/html/functions-subquery.html
-%%PORTDOCS%%share/doc/postgresql/html/typeconv.html
-%%PORTDOCS%%share/doc/postgresql/html/typeconv-overview.html
-%%PORTDOCS%%share/doc/postgresql/html/typeconv-oper.html
-%%PORTDOCS%%share/doc/postgresql/html/typeconv-func.html
-%%PORTDOCS%%share/doc/postgresql/html/typeconv-query.html
-%%PORTDOCS%%share/doc/postgresql/html/typeconv-union-case.html
-%%PORTDOCS%%share/doc/postgresql/html/indexes.html
-%%PORTDOCS%%share/doc/postgresql/html/indexes-types.html
-%%PORTDOCS%%share/doc/postgresql/html/indexes-multicolumn.html
-%%PORTDOCS%%share/doc/postgresql/html/indexes-unique.html
-%%PORTDOCS%%share/doc/postgresql/html/indexes-functional.html
-%%PORTDOCS%%share/doc/postgresql/html/indexes-opclass.html
-%%PORTDOCS%%share/doc/postgresql/html/keys.html
-%%PORTDOCS%%share/doc/postgresql/html/indexes-partial.html
-%%PORTDOCS%%share/doc/postgresql/html/indexes-examine.html
-%%PORTDOCS%%share/doc/postgresql/html/inherit.html
-%%PORTDOCS%%share/doc/postgresql/html/mvcc.html
-%%PORTDOCS%%share/doc/postgresql/html/transaction-iso.html
-%%PORTDOCS%%share/doc/postgresql/html/xact-read-committed.html
-%%PORTDOCS%%share/doc/postgresql/html/xact-serializable.html
-%%PORTDOCS%%share/doc/postgresql/html/applevel-consistency.html
-%%PORTDOCS%%share/doc/postgresql/html/locking-tables.html
-%%PORTDOCS%%share/doc/postgresql/html/locking-indexes.html
-%%PORTDOCS%%share/doc/postgresql/html/manage.html
-%%PORTDOCS%%share/doc/postgresql/html/db-accessing.html
-%%PORTDOCS%%share/doc/postgresql/html/db-destroy.html
-%%PORTDOCS%%share/doc/postgresql/html/performance-tips.html
-%%PORTDOCS%%share/doc/postgresql/html/planner-stats.html
-%%PORTDOCS%%share/doc/postgresql/html/explicit-joins.html
-%%PORTDOCS%%share/doc/postgresql/html/populate.html
-%%PORTDOCS%%share/doc/postgresql/html/datetime-appendix.html
-%%PORTDOCS%%share/doc/postgresql/html/timezones.html
-%%PORTDOCS%%share/doc/postgresql/html/units-history.html
-%%PORTDOCS%%share/doc/postgresql/html/sql-keywords-appendix.html
-%%PORTDOCS%%share/doc/postgresql/html/biblio.html
-%%PORTDOCS%%share/doc/postgresql/html/admin.html
-%%PORTDOCS%%share/doc/postgresql/html/installation.html
-%%PORTDOCS%%share/doc/postgresql/html/install-requirements.html
-%%PORTDOCS%%share/doc/postgresql/html/install-getsource.html
-%%PORTDOCS%%share/doc/postgresql/html/install-upgrading.html
-%%PORTDOCS%%share/doc/postgresql/html/install-procedure.html
-%%PORTDOCS%%share/doc/postgresql/html/install-post.html
-%%PORTDOCS%%share/doc/postgresql/html/supported-platforms.html
-%%PORTDOCS%%share/doc/postgresql/html/install-win32.html
-%%PORTDOCS%%share/doc/postgresql/html/runtime.html
-%%PORTDOCS%%share/doc/postgresql/html/creating-cluster.html
-%%PORTDOCS%%share/doc/postgresql/html/postmaster-start.html
-%%PORTDOCS%%share/doc/postgresql/html/runtime-config.html
-%%PORTDOCS%%share/doc/postgresql/html/kernel-resources.html
-%%PORTDOCS%%share/doc/postgresql/html/postmaster-shutdown.html
-%%PORTDOCS%%share/doc/postgresql/html/ssl-tcp.html
-%%PORTDOCS%%share/doc/postgresql/html/ssh-tunnels.html
-%%PORTDOCS%%share/doc/postgresql/html/client-authentication.html
-%%PORTDOCS%%share/doc/postgresql/html/auth-methods.html
-%%PORTDOCS%%share/doc/postgresql/html/client-authentication-problems.html
-%%PORTDOCS%%share/doc/postgresql/html/charset.html
-%%PORTDOCS%%share/doc/postgresql/html/recode.html
-%%PORTDOCS%%share/doc/postgresql/html/multibyte.html
-%%PORTDOCS%%share/doc/postgresql/html/managing-databases.html
-%%PORTDOCS%%share/doc/postgresql/html/manage-ag-dropdb.html
-%%PORTDOCS%%share/doc/postgresql/html/user-manag.html
-%%PORTDOCS%%share/doc/postgresql/html/groups.html
-%%PORTDOCS%%share/doc/postgresql/html/privileges.html
-%%PORTDOCS%%share/doc/postgresql/html/perm-functions.html
-%%PORTDOCS%%share/doc/postgresql/html/maintenance.html
-%%PORTDOCS%%share/doc/postgresql/html/routine-vacuuming.html
-%%PORTDOCS%%share/doc/postgresql/html/logfile-maintenance.html
-%%PORTDOCS%%share/doc/postgresql/html/backup.html
-%%PORTDOCS%%share/doc/postgresql/html/backup-file.html
-%%PORTDOCS%%share/doc/postgresql/html/migration.html
-%%PORTDOCS%%share/doc/postgresql/html/monitoring.html
-%%PORTDOCS%%share/doc/postgresql/html/monitoring-stats.html
-%%PORTDOCS%%share/doc/postgresql/html/wal.html
-%%PORTDOCS%%share/doc/postgresql/html/wal-implementation.html
-%%PORTDOCS%%share/doc/postgresql/html/wal-configuration.html
-%%PORTDOCS%%share/doc/postgresql/html/storage.html
-%%PORTDOCS%%share/doc/postgresql/html/libpq.html
-%%PORTDOCS%%share/doc/postgresql/html/failure.html
-%%PORTDOCS%%share/doc/postgresql/html/failure-disk-failed.html
-%%PORTDOCS%%share/doc/postgresql/html/regress.html
-%%PORTDOCS%%share/doc/postgresql/html/regress-run.html
-%%PORTDOCS%%share/doc/postgresql/html/regress-evaluation.html
-%%PORTDOCS%%share/doc/postgresql/html/regress-platform.html
-%%PORTDOCS%%share/doc/postgresql/html/release.html
-%%PORTDOCS%%share/doc/postgresql/html/release-7-2.html
-%%PORTDOCS%%share/doc/postgresql/html/release-7-1-3.html
-%%PORTDOCS%%share/doc/postgresql/html/release-7-1-2.html
-%%PORTDOCS%%share/doc/postgresql/html/release-7-1-1.html
-%%PORTDOCS%%share/doc/postgresql/html/release-7-1.html
-%%PORTDOCS%%share/doc/postgresql/html/release-7-0-3.html
-%%PORTDOCS%%share/doc/postgresql/html/release-7-0-2.html
-%%PORTDOCS%%share/doc/postgresql/html/release-7-0-1.html
-%%PORTDOCS%%share/doc/postgresql/html/release-7-0.html
-%%PORTDOCS%%share/doc/postgresql/html/release-6-5-3.html
-%%PORTDOCS%%share/doc/postgresql/html/release-6-5-2.html
-%%PORTDOCS%%share/doc/postgresql/html/release-6-5-1.html
-%%PORTDOCS%%share/doc/postgresql/html/release-6-5.html
-%%PORTDOCS%%share/doc/postgresql/html/release-6-4-2.html
-%%PORTDOCS%%share/doc/postgresql/html/release-6-4-1.html
-%%PORTDOCS%%share/doc/postgresql/html/release-6-4.html
-%%PORTDOCS%%share/doc/postgresql/html/release-6-3-2.html
-%%PORTDOCS%%share/doc/postgresql/html/release-6-3-1.html
-%%PORTDOCS%%share/doc/postgresql/html/release-6-3.html
-%%PORTDOCS%%share/doc/postgresql/html/release-6-2-1.html
-%%PORTDOCS%%share/doc/postgresql/html/release-6-2.html
-%%PORTDOCS%%share/doc/postgresql/html/release-6-1-1.html
-%%PORTDOCS%%share/doc/postgresql/html/release-6-1.html
-%%PORTDOCS%%share/doc/postgresql/html/release-6-0.html
-%%PORTDOCS%%share/doc/postgresql/html/release-1-09.html
-%%PORTDOCS%%share/doc/postgresql/html/release-1-02.html
-%%PORTDOCS%%share/doc/postgresql/html/release-1-01.html
-%%PORTDOCS%%share/doc/postgresql/html/release-1-0.html
-%%PORTDOCS%%share/doc/postgresql/html/release-0-03.html
-%%PORTDOCS%%share/doc/postgresql/html/release-0-02.html
-%%PORTDOCS%%share/doc/postgresql/html/release-0-01.html
-%%PORTDOCS%%share/doc/postgresql/html/programmer.html
-%%PORTDOCS%%share/doc/postgresql/html/programmer-client.html
-%%PORTDOCS%%share/doc/postgresql/html/libpq-connect.html
-%%PORTDOCS%%share/doc/postgresql/html/libpq-exec.html
-%%PORTDOCS%%share/doc/postgresql/html/libpq-async.html
-%%PORTDOCS%%share/doc/postgresql/html/libpq-fastpath.html
-%%PORTDOCS%%share/doc/postgresql/html/libpq-notify.html
-%%PORTDOCS%%share/doc/postgresql/html/libpq-copy.html
-%%PORTDOCS%%share/doc/postgresql/html/libpq-trace.html
-%%PORTDOCS%%share/doc/postgresql/html/libpq-control.html
-%%PORTDOCS%%share/doc/postgresql/html/libpq-envars.html
-%%PORTDOCS%%share/doc/postgresql/html/libpq-threading.html
-%%PORTDOCS%%share/doc/postgresql/html/libpq-build.html
-%%PORTDOCS%%share/doc/postgresql/html/libpq-example.html
-%%PORTDOCS%%share/doc/postgresql/html/largeobjects.html
-%%PORTDOCS%%share/doc/postgresql/html/lo-implementation.html
-%%PORTDOCS%%share/doc/postgresql/html/lo-interfaces.html
-%%PORTDOCS%%share/doc/postgresql/html/lo-funcs.html
-%%PORTDOCS%%share/doc/postgresql/html/lo-libpq.html
-%%PORTDOCS%%share/doc/postgresql/html/libpqplusplus.html
-%%PORTDOCS%%share/doc/postgresql/html/libpqpp-init.html
-%%PORTDOCS%%share/doc/postgresql/html/libpqpp-classes.html
-%%PORTDOCS%%share/doc/postgresql/html/libpqpp-connect.html
-%%PORTDOCS%%share/doc/postgresql/html/libpqpp-exec.html
-%%PORTDOCS%%share/doc/postgresql/html/libpqpp-notify.html
-%%PORTDOCS%%share/doc/postgresql/html/libpqpp-copy.html
-%%PORTDOCS%%share/doc/postgresql/html/pgtcl.html
-%%PORTDOCS%%share/doc/postgresql/html/libpgtcl-loading.html
-%%PORTDOCS%%share/doc/postgresql/html/libpgtcl-ref.html
-%%PORTDOCS%%share/doc/postgresql/html/pgtcl-pgconnect.html
-%%PORTDOCS%%share/doc/postgresql/html/pgtcl-pgdisconnect.html
-%%PORTDOCS%%share/doc/postgresql/html/pgtcl-pgconndefaults.html
-%%PORTDOCS%%share/doc/postgresql/html/pgtcl-pgexec.html
-%%PORTDOCS%%share/doc/postgresql/html/pgtcl-pgresult.html
-%%PORTDOCS%%share/doc/postgresql/html/pgeasy.html
-%%PORTDOCS%%share/doc/postgresql/html/pgtcl-pgselect.html
-%%PORTDOCS%%share/doc/postgresql/html/pgtcl-pglisten.html
-%%PORTDOCS%%share/doc/postgresql/html/pgtcl-pglocreat.html
-%%PORTDOCS%%share/doc/postgresql/html/pgtcl-pgloopen.html
-%%PORTDOCS%%share/doc/postgresql/html/pgtcl-pgloclose.html
-%%PORTDOCS%%share/doc/postgresql/html/pgtcl-pgloread.html
-%%PORTDOCS%%share/doc/postgresql/html/pgtcl-pglowrite.html
-%%PORTDOCS%%share/doc/postgresql/html/pgtcl-pglolseek.html
-%%PORTDOCS%%share/doc/postgresql/html/pgtcl-pglotell.html
-%%PORTDOCS%%share/doc/postgresql/html/pgtcl-pglounlink.html
-%%PORTDOCS%%share/doc/postgresql/html/pgtcl-pgloimport.html
-%%PORTDOCS%%share/doc/postgresql/html/pgtcl-pgloexport.html
-%%PORTDOCS%%share/doc/postgresql/html/ecpg.html
-%%PORTDOCS%%share/doc/postgresql/html/ecpg-concept.html
-%%PORTDOCS%%share/doc/postgresql/html/ecpg-use.html
-%%PORTDOCS%%share/doc/postgresql/html/ecpg-limitations.html
-%%PORTDOCS%%share/doc/postgresql/html/ecpg-porting.html
-%%PORTDOCS%%share/doc/postgresql/html/ecpg-develop.html
-%%PORTDOCS%%share/doc/postgresql/html/odbc.html
-%%PORTDOCS%%share/doc/postgresql/html/odbc-install.html
-%%PORTDOCS%%share/doc/postgresql/html/odbc-config.html
-%%PORTDOCS%%share/doc/postgresql/html/odbc-windows.html
-%%PORTDOCS%%share/doc/postgresql/html/odbc-applixware.html
-%%PORTDOCS%%share/doc/postgresql/html/jdbc.html
-%%PORTDOCS%%share/doc/postgresql/html/jdbc-use.html
-%%PORTDOCS%%share/doc/postgresql/html/jdbc-query.html
-%%PORTDOCS%%share/doc/postgresql/html/jdbc-update.html
-%%PORTDOCS%%share/doc/postgresql/html/jdbc-ddl.html
-%%PORTDOCS%%share/doc/postgresql/html/jdbc-binary-data.html
-%%PORTDOCS%%share/doc/postgresql/html/jdbc-ext.html
-%%PORTDOCS%%share/doc/postgresql/html/jdbc-thread.html
-%%PORTDOCS%%share/doc/postgresql/html/jdbc-reading.html
-%%PORTDOCS%%share/doc/postgresql/html/pygresql.html
-%%PORTDOCS%%share/doc/postgresql/html/pygresql-pg-functions.html
-%%PORTDOCS%%share/doc/postgresql/html/pygresql-connect.html
-%%PORTDOCS%%share/doc/postgresql/html/pygresql-get-defhost.html
-%%PORTDOCS%%share/doc/postgresql/html/pygresql-set-defhost.html
-%%PORTDOCS%%share/doc/postgresql/html/pygresql-get-defport.html
-%%PORTDOCS%%share/doc/postgresql/html/pygresql-set-defport.html
-%%PORTDOCS%%share/doc/postgresql/html/pygresql-get-defopt.html
-%%PORTDOCS%%share/doc/postgresql/html/pygresql-set-defopt.html
-%%PORTDOCS%%share/doc/postgresql/html/pygresql-get-deftty.html
-%%PORTDOCS%%share/doc/postgresql/html/pygresql-set-deftty.html
-%%PORTDOCS%%share/doc/postgresql/html/pygresql-get-defbase.html
-%%PORTDOCS%%share/doc/postgresql/html/pygresql-set-defbase.html
-%%PORTDOCS%%share/doc/postgresql/html/pygresql-pg-pgobject.html
-%%PORTDOCS%%share/doc/postgresql/html/pygresql-query.html
-%%PORTDOCS%%share/doc/postgresql/html/pygresql-reset.html
-%%PORTDOCS%%share/doc/postgresql/html/pygresql-close.html
-%%PORTDOCS%%share/doc/postgresql/html/pygresql-fileno.html
-%%PORTDOCS%%share/doc/postgresql/html/pygresql-getnotify.html
-%%PORTDOCS%%share/doc/postgresql/html/pygresql-inserttable.html
-%%PORTDOCS%%share/doc/postgresql/html/pygresql-putline.html
-%%PORTDOCS%%share/doc/postgresql/html/pygresql-getline.html
-%%PORTDOCS%%share/doc/postgresql/html/pygresql-endcopy.html
-%%PORTDOCS%%share/doc/postgresql/html/pygresql-locreate.html
-%%PORTDOCS%%share/doc/postgresql/html/pygresql-getlo.html
-%%PORTDOCS%%share/doc/postgresql/html/pygresql-loimport.html
-%%PORTDOCS%%share/doc/postgresql/html/pygresql-pg-db.html
-%%PORTDOCS%%share/doc/postgresql/html/pygresql-db-pkey.html
-%%PORTDOCS%%share/doc/postgresql/html/pygresql-db-get-databases.html
-%%PORTDOCS%%share/doc/postgresql/html/pygresql-db-get-tables.html
-%%PORTDOCS%%share/doc/postgresql/html/pygresql-db-get-attnames.html
-%%PORTDOCS%%share/doc/postgresql/html/pygresql-db-get.html
-%%PORTDOCS%%share/doc/postgresql/html/pygresql-db-insert.html
-%%PORTDOCS%%share/doc/postgresql/html/pygresql-db-update.html
-%%PORTDOCS%%share/doc/postgresql/html/pygresql-db-clear.html
-%%PORTDOCS%%share/doc/postgresql/html/pygresql-db-delete.html
-%%PORTDOCS%%share/doc/postgresql/html/pygresql-pg-pgqueryobject.html
-%%PORTDOCS%%share/doc/postgresql/html/pygresql-pgqueryobject-getresult.html
-%%PORTDOCS%%share/doc/postgresql/html/pygresql-pgqueryobject-dictresult.html
-%%PORTDOCS%%share/doc/postgresql/html/pygresql-pgqueryobject-listfields.html
-%%PORTDOCS%%share/doc/postgresql/html/pygresql-pgqueryobject-fieldname.html
-%%PORTDOCS%%share/doc/postgresql/html/pygresql-pgqueryobject-fieldnum.html
-%%PORTDOCS%%share/doc/postgresql/html/pygresql-pgqueryobject-ntuples.html
-%%PORTDOCS%%share/doc/postgresql/html/pygresql-pg-pglarge.html
-%%PORTDOCS%%share/doc/postgresql/html/pygresql-pglargeobject-open.html
-%%PORTDOCS%%share/doc/postgresql/html/pygresql-pglargeobject-close.html
-%%PORTDOCS%%share/doc/postgresql/html/pygresql-pglargeobject-read.html
-%%PORTDOCS%%share/doc/postgresql/html/pygresql-pglargeobject-write.html
-%%PORTDOCS%%share/doc/postgresql/html/pygresql-pglargeobject-seek.html
-%%PORTDOCS%%share/doc/postgresql/html/pygresql-pglargeobject-tell.html
-%%PORTDOCS%%share/doc/postgresql/html/pygresql-pglargeobject-unlink.html
-%%PORTDOCS%%share/doc/postgresql/html/pygresql-pglargeobject-size.html
-%%PORTDOCS%%share/doc/postgresql/html/pygresql-pglargeobject-export.html
-%%PORTDOCS%%share/doc/postgresql/html/pygresql-db-api.html
-%%PORTDOCS%%share/doc/postgresql/html/programmer-server.html
-%%PORTDOCS%%share/doc/postgresql/html/arch-pg.html
-%%PORTDOCS%%share/doc/postgresql/html/extend.html
-%%PORTDOCS%%share/doc/postgresql/html/type-system.html
-%%PORTDOCS%%share/doc/postgresql/html/pg-system-catalogs.html
-%%PORTDOCS%%share/doc/postgresql/html/xfunc.html
-%%PORTDOCS%%share/doc/postgresql/html/xfunc-sql.html
-%%PORTDOCS%%share/doc/postgresql/html/xfunc-pl.html
-%%PORTDOCS%%share/doc/postgresql/html/xfunc-internal.html
-%%PORTDOCS%%share/doc/postgresql/html/xfunc-c.html
-%%PORTDOCS%%share/doc/postgresql/html/xfunc-overload.html
-%%PORTDOCS%%share/doc/postgresql/html/xfunc-plhandler.html
-%%PORTDOCS%%share/doc/postgresql/html/xtypes.html
-%%PORTDOCS%%share/doc/postgresql/html/xoper.html
-%%PORTDOCS%%share/doc/postgresql/html/xoper-example.html
-%%PORTDOCS%%share/doc/postgresql/html/xoper-optimization.html
-%%PORTDOCS%%share/doc/postgresql/html/xaggr.html
-%%PORTDOCS%%share/doc/postgresql/html/rules.html
-%%PORTDOCS%%share/doc/postgresql/html/querytree.html
-%%PORTDOCS%%share/doc/postgresql/html/rules-views.html
-%%PORTDOCS%%share/doc/postgresql/html/rules-insert.html
-%%PORTDOCS%%share/doc/postgresql/html/rules-permissions.html
-%%PORTDOCS%%share/doc/postgresql/html/rules-triggers.html
-%%PORTDOCS%%share/doc/postgresql/html/xindex.html
-%%PORTDOCS%%share/doc/postgresql/html/xindex-am.html
-%%PORTDOCS%%share/doc/postgresql/html/xindex-support.html
-%%PORTDOCS%%share/doc/postgresql/html/xindex-strategies.html
-%%PORTDOCS%%share/doc/postgresql/html/xindex-opclass.html
-%%PORTDOCS%%share/doc/postgresql/html/xindex-operators.html
-%%PORTDOCS%%share/doc/postgresql/html/indexcost.html
-%%PORTDOCS%%share/doc/postgresql/html/gist.html
-%%PORTDOCS%%share/doc/postgresql/html/triggers.html
-%%PORTDOCS%%share/doc/postgresql/html/trigger-manager.html
-%%PORTDOCS%%share/doc/postgresql/html/trigger-datachanges.html
-%%PORTDOCS%%share/doc/postgresql/html/trigger-examples.html
-%%PORTDOCS%%share/doc/postgresql/html/spi.html
-%%PORTDOCS%%share/doc/postgresql/html/spi-spiconnect.html
-%%PORTDOCS%%share/doc/postgresql/html/spi-spifinish.html
-%%PORTDOCS%%share/doc/postgresql/html/spi-spiexec.html
-%%PORTDOCS%%share/doc/postgresql/html/spi-spiprepare.html
-%%PORTDOCS%%share/doc/postgresql/html/spi-spiexecp.html
-%%PORTDOCS%%share/doc/postgresql/html/spi-spicursor-open.html
-%%PORTDOCS%%share/doc/postgresql/html/spi-spicursor-find.html
-%%PORTDOCS%%share/doc/postgresql/html/spi-spifnumber.html
-%%PORTDOCS%%share/doc/postgresql/html/spi-spicursor-fetch.html
-%%PORTDOCS%%share/doc/postgresql/html/spi-spicursor-move.html
-%%PORTDOCS%%share/doc/postgresql/html/spi-spicursor-close.html
-%%PORTDOCS%%share/doc/postgresql/html/spi-spisaveplan.html
-%%PORTDOCS%%share/doc/postgresql/html/spi-interface-support.html
-%%PORTDOCS%%share/doc/postgresql/html/spi-spifname.html
-%%PORTDOCS%%share/doc/postgresql/html/spi-spigetvalue.html
-%%PORTDOCS%%share/doc/postgresql/html/spi-spigetbinval.html
-%%PORTDOCS%%share/doc/postgresql/html/spi-spigettype.html
-%%PORTDOCS%%share/doc/postgresql/html/spi-spigettypeid.html
-%%PORTDOCS%%share/doc/postgresql/html/spi-spigetrelname.html
-%%PORTDOCS%%share/doc/postgresql/html/spi-memory.html
-%%PORTDOCS%%share/doc/postgresql/html/spi-spicopytuple.html
-%%PORTDOCS%%share/doc/postgresql/html/spi-spicopytupledesc.html
-%%PORTDOCS%%share/doc/postgresql/html/spi-spicopytupleintoslot.html
-%%PORTDOCS%%share/doc/postgresql/html/spi-spimodifytuple.html
-%%PORTDOCS%%share/doc/postgresql/html/spi-spipalloc.html
-%%PORTDOCS%%share/doc/postgresql/html/spi-spirepalloc.html
-%%PORTDOCS%%share/doc/postgresql/html/spi-spipfree.html
-%%PORTDOCS%%share/doc/postgresql/html/spi-spifreetuple.html
-%%PORTDOCS%%share/doc/postgresql/html/spi-spifreetuptable.html
-%%PORTDOCS%%share/doc/postgresql/html/spi-spifreeplan.html
-%%PORTDOCS%%share/doc/postgresql/html/spi-visibility.html
-%%PORTDOCS%%share/doc/postgresql/html/spi-examples.html
-%%PORTDOCS%%share/doc/postgresql/html/programmer-pl.html
-%%PORTDOCS%%share/doc/postgresql/html/xplang.html
-%%PORTDOCS%%share/doc/postgresql/html/xplang-install.html
-%%PORTDOCS%%share/doc/postgresql/html/plpgsql.html
-%%PORTDOCS%%share/doc/postgresql/html/plpgsql-structure.html
-%%PORTDOCS%%share/doc/postgresql/html/plpgsql-declarations.html
-%%PORTDOCS%%share/doc/postgresql/html/plpgsql-expressions.html
-%%PORTDOCS%%share/doc/postgresql/html/plpgsql-statements.html
-%%PORTDOCS%%share/doc/postgresql/html/plpgsql-control-structures.html
-%%PORTDOCS%%share/doc/postgresql/html/pltcl.html
-%%PORTDOCS%%share/doc/postgresql/html/plpgsql-cursors.html
-%%PORTDOCS%%share/doc/postgresql/html/plpgsql-errors-and-messages.html
-%%PORTDOCS%%share/doc/postgresql/html/plpgsql-trigger.html
-%%PORTDOCS%%share/doc/postgresql/html/plpgsql-examples.html
-%%PORTDOCS%%share/doc/postgresql/html/plpgsql-porting.html
-%%PORTDOCS%%share/doc/postgresql/html/pltcl-description.html
-%%PORTDOCS%%share/doc/postgresql/html/plperl.html
-%%PORTDOCS%%share/doc/postgresql/html/plperl-description.html
-%%PORTDOCS%%share/doc/postgresql/html/plperl-install.html
-%%PORTDOCS%%share/doc/postgresql/html/plpython.html
-%%PORTDOCS%%share/doc/postgresql/html/plpython-install.html
-%%PORTDOCS%%share/doc/postgresql/html/plpython-using.html
-%%PORTDOCS%%share/doc/postgresql/html/reference.html
-%%PORTDOCS%%share/doc/postgresql/html/reference-preface.html
-%%PORTDOCS%%share/doc/postgresql/html/sql-commands.html
-%%PORTDOCS%%share/doc/postgresql/html/sql-abort.html
-%%PORTDOCS%%share/doc/postgresql/html/sql-altergroup.html
-%%PORTDOCS%%share/doc/postgresql/html/sql-altertable.html
-%%PORTDOCS%%share/doc/postgresql/html/sql-alteruser.html
-%%PORTDOCS%%share/doc/postgresql/html/sql-analyze.html
-%%PORTDOCS%%share/doc/postgresql/html/sql-begin.html
-%%PORTDOCS%%share/doc/postgresql/html/sql-checkpoint.html
-%%PORTDOCS%%share/doc/postgresql/html/sql-close.html
-%%PORTDOCS%%share/doc/postgresql/html/sql-cluster.html
-%%PORTDOCS%%share/doc/postgresql/html/sql-comment.html
-%%PORTDOCS%%share/doc/postgresql/html/sql-commit.html
-%%PORTDOCS%%share/doc/postgresql/html/sql-copy.html
-%%PORTDOCS%%share/doc/postgresql/html/sql-createaggregate.html
-%%PORTDOCS%%share/doc/postgresql/html/sql-createconstraint.html
-%%PORTDOCS%%share/doc/postgresql/html/sql-createdatabase.html
-%%PORTDOCS%%share/doc/postgresql/html/sql-createfunction.html
-%%PORTDOCS%%share/doc/postgresql/html/sql-creategroup.html
-%%PORTDOCS%%share/doc/postgresql/html/sql-createindex.html
-%%PORTDOCS%%share/doc/postgresql/html/sql-createlanguage.html
-%%PORTDOCS%%share/doc/postgresql/html/sql-createoperator.html
-%%PORTDOCS%%share/doc/postgresql/html/sql-createrule.html
-%%PORTDOCS%%share/doc/postgresql/html/sql-createsequence.html
-%%PORTDOCS%%share/doc/postgresql/html/sql-createtable.html
-%%PORTDOCS%%share/doc/postgresql/html/sql-createtableas.html
-%%PORTDOCS%%share/doc/postgresql/html/sql-createtrigger.html
-%%PORTDOCS%%share/doc/postgresql/html/sql-createtype.html
-%%PORTDOCS%%share/doc/postgresql/html/sql-createuser.html
-%%PORTDOCS%%share/doc/postgresql/html/sql-createview.html
-%%PORTDOCS%%share/doc/postgresql/html/sql-declare.html
-%%PORTDOCS%%share/doc/postgresql/html/sql-delete.html
-%%PORTDOCS%%share/doc/postgresql/html/sql-dropaggregate.html
-%%PORTDOCS%%share/doc/postgresql/html/sql-dropdatabase.html
-%%PORTDOCS%%share/doc/postgresql/html/sql-dropfunction.html
-%%PORTDOCS%%share/doc/postgresql/html/sql-dropgroup.html
-%%PORTDOCS%%share/doc/postgresql/html/sql-dropindex.html
-%%PORTDOCS%%share/doc/postgresql/html/sql-droplanguage.html
-%%PORTDOCS%%share/doc/postgresql/html/sql-dropoperator.html
-%%PORTDOCS%%share/doc/postgresql/html/sql-droprule.html
-%%PORTDOCS%%share/doc/postgresql/html/sql-dropsequence.html
-%%PORTDOCS%%share/doc/postgresql/html/sql-droptable.html
-%%PORTDOCS%%share/doc/postgresql/html/sql-droptrigger.html
-%%PORTDOCS%%share/doc/postgresql/html/sql-droptype.html
-%%PORTDOCS%%share/doc/postgresql/html/sql-dropuser.html
-%%PORTDOCS%%share/doc/postgresql/html/sql-dropview.html
-%%PORTDOCS%%share/doc/postgresql/html/sql-end.html
-%%PORTDOCS%%share/doc/postgresql/html/sql-explain.html
-%%PORTDOCS%%share/doc/postgresql/html/sql-fetch.html
-%%PORTDOCS%%share/doc/postgresql/html/sql-grant.html
-%%PORTDOCS%%share/doc/postgresql/html/sql-insert.html
-%%PORTDOCS%%share/doc/postgresql/html/sql-listen.html
-%%PORTDOCS%%share/doc/postgresql/html/sql-load.html
-%%PORTDOCS%%share/doc/postgresql/html/sql-lock.html
-%%PORTDOCS%%share/doc/postgresql/html/sql-move.html
-%%PORTDOCS%%share/doc/postgresql/html/sql-notify.html
-%%PORTDOCS%%share/doc/postgresql/html/sql-reindex.html
-%%PORTDOCS%%share/doc/postgresql/html/sql-reset.html
-%%PORTDOCS%%share/doc/postgresql/html/sql-revoke.html
-%%PORTDOCS%%share/doc/postgresql/html/sql-rollback.html
-%%PORTDOCS%%share/doc/postgresql/html/sql-select.html
-%%PORTDOCS%%share/doc/postgresql/html/sql-selectinto.html
-%%PORTDOCS%%share/doc/postgresql/html/sql-set.html
-%%PORTDOCS%%share/doc/postgresql/html/sql-set-constraints.html
-%%PORTDOCS%%share/doc/postgresql/html/sql-set-session-authorization.html
-%%PORTDOCS%%share/doc/postgresql/html/sql-set-transaction.html
-%%PORTDOCS%%share/doc/postgresql/html/sql-show.html
-%%PORTDOCS%%share/doc/postgresql/html/sql-truncate.html
-%%PORTDOCS%%share/doc/postgresql/html/sql-unlisten.html
-%%PORTDOCS%%share/doc/postgresql/html/sql-update.html
-%%PORTDOCS%%share/doc/postgresql/html/sql-vacuum.html
-%%PORTDOCS%%share/doc/postgresql/html/reference-client.html
-%%PORTDOCS%%share/doc/postgresql/html/app-createdb.html
-%%PORTDOCS%%share/doc/postgresql/html/app-createlang.html
-%%PORTDOCS%%share/doc/postgresql/html/app-createuser.html
-%%PORTDOCS%%share/doc/postgresql/html/app-dropdb.html
-%%PORTDOCS%%share/doc/postgresql/html/app-droplang.html
-%%PORTDOCS%%share/doc/postgresql/html/app-dropuser.html
-%%PORTDOCS%%share/doc/postgresql/html/app-ecpg.html
-%%PORTDOCS%%share/doc/postgresql/html/app-pgaccess.html
-%%PORTDOCS%%share/doc/postgresql/html/app-pgconfig.html
-%%PORTDOCS%%share/doc/postgresql/html/app-pgdump.html
-%%PORTDOCS%%share/doc/postgresql/html/app-pg-dumpall.html
-%%PORTDOCS%%share/doc/postgresql/html/app-pgrestore.html
-%%PORTDOCS%%share/doc/postgresql/html/app-psql.html
-%%PORTDOCS%%share/doc/postgresql/html/app-pgtclsh.html
-%%PORTDOCS%%share/doc/postgresql/html/app-pgtksh.html
-%%PORTDOCS%%share/doc/postgresql/html/app-vacuumdb.html
-%%PORTDOCS%%share/doc/postgresql/html/reference-server.html
-%%PORTDOCS%%share/doc/postgresql/html/app-initdb.html
-%%PORTDOCS%%share/doc/postgresql/html/app-initlocation.html
-%%PORTDOCS%%share/doc/postgresql/html/app-ipcclean.html
-%%PORTDOCS%%share/doc/postgresql/html/app-pg-ctl.html
-%%PORTDOCS%%share/doc/postgresql/html/app-pg-passwd.html
-%%PORTDOCS%%share/doc/postgresql/html/app-postgres.html
-%%PORTDOCS%%share/doc/postgresql/html/app-postmaster.html
-%%PORTDOCS%%share/doc/postgresql/html/developer.html
-%%PORTDOCS%%share/doc/postgresql/html/source.html
-%%PORTDOCS%%share/doc/postgresql/html/overview.html
-%%PORTDOCS%%share/doc/postgresql/html/connect-estab.html
-%%PORTDOCS%%share/doc/postgresql/html/parser-stage.html
-%%PORTDOCS%%share/doc/postgresql/html/rule-system.html
-%%PORTDOCS%%share/doc/postgresql/html/planner-optimizer.html
-%%PORTDOCS%%share/doc/postgresql/html/executor.html
-%%PORTDOCS%%share/doc/postgresql/html/catalogs.html
-%%PORTDOCS%%share/doc/postgresql/html/catalog-pg-aggregate.html
-%%PORTDOCS%%share/doc/postgresql/html/catalog-pg-attrdef.html
-%%PORTDOCS%%share/doc/postgresql/html/catalog-pg-attribute.html
-%%PORTDOCS%%share/doc/postgresql/html/catalog-pg-class.html
-%%PORTDOCS%%share/doc/postgresql/html/catalog-pg-database.html
-%%PORTDOCS%%share/doc/postgresql/html/catalog-pg-description.html
-%%PORTDOCS%%share/doc/postgresql/html/catalog-pg-group.html
-%%PORTDOCS%%share/doc/postgresql/html/catalog-pg-index.html
-%%PORTDOCS%%share/doc/postgresql/html/catalog-pg-inherits.html
-%%PORTDOCS%%share/doc/postgresql/html/catalog-pg-language.html
-%%PORTDOCS%%share/doc/postgresql/html/catalog-pg-largeobject.html
-%%PORTDOCS%%share/doc/postgresql/html/catalog-pg-listener.html
-%%PORTDOCS%%share/doc/postgresql/html/catalog-pg-operator.html
-%%PORTDOCS%%share/doc/postgresql/html/catalog-pg-proc.html
-%%PORTDOCS%%share/doc/postgresql/html/catalog-pg-relcheck.html
-%%PORTDOCS%%share/doc/postgresql/html/catalog-pg-rewrite.html
-%%PORTDOCS%%share/doc/postgresql/html/catalog-pg-shadow.html
-%%PORTDOCS%%share/doc/postgresql/html/catalog-pg-statistic.html
-%%PORTDOCS%%share/doc/postgresql/html/catalog-pg-trigger.html
-%%PORTDOCS%%share/doc/postgresql/html/catalog-pg-type.html
-%%PORTDOCS%%share/doc/postgresql/html/protocol.html
-%%PORTDOCS%%share/doc/postgresql/html/protocol-protocol.html
-%%PORTDOCS%%share/doc/postgresql/html/protocol-message-types.html
-%%PORTDOCS%%share/doc/postgresql/html/protocol-message-formats.html
-%%PORTDOCS%%share/doc/postgresql/html/compiler.html
-%%PORTDOCS%%share/doc/postgresql/html/bki.html
-%%PORTDOCS%%share/doc/postgresql/html/bki-commands.html
-%%PORTDOCS%%share/doc/postgresql/html/bki-example.html
-%%PORTDOCS%%share/doc/postgresql/html/page.html
-%%PORTDOCS%%share/doc/postgresql/html/geqo.html
-%%PORTDOCS%%share/doc/postgresql/html/geqo-intro2.html
-%%PORTDOCS%%share/doc/postgresql/html/geqo-pg-intro.html
-%%PORTDOCS%%share/doc/postgresql/html/geqo-biblio.html
-%%PORTDOCS%%share/doc/postgresql/html/nls.html
-%%PORTDOCS%%share/doc/postgresql/html/nls-programmer.html
-%%PORTDOCS%%share/doc/postgresql/html/cvs.html
-%%PORTDOCS%%share/doc/postgresql/html/cvs-tree.html
-%%PORTDOCS%%share/doc/postgresql/html/cvsup.html
-%%PORTDOCS%%share/doc/postgresql/html/docguide.html
-%%PORTDOCS%%share/doc/postgresql/html/doc-toolsets.html
-%%PORTDOCS%%share/doc/postgresql/html/doc-build.html
-%%PORTDOCS%%share/doc/postgresql/html/doc-sources.html
-%%PORTDOCS%%share/doc/postgresql/html/setindex.html
-%%PORTDOCS%%share/doc/postgresql/html/ln25.html
-%%PORTDOCS%%share/doc/postgresql/html/ln650.html
-%%PORTDOCS%%share/doc/postgresql/html/ln13560.html
-%%PORTDOCS%%share/doc/postgresql/html/ln19374.html
-%%PORTDOCS%%share/doc/postgresql/html/ln31728.html
-%%PORTDOCS%%share/doc/postgresql/html/ln43811.html
-%%PORTDOCS%%share/doc/postgresql/html/catalogs.gif
-%%PORTDOCS%%share/doc/postgresql/html/connections.gif
-%%PORTDOCS%%share/doc/postgresql/html/stylesheet.css
-%%PORTDOCS%%@dirrm share/doc/postgresql/html
-%%PORTDOCS%%@dirrm share/doc/postgresql
%%GETTEXT%%share/locale/cs/LC_MESSAGES/postgres.mo
%%GETTEXT%%share/locale/cs/LC_MESSAGES/libpq.mo
%%GETTEXT%%share/locale/cs/LC_MESSAGES/pg_dump.mo