diff --git a/databases/postgresql84-server/Makefile b/databases/postgresql84-server/Makefile index 5f2a66f1f73a..5a29252d284f 100644 --- a/databases/postgresql84-server/Makefile +++ b/databases/postgresql84-server/Makefile @@ -1,326 +1,327 @@ # New ports collection makefile for: PostgreSQL # Date created: November 13, 1998 # Whom: Marc G. Fournier # # $FreeBSD$ # PORTNAME?= postgresql DISTVERSION?= 8.4.4 PORTREVISION= 1 CATEGORIES?= databases MASTER_SITES= ${MASTER_SITE_PGSQL} MASTER_SITE_SUBDIR= source/v${DISTVERSION} PKGNAMESUFFIX?= -server MAINTAINER?= girgen@FreeBSD.org COMMENT?= The most advanced open-source database available anywhere CONFLICTS?= ${PORTNAME}-client-7.* \ ${PORTNAME}${PKGNAMESUFFIX}-7.* \ ${PORTNAME}-client-8.[0-35-9]* \ ${PORTNAME}${PKGNAMESUFFIX}-8.[0-35-9]* WRKSRC= ${WRKDIR}/postgresql-${DISTVERSION} DIST_SUBDIR= postgresql UNIQUENAME?= ${PORTNAME}84 LATEST_LINK?= ${PKGNAMEPREFIX}${UNIQUENAME}${PKGNAMESUFFIX} PKGINSTALL?= ${PKGDIR}/pkg-install${PKGNAMESUFFIX} USE_BZIP2= YES USE_GMAKE= YES GNU_CONFIGURE= YES .if defined(NO_BUILD) .undef USE_GMAKE .undef GNU_CONFIGURE .endif PGUSER= pgsql PGGROUP= pgsql CONFIGURE_ARGS+=--with-libraries=${LOCALBASE}/lib \ --with-includes=${LOCALBASE}/include \ --enable-thread-safety LDFLAGS+= -L${PREFIX}/lib CONFIGURE_ENV+= LDFLAGS="${LDFLAGS}" \ PTHREAD_CFLAGS="${PTHREAD_CFLAGS}" \ PTHREAD_LIBS="${PTHREAD_LIBS}" PLIST= ${PKGDIR}/pkg-plist${PKGNAMESUFFIX} BUILD_DIRS?= src/port src/timezone src/backend src/backend/utils/mb/conversion_procs \ src/backend/snowball src/bin/initdb src/bin/pg_ctl \ src/bin/pg_controldata src/bin/pg_resetxlog src/pl INSTALL_DIRS?= ${BUILD_DIRS} .if !defined(CLIENT_ONLY) && !defined(SLAVE_ONLY) SERVER_ONLY= yes +PORTREVISION= 2 USE_RC_SUBR= postgresql USE_PGSQL= yes WANT_PGSQL_VER= ${PORTVERSION:C/([0-9][0-9]*)\.([0-9][0-9]*).*/\1\2/g} .endif .if !defined(SLAVE_ONLY) OPTIONS= NLS "Use internationalized messages" on .endif .if !defined(CLIENT_ONLY) MAKE_ENV= PATH=${PREFIX}/bin:${PATH} CONFIGURE_ENV+= PATH=${PREFIX}/bin:${PATH} .endif # Cannot check this with standard OPTION due to a catch-22. # USE_OPENSSL must precede bsd.port.pre.mk, but then we don't know # what OPTIONS are set. # # If you *don't* want SSL, set WITHOUT_SSL=YES when making .if !defined(WITHOUT_SSL) USE_OPENSSL= yes CONFIGURE_ARGS+=--with-openssl .endif .include .if !defined(SLAVE_ONLY) OPTIONS+= PAM "Build with PAM support (server only)" off OPTIONS+= LDAP "Build with LDAP authentication support" off OPTIONS+= MIT_KRB5 "Build with MIT's kerberos support" off OPTIONS+= HEIMDAL_KRB5 "Builds with Heimdal kerberos support" off OPTIONS+= OPTIMIZED_CFLAGS "Builds with compiler optimizations (-O3)" off OPTIONS+= XML "Build with XML data type (server)" on OPTIONS+= TZDATA "Use internal timezone database (server)" on OPTIONS+= DEBUG "Builds with debugging symbols" off # See http://people.freebsd.org/~girgen/postgresql-icu/README.html for more info OPTIONS+= ICU "Use ICU 3.x for unicode collation (server)" off OPTIONS+= ICU4 "Use ICU 4.x for unicode collation (server)" off # See http://www.freebsd.org/cgi/query-pr.cgi?pr=ports/76999 for more info # (requires dump/restore if modified.) OPTIONS+= INTDATE "Builds with 64-bit date/time type (server)" on . if defined(WITH_ICU) && defined(WITH_ICU4) IGNORE= options WITH_ICU and WITH_ICU4 are mutually exclusive . endif . if (defined(SERVER_ONLY) && (defined(WITH_ICU) || defined(WITH_ICU4))) || make(makesum) USE_AUTOTOOLS= autoconf:262 CONFIGURE_ARGS+=--with-icu PATCH_SITES+= http://people.freebsd.org/~girgen/postgresql-icu/:icu PATCHFILES+= pg-840-icu-2009-09-15.diff.gz:icu . if defined(WITH_ICU4) LIB_DEPENDS+= icudata.43:${PORTSDIR}/devel/icu4 EXTRA_PATCHES+= ${FILESDIR}/extra-patch-icu4 . else LIB_DEPENDS+= icudata.38:${PORTSDIR}/devel/icu . endif . endif PATCH_DIST_STRIP=-p1 . if defined(SERVER_ONLY) && defined(WITH_PAM) CONFIGURE_ARGS+=--with-pam . endif . if defined(SERVER_ONLY) && defined(WITH_LDAP) CONFIGURE_ARGS+=--with-ldap USE_OPENLDAP= YES . endif . if defined(SERVER_ONLY) && defined(WITH_XML) CONFIGURE_ARGS+=--with-libxml LIB_DEPENDS+= xml2.5:${PORTSDIR}/textproc/libxml2 . endif . if defined(SERVER_ONLY) && defined(WITH_TZDATA) PLIST_SUB+= TZDATA="" . else CONFIGURE_ARGS+=--with-system-tzdata=/usr/share/zoneinfo PLIST_SUB+= TZDATA="@comment " . endif . if defined(WITHOUT_INTDATE) CONFIGURE_ARGS+=--disable-integer-datetimes . endif . if !(defined(WITHOUT_GETTEXT) || defined(WITHOUT_NLS)) CONFIGURE_ARGS+=--enable-nls PLIST_SUB+= GETTEXT="" USE_GETTEXT= YES . else CONFIGURE_ARGS+=--disable-nls PLIST_SUB+= GETTEXT="@comment " . endif . if defined(WITH_OPTIMIZED_CFLAGS) CFLAGS+= -O3 -funroll-loops . endif . if defined(WITH_DEBUG) CONFIGURE_ARGS+=--enable-debug INSTALL_TARGET= install . else INSTALL_TARGET= install-strip . endif . if defined(WITH_MIT_KRB5) . if exists(/usr/lib/libkrb5.so) || exists(/usr/bin/krb5-config) BROKEN= "You must remove heimdal's /usr/bin/krb5-config and /usr/lib/libkrb5.so*, and set NO_KERBEROS=true in /etc/make.conf to build successfully with MIT-KRB" . endif # Allow defining a home built MIT Kerberos by setting KRB5_HOME . if defined(KRB5_HOME) && exists(${KRB5_HOME}/lib/libgssapi_krb5.a) && exists(${KRB5_HOME}/bin/krb5-config) CONFIGURE_ARGS+=--with-krb5 . else LIB_DEPENDS+= krb5.3:${PORTSDIR}/security/krb5 CONFIGURE_ARGS+=--with-krb5 . endif . endif . if defined(WITH_HEIMDAL_KRB5) # Allow defining a home built Heimdal Kerberos by setting HEIMDAL_HOME . if defined(HEIMDAL_HOME) && exists(${HEIMDAL_HOME}/lib/libgssapi.a) && exists(${HEIMDAL_HOME}/bin/krb5-config) CONFIGURE_ARGS+=--with-krb5 . else # Postgresql apps will not link properly when libpq is linked with base heimdal in /usr, # so we always use the heimdal port. See # http://lists.freebsd.org/pipermail/freebsd-stable/2005-October/018809.html LIB_DEPENDS+= krb5.23:${PORTSDIR}/security/heimdal CONFIGURE_ARGS+=--with-krb5 . endif . endif .endif # !SLAVE_ONLY .if defined(CLIENT_ONLY) MAN1= clusterdb.1 createdb.1 createlang.1 createuser.1 \ dropdb.1 droplang.1 dropuser.1 ecpg.1 initdb.1 \ pg_config.1 pg_controldata.1 pg_ctl.1 \ pg_dump.1 pg_dumpall.1 pg_resetxlog.1 pg_restore.1 \ postgres.1 postmaster.1 psql.1 reindexdb.1 vacuumdb.1 MAN7= abort.7 alter_aggregate.7 alter_conversion.7 alter_database.7 \ alter_domain.7 alter_foreign_data_wrapper.7 alter_function.7 alter_group.7 alter_server.7 \ alter_user_mapping.7 alter_index.7 alter_language.7 alter_operator_class.7 \ alter_operator_family.7 \ alter_role.7 \ alter_schema.7 alter_sequence.7 alter_table.7 \ alter_text_search_configuration.7 \ alter_text_search_dictionary.7 \ alter_text_search_parser.7 \ alter_text_search_template.7 \ alter_trigger.7 alter_user.7 alter_view.7 analyze.7 begin.7 \ checkpoint.7 close.7 cluster.7 comment.7 commit.7 \ commit_prepared.7 \ copy.7 create_aggregate.7 create_cast.7 \ create_constraint_trigger.7 create_conversion.7 \ create_database.7 create_domain.7 create_foreign_data_wrapper.7 \ create_function.7 \ create_group.7 create_index.7 create_language.7 \ create_operator.7 create_operator_class.7 \ create_operator_family.7 create_role.7 \ create_rule.7 create_schema.7 create_sequence.7 \ create_server.7 create_table.7 create_table_as.7 \ create_text_search_configuration.7 \ create_text_search_dictionary.7 \ create_text_search_parser.7 \ create_text_search_template.7 create_trigger.7 \ create_type.7 create_user.7 create_user_mapping.7 create_view.7 deallocate.7 \ declare.7 delete.7 discard.7 \ drop_aggregate.7 drop_cast.7 drop_conversion.7 \ drop_database.7 drop_domain.7 drop_foreign_data_wrapper.7 drop_function.7 \ drop_group.7 drop_index.7 drop_language.7 \ drop_operator.7 drop_operator_class.7 drop_operator_family.7 \ drop_owned.7 drop_role.7 drop_rule.7 \ drop_schema.7 drop_sequence.7 drop_server.7 drop_table.7 \ drop_text_search_configuration.7 \ drop_text_search_dictionary.7 \ drop_text_search_parser.7 \ drop_text_search_template.7 drop_trigger.7 \ drop_type.7 drop_user.7 drop_user_mapping.7 drop_view.7 end.7 execute.7 \ explain.7 fetch.7 grant.7 insert.7 listen.7 load.7 \ lock.7 move.7 notify.7 prepare.7 prepare_transaction.7 \ reassign_owned.7 reindex.7 reset.7 \ revoke.7 rollback.7 rollback_prepared.7 select.7 \ select_into.7 set.7 \ set_constraints.7 set_role.7 set_transaction.7 show.7 \ set_session_authorization.7 start_transaction.7 \ table.7 truncate.7 unlisten.7 update.7 vacuum.7 \ alter_operator.7 alter_tablespace.7 alter_type.7 \ create_tablespace.7 drop_tablespace.7 \ release_savepoint.7 rollback_to_savepoint.7 \ savepoint.7 values.7 with.7 .endif .if defined(SERVER_ONLY) pre-everything:: @${SH} ${PKGINSTALL} ${PORTNAME} BACKUPWARNING .endif .if !defined(NO_BUILD) pre-configure: . if defined(WITH_MIT_KRB5) && defined(WITH_HEIMDAL_KRB5) @${ECHO} "MIT's and Heimdal Kerberos are mutually exclusive." @${ECHO} "Please choose one or the other." @exit 1 . endif do-build: @ cd ${WRKSRC}/src/backend && ${SETENV} ${MAKE_ENV} ${GMAKE} symlinks @ for dir in ${BUILD_DIRS}; do \ cd ${WRKSRC}/$${dir} && ${SETENV} ${MAKE_ENV} ${GMAKE}; \ done . if exists(${FILESDIR}/pkg-message${PKGNAMESUFFIX}.in) SUB_FILES+= pkg-message${PKGNAMESUFFIX} PKGMESSAGE= ${WRKSRC}/pkg-message${PKGNAMESUFFIX} . endif .endif .if defined(SERVER_ONLY) pre-su-install: @ ${SETENV} PKG_PREFIX=${PREFIX} PGUSER=${PGUSER} PGGROUP=${PGGROUP} \ ${SH} ${PKGINSTALL} ${PORTNAME} PRE-INSTALL .endif .if !defined(NO_BUILD) post-patch: @${REINPLACE_CMD} s/@PTHREAD_LIBS@// ${WRKSRC}/src/Makefile.global.in do-install: @for dir in ${INSTALL_DIRS}; do \ cd ${WRKSRC}/$${dir} && \ ${SETENV} ${MAKE_ENV} ${GMAKE} ${INSTALL_TARGET}; \ done . if defined(SERVER_ONLY) @ ${MKDIR} ${PREFIX}/share/postgresql ;\ ${MKDIR} ${PREFIX}/etc/periodic/daily ;\ ${INSTALL_SCRIPT} ${FILESDIR}/502.pgsql \ ${PREFIX}/etc/periodic/daily . endif # SERVER_ONLY . if defined(CLIENT_ONLY) @ cd ${WRKSRC}/src && ${SETENV} ${MAKE_ENV} ${GMAKE} install-local . endif @ if [ -r ${PKGMESSAGE} ]; then \ ${MKDIR} ${DOCSDIR} ;\ ${INSTALL_DATA} ${PKGMESSAGE} ${DOCSDIR}/README${PKGNAMESUFFIX} ;\ ${ECHO} "======================================================================" ;\ ${CAT} ${PKGMESSAGE} ;\ ${ECHO} "======================================================================" ;\ fi .endif # !NO_BUILD .if defined(SERVER_ONLY) check: @if [ `id -u` != 0 ] ; then \ ${ECHO} "Running postgresql regressions tests" ;\ cd ${WRKSRC}; ${GMAKE} 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." ;\ fi .endif .include diff --git a/databases/postgresql84-server/pkg-plist-server b/databases/postgresql84-server/pkg-plist-server index cded41078237..7e837abced31 100644 --- a/databases/postgresql84-server/pkg-plist-server +++ b/databases/postgresql84-server/pkg-plist-server @@ -1,741 +1,747 @@ bin/initdb bin/pg_controldata bin/pg_ctl bin/pg_resetxlog bin/postmaster bin/postgres etc/periodic/daily/502.pgsql lib/libpgport.a lib/postgresql/ascii_and_mic.so lib/postgresql/cyrillic_and_mic.so lib/postgresql/dict_snowball.so lib/postgresql/euc_cn_and_mic.so lib/postgresql/euc_jis_2004_and_shift_jis_2004.so lib/postgresql/euc_jp_and_sjis.so lib/postgresql/euc_kr_and_mic.so lib/postgresql/euc_tw_and_big5.so lib/postgresql/latin2_and_win1250.so lib/postgresql/latin_and_mic.so lib/postgresql/plpgsql.so lib/postgresql/utf8_and_ascii.so lib/postgresql/utf8_and_big5.so lib/postgresql/utf8_and_cyrillic.so lib/postgresql/utf8_and_euc_cn.so lib/postgresql/utf8_and_euc_jis_2004.so lib/postgresql/utf8_and_euc_jp.so lib/postgresql/utf8_and_euc_kr.so lib/postgresql/utf8_and_euc_tw.so lib/postgresql/utf8_and_gb18030.so lib/postgresql/utf8_and_gbk.so lib/postgresql/utf8_and_iso8859.so lib/postgresql/utf8_and_iso8859_1.so lib/postgresql/utf8_and_johab.so lib/postgresql/utf8_and_shift_jis_2004.so lib/postgresql/utf8_and_sjis.so lib/postgresql/utf8_and_uhc.so lib/postgresql/utf8_and_win.so %%DOCSDIR%%/README-server @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 %%GETTEXT%%share/locale/cs/LC_MESSAGES/initdb-8.4.mo %%GETTEXT%%share/locale/de/LC_MESSAGES/postgres-8.4.mo %%GETTEXT%%share/locale/de/LC_MESSAGES/initdb-8.4.mo %%GETTEXT%%share/locale/de/LC_MESSAGES/pg_ctl-8.4.mo %%GETTEXT%%share/locale/de/LC_MESSAGES/pg_controldata-8.4.mo %%GETTEXT%%share/locale/de/LC_MESSAGES/pg_resetxlog-8.4.mo %%GETTEXT%%share/locale/de/LC_MESSAGES/plpgsql-8.4.mo %%GETTEXT%%share/locale/es/LC_MESSAGES/postgres-8.4.mo %%GETTEXT%%share/locale/es/LC_MESSAGES/initdb-8.4.mo %%GETTEXT%%share/locale/es/LC_MESSAGES/pg_ctl-8.4.mo %%GETTEXT%%share/locale/es/LC_MESSAGES/pg_controldata-8.4.mo %%GETTEXT%%share/locale/es/LC_MESSAGES/pg_resetxlog-8.4.mo %%GETTEXT%%share/locale/es/LC_MESSAGES/plpgsql-8.4.mo %%GETTEXT%%share/locale/fr/LC_MESSAGES/postgres-8.4.mo %%GETTEXT%%share/locale/fr/LC_MESSAGES/initdb-8.4.mo %%GETTEXT%%share/locale/fr/LC_MESSAGES/pg_ctl-8.4.mo %%GETTEXT%%share/locale/fr/LC_MESSAGES/pg_controldata-8.4.mo %%GETTEXT%%share/locale/fr/LC_MESSAGES/pg_resetxlog-8.4.mo %%GETTEXT%%share/locale/fr/LC_MESSAGES/plpgsql-8.4.mo %%GETTEXT%%share/locale/it/LC_MESSAGES/initdb-8.4.mo %%GETTEXT%%share/locale/it/LC_MESSAGES/pg_controldata-8.4.mo %%GETTEXT%%share/locale/it/LC_MESSAGES/pg_ctl-8.4.mo %%GETTEXT%%share/locale/it/LC_MESSAGES/pg_resetxlog-8.4.mo %%GETTEXT%%share/locale/it/LC_MESSAGES/plpgsql-8.4.mo %%GETTEXT%%share/locale/ja/LC_MESSAGES/postgres-8.4.mo %%GETTEXT%%share/locale/ja/LC_MESSAGES/initdb-8.4.mo %%GETTEXT%%share/locale/ja/LC_MESSAGES/pg_ctl-8.4.mo %%GETTEXT%%share/locale/ja/LC_MESSAGES/pg_controldata-8.4.mo %%GETTEXT%%share/locale/ja/LC_MESSAGES/pg_resetxlog-8.4.mo %%GETTEXT%%share/locale/ja/LC_MESSAGES/plpgsql-8.4.mo %%GETTEXT%%share/locale/ko/LC_MESSAGES/pg_ctl-8.4.mo %%GETTEXT%%share/locale/ko/LC_MESSAGES/pg_controldata-8.4.mo %%GETTEXT%%share/locale/ko/LC_MESSAGES/pg_resetxlog-8.4.mo %%GETTEXT%%share/locale/pt_BR/LC_MESSAGES/postgres-8.4.mo %%GETTEXT%%share/locale/pt_BR/LC_MESSAGES/initdb-8.4.mo %%GETTEXT%%share/locale/pt_BR/LC_MESSAGES/pg_ctl-8.4.mo %%GETTEXT%%share/locale/pt_BR/LC_MESSAGES/pg_controldata-8.4.mo %%GETTEXT%%share/locale/pt_BR/LC_MESSAGES/pg_resetxlog-8.4.mo %%GETTEXT%%share/locale/ro/LC_MESSAGES/pg_resetxlog-8.4.mo %%GETTEXT%%share/locale/ro/LC_MESSAGES/plpgsql-8.4.mo %%GETTEXT%%share/locale/ru/LC_MESSAGES/initdb-8.4.mo %%GETTEXT%%share/locale/ru/LC_MESSAGES/pg_ctl-8.4.mo %%GETTEXT%%share/locale/ru/LC_MESSAGES/pg_resetxlog-8.4.mo %%GETTEXT%%share/locale/sv/LC_MESSAGES/initdb-8.4.mo %%GETTEXT%%share/locale/sv/LC_MESSAGES/pg_ctl-8.4.mo %%GETTEXT%%share/locale/sv/LC_MESSAGES/pg_controldata-8.4.mo %%GETTEXT%%share/locale/sv/LC_MESSAGES/pg_resetxlog-8.4.mo %%GETTEXT%%share/locale/ta/LC_MESSAGES/initdb-8.4.mo %%GETTEXT%%share/locale/ta/LC_MESSAGES/pg_ctl-8.4.mo %%GETTEXT%%share/locale/ta/LC_MESSAGES/pg_controldata-8.4.mo %%GETTEXT%%share/locale/ta/LC_MESSAGES/pg_resetxlog-8.4.mo %%GETTEXT%%share/locale/tr/LC_MESSAGES/postgres-8.4.mo %%GETTEXT%%share/locale/tr/LC_MESSAGES/initdb-8.4.mo %%GETTEXT%%share/locale/tr/LC_MESSAGES/pg_ctl-8.4.mo %%GETTEXT%%share/locale/tr/LC_MESSAGES/pg_controldata-8.4.mo %%GETTEXT%%share/locale/tr/LC_MESSAGES/pg_resetxlog-8.4.mo +%%GETTEXT%%share/locale/zh_CN/LC_MESSAGES/initdb-8.4.mo +%%GETTEXT%%share/locale/zh_CN/LC_MESSAGES/pg_controldata-8.4.mo +%%GETTEXT%%share/locale/zh_CN/LC_MESSAGES/pg_ctl-8.4.mo +%%GETTEXT%%share/locale/zh_CN/LC_MESSAGES/pg_resetxlog-8.4.mo +%%GETTEXT%%share/locale/zh_CN/LC_MESSAGES/plpgsql-8.4.mo +%%GETTEXT%%share/locale/zh_CN/LC_MESSAGES/postgres-8.4.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/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/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/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/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/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/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/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/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/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/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/Riyadh87 %%TZDATA%%share/postgresql/timezone/Asia/Riyadh88 %%TZDATA%%share/postgresql/timezone/Asia/Riyadh89 %%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/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/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/Mideast/Riyadh87 %%TZDATA%%share/postgresql/timezone/Mideast/Riyadh88 %%TZDATA%%share/postgresql/timezone/Mideast/Riyadh89 %%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/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/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/Mideast %%TZDATA%%@dirrm share/postgresql/timezone/Pacific %%TZDATA%%@dirrm share/postgresql/timezone/US %%TZDATA%%@dirrm share/postgresql/timezone @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 @dirrm share/postgresql/tsearch_data @unexec echo "Warning: If you will *NOT* use this package anymore, please remove the pgsql user manually." @dirrmtry share/postgresql @dirrmtry etc/periodic/daily @dirrmtry etc/periodic @dirrmtry lib/postgresql @dirrmtry pgsql