summaryrefslogtreecommitdiff
path: root/databases/postgresql80-server
diff options
context:
space:
mode:
authorjlam <jlam>2005-08-05 19:43:44 +0000
committerjlam <jlam>2005-08-05 19:43:44 +0000
commit53c7dbd6a2345f9594fc3dc5d0f14e2ecd652e08 (patch)
tree63eec019bfb4aeb95776bd987fe6d34dc836ea8c /databases/postgresql80-server
parent350dbde1f1427bcd96ce1d18d573d665bed2f088 (diff)
downloadpkgsrc-53c7dbd6a2345f9594fc3dc5d0f14e2ecd652e08.tar.gz
Several changes to the postgresql80-* packages:
* Become maintainer for the postgresql80-* packages (ok'd by recht) * Libtoolize postgresql80 build so that the shared libraries and loadable shared modules are built using libtool. This should make PostgreSQL 8.0.x in pkgsrc build correctly on more pkgsrc-supported platforms. This is accomplished with the Makefile.libtool file which replaces the Makefile.shlib file in the PostgreSQL distribution. * Add libltdl modifications from the postgresql74-* packages so that this can work on Interix (untested). * Fix some mismatches between static function declarations and their subsesquent definitions in the src/timezone module. Fixes provided by Georg Schwarz. * Convert PGSQL_USE_HIER into the PKG_OPTION "pgsql-hier-query", and teach both postgresql80-client and postgresql80-server to use it. * Use BUILDLINK_TRANSFORM's "rm" action to remove unwanted compiler flags. * Remove zlib/buildlink3.mk from postgresql80-client/buildlink3.mk as zlib is only used by the pg_dump client. * Convert some files in files/* into patches that can be fed back to the PostgreSQL team. * Install data and documentation files into share/postgresql instead of share/postgresql80 -- it's only possible to install one PostgreSQL version at a time in pkgsrc, and the new paths more closely match the rest of the installation paths. * Add more mirrors to the MASTER_SITES list, and add a new variable POSTGRESQL_MIRRORS_SORT that has the same syntax as MASTER_SORT that can help people pick a nearby mirror. * Nuke references to libpgtcl which is no longer distributed as part of a standard PostgreSQL installation as of version 8.0. * Provide better documentation for Makefile.custom. * Avoid linking in the pthread library in the correct way on NetBSD by setting DLOPEN_REQUIRE_PTHREADS=no. Also, provide better documentation on why we can't enable thread-safety in the PostgreSQL libraries on NetBSD (at least for now). * Preliminary support for installing postgresql80-* into a separate subdirectory under ${LOCALBASE} so possibly allow for multiple installations of PostgreSQL on the same machine. Note that THIS DOES NOT WORK YET. * Update the hierarchical-queries patch to "8.0.3-0.5.5" which fixes a bug which was crashing the backend when PRIOR was used in the target list. The _level_ column is no longer automatically added to target list. This makes it possible to use hierarchical queries as IN subqueries. To get _level_ back you just have to explicitly mention it in target list. Bump the following PKGREVISIONs: postgresql80-client -> 2 postgresql80-server -> 2 postgresql80 -> 1
Diffstat (limited to 'databases/postgresql80-server')
-rw-r--r--databases/postgresql80-server/Makefile84
-rw-r--r--databases/postgresql80-server/PLIST1274
-rw-r--r--databases/postgresql80-server/files/pgsql.sh8
3 files changed, 686 insertions, 680 deletions
diff --git a/databases/postgresql80-server/Makefile b/databases/postgresql80-server/Makefile
index 000221d2a7f..892ccb5370e 100644
--- a/databases/postgresql80-server/Makefile
+++ b/databases/postgresql80-server/Makefile
@@ -1,34 +1,54 @@
-# $NetBSD: Makefile,v 1.8 2005/07/09 04:34:53 cjs Exp $
+# $NetBSD: Makefile,v 1.9 2005/08/05 19:43:45 jlam Exp $
-PKGNAME= postgresql80-server-${BASE_VERS}
-PKGREVISION= 1
-COMMENT= PostgreSQL database server programs
-
-DEPENDS+= postgresql80-client>=${BASE_VERS}:../../databases/postgresql80-client
+PKGNAME= postgresql80-server-${BASE_VERS}
+PKGREVISION= 2
+COMMENT= PostgreSQL database server programs
# mips has no TAS implementation
NOT_FOR_PLATFORM= *-*-mips
.include "../../databases/postgresql80/Makefile.common"
+# Use shlibtool (invoked as "$(LIBTOOL)") to build modules.
+USE_LIBTOOL= yes
+PKG_LIBTOOL= ${PKG_SHLIBTOOL}
+
USE_PKGINSTALL= yes
DEINSTALL_EXTRA_TMPL+= ${.CURDIR}/DEINSTALL
MESSAGE_SRC= ${.CURDIR}/MESSAGE
+CONFIGURE_ARGS+= --with-openssl
+
BUILD_DIRS= ${WRKSRC}/src/backend
BUILD_DIRS+= ${WRKSRC}/src/backend/utils/mb/conversion_procs
BUILD_DIRS+= ${WRKSRC}/src/timezone
BUILD_DIRS+= ${WRKSRC}/src/pl
-PKG_OPTIONS_VAR= PKG_OPTIONS.postgresql80-server
-PKG_SUPPORTED_OPTIONS= pam
-.include "../../mk/bsd.options.mk"
+# PostgreSQL has loadable server-side language modules.
+#
+# Explicitly set DLOPEN_REQUIRE_PTHREADS to "no" on NetBSD as NetBSD-2.x
+# had problems with mixing dlopen() and pthreads, which blows up in
+# PostgreSQL's backend (pkg/28729). This works on older and newer
+# versions of NetBSD as well since they don't have the bad interaction
+# between dlopen() and pthreads.
+#
+.if ${OPSYS} == "NetBSD"
+DLOPEN_REQUIRE_PTHREADS= no
+.endif
+.include "../../mk/dlopen.buildlink3.mk"
-.if !empty(PKG_OPTIONS:Mpam)
-. include "../../mk/pam.buildlink3.mk"
-CONFIGURE_ARGS+= --with-pam
+# If we're using libltdl to provide "dlopen" functionality, then add the
+# dependency and make sure that we link against -lltdl.
+#
+.if !empty(USE_LIBLTDL:M[yY][eE][sS])
+DL_LIBS+= -lltdl
+. include "../../devel/libltdl/buildlink3.mk"
.endif
+PKG_OPTIONS_VAR= PKG_OPTIONS.postgresql80-server
+PKG_SUPPORTED_OPTIONS= pam
+.include "../../databases/postgresql80/options.mk"
+
# PGUSER username of the database administrator
# PGGROUP group of the database administrator
# PGHOME home directory of the database administrator and location of
@@ -47,39 +67,25 @@ PKG_GROUPS= ${PGGROUP}
RCD_SCRIPTS= pgsql
-post-buildlink:
-#
-# Avoid conflict between "${LOCALBASE}/include/openssl/des.h" and
+.include "../../databases/postgresql80-client/buildlink3.mk"
+.include "../../security/openssl/buildlink3.mk"
+
+# Avoid conflict between "${SSLBASE}/include/openssl/des.h" and
# "/usr/include/crypt.h" -- we want the definitions in the former.
#
-.if (${OPSYS} == "SunOS")
+post-wrapper:
+.if ${OPSYS} == "SunOS"
${TOUCH} ${BUILDLINK_DIR}/include/crypt.h
.endif
pre-build:
- ${_PKG_SILENT}${_PKG_DEBUG}${_ULIMIT_CMD}cd ${WRKSRC}/src/backend && \
- ${SETENV} ${MAKE_ENV} ${MAKE_PROGRAM} ${BUILD_MAKE_FLAGS} \
- ../../src/include/parser/parse.h ../../src/include/utils/fmgroids.h
- ${_PKG_SILENT}${_PKG_DEBUG}${_ULIMIT_CMD}cd ${WRKSRC}/src/port && \
+ ${_PKG_SILENT}${_PKG_DEBUG}${_ULIMIT_CMD} \
+ cd ${WRKSRC}/src/backend && \
+ ${SETENV} ${MAKE_ENV} ${MAKE_PROGRAM} ${BUILD_MAKE_FLAGS} \
+ ../../src/include/parser/parse.h \
+ ../../src/include/utils/fmgroids.h
+ ${_PKG_SILENT}${_PKG_DEBUG}${_ULIMIT_CMD} \
+ cd ${WRKSRC}/src/port && \
${SETENV} ${MAKE_ENV} ${MAKE_PROGRAM} ${BUILD_MAKE_FLAGS}
-pre-install:
- @case "X${PGUSER}" in \
- Xbin|Xetc|Xinclude|Xinfo|Xlib|Xlibdata|Xlibexec|Xman|Xsbin|Xshare) \
- ${ECHO} "You have chosen PGUSER=${PGUSER} which will"; \
- ${ECHO} "cause trouble, because the postgres home directory"; \
- ${ECHO} "would be ${PGHOME}. Please"; \
- ${ECHO} "set PGUSER to something more reasonable"; \
- ${ECHO} "like pgsql."; \
- ${ECHO} ""; \
- ${FALSE}; \
- ;; \
- esac
-
-#post-install:
-# ${EGREP} -v "^#" ${FILESDIR}/man.server > ${WRKDIR}/man_tar
-# cd ${PG_DIR}/man && ${TAR} -zxm -T ${WRKDIR}/man_tar \
-# -f ${WRKSRC}/doc/man.tar.gz
-
-.include "../../databases/postgresql80-client/buildlink3.mk"
.include "../../mk/bsd.pkg.mk"
diff --git a/databases/postgresql80-server/PLIST b/databases/postgresql80-server/PLIST
index 10eba5ea7b8..9c00889c4af 100644
--- a/databases/postgresql80-server/PLIST
+++ b/databases/postgresql80-server/PLIST
@@ -1,637 +1,637 @@
-@comment $NetBSD: PLIST,v 1.5 2005/05/02 20:33:59 reed Exp $
-bin/postgres
-bin/postmaster
-lib/postgresql/ascii_and_mic.so
-lib/postgresql/cyrillic_and_mic.so
-lib/postgresql/euc_cn_and_mic.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_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_sjis.so
-lib/postgresql/utf8_and_tcvn.so
-lib/postgresql/utf8_and_uhc.so
-lib/postgresql/utf8_and_win1250.so
-lib/postgresql/utf8_and_win1256.so
-lib/postgresql/utf8_and_win874.so
-${PKGLOCALEDIR}/locale/af/LC_MESSAGES/postgres.mo
-${PKGLOCALEDIR}/locale/cs/LC_MESSAGES/postgres.mo
-${PKGLOCALEDIR}/locale/de/LC_MESSAGES/postgres.mo
-${PKGLOCALEDIR}/locale/es/LC_MESSAGES/postgres.mo
-${PKGLOCALEDIR}/locale/fr/LC_MESSAGES/postgres.mo
-${PKGLOCALEDIR}/locale/hr/LC_MESSAGES/postgres.mo
-${PKGLOCALEDIR}/locale/hu/LC_MESSAGES/postgres.mo
-${PKGLOCALEDIR}/locale/it/LC_MESSAGES/postgres.mo
-${PKGLOCALEDIR}/locale/ko/LC_MESSAGES/postgres.mo
-${PKGLOCALEDIR}/locale/nb/LC_MESSAGES/postgres.mo
-${PKGLOCALEDIR}/locale/pt_BR/LC_MESSAGES/postgres.mo
-${PKGLOCALEDIR}/locale/ro/LC_MESSAGES/postgres.mo
-${PKGLOCALEDIR}/locale/ru/LC_MESSAGES/postgres.mo
-${PKGLOCALEDIR}/locale/sk/LC_MESSAGES/postgres.mo
-${PKGLOCALEDIR}/locale/sl/LC_MESSAGES/postgres.mo
-${PKGLOCALEDIR}/locale/sv/LC_MESSAGES/postgres.mo
-${PKGLOCALEDIR}/locale/tr/LC_MESSAGES/postgres.mo
-${PKGLOCALEDIR}/locale/zh_CN/LC_MESSAGES/postgres.mo
-${PKGLOCALEDIR}/locale/zh_TW/LC_MESSAGES/postgres.mo
-share/examples/rc.d/pgsql
-share/postgresql80/conversion_create.sql
-share/postgresql80/information_schema.sql
-share/postgresql80/pg_hba.conf.sample
-share/postgresql80/pg_ident.conf.sample
-share/postgresql80/postgres.bki
-share/postgresql80/postgres.description
-share/postgresql80/postgresql.conf.sample
-share/postgresql80/recovery.conf.sample
-share/postgresql80/sql_features.txt
-share/postgresql80/system_views.sql
-share/postgresql80/timezone/Africa/Abidjan
-share/postgresql80/timezone/Africa/Accra
-share/postgresql80/timezone/Africa/Addis_Ababa
-share/postgresql80/timezone/Africa/Algiers
-share/postgresql80/timezone/Africa/Asmera
-share/postgresql80/timezone/Africa/Bamako
-share/postgresql80/timezone/Africa/Bangui
-share/postgresql80/timezone/Africa/Banjul
-share/postgresql80/timezone/Africa/Bissau
-share/postgresql80/timezone/Africa/Blantyre
-share/postgresql80/timezone/Africa/Brazzaville
-share/postgresql80/timezone/Africa/Bujumbura
-share/postgresql80/timezone/Africa/Cairo
-share/postgresql80/timezone/Africa/Casablanca
-share/postgresql80/timezone/Africa/Ceuta
-share/postgresql80/timezone/Africa/Conakry
-share/postgresql80/timezone/Africa/Dakar
-share/postgresql80/timezone/Africa/Dar_es_Salaam
-share/postgresql80/timezone/Africa/Djibouti
-share/postgresql80/timezone/Africa/Douala
-share/postgresql80/timezone/Africa/El_Aaiun
-share/postgresql80/timezone/Africa/Freetown
-share/postgresql80/timezone/Africa/Gaborone
-share/postgresql80/timezone/Africa/Harare
-share/postgresql80/timezone/Africa/Johannesburg
-share/postgresql80/timezone/Africa/Kampala
-share/postgresql80/timezone/Africa/Khartoum
-share/postgresql80/timezone/Africa/Kigali
-share/postgresql80/timezone/Africa/Kinshasa
-share/postgresql80/timezone/Africa/Lagos
-share/postgresql80/timezone/Africa/Libreville
-share/postgresql80/timezone/Africa/Lome
-share/postgresql80/timezone/Africa/Luanda
-share/postgresql80/timezone/Africa/Lubumbashi
-share/postgresql80/timezone/Africa/Lusaka
-share/postgresql80/timezone/Africa/Malabo
-share/postgresql80/timezone/Africa/Maputo
-share/postgresql80/timezone/Africa/Maseru
-share/postgresql80/timezone/Africa/Mbabane
-share/postgresql80/timezone/Africa/Mogadishu
-share/postgresql80/timezone/Africa/Monrovia
-share/postgresql80/timezone/Africa/Nairobi
-share/postgresql80/timezone/Africa/Ndjamena
-share/postgresql80/timezone/Africa/Niamey
-share/postgresql80/timezone/Africa/Nouakchott
-share/postgresql80/timezone/Africa/Ouagadougou
-share/postgresql80/timezone/Africa/Porto-Novo
-share/postgresql80/timezone/Africa/Sao_Tome
-share/postgresql80/timezone/Africa/Timbuktu
-share/postgresql80/timezone/Africa/Tripoli
-share/postgresql80/timezone/Africa/Tunis
-share/postgresql80/timezone/Africa/Windhoek
-share/postgresql80/timezone/America/Adak
-share/postgresql80/timezone/America/Anchorage
-share/postgresql80/timezone/America/Anguilla
-share/postgresql80/timezone/America/Antigua
-share/postgresql80/timezone/America/Araguaina
-share/postgresql80/timezone/America/Argentina/Buenos_Aires
-share/postgresql80/timezone/America/Argentina/Catamarca
-share/postgresql80/timezone/America/Argentina/ComodRivadavia
-share/postgresql80/timezone/America/Argentina/Cordoba
-share/postgresql80/timezone/America/Argentina/Jujuy
-share/postgresql80/timezone/America/Argentina/La_Rioja
-share/postgresql80/timezone/America/Argentina/Mendoza
-share/postgresql80/timezone/America/Argentina/Rio_Gallegos
-share/postgresql80/timezone/America/Argentina/San_Juan
-share/postgresql80/timezone/America/Argentina/Tucuman
-share/postgresql80/timezone/America/Argentina/Ushuaia
-share/postgresql80/timezone/America/Aruba
-share/postgresql80/timezone/America/Asuncion
-share/postgresql80/timezone/America/Atka
-share/postgresql80/timezone/America/Bahia
-share/postgresql80/timezone/America/Barbados
-share/postgresql80/timezone/America/Belem
-share/postgresql80/timezone/America/Belize
-share/postgresql80/timezone/America/Boa_Vista
-share/postgresql80/timezone/America/Bogota
-share/postgresql80/timezone/America/Boise
-share/postgresql80/timezone/America/Buenos_Aires
-share/postgresql80/timezone/America/Cambridge_Bay
-share/postgresql80/timezone/America/Campo_Grande
-share/postgresql80/timezone/America/Cancun
-share/postgresql80/timezone/America/Caracas
-share/postgresql80/timezone/America/Catamarca
-share/postgresql80/timezone/America/Cayenne
-share/postgresql80/timezone/America/Cayman
-share/postgresql80/timezone/America/Chicago
-share/postgresql80/timezone/America/Chihuahua
-share/postgresql80/timezone/America/Cordoba
-share/postgresql80/timezone/America/Costa_Rica
-share/postgresql80/timezone/America/Cuiaba
-share/postgresql80/timezone/America/Curacao
-share/postgresql80/timezone/America/Danmarkshavn
-share/postgresql80/timezone/America/Dawson
-share/postgresql80/timezone/America/Dawson_Creek
-share/postgresql80/timezone/America/Denver
-share/postgresql80/timezone/America/Detroit
-share/postgresql80/timezone/America/Dominica
-share/postgresql80/timezone/America/Edmonton
-share/postgresql80/timezone/America/Eirunepe
-share/postgresql80/timezone/America/El_Salvador
-share/postgresql80/timezone/America/Ensenada
-share/postgresql80/timezone/America/Fort_Wayne
-share/postgresql80/timezone/America/Fortaleza
-share/postgresql80/timezone/America/Glace_Bay
-share/postgresql80/timezone/America/Godthab
-share/postgresql80/timezone/America/Goose_Bay
-share/postgresql80/timezone/America/Grand_Turk
-share/postgresql80/timezone/America/Grenada
-share/postgresql80/timezone/America/Guadeloupe
-share/postgresql80/timezone/America/Guatemala
-share/postgresql80/timezone/America/Guayaquil
-share/postgresql80/timezone/America/Guyana
-share/postgresql80/timezone/America/Halifax
-share/postgresql80/timezone/America/Havana
-share/postgresql80/timezone/America/Hermosillo
-share/postgresql80/timezone/America/Indiana/Indianapolis
-share/postgresql80/timezone/America/Indiana/Knox
-share/postgresql80/timezone/America/Indiana/Marengo
-share/postgresql80/timezone/America/Indiana/Vevay
-share/postgresql80/timezone/America/Indianapolis
-share/postgresql80/timezone/America/Inuvik
-share/postgresql80/timezone/America/Iqaluit
-share/postgresql80/timezone/America/Jamaica
-share/postgresql80/timezone/America/Jujuy
-share/postgresql80/timezone/America/Juneau
-share/postgresql80/timezone/America/Kentucky/Louisville
-share/postgresql80/timezone/America/Kentucky/Monticello
-share/postgresql80/timezone/America/Knox_IN
-share/postgresql80/timezone/America/La_Paz
-share/postgresql80/timezone/America/Lima
-share/postgresql80/timezone/America/Los_Angeles
-share/postgresql80/timezone/America/Louisville
-share/postgresql80/timezone/America/Maceio
-share/postgresql80/timezone/America/Managua
-share/postgresql80/timezone/America/Manaus
-share/postgresql80/timezone/America/Martinique
-share/postgresql80/timezone/America/Mazatlan
-share/postgresql80/timezone/America/Mendoza
-share/postgresql80/timezone/America/Menominee
-share/postgresql80/timezone/America/Merida
-share/postgresql80/timezone/America/Mexico_City
-share/postgresql80/timezone/America/Miquelon
-share/postgresql80/timezone/America/Monterrey
-share/postgresql80/timezone/America/Montevideo
-share/postgresql80/timezone/America/Montreal
-share/postgresql80/timezone/America/Montserrat
-share/postgresql80/timezone/America/Nassau
-share/postgresql80/timezone/America/New_York
-share/postgresql80/timezone/America/Nipigon
-share/postgresql80/timezone/America/Nome
-share/postgresql80/timezone/America/Noronha
-share/postgresql80/timezone/America/North_Dakota/Center
-share/postgresql80/timezone/America/Panama
-share/postgresql80/timezone/America/Pangnirtung
-share/postgresql80/timezone/America/Paramaribo
-share/postgresql80/timezone/America/Phoenix
-share/postgresql80/timezone/America/Port-au-Prince
-share/postgresql80/timezone/America/Port_of_Spain
-share/postgresql80/timezone/America/Porto_Acre
-share/postgresql80/timezone/America/Porto_Velho
-share/postgresql80/timezone/America/Puerto_Rico
-share/postgresql80/timezone/America/Rainy_River
-share/postgresql80/timezone/America/Rankin_Inlet
-share/postgresql80/timezone/America/Recife
-share/postgresql80/timezone/America/Regina
-share/postgresql80/timezone/America/Rio_Branco
-share/postgresql80/timezone/America/Rosario
-share/postgresql80/timezone/America/Santiago
-share/postgresql80/timezone/America/Santo_Domingo
-share/postgresql80/timezone/America/Sao_Paulo
-share/postgresql80/timezone/America/Scoresbysund
-share/postgresql80/timezone/America/Shiprock
-share/postgresql80/timezone/America/St_Johns
-share/postgresql80/timezone/America/St_Kitts
-share/postgresql80/timezone/America/St_Lucia
-share/postgresql80/timezone/America/St_Thomas
-share/postgresql80/timezone/America/St_Vincent
-share/postgresql80/timezone/America/Swift_Current
-share/postgresql80/timezone/America/Tegucigalpa
-share/postgresql80/timezone/America/Thule
-share/postgresql80/timezone/America/Thunder_Bay
-share/postgresql80/timezone/America/Tijuana
-share/postgresql80/timezone/America/Toronto
-share/postgresql80/timezone/America/Tortola
-share/postgresql80/timezone/America/Vancouver
-share/postgresql80/timezone/America/Virgin
-share/postgresql80/timezone/America/Whitehorse
-share/postgresql80/timezone/America/Winnipeg
-share/postgresql80/timezone/America/Yakutat
-share/postgresql80/timezone/America/Yellowknife
-share/postgresql80/timezone/Antarctica/Casey
-share/postgresql80/timezone/Antarctica/Davis
-share/postgresql80/timezone/Antarctica/DumontDUrville
-share/postgresql80/timezone/Antarctica/Mawson
-share/postgresql80/timezone/Antarctica/McMurdo
-share/postgresql80/timezone/Antarctica/Palmer
-share/postgresql80/timezone/Antarctica/Rothera
-share/postgresql80/timezone/Antarctica/South_Pole
-share/postgresql80/timezone/Antarctica/Syowa
-share/postgresql80/timezone/Antarctica/Vostok
-share/postgresql80/timezone/Arctic/Longyearbyen
-share/postgresql80/timezone/Asia/Aden
-share/postgresql80/timezone/Asia/Almaty
-share/postgresql80/timezone/Asia/Amman
-share/postgresql80/timezone/Asia/Anadyr
-share/postgresql80/timezone/Asia/Aqtau
-share/postgresql80/timezone/Asia/Aqtobe
-share/postgresql80/timezone/Asia/Ashgabat
-share/postgresql80/timezone/Asia/Ashkhabad
-share/postgresql80/timezone/Asia/Baghdad
-share/postgresql80/timezone/Asia/Bahrain
-share/postgresql80/timezone/Asia/Baku
-share/postgresql80/timezone/Asia/Bangkok
-share/postgresql80/timezone/Asia/Beirut
-share/postgresql80/timezone/Asia/Bishkek
-share/postgresql80/timezone/Asia/Brunei
-share/postgresql80/timezone/Asia/Calcutta
-share/postgresql80/timezone/Asia/Choibalsan
-share/postgresql80/timezone/Asia/Chongqing
-share/postgresql80/timezone/Asia/Chungking
-share/postgresql80/timezone/Asia/Colombo
-share/postgresql80/timezone/Asia/Dacca
-share/postgresql80/timezone/Asia/Damascus
-share/postgresql80/timezone/Asia/Dhaka
-share/postgresql80/timezone/Asia/Dili
-share/postgresql80/timezone/Asia/Dubai
-share/postgresql80/timezone/Asia/Dushanbe
-share/postgresql80/timezone/Asia/Gaza
-share/postgresql80/timezone/Asia/Harbin
-share/postgresql80/timezone/Asia/Hong_Kong
-share/postgresql80/timezone/Asia/Hovd
-share/postgresql80/timezone/Asia/Irkutsk
-share/postgresql80/timezone/Asia/Istanbul
-share/postgresql80/timezone/Asia/Jakarta
-share/postgresql80/timezone/Asia/Jayapura
-share/postgresql80/timezone/Asia/Jerusalem
-share/postgresql80/timezone/Asia/Kabul
-share/postgresql80/timezone/Asia/Kamchatka
-share/postgresql80/timezone/Asia/Karachi
-share/postgresql80/timezone/Asia/Kashgar
-share/postgresql80/timezone/Asia/Katmandu
-share/postgresql80/timezone/Asia/Krasnoyarsk
-share/postgresql80/timezone/Asia/Kuala_Lumpur
-share/postgresql80/timezone/Asia/Kuching
-share/postgresql80/timezone/Asia/Kuwait
-share/postgresql80/timezone/Asia/Macao
-share/postgresql80/timezone/Asia/Macau
-share/postgresql80/timezone/Asia/Magadan
-share/postgresql80/timezone/Asia/Makassar
-share/postgresql80/timezone/Asia/Manila
-share/postgresql80/timezone/Asia/Muscat
-share/postgresql80/timezone/Asia/Nicosia
-share/postgresql80/timezone/Asia/Novosibirsk
-share/postgresql80/timezone/Asia/Omsk
-share/postgresql80/timezone/Asia/Oral
-share/postgresql80/timezone/Asia/Phnom_Penh
-share/postgresql80/timezone/Asia/Pontianak
-share/postgresql80/timezone/Asia/Pyongyang
-share/postgresql80/timezone/Asia/Qatar
-share/postgresql80/timezone/Asia/Qyzylorda
-share/postgresql80/timezone/Asia/Rangoon
-share/postgresql80/timezone/Asia/Riyadh
-share/postgresql80/timezone/Asia/Riyadh87
-share/postgresql80/timezone/Asia/Riyadh88
-share/postgresql80/timezone/Asia/Riyadh89
-share/postgresql80/timezone/Asia/Saigon
-share/postgresql80/timezone/Asia/Sakhalin
-share/postgresql80/timezone/Asia/Samarkand
-share/postgresql80/timezone/Asia/Seoul
-share/postgresql80/timezone/Asia/Shanghai
-share/postgresql80/timezone/Asia/Singapore
-share/postgresql80/timezone/Asia/Taipei
-share/postgresql80/timezone/Asia/Tashkent
-share/postgresql80/timezone/Asia/Tbilisi
-share/postgresql80/timezone/Asia/Tehran
-share/postgresql80/timezone/Asia/Tel_Aviv
-share/postgresql80/timezone/Asia/Thimbu
-share/postgresql80/timezone/Asia/Thimphu
-share/postgresql80/timezone/Asia/Tokyo
-share/postgresql80/timezone/Asia/Ujung_Pandang
-share/postgresql80/timezone/Asia/Ulaanbaatar
-share/postgresql80/timezone/Asia/Ulan_Bator
-share/postgresql80/timezone/Asia/Urumqi
-share/postgresql80/timezone/Asia/Vientiane
-share/postgresql80/timezone/Asia/Vladivostok
-share/postgresql80/timezone/Asia/Yakutsk
-share/postgresql80/timezone/Asia/Yekaterinburg
-share/postgresql80/timezone/Asia/Yerevan
-share/postgresql80/timezone/Atlantic/Azores
-share/postgresql80/timezone/Atlantic/Bermuda
-share/postgresql80/timezone/Atlantic/Canary
-share/postgresql80/timezone/Atlantic/Cape_Verde
-share/postgresql80/timezone/Atlantic/Faeroe
-share/postgresql80/timezone/Atlantic/Jan_Mayen
-share/postgresql80/timezone/Atlantic/Madeira
-share/postgresql80/timezone/Atlantic/Reykjavik
-share/postgresql80/timezone/Atlantic/South_Georgia
-share/postgresql80/timezone/Atlantic/St_Helena
-share/postgresql80/timezone/Atlantic/Stanley
-share/postgresql80/timezone/Australia/ACT
-share/postgresql80/timezone/Australia/Adelaide
-share/postgresql80/timezone/Australia/Brisbane
-share/postgresql80/timezone/Australia/Broken_Hill
-share/postgresql80/timezone/Australia/Canberra
-share/postgresql80/timezone/Australia/Darwin
-share/postgresql80/timezone/Australia/Hobart
-share/postgresql80/timezone/Australia/LHI
-share/postgresql80/timezone/Australia/Lindeman
-share/postgresql80/timezone/Australia/Lord_Howe
-share/postgresql80/timezone/Australia/Melbourne
-share/postgresql80/timezone/Australia/NSW
-share/postgresql80/timezone/Australia/North
-share/postgresql80/timezone/Australia/Perth
-share/postgresql80/timezone/Australia/Queensland
-share/postgresql80/timezone/Australia/South
-share/postgresql80/timezone/Australia/Sydney
-share/postgresql80/timezone/Australia/Tasmania
-share/postgresql80/timezone/Australia/Victoria
-share/postgresql80/timezone/Australia/West
-share/postgresql80/timezone/Australia/Yancowinna
-share/postgresql80/timezone/Brazil/Acre
-share/postgresql80/timezone/Brazil/DeNoronha
-share/postgresql80/timezone/Brazil/East
-share/postgresql80/timezone/Brazil/West
-share/postgresql80/timezone/CET
-share/postgresql80/timezone/CST6CDT
-share/postgresql80/timezone/Canada/Atlantic
-share/postgresql80/timezone/Canada/Central
-share/postgresql80/timezone/Canada/East-Saskatchewan
-share/postgresql80/timezone/Canada/Eastern
-share/postgresql80/timezone/Canada/Mountain
-share/postgresql80/timezone/Canada/Newfoundland
-share/postgresql80/timezone/Canada/Pacific
-share/postgresql80/timezone/Canada/Saskatchewan
-share/postgresql80/timezone/Canada/Yukon
-share/postgresql80/timezone/Chile/Continental
-share/postgresql80/timezone/Chile/EasterIsland
-share/postgresql80/timezone/Cuba
-share/postgresql80/timezone/EET
-share/postgresql80/timezone/EST
-share/postgresql80/timezone/EST5EDT
-share/postgresql80/timezone/Egypt
-share/postgresql80/timezone/Eire
-share/postgresql80/timezone/Etc/GMT
-share/postgresql80/timezone/Etc/GMT+0
-share/postgresql80/timezone/Etc/GMT+1
-share/postgresql80/timezone/Etc/GMT+10
-share/postgresql80/timezone/Etc/GMT+11
-share/postgresql80/timezone/Etc/GMT+12
-share/postgresql80/timezone/Etc/GMT+2
-share/postgresql80/timezone/Etc/GMT+3
-share/postgresql80/timezone/Etc/GMT+4
-share/postgresql80/timezone/Etc/GMT+5
-share/postgresql80/timezone/Etc/GMT+6
-share/postgresql80/timezone/Etc/GMT+7
-share/postgresql80/timezone/Etc/GMT+8
-share/postgresql80/timezone/Etc/GMT+9
-share/postgresql80/timezone/Etc/GMT-0
-share/postgresql80/timezone/Etc/GMT-1
-share/postgresql80/timezone/Etc/GMT-10
-share/postgresql80/timezone/Etc/GMT-11
-share/postgresql80/timezone/Etc/GMT-12
-share/postgresql80/timezone/Etc/GMT-13
-share/postgresql80/timezone/Etc/GMT-14
-share/postgresql80/timezone/Etc/GMT-2
-share/postgresql80/timezone/Etc/GMT-3
-share/postgresql80/timezone/Etc/GMT-4
-share/postgresql80/timezone/Etc/GMT-5
-share/postgresql80/timezone/Etc/GMT-6
-share/postgresql80/timezone/Etc/GMT-7
-share/postgresql80/timezone/Etc/GMT-8
-share/postgresql80/timezone/Etc/GMT-9
-share/postgresql80/timezone/Etc/GMT0
-share/postgresql80/timezone/Etc/Greenwich
-share/postgresql80/timezone/Etc/UCT
-share/postgresql80/timezone/Etc/UTC
-share/postgresql80/timezone/Etc/Universal
-share/postgresql80/timezone/Etc/Zulu
-share/postgresql80/timezone/Europe/Amsterdam
-share/postgresql80/timezone/Europe/Andorra
-share/postgresql80/timezone/Europe/Athens
-share/postgresql80/timezone/Europe/Belfast
-share/postgresql80/timezone/Europe/Belgrade
-share/postgresql80/timezone/Europe/Berlin
-share/postgresql80/timezone/Europe/Bratislava
-share/postgresql80/timezone/Europe/Brussels
-share/postgresql80/timezone/Europe/Bucharest
-share/postgresql80/timezone/Europe/Budapest
-share/postgresql80/timezone/Europe/Chisinau
-share/postgresql80/timezone/Europe/Copenhagen
-share/postgresql80/timezone/Europe/Dublin
-share/postgresql80/timezone/Europe/Gibraltar
-share/postgresql80/timezone/Europe/Helsinki
-share/postgresql80/timezone/Europe/Istanbul
-share/postgresql80/timezone/Europe/Kaliningrad
-share/postgresql80/timezone/Europe/Kiev
-share/postgresql80/timezone/Europe/Lisbon
-share/postgresql80/timezone/Europe/Ljubljana
-share/postgresql80/timezone/Europe/London
-share/postgresql80/timezone/Europe/Luxembourg
-share/postgresql80/timezone/Europe/Madrid
-share/postgresql80/timezone/Europe/Malta
-share/postgresql80/timezone/Europe/Mariehamn
-share/postgresql80/timezone/Europe/Minsk
-share/postgresql80/timezone/Europe/Monaco
-share/postgresql80/timezone/Europe/Moscow
-share/postgresql80/timezone/Europe/Nicosia
-share/postgresql80/timezone/Europe/Oslo
-share/postgresql80/timezone/Europe/Paris
-share/postgresql80/timezone/Europe/Prague
-share/postgresql80/timezone/Europe/Riga
-share/postgresql80/timezone/Europe/Rome
-share/postgresql80/timezone/Europe/Samara
-share/postgresql80/timezone/Europe/San_Marino
-share/postgresql80/timezone/Europe/Sarajevo
-share/postgresql80/timezone/Europe/Simferopol
-share/postgresql80/timezone/Europe/Skopje
-share/postgresql80/timezone/Europe/Sofia
-share/postgresql80/timezone/Europe/Stockholm
-share/postgresql80/timezone/Europe/Tallinn
-share/postgresql80/timezone/Europe/Tirane
-share/postgresql80/timezone/Europe/Tiraspol
-share/postgresql80/timezone/Europe/Uzhgorod
-share/postgresql80/timezone/Europe/Vaduz
-share/postgresql80/timezone/Europe/Vatican
-share/postgresql80/timezone/Europe/Vienna
-share/postgresql80/timezone/Europe/Vilnius
-share/postgresql80/timezone/Europe/Warsaw
-share/postgresql80/timezone/Europe/Zagreb
-share/postgresql80/timezone/Europe/Zaporozhye
-share/postgresql80/timezone/Europe/Zurich
-share/postgresql80/timezone/Factory
-share/postgresql80/timezone/GB
-share/postgresql80/timezone/GB-Eire
-share/postgresql80/timezone/GMT
-share/postgresql80/timezone/GMT+0
-share/postgresql80/timezone/GMT-0
-share/postgresql80/timezone/GMT0
-share/postgresql80/timezone/Greenwich
-share/postgresql80/timezone/HST
-share/postgresql80/timezone/Hongkong
-share/postgresql80/timezone/Iceland
-share/postgresql80/timezone/Indian/Antananarivo
-share/postgresql80/timezone/Indian/Chagos
-share/postgresql80/timezone/Indian/Christmas
-share/postgresql80/timezone/Indian/Cocos
-share/postgresql80/timezone/Indian/Comoro
-share/postgresql80/timezone/Indian/Kerguelen
-share/postgresql80/timezone/Indian/Mahe
-share/postgresql80/timezone/Indian/Maldives
-share/postgresql80/timezone/Indian/Mauritius
-share/postgresql80/timezone/Indian/Mayotte
-share/postgresql80/timezone/Indian/Reunion
-share/postgresql80/timezone/Iran
-share/postgresql80/timezone/Israel
-share/postgresql80/timezone/Jamaica
-share/postgresql80/timezone/Japan
-share/postgresql80/timezone/Kwajalein
-share/postgresql80/timezone/Libya
-share/postgresql80/timezone/MET
-share/postgresql80/timezone/MST
-share/postgresql80/timezone/MST7MDT
-share/postgresql80/timezone/Mexico/BajaNorte
-share/postgresql80/timezone/Mexico/BajaSur
-share/postgresql80/timezone/Mexico/General
-share/postgresql80/timezone/Mideast/Riyadh87
-share/postgresql80/timezone/Mideast/Riyadh88
-share/postgresql80/timezone/Mideast/Riyadh89
-share/postgresql80/timezone/NZ
-share/postgresql80/timezone/NZ-CHAT
-share/postgresql80/timezone/Navajo
-share/postgresql80/timezone/PRC
-share/postgresql80/timezone/PST8PDT
-share/postgresql80/timezone/Pacific/Apia
-share/postgresql80/timezone/Pacific/Auckland
-share/postgresql80/timezone/Pacific/Chatham
-share/postgresql80/timezone/Pacific/Easter
-share/postgresql80/timezone/Pacific/Efate
-share/postgresql80/timezone/Pacific/Enderbury
-share/postgresql80/timezone/Pacific/Fakaofo
-share/postgresql80/timezone/Pacific/Fiji
-share/postgresql80/timezone/Pacific/Funafuti
-share/postgresql80/timezone/Pacific/Galapagos
-share/postgresql80/timezone/Pacific/Gambier
-share/postgresql80/timezone/Pacific/Guadalcanal
-share/postgresql80/timezone/Pacific/Guam
-share/postgresql80/timezone/Pacific/Honolulu
-share/postgresql80/timezone/Pacific/Johnston
-share/postgresql80/timezone/Pacific/Kiritimati
-share/postgresql80/timezone/Pacific/Kosrae
-share/postgresql80/timezone/Pacific/Kwajalein
-share/postgresql80/timezone/Pacific/Majuro
-share/postgresql80/timezone/Pacific/Marquesas
-share/postgresql80/timezone/Pacific/Midway
-share/postgresql80/timezone/Pacific/Nauru
-share/postgresql80/timezone/Pacific/Niue
-share/postgresql80/timezone/Pacific/Norfolk
-share/postgresql80/timezone/Pacific/Noumea
-share/postgresql80/timezone/Pacific/Pago_Pago
-share/postgresql80/timezone/Pacific/Palau
-share/postgresql80/timezone/Pacific/Pitcairn
-share/postgresql80/timezone/Pacific/Ponape
-share/postgresql80/timezone/Pacific/Port_Moresby
-share/postgresql80/timezone/Pacific/Rarotonga
-share/postgresql80/timezone/Pacific/Saipan
-share/postgresql80/timezone/Pacific/Samoa
-share/postgresql80/timezone/Pacific/Tahiti
-share/postgresql80/timezone/Pacific/Tarawa
-share/postgresql80/timezone/Pacific/Tongatapu
-share/postgresql80/timezone/Pacific/Truk
-share/postgresql80/timezone/Pacific/Wake
-share/postgresql80/timezone/Pacific/Wallis
-share/postgresql80/timezone/Pacific/Yap
-share/postgresql80/timezone/Poland
-share/postgresql80/timezone/Portugal
-share/postgresql80/timezone/ROC
-share/postgresql80/timezone/ROK
-share/postgresql80/timezone/Singapore
-share/postgresql80/timezone/SystemV/AST4
-share/postgresql80/timezone/SystemV/AST4ADT
-share/postgresql80/timezone/SystemV/CST6
-share/postgresql80/timezone/SystemV/CST6CDT
-share/postgresql80/timezone/SystemV/EST5
-share/postgresql80/timezone/SystemV/EST5EDT
-share/postgresql80/timezone/SystemV/HST10
-share/postgresql80/timezone/SystemV/MST7
-share/postgresql80/timezone/SystemV/MST7MDT
-share/postgresql80/timezone/SystemV/PST8
-share/postgresql80/timezone/SystemV/PST8PDT
-share/postgresql80/timezone/SystemV/YST9
-share/postgresql80/timezone/SystemV/YST9YDT
-share/postgresql80/timezone/Turkey
-share/postgresql80/timezone/UCT
-share/postgresql80/timezone/US/Alaska
-share/postgresql80/timezone/US/Aleutian
-share/postgresql80/timezone/US/Arizona
-share/postgresql80/timezone/US/Central
-share/postgresql80/timezone/US/East-Indiana
-share/postgresql80/timezone/US/Eastern
-share/postgresql80/timezone/US/Hawaii
-share/postgresql80/timezone/US/Indiana-Starke
-share/postgresql80/timezone/US/Michigan
-share/postgresql80/timezone/US/Mountain
-share/postgresql80/timezone/US/Pacific
-share/postgresql80/timezone/US/Pacific-New
-share/postgresql80/timezone/US/Samoa
-share/postgresql80/timezone/UTC
-share/postgresql80/timezone/Universal
-share/postgresql80/timezone/W-SU
-share/postgresql80/timezone/WET
-share/postgresql80/timezone/Zulu
-@dirrm share/postgresql80/timezone/US
-@dirrm share/postgresql80/timezone/SystemV
-@dirrm share/postgresql80/timezone/Pacific
-@dirrm share/postgresql80/timezone/Mideast
-@dirrm share/postgresql80/timezone/Mexico
-@dirrm share/postgresql80/timezone/Indian
-@dirrm share/postgresql80/timezone/Europe
-@dirrm share/postgresql80/timezone/Etc
-@dirrm share/postgresql80/timezone/Chile
-@dirrm share/postgresql80/timezone/Canada
-@dirrm share/postgresql80/timezone/Brazil
-@dirrm share/postgresql80/timezone/Australia
-@dirrm share/postgresql80/timezone/Atlantic
-@dirrm share/postgresql80/timezone/Asia
-@dirrm share/postgresql80/timezone/Arctic
-@dirrm share/postgresql80/timezone/Antarctica
-@dirrm share/postgresql80/timezone/America/North_Dakota
-@dirrm share/postgresql80/timezone/America/Kentucky
-@dirrm share/postgresql80/timezone/America/Indiana
-@dirrm share/postgresql80/timezone/America/Argentina
-@dirrm share/postgresql80/timezone/America
-@dirrm share/postgresql80/timezone/Africa
-@dirrm share/postgresql80/timezone
-@comment in postgresql80-client: @dirrm share/postgresql80
-@dirrm lib/postgresql
+@comment $NetBSD: PLIST,v 1.6 2005/08/05 19:43:45 jlam Exp $
+${PG_SUBPREFIX}bin/postgres
+${PG_SUBPREFIX}bin/postmaster
+${PG_SUBPREFIX}lib/postgresql/ascii_and_mic.la
+${PG_SUBPREFIX}lib/postgresql/cyrillic_and_mic.la
+${PG_SUBPREFIX}lib/postgresql/euc_cn_and_mic.la
+${PG_SUBPREFIX}lib/postgresql/euc_jp_and_sjis.la
+${PG_SUBPREFIX}lib/postgresql/euc_kr_and_mic.la
+${PG_SUBPREFIX}lib/postgresql/euc_tw_and_big5.la
+${PG_SUBPREFIX}lib/postgresql/latin2_and_win1250.la
+${PG_SUBPREFIX}lib/postgresql/latin_and_mic.la
+${PG_SUBPREFIX}lib/postgresql/plpgsql.la
+${PG_SUBPREFIX}lib/postgresql/utf8_and_ascii.la
+${PG_SUBPREFIX}lib/postgresql/utf8_and_big5.la
+${PG_SUBPREFIX}lib/postgresql/utf8_and_cyrillic.la
+${PG_SUBPREFIX}lib/postgresql/utf8_and_euc_cn.la
+${PG_SUBPREFIX}lib/postgresql/utf8_and_euc_jp.la
+${PG_SUBPREFIX}lib/postgresql/utf8_and_euc_kr.la
+${PG_SUBPREFIX}lib/postgresql/utf8_and_euc_tw.la
+${PG_SUBPREFIX}lib/postgresql/utf8_and_gb18030.la
+${PG_SUBPREFIX}lib/postgresql/utf8_and_gbk.la
+${PG_SUBPREFIX}lib/postgresql/utf8_and_iso8859.la
+${PG_SUBPREFIX}lib/postgresql/utf8_and_iso8859_1.la
+${PG_SUBPREFIX}lib/postgresql/utf8_and_johab.la
+${PG_SUBPREFIX}lib/postgresql/utf8_and_sjis.la
+${PG_SUBPREFIX}lib/postgresql/utf8_and_tcvn.la
+${PG_SUBPREFIX}lib/postgresql/utf8_and_uhc.la
+${PG_SUBPREFIX}lib/postgresql/utf8_and_win1250.la
+${PG_SUBPREFIX}lib/postgresql/utf8_and_win1256.la
+${PG_SUBPREFIX}lib/postgresql/utf8_and_win874.la
+${PG_SUBPREFIX}${PKGLOCALEDIR}/locale/af/LC_MESSAGES/postgres.mo
+${PG_SUBPREFIX}${PKGLOCALEDIR}/locale/cs/LC_MESSAGES/postgres.mo
+${PG_SUBPREFIX}${PKGLOCALEDIR}/locale/de/LC_MESSAGES/postgres.mo
+${PG_SUBPREFIX}${PKGLOCALEDIR}/locale/es/LC_MESSAGES/postgres.mo
+${PG_SUBPREFIX}${PKGLOCALEDIR}/locale/fr/LC_MESSAGES/postgres.mo
+${PG_SUBPREFIX}${PKGLOCALEDIR}/locale/hr/LC_MESSAGES/postgres.mo
+${PG_SUBPREFIX}${PKGLOCALEDIR}/locale/hu/LC_MESSAGES/postgres.mo
+${PG_SUBPREFIX}${PKGLOCALEDIR}/locale/it/LC_MESSAGES/postgres.mo
+${PG_SUBPREFIX}${PKGLOCALEDIR}/locale/ko/LC_MESSAGES/postgres.mo
+${PG_SUBPREFIX}${PKGLOCALEDIR}/locale/nb/LC_MESSAGES/postgres.mo
+${PG_SUBPREFIX}${PKGLOCALEDIR}/locale/pt_BR/LC_MESSAGES/postgres.mo
+${PG_SUBPREFIX}${PKGLOCALEDIR}/locale/ro/LC_MESSAGES/postgres.mo
+${PG_SUBPREFIX}${PKGLOCALEDIR}/locale/ru/LC_MESSAGES/postgres.mo
+${PG_SUBPREFIX}${PKGLOCALEDIR}/locale/sk/LC_MESSAGES/postgres.mo
+${PG_SUBPREFIX}${PKGLOCALEDIR}/locale/sl/LC_MESSAGES/postgres.mo
+${PG_SUBPREFIX}${PKGLOCALEDIR}/locale/sv/LC_MESSAGES/postgres.mo
+${PG_SUBPREFIX}${PKGLOCALEDIR}/locale/tr/LC_MESSAGES/postgres.mo
+${PG_SUBPREFIX}${PKGLOCALEDIR}/locale/zh_CN/LC_MESSAGES/postgres.mo
+${PG_SUBPREFIX}${PKGLOCALEDIR}/locale/zh_TW/LC_MESSAGES/postgres.mo
+${PG_SUBPREFIX}share/examples/rc.d/pgsql
+${PG_SUBPREFIX}share/postgresql/conversion_create.sql
+${PG_SUBPREFIX}share/postgresql/information_schema.sql
+${PG_SUBPREFIX}share/postgresql/pg_hba.conf.sample
+${PG_SUBPREFIX}share/postgresql/pg_ident.conf.sample
+${PG_SUBPREFIX}share/postgresql/postgres.bki
+${PG_SUBPREFIX}share/postgresql/postgres.description
+${PG_SUBPREFIX}share/postgresql/postgresql.conf.sample
+${PG_SUBPREFIX}share/postgresql/recovery.conf.sample
+${PG_SUBPREFIX}share/postgresql/sql_features.txt
+${PG_SUBPREFIX}share/postgresql/system_views.sql
+${PG_SUBPREFIX}share/postgresql/timezone/Africa/Abidjan
+${PG_SUBPREFIX}share/postgresql/timezone/Africa/Accra
+${PG_SUBPREFIX}share/postgresql/timezone/Africa/Addis_Ababa
+${PG_SUBPREFIX}share/postgresql/timezone/Africa/Algiers
+${PG_SUBPREFIX}share/postgresql/timezone/Africa/Asmera
+${PG_SUBPREFIX}share/postgresql/timezone/Africa/Bamako
+${PG_SUBPREFIX}share/postgresql/timezone/Africa/Bangui
+${PG_SUBPREFIX}share/postgresql/timezone/Africa/Banjul
+${PG_SUBPREFIX}share/postgresql/timezone/Africa/Bissau
+${PG_SUBPREFIX}share/postgresql/timezone/Africa/Blantyre
+${PG_SUBPREFIX}share/postgresql/timezone/Africa/Brazzaville
+${PG_SUBPREFIX}share/postgresql/timezone/Africa/Bujumbura
+${PG_SUBPREFIX}share/postgresql/timezone/Africa/Cairo
+${PG_SUBPREFIX}share/postgresql/timezone/Africa/Casablanca
+${PG_SUBPREFIX}share/postgresql/timezone/Africa/Ceuta
+${PG_SUBPREFIX}share/postgresql/timezone/Africa/Conakry
+${PG_SUBPREFIX}share/postgresql/timezone/Africa/Dakar
+${PG_SUBPREFIX}share/postgresql/timezone/Africa/Dar_es_Salaam
+${PG_SUBPREFIX}share/postgresql/timezone/Africa/Djibouti
+${PG_SUBPREFIX}share/postgresql/timezone/Africa/Douala
+${PG_SUBPREFIX}share/postgresql/timezone/Africa/El_Aaiun
+${PG_SUBPREFIX}share/postgresql/timezone/Africa/Freetown
+${PG_SUBPREFIX}share/postgresql/timezone/Africa/Gaborone
+${PG_SUBPREFIX}share/postgresql/timezone/Africa/Harare
+${PG_SUBPREFIX}share/postgresql/timezone/Africa/Johannesburg
+${PG_SUBPREFIX}share/postgresql/timezone/Africa/Kampala
+${PG_SUBPREFIX}share/postgresql/timezone/Africa/Khartoum
+${PG_SUBPREFIX}share/postgresql/timezone/Africa/Kigali
+${PG_SUBPREFIX}share/postgresql/timezone/Africa/Kinshasa
+${PG_SUBPREFIX}share/postgresql/timezone/Africa/Lagos
+${PG_SUBPREFIX}share/postgresql/timezone/Africa/Libreville
+${PG_SUBPREFIX}share/postgresql/timezone/Africa/Lome
+${PG_SUBPREFIX}share/postgresql/timezone/Africa/Luanda
+${PG_SUBPREFIX}share/postgresql/timezone/Africa/Lubumbashi
+${PG_SUBPREFIX}share/postgresql/timezone/Africa/Lusaka
+${PG_SUBPREFIX}share/postgresql/timezone/Africa/Malabo
+${PG_SUBPREFIX}share/postgresql/timezone/Africa/Maputo
+${PG_SUBPREFIX}share/postgresql/timezone/Africa/Maseru
+${PG_SUBPREFIX}share/postgresql/timezone/Africa/Mbabane
+${PG_SUBPREFIX}share/postgresql/timezone/Africa/Mogadishu
+${PG_SUBPREFIX}share/postgresql/timezone/Africa/Monrovia
+${PG_SUBPREFIX}share/postgresql/timezone/Africa/Nairobi
+${PG_SUBPREFIX}share/postgresql/timezone/Africa/Ndjamena
+${PG_SUBPREFIX}share/postgresql/timezone/Africa/Niamey
+${PG_SUBPREFIX}share/postgresql/timezone/Africa/Nouakchott
+${PG_SUBPREFIX}share/postgresql/timezone/Africa/Ouagadougou
+${PG_SUBPREFIX}share/postgresql/timezone/Africa/Porto-Novo
+${PG_SUBPREFIX}share/postgresql/timezone/Africa/Sao_Tome
+${PG_SUBPREFIX}share/postgresql/timezone/Africa/Timbuktu
+${PG_SUBPREFIX}share/postgresql/timezone/Africa/Tripoli
+${PG_SUBPREFIX}share/postgresql/timezone/Africa/Tunis
+${PG_SUBPREFIX}share/postgresql/timezone/Africa/Windhoek
+${PG_SUBPREFIX}share/postgresql/timezone/America/Adak
+${PG_SUBPREFIX}share/postgresql/timezone/America/Anchorage
+${PG_SUBPREFIX}share/postgresql/timezone/America/Anguilla
+${PG_SUBPREFIX}share/postgresql/timezone/America/Antigua
+${PG_SUBPREFIX}share/postgresql/timezone/America/Araguaina
+${PG_SUBPREFIX}share/postgresql/timezone/America/Argentina/Buenos_Aires
+${PG_SUBPREFIX}share/postgresql/timezone/America/Argentina/Catamarca
+${PG_SUBPREFIX}share/postgresql/timezone/America/Argentina/ComodRivadavia
+${PG_SUBPREFIX}share/postgresql/timezone/America/Argentina/Cordoba
+${PG_SUBPREFIX}share/postgresql/timezone/America/Argentina/Jujuy
+${PG_SUBPREFIX}share/postgresql/timezone/America/Argentina/La_Rioja
+${PG_SUBPREFIX}share/postgresql/timezone/America/Argentina/Mendoza
+${PG_SUBPREFIX}share/postgresql/timezone/America/Argentina/Rio_Gallegos
+${PG_SUBPREFIX}share/postgresql/timezone/America/Argentina/San_Juan
+${PG_SUBPREFIX}share/postgresql/timezone/America/Argentina/Tucuman
+${PG_SUBPREFIX}share/postgresql/timezone/America/Argentina/Ushuaia
+${PG_SUBPREFIX}share/postgresql/timezone/America/Aruba
+${PG_SUBPREFIX}share/postgresql/timezone/America/Asuncion
+${PG_SUBPREFIX}share/postgresql/timezone/America/Atka
+${PG_SUBPREFIX}share/postgresql/timezone/America/Bahia
+${PG_SUBPREFIX}share/postgresql/timezone/America/Barbados
+${PG_SUBPREFIX}share/postgresql/timezone/America/Belem
+${PG_SUBPREFIX}share/postgresql/timezone/America/Belize
+${PG_SUBPREFIX}share/postgresql/timezone/America/Boa_Vista
+${PG_SUBPREFIX}share/postgresql/timezone/America/Bogota
+${PG_SUBPREFIX}share/postgresql/timezone/America/Boise
+${PG_SUBPREFIX}share/postgresql/timezone/America/Buenos_Aires
+${PG_SUBPREFIX}share/postgresql/timezone/America/Cambridge_Bay
+${PG_SUBPREFIX}share/postgresql/timezone/America/Campo_Grande
+${PG_SUBPREFIX}share/postgresql/timezone/America/Cancun
+${PG_SUBPREFIX}share/postgresql/timezone/America/Caracas
+${PG_SUBPREFIX}share/postgresql/timezone/America/Catamarca
+${PG_SUBPREFIX}share/postgresql/timezone/America/Cayenne
+${PG_SUBPREFIX}share/postgresql/timezone/America/Cayman
+${PG_SUBPREFIX}share/postgresql/timezone/America/Chicago
+${PG_SUBPREFIX}share/postgresql/timezone/America/Chihuahua
+${PG_SUBPREFIX}share/postgresql/timezone/America/Cordoba
+${PG_SUBPREFIX}share/postgresql/timezone/America/Costa_Rica
+${PG_SUBPREFIX}share/postgresql/timezone/America/Cuiaba
+${PG_SUBPREFIX}share/postgresql/timezone/America/Curacao
+${PG_SUBPREFIX}share/postgresql/timezone/America/Danmarkshavn
+${PG_SUBPREFIX}share/postgresql/timezone/America/Dawson
+${PG_SUBPREFIX}share/postgresql/timezone/America/Dawson_Creek
+${PG_SUBPREFIX}share/postgresql/timezone/America/Denver
+${PG_SUBPREFIX}share/postgresql/timezone/America/Detroit
+${PG_SUBPREFIX}share/postgresql/timezone/America/Dominica
+${PG_SUBPREFIX}share/postgresql/timezone/America/Edmonton
+${PG_SUBPREFIX}share/postgresql/timezone/America/Eirunepe
+${PG_SUBPREFIX}share/postgresql/timezone/America/El_Salvador
+${PG_SUBPREFIX}share/postgresql/timezone/America/Ensenada
+${PG_SUBPREFIX}share/postgresql/timezone/America/Fort_Wayne
+${PG_SUBPREFIX}share/postgresql/timezone/America/Fortaleza
+${PG_SUBPREFIX}share/postgresql/timezone/America/Glace_Bay
+${PG_SUBPREFIX}share/postgresql/timezone/America/Godthab
+${PG_SUBPREFIX}share/postgresql/timezone/America/Goose_Bay
+${PG_SUBPREFIX}share/postgresql/timezone/America/Grand_Turk
+${PG_SUBPREFIX}share/postgresql/timezone/America/Grenada
+${PG_SUBPREFIX}share/postgresql/timezone/America/Guadeloupe
+${PG_SUBPREFIX}share/postgresql/timezone/America/Guatemala
+${PG_SUBPREFIX}share/postgresql/timezone/America/Guayaquil
+${PG_SUBPREFIX}share/postgresql/timezone/America/Guyana
+${PG_SUBPREFIX}share/postgresql/timezone/America/Halifax
+${PG_SUBPREFIX}share/postgresql/timezone/America/Havana
+${PG_SUBPREFIX}share/postgresql/timezone/America/Hermosillo
+${PG_SUBPREFIX}share/postgresql/timezone/America/Indiana/Indianapolis
+${PG_SUBPREFIX}share/postgresql/timezone/America/Indiana/Knox
+${PG_SUBPREFIX}share/postgresql/timezone/America/Indiana/Marengo
+${PG_SUBPREFIX}share/postgresql/timezone/America/Indiana/Vevay
+${PG_SUBPREFIX}share/postgresql/timezone/America/Indianapolis
+${PG_SUBPREFIX}share/postgresql/timezone/America/Inuvik
+${PG_SUBPREFIX}share/postgresql/timezone/America/Iqaluit
+${PG_SUBPREFIX}share/postgresql/timezone/America/Jamaica
+${PG_SUBPREFIX}share/postgresql/timezone/America/Jujuy
+${PG_SUBPREFIX}share/postgresql/timezone/America/Juneau
+${PG_SUBPREFIX}share/postgresql/timezone/America/Kentucky/Louisville
+${PG_SUBPREFIX}share/postgresql/timezone/America/Kentucky/Monticello
+${PG_SUBPREFIX}share/postgresql/timezone/America/Knox_IN
+${PG_SUBPREFIX}share/postgresql/timezone/America/La_Paz
+${PG_SUBPREFIX}share/postgresql/timezone/America/Lima
+${PG_SUBPREFIX}share/postgresql/timezone/America/Los_Angeles
+${PG_SUBPREFIX}share/postgresql/timezone/America/Louisville
+${PG_SUBPREFIX}share/postgresql/timezone/America/Maceio
+${PG_SUBPREFIX}share/postgresql/timezone/America/Managua
+${PG_SUBPREFIX}share/postgresql/timezone/America/Manaus
+${PG_SUBPREFIX}share/postgresql/timezone/America/Martinique
+${PG_SUBPREFIX}share/postgresql/timezone/America/Mazatlan
+${PG_SUBPREFIX}share/postgresql/timezone/America/Mendoza
+${PG_SUBPREFIX}share/postgresql/timezone/America/Menominee
+${PG_SUBPREFIX}share/postgresql/timezone/America/Merida
+${PG_SUBPREFIX}share/postgresql/timezone/America/Mexico_City
+${PG_SUBPREFIX}share/postgresql/timezone/America/Miquelon
+${PG_SUBPREFIX}share/postgresql/timezone/America/Monterrey
+${PG_SUBPREFIX}share/postgresql/timezone/America/Montevideo
+${PG_SUBPREFIX}share/postgresql/timezone/America/Montreal
+${PG_SUBPREFIX}share/postgresql/timezone/America/Montserrat
+${PG_SUBPREFIX}share/postgresql/timezone/America/Nassau
+${PG_SUBPREFIX}share/postgresql/timezone/America/New_York
+${PG_SUBPREFIX}share/postgresql/timezone/America/Nipigon
+${PG_SUBPREFIX}share/postgresql/timezone/America/Nome
+${PG_SUBPREFIX}share/postgresql/timezone/America/Noronha
+${PG_SUBPREFIX}share/postgresql/timezone/America/North_Dakota/Center
+${PG_SUBPREFIX}share/postgresql/timezone/America/Panama
+${PG_SUBPREFIX}share/postgresql/timezone/America/Pangnirtung
+${PG_SUBPREFIX}share/postgresql/timezone/America/Paramaribo
+${PG_SUBPREFIX}share/postgresql/timezone/America/Phoenix
+${PG_SUBPREFIX}share/postgresql/timezone/America/Port-au-Prince
+${PG_SUBPREFIX}share/postgresql/timezone/America/Port_of_Spain
+${PG_SUBPREFIX}share/postgresql/timezone/America/Porto_Acre
+${PG_SUBPREFIX}share/postgresql/timezone/America/Porto_Velho
+${PG_SUBPREFIX}share/postgresql/timezone/America/Puerto_Rico
+${PG_SUBPREFIX}share/postgresql/timezone/America/Rainy_River
+${PG_SUBPREFIX}share/postgresql/timezone/America/Rankin_Inlet
+${PG_SUBPREFIX}share/postgresql/timezone/America/Recife
+${PG_SUBPREFIX}share/postgresql/timezone/America/Regina
+${PG_SUBPREFIX}share/postgresql/timezone/America/Rio_Branco
+${PG_SUBPREFIX}share/postgresql/timezone/America/Rosario
+${PG_SUBPREFIX}share/postgresql/timezone/America/Santiago
+${PG_SUBPREFIX}share/postgresql/timezone/America/Santo_Domingo
+${PG_SUBPREFIX}share/postgresql/timezone/America/Sao_Paulo
+${PG_SUBPREFIX}share/postgresql/timezone/America/Scoresbysund
+${PG_SUBPREFIX}share/postgresql/timezone/America/Shiprock
+${PG_SUBPREFIX}share/postgresql/timezone/America/St_Johns
+${PG_SUBPREFIX}share/postgresql/timezone/America/St_Kitts
+${PG_SUBPREFIX}share/postgresql/timezone/America/St_Lucia
+${PG_SUBPREFIX}share/postgresql/timezone/America/St_Thomas
+${PG_SUBPREFIX}share/postgresql/timezone/America/St_Vincent
+${PG_SUBPREFIX}share/postgresql/timezone/America/Swift_Current
+${PG_SUBPREFIX}share/postgresql/timezone/America/Tegucigalpa
+${PG_SUBPREFIX}share/postgresql/timezone/America/Thule
+${PG_SUBPREFIX}share/postgresql/timezone/America/Thunder_Bay
+${PG_SUBPREFIX}share/postgresql/timezone/America/Tijuana
+${PG_SUBPREFIX}share/postgresql/timezone/America/Toronto
+${PG_SUBPREFIX}share/postgresql/timezone/America/Tortola
+${PG_SUBPREFIX}share/postgresql/timezone/America/Vancouver
+${PG_SUBPREFIX}share/postgresql/timezone/America/Virgin
+${PG_SUBPREFIX}share/postgresql/timezone/America/Whitehorse
+${PG_SUBPREFIX}share/postgresql/timezone/America/Winnipeg
+${PG_SUBPREFIX}share/postgresql/timezone/America/Yakutat
+${PG_SUBPREFIX}share/postgresql/timezone/America/Yellowknife
+${PG_SUBPREFIX}share/postgresql/timezone/Antarctica/Casey
+${PG_SUBPREFIX}share/postgresql/timezone/Antarctica/Davis
+${PG_SUBPREFIX}share/postgresql/timezone/Antarctica/DumontDUrville
+${PG_SUBPREFIX}share/postgresql/timezone/Antarctica/Mawson
+${PG_SUBPREFIX}share/postgresql/timezone/Antarctica/McMurdo
+${PG_SUBPREFIX}share/postgresql/timezone/Antarctica/Palmer
+${PG_SUBPREFIX}share/postgresql/timezone/Antarctica/Rothera
+${PG_SUBPREFIX}share/postgresql/timezone/Antarctica/South_Pole
+${PG_SUBPREFIX}share/postgresql/timezone/Antarctica/Syowa
+${PG_SUBPREFIX}share/postgresql/timezone/Antarctica/Vostok
+${PG_SUBPREFIX}share/postgresql/timezone/Arctic/Longyearbyen
+${PG_SUBPREFIX}share/postgresql/timezone/Asia/Aden
+${PG_SUBPREFIX}share/postgresql/timezone/Asia/Almaty
+${PG_SUBPREFIX}share/postgresql/timezone/Asia/Amman
+${PG_SUBPREFIX}share/postgresql/timezone/Asia/Anadyr
+${PG_SUBPREFIX}share/postgresql/timezone/Asia/Aqtau
+${PG_SUBPREFIX}share/postgresql/timezone/Asia/Aqtobe
+${PG_SUBPREFIX}share/postgresql/timezone/Asia/Ashgabat
+${PG_SUBPREFIX}share/postgresql/timezone/Asia/Ashkhabad
+${PG_SUBPREFIX}share/postgresql/timezone/Asia/Baghdad
+${PG_SUBPREFIX}share/postgresql/timezone/Asia/Bahrain
+${PG_SUBPREFIX}share/postgresql/timezone/Asia/Baku
+${PG_SUBPREFIX}share/postgresql/timezone/Asia/Bangkok
+${PG_SUBPREFIX}share/postgresql/timezone/Asia/Beirut
+${PG_SUBPREFIX}share/postgresql/timezone/Asia/Bishkek
+${PG_SUBPREFIX}share/postgresql/timezone/Asia/Brunei
+${PG_SUBPREFIX}share/postgresql/timezone/Asia/Calcutta
+${PG_SUBPREFIX}share/postgresql/timezone/Asia/Choibalsan
+${PG_SUBPREFIX}share/postgresql/timezone/Asia/Chongqing
+${PG_SUBPREFIX}share/postgresql/timezone/Asia/Chungking
+${PG_SUBPREFIX}share/postgresql/timezone/Asia/Colombo
+${PG_SUBPREFIX}share/postgresql/timezone/Asia/Dacca
+${PG_SUBPREFIX}share/postgresql/timezone/Asia/Damascus
+${PG_SUBPREFIX}share/postgresql/timezone/Asia/Dhaka
+${PG_SUBPREFIX}share/postgresql/timezone/Asia/Dili
+${PG_SUBPREFIX}share/postgresql/timezone/Asia/Dubai
+${PG_SUBPREFIX}share/postgresql/timezone/Asia/Dushanbe
+${PG_SUBPREFIX}share/postgresql/timezone/Asia/Gaza
+${PG_SUBPREFIX}share/postgresql/timezone/Asia/Harbin
+${PG_SUBPREFIX}share/postgresql/timezone/Asia/Hong_Kong
+${PG_SUBPREFIX}share/postgresql/timezone/Asia/Hovd
+${PG_SUBPREFIX}share/postgresql/timezone/Asia/Irkutsk
+${PG_SUBPREFIX}share/postgresql/timezone/Asia/Istanbul
+${PG_SUBPREFIX}share/postgresql/timezone/Asia/Jakarta
+${PG_SUBPREFIX}share/postgresql/timezone/Asia/Jayapura
+${PG_SUBPREFIX}share/postgresql/timezone/Asia/Jerusalem
+${PG_SUBPREFIX}share/postgresql/timezone/Asia/Kabul
+${PG_SUBPREFIX}share/postgresql/timezone/Asia/Kamchatka
+${PG_SUBPREFIX}share/postgresql/timezone/Asia/Karachi
+${PG_SUBPREFIX}share/postgresql/timezone/Asia/Kashgar
+${PG_SUBPREFIX}share/postgresql/timezone/Asia/Katmandu
+${PG_SUBPREFIX}share/postgresql/timezone/Asia/Krasnoyarsk
+${PG_SUBPREFIX}share/postgresql/timezone/Asia/Kuala_Lumpur
+${PG_SUBPREFIX}share/postgresql/timezone/Asia/Kuching
+${PG_SUBPREFIX}share/postgresql/timezone/Asia/Kuwait
+${PG_SUBPREFIX}share/postgresql/timezone/Asia/Macao
+${PG_SUBPREFIX}share/postgresql/timezone/Asia/Macau
+${PG_SUBPREFIX}share/postgresql/timezone/Asia/Magadan
+${PG_SUBPREFIX}share/postgresql/timezone/Asia/Makassar
+${PG_SUBPREFIX}share/postgresql/timezone/Asia/Manila
+${PG_SUBPREFIX}share/postgresql/timezone/Asia/Muscat
+${PG_SUBPREFIX}share/postgresql/timezone/Asia/Nicosia
+${PG_SUBPREFIX}share/postgresql/timezone/Asia/Novosibirsk
+${PG_SUBPREFIX}share/postgresql/timezone/Asia/Omsk
+${PG_SUBPREFIX}share/postgresql/timezone/Asia/Oral
+${PG_SUBPREFIX}share/postgresql/timezone/Asia/Phnom_Penh
+${PG_SUBPREFIX}share/postgresql/timezone/Asia/Pontianak
+${PG_SUBPREFIX}share/postgresql/timezone/Asia/Pyongyang
+${PG_SUBPREFIX}share/postgresql/timezone/Asia/Qatar
+${PG_SUBPREFIX}share/postgresql/timezone/Asia/Qyzylorda
+${PG_SUBPREFIX}share/postgresql/timezone/Asia/Rangoon
+${PG_SUBPREFIX}share/postgresql/timezone/Asia/Riyadh
+${PG_SUBPREFIX}share/postgresql/timezone/Asia/Riyadh87
+${PG_SUBPREFIX}share/postgresql/timezone/Asia/Riyadh88
+${PG_SUBPREFIX}share/postgresql/timezone/Asia/Riyadh89
+${PG_SUBPREFIX}share/postgresql/timezone/Asia/Saigon
+${PG_SUBPREFIX}share/postgresql/timezone/Asia/Sakhalin
+${PG_SUBPREFIX}share/postgresql/timezone/Asia/Samarkand
+${PG_SUBPREFIX}share/postgresql/timezone/Asia/Seoul
+${PG_SUBPREFIX}share/postgresql/timezone/Asia/Shanghai
+${PG_SUBPREFIX}share/postgresql/timezone/Asia/Singapore
+${PG_SUBPREFIX}share/postgresql/timezone/Asia/Taipei
+${PG_SUBPREFIX}share/postgresql/timezone/Asia/Tashkent
+${PG_SUBPREFIX}share/postgresql/timezone/Asia/Tbilisi
+${PG_SUBPREFIX}share/postgresql/timezone/Asia/Tehran
+${PG_SUBPREFIX}share/postgresql/timezone/Asia/Tel_Aviv
+${PG_SUBPREFIX}share/postgresql/timezone/Asia/Thimbu
+${PG_SUBPREFIX}share/postgresql/timezone/Asia/Thimphu
+${PG_SUBPREFIX}share/postgresql/timezone/Asia/Tokyo
+${PG_SUBPREFIX}share/postgresql/timezone/Asia/Ujung_Pandang
+${PG_SUBPREFIX}share/postgresql/timezone/Asia/Ulaanbaatar
+${PG_SUBPREFIX}share/postgresql/timezone/Asia/Ulan_Bator
+${PG_SUBPREFIX}share/postgresql/timezone/Asia/Urumqi
+${PG_SUBPREFIX}share/postgresql/timezone/Asia/Vientiane
+${PG_SUBPREFIX}share/postgresql/timezone/Asia/Vladivostok
+${PG_SUBPREFIX}share/postgresql/timezone/Asia/Yakutsk
+${PG_SUBPREFIX}share/postgresql/timezone/Asia/Yekaterinburg
+${PG_SUBPREFIX}share/postgresql/timezone/Asia/Yerevan
+${PG_SUBPREFIX}share/postgresql/timezone/Atlantic/Azores
+${PG_SUBPREFIX}share/postgresql/timezone/Atlantic/Bermuda
+${PG_SUBPREFIX}share/postgresql/timezone/Atlantic/Canary
+${PG_SUBPREFIX}share/postgresql/timezone/Atlantic/Cape_Verde
+${PG_SUBPREFIX}share/postgresql/timezone/Atlantic/Faeroe
+${PG_SUBPREFIX}share/postgresql/timezone/Atlantic/Jan_Mayen
+${PG_SUBPREFIX}share/postgresql/timezone/Atlantic/Madeira
+${PG_SUBPREFIX}share/postgresql/timezone/Atlantic/Reykjavik
+${PG_SUBPREFIX}share/postgresql/timezone/Atlantic/South_Georgia
+${PG_SUBPREFIX}share/postgresql/timezone/Atlantic/St_Helena
+${PG_SUBPREFIX}share/postgresql/timezone/Atlantic/Stanley
+${PG_SUBPREFIX}share/postgresql/timezone/Australia/ACT
+${PG_SUBPREFIX}share/postgresql/timezone/Australia/Adelaide
+${PG_SUBPREFIX}share/postgresql/timezone/Australia/Brisbane
+${PG_SUBPREFIX}share/postgresql/timezone/Australia/Broken_Hill
+${PG_SUBPREFIX}share/postgresql/timezone/Australia/Canberra
+${PG_SUBPREFIX}share/postgresql/timezone/Australia/Darwin
+${PG_SUBPREFIX}share/postgresql/timezone/Australia/Hobart
+${PG_SUBPREFIX}share/postgresql/timezone/Australia/LHI
+${PG_SUBPREFIX}share/postgresql/timezone/Australia/Lindeman
+${PG_SUBPREFIX}share/postgresql/timezone/Australia/Lord_Howe
+${PG_SUBPREFIX}share/postgresql/timezone/Australia/Melbourne
+${PG_SUBPREFIX}share/postgresql/timezone/Australia/NSW
+${PG_SUBPREFIX}share/postgresql/timezone/Australia/North
+${PG_SUBPREFIX}share/postgresql/timezone/Australia/Perth
+${PG_SUBPREFIX}share/postgresql/timezone/Australia/Queensland
+${PG_SUBPREFIX}share/postgresql/timezone/Australia/South
+${PG_SUBPREFIX}share/postgresql/timezone/Australia/Sydney
+${PG_SUBPREFIX}share/postgresql/timezone/Australia/Tasmania
+${PG_SUBPREFIX}share/postgresql/timezone/Australia/Victoria
+${PG_SUBPREFIX}share/postgresql/timezone/Australia/West
+${PG_SUBPREFIX}share/postgresql/timezone/Australia/Yancowinna
+${PG_SUBPREFIX}share/postgresql/timezone/Brazil/Acre
+${PG_SUBPREFIX}share/postgresql/timezone/Brazil/DeNoronha
+${PG_SUBPREFIX}share/postgresql/timezone/Brazil/East
+${PG_SUBPREFIX}share/postgresql/timezone/Brazil/West
+${PG_SUBPREFIX}share/postgresql/timezone/CET
+${PG_SUBPREFIX}share/postgresql/timezone/CST6CDT
+${PG_SUBPREFIX}share/postgresql/timezone/Canada/Atlantic
+${PG_SUBPREFIX}share/postgresql/timezone/Canada/Central
+${PG_SUBPREFIX}share/postgresql/timezone/Canada/East-Saskatchewan
+${PG_SUBPREFIX}share/postgresql/timezone/Canada/Eastern
+${PG_SUBPREFIX}share/postgresql/timezone/Canada/Mountain
+${PG_SUBPREFIX}share/postgresql/timezone/Canada/Newfoundland
+${PG_SUBPREFIX}share/postgresql/timezone/Canada/Pacific
+${PG_SUBPREFIX}share/postgresql/timezone/Canada/Saskatchewan
+${PG_SUBPREFIX}share/postgresql/timezone/Canada/Yukon
+${PG_SUBPREFIX}share/postgresql/timezone/Chile/Continental
+${PG_SUBPREFIX}share/postgresql/timezone/Chile/EasterIsland
+${PG_SUBPREFIX}share/postgresql/timezone/Cuba
+${PG_SUBPREFIX}share/postgresql/timezone/EET
+${PG_SUBPREFIX}share/postgresql/timezone/EST
+${PG_SUBPREFIX}share/postgresql/timezone/EST5EDT
+${PG_SUBPREFIX}share/postgresql/timezone/Egypt
+${PG_SUBPREFIX}share/postgresql/timezone/Eire
+${PG_SUBPREFIX}share/postgresql/timezone/Etc/GMT
+${PG_SUBPREFIX}share/postgresql/timezone/Etc/GMT+0
+${PG_SUBPREFIX}share/postgresql/timezone/Etc/GMT+1
+${PG_SUBPREFIX}share/postgresql/timezone/Etc/GMT+10
+${PG_SUBPREFIX}share/postgresql/timezone/Etc/GMT+11
+${PG_SUBPREFIX}share/postgresql/timezone/Etc/GMT+12
+${PG_SUBPREFIX}share/postgresql/timezone/Etc/GMT+2
+${PG_SUBPREFIX}share/postgresql/timezone/Etc/GMT+3
+${PG_SUBPREFIX}share/postgresql/timezone/Etc/GMT+4
+${PG_SUBPREFIX}share/postgresql/timezone/Etc/GMT+5
+${PG_SUBPREFIX}share/postgresql/timezone/Etc/GMT+6
+${PG_SUBPREFIX}share/postgresql/timezone/Etc/GMT+7
+${PG_SUBPREFIX}share/postgresql/timezone/Etc/GMT+8
+${PG_SUBPREFIX}share/postgresql/timezone/Etc/GMT+9
+${PG_SUBPREFIX}share/postgresql/timezone/Etc/GMT-0
+${PG_SUBPREFIX}share/postgresql/timezone/Etc/GMT-1
+${PG_SUBPREFIX}share/postgresql/timezone/Etc/GMT-10
+${PG_SUBPREFIX}share/postgresql/timezone/Etc/GMT-11
+${PG_SUBPREFIX}share/postgresql/timezone/Etc/GMT-12
+${PG_SUBPREFIX}share/postgresql/timezone/Etc/GMT-13
+${PG_SUBPREFIX}share/postgresql/timezone/Etc/GMT-14
+${PG_SUBPREFIX}share/postgresql/timezone/Etc/GMT-2
+${PG_SUBPREFIX}share/postgresql/timezone/Etc/GMT-3
+${PG_SUBPREFIX}share/postgresql/timezone/Etc/GMT-4
+${PG_SUBPREFIX}share/postgresql/timezone/Etc/GMT-5
+${PG_SUBPREFIX}share/postgresql/timezone/Etc/GMT-6
+${PG_SUBPREFIX}share/postgresql/timezone/Etc/GMT-7
+${PG_SUBPREFIX}share/postgresql/timezone/Etc/GMT-8
+${PG_SUBPREFIX}share/postgresql/timezone/Etc/GMT-9
+${PG_SUBPREFIX}share/postgresql/timezone/Etc/GMT0
+${PG_SUBPREFIX}share/postgresql/timezone/Etc/Greenwich
+${PG_SUBPREFIX}share/postgresql/timezone/Etc/UCT
+${PG_SUBPREFIX}share/postgresql/timezone/Etc/UTC
+${PG_SUBPREFIX}share/postgresql/timezone/Etc/Universal
+${PG_SUBPREFIX}share/postgresql/timezone/Etc/Zulu
+${PG_SUBPREFIX}share/postgresql/timezone/Europe/Amsterdam
+${PG_SUBPREFIX}share/postgresql/timezone/Europe/Andorra
+${PG_SUBPREFIX}share/postgresql/timezone/Europe/Athens
+${PG_SUBPREFIX}share/postgresql/timezone/Europe/Belfast
+${PG_SUBPREFIX}share/postgresql/timezone/Europe/Belgrade
+${PG_SUBPREFIX}share/postgresql/timezone/Europe/Berlin
+${PG_SUBPREFIX}share/postgresql/timezone/Europe/Bratislava
+${PG_SUBPREFIX}share/postgresql/timezone/Europe/Brussels
+${PG_SUBPREFIX}share/postgresql/timezone/Europe/Bucharest
+${PG_SUBPREFIX}share/postgresql/timezone/Europe/Budapest
+${PG_SUBPREFIX}share/postgresql/timezone/Europe/Chisinau
+${PG_SUBPREFIX}share/postgresql/timezone/Europe/Copenhagen
+${PG_SUBPREFIX}share/postgresql/timezone/Europe/Dublin
+${PG_SUBPREFIX}share/postgresql/timezone/Europe/Gibraltar
+${PG_SUBPREFIX}share/postgresql/timezone/Europe/Helsinki
+${PG_SUBPREFIX}share/postgresql/timezone/Europe/Istanbul
+${PG_SUBPREFIX}share/postgresql/timezone/Europe/Kaliningrad
+${PG_SUBPREFIX}share/postgresql/timezone/Europe/Kiev
+${PG_SUBPREFIX}share/postgresql/timezone/Europe/Lisbon
+${PG_SUBPREFIX}share/postgresql/timezone/Europe/Ljubljana
+${PG_SUBPREFIX}share/postgresql/timezone/Europe/London
+${PG_SUBPREFIX}share/postgresql/timezone/Europe/Luxembourg
+${PG_SUBPREFIX}share/postgresql/timezone/Europe/Madrid
+${PG_SUBPREFIX}share/postgresql/timezone/Europe/Malta
+${PG_SUBPREFIX}share/postgresql/timezone/Europe/Mariehamn
+${PG_SUBPREFIX}share/postgresql/timezone/Europe/Minsk
+${PG_SUBPREFIX}share/postgresql/timezone/Europe/Monaco
+${PG_SUBPREFIX}share/postgresql/timezone/Europe/Moscow
+${PG_SUBPREFIX}share/postgresql/timezone/Europe/Nicosia
+${PG_SUBPREFIX}share/postgresql/timezone/Europe/Oslo
+${PG_SUBPREFIX}share/postgresql/timezone/Europe/Paris
+${PG_SUBPREFIX}share/postgresql/timezone/Europe/Prague
+${PG_SUBPREFIX}share/postgresql/timezone/Europe/Riga
+${PG_SUBPREFIX}share/postgresql/timezone/Europe/Rome
+${PG_SUBPREFIX}share/postgresql/timezone/Europe/Samara
+${PG_SUBPREFIX}share/postgresql/timezone/Europe/San_Marino
+${PG_SUBPREFIX}share/postgresql/timezone/Europe/Sarajevo
+${PG_SUBPREFIX}share/postgresql/timezone/Europe/Simferopol
+${PG_SUBPREFIX}share/postgresql/timezone/Europe/Skopje
+${PG_SUBPREFIX}share/postgresql/timezone/Europe/Sofia
+${PG_SUBPREFIX}share/postgresql/timezone/Europe/Stockholm
+${PG_SUBPREFIX}share/postgresql/timezone/Europe/Tallinn
+${PG_SUBPREFIX}share/postgresql/timezone/Europe/Tirane
+${PG_SUBPREFIX}share/postgresql/timezone/Europe/Tiraspol
+${PG_SUBPREFIX}share/postgresql/timezone/Europe/Uzhgorod
+${PG_SUBPREFIX}share/postgresql/timezone/Europe/Vaduz
+${PG_SUBPREFIX}share/postgresql/timezone/Europe/Vatican
+${PG_SUBPREFIX}share/postgresql/timezone/Europe/Vienna
+${PG_SUBPREFIX}share/postgresql/timezone/Europe/Vilnius
+${PG_SUBPREFIX}share/postgresql/timezone/Europe/Warsaw
+${PG_SUBPREFIX}share/postgresql/timezone/Europe/Zagreb
+${PG_SUBPREFIX}share/postgresql/timezone/Europe/Zaporozhye
+${PG_SUBPREFIX}share/postgresql/timezone/Europe/Zurich
+${PG_SUBPREFIX}share/postgresql/timezone/Factory
+${PG_SUBPREFIX}share/postgresql/timezone/GB
+${PG_SUBPREFIX}share/postgresql/timezone/GB-Eire
+${PG_SUBPREFIX}share/postgresql/timezone/GMT
+${PG_SUBPREFIX}share/postgresql/timezone/GMT+0
+${PG_SUBPREFIX}share/postgresql/timezone/GMT-0
+${PG_SUBPREFIX}share/postgresql/timezone/GMT0
+${PG_SUBPREFIX}share/postgresql/timezone/Greenwich
+${PG_SUBPREFIX}share/postgresql/timezone/HST
+${PG_SUBPREFIX}share/postgresql/timezone/Hongkong
+${PG_SUBPREFIX}share/postgresql/timezone/Iceland
+${PG_SUBPREFIX}share/postgresql/timezone/Indian/Antananarivo
+${PG_SUBPREFIX}share/postgresql/timezone/Indian/Chagos
+${PG_SUBPREFIX}share/postgresql/timezone/Indian/Christmas
+${PG_SUBPREFIX}share/postgresql/timezone/Indian/Cocos
+${PG_SUBPREFIX}share/postgresql/timezone/Indian/Comoro
+${PG_SUBPREFIX}share/postgresql/timezone/Indian/Kerguelen
+${PG_SUBPREFIX}share/postgresql/timezone/Indian/Mahe
+${PG_SUBPREFIX}share/postgresql/timezone/Indian/Maldives
+${PG_SUBPREFIX}share/postgresql/timezone/Indian/Mauritius
+${PG_SUBPREFIX}share/postgresql/timezone/Indian/Mayotte
+${PG_SUBPREFIX}share/postgresql/timezone/Indian/Reunion
+${PG_SUBPREFIX}share/postgresql/timezone/Iran
+${PG_SUBPREFIX}share/postgresql/timezone/Israel
+${PG_SUBPREFIX}share/postgresql/timezone/Jamaica
+${PG_SUBPREFIX}share/postgresql/timezone/Japan
+${PG_SUBPREFIX}share/postgresql/timezone/Kwajalein
+${PG_SUBPREFIX}share/postgresql/timezone/Libya
+${PG_SUBPREFIX}share/postgresql/timezone/MET
+${PG_SUBPREFIX}share/postgresql/timezone/MST
+${PG_SUBPREFIX}share/postgresql/timezone/MST7MDT
+${PG_SUBPREFIX}share/postgresql/timezone/Mexico/BajaNorte
+${PG_SUBPREFIX}share/postgresql/timezone/Mexico/BajaSur
+${PG_SUBPREFIX}share/postgresql/timezone/Mexico/General
+${PG_SUBPREFIX}share/postgresql/timezone/Mideast/Riyadh87
+${PG_SUBPREFIX}share/postgresql/timezone/Mideast/Riyadh88
+${PG_SUBPREFIX}share/postgresql/timezone/Mideast/Riyadh89
+${PG_SUBPREFIX}share/postgresql/timezone/NZ
+${PG_SUBPREFIX}share/postgresql/timezone/NZ-CHAT
+${PG_SUBPREFIX}share/postgresql/timezone/Navajo
+${PG_SUBPREFIX}share/postgresql/timezone/PRC
+${PG_SUBPREFIX}share/postgresql/timezone/PST8PDT
+${PG_SUBPREFIX}share/postgresql/timezone/Pacific/Apia
+${PG_SUBPREFIX}share/postgresql/timezone/Pacific/Auckland
+${PG_SUBPREFIX}share/postgresql/timezone/Pacific/Chatham
+${PG_SUBPREFIX}share/postgresql/timezone/Pacific/Easter
+${PG_SUBPREFIX}share/postgresql/timezone/Pacific/Efate
+${PG_SUBPREFIX}share/postgresql/timezone/Pacific/Enderbury
+${PG_SUBPREFIX}share/postgresql/timezone/Pacific/Fakaofo
+${PG_SUBPREFIX}share/postgresql/timezone/Pacific/Fiji
+${PG_SUBPREFIX}share/postgresql/timezone/Pacific/Funafuti
+${PG_SUBPREFIX}share/postgresql/timezone/Pacific/Galapagos
+${PG_SUBPREFIX}share/postgresql/timezone/Pacific/Gambier
+${PG_SUBPREFIX}share/postgresql/timezone/Pacific/Guadalcanal
+${PG_SUBPREFIX}share/postgresql/timezone/Pacific/Guam
+${PG_SUBPREFIX}share/postgresql/timezone/Pacific/Honolulu
+${PG_SUBPREFIX}share/postgresql/timezone/Pacific/Johnston
+${PG_SUBPREFIX}share/postgresql/timezone/Pacific/Kiritimati
+${PG_SUBPREFIX}share/postgresql/timezone/Pacific/Kosrae
+${PG_SUBPREFIX}share/postgresql/timezone/Pacific/Kwajalein
+${PG_SUBPREFIX}share/postgresql/timezone/Pacific/Majuro
+${PG_SUBPREFIX}share/postgresql/timezone/Pacific/Marquesas
+${PG_SUBPREFIX}share/postgresql/timezone/Pacific/Midway
+${PG_SUBPREFIX}share/postgresql/timezone/Pacific/Nauru
+${PG_SUBPREFIX}share/postgresql/timezone/Pacific/Niue
+${PG_SUBPREFIX}share/postgresql/timezone/Pacific/Norfolk
+${PG_SUBPREFIX}share/postgresql/timezone/Pacific/Noumea
+${PG_SUBPREFIX}share/postgresql/timezone/Pacific/Pago_Pago
+${PG_SUBPREFIX}share/postgresql/timezone/Pacific/Palau
+${PG_SUBPREFIX}share/postgresql/timezone/Pacific/Pitcairn
+${PG_SUBPREFIX}share/postgresql/timezone/Pacific/Ponape
+${PG_SUBPREFIX}share/postgresql/timezone/Pacific/Port_Moresby
+${PG_SUBPREFIX}share/postgresql/timezone/Pacific/Rarotonga
+${PG_SUBPREFIX}share/postgresql/timezone/Pacific/Saipan
+${PG_SUBPREFIX}share/postgresql/timezone/Pacific/Samoa
+${PG_SUBPREFIX}share/postgresql/timezone/Pacific/Tahiti
+${PG_SUBPREFIX}share/postgresql/timezone/Pacific/Tarawa
+${PG_SUBPREFIX}share/postgresql/timezone/Pacific/Tongatapu
+${PG_SUBPREFIX}share/postgresql/timezone/Pacific/Truk
+${PG_SUBPREFIX}share/postgresql/timezone/Pacific/Wake
+${PG_SUBPREFIX}share/postgresql/timezone/Pacific/Wallis
+${PG_SUBPREFIX}share/postgresql/timezone/Pacific/Yap
+${PG_SUBPREFIX}share/postgresql/timezone/Poland
+${PG_SUBPREFIX}share/postgresql/timezone/Portugal
+${PG_SUBPREFIX}share/postgresql/timezone/ROC
+${PG_SUBPREFIX}share/postgresql/timezone/ROK
+${PG_SUBPREFIX}share/postgresql/timezone/Singapore
+${PG_SUBPREFIX}share/postgresql/timezone/SystemV/AST4
+${PG_SUBPREFIX}share/postgresql/timezone/SystemV/AST4ADT
+${PG_SUBPREFIX}share/postgresql/timezone/SystemV/CST6
+${PG_SUBPREFIX}share/postgresql/timezone/SystemV/CST6CDT
+${PG_SUBPREFIX}share/postgresql/timezone/SystemV/EST5
+${PG_SUBPREFIX}share/postgresql/timezone/SystemV/EST5EDT
+${PG_SUBPREFIX}share/postgresql/timezone/SystemV/HST10
+${PG_SUBPREFIX}share/postgresql/timezone/SystemV/MST7
+${PG_SUBPREFIX}share/postgresql/timezone/SystemV/MST7MDT
+${PG_SUBPREFIX}share/postgresql/timezone/SystemV/PST8
+${PG_SUBPREFIX}share/postgresql/timezone/SystemV/PST8PDT
+${PG_SUBPREFIX}share/postgresql/timezone/SystemV/YST9
+${PG_SUBPREFIX}share/postgresql/timezone/SystemV/YST9YDT
+${PG_SUBPREFIX}share/postgresql/timezone/Turkey
+${PG_SUBPREFIX}share/postgresql/timezone/UCT
+${PG_SUBPREFIX}share/postgresql/timezone/US/Alaska
+${PG_SUBPREFIX}share/postgresql/timezone/US/Aleutian
+${PG_SUBPREFIX}share/postgresql/timezone/US/Arizona
+${PG_SUBPREFIX}share/postgresql/timezone/US/Central
+${PG_SUBPREFIX}share/postgresql/timezone/US/East-Indiana
+${PG_SUBPREFIX}share/postgresql/timezone/US/Eastern
+${PG_SUBPREFIX}share/postgresql/timezone/US/Hawaii
+${PG_SUBPREFIX}share/postgresql/timezone/US/Indiana-Starke
+${PG_SUBPREFIX}share/postgresql/timezone/US/Michigan
+${PG_SUBPREFIX}share/postgresql/timezone/US/Mountain
+${PG_SUBPREFIX}share/postgresql/timezone/US/Pacific
+${PG_SUBPREFIX}share/postgresql/timezone/US/Pacific-New
+${PG_SUBPREFIX}share/postgresql/timezone/US/Samoa
+${PG_SUBPREFIX}share/postgresql/timezone/UTC
+${PG_SUBPREFIX}share/postgresql/timezone/Universal
+${PG_SUBPREFIX}share/postgresql/timezone/W-SU
+${PG_SUBPREFIX}share/postgresql/timezone/WET
+${PG_SUBPREFIX}share/postgresql/timezone/Zulu
+@dirrm ${PG_SUBPREFIX}share/postgresql/timezone/US
+@dirrm ${PG_SUBPREFIX}share/postgresql/timezone/SystemV
+@dirrm ${PG_SUBPREFIX}share/postgresql/timezone/Pacific
+@dirrm ${PG_SUBPREFIX}share/postgresql/timezone/Mideast
+@dirrm ${PG_SUBPREFIX}share/postgresql/timezone/Mexico
+@dirrm ${PG_SUBPREFIX}share/postgresql/timezone/Indian
+@dirrm ${PG_SUBPREFIX}share/postgresql/timezone/Europe
+@dirrm ${PG_SUBPREFIX}share/postgresql/timezone/Etc
+@dirrm ${PG_SUBPREFIX}share/postgresql/timezone/Chile
+@dirrm ${PG_SUBPREFIX}share/postgresql/timezone/Canada
+@dirrm ${PG_SUBPREFIX}share/postgresql/timezone/Brazil
+@dirrm ${PG_SUBPREFIX}share/postgresql/timezone/Australia
+@dirrm ${PG_SUBPREFIX}share/postgresql/timezone/Atlantic
+@dirrm ${PG_SUBPREFIX}share/postgresql/timezone/Asia
+@dirrm ${PG_SUBPREFIX}share/postgresql/timezone/Arctic
+@dirrm ${PG_SUBPREFIX}share/postgresql/timezone/Antarctica
+@dirrm ${PG_SUBPREFIX}share/postgresql/timezone/America/North_Dakota
+@dirrm ${PG_SUBPREFIX}share/postgresql/timezone/America/Kentucky
+@dirrm ${PG_SUBPREFIX}share/postgresql/timezone/America/Indiana
+@dirrm ${PG_SUBPREFIX}share/postgresql/timezone/America/Argentina
+@dirrm ${PG_SUBPREFIX}share/postgresql/timezone/America
+@dirrm ${PG_SUBPREFIX}share/postgresql/timezone/Africa
+@dirrm ${PG_SUBPREFIX}share/postgresql/timezone
+@comment in postgresql-client: @dirrm ${PG_SUBPREFIX}share/postgresql
+@dirrm ${PG_SUBPREFIX}lib/postgresql
diff --git a/databases/postgresql80-server/files/pgsql.sh b/databases/postgresql80-server/files/pgsql.sh
index a52422dd14a..3ffae896e63 100644
--- a/databases/postgresql80-server/files/pgsql.sh
+++ b/databases/postgresql80-server/files/pgsql.sh
@@ -1,6 +1,6 @@
#!@RCD_SCRIPTS_SHELL@
#
-# $NetBSD: pgsql.sh,v 1.3 2005/07/09 04:24:52 cjs Exp $
+# $NetBSD: pgsql.sh,v 1.4 2005/08/05 19:43:45 jlam Exp $
#
# PostgreSQL database rc.d control script
#
@@ -31,8 +31,8 @@ pgsql_user="@PGUSER@"
pgsql_group="@PGGROUP@"
eval pgsql_home="~$pgsql_user"
-command="@PREFIX@/bin/postmaster"
-ctl_command="@PREFIX@/bin/pg_ctl"
+command="@PG_PREFIX@/bin/postmaster"
+ctl_command="@PG_PREFIX@/bin/pg_ctl"
extra_commands="initdb"
if [ -f /etc/rc.subr -a -d /etc/rc.d -a -f /etc/rc.d/DAEMON ]; then
@@ -63,7 +63,7 @@ pgsql_precmd()
pgsql_initdb()
{
- initdb="@PREFIX@/bin/initdb"
+ initdb="@PG_PREFIX@/bin/initdb"
if [ ! -x ${initdb} ]; then
return 1