Update to PostgreSQL 8.2.1

Please note that a database dump/restore is required to upgrade to this
version.  See the full details at the following URL:
http://www.postgresql.org/docs/current/static/release-8-2.html

requested, tested and ok by robert, simon
This commit is contained in:
mbalmer 2007-01-17 16:47:25 +00:00
parent dfe9084073
commit 1f0785bc5c
10 changed files with 167 additions and 54 deletions

View File

@ -1,20 +1,20 @@
# $OpenBSD: Makefile,v 1.98 2007/01/13 16:39:45 mbalmer Exp $
# $OpenBSD: Makefile,v 1.99 2007/01/17 16:47:25 mbalmer Exp $
COMMENT-main= "PostgreSQL RDBMS (client)"
COMMENT-server= "PostgreSQL RDBMS (server)"
COMMENT-docs= "PostgreSQL RDBMS documentation"
VERSION= 8.1.6
VERSION= 8.2.1
DISTNAME= postgresql-${VERSION}
PKGNAME-main= postgresql-client-${VERSION}
PKGNAME-server= postgresql-server-${VERSION}
PKGNAME-docs= postgresql-docs-${VERSION}
CATEGORIES= databases
SHARED_LIBS= ecpg 5.2 \
ecpg_compat 2.2 \
pgtypes 2.2 \
pq 4.2
SHARED_LIBS= ecpg 6.0 \
ecpg_compat 3.0 \
pgtypes 3.0 \
pq 5.0
HOMEPAGE= http://www.postgresql.org/
@ -25,7 +25,7 @@ PERMIT_PACKAGE_CDROM= Yes
PERMIT_PACKAGE_FTP= Yes
PERMIT_DISTFILES_CDROM= Yes
PERMIT_DISTFILES_FTP= Yes
WANTLIB= c com_err crypto m readline ssl termcap util z
WANTLIB= c com_err crypto m readline ssl termcap z
MASTER_SITES= ftp://ftp2.uk.postgresql.org/sites/ftp.postgresql.org/source/v${VERSION}/ \
ftp://ftp5.us.postgresql.org/pub/PostgreSQL/source/v${VERSION}/ \
@ -79,6 +79,8 @@ LIB_DEPENDS-server= pq.>=4:postgresql-client-${VERSION}:databases/postgresql
WANTLIB-docs=
PKG_ARCH-docs= *
WANTLIB-server+= util
MAKE_ENV= LIBpq_MAJOR=${LIBpq_VERSION:R} \
LIBpq_MINOR=${LIBpq_VERSION:E} \
LIBecpg_MAJOR=${LIBecpg_VERSION:R} \

View File

@ -1,4 +1,4 @@
MD5 (postgresql-8.1.6.tar.gz) = f45ed8254a4630d4b22829d4c6fa0d1b
RMD160 (postgresql-8.1.6.tar.gz) = 15eaa5dd9c20d9adff4f411e31a4a49a0e8fcb88
SHA1 (postgresql-8.1.6.tar.gz) = 5edc15b4eade8d82418213cfc8dde749dcfad7cc
SIZE (postgresql-8.1.6.tar.gz) = 14585530
MD5 (postgresql-8.2.1.tar.gz) = 32f53249241880af45df94d8b2789ae7
RMD160 (postgresql-8.2.1.tar.gz) = f1c4dbca3ba1e5c650b46f127e0c60713ad16a1e
SHA1 (postgresql-8.2.1.tar.gz) = 28169b3a6bf906aaa367e3ae92e678af19e78442
SIZE (postgresql-8.2.1.tar.gz) = 15496316

View File

@ -1,14 +1,14 @@
$OpenBSD: patch-src_interfaces_ecpg_compatlib_Makefile,v 1.1 2006/01/07 11:11:17 mbalmer Exp $
--- src/interfaces/ecpg/compatlib/Makefile.orig Wed Dec 28 12:43:46 2005
+++ src/interfaces/ecpg/compatlib/Makefile Wed Dec 28 12:44:10 2005
$OpenBSD: patch-src_interfaces_ecpg_compatlib_Makefile,v 1.2 2007/01/17 16:47:25 mbalmer Exp $
--- src/interfaces/ecpg/compatlib/Makefile.orig Mon Sep 11 00:07:02 2006
+++ src/interfaces/ecpg/compatlib/Makefile Mon Jan 15 18:08:43 2007
@@ -13,8 +13,8 @@ top_builddir = ../../../..
include $(top_builddir)/src/Makefile.global
NAME= ecpg_compat
-SO_MAJOR_VERSION= 2
-SO_MINOR_VERSION= 1
-SO_MINOR_VERSION= 2
+SO_MAJOR_VERSION= ${LIBecpg_compat_MAJOR}
+SO_MINOR_VERSION= ${LIBecpg_compat_MINOR}
DLTYPE= library
override CPPFLAGS := -I$(top_srcdir)/src/interfaces/ecpg/include -I$(libpq_srcdir) \
override CPPFLAGS := -I../include -I$(top_srcdir)/src/interfaces/ecpg/include \

View File

@ -1,14 +1,14 @@
$OpenBSD: patch-src_interfaces_ecpg_ecpglib_Makefile,v 1.1 2006/01/07 11:11:17 mbalmer Exp $
--- src/interfaces/ecpg/ecpglib/Makefile.orig Wed Dec 28 12:41:01 2005
+++ src/interfaces/ecpg/ecpglib/Makefile Wed Dec 28 12:41:29 2005
$OpenBSD: patch-src_interfaces_ecpg_ecpglib_Makefile,v 1.2 2007/01/17 16:47:25 mbalmer Exp $
--- src/interfaces/ecpg/ecpglib/Makefile.orig Thu Sep 28 16:48:45 2006
+++ src/interfaces/ecpg/ecpglib/Makefile Mon Jan 15 18:11:08 2007
@@ -13,8 +13,8 @@ top_builddir = ../../../..
include $(top_builddir)/src/Makefile.global
NAME= ecpg
-SO_MAJOR_VERSION= 5
-SO_MINOR_VERSION= 1
-SO_MINOR_VERSION= 2
+SO_MAJOR_VERSION= ${LIBecpg_MAJOR}
+SO_MINOR_VERSION= ${LIBecpg_MINOR}
DLTYPE= library
override CPPFLAGS := -DFRONTEND -I$(top_srcdir)/src/interfaces/ecpg/include \
override CPPFLAGS := -DFRONTEND \

View File

@ -1,14 +1,14 @@
$OpenBSD: patch-src_interfaces_ecpg_pgtypeslib_Makefile,v 1.2 2006/05/24 11:18:29 bernd Exp $
--- src/interfaces/ecpg/pgtypeslib/Makefile.orig Tue Dec 6 06:26:30 2005
+++ src/interfaces/ecpg/pgtypeslib/Makefile Wed May 24 11:01:21 2006
$OpenBSD: patch-src_interfaces_ecpg_pgtypeslib_Makefile,v 1.3 2007/01/17 16:47:25 mbalmer Exp $
--- src/interfaces/ecpg/pgtypeslib/Makefile.orig Mon Aug 28 18:13:11 2006
+++ src/interfaces/ecpg/pgtypeslib/Makefile Mon Jan 15 18:11:54 2007
@@ -13,8 +13,8 @@ top_builddir = ../../../..
include $(top_builddir)/src/Makefile.global
NAME= pgtypes
-SO_MAJOR_VERSION= 2
-SO_MINOR_VERSION= 1
-SO_MINOR_VERSION= 2
+SO_MAJOR_VERSION= ${LIBpgtypes_MAJOR}
+SO_MINOR_VERSION= ${LIBpgtypes_MINOR}
DLTYPE= library
override CPPFLAGS := -DFRONTEND -I$(top_srcdir)/src/interfaces/ecpg/include \
override CPPFLAGS := -DFRONTEND \

View File

@ -1,12 +1,12 @@
$OpenBSD: patch-src_interfaces_libpq_Makefile,v 1.1 2006/01/07 11:11:17 mbalmer Exp $
--- src/interfaces/libpq/Makefile.orig Wed Dec 28 12:04:40 2005
+++ src/interfaces/libpq/Makefile Wed Dec 28 12:06:16 2005
$OpenBSD: patch-src_interfaces_libpq_Makefile,v 1.2 2007/01/17 16:47:25 mbalmer Exp $
--- src/interfaces/libpq/Makefile.orig Thu Dec 28 01:01:12 2006
+++ src/interfaces/libpq/Makefile Mon Jan 15 18:13:04 2007
@@ -16,8 +16,8 @@ include $(top_builddir)/src/Makefile.glo
# shared library parameters
NAME= pq
-SO_MAJOR_VERSION= 4
-SO_MINOR_VERSION= 1
-SO_MAJOR_VERSION= 5
-SO_MINOR_VERSION= 0
+SO_MAJOR_VERSION= ${LIBpq_MAJOR}
+SO_MINOR_VERSION= ${LIBpq_MINOR}
DLTYPE= library

View File

@ -1,4 +1,4 @@
@comment $OpenBSD: PFRAG.shared-server,v 1.2 2005/11/08 15:20:42 mbalmer Exp $
@comment $OpenBSD: PFRAG.shared-server,v 1.3 2007/01/17 16:47:25 mbalmer Exp $
lib/postgresql/ascii_and_mic.so
lib/postgresql/cyrillic_and_mic.so
lib/postgresql/euc_cn_and_mic.so
@ -23,8 +23,4 @@ lib/postgresql/utf8_and_iso8859_1.so
lib/postgresql/utf8_and_johab.so
lib/postgresql/utf8_and_sjis.so
lib/postgresql/utf8_and_uhc.so
lib/postgresql/utf8_and_win1250.so
lib/postgresql/utf8_and_win1252.so
lib/postgresql/utf8_and_win1256.so
lib/postgresql/utf8_and_win1258.so
lib/postgresql/utf8_and_win874.so
lib/postgresql/utf8_and_win.so

View File

@ -1,4 +1,8 @@
@comment $OpenBSD: PLIST-docs,v 1.26 2007/01/13 16:39:45 mbalmer Exp $
@comment $OpenBSD: PLIST-docs,v 1.27 2007/01/17 16:47:25 mbalmer Exp $
@comment lib/libpq.so.5
@man man/man7/drop_owned.7
@man man/man7/reassign_owned.7
@man man/man7/values.7
share/doc/postgresql/COPYRIGHT
share/doc/postgresql/FAQ
share/doc/postgresql/FAQ_DEV
@ -11,6 +15,7 @@ share/doc/postgresql/TODO
share/doc/postgresql/html/
share/doc/postgresql/html/LEGALNOTICE.html
share/doc/postgresql/html/admin.html
share/doc/postgresql/html/anoncvs.html
share/doc/postgresql/html/app-clusterdb.html
share/doc/postgresql/html/app-createdb.html
share/doc/postgresql/html/app-createlang.html
@ -37,12 +42,14 @@ share/doc/postgresql/html/appendixes.html
share/doc/postgresql/html/applevel-consistency.html
share/doc/postgresql/html/arrays.html
share/doc/postgresql/html/auth-methods.html
share/doc/postgresql/html/auth-pg-hba-conf.html
share/doc/postgresql/html/backup-dump.html
share/doc/postgresql/html/backup-file.html
share/doc/postgresql/html/backup-online.html
share/doc/postgresql/html/backup.html
share/doc/postgresql/html/biblio.html
share/doc/postgresql/html/bki-commands.html
share/doc/postgresql/html/bki-example.html
share/doc/postgresql/html/bki-format.html
share/doc/postgresql/html/bki-structure.html
share/doc/postgresql/html/bki.html
share/doc/postgresql/html/bookindex.html
@ -75,20 +82,25 @@ share/doc/postgresql/html/catalog-pg-pltemplate.html
share/doc/postgresql/html/catalog-pg-proc.html
share/doc/postgresql/html/catalog-pg-rewrite.html
share/doc/postgresql/html/catalog-pg-shdepend.html
share/doc/postgresql/html/catalog-pg-shdescription.html
share/doc/postgresql/html/catalog-pg-statistic.html
share/doc/postgresql/html/catalog-pg-tablespace.html
share/doc/postgresql/html/catalog-pg-trigger.html
share/doc/postgresql/html/catalog-pg-type.html
share/doc/postgresql/html/catalogs-overview.html
share/doc/postgresql/html/catalogs.html
share/doc/postgresql/html/charset.html
share/doc/postgresql/html/client-authentication-problems.html
share/doc/postgresql/html/client-authentication.html
share/doc/postgresql/html/client-interfaces.html
share/doc/postgresql/html/config-setting.html
share/doc/postgresql/html/connect-estab.html
share/doc/postgresql/html/continuous-archiving.html
share/doc/postgresql/html/creating-cluster.html
share/doc/postgresql/html/cvs-tree.html
share/doc/postgresql/html/cvs.html
share/doc/postgresql/html/cvsup.html
share/doc/postgresql/html/database-roles.html
share/doc/postgresql/html/datatype-binary.html
share/doc/postgresql/html/datatype-bit.html
share/doc/postgresql/html/datatype-boolean.html
@ -97,13 +109,17 @@ share/doc/postgresql/html/datatype-datetime.html
share/doc/postgresql/html/datatype-geometric.html
share/doc/postgresql/html/datatype-money.html
share/doc/postgresql/html/datatype-net-types.html
share/doc/postgresql/html/datatype-numeric.html
share/doc/postgresql/html/datatype-oid.html
share/doc/postgresql/html/datatype-pseudo.html
share/doc/postgresql/html/datatype-xml.html
share/doc/postgresql/html/datatype.html
share/doc/postgresql/html/datetime-appendix.html
share/doc/postgresql/html/datetime-config-files.html
share/doc/postgresql/html/datetime-keywords.html
share/doc/postgresql/html/datetime-units-history.html
share/doc/postgresql/html/ddl-alter.html
share/doc/postgresql/html/ddl-basics.html
share/doc/postgresql/html/ddl-constraints.html
share/doc/postgresql/html/ddl-default.html
share/doc/postgresql/html/ddl-depend.html
@ -115,24 +131,31 @@ share/doc/postgresql/html/ddl-schemas.html
share/doc/postgresql/html/ddl-system-columns.html
share/doc/postgresql/html/ddl.html
share/doc/postgresql/html/disk-full.html
share/doc/postgresql/html/disk-usage.html
share/doc/postgresql/html/diskusage.html
share/doc/postgresql/html/dml-delete.html
share/doc/postgresql/html/dml-insert.html
share/doc/postgresql/html/dml-update.html
share/doc/postgresql/html/dml.html
share/doc/postgresql/html/docguide-authoring.html
share/doc/postgresql/html/docguide-build.html
share/doc/postgresql/html/docguide-docbook.html
share/doc/postgresql/html/docguide-style.html
share/doc/postgresql/html/docguide-toolsets.html
share/doc/postgresql/html/docguide.html
share/doc/postgresql/html/dynamic-trace.html
share/doc/postgresql/html/ecpg-commands.html
share/doc/postgresql/html/ecpg-concept.html
share/doc/postgresql/html/ecpg-connect.html
share/doc/postgresql/html/ecpg-descriptors.html
share/doc/postgresql/html/ecpg-develop.html
share/doc/postgresql/html/ecpg-disconnect.html
share/doc/postgresql/html/ecpg-dynamic.html
share/doc/postgresql/html/ecpg-errors.html
share/doc/postgresql/html/ecpg-include.html
share/doc/postgresql/html/ecpg-informix-compat.html
share/doc/postgresql/html/ecpg-library.html
share/doc/postgresql/html/ecpg-pgtypes.html
share/doc/postgresql/html/ecpg-preproc.html
share/doc/postgresql/html/ecpg-process.html
share/doc/postgresql/html/ecpg-set-connection.html
share/doc/postgresql/html/ecpg-variables.html
@ -144,10 +167,14 @@ share/doc/postgresql/html/error-style-guide.html
share/doc/postgresql/html/executor.html
share/doc/postgresql/html/explicit-joins.html
share/doc/postgresql/html/explicit-locking.html
share/doc/postgresql/html/extend-how.html
share/doc/postgresql/html/extend-type-system.html
share/doc/postgresql/html/extend.html
share/doc/postgresql/html/external-extensions.html
share/doc/postgresql/html/external-interfaces.html
share/doc/postgresql/html/external-pl.html
share/doc/postgresql/html/external-projects.html
share/doc/postgresql/html/features-sql-standard.html
share/doc/postgresql/html/features.html
share/doc/postgresql/html/functions-admin.html
share/doc/postgresql/html/functions-aggregate.html
@ -161,6 +188,7 @@ share/doc/postgresql/html/functions-datetime.html
share/doc/postgresql/html/functions-formatting.html
share/doc/postgresql/html/functions-geometry.html
share/doc/postgresql/html/functions-info.html
share/doc/postgresql/html/functions-logical.html
share/doc/postgresql/html/functions-matching.html
share/doc/postgresql/html/functions-math.html
share/doc/postgresql/html/functions-net.html
@ -170,15 +198,26 @@ share/doc/postgresql/html/functions-string.html
share/doc/postgresql/html/functions-subquery.html
share/doc/postgresql/html/functions.html
share/doc/postgresql/html/geqo-biblio.html
share/doc/postgresql/html/geqo-intro.html
share/doc/postgresql/html/geqo-intro2.html
share/doc/postgresql/html/geqo-pg-intro.html
share/doc/postgresql/html/geqo.html
share/doc/postgresql/html/gin-examples.html
share/doc/postgresql/html/gin-extensibility.html
share/doc/postgresql/html/gin-implementation.html
share/doc/postgresql/html/gin-intro.html
share/doc/postgresql/html/gin-limit.html
share/doc/postgresql/html/gin-tips.html
share/doc/postgresql/html/gin.html
share/doc/postgresql/html/gist-examples.html
share/doc/postgresql/html/gist-extensibility.html
share/doc/postgresql/html/gist-implementation.html
share/doc/postgresql/html/gist-intro.html
share/doc/postgresql/html/gist-recovery.html
share/doc/postgresql/html/gist.html
share/doc/postgresql/html/high-availability.html
share/doc/postgresql/html/history.html
share/doc/postgresql/html/index-catalog.html
share/doc/postgresql/html/index-cost-estimation.html
share/doc/postgresql/html/index-functions.html
share/doc/postgresql/html/index-locking.html
@ -189,6 +228,7 @@ share/doc/postgresql/html/indexam.html
share/doc/postgresql/html/indexes-bitmap-scans.html
share/doc/postgresql/html/indexes-examine.html
share/doc/postgresql/html/indexes-expressional.html
share/doc/postgresql/html/indexes-intro.html
share/doc/postgresql/html/indexes-multicolumn.html
share/doc/postgresql/html/indexes-opclass.html
share/doc/postgresql/html/indexes-partial.html
@ -196,7 +236,10 @@ share/doc/postgresql/html/indexes-types.html
share/doc/postgresql/html/indexes-unique.html
share/doc/postgresql/html/indexes.html
share/doc/postgresql/html/information-schema.html
share/doc/postgresql/html/infoschema-administrable-role-authorizations.html
share/doc/postgresql/html/infoschema-applicable-roles.html
share/doc/postgresql/html/infoschema-attributes.html
share/doc/postgresql/html/infoschema-check-constraint-routine-usage.html
share/doc/postgresql/html/infoschema-check-constraints.html
share/doc/postgresql/html/infoschema-column-domain-usage.html
share/doc/postgresql/html/infoschema-column-privileges.html
@ -221,11 +264,14 @@ share/doc/postgresql/html/infoschema-role-table-grants.html
share/doc/postgresql/html/infoschema-role-usage-grants.html
share/doc/postgresql/html/infoschema-routine-privileges.html
share/doc/postgresql/html/infoschema-routines.html
share/doc/postgresql/html/infoschema-schema.html
share/doc/postgresql/html/infoschema-schemata.html
share/doc/postgresql/html/infoschema-sequences.html
share/doc/postgresql/html/infoschema-sql-features.html
share/doc/postgresql/html/infoschema-sql-implementation-info.html
share/doc/postgresql/html/infoschema-sql-languages.html
share/doc/postgresql/html/infoschema-sql-packages.html
share/doc/postgresql/html/infoschema-sql-parts.html
share/doc/postgresql/html/infoschema-sql-sizing-profiles.html
share/doc/postgresql/html/infoschema-sql-sizing.html
share/doc/postgresql/html/infoschema-table-constraints.html
@ -234,27 +280,33 @@ share/doc/postgresql/html/infoschema-tables.html
share/doc/postgresql/html/infoschema-triggers.html
share/doc/postgresql/html/infoschema-usage-privileges.html
share/doc/postgresql/html/infoschema-view-column-usage.html
share/doc/postgresql/html/infoschema-view-routine-usage.html
share/doc/postgresql/html/infoschema-view-table-usage.html
share/doc/postgresql/html/infoschema-views.html
share/doc/postgresql/html/install-getsource.html
share/doc/postgresql/html/install-post.html
share/doc/postgresql/html/install-procedure.html
share/doc/postgresql/html/install-requirements.html
share/doc/postgresql/html/install-short.html
share/doc/postgresql/html/install-upgrading.html
share/doc/postgresql/html/install-win32.html
share/doc/postgresql/html/installation.html
share/doc/postgresql/html/internals.html
share/doc/postgresql/html/intro-whatis.html
share/doc/postgresql/html/kernel-resources.html
share/doc/postgresql/html/largeobjects.html
share/doc/postgresql/html/libpq-async.html
share/doc/postgresql/html/libpq-build.html
share/doc/postgresql/html/libpq-cancel.html
share/doc/postgresql/html/libpq-connect.html
share/doc/postgresql/html/libpq-control.html
share/doc/postgresql/html/libpq-copy.html
share/doc/postgresql/html/libpq-envars.html
share/doc/postgresql/html/libpq-example.html
share/doc/postgresql/html/libpq-exec.html
share/doc/postgresql/html/libpq-fastpath.html
share/doc/postgresql/html/libpq-ldap.html
share/doc/postgresql/html/libpq-misc.html
share/doc/postgresql/html/libpq-notice-processing.html
share/doc/postgresql/html/libpq-notify.html
share/doc/postgresql/html/libpq-pgpass.html
@ -267,22 +319,28 @@ share/doc/postgresql/html/lo-examplesect.html
share/doc/postgresql/html/lo-funcs.html
share/doc/postgresql/html/lo-implementation.html
share/doc/postgresql/html/lo-interfaces.html
share/doc/postgresql/html/lo-intro.html
share/doc/postgresql/html/locale.html
share/doc/postgresql/html/locking-indexes.html
share/doc/postgresql/html/logfile-maintenance.html
share/doc/postgresql/html/maintenance.html
share/doc/postgresql/html/manage-ag-config.html
share/doc/postgresql/html/manage-ag-createdb.html
share/doc/postgresql/html/manage-ag-dropdb.html
share/doc/postgresql/html/manage-ag-overview.html
share/doc/postgresql/html/manage-ag-tablespaces.html
share/doc/postgresql/html/manage-ag-templatedbs.html
share/doc/postgresql/html/managing-databases.html
share/doc/postgresql/html/migration.html
share/doc/postgresql/html/monitoring-locks.html
share/doc/postgresql/html/monitoring-ps.html
share/doc/postgresql/html/monitoring-stats.html
share/doc/postgresql/html/monitoring.html
share/doc/postgresql/html/multibyte.html
share/doc/postgresql/html/mvcc-intro.html
share/doc/postgresql/html/mvcc.html
share/doc/postgresql/html/nls-programmer.html
share/doc/postgresql/html/nls-translator.html
share/doc/postgresql/html/nls.html
share/doc/postgresql/html/notation.html
share/doc/postgresql/html/overview.html
@ -295,6 +353,7 @@ share/doc/postgresql/html/planner-stats.html
share/doc/postgresql/html/plhandler.html
share/doc/postgresql/html/plperl-data.html
share/doc/postgresql/html/plperl-database.html
share/doc/postgresql/html/plperl-funcs.html
share/doc/postgresql/html/plperl-global.html
share/doc/postgresql/html/plperl-missing.html
share/doc/postgresql/html/plperl-triggers.html
@ -306,25 +365,27 @@ share/doc/postgresql/html/plpgsql-declarations.html
share/doc/postgresql/html/plpgsql-development-tips.html
share/doc/postgresql/html/plpgsql-errors-and-messages.html
share/doc/postgresql/html/plpgsql-expressions.html
share/doc/postgresql/html/plpgsql-overview.html
share/doc/postgresql/html/plpgsql-porting.html
share/doc/postgresql/html/plpgsql-statements.html
share/doc/postgresql/html/plpgsql-structure.html
share/doc/postgresql/html/plpgsql-trigger.html
share/doc/postgresql/html/plpgsql.html
share/doc/postgresql/html/plpython-database.html
share/doc/postgresql/html/plpython-funcs.html
share/doc/postgresql/html/plpython-trigger.html
share/doc/postgresql/html/plpython.html
share/doc/postgresql/html/pltcl-data.html
share/doc/postgresql/html/pltcl-dbaccess.html
share/doc/postgresql/html/pltcl-functions.html
share/doc/postgresql/html/pltcl-global.html
share/doc/postgresql/html/pltcl-overview.html
share/doc/postgresql/html/pltcl-procnames.html
share/doc/postgresql/html/pltcl-trigger.html
share/doc/postgresql/html/pltcl-unknown.html
share/doc/postgresql/html/pltcl.html
share/doc/postgresql/html/populate.html
share/doc/postgresql/html/postmaster-shutdown.html
share/doc/postgresql/html/postmaster-start.html
share/doc/postgresql/html/postgres-user.html
share/doc/postgresql/html/preface.html
share/doc/postgresql/html/privileges.html
share/doc/postgresql/html/protocol-changes.html
@ -332,17 +393,23 @@ share/doc/postgresql/html/protocol-error-fields.html
share/doc/postgresql/html/protocol-flow.html
share/doc/postgresql/html/protocol-message-formats.html
share/doc/postgresql/html/protocol-message-types.html
share/doc/postgresql/html/protocol-overview.html
share/doc/postgresql/html/protocol.html
share/doc/postgresql/html/queries-limit.html
share/doc/postgresql/html/queries-order.html
share/doc/postgresql/html/queries-overview.html
share/doc/postgresql/html/queries-select-lists.html
share/doc/postgresql/html/queries-table-expressions.html
share/doc/postgresql/html/queries-union.html
share/doc/postgresql/html/queries-values.html
share/doc/postgresql/html/queries.html
share/doc/postgresql/html/query-path.html
share/doc/postgresql/html/querytree.html
share/doc/postgresql/html/reference-client.html
share/doc/postgresql/html/reference-server.html
share/doc/postgresql/html/reference.html
share/doc/postgresql/html/regress-evaluation.html
share/doc/postgresql/html/regress-run.html
share/doc/postgresql/html/regress-variant.html
share/doc/postgresql/html/regress.html
share/doc/postgresql/html/release-0-01.html
@ -434,12 +501,17 @@ share/doc/postgresql/html/release-8-1-2.html
share/doc/postgresql/html/release-8-1-3.html
share/doc/postgresql/html/release-8-1-4.html
share/doc/postgresql/html/release-8-1-5.html
share/doc/postgresql/html/release-8-1-6.html
share/doc/postgresql/html/release-8-1.html
share/doc/postgresql/html/release-8-2-1.html
share/doc/postgresql/html/release-8-2.html
share/doc/postgresql/html/release.html
share/doc/postgresql/html/resources.html
share/doc/postgresql/html/role-attributes.html
share/doc/postgresql/html/role-membership.html
share/doc/postgresql/html/routine-reindex.html
share/doc/postgresql/html/routine-vacuuming.html
share/doc/postgresql/html/row-estimation-examples.html
share/doc/postgresql/html/rowtypes.html
share/doc/postgresql/html/rule-system.html
share/doc/postgresql/html/rules-privileges.html
@ -466,9 +538,13 @@ share/doc/postgresql/html/runtime-config-wal.html
share/doc/postgresql/html/runtime-config.html
share/doc/postgresql/html/runtime.html
share/doc/postgresql/html/server-programming.html
share/doc/postgresql/html/server-shutdown.html
share/doc/postgresql/html/server-start.html
share/doc/postgresql/html/source-format.html
share/doc/postgresql/html/source.html
share/doc/postgresql/html/spi-examples.html
share/doc/postgresql/html/spi-interface-support.html
share/doc/postgresql/html/spi-interface.html
share/doc/postgresql/html/spi-memory.html
share/doc/postgresql/html/spi-realloc.html
share/doc/postgresql/html/spi-spi-connect.html
@ -562,6 +638,7 @@ share/doc/postgresql/html/sql-createview.html
share/doc/postgresql/html/sql-deallocate.html
share/doc/postgresql/html/sql-declare.html
share/doc/postgresql/html/sql-delete.html
share/doc/postgresql/html/sql-drop-owned.html
share/doc/postgresql/html/sql-dropaggregate.html
share/doc/postgresql/html/sql-dropcast.html
share/doc/postgresql/html/sql-dropconversion.html
@ -598,6 +675,7 @@ share/doc/postgresql/html/sql-move.html
share/doc/postgresql/html/sql-notify.html
share/doc/postgresql/html/sql-prepare-transaction.html
share/doc/postgresql/html/sql-prepare.html
share/doc/postgresql/html/sql-reassign-owned.html
share/doc/postgresql/html/sql-reindex.html
share/doc/postgresql/html/sql-release-savepoint.html
share/doc/postgresql/html/sql-reset.html
@ -615,14 +693,17 @@ share/doc/postgresql/html/sql-set-transaction.html
share/doc/postgresql/html/sql-set.html
share/doc/postgresql/html/sql-show.html
share/doc/postgresql/html/sql-start-transaction.html
share/doc/postgresql/html/sql-syntax-lexical.html
share/doc/postgresql/html/sql-syntax.html
share/doc/postgresql/html/sql-truncate.html
share/doc/postgresql/html/sql-unlisten.html
share/doc/postgresql/html/sql-update.html
share/doc/postgresql/html/sql-vacuum.html
share/doc/postgresql/html/sql-values.html
share/doc/postgresql/html/sql.html
share/doc/postgresql/html/ssh-tunnels.html
share/doc/postgresql/html/ssl-tcp.html
share/doc/postgresql/html/storage-file-layout.html
share/doc/postgresql/html/storage-page-layout.html
share/doc/postgresql/html/storage-toast.html
share/doc/postgresql/html/storage.html
@ -630,10 +711,12 @@ share/doc/postgresql/html/stylesheet.css
share/doc/postgresql/html/supported-platforms.html
share/doc/postgresql/html/transaction-iso.html
share/doc/postgresql/html/trigger-datachanges.html
share/doc/postgresql/html/trigger-definition.html
share/doc/postgresql/html/trigger-example.html
share/doc/postgresql/html/trigger-interface.html
share/doc/postgresql/html/triggers.html
share/doc/postgresql/html/tutorial-accessdb.html
share/doc/postgresql/html/tutorial-advanced-intro.html
share/doc/postgresql/html/tutorial-advanced.html
share/doc/postgresql/html/tutorial-agg.html
share/doc/postgresql/html/tutorial-arch.html
@ -643,9 +726,11 @@ share/doc/postgresql/html/tutorial-createdb.html
share/doc/postgresql/html/tutorial-delete.html
share/doc/postgresql/html/tutorial-fk.html
share/doc/postgresql/html/tutorial-inheritance.html
share/doc/postgresql/html/tutorial-install.html
share/doc/postgresql/html/tutorial-join.html
share/doc/postgresql/html/tutorial-populate.html
share/doc/postgresql/html/tutorial-select.html
share/doc/postgresql/html/tutorial-sql-intro.html
share/doc/postgresql/html/tutorial-sql.html
share/doc/postgresql/html/tutorial-start.html
share/doc/postgresql/html/tutorial-table.html
@ -655,14 +740,18 @@ share/doc/postgresql/html/tutorial-views.html
share/doc/postgresql/html/tutorial.html
share/doc/postgresql/html/typeconv-func.html
share/doc/postgresql/html/typeconv-oper.html
share/doc/postgresql/html/typeconv-overview.html
share/doc/postgresql/html/typeconv-query.html
share/doc/postgresql/html/typeconv-union-case.html
share/doc/postgresql/html/typeconv.html
share/doc/postgresql/html/unsupported-features-sql-standard.html
share/doc/postgresql/html/user-manag.html
share/doc/postgresql/html/using-explain.html
share/doc/postgresql/html/view-pg-cursors.html
share/doc/postgresql/html/view-pg-group.html
share/doc/postgresql/html/view-pg-indexes.html
share/doc/postgresql/html/view-pg-locks.html
share/doc/postgresql/html/view-pg-prepared-statements.html
share/doc/postgresql/html/view-pg-prepared-xacts.html
share/doc/postgresql/html/view-pg-roles.html
share/doc/postgresql/html/view-pg-rules.html
@ -670,13 +759,18 @@ share/doc/postgresql/html/view-pg-settings.html
share/doc/postgresql/html/view-pg-shadow.html
share/doc/postgresql/html/view-pg-stats.html
share/doc/postgresql/html/view-pg-tables.html
share/doc/postgresql/html/view-pg-timezone-abbrevs.html
share/doc/postgresql/html/view-pg-timezone-names.html
share/doc/postgresql/html/view-pg-user.html
share/doc/postgresql/html/view-pg-views.html
share/doc/postgresql/html/views-overview.html
share/doc/postgresql/html/wal-configuration.html
share/doc/postgresql/html/wal-internals.html
share/doc/postgresql/html/wal-intro.html
share/doc/postgresql/html/wal-reliability.html
share/doc/postgresql/html/wal.html
share/doc/postgresql/html/warm-standby.html
share/doc/postgresql/html/x71094.html
share/doc/postgresql/html/xaggr.html
share/doc/postgresql/html/xfunc-c.html
share/doc/postgresql/html/xfunc-internal.html
@ -688,5 +782,6 @@ share/doc/postgresql/html/xfunc.html
share/doc/postgresql/html/xindex.html
share/doc/postgresql/html/xoper-optimization.html
share/doc/postgresql/html/xoper.html
share/doc/postgresql/html/xplang-install.html
share/doc/postgresql/html/xplang.html
share/doc/postgresql/html/xtypes.html

View File

@ -1,4 +1,4 @@
@comment $OpenBSD: PLIST-main,v 1.2 2007/01/13 16:39:45 mbalmer Exp $
@comment $OpenBSD: PLIST-main,v 1.3 2007/01/17 16:47:25 mbalmer Exp $
@conflict pgsql-*
@conflict pgsql-clients-*
@conflict postgresql-*
@ -19,6 +19,7 @@ bin/psql
bin/reindexdb
bin/vacuumdb
include/postgresql/
include/postgresql/ecpg_config.h
include/postgresql/ecpg_informix.h
include/postgresql/ecpgerrno.h
include/postgresql/ecpglib.h
@ -53,17 +54,16 @@ include/postgresql/sql3types.h
include/postgresql/sqlca.h
lib/libecpg.a
@comment lib/libecpg.so
@comment lib/libecpg.so.5
@comment lib/libecpg.so.6
lib/libecpg_compat.a
@comment lib/libecpg_compat.so
@comment lib/libecpg_compat.so.2
@comment lib/libecpg_compat.so.3
lib/libpgport.a
lib/libpgtypes.a
@comment lib/libpgtypes.so
@comment lib/libpgtypes.so.2
@comment lib/libpgtypes.so.3
lib/libpq.a
@comment lib/libpq.so
@comment lib/libpq.so.4
lib/postgresql/
lib/postgresql/pgxs/
lib/postgresql/pgxs/config/
@ -76,6 +76,9 @@ lib/postgresql/pgxs/src/Makefile.shlib
lib/postgresql/pgxs/src/makefiles/
lib/postgresql/pgxs/src/makefiles/pgxs.mk
lib/postgresql/pgxs/src/nls-global.mk
lib/postgresql/pgxs/src/test/
lib/postgresql/pgxs/src/test/regress/
lib/postgresql/pgxs/src/test/regress/pg_regress
@man man/man1/clusterdb.1
@man man/man1/createdb.1
@man man/man1/createlang.1
@ -782,4 +785,18 @@ share/postgresql/timezone/Universal
share/postgresql/timezone/W-SU
share/postgresql/timezone/WET
share/postgresql/timezone/Zulu
share/postgresql/timezonesets/
share/postgresql/timezonesets/Africa.txt
share/postgresql/timezonesets/America.txt
share/postgresql/timezonesets/Antarctica.txt
share/postgresql/timezonesets/Asia.txt
share/postgresql/timezonesets/Atlantic.txt
share/postgresql/timezonesets/Australia
share/postgresql/timezonesets/Australia.txt
share/postgresql/timezonesets/Default
share/postgresql/timezonesets/Etc.txt
share/postgresql/timezonesets/Europe.txt
share/postgresql/timezonesets/India
share/postgresql/timezonesets/Indian.txt
share/postgresql/timezonesets/Pacific.txt
%%SHARED%%

View File

@ -1,4 +1,4 @@
@comment $OpenBSD: PLIST-server,v 1.11 2006/10/18 13:54:22 mbalmer Exp $
@comment $OpenBSD: PLIST-server,v 1.12 2007/01/17 16:47:25 mbalmer Exp $
@conflict pgsql-*
@conflict pgsql-clients-*
@conflict postgresql-clients-*
@ -19,6 +19,7 @@ include/postgresql/server/access/
include/postgresql/server/access/attnum.h
include/postgresql/server/access/clog.h
include/postgresql/server/access/genam.h
include/postgresql/server/access/gin.h
include/postgresql/server/access/gist.h
include/postgresql/server/access/gist_private.h
include/postgresql/server/access/gistscan.h
@ -26,15 +27,13 @@ include/postgresql/server/access/hash.h
include/postgresql/server/access/heapam.h
include/postgresql/server/access/hio.h
include/postgresql/server/access/htup.h
include/postgresql/server/access/iqual.h
include/postgresql/server/access/itup.h
include/postgresql/server/access/multixact.h
include/postgresql/server/access/nbtree.h
include/postgresql/server/access/printtup.h
include/postgresql/server/access/reloptions.h
include/postgresql/server/access/relscan.h
include/postgresql/server/access/rmgr.h
include/postgresql/server/access/rtree.h
include/postgresql/server/access/rtscan.h
include/postgresql/server/access/sdir.h
include/postgresql/server/access/skey.h
include/postgresql/server/access/slru.h
@ -91,10 +90,12 @@ include/postgresql/server/catalog/pg_pltemplate.h
include/postgresql/server/catalog/pg_proc.h
include/postgresql/server/catalog/pg_rewrite.h
include/postgresql/server/catalog/pg_shdepend.h
include/postgresql/server/catalog/pg_shdescription.h
include/postgresql/server/catalog/pg_statistic.h
include/postgresql/server/catalog/pg_tablespace.h
include/postgresql/server/catalog/pg_trigger.h
include/postgresql/server/catalog/pg_type.h
include/postgresql/server/catalog/toasting.h
include/postgresql/server/commands/
include/postgresql/server/commands/alter.h
include/postgresql/server/commands/async.h
@ -152,6 +153,7 @@ include/postgresql/server/executor/nodeSubplan.h
include/postgresql/server/executor/nodeSubqueryscan.h
include/postgresql/server/executor/nodeTidscan.h
include/postgresql/server/executor/nodeUnique.h
include/postgresql/server/executor/nodeValuesscan.h
include/postgresql/server/executor/spi.h
include/postgresql/server/executor/spi_priv.h
include/postgresql/server/executor/tstoreReceiver.h
@ -172,6 +174,7 @@ include/postgresql/server/libpq/ip.h
include/postgresql/server/libpq/libpq-be.h
include/postgresql/server/libpq/libpq-fs.h
include/postgresql/server/libpq/libpq.h
include/postgresql/server/libpq/md5.h
include/postgresql/server/libpq/pqcomm.h
include/postgresql/server/libpq/pqformat.h
include/postgresql/server/libpq/pqsignal.h
@ -240,12 +243,12 @@ include/postgresql/server/parser/scansup.h
include/postgresql/server/pg_config.h
include/postgresql/server/pg_config_manual.h
include/postgresql/server/pg_config_os.h
include/postgresql/server/pg_trace.h
include/postgresql/server/pgstat.h
include/postgresql/server/pgtime.h
include/postgresql/server/port/
include/postgresql/server/port.h
include/postgresql/server/port/aix.h
include/postgresql/server/port/beos.h
include/postgresql/server/port/bsdi.h
include/postgresql/server/port/cygwin.h
include/postgresql/server/port/darwin.h
@ -258,7 +261,6 @@ include/postgresql/server/port/netbsd.h
include/postgresql/server/port/nextstep.h
include/postgresql/server/port/openbsd.h
include/postgresql/server/port/osf.h
include/postgresql/server/port/qnx4.h
include/postgresql/server/port/sco.h
include/postgresql/server/port/solaris.h
include/postgresql/server/port/sunos4.h
@ -328,7 +330,6 @@ include/postgresql/server/storage/sinval.h
include/postgresql/server/storage/sinvaladt.h
include/postgresql/server/storage/smgr.h
include/postgresql/server/storage/spin.h
include/postgresql/server/strdup.h
include/postgresql/server/tcop/
include/postgresql/server/tcop/dest.h
include/postgresql/server/tcop/fastpath.h
@ -384,6 +385,7 @@ include/postgresql/server/utils/tqual.h
include/postgresql/server/utils/tuplesort.h
include/postgresql/server/utils/tuplestore.h
include/postgresql/server/utils/typcache.h
include/postgresql/server/utils/tzparser.h
include/postgresql/server/utils/varbit.h
@man man/man1/initdb.1
@man man/man1/ipcclean.1
@ -398,6 +400,7 @@ share/postgresql/pg_hba.conf.sample
share/postgresql/pg_ident.conf.sample
share/postgresql/pg_service.conf.sample
share/postgresql/postgres.bki
share/postgresql/postgres.shdescription
share/postgresql/postgresql.conf.sample
@mode 755
@owner _postgresql