[Midnightbsd-cvs] mports [20647] trunk/databases/postgresql92-server: update postgres 9.2 to 9.2.13
laffer1 at midnightbsd.org
laffer1 at midnightbsd.org
Wed Nov 4 19:22:19 EST 2015
Revision: 20647
http://svnweb.midnightbsd.org/mports/?rev=20647
Author: laffer1
Date: 2015-11-04 19:22:18 -0500 (Wed, 04 Nov 2015)
Log Message:
-----------
update postgres 9.2 to 9.2.13
Modified Paths:
--------------
trunk/databases/postgresql92-server/Makefile
trunk/databases/postgresql92-server/distinfo
trunk/databases/postgresql92-server/pkg-plist-client
trunk/databases/postgresql92-server/pkg-plist-contrib
trunk/databases/postgresql92-server/pkg-plist-plperl
trunk/databases/postgresql92-server/pkg-plist-plpython
trunk/databases/postgresql92-server/pkg-plist-pltcl
trunk/databases/postgresql92-server/pkg-plist-server
Modified: trunk/databases/postgresql92-server/Makefile
===================================================================
--- trunk/databases/postgresql92-server/Makefile 2015-11-04 22:46:36 UTC (rev 20646)
+++ trunk/databases/postgresql92-server/Makefile 2015-11-05 00:22:18 UTC (rev 20647)
@@ -1,11 +1,10 @@
# $MidnightBSD$
PORTNAME?= postgresql
-DISTVERSION?= 9.2.9
+DISTVERSION?= 9.2.13
PORTREVISION?= 0
CATEGORIES?= databases
-MASTER_SITES= PGSQL
-MASTER_SITE_SUBDIR= source/v${DISTVERSION}
+MASTER_SITES= PGSQL/source/v${DISTVERSION}
PKGNAMESUFFIX?= ${DISTVERSION:R:S/.//}${COMPONENT}
MAINTAINER?= ports at MidnightBSD.org
@@ -21,18 +20,12 @@
WRKSRC= ${WRKDIR}/postgresql-${DISTVERSION}
DIST_SUBDIR= postgresql
-ICU_PATCHFILE?= pg-928-icu-2014-06-09.diff.gz
+ICU_PATCHFILE?= pg-929-icu-2015-04-18.diff.gz
OPTIONS_SUB= yes
-.if !defined(SLAVE_ONLY)
-UNIQUENAME?= ${PORTNAME}${DISTVERSION:R:S/.//}
-.else # Contrib has different options from -client/-server
-UNIQUENAME?= ${PORTNAME}${DISTVERSION:R:S/.//}${PKGNAMESUFFIX}
-.endif
-
PKGINSTALL?= ${PKGDIR}/pkg-install${COMPONENT}
-USES+= tar:bzip2
+USES+= tar:bzip2 cpe
.if !defined(NO_BUILD)
USES+= gmake
GNU_CONFIGURE= yes
@@ -48,9 +41,9 @@
--with-includes=${PREFIX}/include \
--enable-thread-safety
CONFIGURE_ENV+= INCLUDES="${INCLUDES}" \
- PTHREAD_CFLAGS="${PTHREAD_CFLAGS}" \
- PTHREAD_LIBS="${PTHREAD_LIBS}" \
+ PTHREAD_LIBS="-lpthread" \
LDFLAGS_SL="${LDFLAGS_SL}"
+LDFLAGS+= -lpthread
PLIST= ${PKGDIR}/pkg-plist${COMPONENT}
@@ -61,66 +54,107 @@
src/bin/pg_controldata src/bin/pg_resetxlog src/pl \
src/bin/pg_basebackup
BUILD_DIRS?= src/port ${INSTALL_DIRS}
+INSTALL_TARGET?=install-strip
.if !defined(CLIENT_ONLY) && !defined(SLAVE_ONLY)
SERVER_ONLY= yes
COMPONENT= -server
USE_RC_SUBR= postgresql
-USE_PGSQL= yes
-_WANT_PGSQL_VER=${DISTVERSION:C/([0-9][0-9]*\.[0-9][0-9]*).*/\1/g}
+USES+= pgsql:${DISTVERSION:C/([0-9][0-9]*\.[0-9][0-9]*).*/\1/g}
USERS= ${PG_USER}
GROUPS= ${PG_GROUP}
SUB_FILES+= 502.pgsql
.endif
-.if !defined(CLIENT_ONLY)
+.if defined(CLIENT_ONLY)
+OPTIONS_DEFINE+=LIBEDIT
+LIBEDIT_DESC= Use non-GPL libedit instead of readline
+.else
MAKE_ENV= PATH=${PREFIX}/bin:${PATH}
CONFIGURE_ENV+= PATH=${PREFIX}/bin:${PATH}
.endif
+.if defined(SERVER_ONLY)
+OPTIONS_DEFINE= DTRACE LDAP INTDATE TZDATA
+LDAP_DESC= Build with LDAP authentication support
+DTRACE_DESC= Build with DTrace probes
+TZDATA_DESC= Use internal timezone database
+XML_DESC= Build with XML data type
+
+# See http://people.freebsd.org/~girgen/postgresql-icu/README.html for more info
+OPTIONS_DEFINE+= ICU
+ICU_DESC= Use ICU for unicode collation
+
+# See http://www.freebsd.org/cgi/query-pr.cgi?pr=ports/76999 for more info
+# (requires dump/restore if modified.)
+OPTIONS_DEFINE+= INTDATE
+INTDATE_DESC= Builds with 64-bit date/time type
+OPTIONS_DEFAULT= XML TZDATA INTDATE
+.endif
+
.if !defined(SLAVE_ONLY)
-OPTIONS_DEFINE+= NLS DTRACE PAM LDAP GSSAPI OPTIMIZED_CFLAGS XML TZDATA DEBUG KRB5
-OPTIONS_SINGLE= KRB5
-OPTIONS_SINGLE_KRB5= MIT_KRB5 HEIMDAL_KRB5
+OPTIONS_DEFINE+= NLS PAM GSSAPI OPTIMIZED_CFLAGS DEBUG
+OPTIONS_RADIO= KRB5
+OPTIONS_RADIO_KRB5= MIT_KRB5 HEIMDAL_KRB5
KRB5_DESC= Build with kerberos provider support
NLS_DESC= Use internationalized messages
-DTRACE_DESC= Build with DTrace probes (server only)
PAM_DESC= Build with PAM Support
-LDAP_DESC= Build with LDAP authentication support (server only)
MIT_KRB5_DESC= Build with MIT kerberos support
HEIMDAL_KRB5_DESC= Builds with Heimdal kerberos
GSSAPI_DESC= Build with GSSAPI support
OPTIMIZED_CFLAGS_DESC= Builds with compiler optimizations (-O3)
-XML_DESC= Build with XML data type (server)
-TZDATA_DESC= Use internal timezone database (server)
DEBUG_DESC= Builds with debugging symbols
-# See http://people.freebsd.org/~girgen/postgresql-icu/README.html for more info
-OPTIONS_DEFINE+= ICU
-ICU_DESC= Use ICU for unicode collation (server)
-# See http://www.freebsd.org/cgi/query-pr.cgi?pr=ports/76999 for more info
-# (requires dump/restore if modified.)
-OPTIONS_DEFINE+= INTDATE
-INTDATE_DESC= Builds with 64-bit date/time type (server)
-
OPTIONS_DEFINE+= SSL
SSL_DESC= Build with OpenSSL support
-OPTIONS_DEFAULT= NLS XML TZDATA INTDATE SSL
+OPTIONS_DEFAULT+= NLS SSL
.endif # !SLAVE_ONLY
+.if defined(CLIENT_ONLY)
+LIBEDIT_CONFIGURE_ON+=--with-libedit-preferred
+LIBEDIT_USES= libedit
+LIBEDIT_USES_OFF= readline
+.endif # CLIENT_ONLY
+
+SSL_USE= OPENSSL=yes
+SSL_CONFIGURE_WITH=openssl
+
+OSSP_UUID_BUILD_DEPENDS= ${LOCALBASE}/lib/libuuid.a:${PORTSDIR}/misc/ossp-uuid
+OSSP_UUID_CONFIGURE_WITH= ossp-uuid
+
+PAM_CONFIGURE_WITH= pam
+
+XML_CONFIGURE_WITH= libxml
+XML_LIB_DEPENDS= libxml2.so:${PORTSDIR}/textproc/libxml2
+
+TZDATA_CONFIGURE_OFF=--with-system-tzdata=/usr/share/zoneinfo
+
+INTDATE_CONFIGURE_OFF=--disable-integer-datetimes
+
+NLS_CONFIGURE_ENABLE= nls
+NLS_USES= gettext
+
+LDAP_CONFIGURE_WITH= ldap
+LDAP_USE= OPENLDAP=yes
+
+OPTIMIZED_CFLAGS_CFLAGS= -O3 -funroll-loops
+
+DEBUG_CONFIGURE_ENABLE= debug
+
+PLIST_SUB+= PG_USER=${PG_USER} \
+ PG_GROUP=${PG_GROUP}
+SUB_LIST+= PG_GROUP=${PG_GROUP} \
+ PG_USER=${PG_USER} \
+ PG_UID=${PG_UID}
+
.include <bsd.mport.options.mk>
-.if ${PORT_OPTIONS:MSSL}
-USE_OPENSSL= yes
-CONFIGURE_ARGS+=--with-openssl
-.endif
-
.if !defined(SLAVE_ONLY)
. if ( defined(SERVER_ONLY) && ${PORT_OPTIONS:MICU} ) || make(makesum)
-USES= autoconf
+USE_AUTOTOOLS= autoconf
CONFIGURE_ARGS+=--with-icu
PATCH_SITES+= http://people.freebsd.org/~girgen/postgresql-icu/:icu
PATCHFILES+= ${ICU_PATCHFILE}:icu
@@ -128,14 +162,6 @@
. endif
.endif # !SLAVE_ONLY
-.if ${PORT_OPTIONS:MOSSP_UUID}
-BUILD_DEPENDS+= ${LOCALBASE}/lib/libuuid.a:${PORTSDIR}/misc/ossp-uuid
-CONFIGURE_ARGS+=--with-ossp-uuid
-PLIST_SUB+= OSSP=""
-.else
-PLIST_SUB+= OSSP="@comment "
-.endif
-
.if !defined(SLAVE_ONLY)
PATCH_DIST_STRIP=-p1
@@ -148,53 +174,6 @@
. endif
. endif
-. if ${PORT_OPTIONS:MPAM}
-CONFIGURE_ARGS+=--with-pam
-. endif
-
-. if ${PORT_OPTIONS:MLDAP}
-. if defined (SERVER_ONLY)
-CONFIGURE_ARGS+=--with-ldap
-USE_OPENLDAP= yes
-. endif
-. endif
-
-. if ${PORT_OPTIONS:MXML}
-CONFIGURE_ARGS+=--with-libxml
-LIB_DEPENDS+= libxml2.so:${PORTSDIR}/textproc/libxml2
-. endif
-
-. if ${PORT_OPTIONS:MTZDATA}
-PLIST_SUB+= TZDATA=""
-. else
-CONFIGURE_ARGS+=--with-system-tzdata=/usr/share/zoneinfo
-PLIST_SUB+= TZDATA="@comment "
-. endif
-
-. if empty(PORT_OPTIONS:MINTDATE)
-CONFIGURE_ARGS+=--disable-integer-datetimes
-. endif
-
-. if ${PORT_OPTIONS:MNLS}
-CONFIGURE_ARGS+=--enable-nls
-PLIST_SUB+= GETTEXT=""
-USES+= gettext
-. else
-CONFIGURE_ARGS+=--disable-nls
-PLIST_SUB+= GETTEXT="@comment "
-. endif
-
-. if ${PORT_OPTIONS:MOPTIMIZED_CFLAGS}
-CFLAGS+= -O3 -funroll-loops
-. endif
-
-. if ${PORT_OPTIONS:MDEBUG}
-CONFIGURE_ARGS+=--enable-debug
-INSTALL_TARGET= install
-. else
-INSTALL_TARGET= install-strip
-. endif
-
.if ${PORT_OPTIONS:MGSSAPI}
CONFIGURE_ARGS+=--with-gssapi
.if empty(PORT_OPTIONS:MMIT_KRB5) && empty(PORT_OPTIONS:MHEIMDAL_KRB5)
@@ -227,12 +206,6 @@
.endif # !SLAVE_ONLY
-PLIST_SUB+= PG_USER=${PG_USER} \
- PG_GROUP=${PG_GROUP}
-SUB_LIST+= PG_GROUP=${PG_GROUP} \
- PG_USER=${PG_USER} \
- PG_UID=${PG_UID}
-
# For testing files in FILESDIR
.include <bsd.port.pre.mk>
@@ -290,7 +263,7 @@
check:
@if [ `id -u` != 0 ] ; then \
${ECHO} "Running postgresql regressions tests" ;\
- cd ${WRKSRC}; ${GMAKE} check ;\
+ cd ${WRKSRC}; ${MAKE_CMD} check ;\
else \
${ECHO} "You cannot run regression tests when postgresql is built as user root." ; \
${ECHO} "Clean and rebuild the port as a regular user to run the tests." ;\
Modified: trunk/databases/postgresql92-server/distinfo
===================================================================
--- trunk/databases/postgresql92-server/distinfo 2015-11-04 22:46:36 UTC (rev 20646)
+++ trunk/databases/postgresql92-server/distinfo 2015-11-05 00:22:18 UTC (rev 20647)
@@ -1,4 +1,4 @@
-SHA256 (postgresql/postgresql-9.2.9.tar.bz2) = 94ec6d330f125b6fc725741293073b07d7d20cc3e7b8ed127bc3d14ad2370197
-SIZE (postgresql/postgresql-9.2.9.tar.bz2) = 16269349
-SHA256 (postgresql/pg-928-icu-2014-06-09.diff.gz) = 6f856ee0fd27118650f806fb674220d9851a0183ffa125e6fbe5468dfabeea5c
-SIZE (postgresql/pg-928-icu-2014-06-09.diff.gz) = 4449
+SHA256 (postgresql/postgresql-9.2.13.tar.bz2) = 5dcbd6209a8c0f508504fa433486583a42caaa240c823e1b3576db8a72db6a44
+SIZE (postgresql/postgresql-9.2.13.tar.bz2) = 16401289
+SHA256 (postgresql/pg-929-icu-2015-04-18.diff.gz) = 9aff1ba25fbe5892a3868bff516df685531c85901c360548e38bf2e5fa0e14ab
+SIZE (postgresql/pg-929-icu-2015-04-18.diff.gz) = 4469
Modified: trunk/databases/postgresql92-server/pkg-plist-client
===================================================================
--- trunk/databases/postgresql92-server/pkg-plist-client 2015-11-04 22:46:36 UTC (rev 20646)
+++ trunk/databases/postgresql92-server/pkg-plist-client 2015-11-05 00:22:18 UTC (rev 20647)
@@ -506,55 +506,16 @@
include/sqlda-compat.h
include/sqlda-native.h
include/sqlda.h
- at dirrm include/postgresql/server/utils
- at dirrm include/postgresql/server/tsearch/dicts
- at dirrm include/postgresql/server/tsearch
- at dirrm include/postgresql/server/tcop
- at dirrm include/postgresql/server/storage
- at dirrm include/postgresql/server/snowball/libstemmer
- at dirrm include/postgresql/server/snowball
- at dirrm include/postgresql/server/rewrite
- at dirrm include/postgresql/server/replication
- at dirrm include/postgresql/server/regex
- at dirrm include/postgresql/server/postmaster
- at dirrm include/postgresql/server/portability
- at dirrm include/postgresql/server/port/win32_msvc/sys
- at dirrm include/postgresql/server/port/win32_msvc
- at dirrm include/postgresql/server/port/win32/sys
- at dirrm include/postgresql/server/port/win32/netinet
- at dirrm include/postgresql/server/port/win32/arpa
- at dirrm include/postgresql/server/port/win32
- at dirrm include/postgresql/server/port
- at dirrm include/postgresql/server/parser
- at dirrm include/postgresql/server/optimizer
- at dirrm include/postgresql/server/nodes
- at dirrm include/postgresql/server/mb
- at dirrm include/postgresql/server/libpq
- at dirrm include/postgresql/server/lib
- at dirrm include/postgresql/server/foreign
- at dirrm include/postgresql/server/executor
- at dirrm include/postgresql/server/datatype
- at dirrm include/postgresql/server/commands
- at dirrm include/postgresql/server/catalog
- at dirrm include/postgresql/server/bootstrap
- at dirrm include/postgresql/server/access
- at dirrm include/postgresql/server
include/libpq/libpq-fs.h
- at dirrm include/libpq
include/postgresql/internal/libpq/pqcomm.h
- at dirrm include/postgresql/internal/libpq
include/postgresql/informix/esql/datetime.h
include/postgresql/informix/esql/decimal.h
include/postgresql/informix/esql/sqltypes.h
- at dirrm include/postgresql/informix/esql
- at dirrm include/postgresql/informix
include/postgresql/internal/c.h
include/postgresql/internal/libpq-int.h
include/postgresql/internal/postgres_fe.h
include/postgresql/internal/port.h
include/postgresql/internal/pqexpbuffer.h
- at dirrm include/postgresql/internal
- at dirrm include/postgresql
include/ecpg_informix.h
include/ecpgerrno.h
include/ecpglib.h
@@ -590,11 +551,6 @@
lib/postgresql/pgxs/src/Makefile.port
lib/postgresql/pgxs/src/Makefile.shlib
lib/postgresql/pgxs/src/nls-global.mk
- at dirrm lib/postgresql/pgxs/src/makefiles
- at dirrm lib/postgresql/pgxs/config
- at dirrm lib/postgresql/pgxs/src
- at dirrm lib/postgresql/pgxs
- at dirrm lib/postgresql
man/man1/clusterdb.1.gz
man/man1/createdb.1.gz
man/man1/createlang.1.gz
@@ -842,96 +798,94 @@
man/man7/VALUES.7.gz
man/man7/WITH.7.gz
%%DOCSDIR%%/README-client
- at dirrmtry %%DOCSDIR%%
-share/postgresql/pg_service.conf.sample
-share/postgresql/psqlrc.sample
- at dirrmtry share/postgresql
-%%GETTEXT%%share/locale/cs/LC_MESSAGES/ecpg-9.2.mo
-%%GETTEXT%%share/locale/cs/LC_MESSAGES/ecpglib6-9.2.mo
-%%GETTEXT%%share/locale/cs/LC_MESSAGES/libpq5-9.2.mo
-%%GETTEXT%%share/locale/cs/LC_MESSAGES/pg_config-9.2.mo
-%%GETTEXT%%share/locale/cs/LC_MESSAGES/pg_dump-9.2.mo
-%%GETTEXT%%share/locale/cs/LC_MESSAGES/pgscripts-9.2.mo
-%%GETTEXT%%share/locale/cs/LC_MESSAGES/psql-9.2.mo
-%%GETTEXT%%share/locale/de/LC_MESSAGES/ecpg-9.2.mo
-%%GETTEXT%%share/locale/de/LC_MESSAGES/ecpglib6-9.2.mo
-%%GETTEXT%%share/locale/de/LC_MESSAGES/libpq5-9.2.mo
-%%GETTEXT%%share/locale/de/LC_MESSAGES/pg_config-9.2.mo
-%%GETTEXT%%share/locale/de/LC_MESSAGES/pg_dump-9.2.mo
-%%GETTEXT%%share/locale/de/LC_MESSAGES/pgscripts-9.2.mo
-%%GETTEXT%%share/locale/de/LC_MESSAGES/psql-9.2.mo
-%%GETTEXT%%share/locale/es/LC_MESSAGES/ecpg-9.2.mo
-%%GETTEXT%%share/locale/es/LC_MESSAGES/ecpglib6-9.2.mo
-%%GETTEXT%%share/locale/es/LC_MESSAGES/libpq5-9.2.mo
-%%GETTEXT%%share/locale/es/LC_MESSAGES/pg_config-9.2.mo
-%%GETTEXT%%share/locale/es/LC_MESSAGES/pg_dump-9.2.mo
-%%GETTEXT%%share/locale/es/LC_MESSAGES/pgscripts-9.2.mo
-%%GETTEXT%%share/locale/es/LC_MESSAGES/psql-9.2.mo
-%%GETTEXT%%share/locale/fr/LC_MESSAGES/ecpg-9.2.mo
-%%GETTEXT%%share/locale/fr/LC_MESSAGES/ecpglib6-9.2.mo
-%%GETTEXT%%share/locale/fr/LC_MESSAGES/libpq5-9.2.mo
-%%GETTEXT%%share/locale/fr/LC_MESSAGES/pg_config-9.2.mo
-%%GETTEXT%%share/locale/fr/LC_MESSAGES/pg_dump-9.2.mo
-%%GETTEXT%%share/locale/fr/LC_MESSAGES/pgscripts-9.2.mo
-%%GETTEXT%%share/locale/fr/LC_MESSAGES/psql-9.2.mo
-%%GETTEXT%%share/locale/it/LC_MESSAGES/ecpg-9.2.mo
-%%GETTEXT%%share/locale/it/LC_MESSAGES/ecpglib6-9.2.mo
-%%GETTEXT%%share/locale/it/LC_MESSAGES/libpq5-9.2.mo
-%%GETTEXT%%share/locale/it/LC_MESSAGES/pg_config-9.2.mo
-%%GETTEXT%%share/locale/it/LC_MESSAGES/pg_dump-9.2.mo
-%%GETTEXT%%share/locale/it/LC_MESSAGES/pgscripts-9.2.mo
-%%GETTEXT%%share/locale/it/LC_MESSAGES/psql-9.2.mo
-%%GETTEXT%%share/locale/ja/LC_MESSAGES/ecpg-9.2.mo
-%%GETTEXT%%share/locale/ja/LC_MESSAGES/ecpglib6-9.2.mo
-%%GETTEXT%%share/locale/ja/LC_MESSAGES/libpq5-9.2.mo
-%%GETTEXT%%share/locale/ja/LC_MESSAGES/pg_config-9.2.mo
-%%GETTEXT%%share/locale/ja/LC_MESSAGES/pg_dump-9.2.mo
-%%GETTEXT%%share/locale/ja/LC_MESSAGES/pgscripts-9.2.mo
-%%GETTEXT%%share/locale/ja/LC_MESSAGES/psql-9.2.mo
-%%GETTEXT%%share/locale/ko/LC_MESSAGES/ecpg-9.2.mo
-%%GETTEXT%%share/locale/ko/LC_MESSAGES/pg_config-9.2.mo
-%%GETTEXT%%share/locale/ko/LC_MESSAGES/pgscripts-9.2.mo
-%%GETTEXT%%share/locale/nb/LC_MESSAGES/pg_config-9.2.mo
-%%GETTEXT%%share/locale/pl/LC_MESSAGES/ecpg-9.2.mo
-%%GETTEXT%%share/locale/pl/LC_MESSAGES/ecpglib6-9.2.mo
-%%GETTEXT%%share/locale/pl/LC_MESSAGES/libpq5-9.2.mo
-%%GETTEXT%%share/locale/pl/LC_MESSAGES/pg_config-9.2.mo
-%%GETTEXT%%share/locale/pl/LC_MESSAGES/pg_dump-9.2.mo
-%%GETTEXT%%share/locale/pl/LC_MESSAGES/pgscripts-9.2.mo
-%%GETTEXT%%share/locale/pl/LC_MESSAGES/psql-9.2.mo
-%%GETTEXT%%share/locale/pt_BR/LC_MESSAGES/ecpg-9.2.mo
-%%GETTEXT%%share/locale/pt_BR/LC_MESSAGES/ecpglib6-9.2.mo
-%%GETTEXT%%share/locale/pt_BR/LC_MESSAGES/libpq5-9.2.mo
-%%GETTEXT%%share/locale/pt_BR/LC_MESSAGES/pg_config-9.2.mo
-%%GETTEXT%%share/locale/pt_BR/LC_MESSAGES/pg_dump-9.2.mo
-%%GETTEXT%%share/locale/pt_BR/LC_MESSAGES/pgscripts-9.2.mo
-%%GETTEXT%%share/locale/pt_BR/LC_MESSAGES/psql-9.2.mo
-%%GETTEXT%%share/locale/ro/LC_MESSAGES/pg_config-9.2.mo
-%%GETTEXT%%share/locale/ro/LC_MESSAGES/pgscripts-9.2.mo
-%%GETTEXT%%share/locale/ru/LC_MESSAGES/ecpg-9.2.mo
-%%GETTEXT%%share/locale/ru/LC_MESSAGES/ecpglib6-9.2.mo
-%%GETTEXT%%share/locale/ru/LC_MESSAGES/libpq5-9.2.mo
-%%GETTEXT%%share/locale/ru/LC_MESSAGES/pg_config-9.2.mo
-%%GETTEXT%%share/locale/ru/LC_MESSAGES/pg_dump-9.2.mo
-%%GETTEXT%%share/locale/ru/LC_MESSAGES/pgscripts-9.2.mo
-%%GETTEXT%%share/locale/ru/LC_MESSAGES/psql-9.2.mo
-%%GETTEXT%%share/locale/sv/LC_MESSAGES/pg_config-9.2.mo
-%%GETTEXT%%share/locale/sv/LC_MESSAGES/pgscripts-9.2.mo
-%%GETTEXT%%share/locale/ta/LC_MESSAGES/pg_config-9.2.mo
-%%GETTEXT%%share/locale/tr/LC_MESSAGES/ecpg-9.2.mo
-%%GETTEXT%%share/locale/tr/LC_MESSAGES/ecpglib6-9.2.mo
-%%GETTEXT%%share/locale/tr/LC_MESSAGES/libpq5-9.2.mo
-%%GETTEXT%%share/locale/tr/LC_MESSAGES/pg_config-9.2.mo
-%%GETTEXT%%share/locale/tr/LC_MESSAGES/pgscripts-9.2.mo
-%%GETTEXT%%share/locale/zh_CN/LC_MESSAGES/ecpg-9.2.mo
-%%GETTEXT%%share/locale/zh_CN/LC_MESSAGES/ecpglib6-9.2.mo
-%%GETTEXT%%share/locale/zh_CN/LC_MESSAGES/libpq5-9.2.mo
-%%GETTEXT%%share/locale/zh_CN/LC_MESSAGES/pg_config-9.2.mo
-%%GETTEXT%%share/locale/zh_CN/LC_MESSAGES/pg_dump-9.2.mo
-%%GETTEXT%%share/locale/zh_CN/LC_MESSAGES/pgscripts-9.2.mo
-%%GETTEXT%%share/locale/zh_CN/LC_MESSAGES/psql-9.2.mo
-%%GETTEXT%%share/locale/zh_TW/LC_MESSAGES/ecpg-9.2.mo
-%%GETTEXT%%share/locale/zh_TW/LC_MESSAGES/libpq5-9.2.mo
-%%GETTEXT%%share/locale/zh_TW/LC_MESSAGES/pg_config-9.2.mo
-%%GETTEXT%%share/locale/zh_TW/LC_MESSAGES/pgscripts-9.2.mo
-%%GETTEXT%%share/locale/zh_TW/LC_MESSAGES/psql-9.2.mo
+%%DATADIR%%/pg_service.conf.sample
+%%DATADIR%%/psqlrc.sample
+%%NLS%%share/locale/cs/LC_MESSAGES/ecpg-9.2.mo
+%%NLS%%share/locale/cs/LC_MESSAGES/ecpglib6-9.2.mo
+%%NLS%%share/locale/cs/LC_MESSAGES/libpq5-9.2.mo
+%%NLS%%share/locale/cs/LC_MESSAGES/pg_config-9.2.mo
+%%NLS%%share/locale/cs/LC_MESSAGES/pg_dump-9.2.mo
+%%NLS%%share/locale/cs/LC_MESSAGES/pgscripts-9.2.mo
+%%NLS%%share/locale/cs/LC_MESSAGES/psql-9.2.mo
+%%NLS%%share/locale/de/LC_MESSAGES/ecpg-9.2.mo
+%%NLS%%share/locale/de/LC_MESSAGES/ecpglib6-9.2.mo
+%%NLS%%share/locale/de/LC_MESSAGES/libpq5-9.2.mo
+%%NLS%%share/locale/de/LC_MESSAGES/pg_config-9.2.mo
+%%NLS%%share/locale/de/LC_MESSAGES/pg_dump-9.2.mo
+%%NLS%%share/locale/de/LC_MESSAGES/pgscripts-9.2.mo
+%%NLS%%share/locale/de/LC_MESSAGES/psql-9.2.mo
+%%NLS%%share/locale/es/LC_MESSAGES/ecpg-9.2.mo
+%%NLS%%share/locale/es/LC_MESSAGES/ecpglib6-9.2.mo
+%%NLS%%share/locale/es/LC_MESSAGES/libpq5-9.2.mo
+%%NLS%%share/locale/es/LC_MESSAGES/pg_config-9.2.mo
+%%NLS%%share/locale/es/LC_MESSAGES/pg_dump-9.2.mo
+%%NLS%%share/locale/es/LC_MESSAGES/pgscripts-9.2.mo
+%%NLS%%share/locale/es/LC_MESSAGES/psql-9.2.mo
+%%NLS%%share/locale/fr/LC_MESSAGES/ecpg-9.2.mo
+%%NLS%%share/locale/fr/LC_MESSAGES/ecpglib6-9.2.mo
+%%NLS%%share/locale/fr/LC_MESSAGES/libpq5-9.2.mo
+%%NLS%%share/locale/fr/LC_MESSAGES/pg_config-9.2.mo
+%%NLS%%share/locale/fr/LC_MESSAGES/pg_dump-9.2.mo
+%%NLS%%share/locale/fr/LC_MESSAGES/pgscripts-9.2.mo
+%%NLS%%share/locale/fr/LC_MESSAGES/psql-9.2.mo
+%%NLS%%share/locale/it/LC_MESSAGES/ecpg-9.2.mo
+%%NLS%%share/locale/it/LC_MESSAGES/ecpglib6-9.2.mo
+%%NLS%%share/locale/it/LC_MESSAGES/libpq5-9.2.mo
+%%NLS%%share/locale/it/LC_MESSAGES/pg_config-9.2.mo
+%%NLS%%share/locale/it/LC_MESSAGES/pg_dump-9.2.mo
+%%NLS%%share/locale/it/LC_MESSAGES/pgscripts-9.2.mo
+%%NLS%%share/locale/it/LC_MESSAGES/psql-9.2.mo
+%%NLS%%share/locale/ja/LC_MESSAGES/ecpg-9.2.mo
+%%NLS%%share/locale/ja/LC_MESSAGES/ecpglib6-9.2.mo
+%%NLS%%share/locale/ja/LC_MESSAGES/libpq5-9.2.mo
+%%NLS%%share/locale/ja/LC_MESSAGES/pg_config-9.2.mo
+%%NLS%%share/locale/ja/LC_MESSAGES/pg_dump-9.2.mo
+%%NLS%%share/locale/ja/LC_MESSAGES/pgscripts-9.2.mo
+%%NLS%%share/locale/ja/LC_MESSAGES/psql-9.2.mo
+%%NLS%%share/locale/ko/LC_MESSAGES/ecpg-9.2.mo
+%%NLS%%share/locale/ko/LC_MESSAGES/pg_config-9.2.mo
+%%NLS%%share/locale/ko/LC_MESSAGES/pgscripts-9.2.mo
+%%NLS%%share/locale/nb/LC_MESSAGES/pg_config-9.2.mo
+%%NLS%%share/locale/pl/LC_MESSAGES/ecpg-9.2.mo
+%%NLS%%share/locale/pl/LC_MESSAGES/ecpglib6-9.2.mo
+%%NLS%%share/locale/pl/LC_MESSAGES/libpq5-9.2.mo
+%%NLS%%share/locale/pl/LC_MESSAGES/pg_config-9.2.mo
+%%NLS%%share/locale/pl/LC_MESSAGES/pg_dump-9.2.mo
+%%NLS%%share/locale/pl/LC_MESSAGES/pgscripts-9.2.mo
+%%NLS%%share/locale/pl/LC_MESSAGES/psql-9.2.mo
+%%NLS%%share/locale/pt_BR/LC_MESSAGES/ecpg-9.2.mo
+%%NLS%%share/locale/pt_BR/LC_MESSAGES/ecpglib6-9.2.mo
+%%NLS%%share/locale/pt_BR/LC_MESSAGES/libpq5-9.2.mo
+%%NLS%%share/locale/pt_BR/LC_MESSAGES/pg_config-9.2.mo
+%%NLS%%share/locale/pt_BR/LC_MESSAGES/pg_dump-9.2.mo
+%%NLS%%share/locale/pt_BR/LC_MESSAGES/pgscripts-9.2.mo
+%%NLS%%share/locale/pt_BR/LC_MESSAGES/psql-9.2.mo
+%%NLS%%share/locale/ro/LC_MESSAGES/pg_config-9.2.mo
+%%NLS%%share/locale/ro/LC_MESSAGES/pgscripts-9.2.mo
+%%NLS%%share/locale/ru/LC_MESSAGES/ecpg-9.2.mo
+%%NLS%%share/locale/ru/LC_MESSAGES/ecpglib6-9.2.mo
+%%NLS%%share/locale/ru/LC_MESSAGES/libpq5-9.2.mo
+%%NLS%%share/locale/ru/LC_MESSAGES/pg_config-9.2.mo
+%%NLS%%share/locale/ru/LC_MESSAGES/pg_dump-9.2.mo
+%%NLS%%share/locale/ru/LC_MESSAGES/pgscripts-9.2.mo
+%%NLS%%share/locale/ru/LC_MESSAGES/psql-9.2.mo
+%%NLS%%share/locale/sv/LC_MESSAGES/pg_config-9.2.mo
+%%NLS%%share/locale/sv/LC_MESSAGES/pgscripts-9.2.mo
+%%NLS%%share/locale/ta/LC_MESSAGES/pg_config-9.2.mo
+%%NLS%%share/locale/tr/LC_MESSAGES/ecpg-9.2.mo
+%%NLS%%share/locale/tr/LC_MESSAGES/ecpglib6-9.2.mo
+%%NLS%%share/locale/tr/LC_MESSAGES/libpq5-9.2.mo
+%%NLS%%share/locale/tr/LC_MESSAGES/pg_config-9.2.mo
+%%NLS%%share/locale/tr/LC_MESSAGES/pgscripts-9.2.mo
+%%NLS%%share/locale/zh_CN/LC_MESSAGES/ecpg-9.2.mo
+%%NLS%%share/locale/zh_CN/LC_MESSAGES/ecpglib6-9.2.mo
+%%NLS%%share/locale/zh_CN/LC_MESSAGES/libpq5-9.2.mo
+%%NLS%%share/locale/zh_CN/LC_MESSAGES/pg_config-9.2.mo
+%%NLS%%share/locale/zh_CN/LC_MESSAGES/pg_dump-9.2.mo
+%%NLS%%share/locale/zh_CN/LC_MESSAGES/pgscripts-9.2.mo
+%%NLS%%share/locale/zh_CN/LC_MESSAGES/psql-9.2.mo
+%%NLS%%share/locale/zh_TW/LC_MESSAGES/ecpg-9.2.mo
+%%NLS%%share/locale/zh_TW/LC_MESSAGES/libpq5-9.2.mo
+%%NLS%%share/locale/zh_TW/LC_MESSAGES/pg_config-9.2.mo
+%%NLS%%share/locale/zh_TW/LC_MESSAGES/pgscripts-9.2.mo
+%%NLS%%share/locale/zh_TW/LC_MESSAGES/psql-9.2.mo
Modified: trunk/databases/postgresql92-server/pkg-plist-contrib
===================================================================
--- trunk/databases/postgresql92-server/pkg-plist-contrib 2015-11-04 22:46:36 UTC (rev 20646)
+++ trunk/databases/postgresql92-server/pkg-plist-contrib 2015-11-05 00:22:18 UTC (rev 20647)
@@ -57,130 +57,127 @@
share/doc/postgresql/extension/moddatetime.example
share/doc/postgresql/extension/refint.example
share/doc/postgresql/extension/timetravel.example
-share/postgresql/extension/adminpack--1.0.sql
-share/postgresql/extension/adminpack.control
-share/postgresql/extension/autoinc--1.0.sql
-share/postgresql/extension/autoinc--unpackaged--1.0.sql
-share/postgresql/extension/autoinc.control
-share/postgresql/extension/btree_gin--1.0.sql
-share/postgresql/extension/btree_gin--unpackaged--1.0.sql
-share/postgresql/extension/btree_gin.control
-share/postgresql/extension/btree_gist--1.0.sql
-share/postgresql/extension/btree_gist--unpackaged--1.0.sql
-share/postgresql/extension/btree_gist.control
-share/postgresql/extension/chkpass--1.0.sql
-share/postgresql/extension/chkpass--unpackaged--1.0.sql
-share/postgresql/extension/chkpass.control
-share/postgresql/extension/citext--1.0.sql
-share/postgresql/extension/citext--unpackaged--1.0.sql
-share/postgresql/extension/citext.control
-share/postgresql/extension/cube--1.0.sql
-share/postgresql/extension/cube--unpackaged--1.0.sql
-share/postgresql/extension/cube.control
-share/postgresql/extension/dblink--1.0.sql
-share/postgresql/extension/dblink--unpackaged--1.0.sql
-share/postgresql/extension/dblink.control
-share/postgresql/extension/dict_int--1.0.sql
-share/postgresql/extension/dict_int--unpackaged--1.0.sql
-share/postgresql/extension/dict_int.control
-share/postgresql/extension/dict_xsyn--1.0.sql
-share/postgresql/extension/dict_xsyn--unpackaged--1.0.sql
-share/postgresql/extension/dict_xsyn.control
-share/postgresql/extension/earthdistance--1.0.sql
-share/postgresql/extension/earthdistance--unpackaged--1.0.sql
-share/postgresql/extension/earthdistance.control
-share/postgresql/extension/file_fdw--1.0.sql
-share/postgresql/extension/file_fdw.control
-share/postgresql/extension/fuzzystrmatch--1.0.sql
-share/postgresql/extension/fuzzystrmatch--unpackaged--1.0.sql
-share/postgresql/extension/fuzzystrmatch.control
-share/postgresql/extension/hstore--1.0--1.1.sql
-share/postgresql/extension/hstore--1.1.sql
-share/postgresql/extension/hstore--unpackaged--1.0.sql
-share/postgresql/extension/hstore.control
-share/postgresql/extension/insert_username--1.0.sql
-share/postgresql/extension/insert_username--unpackaged--1.0.sql
-share/postgresql/extension/insert_username.control
-share/postgresql/extension/intagg--1.0.sql
-share/postgresql/extension/intagg--unpackaged--1.0.sql
-share/postgresql/extension/intagg.control
-share/postgresql/extension/intarray--1.0.sql
-share/postgresql/extension/intarray--unpackaged--1.0.sql
-share/postgresql/extension/intarray.control
-share/postgresql/extension/isn--1.0.sql
-share/postgresql/extension/isn--unpackaged--1.0.sql
-share/postgresql/extension/isn.control
-share/postgresql/extension/lo--1.0.sql
-share/postgresql/extension/lo--unpackaged--1.0.sql
-share/postgresql/extension/lo.control
-share/postgresql/extension/ltree--1.0.sql
-share/postgresql/extension/ltree--unpackaged--1.0.sql
-share/postgresql/extension/ltree.control
-share/postgresql/extension/moddatetime--1.0.sql
-share/postgresql/extension/moddatetime--unpackaged--1.0.sql
-share/postgresql/extension/moddatetime.control
-share/postgresql/extension/pageinspect--1.0.sql
-share/postgresql/extension/pageinspect--unpackaged--1.0.sql
-share/postgresql/extension/pageinspect.control
-share/postgresql/extension/pg_buffercache--1.0.sql
-share/postgresql/extension/pg_buffercache--unpackaged--1.0.sql
-share/postgresql/extension/pg_buffercache.control
-share/postgresql/extension/pg_freespacemap--1.0.sql
-share/postgresql/extension/pg_freespacemap--unpackaged--1.0.sql
-share/postgresql/extension/pg_freespacemap.control
-share/postgresql/extension/pg_stat_statements--1.0--1.1.sql
-share/postgresql/extension/pg_stat_statements--1.1.sql
-share/postgresql/extension/pg_stat_statements--unpackaged--1.0.sql
-share/postgresql/extension/pg_stat_statements.control
-share/postgresql/extension/pg_trgm--1.0.sql
-share/postgresql/extension/pg_trgm--unpackaged--1.0.sql
-share/postgresql/extension/pg_trgm.control
-share/postgresql/extension/pgcrypto--1.0.sql
-share/postgresql/extension/pgcrypto--unpackaged--1.0.sql
-share/postgresql/extension/pgcrypto.control
-share/postgresql/extension/pgrowlocks--1.0.sql
-share/postgresql/extension/pgrowlocks--unpackaged--1.0.sql
-share/postgresql/extension/pgrowlocks.control
-share/postgresql/extension/pgstattuple--1.0.sql
-share/postgresql/extension/pgstattuple--unpackaged--1.0.sql
-share/postgresql/extension/pgstattuple.control
-share/postgresql/extension/refint--1.0.sql
-share/postgresql/extension/refint--unpackaged--1.0.sql
-share/postgresql/extension/refint.control
-share/postgresql/extension/seg--1.0.sql
-share/postgresql/extension/seg--unpackaged--1.0.sql
-share/postgresql/extension/seg.control
-share/postgresql/extension/sslinfo--1.0.sql
-share/postgresql/extension/sslinfo--unpackaged--1.0.sql
-share/postgresql/extension/sslinfo.control
-share/postgresql/extension/tablefunc--1.0.sql
-share/postgresql/extension/tablefunc--unpackaged--1.0.sql
-share/postgresql/extension/tablefunc.control
-share/postgresql/extension/tcn--1.0.sql
-share/postgresql/extension/tcn.control
-share/postgresql/extension/test_parser--1.0.sql
-share/postgresql/extension/test_parser--unpackaged--1.0.sql
-share/postgresql/extension/test_parser.control
-share/postgresql/extension/timetravel--1.0.sql
-share/postgresql/extension/timetravel--unpackaged--1.0.sql
-share/postgresql/extension/timetravel.control
-share/postgresql/extension/tsearch2--1.0.sql
-share/postgresql/extension/tsearch2--unpackaged--1.0.sql
-share/postgresql/extension/tsearch2.control
-share/postgresql/extension/unaccent--1.0.sql
-share/postgresql/extension/unaccent--unpackaged--1.0.sql
-share/postgresql/extension/unaccent.control
-share/postgresql/extension/uuid-ossp--1.0.sql
-share/postgresql/extension/uuid-ossp--unpackaged--1.0.sql
-share/postgresql/extension/uuid-ossp.control
-share/postgresql/extension/xml2--1.0.sql
-share/postgresql/extension/xml2--unpackaged--1.0.sql
-share/postgresql/extension/xml2.control
-share/postgresql/tsearch_data/unaccent.rules
-share/postgresql/tsearch_data/xsyn_sample.rules
- at dirrmtry share/postgresql/tsearch_data
- at dirrmtry share/postgresql/extension
- at dirrmtry share/postgresql
- at dirrmtry %%DOCSDIR%%/extension
- at dirrmtry %%DOCSDIR%%
- at dirrmtry lib/postgresql
+%%DATADIR%%/extension/adminpack--1.0.sql
+%%DATADIR%%/extension/adminpack.control
+%%DATADIR%%/extension/autoinc--1.0.sql
+%%DATADIR%%/extension/autoinc--unpackaged--1.0.sql
+%%DATADIR%%/extension/autoinc.control
+%%DATADIR%%/extension/btree_gin--1.0.sql
+%%DATADIR%%/extension/btree_gin--unpackaged--1.0.sql
+%%DATADIR%%/extension/btree_gin.control
+%%DATADIR%%/extension/btree_gist--1.0.sql
+%%DATADIR%%/extension/btree_gist--unpackaged--1.0.sql
+%%DATADIR%%/extension/btree_gist.control
+%%DATADIR%%/extension/chkpass--1.0.sql
+%%DATADIR%%/extension/chkpass--unpackaged--1.0.sql
+%%DATADIR%%/extension/chkpass.control
+%%DATADIR%%/extension/citext--1.0--1.1.sql
+%%DATADIR%%/extension/citext--1.0.sql
+%%DATADIR%%/extension/citext--1.1--1.0.sql
+%%DATADIR%%/extension/citext--1.1.sql
+%%DATADIR%%/extension/citext--unpackaged--1.0.sql
+%%DATADIR%%/extension/citext.control
+%%DATADIR%%/extension/cube--1.0.sql
+%%DATADIR%%/extension/cube--unpackaged--1.0.sql
+%%DATADIR%%/extension/cube.control
+%%DATADIR%%/extension/dblink--1.0.sql
+%%DATADIR%%/extension/dblink--unpackaged--1.0.sql
+%%DATADIR%%/extension/dblink.control
+%%DATADIR%%/extension/dict_int--1.0.sql
+%%DATADIR%%/extension/dict_int--unpackaged--1.0.sql
+%%DATADIR%%/extension/dict_int.control
+%%DATADIR%%/extension/dict_xsyn--1.0.sql
+%%DATADIR%%/extension/dict_xsyn--unpackaged--1.0.sql
+%%DATADIR%%/extension/dict_xsyn.control
+%%DATADIR%%/extension/earthdistance--1.0.sql
+%%DATADIR%%/extension/earthdistance--unpackaged--1.0.sql
+%%DATADIR%%/extension/earthdistance.control
+%%DATADIR%%/extension/file_fdw--1.0.sql
+%%DATADIR%%/extension/file_fdw.control
+%%DATADIR%%/extension/fuzzystrmatch--1.0.sql
+%%DATADIR%%/extension/fuzzystrmatch--unpackaged--1.0.sql
+%%DATADIR%%/extension/fuzzystrmatch.control
+%%DATADIR%%/extension/hstore--1.0--1.1.sql
+%%DATADIR%%/extension/hstore--1.1.sql
+%%DATADIR%%/extension/hstore--unpackaged--1.0.sql
+%%DATADIR%%/extension/hstore.control
+%%DATADIR%%/extension/insert_username--1.0.sql
+%%DATADIR%%/extension/insert_username--unpackaged--1.0.sql
+%%DATADIR%%/extension/insert_username.control
+%%DATADIR%%/extension/intagg--1.0.sql
+%%DATADIR%%/extension/intagg--unpackaged--1.0.sql
+%%DATADIR%%/extension/intagg.control
+%%DATADIR%%/extension/intarray--1.0.sql
+%%DATADIR%%/extension/intarray--unpackaged--1.0.sql
+%%DATADIR%%/extension/intarray.control
+%%DATADIR%%/extension/isn--1.0.sql
+%%DATADIR%%/extension/isn--unpackaged--1.0.sql
+%%DATADIR%%/extension/isn.control
+%%DATADIR%%/extension/lo--1.0.sql
+%%DATADIR%%/extension/lo--unpackaged--1.0.sql
+%%DATADIR%%/extension/lo.control
+%%DATADIR%%/extension/ltree--1.0.sql
+%%DATADIR%%/extension/ltree--unpackaged--1.0.sql
+%%DATADIR%%/extension/ltree.control
+%%DATADIR%%/extension/moddatetime--1.0.sql
+%%DATADIR%%/extension/moddatetime--unpackaged--1.0.sql
+%%DATADIR%%/extension/moddatetime.control
+%%DATADIR%%/extension/pageinspect--1.0.sql
+%%DATADIR%%/extension/pageinspect--unpackaged--1.0.sql
+%%DATADIR%%/extension/pageinspect.control
+%%DATADIR%%/extension/pg_buffercache--1.0.sql
+%%DATADIR%%/extension/pg_buffercache--unpackaged--1.0.sql
+%%DATADIR%%/extension/pg_buffercache.control
+%%DATADIR%%/extension/pg_freespacemap--1.0.sql
+%%DATADIR%%/extension/pg_freespacemap--unpackaged--1.0.sql
+%%DATADIR%%/extension/pg_freespacemap.control
+%%DATADIR%%/extension/pg_stat_statements--1.0--1.1.sql
+%%DATADIR%%/extension/pg_stat_statements--1.1.sql
+%%DATADIR%%/extension/pg_stat_statements--unpackaged--1.0.sql
+%%DATADIR%%/extension/pg_stat_statements.control
+%%DATADIR%%/extension/pg_trgm--1.0.sql
+%%DATADIR%%/extension/pg_trgm--unpackaged--1.0.sql
+%%DATADIR%%/extension/pg_trgm.control
+%%DATADIR%%/extension/pgcrypto--1.0.sql
+%%DATADIR%%/extension/pgcrypto--unpackaged--1.0.sql
+%%DATADIR%%/extension/pgcrypto.control
+%%DATADIR%%/extension/pgrowlocks--1.0.sql
+%%DATADIR%%/extension/pgrowlocks--unpackaged--1.0.sql
+%%DATADIR%%/extension/pgrowlocks.control
+%%DATADIR%%/extension/pgstattuple--1.0.sql
+%%DATADIR%%/extension/pgstattuple--unpackaged--1.0.sql
+%%DATADIR%%/extension/pgstattuple.control
+%%DATADIR%%/extension/refint--1.0.sql
+%%DATADIR%%/extension/refint--unpackaged--1.0.sql
+%%DATADIR%%/extension/refint.control
+%%DATADIR%%/extension/seg--1.0.sql
+%%DATADIR%%/extension/seg--unpackaged--1.0.sql
+%%DATADIR%%/extension/seg.control
+%%DATADIR%%/extension/sslinfo--1.0.sql
+%%DATADIR%%/extension/sslinfo--unpackaged--1.0.sql
+%%DATADIR%%/extension/sslinfo.control
+%%DATADIR%%/extension/tablefunc--1.0.sql
+%%DATADIR%%/extension/tablefunc--unpackaged--1.0.sql
+%%DATADIR%%/extension/tablefunc.control
+%%DATADIR%%/extension/tcn--1.0.sql
+%%DATADIR%%/extension/tcn.control
+%%DATADIR%%/extension/test_parser--1.0.sql
+%%DATADIR%%/extension/test_parser--unpackaged--1.0.sql
+%%DATADIR%%/extension/test_parser.control
+%%DATADIR%%/extension/timetravel--1.0.sql
+%%DATADIR%%/extension/timetravel--unpackaged--1.0.sql
+%%DATADIR%%/extension/timetravel.control
+%%DATADIR%%/extension/tsearch2--1.0.sql
+%%DATADIR%%/extension/tsearch2--unpackaged--1.0.sql
+%%DATADIR%%/extension/tsearch2.control
+%%DATADIR%%/extension/unaccent--1.0.sql
+%%DATADIR%%/extension/unaccent--unpackaged--1.0.sql
+%%DATADIR%%/extension/unaccent.control
+%%DATADIR%%/extension/uuid-ossp--1.0.sql
+%%DATADIR%%/extension/uuid-ossp--unpackaged--1.0.sql
+%%DATADIR%%/extension/uuid-ossp.control
+%%DATADIR%%/extension/xml2--1.0.sql
+%%DATADIR%%/extension/xml2--unpackaged--1.0.sql
+%%DATADIR%%/extension/xml2.control
+%%DATADIR%%/tsearch_data/unaccent.rules
+%%DATADIR%%/tsearch_data/xsyn_sample.rules
Modified: trunk/databases/postgresql92-server/pkg-plist-plperl
===================================================================
--- trunk/databases/postgresql92-server/pkg-plist-plperl 2015-11-04 22:46:36 UTC (rev 20646)
+++ trunk/databases/postgresql92-server/pkg-plist-plperl 2015-11-05 00:22:18 UTC (rev 20647)
@@ -6,7 +6,3 @@
%%DATADIR%%/extension/plperl--unpackaged--1.0.sql
%%DOCSDIR%%/README-plperl
lib/postgresql/plperl.so
- at dirrmtry lib/postgresql
- at dirrmtry %%DOCSDIR%%
- at dirrmtry %%DATADIR%%/extension
- at dirrmtry %%DATADIR%%
Modified: trunk/databases/postgresql92-server/pkg-plist-plpython
===================================================================
--- trunk/databases/postgresql92-server/pkg-plist-plpython 2015-11-04 22:46:36 UTC (rev 20646)
+++ trunk/databases/postgresql92-server/pkg-plist-plpython 2015-11-05 00:22:18 UTC (rev 20647)
@@ -10,6 +10,3 @@
%%PYTHON3%%%%DATADIR%%/extension/plpython3u.control
%%PYTHON3%%%%DATADIR%%/extension/plpython3u--1.0.sql
%%PYTHON3%%%%DATADIR%%/extension/plpython3u--unpackaged--1.0.sql
- at dirrmtry %%DATADIR%%/extension
- at dirrmtry lib/postgresql
- at dirrmtry %%DOCSDIR%%
Modified: trunk/databases/postgresql92-server/pkg-plist-pltcl
===================================================================
--- trunk/databases/postgresql92-server/pkg-plist-pltcl 2015-11-04 22:46:36 UTC (rev 20646)
+++ trunk/databases/postgresql92-server/pkg-plist-pltcl 2015-11-05 00:22:18 UTC (rev 20647)
@@ -6,11 +6,7 @@
%%DATADIR%%/extension/pltclu--unpackaged--1.0.sql
%%DOCSDIR%%/README-pltcl
lib/postgresql/pltcl.so
- at dirrmtry lib/postgresql
bin/pltcl_loadmod
bin/pltcl_delmod
bin/pltcl_listmod
-share/postgresql/unknown.pltcl
- at dirrmtry %%DATADIR%%/extension
- at dirrmtry %%DATADIR%%
- at dirrmtry %%DOCSDIR%%
+%%DATADIR%%/unknown.pltcl
Modified: trunk/databases/postgresql92-server/pkg-plist-server
===================================================================
--- trunk/databases/postgresql92-server/pkg-plist-server 2015-11-04 22:46:36 UTC (rev 20646)
+++ trunk/databases/postgresql92-server/pkg-plist-server 2015-11-05 00:22:18 UTC (rev 20647)
@@ -38,749 +38,721 @@
lib/postgresql/utf8_and_uhc.so
lib/postgresql/utf8_and_win.so
%%DOCSDIR%%/README-server
- at dirrmtry %%DOCSDIR%%
-share/postgresql/conversion_create.sql
-share/postgresql/information_schema.sql
-share/postgresql/pg_hba.conf.sample
-share/postgresql/pg_ident.conf.sample
-share/postgresql/postgres.bki
-share/postgresql/postgres.description
-share/postgresql/postgresql.conf.sample
-share/postgresql/recovery.conf.sample
-share/postgresql/sql_features.txt
-share/postgresql/system_views.sql
-share/postgresql/extension/plpgsql--1.0.sql
-share/postgresql/extension/plpgsql--unpackaged--1.0.sql
-share/postgresql/extension/plpgsql.control
- at dirrmtry share/postgresql/extension
-%%GETTEXT%%share/locale/cs/LC_MESSAGES/initdb-9.2.mo
-%%GETTEXT%%share/locale/cs/LC_MESSAGES/pg_basebackup-9.2.mo
-%%GETTEXT%%share/locale/cs/LC_MESSAGES/pg_controldata-9.2.mo
-%%GETTEXT%%share/locale/cs/LC_MESSAGES/pg_ctl-9.2.mo
-%%GETTEXT%%share/locale/cs/LC_MESSAGES/pg_resetxlog-9.2.mo
-%%GETTEXT%%share/locale/cs/LC_MESSAGES/plpgsql-9.2.mo
-%%GETTEXT%%share/locale/de/LC_MESSAGES/initdb-9.2.mo
-%%GETTEXT%%share/locale/de/LC_MESSAGES/pg_basebackup-9.2.mo
-%%GETTEXT%%share/locale/de/LC_MESSAGES/pg_controldata-9.2.mo
-%%GETTEXT%%share/locale/de/LC_MESSAGES/pg_ctl-9.2.mo
-%%GETTEXT%%share/locale/de/LC_MESSAGES/pg_resetxlog-9.2.mo
-%%GETTEXT%%share/locale/de/LC_MESSAGES/plpgsql-9.2.mo
-%%GETTEXT%%share/locale/de/LC_MESSAGES/postgres-9.2.mo
-%%GETTEXT%%share/locale/es/LC_MESSAGES/initdb-9.2.mo
-%%GETTEXT%%share/locale/es/LC_MESSAGES/pg_basebackup-9.2.mo
-%%GETTEXT%%share/locale/es/LC_MESSAGES/pg_controldata-9.2.mo
-%%GETTEXT%%share/locale/es/LC_MESSAGES/pg_ctl-9.2.mo
-%%GETTEXT%%share/locale/es/LC_MESSAGES/pg_resetxlog-9.2.mo
-%%GETTEXT%%share/locale/es/LC_MESSAGES/plpgsql-9.2.mo
-%%GETTEXT%%share/locale/es/LC_MESSAGES/postgres-9.2.mo
-%%GETTEXT%%share/locale/fr/LC_MESSAGES/initdb-9.2.mo
-%%GETTEXT%%share/locale/fr/LC_MESSAGES/pg_basebackup-9.2.mo
-%%GETTEXT%%share/locale/fr/LC_MESSAGES/pg_controldata-9.2.mo
-%%GETTEXT%%share/locale/fr/LC_MESSAGES/pg_ctl-9.2.mo
-%%GETTEXT%%share/locale/fr/LC_MESSAGES/pg_resetxlog-9.2.mo
-%%GETTEXT%%share/locale/fr/LC_MESSAGES/plpgsql-9.2.mo
-%%GETTEXT%%share/locale/fr/LC_MESSAGES/postgres-9.2.mo
-%%GETTEXT%%share/locale/it/LC_MESSAGES/initdb-9.2.mo
-%%GETTEXT%%share/locale/it/LC_MESSAGES/pg_basebackup-9.2.mo
-%%GETTEXT%%share/locale/it/LC_MESSAGES/pg_controldata-9.2.mo
-%%GETTEXT%%share/locale/it/LC_MESSAGES/pg_ctl-9.2.mo
-%%GETTEXT%%share/locale/it/LC_MESSAGES/pg_resetxlog-9.2.mo
-%%GETTEXT%%share/locale/it/LC_MESSAGES/plpgsql-9.2.mo
-%%GETTEXT%%share/locale/it/LC_MESSAGES/postgres-9.2.mo
-%%GETTEXT%%share/locale/ja/LC_MESSAGES/initdb-9.2.mo
-%%GETTEXT%%share/locale/ja/LC_MESSAGES/pg_basebackup-9.2.mo
-%%GETTEXT%%share/locale/ja/LC_MESSAGES/pg_controldata-9.2.mo
-%%GETTEXT%%share/locale/ja/LC_MESSAGES/pg_ctl-9.2.mo
-%%GETTEXT%%share/locale/ja/LC_MESSAGES/pg_resetxlog-9.2.mo
-%%GETTEXT%%share/locale/ja/LC_MESSAGES/plpgsql-9.2.mo
-%%GETTEXT%%share/locale/ja/LC_MESSAGES/postgres-9.2.mo
-%%GETTEXT%%share/locale/ko/LC_MESSAGES/initdb-9.2.mo
-%%GETTEXT%%share/locale/ko/LC_MESSAGES/pg_resetxlog-9.2.mo
-%%GETTEXT%%share/locale/pl/LC_MESSAGES/initdb-9.2.mo
-%%GETTEXT%%share/locale/pl/LC_MESSAGES/pg_basebackup-9.2.mo
-%%GETTEXT%%share/locale/pl/LC_MESSAGES/pg_controldata-9.2.mo
-%%GETTEXT%%share/locale/pl/LC_MESSAGES/pg_ctl-9.2.mo
-%%GETTEXT%%share/locale/pl/LC_MESSAGES/pg_resetxlog-9.2.mo
-%%GETTEXT%%share/locale/pl/LC_MESSAGES/plpgsql-9.2.mo
-%%GETTEXT%%share/locale/pl/LC_MESSAGES/postgres-9.2.mo
-%%GETTEXT%%share/locale/pt_BR/LC_MESSAGES/initdb-9.2.mo
-%%GETTEXT%%share/locale/pt_BR/LC_MESSAGES/pg_basebackup-9.2.mo
-%%GETTEXT%%share/locale/pt_BR/LC_MESSAGES/pg_controldata-9.2.mo
-%%GETTEXT%%share/locale/pt_BR/LC_MESSAGES/pg_ctl-9.2.mo
-%%GETTEXT%%share/locale/pt_BR/LC_MESSAGES/pg_resetxlog-9.2.mo
-%%GETTEXT%%share/locale/pt_BR/LC_MESSAGES/plpgsql-9.2.mo
-%%GETTEXT%%share/locale/pt_BR/LC_MESSAGES/postgres-9.2.mo
-%%GETTEXT%%share/locale/ro/LC_MESSAGES/initdb-9.2.mo
-%%GETTEXT%%share/locale/ro/LC_MESSAGES/pg_controldata-9.2.mo
-%%GETTEXT%%share/locale/ro/LC_MESSAGES/pg_resetxlog-9.2.mo
-%%GETTEXT%%share/locale/ro/LC_MESSAGES/plpgsql-9.2.mo
-%%GETTEXT%%share/locale/ru/LC_MESSAGES/initdb-9.2.mo
-%%GETTEXT%%share/locale/ru/LC_MESSAGES/pg_basebackup-9.2.mo
-%%GETTEXT%%share/locale/ru/LC_MESSAGES/pg_controldata-9.2.mo
-%%GETTEXT%%share/locale/ru/LC_MESSAGES/pg_ctl-9.2.mo
-%%GETTEXT%%share/locale/ru/LC_MESSAGES/pg_resetxlog-9.2.mo
-%%GETTEXT%%share/locale/ru/LC_MESSAGES/plpgsql-9.2.mo
-%%GETTEXT%%share/locale/ru/LC_MESSAGES/postgres-9.2.mo
-%%GETTEXT%%share/locale/sv/LC_MESSAGES/initdb-9.2.mo
-%%GETTEXT%%share/locale/sv/LC_MESSAGES/pg_ctl-9.2.mo
-%%GETTEXT%%share/locale/tr/LC_MESSAGES/initdb-9.2.mo
-%%GETTEXT%%share/locale/tr/LC_MESSAGES/pg_controldata-9.2.mo
-%%GETTEXT%%share/locale/tr/LC_MESSAGES/pg_resetxlog-9.2.mo
-%%GETTEXT%%share/locale/zh_CN/LC_MESSAGES/initdb-9.2.mo
-%%GETTEXT%%share/locale/zh_CN/LC_MESSAGES/pg_basebackup-9.2.mo
-%%GETTEXT%%share/locale/zh_CN/LC_MESSAGES/pg_controldata-9.2.mo
-%%GETTEXT%%share/locale/zh_CN/LC_MESSAGES/pg_ctl-9.2.mo
-%%GETTEXT%%share/locale/zh_CN/LC_MESSAGES/pg_resetxlog-9.2.mo
-%%GETTEXT%%share/locale/zh_CN/LC_MESSAGES/plpgsql-9.2.mo
-%%GETTEXT%%share/locale/zh_CN/LC_MESSAGES/postgres-9.2.mo
-%%GETTEXT%%share/locale/zh_TW/LC_MESSAGES/initdb-9.2.mo
-%%GETTEXT%%share/locale/zh_TW/LC_MESSAGES/pg_controldata-9.2.mo
-%%GETTEXT%%share/locale/zh_TW/LC_MESSAGES/pg_ctl-9.2.mo
-%%GETTEXT%%share/locale/zh_TW/LC_MESSAGES/pg_resetxlog-9.2.mo
-%%GETTEXT%%share/locale/zh_TW/LC_MESSAGES/plpgsql-9.2.mo
-%%GETTEXT%%share/locale/zh_TW/LC_MESSAGES/postgres-9.2.mo
-share/postgresql/postgres.shdescription
-share/postgresql/snowball_create.sql
-%%TZDATA%%share/postgresql/timezone/Africa/Abidjan
-%%TZDATA%%share/postgresql/timezone/Africa/Accra
-%%TZDATA%%share/postgresql/timezone/Africa/Addis_Ababa
-%%TZDATA%%share/postgresql/timezone/Africa/Algiers
-%%TZDATA%%share/postgresql/timezone/Africa/Asmara
-%%TZDATA%%share/postgresql/timezone/Africa/Asmera
-%%TZDATA%%share/postgresql/timezone/Africa/Bamako
-%%TZDATA%%share/postgresql/timezone/Africa/Bangui
-%%TZDATA%%share/postgresql/timezone/Africa/Banjul
-%%TZDATA%%share/postgresql/timezone/Africa/Bissau
-%%TZDATA%%share/postgresql/timezone/Africa/Blantyre
-%%TZDATA%%share/postgresql/timezone/Africa/Brazzaville
-%%TZDATA%%share/postgresql/timezone/Africa/Bujumbura
-%%TZDATA%%share/postgresql/timezone/Africa/Cairo
-%%TZDATA%%share/postgresql/timezone/Africa/Casablanca
-%%TZDATA%%share/postgresql/timezone/Africa/Ceuta
-%%TZDATA%%share/postgresql/timezone/Africa/Conakry
-%%TZDATA%%share/postgresql/timezone/Africa/Dakar
-%%TZDATA%%share/postgresql/timezone/Africa/Dar_es_Salaam
-%%TZDATA%%share/postgresql/timezone/Africa/Djibouti
-%%TZDATA%%share/postgresql/timezone/Africa/Douala
-%%TZDATA%%share/postgresql/timezone/Africa/El_Aaiun
-%%TZDATA%%share/postgresql/timezone/Africa/Freetown
-%%TZDATA%%share/postgresql/timezone/Africa/Gaborone
-%%TZDATA%%share/postgresql/timezone/Africa/Harare
-%%TZDATA%%share/postgresql/timezone/Africa/Johannesburg
-%%TZDATA%%share/postgresql/timezone/Africa/Juba
-%%TZDATA%%share/postgresql/timezone/Africa/Kampala
-%%TZDATA%%share/postgresql/timezone/Africa/Khartoum
-%%TZDATA%%share/postgresql/timezone/Africa/Kigali
-%%TZDATA%%share/postgresql/timezone/Africa/Kinshasa
-%%TZDATA%%share/postgresql/timezone/Africa/Lagos
-%%TZDATA%%share/postgresql/timezone/Africa/Libreville
-%%TZDATA%%share/postgresql/timezone/Africa/Lome
-%%TZDATA%%share/postgresql/timezone/Africa/Luanda
-%%TZDATA%%share/postgresql/timezone/Africa/Lubumbashi
-%%TZDATA%%share/postgresql/timezone/Africa/Lusaka
-%%TZDATA%%share/postgresql/timezone/Africa/Malabo
-%%TZDATA%%share/postgresql/timezone/Africa/Maputo
-%%TZDATA%%share/postgresql/timezone/Africa/Maseru
-%%TZDATA%%share/postgresql/timezone/Africa/Mbabane
-%%TZDATA%%share/postgresql/timezone/Africa/Mogadishu
-%%TZDATA%%share/postgresql/timezone/Africa/Monrovia
-%%TZDATA%%share/postgresql/timezone/Africa/Nairobi
-%%TZDATA%%share/postgresql/timezone/Africa/Ndjamena
-%%TZDATA%%share/postgresql/timezone/Africa/Niamey
-%%TZDATA%%share/postgresql/timezone/Africa/Nouakchott
-%%TZDATA%%share/postgresql/timezone/Africa/Ouagadougou
-%%TZDATA%%share/postgresql/timezone/Africa/Porto-Novo
-%%TZDATA%%share/postgresql/timezone/Africa/Sao_Tome
-%%TZDATA%%share/postgresql/timezone/Africa/Timbuktu
-%%TZDATA%%share/postgresql/timezone/Africa/Tripoli
-%%TZDATA%%share/postgresql/timezone/Africa/Tunis
-%%TZDATA%%share/postgresql/timezone/Africa/Windhoek
-%%TZDATA%%share/postgresql/timezone/America/Adak
-%%TZDATA%%share/postgresql/timezone/America/Anchorage
-%%TZDATA%%share/postgresql/timezone/America/Anguilla
-%%TZDATA%%share/postgresql/timezone/America/Antigua
-%%TZDATA%%share/postgresql/timezone/America/Araguaina
-%%TZDATA%%share/postgresql/timezone/America/Argentina/Buenos_Aires
-%%TZDATA%%share/postgresql/timezone/America/Argentina/Catamarca
-%%TZDATA%%share/postgresql/timezone/America/Argentina/ComodRivadavia
-%%TZDATA%%share/postgresql/timezone/America/Argentina/Cordoba
-%%TZDATA%%share/postgresql/timezone/America/Argentina/Jujuy
-%%TZDATA%%share/postgresql/timezone/America/Argentina/La_Rioja
-%%TZDATA%%share/postgresql/timezone/America/Argentina/Mendoza
-%%TZDATA%%share/postgresql/timezone/America/Argentina/Rio_Gallegos
-%%TZDATA%%share/postgresql/timezone/America/Argentina/Salta
-%%TZDATA%%share/postgresql/timezone/America/Argentina/San_Juan
-%%TZDATA%%share/postgresql/timezone/America/Argentina/San_Luis
-%%TZDATA%%share/postgresql/timezone/America/Argentina/Tucuman
-%%TZDATA%%share/postgresql/timezone/America/Argentina/Ushuaia
-%%TZDATA%%share/postgresql/timezone/America/Aruba
-%%TZDATA%%share/postgresql/timezone/America/Asuncion
-%%TZDATA%%share/postgresql/timezone/America/Atikokan
-%%TZDATA%%share/postgresql/timezone/America/Atka
-%%TZDATA%%share/postgresql/timezone/America/Bahia
-%%TZDATA%%share/postgresql/timezone/America/Bahia_Banderas
-%%TZDATA%%share/postgresql/timezone/America/Barbados
-%%TZDATA%%share/postgresql/timezone/America/Belem
-%%TZDATA%%share/postgresql/timezone/America/Belize
-%%TZDATA%%share/postgresql/timezone/America/Blanc-Sablon
-%%TZDATA%%share/postgresql/timezone/America/Boa_Vista
-%%TZDATA%%share/postgresql/timezone/America/Bogota
-%%TZDATA%%share/postgresql/timezone/America/Boise
-%%TZDATA%%share/postgresql/timezone/America/Buenos_Aires
-%%TZDATA%%share/postgresql/timezone/America/Cambridge_Bay
-%%TZDATA%%share/postgresql/timezone/America/Campo_Grande
-%%TZDATA%%share/postgresql/timezone/America/Cancun
-%%TZDATA%%share/postgresql/timezone/America/Caracas
-%%TZDATA%%share/postgresql/timezone/America/Catamarca
-%%TZDATA%%share/postgresql/timezone/America/Cayenne
-%%TZDATA%%share/postgresql/timezone/America/Cayman
-%%TZDATA%%share/postgresql/timezone/America/Chicago
-%%TZDATA%%share/postgresql/timezone/America/Chihuahua
-%%TZDATA%%share/postgresql/timezone/America/Coral_Harbour
-%%TZDATA%%share/postgresql/timezone/America/Cordoba
-%%TZDATA%%share/postgresql/timezone/America/Costa_Rica
-%%TZDATA%%share/postgresql/timezone/America/Creston
-%%TZDATA%%share/postgresql/timezone/America/Cuiaba
-%%TZDATA%%share/postgresql/timezone/America/Curacao
-%%TZDATA%%share/postgresql/timezone/America/Danmarkshavn
-%%TZDATA%%share/postgresql/timezone/America/Dawson
-%%TZDATA%%share/postgresql/timezone/America/Dawson_Creek
-%%TZDATA%%share/postgresql/timezone/America/Denver
-%%TZDATA%%share/postgresql/timezone/America/Detroit
-%%TZDATA%%share/postgresql/timezone/America/Dominica
-%%TZDATA%%share/postgresql/timezone/America/Edmonton
-%%TZDATA%%share/postgresql/timezone/America/Eirunepe
-%%TZDATA%%share/postgresql/timezone/America/El_Salvador
-%%TZDATA%%share/postgresql/timezone/America/Ensenada
-%%TZDATA%%share/postgresql/timezone/America/Fort_Wayne
-%%TZDATA%%share/postgresql/timezone/America/Fortaleza
-%%TZDATA%%share/postgresql/timezone/America/Glace_Bay
-%%TZDATA%%share/postgresql/timezone/America/Godthab
-%%TZDATA%%share/postgresql/timezone/America/Goose_Bay
-%%TZDATA%%share/postgresql/timezone/America/Grand_Turk
-%%TZDATA%%share/postgresql/timezone/America/Grenada
-%%TZDATA%%share/postgresql/timezone/America/Guadeloupe
-%%TZDATA%%share/postgresql/timezone/America/Guatemala
-%%TZDATA%%share/postgresql/timezone/America/Guayaquil
-%%TZDATA%%share/postgresql/timezone/America/Guyana
-%%TZDATA%%share/postgresql/timezone/America/Halifax
-%%TZDATA%%share/postgresql/timezone/America/Havana
-%%TZDATA%%share/postgresql/timezone/America/Hermosillo
-%%TZDATA%%share/postgresql/timezone/America/Indiana/Indianapolis
-%%TZDATA%%share/postgresql/timezone/America/Indiana/Knox
-%%TZDATA%%share/postgresql/timezone/America/Indiana/Marengo
-%%TZDATA%%share/postgresql/timezone/America/Indiana/Petersburg
-%%TZDATA%%share/postgresql/timezone/America/Indiana/Tell_City
-%%TZDATA%%share/postgresql/timezone/America/Indiana/Vevay
-%%TZDATA%%share/postgresql/timezone/America/Indiana/Vincennes
-%%TZDATA%%share/postgresql/timezone/America/Indiana/Winamac
-%%TZDATA%%share/postgresql/timezone/America/Indianapolis
-%%TZDATA%%share/postgresql/timezone/America/Inuvik
-%%TZDATA%%share/postgresql/timezone/America/Iqaluit
-%%TZDATA%%share/postgresql/timezone/America/Jamaica
-%%TZDATA%%share/postgresql/timezone/America/Jujuy
-%%TZDATA%%share/postgresql/timezone/America/Juneau
-%%TZDATA%%share/postgresql/timezone/America/Kentucky/Louisville
-%%TZDATA%%share/postgresql/timezone/America/Kentucky/Monticello
-%%TZDATA%%share/postgresql/timezone/America/Knox_IN
-%%TZDATA%%share/postgresql/timezone/America/Kralendijk
-%%TZDATA%%share/postgresql/timezone/America/La_Paz
-%%TZDATA%%share/postgresql/timezone/America/Lima
-%%TZDATA%%share/postgresql/timezone/America/Los_Angeles
-%%TZDATA%%share/postgresql/timezone/America/Louisville
-%%TZDATA%%share/postgresql/timezone/America/Lower_Princes
-%%TZDATA%%share/postgresql/timezone/America/Maceio
-%%TZDATA%%share/postgresql/timezone/America/Managua
-%%TZDATA%%share/postgresql/timezone/America/Manaus
-%%TZDATA%%share/postgresql/timezone/America/Marigot
-%%TZDATA%%share/postgresql/timezone/America/Martinique
-%%TZDATA%%share/postgresql/timezone/America/Matamoros
-%%TZDATA%%share/postgresql/timezone/America/Mazatlan
-%%TZDATA%%share/postgresql/timezone/America/Mendoza
-%%TZDATA%%share/postgresql/timezone/America/Menominee
-%%TZDATA%%share/postgresql/timezone/America/Merida
-%%TZDATA%%share/postgresql/timezone/America/Metlakatla
-%%TZDATA%%share/postgresql/timezone/America/Mexico_City
-%%TZDATA%%share/postgresql/timezone/America/Miquelon
-%%TZDATA%%share/postgresql/timezone/America/Moncton
-%%TZDATA%%share/postgresql/timezone/America/Monterrey
-%%TZDATA%%share/postgresql/timezone/America/Montevideo
-%%TZDATA%%share/postgresql/timezone/America/Montreal
-%%TZDATA%%share/postgresql/timezone/America/Montserrat
-%%TZDATA%%share/postgresql/timezone/America/Nassau
-%%TZDATA%%share/postgresql/timezone/America/New_York
-%%TZDATA%%share/postgresql/timezone/America/Nipigon
-%%TZDATA%%share/postgresql/timezone/America/Nome
-%%TZDATA%%share/postgresql/timezone/America/Noronha
-%%TZDATA%%share/postgresql/timezone/America/North_Dakota/Beulah
-%%TZDATA%%share/postgresql/timezone/America/North_Dakota/Center
-%%TZDATA%%share/postgresql/timezone/America/North_Dakota/New_Salem
-%%TZDATA%%share/postgresql/timezone/America/Ojinaga
-%%TZDATA%%share/postgresql/timezone/America/Panama
-%%TZDATA%%share/postgresql/timezone/America/Pangnirtung
-%%TZDATA%%share/postgresql/timezone/America/Paramaribo
-%%TZDATA%%share/postgresql/timezone/America/Phoenix
-%%TZDATA%%share/postgresql/timezone/America/Port-au-Prince
-%%TZDATA%%share/postgresql/timezone/America/Port_of_Spain
-%%TZDATA%%share/postgresql/timezone/America/Porto_Acre
-%%TZDATA%%share/postgresql/timezone/America/Porto_Velho
-%%TZDATA%%share/postgresql/timezone/America/Puerto_Rico
-%%TZDATA%%share/postgresql/timezone/America/Rainy_River
-%%TZDATA%%share/postgresql/timezone/America/Rankin_Inlet
-%%TZDATA%%share/postgresql/timezone/America/Recife
-%%TZDATA%%share/postgresql/timezone/America/Regina
-%%TZDATA%%share/postgresql/timezone/America/Resolute
-%%TZDATA%%share/postgresql/timezone/America/Rio_Branco
-%%TZDATA%%share/postgresql/timezone/America/Rosario
-%%TZDATA%%share/postgresql/timezone/America/Santa_Isabel
-%%TZDATA%%share/postgresql/timezone/America/Santarem
-%%TZDATA%%share/postgresql/timezone/America/Santiago
-%%TZDATA%%share/postgresql/timezone/America/Santo_Domingo
-%%TZDATA%%share/postgresql/timezone/America/Sao_Paulo
-%%TZDATA%%share/postgresql/timezone/America/Scoresbysund
-%%TZDATA%%share/postgresql/timezone/America/Shiprock
-%%TZDATA%%share/postgresql/timezone/America/Sitka
-%%TZDATA%%share/postgresql/timezone/America/St_Barthelemy
-%%TZDATA%%share/postgresql/timezone/America/St_Johns
-%%TZDATA%%share/postgresql/timezone/America/St_Kitts
-%%TZDATA%%share/postgresql/timezone/America/St_Lucia
-%%TZDATA%%share/postgresql/timezone/America/St_Thomas
-%%TZDATA%%share/postgresql/timezone/America/St_Vincent
-%%TZDATA%%share/postgresql/timezone/America/Swift_Current
-%%TZDATA%%share/postgresql/timezone/America/Tegucigalpa
-%%TZDATA%%share/postgresql/timezone/America/Thule
-%%TZDATA%%share/postgresql/timezone/America/Thunder_Bay
-%%TZDATA%%share/postgresql/timezone/America/Tijuana
-%%TZDATA%%share/postgresql/timezone/America/Toronto
-%%TZDATA%%share/postgresql/timezone/America/Tortola
-%%TZDATA%%share/postgresql/timezone/America/Vancouver
-%%TZDATA%%share/postgresql/timezone/America/Virgin
-%%TZDATA%%share/postgresql/timezone/America/Whitehorse
-%%TZDATA%%share/postgresql/timezone/America/Winnipeg
-%%TZDATA%%share/postgresql/timezone/America/Yakutat
-%%TZDATA%%share/postgresql/timezone/America/Yellowknife
-%%TZDATA%%share/postgresql/timezone/Antarctica/Casey
-%%TZDATA%%share/postgresql/timezone/Antarctica/Davis
-%%TZDATA%%share/postgresql/timezone/Antarctica/DumontDUrville
-%%TZDATA%%share/postgresql/timezone/Antarctica/Macquarie
-%%TZDATA%%share/postgresql/timezone/Antarctica/Mawson
-%%TZDATA%%share/postgresql/timezone/Antarctica/McMurdo
-%%TZDATA%%share/postgresql/timezone/Antarctica/Palmer
-%%TZDATA%%share/postgresql/timezone/Antarctica/Rothera
-%%TZDATA%%share/postgresql/timezone/Antarctica/South_Pole
-%%TZDATA%%share/postgresql/timezone/Antarctica/Syowa
-%%TZDATA%%share/postgresql/timezone/Antarctica/Troll
-%%TZDATA%%share/postgresql/timezone/Antarctica/Vostok
-%%TZDATA%%share/postgresql/timezone/Arctic/Longyearbyen
-%%TZDATA%%share/postgresql/timezone/Asia/Aden
-%%TZDATA%%share/postgresql/timezone/Asia/Almaty
-%%TZDATA%%share/postgresql/timezone/Asia/Amman
-%%TZDATA%%share/postgresql/timezone/Asia/Anadyr
-%%TZDATA%%share/postgresql/timezone/Asia/Aqtau
-%%TZDATA%%share/postgresql/timezone/Asia/Aqtobe
-%%TZDATA%%share/postgresql/timezone/Asia/Ashgabat
-%%TZDATA%%share/postgresql/timezone/Asia/Ashkhabad
-%%TZDATA%%share/postgresql/timezone/Asia/Baghdad
-%%TZDATA%%share/postgresql/timezone/Asia/Bahrain
-%%TZDATA%%share/postgresql/timezone/Asia/Baku
-%%TZDATA%%share/postgresql/timezone/Asia/Bangkok
-%%TZDATA%%share/postgresql/timezone/Asia/Beirut
-%%TZDATA%%share/postgresql/timezone/Asia/Bishkek
-%%TZDATA%%share/postgresql/timezone/Asia/Brunei
-%%TZDATA%%share/postgresql/timezone/Asia/Calcutta
-%%TZDATA%%share/postgresql/timezone/Asia/Choibalsan
-%%TZDATA%%share/postgresql/timezone/Asia/Chongqing
-%%TZDATA%%share/postgresql/timezone/Asia/Chungking
-%%TZDATA%%share/postgresql/timezone/Asia/Colombo
-%%TZDATA%%share/postgresql/timezone/Asia/Dacca
-%%TZDATA%%share/postgresql/timezone/Asia/Damascus
-%%TZDATA%%share/postgresql/timezone/Asia/Dhaka
-%%TZDATA%%share/postgresql/timezone/Asia/Dili
-%%TZDATA%%share/postgresql/timezone/Asia/Dubai
-%%TZDATA%%share/postgresql/timezone/Asia/Dushanbe
-%%TZDATA%%share/postgresql/timezone/Asia/Gaza
-%%TZDATA%%share/postgresql/timezone/Asia/Harbin
-%%TZDATA%%share/postgresql/timezone/Asia/Hebron
-%%TZDATA%%share/postgresql/timezone/Asia/Ho_Chi_Minh
-%%TZDATA%%share/postgresql/timezone/Asia/Hong_Kong
-%%TZDATA%%share/postgresql/timezone/Asia/Hovd
-%%TZDATA%%share/postgresql/timezone/Asia/Irkutsk
-%%TZDATA%%share/postgresql/timezone/Asia/Istanbul
-%%TZDATA%%share/postgresql/timezone/Asia/Jakarta
-%%TZDATA%%share/postgresql/timezone/Asia/Jayapura
-%%TZDATA%%share/postgresql/timezone/Asia/Jerusalem
-%%TZDATA%%share/postgresql/timezone/Asia/Kabul
-%%TZDATA%%share/postgresql/timezone/Asia/Kamchatka
-%%TZDATA%%share/postgresql/timezone/Asia/Karachi
-%%TZDATA%%share/postgresql/timezone/Asia/Kashgar
-%%TZDATA%%share/postgresql/timezone/Asia/Kathmandu
-%%TZDATA%%share/postgresql/timezone/Asia/Katmandu
-%%TZDATA%%share/postgresql/timezone/Asia/Khandyga
-%%TZDATA%%share/postgresql/timezone/Asia/Kolkata
-%%TZDATA%%share/postgresql/timezone/Asia/Krasnoyarsk
-%%TZDATA%%share/postgresql/timezone/Asia/Kuala_Lumpur
-%%TZDATA%%share/postgresql/timezone/Asia/Kuching
-%%TZDATA%%share/postgresql/timezone/Asia/Kuwait
-%%TZDATA%%share/postgresql/timezone/Asia/Macao
-%%TZDATA%%share/postgresql/timezone/Asia/Macau
-%%TZDATA%%share/postgresql/timezone/Asia/Magadan
-%%TZDATA%%share/postgresql/timezone/Asia/Makassar
-%%TZDATA%%share/postgresql/timezone/Asia/Manila
-%%TZDATA%%share/postgresql/timezone/Asia/Muscat
-%%TZDATA%%share/postgresql/timezone/Asia/Nicosia
-%%TZDATA%%share/postgresql/timezone/Asia/Novokuznetsk
-%%TZDATA%%share/postgresql/timezone/Asia/Novosibirsk
-%%TZDATA%%share/postgresql/timezone/Asia/Omsk
-%%TZDATA%%share/postgresql/timezone/Asia/Oral
-%%TZDATA%%share/postgresql/timezone/Asia/Phnom_Penh
-%%TZDATA%%share/postgresql/timezone/Asia/Pontianak
-%%TZDATA%%share/postgresql/timezone/Asia/Pyongyang
-%%TZDATA%%share/postgresql/timezone/Asia/Qatar
-%%TZDATA%%share/postgresql/timezone/Asia/Qyzylorda
-%%TZDATA%%share/postgresql/timezone/Asia/Rangoon
-%%TZDATA%%share/postgresql/timezone/Asia/Riyadh
-%%TZDATA%%share/postgresql/timezone/Asia/Saigon
-%%TZDATA%%share/postgresql/timezone/Asia/Sakhalin
-%%TZDATA%%share/postgresql/timezone/Asia/Samarkand
-%%TZDATA%%share/postgresql/timezone/Asia/Seoul
-%%TZDATA%%share/postgresql/timezone/Asia/Shanghai
-%%TZDATA%%share/postgresql/timezone/Asia/Singapore
-%%TZDATA%%share/postgresql/timezone/Asia/Taipei
-%%TZDATA%%share/postgresql/timezone/Asia/Tashkent
-%%TZDATA%%share/postgresql/timezone/Asia/Tbilisi
-%%TZDATA%%share/postgresql/timezone/Asia/Tehran
-%%TZDATA%%share/postgresql/timezone/Asia/Tel_Aviv
-%%TZDATA%%share/postgresql/timezone/Asia/Thimbu
-%%TZDATA%%share/postgresql/timezone/Asia/Thimphu
-%%TZDATA%%share/postgresql/timezone/Asia/Tokyo
-%%TZDATA%%share/postgresql/timezone/Asia/Ujung_Pandang
-%%TZDATA%%share/postgresql/timezone/Asia/Ulaanbaatar
-%%TZDATA%%share/postgresql/timezone/Asia/Ulan_Bator
-%%TZDATA%%share/postgresql/timezone/Asia/Urumqi
-%%TZDATA%%share/postgresql/timezone/Asia/Ust-Nera
-%%TZDATA%%share/postgresql/timezone/Asia/Vientiane
-%%TZDATA%%share/postgresql/timezone/Asia/Vladivostok
-%%TZDATA%%share/postgresql/timezone/Asia/Yakutsk
-%%TZDATA%%share/postgresql/timezone/Asia/Yekaterinburg
-%%TZDATA%%share/postgresql/timezone/Asia/Yerevan
-%%TZDATA%%share/postgresql/timezone/Atlantic/Azores
-%%TZDATA%%share/postgresql/timezone/Atlantic/Bermuda
-%%TZDATA%%share/postgresql/timezone/Atlantic/Canary
-%%TZDATA%%share/postgresql/timezone/Atlantic/Cape_Verde
-%%TZDATA%%share/postgresql/timezone/Atlantic/Faeroe
-%%TZDATA%%share/postgresql/timezone/Atlantic/Faroe
-%%TZDATA%%share/postgresql/timezone/Atlantic/Jan_Mayen
-%%TZDATA%%share/postgresql/timezone/Atlantic/Madeira
-%%TZDATA%%share/postgresql/timezone/Atlantic/Reykjavik
-%%TZDATA%%share/postgresql/timezone/Atlantic/South_Georgia
-%%TZDATA%%share/postgresql/timezone/Atlantic/St_Helena
-%%TZDATA%%share/postgresql/timezone/Atlantic/Stanley
-%%TZDATA%%share/postgresql/timezone/Australia/ACT
-%%TZDATA%%share/postgresql/timezone/Australia/Adelaide
-%%TZDATA%%share/postgresql/timezone/Australia/Brisbane
-%%TZDATA%%share/postgresql/timezone/Australia/Broken_Hill
-%%TZDATA%%share/postgresql/timezone/Australia/Canberra
-%%TZDATA%%share/postgresql/timezone/Australia/Currie
-%%TZDATA%%share/postgresql/timezone/Australia/Darwin
-%%TZDATA%%share/postgresql/timezone/Australia/Eucla
-%%TZDATA%%share/postgresql/timezone/Australia/Hobart
-%%TZDATA%%share/postgresql/timezone/Australia/LHI
-%%TZDATA%%share/postgresql/timezone/Australia/Lindeman
-%%TZDATA%%share/postgresql/timezone/Australia/Lord_Howe
-%%TZDATA%%share/postgresql/timezone/Australia/Melbourne
-%%TZDATA%%share/postgresql/timezone/Australia/NSW
-%%TZDATA%%share/postgresql/timezone/Australia/North
-%%TZDATA%%share/postgresql/timezone/Australia/Perth
-%%TZDATA%%share/postgresql/timezone/Australia/Queensland
-%%TZDATA%%share/postgresql/timezone/Australia/South
-%%TZDATA%%share/postgresql/timezone/Australia/Sydney
-%%TZDATA%%share/postgresql/timezone/Australia/Tasmania
-%%TZDATA%%share/postgresql/timezone/Australia/Victoria
-%%TZDATA%%share/postgresql/timezone/Australia/West
-%%TZDATA%%share/postgresql/timezone/Australia/Yancowinna
-%%TZDATA%%share/postgresql/timezone/Brazil/Acre
-%%TZDATA%%share/postgresql/timezone/Brazil/DeNoronha
-%%TZDATA%%share/postgresql/timezone/Brazil/East
-%%TZDATA%%share/postgresql/timezone/Brazil/West
-%%TZDATA%%share/postgresql/timezone/CET
-%%TZDATA%%share/postgresql/timezone/CST6CDT
-%%TZDATA%%share/postgresql/timezone/Canada/Atlantic
-%%TZDATA%%share/postgresql/timezone/Canada/Central
-%%TZDATA%%share/postgresql/timezone/Canada/East-Saskatchewan
-%%TZDATA%%share/postgresql/timezone/Canada/Eastern
-%%TZDATA%%share/postgresql/timezone/Canada/Mountain
-%%TZDATA%%share/postgresql/timezone/Canada/Newfoundland
-%%TZDATA%%share/postgresql/timezone/Canada/Pacific
-%%TZDATA%%share/postgresql/timezone/Canada/Saskatchewan
-%%TZDATA%%share/postgresql/timezone/Canada/Yukon
-%%TZDATA%%share/postgresql/timezone/Chile/Continental
-%%TZDATA%%share/postgresql/timezone/Chile/EasterIsland
-%%TZDATA%%share/postgresql/timezone/Cuba
-%%TZDATA%%share/postgresql/timezone/EET
-%%TZDATA%%share/postgresql/timezone/EST
-%%TZDATA%%share/postgresql/timezone/EST5EDT
-%%TZDATA%%share/postgresql/timezone/Egypt
-%%TZDATA%%share/postgresql/timezone/Eire
-%%TZDATA%%share/postgresql/timezone/Etc/GMT
-%%TZDATA%%share/postgresql/timezone/Etc/GMT+0
-%%TZDATA%%share/postgresql/timezone/Etc/GMT+1
-%%TZDATA%%share/postgresql/timezone/Etc/GMT+10
-%%TZDATA%%share/postgresql/timezone/Etc/GMT+11
-%%TZDATA%%share/postgresql/timezone/Etc/GMT+12
-%%TZDATA%%share/postgresql/timezone/Etc/GMT+2
-%%TZDATA%%share/postgresql/timezone/Etc/GMT+3
-%%TZDATA%%share/postgresql/timezone/Etc/GMT+4
-%%TZDATA%%share/postgresql/timezone/Etc/GMT+5
-%%TZDATA%%share/postgresql/timezone/Etc/GMT+6
-%%TZDATA%%share/postgresql/timezone/Etc/GMT+7
-%%TZDATA%%share/postgresql/timezone/Etc/GMT+8
-%%TZDATA%%share/postgresql/timezone/Etc/GMT+9
-%%TZDATA%%share/postgresql/timezone/Etc/GMT-0
-%%TZDATA%%share/postgresql/timezone/Etc/GMT-1
-%%TZDATA%%share/postgresql/timezone/Etc/GMT-10
-%%TZDATA%%share/postgresql/timezone/Etc/GMT-11
-%%TZDATA%%share/postgresql/timezone/Etc/GMT-12
-%%TZDATA%%share/postgresql/timezone/Etc/GMT-13
-%%TZDATA%%share/postgresql/timezone/Etc/GMT-14
-%%TZDATA%%share/postgresql/timezone/Etc/GMT-2
-%%TZDATA%%share/postgresql/timezone/Etc/GMT-3
-%%TZDATA%%share/postgresql/timezone/Etc/GMT-4
-%%TZDATA%%share/postgresql/timezone/Etc/GMT-5
-%%TZDATA%%share/postgresql/timezone/Etc/GMT-6
-%%TZDATA%%share/postgresql/timezone/Etc/GMT-7
-%%TZDATA%%share/postgresql/timezone/Etc/GMT-8
-%%TZDATA%%share/postgresql/timezone/Etc/GMT-9
-%%TZDATA%%share/postgresql/timezone/Etc/GMT0
-%%TZDATA%%share/postgresql/timezone/Etc/Greenwich
-%%TZDATA%%share/postgresql/timezone/Etc/UCT
-%%TZDATA%%share/postgresql/timezone/Etc/UTC
-%%TZDATA%%share/postgresql/timezone/Etc/Universal
-%%TZDATA%%share/postgresql/timezone/Etc/Zulu
-%%TZDATA%%share/postgresql/timezone/Europe/Amsterdam
-%%TZDATA%%share/postgresql/timezone/Europe/Andorra
-%%TZDATA%%share/postgresql/timezone/Europe/Athens
-%%TZDATA%%share/postgresql/timezone/Europe/Belfast
-%%TZDATA%%share/postgresql/timezone/Europe/Belgrade
-%%TZDATA%%share/postgresql/timezone/Europe/Berlin
-%%TZDATA%%share/postgresql/timezone/Europe/Bratislava
-%%TZDATA%%share/postgresql/timezone/Europe/Brussels
-%%TZDATA%%share/postgresql/timezone/Europe/Bucharest
-%%TZDATA%%share/postgresql/timezone/Europe/Budapest
-%%TZDATA%%share/postgresql/timezone/Europe/Busingen
-%%TZDATA%%share/postgresql/timezone/Europe/Chisinau
-%%TZDATA%%share/postgresql/timezone/Europe/Copenhagen
-%%TZDATA%%share/postgresql/timezone/Europe/Dublin
-%%TZDATA%%share/postgresql/timezone/Europe/Gibraltar
-%%TZDATA%%share/postgresql/timezone/Europe/Guernsey
-%%TZDATA%%share/postgresql/timezone/Europe/Helsinki
-%%TZDATA%%share/postgresql/timezone/Europe/Isle_of_Man
-%%TZDATA%%share/postgresql/timezone/Europe/Istanbul
-%%TZDATA%%share/postgresql/timezone/Europe/Jersey
-%%TZDATA%%share/postgresql/timezone/Europe/Kaliningrad
-%%TZDATA%%share/postgresql/timezone/Europe/Kiev
-%%TZDATA%%share/postgresql/timezone/Europe/Lisbon
-%%TZDATA%%share/postgresql/timezone/Europe/Ljubljana
-%%TZDATA%%share/postgresql/timezone/Europe/London
-%%TZDATA%%share/postgresql/timezone/Europe/Luxembourg
-%%TZDATA%%share/postgresql/timezone/Europe/Madrid
-%%TZDATA%%share/postgresql/timezone/Europe/Malta
-%%TZDATA%%share/postgresql/timezone/Europe/Mariehamn
-%%TZDATA%%share/postgresql/timezone/Europe/Minsk
-%%TZDATA%%share/postgresql/timezone/Europe/Monaco
-%%TZDATA%%share/postgresql/timezone/Europe/Moscow
-%%TZDATA%%share/postgresql/timezone/Europe/Nicosia
-%%TZDATA%%share/postgresql/timezone/Europe/Oslo
-%%TZDATA%%share/postgresql/timezone/Europe/Paris
-%%TZDATA%%share/postgresql/timezone/Europe/Podgorica
-%%TZDATA%%share/postgresql/timezone/Europe/Prague
-%%TZDATA%%share/postgresql/timezone/Europe/Riga
-%%TZDATA%%share/postgresql/timezone/Europe/Rome
-%%TZDATA%%share/postgresql/timezone/Europe/Samara
-%%TZDATA%%share/postgresql/timezone/Europe/San_Marino
-%%TZDATA%%share/postgresql/timezone/Europe/Sarajevo
-%%TZDATA%%share/postgresql/timezone/Europe/Simferopol
-%%TZDATA%%share/postgresql/timezone/Europe/Skopje
-%%TZDATA%%share/postgresql/timezone/Europe/Sofia
-%%TZDATA%%share/postgresql/timezone/Europe/Stockholm
-%%TZDATA%%share/postgresql/timezone/Europe/Tallinn
-%%TZDATA%%share/postgresql/timezone/Europe/Tirane
-%%TZDATA%%share/postgresql/timezone/Europe/Tiraspol
-%%TZDATA%%share/postgresql/timezone/Europe/Uzhgorod
-%%TZDATA%%share/postgresql/timezone/Europe/Vaduz
-%%TZDATA%%share/postgresql/timezone/Europe/Vatican
-%%TZDATA%%share/postgresql/timezone/Europe/Vienna
-%%TZDATA%%share/postgresql/timezone/Europe/Vilnius
-%%TZDATA%%share/postgresql/timezone/Europe/Volgograd
-%%TZDATA%%share/postgresql/timezone/Europe/Warsaw
-%%TZDATA%%share/postgresql/timezone/Europe/Zagreb
-%%TZDATA%%share/postgresql/timezone/Europe/Zaporozhye
-%%TZDATA%%share/postgresql/timezone/Europe/Zurich
-%%TZDATA%%share/postgresql/timezone/Factory
-%%TZDATA%%share/postgresql/timezone/GB
-%%TZDATA%%share/postgresql/timezone/GB-Eire
-%%TZDATA%%share/postgresql/timezone/GMT
-%%TZDATA%%share/postgresql/timezone/GMT+0
-%%TZDATA%%share/postgresql/timezone/GMT-0
-%%TZDATA%%share/postgresql/timezone/GMT0
-%%TZDATA%%share/postgresql/timezone/Greenwich
-%%TZDATA%%share/postgresql/timezone/HST
-%%TZDATA%%share/postgresql/timezone/Hongkong
-%%TZDATA%%share/postgresql/timezone/Iceland
-%%TZDATA%%share/postgresql/timezone/Indian/Antananarivo
-%%TZDATA%%share/postgresql/timezone/Indian/Chagos
-%%TZDATA%%share/postgresql/timezone/Indian/Christmas
-%%TZDATA%%share/postgresql/timezone/Indian/Cocos
-%%TZDATA%%share/postgresql/timezone/Indian/Comoro
-%%TZDATA%%share/postgresql/timezone/Indian/Kerguelen
-%%TZDATA%%share/postgresql/timezone/Indian/Mahe
-%%TZDATA%%share/postgresql/timezone/Indian/Maldives
-%%TZDATA%%share/postgresql/timezone/Indian/Mauritius
-%%TZDATA%%share/postgresql/timezone/Indian/Mayotte
-%%TZDATA%%share/postgresql/timezone/Indian/Reunion
-%%TZDATA%%share/postgresql/timezone/Iran
-%%TZDATA%%share/postgresql/timezone/Israel
-%%TZDATA%%share/postgresql/timezone/Jamaica
-%%TZDATA%%share/postgresql/timezone/Japan
-%%TZDATA%%share/postgresql/timezone/Kwajalein
-%%TZDATA%%share/postgresql/timezone/Libya
-%%TZDATA%%share/postgresql/timezone/MET
-%%TZDATA%%share/postgresql/timezone/MST
-%%TZDATA%%share/postgresql/timezone/MST7MDT
-%%TZDATA%%share/postgresql/timezone/Mexico/BajaNorte
-%%TZDATA%%share/postgresql/timezone/Mexico/BajaSur
-%%TZDATA%%share/postgresql/timezone/Mexico/General
-%%TZDATA%%share/postgresql/timezone/NZ
-%%TZDATA%%share/postgresql/timezone/NZ-CHAT
-%%TZDATA%%share/postgresql/timezone/Navajo
-%%TZDATA%%share/postgresql/timezone/PRC
-%%TZDATA%%share/postgresql/timezone/PST8PDT
-%%TZDATA%%share/postgresql/timezone/Pacific/Apia
-%%TZDATA%%share/postgresql/timezone/Pacific/Auckland
-%%TZDATA%%share/postgresql/timezone/Pacific/Chatham
-%%TZDATA%%share/postgresql/timezone/Pacific/Chuuk
-%%TZDATA%%share/postgresql/timezone/Pacific/Easter
-%%TZDATA%%share/postgresql/timezone/Pacific/Efate
-%%TZDATA%%share/postgresql/timezone/Pacific/Enderbury
-%%TZDATA%%share/postgresql/timezone/Pacific/Fakaofo
-%%TZDATA%%share/postgresql/timezone/Pacific/Fiji
-%%TZDATA%%share/postgresql/timezone/Pacific/Funafuti
-%%TZDATA%%share/postgresql/timezone/Pacific/Galapagos
-%%TZDATA%%share/postgresql/timezone/Pacific/Gambier
-%%TZDATA%%share/postgresql/timezone/Pacific/Guadalcanal
-%%TZDATA%%share/postgresql/timezone/Pacific/Guam
-%%TZDATA%%share/postgresql/timezone/Pacific/Honolulu
-%%TZDATA%%share/postgresql/timezone/Pacific/Johnston
-%%TZDATA%%share/postgresql/timezone/Pacific/Kiritimati
-%%TZDATA%%share/postgresql/timezone/Pacific/Kosrae
-%%TZDATA%%share/postgresql/timezone/Pacific/Kwajalein
-%%TZDATA%%share/postgresql/timezone/Pacific/Majuro
-%%TZDATA%%share/postgresql/timezone/Pacific/Marquesas
-%%TZDATA%%share/postgresql/timezone/Pacific/Midway
-%%TZDATA%%share/postgresql/timezone/Pacific/Nauru
-%%TZDATA%%share/postgresql/timezone/Pacific/Niue
-%%TZDATA%%share/postgresql/timezone/Pacific/Norfolk
-%%TZDATA%%share/postgresql/timezone/Pacific/Noumea
-%%TZDATA%%share/postgresql/timezone/Pacific/Pago_Pago
-%%TZDATA%%share/postgresql/timezone/Pacific/Palau
-%%TZDATA%%share/postgresql/timezone/Pacific/Pitcairn
-%%TZDATA%%share/postgresql/timezone/Pacific/Pohnpei
-%%TZDATA%%share/postgresql/timezone/Pacific/Ponape
-%%TZDATA%%share/postgresql/timezone/Pacific/Port_Moresby
-%%TZDATA%%share/postgresql/timezone/Pacific/Rarotonga
-%%TZDATA%%share/postgresql/timezone/Pacific/Saipan
-%%TZDATA%%share/postgresql/timezone/Pacific/Samoa
-%%TZDATA%%share/postgresql/timezone/Pacific/Tahiti
-%%TZDATA%%share/postgresql/timezone/Pacific/Tarawa
-%%TZDATA%%share/postgresql/timezone/Pacific/Tongatapu
-%%TZDATA%%share/postgresql/timezone/Pacific/Truk
-%%TZDATA%%share/postgresql/timezone/Pacific/Wake
-%%TZDATA%%share/postgresql/timezone/Pacific/Wallis
-%%TZDATA%%share/postgresql/timezone/Pacific/Yap
-%%TZDATA%%share/postgresql/timezone/Poland
-%%TZDATA%%share/postgresql/timezone/Portugal
-%%TZDATA%%share/postgresql/timezone/ROC
-%%TZDATA%%share/postgresql/timezone/ROK
-%%TZDATA%%share/postgresql/timezone/Singapore
-%%TZDATA%%share/postgresql/timezone/Turkey
-%%TZDATA%%share/postgresql/timezone/UCT
-%%TZDATA%%share/postgresql/timezone/US/Alaska
-%%TZDATA%%share/postgresql/timezone/US/Aleutian
-%%TZDATA%%share/postgresql/timezone/US/Arizona
-%%TZDATA%%share/postgresql/timezone/US/Central
-%%TZDATA%%share/postgresql/timezone/US/East-Indiana
-%%TZDATA%%share/postgresql/timezone/US/Eastern
-%%TZDATA%%share/postgresql/timezone/US/Hawaii
-%%TZDATA%%share/postgresql/timezone/US/Indiana-Starke
-%%TZDATA%%share/postgresql/timezone/US/Michigan
-%%TZDATA%%share/postgresql/timezone/US/Mountain
-%%TZDATA%%share/postgresql/timezone/US/Pacific
-%%TZDATA%%share/postgresql/timezone/US/Pacific-New
-%%TZDATA%%share/postgresql/timezone/US/Samoa
-%%TZDATA%%share/postgresql/timezone/UTC
-%%TZDATA%%share/postgresql/timezone/Universal
-%%TZDATA%%share/postgresql/timezone/W-SU
-%%TZDATA%%share/postgresql/timezone/WET
-%%TZDATA%%share/postgresql/timezone/Zulu
-%%TZDATA%%share/postgresql/timezone/posixrules
-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
-%%TZDATA%%@dirrm share/postgresql/timezone/Africa
-%%TZDATA%%@dirrm share/postgresql/timezone/America/Argentina
-%%TZDATA%%@dirrm share/postgresql/timezone/America/Indiana
-%%TZDATA%%@dirrm share/postgresql/timezone/America/Kentucky
-%%TZDATA%%@dirrm share/postgresql/timezone/America/North_Dakota
-%%TZDATA%%@dirrm share/postgresql/timezone/America
-%%TZDATA%%@dirrm share/postgresql/timezone/Antarctica
-%%TZDATA%%@dirrm share/postgresql/timezone/Arctic
-%%TZDATA%%@dirrm share/postgresql/timezone/Asia
-%%TZDATA%%@dirrm share/postgresql/timezone/Atlantic
-%%TZDATA%%@dirrm share/postgresql/timezone/Australia
-%%TZDATA%%@dirrm share/postgresql/timezone/Brazil
-%%TZDATA%%@dirrm share/postgresql/timezone/Canada
-%%TZDATA%%@dirrm share/postgresql/timezone/Chile
-%%TZDATA%%@dirrm share/postgresql/timezone/Etc
-%%TZDATA%%@dirrm share/postgresql/timezone/Europe
-%%TZDATA%%@dirrm share/postgresql/timezone/Indian
-%%TZDATA%%@dirrm share/postgresql/timezone/Mexico
-%%TZDATA%%@dirrm share/postgresql/timezone/Pacific
-%%TZDATA%%@dirrm share/postgresql/timezone/US
-%%TZDATA%%@dirrm share/postgresql/timezone
- at dirrm share/postgresql/timezonesets
-share/postgresql/tsearch_data/danish.stop
-share/postgresql/tsearch_data/dutch.stop
-share/postgresql/tsearch_data/english.stop
-share/postgresql/tsearch_data/finnish.stop
-share/postgresql/tsearch_data/french.stop
-share/postgresql/tsearch_data/german.stop
-share/postgresql/tsearch_data/hungarian.stop
-share/postgresql/tsearch_data/italian.stop
-share/postgresql/tsearch_data/norwegian.stop
-share/postgresql/tsearch_data/portuguese.stop
-share/postgresql/tsearch_data/russian.stop
-share/postgresql/tsearch_data/spanish.stop
-share/postgresql/tsearch_data/swedish.stop
-share/postgresql/tsearch_data/turkish.stop
-share/postgresql/tsearch_data/hunspell_sample.affix
-share/postgresql/tsearch_data/ispell_sample.affix
-share/postgresql/tsearch_data/ispell_sample.dict
-share/postgresql/tsearch_data/synonym_sample.syn
-share/postgresql/tsearch_data/thesaurus_sample.ths
- at exec /bin/mkdir -p %%PREFIX%%/%%PG_USER%% || /usr/bin/true
- at exec /usr/sbin/chown %%PG_USER%%:%%PG_GROUP%% %%PREFIX%%/%%PG_USER%% || /usr/bin/true
- at dirrmtry share/postgresql/tsearch_data
- at dirrmtry share/postgresql
- at dirrmtry etc/periodic/daily
- at dirrmtry etc/periodic
- at dirrmtry lib/postgresql
- at dirrmtry %%PG_USER%%
+%%DATADIR%%/conversion_create.sql
+%%DATADIR%%/information_schema.sql
+%%DATADIR%%/pg_hba.conf.sample
+%%DATADIR%%/pg_ident.conf.sample
+%%DATADIR%%/postgres.bki
+%%DATADIR%%/postgres.description
+%%DATADIR%%/postgresql.conf.sample
+%%DATADIR%%/recovery.conf.sample
+%%DATADIR%%/sql_features.txt
+%%DATADIR%%/system_views.sql
+%%DATADIR%%/extension/plpgsql--1.0.sql
+%%DATADIR%%/extension/plpgsql--unpackaged--1.0.sql
+%%DATADIR%%/extension/plpgsql.control
+%%NLS%%share/locale/cs/LC_MESSAGES/initdb-9.2.mo
+%%NLS%%share/locale/cs/LC_MESSAGES/pg_basebackup-9.2.mo
+%%NLS%%share/locale/cs/LC_MESSAGES/pg_controldata-9.2.mo
+%%NLS%%share/locale/cs/LC_MESSAGES/pg_ctl-9.2.mo
+%%NLS%%share/locale/cs/LC_MESSAGES/pg_resetxlog-9.2.mo
+%%NLS%%share/locale/cs/LC_MESSAGES/plpgsql-9.2.mo
+%%NLS%%share/locale/de/LC_MESSAGES/initdb-9.2.mo
+%%NLS%%share/locale/de/LC_MESSAGES/pg_basebackup-9.2.mo
+%%NLS%%share/locale/de/LC_MESSAGES/pg_controldata-9.2.mo
+%%NLS%%share/locale/de/LC_MESSAGES/pg_ctl-9.2.mo
+%%NLS%%share/locale/de/LC_MESSAGES/pg_resetxlog-9.2.mo
+%%NLS%%share/locale/de/LC_MESSAGES/plpgsql-9.2.mo
+%%NLS%%share/locale/de/LC_MESSAGES/postgres-9.2.mo
+%%NLS%%share/locale/es/LC_MESSAGES/initdb-9.2.mo
+%%NLS%%share/locale/es/LC_MESSAGES/pg_basebackup-9.2.mo
+%%NLS%%share/locale/es/LC_MESSAGES/pg_controldata-9.2.mo
+%%NLS%%share/locale/es/LC_MESSAGES/pg_ctl-9.2.mo
+%%NLS%%share/locale/es/LC_MESSAGES/pg_resetxlog-9.2.mo
+%%NLS%%share/locale/es/LC_MESSAGES/plpgsql-9.2.mo
+%%NLS%%share/locale/es/LC_MESSAGES/postgres-9.2.mo
+%%NLS%%share/locale/fr/LC_MESSAGES/initdb-9.2.mo
+%%NLS%%share/locale/fr/LC_MESSAGES/pg_basebackup-9.2.mo
+%%NLS%%share/locale/fr/LC_MESSAGES/pg_controldata-9.2.mo
+%%NLS%%share/locale/fr/LC_MESSAGES/pg_ctl-9.2.mo
+%%NLS%%share/locale/fr/LC_MESSAGES/pg_resetxlog-9.2.mo
+%%NLS%%share/locale/fr/LC_MESSAGES/plpgsql-9.2.mo
+%%NLS%%share/locale/fr/LC_MESSAGES/postgres-9.2.mo
+%%NLS%%share/locale/it/LC_MESSAGES/initdb-9.2.mo
+%%NLS%%share/locale/it/LC_MESSAGES/pg_basebackup-9.2.mo
+%%NLS%%share/locale/it/LC_MESSAGES/pg_controldata-9.2.mo
+%%NLS%%share/locale/it/LC_MESSAGES/pg_ctl-9.2.mo
+%%NLS%%share/locale/it/LC_MESSAGES/pg_resetxlog-9.2.mo
+%%NLS%%share/locale/it/LC_MESSAGES/plpgsql-9.2.mo
+%%NLS%%share/locale/it/LC_MESSAGES/postgres-9.2.mo
+%%NLS%%share/locale/ja/LC_MESSAGES/initdb-9.2.mo
+%%NLS%%share/locale/ja/LC_MESSAGES/pg_basebackup-9.2.mo
+%%NLS%%share/locale/ja/LC_MESSAGES/pg_controldata-9.2.mo
+%%NLS%%share/locale/ja/LC_MESSAGES/pg_ctl-9.2.mo
+%%NLS%%share/locale/ja/LC_MESSAGES/pg_resetxlog-9.2.mo
+%%NLS%%share/locale/ja/LC_MESSAGES/plpgsql-9.2.mo
+%%NLS%%share/locale/ja/LC_MESSAGES/postgres-9.2.mo
+%%NLS%%share/locale/ko/LC_MESSAGES/initdb-9.2.mo
+%%NLS%%share/locale/ko/LC_MESSAGES/pg_resetxlog-9.2.mo
+%%NLS%%share/locale/pl/LC_MESSAGES/initdb-9.2.mo
+%%NLS%%share/locale/pl/LC_MESSAGES/pg_basebackup-9.2.mo
+%%NLS%%share/locale/pl/LC_MESSAGES/pg_controldata-9.2.mo
+%%NLS%%share/locale/pl/LC_MESSAGES/pg_ctl-9.2.mo
+%%NLS%%share/locale/pl/LC_MESSAGES/pg_resetxlog-9.2.mo
+%%NLS%%share/locale/pl/LC_MESSAGES/plpgsql-9.2.mo
+%%NLS%%share/locale/pl/LC_MESSAGES/postgres-9.2.mo
+%%NLS%%share/locale/pt_BR/LC_MESSAGES/initdb-9.2.mo
+%%NLS%%share/locale/pt_BR/LC_MESSAGES/pg_basebackup-9.2.mo
+%%NLS%%share/locale/pt_BR/LC_MESSAGES/pg_controldata-9.2.mo
+%%NLS%%share/locale/pt_BR/LC_MESSAGES/pg_ctl-9.2.mo
+%%NLS%%share/locale/pt_BR/LC_MESSAGES/pg_resetxlog-9.2.mo
+%%NLS%%share/locale/pt_BR/LC_MESSAGES/plpgsql-9.2.mo
+%%NLS%%share/locale/pt_BR/LC_MESSAGES/postgres-9.2.mo
+%%NLS%%share/locale/ro/LC_MESSAGES/initdb-9.2.mo
+%%NLS%%share/locale/ro/LC_MESSAGES/pg_controldata-9.2.mo
+%%NLS%%share/locale/ro/LC_MESSAGES/pg_resetxlog-9.2.mo
+%%NLS%%share/locale/ro/LC_MESSAGES/plpgsql-9.2.mo
+%%NLS%%share/locale/ru/LC_MESSAGES/initdb-9.2.mo
+%%NLS%%share/locale/ru/LC_MESSAGES/pg_basebackup-9.2.mo
+%%NLS%%share/locale/ru/LC_MESSAGES/pg_controldata-9.2.mo
+%%NLS%%share/locale/ru/LC_MESSAGES/pg_ctl-9.2.mo
+%%NLS%%share/locale/ru/LC_MESSAGES/pg_resetxlog-9.2.mo
+%%NLS%%share/locale/ru/LC_MESSAGES/plpgsql-9.2.mo
+%%NLS%%share/locale/ru/LC_MESSAGES/postgres-9.2.mo
+%%NLS%%share/locale/sv/LC_MESSAGES/initdb-9.2.mo
+%%NLS%%share/locale/sv/LC_MESSAGES/pg_ctl-9.2.mo
+%%NLS%%share/locale/tr/LC_MESSAGES/initdb-9.2.mo
+%%NLS%%share/locale/tr/LC_MESSAGES/pg_controldata-9.2.mo
+%%NLS%%share/locale/tr/LC_MESSAGES/pg_resetxlog-9.2.mo
+%%NLS%%share/locale/zh_CN/LC_MESSAGES/initdb-9.2.mo
+%%NLS%%share/locale/zh_CN/LC_MESSAGES/pg_basebackup-9.2.mo
+%%NLS%%share/locale/zh_CN/LC_MESSAGES/pg_controldata-9.2.mo
+%%NLS%%share/locale/zh_CN/LC_MESSAGES/pg_ctl-9.2.mo
+%%NLS%%share/locale/zh_CN/LC_MESSAGES/pg_resetxlog-9.2.mo
+%%NLS%%share/locale/zh_CN/LC_MESSAGES/plpgsql-9.2.mo
+%%NLS%%share/locale/zh_CN/LC_MESSAGES/postgres-9.2.mo
+%%NLS%%share/locale/zh_TW/LC_MESSAGES/initdb-9.2.mo
+%%NLS%%share/locale/zh_TW/LC_MESSAGES/pg_controldata-9.2.mo
+%%NLS%%share/locale/zh_TW/LC_MESSAGES/pg_ctl-9.2.mo
+%%NLS%%share/locale/zh_TW/LC_MESSAGES/pg_resetxlog-9.2.mo
+%%NLS%%share/locale/zh_TW/LC_MESSAGES/plpgsql-9.2.mo
+%%NLS%%share/locale/zh_TW/LC_MESSAGES/postgres-9.2.mo
+%%DATADIR%%/postgres.shdescription
+%%DATADIR%%/snowball_create.sql
+%%TZDATA%%%%DATADIR%%/timezone/Africa/Abidjan
+%%TZDATA%%%%DATADIR%%/timezone/Africa/Accra
+%%TZDATA%%%%DATADIR%%/timezone/Africa/Addis_Ababa
+%%TZDATA%%%%DATADIR%%/timezone/Africa/Algiers
+%%TZDATA%%%%DATADIR%%/timezone/Africa/Asmara
+%%TZDATA%%%%DATADIR%%/timezone/Africa/Asmera
+%%TZDATA%%%%DATADIR%%/timezone/Africa/Bamako
+%%TZDATA%%%%DATADIR%%/timezone/Africa/Bangui
+%%TZDATA%%%%DATADIR%%/timezone/Africa/Banjul
+%%TZDATA%%%%DATADIR%%/timezone/Africa/Bissau
+%%TZDATA%%%%DATADIR%%/timezone/Africa/Blantyre
+%%TZDATA%%%%DATADIR%%/timezone/Africa/Brazzaville
+%%TZDATA%%%%DATADIR%%/timezone/Africa/Bujumbura
+%%TZDATA%%%%DATADIR%%/timezone/Africa/Cairo
+%%TZDATA%%%%DATADIR%%/timezone/Africa/Casablanca
+%%TZDATA%%%%DATADIR%%/timezone/Africa/Ceuta
+%%TZDATA%%%%DATADIR%%/timezone/Africa/Conakry
+%%TZDATA%%%%DATADIR%%/timezone/Africa/Dakar
+%%TZDATA%%%%DATADIR%%/timezone/Africa/Dar_es_Salaam
+%%TZDATA%%%%DATADIR%%/timezone/Africa/Djibouti
+%%TZDATA%%%%DATADIR%%/timezone/Africa/Douala
+%%TZDATA%%%%DATADIR%%/timezone/Africa/El_Aaiun
+%%TZDATA%%%%DATADIR%%/timezone/Africa/Freetown
+%%TZDATA%%%%DATADIR%%/timezone/Africa/Gaborone
+%%TZDATA%%%%DATADIR%%/timezone/Africa/Harare
+%%TZDATA%%%%DATADIR%%/timezone/Africa/Johannesburg
+%%TZDATA%%%%DATADIR%%/timezone/Africa/Juba
+%%TZDATA%%%%DATADIR%%/timezone/Africa/Kampala
+%%TZDATA%%%%DATADIR%%/timezone/Africa/Khartoum
+%%TZDATA%%%%DATADIR%%/timezone/Africa/Kigali
+%%TZDATA%%%%DATADIR%%/timezone/Africa/Kinshasa
+%%TZDATA%%%%DATADIR%%/timezone/Africa/Lagos
+%%TZDATA%%%%DATADIR%%/timezone/Africa/Libreville
+%%TZDATA%%%%DATADIR%%/timezone/Africa/Lome
+%%TZDATA%%%%DATADIR%%/timezone/Africa/Luanda
+%%TZDATA%%%%DATADIR%%/timezone/Africa/Lubumbashi
+%%TZDATA%%%%DATADIR%%/timezone/Africa/Lusaka
+%%TZDATA%%%%DATADIR%%/timezone/Africa/Malabo
+%%TZDATA%%%%DATADIR%%/timezone/Africa/Maputo
+%%TZDATA%%%%DATADIR%%/timezone/Africa/Maseru
+%%TZDATA%%%%DATADIR%%/timezone/Africa/Mbabane
+%%TZDATA%%%%DATADIR%%/timezone/Africa/Mogadishu
+%%TZDATA%%%%DATADIR%%/timezone/Africa/Monrovia
+%%TZDATA%%%%DATADIR%%/timezone/Africa/Nairobi
+%%TZDATA%%%%DATADIR%%/timezone/Africa/Ndjamena
+%%TZDATA%%%%DATADIR%%/timezone/Africa/Niamey
+%%TZDATA%%%%DATADIR%%/timezone/Africa/Nouakchott
+%%TZDATA%%%%DATADIR%%/timezone/Africa/Ouagadougou
+%%TZDATA%%%%DATADIR%%/timezone/Africa/Porto-Novo
+%%TZDATA%%%%DATADIR%%/timezone/Africa/Sao_Tome
+%%TZDATA%%%%DATADIR%%/timezone/Africa/Timbuktu
+%%TZDATA%%%%DATADIR%%/timezone/Africa/Tripoli
+%%TZDATA%%%%DATADIR%%/timezone/Africa/Tunis
+%%TZDATA%%%%DATADIR%%/timezone/Africa/Windhoek
+%%TZDATA%%%%DATADIR%%/timezone/America/Adak
+%%TZDATA%%%%DATADIR%%/timezone/America/Anchorage
+%%TZDATA%%%%DATADIR%%/timezone/America/Anguilla
+%%TZDATA%%%%DATADIR%%/timezone/America/Antigua
+%%TZDATA%%%%DATADIR%%/timezone/America/Araguaina
+%%TZDATA%%%%DATADIR%%/timezone/America/Argentina/Buenos_Aires
+%%TZDATA%%%%DATADIR%%/timezone/America/Argentina/Catamarca
+%%TZDATA%%%%DATADIR%%/timezone/America/Argentina/ComodRivadavia
+%%TZDATA%%%%DATADIR%%/timezone/America/Argentina/Cordoba
+%%TZDATA%%%%DATADIR%%/timezone/America/Argentina/Jujuy
+%%TZDATA%%%%DATADIR%%/timezone/America/Argentina/La_Rioja
+%%TZDATA%%%%DATADIR%%/timezone/America/Argentina/Mendoza
+%%TZDATA%%%%DATADIR%%/timezone/America/Argentina/Rio_Gallegos
+%%TZDATA%%%%DATADIR%%/timezone/America/Argentina/Salta
+%%TZDATA%%%%DATADIR%%/timezone/America/Argentina/San_Juan
+%%TZDATA%%%%DATADIR%%/timezone/America/Argentina/San_Luis
+%%TZDATA%%%%DATADIR%%/timezone/America/Argentina/Tucuman
+%%TZDATA%%%%DATADIR%%/timezone/America/Argentina/Ushuaia
+%%TZDATA%%%%DATADIR%%/timezone/America/Aruba
+%%TZDATA%%%%DATADIR%%/timezone/America/Asuncion
+%%TZDATA%%%%DATADIR%%/timezone/America/Atikokan
+%%TZDATA%%%%DATADIR%%/timezone/America/Atka
+%%TZDATA%%%%DATADIR%%/timezone/America/Bahia
+%%TZDATA%%%%DATADIR%%/timezone/America/Bahia_Banderas
+%%TZDATA%%%%DATADIR%%/timezone/America/Barbados
+%%TZDATA%%%%DATADIR%%/timezone/America/Belem
+%%TZDATA%%%%DATADIR%%/timezone/America/Belize
+%%TZDATA%%%%DATADIR%%/timezone/America/Blanc-Sablon
+%%TZDATA%%%%DATADIR%%/timezone/America/Boa_Vista
+%%TZDATA%%%%DATADIR%%/timezone/America/Bogota
+%%TZDATA%%%%DATADIR%%/timezone/America/Boise
+%%TZDATA%%%%DATADIR%%/timezone/America/Buenos_Aires
+%%TZDATA%%%%DATADIR%%/timezone/America/Cambridge_Bay
+%%TZDATA%%%%DATADIR%%/timezone/America/Campo_Grande
+%%TZDATA%%%%DATADIR%%/timezone/America/Cancun
+%%TZDATA%%%%DATADIR%%/timezone/America/Caracas
+%%TZDATA%%%%DATADIR%%/timezone/America/Catamarca
+%%TZDATA%%%%DATADIR%%/timezone/America/Cayenne
+%%TZDATA%%%%DATADIR%%/timezone/America/Cayman
+%%TZDATA%%%%DATADIR%%/timezone/America/Chicago
+%%TZDATA%%%%DATADIR%%/timezone/America/Chihuahua
+%%TZDATA%%%%DATADIR%%/timezone/America/Coral_Harbour
+%%TZDATA%%%%DATADIR%%/timezone/America/Cordoba
+%%TZDATA%%%%DATADIR%%/timezone/America/Costa_Rica
+%%TZDATA%%%%DATADIR%%/timezone/America/Creston
+%%TZDATA%%%%DATADIR%%/timezone/America/Cuiaba
+%%TZDATA%%%%DATADIR%%/timezone/America/Curacao
+%%TZDATA%%%%DATADIR%%/timezone/America/Danmarkshavn
+%%TZDATA%%%%DATADIR%%/timezone/America/Dawson
+%%TZDATA%%%%DATADIR%%/timezone/America/Dawson_Creek
+%%TZDATA%%%%DATADIR%%/timezone/America/Denver
+%%TZDATA%%%%DATADIR%%/timezone/America/Detroit
+%%TZDATA%%%%DATADIR%%/timezone/America/Dominica
+%%TZDATA%%%%DATADIR%%/timezone/America/Edmonton
+%%TZDATA%%%%DATADIR%%/timezone/America/Eirunepe
+%%TZDATA%%%%DATADIR%%/timezone/America/El_Salvador
+%%TZDATA%%%%DATADIR%%/timezone/America/Ensenada
+%%TZDATA%%%%DATADIR%%/timezone/America/Fort_Wayne
+%%TZDATA%%%%DATADIR%%/timezone/America/Fortaleza
+%%TZDATA%%%%DATADIR%%/timezone/America/Glace_Bay
+%%TZDATA%%%%DATADIR%%/timezone/America/Godthab
+%%TZDATA%%%%DATADIR%%/timezone/America/Goose_Bay
+%%TZDATA%%%%DATADIR%%/timezone/America/Grand_Turk
+%%TZDATA%%%%DATADIR%%/timezone/America/Grenada
+%%TZDATA%%%%DATADIR%%/timezone/America/Guadeloupe
+%%TZDATA%%%%DATADIR%%/timezone/America/Guatemala
+%%TZDATA%%%%DATADIR%%/timezone/America/Guayaquil
+%%TZDATA%%%%DATADIR%%/timezone/America/Guyana
+%%TZDATA%%%%DATADIR%%/timezone/America/Halifax
+%%TZDATA%%%%DATADIR%%/timezone/America/Havana
+%%TZDATA%%%%DATADIR%%/timezone/America/Hermosillo
+%%TZDATA%%%%DATADIR%%/timezone/America/Indiana/Indianapolis
+%%TZDATA%%%%DATADIR%%/timezone/America/Indiana/Knox
+%%TZDATA%%%%DATADIR%%/timezone/America/Indiana/Marengo
+%%TZDATA%%%%DATADIR%%/timezone/America/Indiana/Petersburg
+%%TZDATA%%%%DATADIR%%/timezone/America/Indiana/Tell_City
+%%TZDATA%%%%DATADIR%%/timezone/America/Indiana/Vevay
+%%TZDATA%%%%DATADIR%%/timezone/America/Indiana/Vincennes
+%%TZDATA%%%%DATADIR%%/timezone/America/Indiana/Winamac
+%%TZDATA%%%%DATADIR%%/timezone/America/Indianapolis
+%%TZDATA%%%%DATADIR%%/timezone/America/Inuvik
+%%TZDATA%%%%DATADIR%%/timezone/America/Iqaluit
+%%TZDATA%%%%DATADIR%%/timezone/America/Jamaica
+%%TZDATA%%%%DATADIR%%/timezone/America/Jujuy
+%%TZDATA%%%%DATADIR%%/timezone/America/Juneau
+%%TZDATA%%%%DATADIR%%/timezone/America/Kentucky/Louisville
+%%TZDATA%%%%DATADIR%%/timezone/America/Kentucky/Monticello
+%%TZDATA%%%%DATADIR%%/timezone/America/Knox_IN
+%%TZDATA%%%%DATADIR%%/timezone/America/Kralendijk
+%%TZDATA%%%%DATADIR%%/timezone/America/La_Paz
+%%TZDATA%%%%DATADIR%%/timezone/America/Lima
+%%TZDATA%%%%DATADIR%%/timezone/America/Los_Angeles
+%%TZDATA%%%%DATADIR%%/timezone/America/Louisville
+%%TZDATA%%%%DATADIR%%/timezone/America/Lower_Princes
+%%TZDATA%%%%DATADIR%%/timezone/America/Maceio
+%%TZDATA%%%%DATADIR%%/timezone/America/Managua
+%%TZDATA%%%%DATADIR%%/timezone/America/Manaus
+%%TZDATA%%%%DATADIR%%/timezone/America/Marigot
+%%TZDATA%%%%DATADIR%%/timezone/America/Martinique
+%%TZDATA%%%%DATADIR%%/timezone/America/Matamoros
+%%TZDATA%%%%DATADIR%%/timezone/America/Mazatlan
+%%TZDATA%%%%DATADIR%%/timezone/America/Mendoza
+%%TZDATA%%%%DATADIR%%/timezone/America/Menominee
+%%TZDATA%%%%DATADIR%%/timezone/America/Merida
+%%TZDATA%%%%DATADIR%%/timezone/America/Metlakatla
+%%TZDATA%%%%DATADIR%%/timezone/America/Mexico_City
+%%TZDATA%%%%DATADIR%%/timezone/America/Miquelon
+%%TZDATA%%%%DATADIR%%/timezone/America/Moncton
+%%TZDATA%%%%DATADIR%%/timezone/America/Monterrey
+%%TZDATA%%%%DATADIR%%/timezone/America/Montevideo
+%%TZDATA%%%%DATADIR%%/timezone/America/Montreal
+%%TZDATA%%%%DATADIR%%/timezone/America/Montserrat
+%%TZDATA%%%%DATADIR%%/timezone/America/Nassau
+%%TZDATA%%%%DATADIR%%/timezone/America/New_York
+%%TZDATA%%%%DATADIR%%/timezone/America/Nipigon
+%%TZDATA%%%%DATADIR%%/timezone/America/Nome
+%%TZDATA%%%%DATADIR%%/timezone/America/Noronha
+%%TZDATA%%%%DATADIR%%/timezone/America/North_Dakota/Beulah
+%%TZDATA%%%%DATADIR%%/timezone/America/North_Dakota/Center
+%%TZDATA%%%%DATADIR%%/timezone/America/North_Dakota/New_Salem
+%%TZDATA%%%%DATADIR%%/timezone/America/Ojinaga
+%%TZDATA%%%%DATADIR%%/timezone/America/Panama
+%%TZDATA%%%%DATADIR%%/timezone/America/Pangnirtung
+%%TZDATA%%%%DATADIR%%/timezone/America/Paramaribo
+%%TZDATA%%%%DATADIR%%/timezone/America/Phoenix
+%%TZDATA%%%%DATADIR%%/timezone/America/Port-au-Prince
+%%TZDATA%%%%DATADIR%%/timezone/America/Port_of_Spain
+%%TZDATA%%%%DATADIR%%/timezone/America/Porto_Acre
+%%TZDATA%%%%DATADIR%%/timezone/America/Porto_Velho
+%%TZDATA%%%%DATADIR%%/timezone/America/Puerto_Rico
+%%TZDATA%%%%DATADIR%%/timezone/America/Rainy_River
+%%TZDATA%%%%DATADIR%%/timezone/America/Rankin_Inlet
+%%TZDATA%%%%DATADIR%%/timezone/America/Recife
+%%TZDATA%%%%DATADIR%%/timezone/America/Regina
+%%TZDATA%%%%DATADIR%%/timezone/America/Resolute
+%%TZDATA%%%%DATADIR%%/timezone/America/Rio_Branco
+%%TZDATA%%%%DATADIR%%/timezone/America/Rosario
+%%TZDATA%%%%DATADIR%%/timezone/America/Santa_Isabel
+%%TZDATA%%%%DATADIR%%/timezone/America/Santarem
+%%TZDATA%%%%DATADIR%%/timezone/America/Santiago
+%%TZDATA%%%%DATADIR%%/timezone/America/Santo_Domingo
+%%TZDATA%%%%DATADIR%%/timezone/America/Sao_Paulo
+%%TZDATA%%%%DATADIR%%/timezone/America/Scoresbysund
+%%TZDATA%%%%DATADIR%%/timezone/America/Shiprock
+%%TZDATA%%%%DATADIR%%/timezone/America/Sitka
+%%TZDATA%%%%DATADIR%%/timezone/America/St_Barthelemy
+%%TZDATA%%%%DATADIR%%/timezone/America/St_Johns
+%%TZDATA%%%%DATADIR%%/timezone/America/St_Kitts
+%%TZDATA%%%%DATADIR%%/timezone/America/St_Lucia
+%%TZDATA%%%%DATADIR%%/timezone/America/St_Thomas
+%%TZDATA%%%%DATADIR%%/timezone/America/St_Vincent
+%%TZDATA%%%%DATADIR%%/timezone/America/Swift_Current
+%%TZDATA%%%%DATADIR%%/timezone/America/Tegucigalpa
+%%TZDATA%%%%DATADIR%%/timezone/America/Thule
+%%TZDATA%%%%DATADIR%%/timezone/America/Thunder_Bay
+%%TZDATA%%%%DATADIR%%/timezone/America/Tijuana
+%%TZDATA%%%%DATADIR%%/timezone/America/Toronto
+%%TZDATA%%%%DATADIR%%/timezone/America/Tortola
+%%TZDATA%%%%DATADIR%%/timezone/America/Vancouver
+%%TZDATA%%%%DATADIR%%/timezone/America/Virgin
+%%TZDATA%%%%DATADIR%%/timezone/America/Whitehorse
+%%TZDATA%%%%DATADIR%%/timezone/America/Winnipeg
+%%TZDATA%%%%DATADIR%%/timezone/America/Yakutat
+%%TZDATA%%%%DATADIR%%/timezone/America/Yellowknife
+%%TZDATA%%%%DATADIR%%/timezone/Antarctica/Casey
+%%TZDATA%%%%DATADIR%%/timezone/Antarctica/Davis
+%%TZDATA%%%%DATADIR%%/timezone/Antarctica/DumontDUrville
+%%TZDATA%%%%DATADIR%%/timezone/Antarctica/Macquarie
+%%TZDATA%%%%DATADIR%%/timezone/Antarctica/Mawson
+%%TZDATA%%%%DATADIR%%/timezone/Antarctica/McMurdo
+%%TZDATA%%%%DATADIR%%/timezone/Antarctica/Palmer
+%%TZDATA%%%%DATADIR%%/timezone/Antarctica/Rothera
+%%TZDATA%%%%DATADIR%%/timezone/Antarctica/South_Pole
+%%TZDATA%%%%DATADIR%%/timezone/Antarctica/Syowa
+%%TZDATA%%%%DATADIR%%/timezone/Antarctica/Troll
+%%TZDATA%%%%DATADIR%%/timezone/Antarctica/Vostok
+%%TZDATA%%%%DATADIR%%/timezone/Arctic/Longyearbyen
+%%TZDATA%%%%DATADIR%%/timezone/Asia/Aden
+%%TZDATA%%%%DATADIR%%/timezone/Asia/Almaty
+%%TZDATA%%%%DATADIR%%/timezone/Asia/Amman
+%%TZDATA%%%%DATADIR%%/timezone/Asia/Anadyr
+%%TZDATA%%%%DATADIR%%/timezone/Asia/Aqtau
+%%TZDATA%%%%DATADIR%%/timezone/Asia/Aqtobe
+%%TZDATA%%%%DATADIR%%/timezone/Asia/Ashgabat
+%%TZDATA%%%%DATADIR%%/timezone/Asia/Ashkhabad
+%%TZDATA%%%%DATADIR%%/timezone/Asia/Baghdad
+%%TZDATA%%%%DATADIR%%/timezone/Asia/Bahrain
+%%TZDATA%%%%DATADIR%%/timezone/Asia/Baku
+%%TZDATA%%%%DATADIR%%/timezone/Asia/Bangkok
+%%TZDATA%%%%DATADIR%%/timezone/Asia/Beirut
+%%TZDATA%%%%DATADIR%%/timezone/Asia/Bishkek
+%%TZDATA%%%%DATADIR%%/timezone/Asia/Brunei
+%%TZDATA%%%%DATADIR%%/timezone/Asia/Calcutta
+%%TZDATA%%%%DATADIR%%/timezone/Asia/Chita
+%%TZDATA%%%%DATADIR%%/timezone/Asia/Choibalsan
+%%TZDATA%%%%DATADIR%%/timezone/Asia/Chongqing
+%%TZDATA%%%%DATADIR%%/timezone/Asia/Chungking
+%%TZDATA%%%%DATADIR%%/timezone/Asia/Colombo
+%%TZDATA%%%%DATADIR%%/timezone/Asia/Dacca
+%%TZDATA%%%%DATADIR%%/timezone/Asia/Damascus
+%%TZDATA%%%%DATADIR%%/timezone/Asia/Dhaka
+%%TZDATA%%%%DATADIR%%/timezone/Asia/Dili
+%%TZDATA%%%%DATADIR%%/timezone/Asia/Dubai
+%%TZDATA%%%%DATADIR%%/timezone/Asia/Dushanbe
+%%TZDATA%%%%DATADIR%%/timezone/Asia/Gaza
+%%TZDATA%%%%DATADIR%%/timezone/Asia/Harbin
+%%TZDATA%%%%DATADIR%%/timezone/Asia/Hebron
+%%TZDATA%%%%DATADIR%%/timezone/Asia/Ho_Chi_Minh
+%%TZDATA%%%%DATADIR%%/timezone/Asia/Hong_Kong
+%%TZDATA%%%%DATADIR%%/timezone/Asia/Hovd
+%%TZDATA%%%%DATADIR%%/timezone/Asia/Irkutsk
+%%TZDATA%%%%DATADIR%%/timezone/Asia/Istanbul
+%%TZDATA%%%%DATADIR%%/timezone/Asia/Jakarta
+%%TZDATA%%%%DATADIR%%/timezone/Asia/Jayapura
+%%TZDATA%%%%DATADIR%%/timezone/Asia/Jerusalem
+%%TZDATA%%%%DATADIR%%/timezone/Asia/Kabul
+%%TZDATA%%%%DATADIR%%/timezone/Asia/Kamchatka
+%%TZDATA%%%%DATADIR%%/timezone/Asia/Karachi
+%%TZDATA%%%%DATADIR%%/timezone/Asia/Kashgar
+%%TZDATA%%%%DATADIR%%/timezone/Asia/Kathmandu
+%%TZDATA%%%%DATADIR%%/timezone/Asia/Katmandu
+%%TZDATA%%%%DATADIR%%/timezone/Asia/Khandyga
+%%TZDATA%%%%DATADIR%%/timezone/Asia/Kolkata
+%%TZDATA%%%%DATADIR%%/timezone/Asia/Krasnoyarsk
+%%TZDATA%%%%DATADIR%%/timezone/Asia/Kuala_Lumpur
+%%TZDATA%%%%DATADIR%%/timezone/Asia/Kuching
+%%TZDATA%%%%DATADIR%%/timezone/Asia/Kuwait
+%%TZDATA%%%%DATADIR%%/timezone/Asia/Macao
+%%TZDATA%%%%DATADIR%%/timezone/Asia/Macau
+%%TZDATA%%%%DATADIR%%/timezone/Asia/Magadan
+%%TZDATA%%%%DATADIR%%/timezone/Asia/Makassar
+%%TZDATA%%%%DATADIR%%/timezone/Asia/Manila
+%%TZDATA%%%%DATADIR%%/timezone/Asia/Muscat
+%%TZDATA%%%%DATADIR%%/timezone/Asia/Nicosia
+%%TZDATA%%%%DATADIR%%/timezone/Asia/Novokuznetsk
+%%TZDATA%%%%DATADIR%%/timezone/Asia/Novosibirsk
+%%TZDATA%%%%DATADIR%%/timezone/Asia/Omsk
+%%TZDATA%%%%DATADIR%%/timezone/Asia/Oral
+%%TZDATA%%%%DATADIR%%/timezone/Asia/Phnom_Penh
+%%TZDATA%%%%DATADIR%%/timezone/Asia/Pontianak
+%%TZDATA%%%%DATADIR%%/timezone/Asia/Pyongyang
+%%TZDATA%%%%DATADIR%%/timezone/Asia/Qatar
+%%TZDATA%%%%DATADIR%%/timezone/Asia/Qyzylorda
+%%TZDATA%%%%DATADIR%%/timezone/Asia/Rangoon
+%%TZDATA%%%%DATADIR%%/timezone/Asia/Riyadh
+%%TZDATA%%%%DATADIR%%/timezone/Asia/Saigon
+%%TZDATA%%%%DATADIR%%/timezone/Asia/Sakhalin
+%%TZDATA%%%%DATADIR%%/timezone/Asia/Samarkand
+%%TZDATA%%%%DATADIR%%/timezone/Asia/Seoul
+%%TZDATA%%%%DATADIR%%/timezone/Asia/Shanghai
+%%TZDATA%%%%DATADIR%%/timezone/Asia/Singapore
+%%TZDATA%%%%DATADIR%%/timezone/Asia/Srednekolymsk
+%%TZDATA%%%%DATADIR%%/timezone/Asia/Taipei
+%%TZDATA%%%%DATADIR%%/timezone/Asia/Tashkent
+%%TZDATA%%%%DATADIR%%/timezone/Asia/Tbilisi
+%%TZDATA%%%%DATADIR%%/timezone/Asia/Tehran
+%%TZDATA%%%%DATADIR%%/timezone/Asia/Tel_Aviv
+%%TZDATA%%%%DATADIR%%/timezone/Asia/Thimbu
+%%TZDATA%%%%DATADIR%%/timezone/Asia/Thimphu
+%%TZDATA%%%%DATADIR%%/timezone/Asia/Tokyo
+%%TZDATA%%%%DATADIR%%/timezone/Asia/Ujung_Pandang
+%%TZDATA%%%%DATADIR%%/timezone/Asia/Ulaanbaatar
+%%TZDATA%%%%DATADIR%%/timezone/Asia/Ulan_Bator
+%%TZDATA%%%%DATADIR%%/timezone/Asia/Urumqi
+%%TZDATA%%%%DATADIR%%/timezone/Asia/Ust-Nera
+%%TZDATA%%%%DATADIR%%/timezone/Asia/Vientiane
+%%TZDATA%%%%DATADIR%%/timezone/Asia/Vladivostok
+%%TZDATA%%%%DATADIR%%/timezone/Asia/Yakutsk
+%%TZDATA%%%%DATADIR%%/timezone/Asia/Yekaterinburg
+%%TZDATA%%%%DATADIR%%/timezone/Asia/Yerevan
+%%TZDATA%%%%DATADIR%%/timezone/Atlantic/Azores
+%%TZDATA%%%%DATADIR%%/timezone/Atlantic/Bermuda
+%%TZDATA%%%%DATADIR%%/timezone/Atlantic/Canary
+%%TZDATA%%%%DATADIR%%/timezone/Atlantic/Cape_Verde
+%%TZDATA%%%%DATADIR%%/timezone/Atlantic/Faeroe
+%%TZDATA%%%%DATADIR%%/timezone/Atlantic/Faroe
+%%TZDATA%%%%DATADIR%%/timezone/Atlantic/Jan_Mayen
+%%TZDATA%%%%DATADIR%%/timezone/Atlantic/Madeira
+%%TZDATA%%%%DATADIR%%/timezone/Atlantic/Reykjavik
+%%TZDATA%%%%DATADIR%%/timezone/Atlantic/South_Georgia
+%%TZDATA%%%%DATADIR%%/timezone/Atlantic/St_Helena
+%%TZDATA%%%%DATADIR%%/timezone/Atlantic/Stanley
+%%TZDATA%%%%DATADIR%%/timezone/Australia/ACT
+%%TZDATA%%%%DATADIR%%/timezone/Australia/Adelaide
+%%TZDATA%%%%DATADIR%%/timezone/Australia/Brisbane
+%%TZDATA%%%%DATADIR%%/timezone/Australia/Broken_Hill
+%%TZDATA%%%%DATADIR%%/timezone/Australia/Canberra
+%%TZDATA%%%%DATADIR%%/timezone/Australia/Currie
+%%TZDATA%%%%DATADIR%%/timezone/Australia/Darwin
+%%TZDATA%%%%DATADIR%%/timezone/Australia/Eucla
+%%TZDATA%%%%DATADIR%%/timezone/Australia/Hobart
+%%TZDATA%%%%DATADIR%%/timezone/Australia/LHI
+%%TZDATA%%%%DATADIR%%/timezone/Australia/Lindeman
+%%TZDATA%%%%DATADIR%%/timezone/Australia/Lord_Howe
+%%TZDATA%%%%DATADIR%%/timezone/Australia/Melbourne
+%%TZDATA%%%%DATADIR%%/timezone/Australia/NSW
+%%TZDATA%%%%DATADIR%%/timezone/Australia/North
+%%TZDATA%%%%DATADIR%%/timezone/Australia/Perth
+%%TZDATA%%%%DATADIR%%/timezone/Australia/Queensland
+%%TZDATA%%%%DATADIR%%/timezone/Australia/South
+%%TZDATA%%%%DATADIR%%/timezone/Australia/Sydney
+%%TZDATA%%%%DATADIR%%/timezone/Australia/Tasmania
+%%TZDATA%%%%DATADIR%%/timezone/Australia/Victoria
+%%TZDATA%%%%DATADIR%%/timezone/Australia/West
+%%TZDATA%%%%DATADIR%%/timezone/Australia/Yancowinna
+%%TZDATA%%%%DATADIR%%/timezone/Brazil/Acre
+%%TZDATA%%%%DATADIR%%/timezone/Brazil/DeNoronha
+%%TZDATA%%%%DATADIR%%/timezone/Brazil/East
+%%TZDATA%%%%DATADIR%%/timezone/Brazil/West
+%%TZDATA%%%%DATADIR%%/timezone/CET
+%%TZDATA%%%%DATADIR%%/timezone/CST6CDT
+%%TZDATA%%%%DATADIR%%/timezone/Canada/Atlantic
+%%TZDATA%%%%DATADIR%%/timezone/Canada/Central
+%%TZDATA%%%%DATADIR%%/timezone/Canada/East-Saskatchewan
+%%TZDATA%%%%DATADIR%%/timezone/Canada/Eastern
+%%TZDATA%%%%DATADIR%%/timezone/Canada/Mountain
+%%TZDATA%%%%DATADIR%%/timezone/Canada/Newfoundland
+%%TZDATA%%%%DATADIR%%/timezone/Canada/Pacific
+%%TZDATA%%%%DATADIR%%/timezone/Canada/Saskatchewan
+%%TZDATA%%%%DATADIR%%/timezone/Canada/Yukon
+%%TZDATA%%%%DATADIR%%/timezone/Chile/Continental
+%%TZDATA%%%%DATADIR%%/timezone/Chile/EasterIsland
+%%TZDATA%%%%DATADIR%%/timezone/Cuba
+%%TZDATA%%%%DATADIR%%/timezone/EET
+%%TZDATA%%%%DATADIR%%/timezone/EST
+%%TZDATA%%%%DATADIR%%/timezone/EST5EDT
+%%TZDATA%%%%DATADIR%%/timezone/Egypt
+%%TZDATA%%%%DATADIR%%/timezone/Eire
+%%TZDATA%%%%DATADIR%%/timezone/Etc/GMT
+%%TZDATA%%%%DATADIR%%/timezone/Etc/GMT+0
+%%TZDATA%%%%DATADIR%%/timezone/Etc/GMT+1
+%%TZDATA%%%%DATADIR%%/timezone/Etc/GMT+10
+%%TZDATA%%%%DATADIR%%/timezone/Etc/GMT+11
+%%TZDATA%%%%DATADIR%%/timezone/Etc/GMT+12
+%%TZDATA%%%%DATADIR%%/timezone/Etc/GMT+2
+%%TZDATA%%%%DATADIR%%/timezone/Etc/GMT+3
+%%TZDATA%%%%DATADIR%%/timezone/Etc/GMT+4
+%%TZDATA%%%%DATADIR%%/timezone/Etc/GMT+5
+%%TZDATA%%%%DATADIR%%/timezone/Etc/GMT+6
+%%TZDATA%%%%DATADIR%%/timezone/Etc/GMT+7
+%%TZDATA%%%%DATADIR%%/timezone/Etc/GMT+8
+%%TZDATA%%%%DATADIR%%/timezone/Etc/GMT+9
+%%TZDATA%%%%DATADIR%%/timezone/Etc/GMT-0
+%%TZDATA%%%%DATADIR%%/timezone/Etc/GMT-1
+%%TZDATA%%%%DATADIR%%/timezone/Etc/GMT-10
+%%TZDATA%%%%DATADIR%%/timezone/Etc/GMT-11
+%%TZDATA%%%%DATADIR%%/timezone/Etc/GMT-12
+%%TZDATA%%%%DATADIR%%/timezone/Etc/GMT-13
+%%TZDATA%%%%DATADIR%%/timezone/Etc/GMT-14
+%%TZDATA%%%%DATADIR%%/timezone/Etc/GMT-2
+%%TZDATA%%%%DATADIR%%/timezone/Etc/GMT-3
+%%TZDATA%%%%DATADIR%%/timezone/Etc/GMT-4
+%%TZDATA%%%%DATADIR%%/timezone/Etc/GMT-5
+%%TZDATA%%%%DATADIR%%/timezone/Etc/GMT-6
+%%TZDATA%%%%DATADIR%%/timezone/Etc/GMT-7
+%%TZDATA%%%%DATADIR%%/timezone/Etc/GMT-8
+%%TZDATA%%%%DATADIR%%/timezone/Etc/GMT-9
+%%TZDATA%%%%DATADIR%%/timezone/Etc/GMT0
+%%TZDATA%%%%DATADIR%%/timezone/Etc/Greenwich
+%%TZDATA%%%%DATADIR%%/timezone/Etc/UCT
+%%TZDATA%%%%DATADIR%%/timezone/Etc/UTC
+%%TZDATA%%%%DATADIR%%/timezone/Etc/Universal
+%%TZDATA%%%%DATADIR%%/timezone/Etc/Zulu
+%%TZDATA%%%%DATADIR%%/timezone/Europe/Amsterdam
+%%TZDATA%%%%DATADIR%%/timezone/Europe/Andorra
+%%TZDATA%%%%DATADIR%%/timezone/Europe/Athens
+%%TZDATA%%%%DATADIR%%/timezone/Europe/Belfast
+%%TZDATA%%%%DATADIR%%/timezone/Europe/Belgrade
+%%TZDATA%%%%DATADIR%%/timezone/Europe/Berlin
+%%TZDATA%%%%DATADIR%%/timezone/Europe/Bratislava
+%%TZDATA%%%%DATADIR%%/timezone/Europe/Brussels
+%%TZDATA%%%%DATADIR%%/timezone/Europe/Bucharest
+%%TZDATA%%%%DATADIR%%/timezone/Europe/Budapest
+%%TZDATA%%%%DATADIR%%/timezone/Europe/Busingen
+%%TZDATA%%%%DATADIR%%/timezone/Europe/Chisinau
+%%TZDATA%%%%DATADIR%%/timezone/Europe/Copenhagen
+%%TZDATA%%%%DATADIR%%/timezone/Europe/Dublin
+%%TZDATA%%%%DATADIR%%/timezone/Europe/Gibraltar
+%%TZDATA%%%%DATADIR%%/timezone/Europe/Guernsey
+%%TZDATA%%%%DATADIR%%/timezone/Europe/Helsinki
+%%TZDATA%%%%DATADIR%%/timezone/Europe/Isle_of_Man
+%%TZDATA%%%%DATADIR%%/timezone/Europe/Istanbul
+%%TZDATA%%%%DATADIR%%/timezone/Europe/Jersey
+%%TZDATA%%%%DATADIR%%/timezone/Europe/Kaliningrad
+%%TZDATA%%%%DATADIR%%/timezone/Europe/Kiev
+%%TZDATA%%%%DATADIR%%/timezone/Europe/Lisbon
+%%TZDATA%%%%DATADIR%%/timezone/Europe/Ljubljana
+%%TZDATA%%%%DATADIR%%/timezone/Europe/London
+%%TZDATA%%%%DATADIR%%/timezone/Europe/Luxembourg
+%%TZDATA%%%%DATADIR%%/timezone/Europe/Madrid
+%%TZDATA%%%%DATADIR%%/timezone/Europe/Malta
+%%TZDATA%%%%DATADIR%%/timezone/Europe/Mariehamn
+%%TZDATA%%%%DATADIR%%/timezone/Europe/Minsk
+%%TZDATA%%%%DATADIR%%/timezone/Europe/Monaco
+%%TZDATA%%%%DATADIR%%/timezone/Europe/Moscow
+%%TZDATA%%%%DATADIR%%/timezone/Europe/Nicosia
+%%TZDATA%%%%DATADIR%%/timezone/Europe/Oslo
+%%TZDATA%%%%DATADIR%%/timezone/Europe/Paris
+%%TZDATA%%%%DATADIR%%/timezone/Europe/Podgorica
+%%TZDATA%%%%DATADIR%%/timezone/Europe/Prague
+%%TZDATA%%%%DATADIR%%/timezone/Europe/Riga
+%%TZDATA%%%%DATADIR%%/timezone/Europe/Rome
+%%TZDATA%%%%DATADIR%%/timezone/Europe/Samara
+%%TZDATA%%%%DATADIR%%/timezone/Europe/San_Marino
+%%TZDATA%%%%DATADIR%%/timezone/Europe/Sarajevo
+%%TZDATA%%%%DATADIR%%/timezone/Europe/Simferopol
+%%TZDATA%%%%DATADIR%%/timezone/Europe/Skopje
+%%TZDATA%%%%DATADIR%%/timezone/Europe/Sofia
+%%TZDATA%%%%DATADIR%%/timezone/Europe/Stockholm
+%%TZDATA%%%%DATADIR%%/timezone/Europe/Tallinn
+%%TZDATA%%%%DATADIR%%/timezone/Europe/Tirane
+%%TZDATA%%%%DATADIR%%/timezone/Europe/Tiraspol
+%%TZDATA%%%%DATADIR%%/timezone/Europe/Uzhgorod
+%%TZDATA%%%%DATADIR%%/timezone/Europe/Vaduz
+%%TZDATA%%%%DATADIR%%/timezone/Europe/Vatican
+%%TZDATA%%%%DATADIR%%/timezone/Europe/Vienna
+%%TZDATA%%%%DATADIR%%/timezone/Europe/Vilnius
+%%TZDATA%%%%DATADIR%%/timezone/Europe/Volgograd
+%%TZDATA%%%%DATADIR%%/timezone/Europe/Warsaw
+%%TZDATA%%%%DATADIR%%/timezone/Europe/Zagreb
+%%TZDATA%%%%DATADIR%%/timezone/Europe/Zaporozhye
+%%TZDATA%%%%DATADIR%%/timezone/Europe/Zurich
+%%TZDATA%%%%DATADIR%%/timezone/Factory
+%%TZDATA%%%%DATADIR%%/timezone/GB
+%%TZDATA%%%%DATADIR%%/timezone/GB-Eire
+%%TZDATA%%%%DATADIR%%/timezone/GMT
+%%TZDATA%%%%DATADIR%%/timezone/GMT+0
+%%TZDATA%%%%DATADIR%%/timezone/GMT-0
+%%TZDATA%%%%DATADIR%%/timezone/GMT0
+%%TZDATA%%%%DATADIR%%/timezone/Greenwich
+%%TZDATA%%%%DATADIR%%/timezone/HST
+%%TZDATA%%%%DATADIR%%/timezone/Hongkong
+%%TZDATA%%%%DATADIR%%/timezone/Iceland
+%%TZDATA%%%%DATADIR%%/timezone/Indian/Antananarivo
+%%TZDATA%%%%DATADIR%%/timezone/Indian/Chagos
+%%TZDATA%%%%DATADIR%%/timezone/Indian/Christmas
+%%TZDATA%%%%DATADIR%%/timezone/Indian/Cocos
+%%TZDATA%%%%DATADIR%%/timezone/Indian/Comoro
+%%TZDATA%%%%DATADIR%%/timezone/Indian/Kerguelen
+%%TZDATA%%%%DATADIR%%/timezone/Indian/Mahe
+%%TZDATA%%%%DATADIR%%/timezone/Indian/Maldives
+%%TZDATA%%%%DATADIR%%/timezone/Indian/Mauritius
+%%TZDATA%%%%DATADIR%%/timezone/Indian/Mayotte
+%%TZDATA%%%%DATADIR%%/timezone/Indian/Reunion
+%%TZDATA%%%%DATADIR%%/timezone/Iran
+%%TZDATA%%%%DATADIR%%/timezone/Israel
+%%TZDATA%%%%DATADIR%%/timezone/Jamaica
+%%TZDATA%%%%DATADIR%%/timezone/Japan
+%%TZDATA%%%%DATADIR%%/timezone/Kwajalein
+%%TZDATA%%%%DATADIR%%/timezone/Libya
+%%TZDATA%%%%DATADIR%%/timezone/MET
+%%TZDATA%%%%DATADIR%%/timezone/MST
+%%TZDATA%%%%DATADIR%%/timezone/MST7MDT
+%%TZDATA%%%%DATADIR%%/timezone/Mexico/BajaNorte
+%%TZDATA%%%%DATADIR%%/timezone/Mexico/BajaSur
+%%TZDATA%%%%DATADIR%%/timezone/Mexico/General
+%%TZDATA%%%%DATADIR%%/timezone/NZ
+%%TZDATA%%%%DATADIR%%/timezone/NZ-CHAT
+%%TZDATA%%%%DATADIR%%/timezone/Navajo
+%%TZDATA%%%%DATADIR%%/timezone/PRC
+%%TZDATA%%%%DATADIR%%/timezone/PST8PDT
+%%TZDATA%%%%DATADIR%%/timezone/Pacific/Apia
+%%TZDATA%%%%DATADIR%%/timezone/Pacific/Auckland
+%%TZDATA%%%%DATADIR%%/timezone/Pacific/Bougainville
+%%TZDATA%%%%DATADIR%%/timezone/Pacific/Chatham
+%%TZDATA%%%%DATADIR%%/timezone/Pacific/Chuuk
+%%TZDATA%%%%DATADIR%%/timezone/Pacific/Easter
+%%TZDATA%%%%DATADIR%%/timezone/Pacific/Efate
+%%TZDATA%%%%DATADIR%%/timezone/Pacific/Enderbury
+%%TZDATA%%%%DATADIR%%/timezone/Pacific/Fakaofo
+%%TZDATA%%%%DATADIR%%/timezone/Pacific/Fiji
+%%TZDATA%%%%DATADIR%%/timezone/Pacific/Funafuti
+%%TZDATA%%%%DATADIR%%/timezone/Pacific/Galapagos
+%%TZDATA%%%%DATADIR%%/timezone/Pacific/Gambier
+%%TZDATA%%%%DATADIR%%/timezone/Pacific/Guadalcanal
+%%TZDATA%%%%DATADIR%%/timezone/Pacific/Guam
+%%TZDATA%%%%DATADIR%%/timezone/Pacific/Honolulu
+%%TZDATA%%%%DATADIR%%/timezone/Pacific/Johnston
+%%TZDATA%%%%DATADIR%%/timezone/Pacific/Kiritimati
+%%TZDATA%%%%DATADIR%%/timezone/Pacific/Kosrae
+%%TZDATA%%%%DATADIR%%/timezone/Pacific/Kwajalein
+%%TZDATA%%%%DATADIR%%/timezone/Pacific/Majuro
+%%TZDATA%%%%DATADIR%%/timezone/Pacific/Marquesas
+%%TZDATA%%%%DATADIR%%/timezone/Pacific/Midway
+%%TZDATA%%%%DATADIR%%/timezone/Pacific/Nauru
+%%TZDATA%%%%DATADIR%%/timezone/Pacific/Niue
+%%TZDATA%%%%DATADIR%%/timezone/Pacific/Norfolk
+%%TZDATA%%%%DATADIR%%/timezone/Pacific/Noumea
+%%TZDATA%%%%DATADIR%%/timezone/Pacific/Pago_Pago
+%%TZDATA%%%%DATADIR%%/timezone/Pacific/Palau
+%%TZDATA%%%%DATADIR%%/timezone/Pacific/Pitcairn
+%%TZDATA%%%%DATADIR%%/timezone/Pacific/Pohnpei
+%%TZDATA%%%%DATADIR%%/timezone/Pacific/Ponape
+%%TZDATA%%%%DATADIR%%/timezone/Pacific/Port_Moresby
+%%TZDATA%%%%DATADIR%%/timezone/Pacific/Rarotonga
+%%TZDATA%%%%DATADIR%%/timezone/Pacific/Saipan
+%%TZDATA%%%%DATADIR%%/timezone/Pacific/Samoa
+%%TZDATA%%%%DATADIR%%/timezone/Pacific/Tahiti
+%%TZDATA%%%%DATADIR%%/timezone/Pacific/Tarawa
+%%TZDATA%%%%DATADIR%%/timezone/Pacific/Tongatapu
+%%TZDATA%%%%DATADIR%%/timezone/Pacific/Truk
+%%TZDATA%%%%DATADIR%%/timezone/Pacific/Wake
+%%TZDATA%%%%DATADIR%%/timezone/Pacific/Wallis
+%%TZDATA%%%%DATADIR%%/timezone/Pacific/Yap
+%%TZDATA%%%%DATADIR%%/timezone/Poland
+%%TZDATA%%%%DATADIR%%/timezone/Portugal
+%%TZDATA%%%%DATADIR%%/timezone/ROC
+%%TZDATA%%%%DATADIR%%/timezone/ROK
+%%TZDATA%%%%DATADIR%%/timezone/Singapore
+%%TZDATA%%%%DATADIR%%/timezone/Turkey
+%%TZDATA%%%%DATADIR%%/timezone/UCT
+%%TZDATA%%%%DATADIR%%/timezone/US/Alaska
+%%TZDATA%%%%DATADIR%%/timezone/US/Aleutian
+%%TZDATA%%%%DATADIR%%/timezone/US/Arizona
+%%TZDATA%%%%DATADIR%%/timezone/US/Central
+%%TZDATA%%%%DATADIR%%/timezone/US/East-Indiana
+%%TZDATA%%%%DATADIR%%/timezone/US/Eastern
+%%TZDATA%%%%DATADIR%%/timezone/US/Hawaii
+%%TZDATA%%%%DATADIR%%/timezone/US/Indiana-Starke
+%%TZDATA%%%%DATADIR%%/timezone/US/Michigan
+%%TZDATA%%%%DATADIR%%/timezone/US/Mountain
+%%TZDATA%%%%DATADIR%%/timezone/US/Pacific
+%%TZDATA%%%%DATADIR%%/timezone/US/Pacific-New
+%%TZDATA%%%%DATADIR%%/timezone/US/Samoa
+%%TZDATA%%%%DATADIR%%/timezone/UTC
+%%TZDATA%%%%DATADIR%%/timezone/Universal
+%%TZDATA%%%%DATADIR%%/timezone/W-SU
+%%TZDATA%%%%DATADIR%%/timezone/WET
+%%TZDATA%%%%DATADIR%%/timezone/Zulu
+%%TZDATA%%%%DATADIR%%/timezone/posixrules
+%%DATADIR%%/timezonesets/Africa.txt
+%%DATADIR%%/timezonesets/America.txt
+%%DATADIR%%/timezonesets/Antarctica.txt
+%%DATADIR%%/timezonesets/Asia.txt
+%%DATADIR%%/timezonesets/Atlantic.txt
+%%DATADIR%%/timezonesets/Australia
+%%DATADIR%%/timezonesets/Australia.txt
+%%DATADIR%%/timezonesets/Default
+%%DATADIR%%/timezonesets/Etc.txt
+%%DATADIR%%/timezonesets/Europe.txt
+%%DATADIR%%/timezonesets/India
+%%DATADIR%%/timezonesets/Indian.txt
+%%DATADIR%%/timezonesets/Pacific.txt
+%%DATADIR%%/tsearch_data/danish.stop
+%%DATADIR%%/tsearch_data/dutch.stop
+%%DATADIR%%/tsearch_data/english.stop
+%%DATADIR%%/tsearch_data/finnish.stop
+%%DATADIR%%/tsearch_data/french.stop
+%%DATADIR%%/tsearch_data/german.stop
+%%DATADIR%%/tsearch_data/hungarian.stop
+%%DATADIR%%/tsearch_data/italian.stop
+%%DATADIR%%/tsearch_data/norwegian.stop
+%%DATADIR%%/tsearch_data/portuguese.stop
+%%DATADIR%%/tsearch_data/russian.stop
+%%DATADIR%%/tsearch_data/spanish.stop
+%%DATADIR%%/tsearch_data/swedish.stop
+%%DATADIR%%/tsearch_data/turkish.stop
+%%DATADIR%%/tsearch_data/hunspell_sample.affix
+%%DATADIR%%/tsearch_data/ispell_sample.affix
+%%DATADIR%%/tsearch_data/ispell_sample.dict
+%%DATADIR%%/tsearch_data/synonym_sample.syn
+%%DATADIR%%/tsearch_data/thesaurus_sample.ths
+ at dir(%%PG_USER%%,%%PG_GROUP%%,) %%PG_USER%%
More information about the Midnightbsd-cvs
mailing list