Fri Oct 25 12:01:20 2019 UTC ()
postgresql10: make nls support optional


(triaxx)
diff -r1.15 -r1.16 pkgsrc/databases/postgresql10/Makefile.common
diff -r1.2 -r1.3 pkgsrc/databases/postgresql10/options.mk
diff -r1.7 -r1.8 pkgsrc/databases/postgresql10-client/PLIST
diff -r1.2 -r1.3 pkgsrc/databases/postgresql10-plperl/PLIST
diff -r1.3 -r1.4 pkgsrc/databases/postgresql10-plpython/PLIST
diff -r1.3 -r1.4 pkgsrc/databases/postgresql10-pltcl/PLIST
diff -r1.6 -r1.7 pkgsrc/databases/postgresql10-server/Makefile
diff -r1.7 -r1.8 pkgsrc/databases/postgresql10-server/PLIST

cvs diff -r1.15 -r1.16 pkgsrc/databases/postgresql10/Attic/Makefile.common (expand / switch to unified diff)

--- pkgsrc/databases/postgresql10/Attic/Makefile.common 2019/10/07 19:28:28 1.15
+++ pkgsrc/databases/postgresql10/Attic/Makefile.common 2019/10/25 12:01:19 1.16
@@ -1,14 +1,14 @@ @@ -1,14 +1,14 @@
1# $NetBSD: Makefile.common,v 1.15 2019/10/07 19:28:28 adam Exp $ 1# $NetBSD: Makefile.common,v 1.16 2019/10/25 12:01:19 triaxx Exp $
2# 2#
3# This Makefile fragment is included by all PostgreSQL packages built from 3# This Makefile fragment is included by all PostgreSQL packages built from
4# the main sources of the PostgreSQL distribution except jdbc-postgresql. 4# the main sources of the PostgreSQL distribution except jdbc-postgresql.
5# 5#
6# The PostgreSQL package naming scheme, aside from the obvious piecewise 6# The PostgreSQL package naming scheme, aside from the obvious piecewise
7# packages, is as follows: 7# packages, is as follows:
8# <lang>-postgresql client-side interface to PostgreSQL 8# <lang>-postgresql client-side interface to PostgreSQL
9# postgresql-<lang> server-side module for PostgreSQL backend 9# postgresql-<lang> server-side module for PostgreSQL backend
10# 10#
11# used by databases/postgresql10-client/Makefile 11# used by databases/postgresql10-client/Makefile
12# used by databases/postgresql10-contrib/Makefile 12# used by databases/postgresql10-contrib/Makefile
13# used by databases/postgresql10-docs/Makefile 13# used by databases/postgresql10-docs/Makefile
14# used by databases/postgresql10-plperl/Makefile 14# used by databases/postgresql10-plperl/Makefile
@@ -27,61 +27,56 @@ LICENSE= postgresql-license @@ -27,61 +27,56 @@ LICENSE= postgresql-license
27 27
28CONFLICTS+= postgresql-[0-9]* 28CONFLICTS+= postgresql-[0-9]*
29CONFLICTS+= postgresql[2-9][0-9]-[0-9]* 29CONFLICTS+= postgresql[2-9][0-9]-[0-9]*
30 30
31.if !empty(PKGNAME:M*-*-*) 31.if !empty(PKGNAME:M*-*-*)
32module= ${PKGNAME:C/-[0-9].*$//:C/^.*-//} 32module= ${PKGNAME:C/-[0-9].*$//:C/^.*-//}
33CONFLICTS+= postgresql[2-9][0-9]-${module}-[0-9]* 33CONFLICTS+= postgresql[2-9][0-9]-${module}-[0-9]*
34.endif 34.endif
35 35
36DISTINFO_FILE?= ${.CURDIR}/../../databases/postgresql10/distinfo 36DISTINFO_FILE?= ${.CURDIR}/../../databases/postgresql10/distinfo
37COMMON_FILESDIR?= ${.CURDIR}/../../databases/postgresql10/files 37COMMON_FILESDIR?= ${.CURDIR}/../../databases/postgresql10/files
38PATCHDIR?= ${.CURDIR}/../../databases/postgresql10/patches 38PATCHDIR?= ${.CURDIR}/../../databases/postgresql10/patches
39 39
40USE_PKGLOCALEDIR= yes 40USE_TOOLS+= bison gmake lex
41USE_TOOLS+= bison gmake lex msgfmt 
42PKG_SYSCONFSUBDIR= postgresql 41PKG_SYSCONFSUBDIR= postgresql
43 42
44.include "../../mk/bsd.prefs.mk" 43.include "../../mk/bsd.prefs.mk"
45 44
46PG_TEMPLATE.SunOS= solaris 45PG_TEMPLATE.SunOS= solaris
47PG_TEMPLATE.IRIX= irix5 46PG_TEMPLATE.IRIX= irix5
48PG_TEMPLATE.MirBSD= openbsd 47PG_TEMPLATE.MirBSD= openbsd
49.if !defined(PG_TEMPLATE.${OPSYS}) 48.if !defined(PG_TEMPLATE.${OPSYS})
50PG_TEMPLATE.${OPSYS}= ${LOWER_OPSYS} 49PG_TEMPLATE.${OPSYS}= ${LOWER_OPSYS}
51.endif 50.endif
52 51
53PG_DATA_DIR= ${PREFIX}/share/postgresql 52PG_DATA_DIR= ${PREFIX}/share/postgresql
54PG_DOC_DIR= ${PREFIX}/share/doc/postgresql 53PG_DOC_DIR= ${PREFIX}/share/doc/postgresql
55PG_LOCALE_DIR= ${PREFIX}/${PKGLOCALEDIR}/locale 54PG_LOCALE_DIR= ${PREFIX}/${PKGLOCALEDIR}/locale
56PG_ETC_DIR= ${PKG_SYSCONFDIR} 55PG_ETC_DIR= ${PKG_SYSCONFDIR}
57 56
58GNU_CONFIGURE= yes 57GNU_CONFIGURE= yes
59CONFIGURE_ARGS+= --sysconfdir=${PG_ETC_DIR} 58CONFIGURE_ARGS+= --sysconfdir=${PG_ETC_DIR}
60CONFIGURE_ARGS+= --datadir=${PG_DATA_DIR} 59CONFIGURE_ARGS+= --datadir=${PG_DATA_DIR}
61CONFIGURE_ARGS+= --docdir=${PG_DOC_DIR} 60CONFIGURE_ARGS+= --docdir=${PG_DOC_DIR}
62CONFIGURE_ARGS+= --localedir=${PG_LOCALE_DIR} 61CONFIGURE_ARGS+= --localedir=${PG_LOCALE_DIR}
63CONFIGURE_ARGS+= --with-template=${PG_TEMPLATE.${OPSYS}} 62CONFIGURE_ARGS+= --with-template=${PG_TEMPLATE.${OPSYS}}
64 63
65CONFIGURE_ARGS+= --enable-nls 
66CONFIGURE_ARGS+= --with-libxml 64CONFIGURE_ARGS+= --with-libxml
67CONFIGURE_ARGS+= --with-readline 65CONFIGURE_ARGS+= --with-readline
68CONFIGURE_ARGS+= --without-perl 66CONFIGURE_ARGS+= --without-perl
69CONFIGURE_ARGS+= --without-python 67CONFIGURE_ARGS+= --without-python
70CONFIGURE_ARGS+= --without-tcl 68CONFIGURE_ARGS+= --without-tcl
71 69
72# avoid pointing to a wrapper 
73CONFIGURE_ENV+= MSGFMT=${TOOLS_PATH.msgfmt} 
74 
75# sys/ucred.h shouldn't be included on Solaris, causes conflicts between 70# sys/ucred.h shouldn't be included on Solaris, causes conflicts between
76# procfs and largefile. 71# procfs and largefile.
77CONFIGURE_ENV.SunOS+= ac_cv_header_sys_ucred_h=no 72CONFIGURE_ENV.SunOS+= ac_cv_header_sys_ucred_h=no
78 73
79# pkgsrc silently filters the --as-needed linker arg, but that makes 74# pkgsrc silently filters the --as-needed linker arg, but that makes
80# it leak into the pgxs Makefiles and compromises manual building 75# it leak into the pgxs Makefiles and compromises manual building
81# against PostgreSQL files installed. Disable it here to prevent 76# against PostgreSQL files installed. Disable it here to prevent
82# that from happening. 77# that from happening.
83.if ${OPSYS} == "SunOS" || ${OPSYS} == "Darwin" 78.if ${OPSYS} == "SunOS" || ${OPSYS} == "Darwin"
84CONFIGURE_ENV+= pgac_cv_prog_cc_ldflags__Wl___as_needed=no 79CONFIGURE_ENV+= pgac_cv_prog_cc_ldflags__Wl___as_needed=no
85.endif 80.endif
86 81
87# configure fails on OpenBSD and MirBSD if thread safety is enabled. 82# configure fails on OpenBSD and MirBSD if thread safety is enabled.
@@ -97,28 +92,26 @@ BUILD_DEFS+= PGSQL_BLCKSZ @@ -97,28 +92,26 @@ BUILD_DEFS+= PGSQL_BLCKSZ
97CONFIGURE_ARGS+= --with-blocksize=${PGSQL_BLCKSZ} 92CONFIGURE_ARGS+= --with-blocksize=${PGSQL_BLCKSZ}
98.endif 93.endif
99 94
100# PostgreSQL explicitly forbids any use of -ffast-math 95# PostgreSQL explicitly forbids any use of -ffast-math
101BUILDLINK_TRANSFORM+= rm:-ffast-math 96BUILDLINK_TRANSFORM+= rm:-ffast-math
102 97
103# USE_LIBLTDL is "yes" or "no" depending on whether we're using libltdl 98# USE_LIBLTDL is "yes" or "no" depending on whether we're using libltdl
104# to provide "dlopen" functionality for the PostgreSQL backend. 99# to provide "dlopen" functionality for the PostgreSQL backend.
105.if ${OPSYS} == "Interix" 100.if ${OPSYS} == "Interix"
106USE_LIBLTDL?= yes 101USE_LIBLTDL?= yes
107.endif 102.endif
108USE_LIBLTDL?= no 103USE_LIBLTDL?= no
109 104
110.include "../../devel/gettext-lib/buildlink3.mk" 
111LIBS.SunOS+= -lintl 
112.include "../../devel/zlib/buildlink3.mk" 105.include "../../devel/zlib/buildlink3.mk"
113.include "../../textproc/libxml2/buildlink3.mk" 106.include "../../textproc/libxml2/buildlink3.mk"
114 107
115.include "../../mk/readline.buildlink3.mk" 108.include "../../mk/readline.buildlink3.mk"
116.if ${READLINE_TYPE} == "editline" 109.if ${READLINE_TYPE} == "editline"
117CONFIGURE_ARGS+= --with-libedit-preferred 110CONFIGURE_ARGS+= --with-libedit-preferred
118.endif 111.endif
119 112
120.if !defined(META_PACKAGE) 113.if !defined(META_PACKAGE)
121post-extract: 114post-extract:
122. if !empty(USE_LIBLTDL:M[yY][eE][sS]) 115. if !empty(USE_LIBLTDL:M[yY][eE][sS])
123 ${CP} -f ${COMMON_FILESDIR}/dynloader-ltdl.h \ 116 ${CP} -f ${COMMON_FILESDIR}/dynloader-ltdl.h \
124 ${WRKSRC}/src/backend/port/dynloader/${PG_TEMPLATE.${OPSYS}:Q}.h 117 ${WRKSRC}/src/backend/port/dynloader/${PG_TEMPLATE.${OPSYS}:Q}.h

cvs diff -r1.2 -r1.3 pkgsrc/databases/postgresql10/Attic/options.mk (expand / switch to unified diff)

--- pkgsrc/databases/postgresql10/Attic/options.mk 2017/12/15 16:52:23 1.2
+++ pkgsrc/databases/postgresql10/Attic/options.mk 2019/10/25 12:01:19 1.3
@@ -1,18 +1,20 @@ @@ -1,18 +1,20 @@
1# $NetBSD: options.mk,v 1.2 2017/12/15 16:52:23 dholland Exp $ 1# $NetBSD: options.mk,v 1.3 2019/10/25 12:01:19 triaxx Exp $
2 2
3PKG_OPTIONS_VAR= PKG_OPTIONS.postgresql10 3PKG_OPTIONS_VAR= PKG_OPTIONS.postgresql10
4PKG_SUPPORTED_OPTIONS= bonjour dtrace icu gssapi ldap pam 4PKG_SUPPORTED_OPTIONS= bonjour dtrace icu gssapi ldap nls pam
5PKG_SUGGESTED_OPTIONS= gssapi 5PKG_SUGGESTED_OPTIONS= gssapi nls
 6
 7PLIST_VARS+= nls
6 8
7.include "../../mk/bsd.options.mk" 9.include "../../mk/bsd.options.mk"
8 10
9# Bonjour support 11# Bonjour support
10.if !empty(PKG_OPTIONS:Mbonjour) 12.if !empty(PKG_OPTIONS:Mbonjour)
11CONFIGURE_ARGS+= --with-bonjour 13CONFIGURE_ARGS+= --with-bonjour
12. if ${OPSYS} != "Darwin" 14. if ${OPSYS} != "Darwin"
13LIBS+= -ldns_sd 15LIBS+= -ldns_sd
14. endif 16. endif
15. include "../../net/mDNSResponder/buildlink3.mk" 17. include "../../net/mDNSResponder/buildlink3.mk"
16.endif 18.endif
17 19
18# Dtrace support 20# Dtrace support
@@ -31,18 +33,30 @@ CONFIGURE_ARGS+= --with-icu @@ -31,18 +33,30 @@ CONFIGURE_ARGS+= --with-icu
31.if !empty(PKG_OPTIONS:Mgssapi) 33.if !empty(PKG_OPTIONS:Mgssapi)
32. include "../../mk/krb5.buildlink3.mk" 34. include "../../mk/krb5.buildlink3.mk"
33CONFIGURE_ARGS+= --with-gssapi 35CONFIGURE_ARGS+= --with-gssapi
34.else 36.else
35CONFIGURE_ARGS+= --without-gssapi 37CONFIGURE_ARGS+= --without-gssapi
36.endif 38.endif
37 39
38# LDAP authentication for the PostgreSQL backend 40# LDAP authentication for the PostgreSQL backend
39.if !empty(PKG_OPTIONS:Mldap) 41.if !empty(PKG_OPTIONS:Mldap)
40. include "../../databases/openldap-client/buildlink3.mk" 42. include "../../databases/openldap-client/buildlink3.mk"
41CONFIGURE_ARGS+= --with-ldap 43CONFIGURE_ARGS+= --with-ldap
42.endif 44.endif
43 45
 46# NLS support
 47.if !empty(PKG_OPTIONS:Mnls)
 48USE_PKGLOCALEDIR= yes
 49CONFIGURE_ARGS+= --enable-nls
 50PLIST.nls= yes
 51BROKEN_GETTEXT_DETECTION= yes
 52. include "../../devel/gettext-lib/buildlink3.mk"
 53LIBS.SunOS+= -lintl
 54.else
 55CONFIGURE_ARGS+= --disable-nls
 56.endif
 57
44# PAM authentication for the PostgreSQL backend 58# PAM authentication for the PostgreSQL backend
45.if !empty(PKG_OPTIONS:Mpam) 59.if !empty(PKG_OPTIONS:Mpam)
46. include "../../mk/pam.buildlink3.mk" 60. include "../../mk/pam.buildlink3.mk"
47CONFIGURE_ARGS+= --with-pam 61CONFIGURE_ARGS+= --with-pam
48.endif 62.endif

cvs diff -r1.7 -r1.8 pkgsrc/databases/postgresql10-client/Attic/PLIST (expand / switch to unified diff)

--- pkgsrc/databases/postgresql10-client/Attic/PLIST 2019/05/13 20:38:11 1.7
+++ pkgsrc/databases/postgresql10-client/Attic/PLIST 2019/10/25 12:01:19 1.8
@@ -1,14 +1,14 @@ @@ -1,14 +1,14 @@
1@comment $NetBSD: PLIST,v 1.7 2019/05/13 20:38:11 adam Exp $ 1@comment $NetBSD: PLIST,v 1.8 2019/10/25 12:01:19 triaxx Exp $
2bin/clusterdb 2bin/clusterdb
3bin/createdb 3bin/createdb
4bin/createuser 4bin/createuser
5bin/dropdb 5bin/dropdb
6bin/dropuser 6bin/dropuser
7bin/ecpg 7bin/ecpg
8bin/initdb 8bin/initdb
9bin/pg_archivecleanup 9bin/pg_archivecleanup
10bin/pg_basebackup 10bin/pg_basebackup
11bin/pg_config 11bin/pg_config
12bin/pg_controldata 12bin/pg_controldata
13bin/pg_ctl 13bin/pg_ctl
14bin/pg_dump 14bin/pg_dump
@@ -738,242 +738,242 @@ lib/libpq.a @@ -738,242 +738,242 @@ lib/libpq.a
738lib/libpq.so 738lib/libpq.so
739lib/libpq.so.5 739lib/libpq.so.5
740lib/libpq.so.5.10 740lib/libpq.so.5.10
741lib/pkgconfig/libecpg.pc 741lib/pkgconfig/libecpg.pc
742lib/pkgconfig/libecpg_compat.pc 742lib/pkgconfig/libecpg_compat.pc
743lib/pkgconfig/libpgtypes.pc 743lib/pkgconfig/libpgtypes.pc
744lib/pkgconfig/libpq.pc 744lib/pkgconfig/libpq.pc
745lib/postgresql/pgxs/config/install-sh 745lib/postgresql/pgxs/config/install-sh
746lib/postgresql/pgxs/src/Makefile.global 746lib/postgresql/pgxs/src/Makefile.global
747lib/postgresql/pgxs/src/Makefile.port 747lib/postgresql/pgxs/src/Makefile.port
748lib/postgresql/pgxs/src/Makefile.shlib 748lib/postgresql/pgxs/src/Makefile.shlib
749lib/postgresql/pgxs/src/makefiles/pgxs.mk 749lib/postgresql/pgxs/src/makefiles/pgxs.mk
750lib/postgresql/pgxs/src/nls-global.mk 750lib/postgresql/pgxs/src/nls-global.mk
751share/locale/cs/LC_MESSAGES/ecpg-10.mo 751${PLIST.nls}share/locale/cs/LC_MESSAGES/ecpg-10.mo
752share/locale/cs/LC_MESSAGES/ecpglib6-10.mo 752${PLIST.nls}share/locale/cs/LC_MESSAGES/ecpglib6-10.mo
753share/locale/cs/LC_MESSAGES/initdb-10.mo 753${PLIST.nls}share/locale/cs/LC_MESSAGES/initdb-10.mo
754share/locale/cs/LC_MESSAGES/libpq5-10.mo 754${PLIST.nls}share/locale/cs/LC_MESSAGES/libpq5-10.mo
755share/locale/cs/LC_MESSAGES/pg_archivecleanup-10.mo 755${PLIST.nls}share/locale/cs/LC_MESSAGES/pg_archivecleanup-10.mo
756share/locale/cs/LC_MESSAGES/pg_basebackup-10.mo 756${PLIST.nls}share/locale/cs/LC_MESSAGES/pg_basebackup-10.mo
757share/locale/cs/LC_MESSAGES/pg_config-10.mo 757${PLIST.nls}share/locale/cs/LC_MESSAGES/pg_config-10.mo
758share/locale/cs/LC_MESSAGES/pg_controldata-10.mo 758${PLIST.nls}share/locale/cs/LC_MESSAGES/pg_controldata-10.mo
759share/locale/cs/LC_MESSAGES/pg_ctl-10.mo 759${PLIST.nls}share/locale/cs/LC_MESSAGES/pg_ctl-10.mo
760share/locale/cs/LC_MESSAGES/pg_dump-10.mo 760${PLIST.nls}share/locale/cs/LC_MESSAGES/pg_dump-10.mo
761share/locale/cs/LC_MESSAGES/pg_resetwal-10.mo 761${PLIST.nls}share/locale/cs/LC_MESSAGES/pg_resetwal-10.mo
762share/locale/cs/LC_MESSAGES/pg_rewind-10.mo 762${PLIST.nls}share/locale/cs/LC_MESSAGES/pg_rewind-10.mo
763share/locale/cs/LC_MESSAGES/pg_test_fsync-10.mo 763${PLIST.nls}share/locale/cs/LC_MESSAGES/pg_test_fsync-10.mo
764share/locale/cs/LC_MESSAGES/pg_test_timing-10.mo 764${PLIST.nls}share/locale/cs/LC_MESSAGES/pg_test_timing-10.mo
765share/locale/cs/LC_MESSAGES/pg_upgrade-10.mo 765${PLIST.nls}share/locale/cs/LC_MESSAGES/pg_upgrade-10.mo
766share/locale/cs/LC_MESSAGES/pg_waldump-10.mo 766${PLIST.nls}share/locale/cs/LC_MESSAGES/pg_waldump-10.mo
767share/locale/cs/LC_MESSAGES/pgscripts-10.mo 767${PLIST.nls}share/locale/cs/LC_MESSAGES/pgscripts-10.mo
768share/locale/cs/LC_MESSAGES/psql-10.mo 768${PLIST.nls}share/locale/cs/LC_MESSAGES/psql-10.mo
769share/locale/de/LC_MESSAGES/ecpg-10.mo 769${PLIST.nls}share/locale/de/LC_MESSAGES/ecpg-10.mo
770share/locale/de/LC_MESSAGES/ecpglib6-10.mo 770${PLIST.nls}share/locale/de/LC_MESSAGES/ecpglib6-10.mo
771share/locale/de/LC_MESSAGES/initdb-10.mo 771${PLIST.nls}share/locale/de/LC_MESSAGES/initdb-10.mo
772share/locale/de/LC_MESSAGES/libpq5-10.mo 772${PLIST.nls}share/locale/de/LC_MESSAGES/libpq5-10.mo
773share/locale/de/LC_MESSAGES/pg_archivecleanup-10.mo 773${PLIST.nls}share/locale/de/LC_MESSAGES/pg_archivecleanup-10.mo
774share/locale/de/LC_MESSAGES/pg_basebackup-10.mo 774${PLIST.nls}share/locale/de/LC_MESSAGES/pg_basebackup-10.mo
775share/locale/de/LC_MESSAGES/pg_config-10.mo 775${PLIST.nls}share/locale/de/LC_MESSAGES/pg_config-10.mo
776share/locale/de/LC_MESSAGES/pg_controldata-10.mo 776${PLIST.nls}share/locale/de/LC_MESSAGES/pg_controldata-10.mo
777share/locale/de/LC_MESSAGES/pg_ctl-10.mo 777${PLIST.nls}share/locale/de/LC_MESSAGES/pg_ctl-10.mo
778share/locale/de/LC_MESSAGES/pg_dump-10.mo 778${PLIST.nls}share/locale/de/LC_MESSAGES/pg_dump-10.mo
779share/locale/de/LC_MESSAGES/pg_resetwal-10.mo 779${PLIST.nls}share/locale/de/LC_MESSAGES/pg_resetwal-10.mo
780share/locale/de/LC_MESSAGES/pg_rewind-10.mo 780${PLIST.nls}share/locale/de/LC_MESSAGES/pg_rewind-10.mo
781share/locale/de/LC_MESSAGES/pg_test_fsync-10.mo 781${PLIST.nls}share/locale/de/LC_MESSAGES/pg_test_fsync-10.mo
782share/locale/de/LC_MESSAGES/pg_test_timing-10.mo 782${PLIST.nls}share/locale/de/LC_MESSAGES/pg_test_timing-10.mo
783share/locale/de/LC_MESSAGES/pg_upgrade-10.mo 783${PLIST.nls}share/locale/de/LC_MESSAGES/pg_upgrade-10.mo
784share/locale/de/LC_MESSAGES/pg_waldump-10.mo 784${PLIST.nls}share/locale/de/LC_MESSAGES/pg_waldump-10.mo
785share/locale/de/LC_MESSAGES/pgscripts-10.mo 785${PLIST.nls}share/locale/de/LC_MESSAGES/pgscripts-10.mo
786share/locale/de/LC_MESSAGES/psql-10.mo 786${PLIST.nls}share/locale/de/LC_MESSAGES/psql-10.mo
787share/locale/es/LC_MESSAGES/ecpg-10.mo 787${PLIST.nls}share/locale/es/LC_MESSAGES/ecpg-10.mo
788share/locale/es/LC_MESSAGES/ecpglib6-10.mo 788${PLIST.nls}share/locale/es/LC_MESSAGES/ecpglib6-10.mo
789share/locale/es/LC_MESSAGES/initdb-10.mo 789${PLIST.nls}share/locale/es/LC_MESSAGES/initdb-10.mo
790share/locale/es/LC_MESSAGES/libpq5-10.mo 790${PLIST.nls}share/locale/es/LC_MESSAGES/libpq5-10.mo
791share/locale/es/LC_MESSAGES/pg_archivecleanup-10.mo 791${PLIST.nls}share/locale/es/LC_MESSAGES/pg_archivecleanup-10.mo
792share/locale/es/LC_MESSAGES/pg_basebackup-10.mo 792${PLIST.nls}share/locale/es/LC_MESSAGES/pg_basebackup-10.mo
793share/locale/es/LC_MESSAGES/pg_config-10.mo 793${PLIST.nls}share/locale/es/LC_MESSAGES/pg_config-10.mo
794share/locale/es/LC_MESSAGES/pg_controldata-10.mo 794${PLIST.nls}share/locale/es/LC_MESSAGES/pg_controldata-10.mo
795share/locale/es/LC_MESSAGES/pg_ctl-10.mo 795${PLIST.nls}share/locale/es/LC_MESSAGES/pg_ctl-10.mo
796share/locale/es/LC_MESSAGES/pg_dump-10.mo 796${PLIST.nls}share/locale/es/LC_MESSAGES/pg_dump-10.mo
797share/locale/es/LC_MESSAGES/pg_resetwal-10.mo 797${PLIST.nls}share/locale/es/LC_MESSAGES/pg_resetwal-10.mo
798share/locale/es/LC_MESSAGES/pg_rewind-10.mo 798${PLIST.nls}share/locale/es/LC_MESSAGES/pg_rewind-10.mo
799share/locale/es/LC_MESSAGES/pg_test_fsync-10.mo 799${PLIST.nls}share/locale/es/LC_MESSAGES/pg_test_fsync-10.mo
800share/locale/es/LC_MESSAGES/pg_test_timing-10.mo 800${PLIST.nls}share/locale/es/LC_MESSAGES/pg_test_timing-10.mo
801share/locale/es/LC_MESSAGES/pg_upgrade-10.mo 801${PLIST.nls}share/locale/es/LC_MESSAGES/pg_upgrade-10.mo
802share/locale/es/LC_MESSAGES/pg_waldump-10.mo 802${PLIST.nls}share/locale/es/LC_MESSAGES/pg_waldump-10.mo
803share/locale/es/LC_MESSAGES/pgscripts-10.mo 803${PLIST.nls}share/locale/es/LC_MESSAGES/pgscripts-10.mo
804share/locale/es/LC_MESSAGES/psql-10.mo 804${PLIST.nls}share/locale/es/LC_MESSAGES/psql-10.mo
805share/locale/fr/LC_MESSAGES/ecpg-10.mo 805${PLIST.nls}share/locale/fr/LC_MESSAGES/ecpg-10.mo
806share/locale/fr/LC_MESSAGES/ecpglib6-10.mo 806${PLIST.nls}share/locale/fr/LC_MESSAGES/ecpglib6-10.mo
807share/locale/fr/LC_MESSAGES/initdb-10.mo 807${PLIST.nls}share/locale/fr/LC_MESSAGES/initdb-10.mo
808share/locale/fr/LC_MESSAGES/libpq5-10.mo 808${PLIST.nls}share/locale/fr/LC_MESSAGES/libpq5-10.mo
809share/locale/fr/LC_MESSAGES/pg_archivecleanup-10.mo 809${PLIST.nls}share/locale/fr/LC_MESSAGES/pg_archivecleanup-10.mo
810share/locale/fr/LC_MESSAGES/pg_basebackup-10.mo 810${PLIST.nls}share/locale/fr/LC_MESSAGES/pg_basebackup-10.mo
811share/locale/fr/LC_MESSAGES/pg_config-10.mo 811${PLIST.nls}share/locale/fr/LC_MESSAGES/pg_config-10.mo
812share/locale/fr/LC_MESSAGES/pg_controldata-10.mo 812${PLIST.nls}share/locale/fr/LC_MESSAGES/pg_controldata-10.mo
813share/locale/fr/LC_MESSAGES/pg_ctl-10.mo 813${PLIST.nls}share/locale/fr/LC_MESSAGES/pg_ctl-10.mo
814share/locale/fr/LC_MESSAGES/pg_dump-10.mo 814${PLIST.nls}share/locale/fr/LC_MESSAGES/pg_dump-10.mo
815share/locale/fr/LC_MESSAGES/pg_resetwal-10.mo 815${PLIST.nls}share/locale/fr/LC_MESSAGES/pg_resetwal-10.mo
816share/locale/fr/LC_MESSAGES/pg_rewind-10.mo 816${PLIST.nls}share/locale/fr/LC_MESSAGES/pg_rewind-10.mo
817share/locale/fr/LC_MESSAGES/pg_test_fsync-10.mo 817${PLIST.nls}share/locale/fr/LC_MESSAGES/pg_test_fsync-10.mo
818share/locale/fr/LC_MESSAGES/pg_test_timing-10.mo 818${PLIST.nls}share/locale/fr/LC_MESSAGES/pg_test_timing-10.mo
819share/locale/fr/LC_MESSAGES/pg_upgrade-10.mo 819${PLIST.nls}share/locale/fr/LC_MESSAGES/pg_upgrade-10.mo
820share/locale/fr/LC_MESSAGES/pg_waldump-10.mo 820${PLIST.nls}share/locale/fr/LC_MESSAGES/pg_waldump-10.mo
821share/locale/fr/LC_MESSAGES/pgscripts-10.mo 821${PLIST.nls}share/locale/fr/LC_MESSAGES/pgscripts-10.mo
822share/locale/fr/LC_MESSAGES/psql-10.mo 822${PLIST.nls}share/locale/fr/LC_MESSAGES/psql-10.mo
823share/locale/he/LC_MESSAGES/initdb-10.mo 823${PLIST.nls}share/locale/he/LC_MESSAGES/initdb-10.mo
824share/locale/he/LC_MESSAGES/libpq5-10.mo 824${PLIST.nls}share/locale/he/LC_MESSAGES/libpq5-10.mo
825share/locale/he/LC_MESSAGES/pg_basebackup-10.mo 825${PLIST.nls}share/locale/he/LC_MESSAGES/pg_basebackup-10.mo
826share/locale/he/LC_MESSAGES/pg_config-10.mo 826${PLIST.nls}share/locale/he/LC_MESSAGES/pg_config-10.mo
827share/locale/he/LC_MESSAGES/pg_ctl-10.mo 827${PLIST.nls}share/locale/he/LC_MESSAGES/pg_ctl-10.mo
828share/locale/he/LC_MESSAGES/pg_dump-10.mo 828${PLIST.nls}share/locale/he/LC_MESSAGES/pg_dump-10.mo
829share/locale/he/LC_MESSAGES/pgscripts-10.mo 829${PLIST.nls}share/locale/he/LC_MESSAGES/pgscripts-10.mo
830share/locale/he/LC_MESSAGES/psql-10.mo 830${PLIST.nls}share/locale/he/LC_MESSAGES/psql-10.mo
831share/locale/it/LC_MESSAGES/ecpg-10.mo 831${PLIST.nls}share/locale/it/LC_MESSAGES/ecpg-10.mo
832share/locale/it/LC_MESSAGES/ecpglib6-10.mo 832${PLIST.nls}share/locale/it/LC_MESSAGES/ecpglib6-10.mo
833share/locale/it/LC_MESSAGES/initdb-10.mo 833${PLIST.nls}share/locale/it/LC_MESSAGES/initdb-10.mo
834share/locale/it/LC_MESSAGES/libpq5-10.mo 834${PLIST.nls}share/locale/it/LC_MESSAGES/libpq5-10.mo
835share/locale/it/LC_MESSAGES/pg_basebackup-10.mo 835${PLIST.nls}share/locale/it/LC_MESSAGES/pg_basebackup-10.mo
836share/locale/it/LC_MESSAGES/pg_config-10.mo 836${PLIST.nls}share/locale/it/LC_MESSAGES/pg_config-10.mo
837share/locale/it/LC_MESSAGES/pg_controldata-10.mo 837${PLIST.nls}share/locale/it/LC_MESSAGES/pg_controldata-10.mo
838share/locale/it/LC_MESSAGES/pg_ctl-10.mo 838${PLIST.nls}share/locale/it/LC_MESSAGES/pg_ctl-10.mo
839share/locale/it/LC_MESSAGES/pg_dump-10.mo 839${PLIST.nls}share/locale/it/LC_MESSAGES/pg_dump-10.mo
840share/locale/it/LC_MESSAGES/pg_rewind-10.mo 840${PLIST.nls}share/locale/it/LC_MESSAGES/pg_rewind-10.mo
841share/locale/it/LC_MESSAGES/pgscripts-10.mo 841${PLIST.nls}share/locale/it/LC_MESSAGES/pgscripts-10.mo
842share/locale/it/LC_MESSAGES/psql-10.mo 842${PLIST.nls}share/locale/it/LC_MESSAGES/psql-10.mo
843share/locale/ja/LC_MESSAGES/ecpg-10.mo 843${PLIST.nls}share/locale/ja/LC_MESSAGES/ecpg-10.mo
844share/locale/ja/LC_MESSAGES/ecpglib6-10.mo 844${PLIST.nls}share/locale/ja/LC_MESSAGES/ecpglib6-10.mo
845share/locale/ja/LC_MESSAGES/initdb-10.mo 845${PLIST.nls}share/locale/ja/LC_MESSAGES/initdb-10.mo
846share/locale/ja/LC_MESSAGES/libpq5-10.mo 846${PLIST.nls}share/locale/ja/LC_MESSAGES/libpq5-10.mo
847share/locale/ja/LC_MESSAGES/pg_archivecleanup-10.mo 847${PLIST.nls}share/locale/ja/LC_MESSAGES/pg_archivecleanup-10.mo
848share/locale/ja/LC_MESSAGES/pg_basebackup-10.mo 848${PLIST.nls}share/locale/ja/LC_MESSAGES/pg_basebackup-10.mo
849share/locale/ja/LC_MESSAGES/pg_config-10.mo 849${PLIST.nls}share/locale/ja/LC_MESSAGES/pg_config-10.mo
850share/locale/ja/LC_MESSAGES/pg_controldata-10.mo 850${PLIST.nls}share/locale/ja/LC_MESSAGES/pg_controldata-10.mo
851share/locale/ja/LC_MESSAGES/pg_ctl-10.mo 851${PLIST.nls}share/locale/ja/LC_MESSAGES/pg_ctl-10.mo
852share/locale/ja/LC_MESSAGES/pg_dump-10.mo 852${PLIST.nls}share/locale/ja/LC_MESSAGES/pg_dump-10.mo
853share/locale/ja/LC_MESSAGES/pg_resetwal-10.mo 853${PLIST.nls}share/locale/ja/LC_MESSAGES/pg_resetwal-10.mo
854share/locale/ja/LC_MESSAGES/pg_rewind-10.mo 854${PLIST.nls}share/locale/ja/LC_MESSAGES/pg_rewind-10.mo
855share/locale/ja/LC_MESSAGES/pg_test_fsync-10.mo 855${PLIST.nls}share/locale/ja/LC_MESSAGES/pg_test_fsync-10.mo
856share/locale/ja/LC_MESSAGES/pg_test_timing-10.mo 856${PLIST.nls}share/locale/ja/LC_MESSAGES/pg_test_timing-10.mo
857share/locale/ja/LC_MESSAGES/pg_upgrade-10.mo 857${PLIST.nls}share/locale/ja/LC_MESSAGES/pg_upgrade-10.mo
858share/locale/ja/LC_MESSAGES/pg_waldump-10.mo 858${PLIST.nls}share/locale/ja/LC_MESSAGES/pg_waldump-10.mo
859share/locale/ja/LC_MESSAGES/pgscripts-10.mo 859${PLIST.nls}share/locale/ja/LC_MESSAGES/pgscripts-10.mo
860share/locale/ja/LC_MESSAGES/psql-10.mo 860${PLIST.nls}share/locale/ja/LC_MESSAGES/psql-10.mo
861share/locale/ko/LC_MESSAGES/ecpg-10.mo 861${PLIST.nls}share/locale/ko/LC_MESSAGES/ecpg-10.mo
862share/locale/ko/LC_MESSAGES/ecpglib6-10.mo 862${PLIST.nls}share/locale/ko/LC_MESSAGES/ecpglib6-10.mo
863share/locale/ko/LC_MESSAGES/initdb-10.mo 863${PLIST.nls}share/locale/ko/LC_MESSAGES/initdb-10.mo
864share/locale/ko/LC_MESSAGES/libpq5-10.mo 864${PLIST.nls}share/locale/ko/LC_MESSAGES/libpq5-10.mo
865share/locale/ko/LC_MESSAGES/pg_archivecleanup-10.mo 865${PLIST.nls}share/locale/ko/LC_MESSAGES/pg_archivecleanup-10.mo
866share/locale/ko/LC_MESSAGES/pg_basebackup-10.mo 866${PLIST.nls}share/locale/ko/LC_MESSAGES/pg_basebackup-10.mo
867share/locale/ko/LC_MESSAGES/pg_config-10.mo 867${PLIST.nls}share/locale/ko/LC_MESSAGES/pg_config-10.mo
868share/locale/ko/LC_MESSAGES/pg_controldata-10.mo 868${PLIST.nls}share/locale/ko/LC_MESSAGES/pg_controldata-10.mo
869share/locale/ko/LC_MESSAGES/pg_ctl-10.mo 869${PLIST.nls}share/locale/ko/LC_MESSAGES/pg_ctl-10.mo
870share/locale/ko/LC_MESSAGES/pg_dump-10.mo 870${PLIST.nls}share/locale/ko/LC_MESSAGES/pg_dump-10.mo
871share/locale/ko/LC_MESSAGES/pg_resetwal-10.mo 871${PLIST.nls}share/locale/ko/LC_MESSAGES/pg_resetwal-10.mo
872share/locale/ko/LC_MESSAGES/pg_rewind-10.mo 872${PLIST.nls}share/locale/ko/LC_MESSAGES/pg_rewind-10.mo
873share/locale/ko/LC_MESSAGES/pg_test_fsync-10.mo 873${PLIST.nls}share/locale/ko/LC_MESSAGES/pg_test_fsync-10.mo
874share/locale/ko/LC_MESSAGES/pg_test_timing-10.mo 874${PLIST.nls}share/locale/ko/LC_MESSAGES/pg_test_timing-10.mo
875share/locale/ko/LC_MESSAGES/pg_upgrade-10.mo 875${PLIST.nls}share/locale/ko/LC_MESSAGES/pg_upgrade-10.mo
876share/locale/ko/LC_MESSAGES/pg_waldump-10.mo 876${PLIST.nls}share/locale/ko/LC_MESSAGES/pg_waldump-10.mo
877share/locale/ko/LC_MESSAGES/pgscripts-10.mo 877${PLIST.nls}share/locale/ko/LC_MESSAGES/pgscripts-10.mo
878share/locale/ko/LC_MESSAGES/psql-10.mo 878${PLIST.nls}share/locale/ko/LC_MESSAGES/psql-10.mo
879share/locale/nb/LC_MESSAGES/pg_config-10.mo 879${PLIST.nls}share/locale/nb/LC_MESSAGES/pg_config-10.mo
880share/locale/pl/LC_MESSAGES/ecpg-10.mo 880${PLIST.nls}share/locale/pl/LC_MESSAGES/ecpg-10.mo
881share/locale/pl/LC_MESSAGES/ecpglib6-10.mo 881${PLIST.nls}share/locale/pl/LC_MESSAGES/ecpglib6-10.mo
882share/locale/pl/LC_MESSAGES/initdb-10.mo 882${PLIST.nls}share/locale/pl/LC_MESSAGES/initdb-10.mo
883share/locale/pl/LC_MESSAGES/libpq5-10.mo 883${PLIST.nls}share/locale/pl/LC_MESSAGES/libpq5-10.mo
884share/locale/pl/LC_MESSAGES/pg_archivecleanup-10.mo 884${PLIST.nls}share/locale/pl/LC_MESSAGES/pg_archivecleanup-10.mo
885share/locale/pl/LC_MESSAGES/pg_basebackup-10.mo 885${PLIST.nls}share/locale/pl/LC_MESSAGES/pg_basebackup-10.mo
886share/locale/pl/LC_MESSAGES/pg_config-10.mo 886${PLIST.nls}share/locale/pl/LC_MESSAGES/pg_config-10.mo
887share/locale/pl/LC_MESSAGES/pg_controldata-10.mo 887${PLIST.nls}share/locale/pl/LC_MESSAGES/pg_controldata-10.mo
888share/locale/pl/LC_MESSAGES/pg_ctl-10.mo 888${PLIST.nls}share/locale/pl/LC_MESSAGES/pg_ctl-10.mo
889share/locale/pl/LC_MESSAGES/pg_dump-10.mo 889${PLIST.nls}share/locale/pl/LC_MESSAGES/pg_dump-10.mo
890share/locale/pl/LC_MESSAGES/pg_resetwal-10.mo 890${PLIST.nls}share/locale/pl/LC_MESSAGES/pg_resetwal-10.mo
891share/locale/pl/LC_MESSAGES/pg_rewind-10.mo 891${PLIST.nls}share/locale/pl/LC_MESSAGES/pg_rewind-10.mo
892share/locale/pl/LC_MESSAGES/pg_test_fsync-10.mo 892${PLIST.nls}share/locale/pl/LC_MESSAGES/pg_test_fsync-10.mo
893share/locale/pl/LC_MESSAGES/pg_test_timing-10.mo 893${PLIST.nls}share/locale/pl/LC_MESSAGES/pg_test_timing-10.mo
894share/locale/pl/LC_MESSAGES/pgscripts-10.mo 894${PLIST.nls}share/locale/pl/LC_MESSAGES/pgscripts-10.mo
895share/locale/pl/LC_MESSAGES/psql-10.mo 895${PLIST.nls}share/locale/pl/LC_MESSAGES/psql-10.mo
896share/locale/pt_BR/LC_MESSAGES/ecpg-10.mo 896${PLIST.nls}share/locale/pt_BR/LC_MESSAGES/ecpg-10.mo
897share/locale/pt_BR/LC_MESSAGES/ecpglib6-10.mo 897${PLIST.nls}share/locale/pt_BR/LC_MESSAGES/ecpglib6-10.mo
898share/locale/pt_BR/LC_MESSAGES/initdb-10.mo 898${PLIST.nls}share/locale/pt_BR/LC_MESSAGES/initdb-10.mo
899share/locale/pt_BR/LC_MESSAGES/libpq5-10.mo 899${PLIST.nls}share/locale/pt_BR/LC_MESSAGES/libpq5-10.mo
900share/locale/pt_BR/LC_MESSAGES/pg_config-10.mo 900${PLIST.nls}share/locale/pt_BR/LC_MESSAGES/pg_config-10.mo
901share/locale/pt_BR/LC_MESSAGES/pg_controldata-10.mo 901${PLIST.nls}share/locale/pt_BR/LC_MESSAGES/pg_controldata-10.mo
902share/locale/pt_BR/LC_MESSAGES/pg_ctl-10.mo 902${PLIST.nls}share/locale/pt_BR/LC_MESSAGES/pg_ctl-10.mo
903share/locale/pt_BR/LC_MESSAGES/pg_dump-10.mo 903${PLIST.nls}share/locale/pt_BR/LC_MESSAGES/pg_dump-10.mo
904share/locale/pt_BR/LC_MESSAGES/pg_resetwal-10.mo 904${PLIST.nls}share/locale/pt_BR/LC_MESSAGES/pg_resetwal-10.mo
905share/locale/pt_BR/LC_MESSAGES/pg_rewind-10.mo 905${PLIST.nls}share/locale/pt_BR/LC_MESSAGES/pg_rewind-10.mo
906share/locale/pt_BR/LC_MESSAGES/pgscripts-10.mo 906${PLIST.nls}share/locale/pt_BR/LC_MESSAGES/pgscripts-10.mo
907share/locale/pt_BR/LC_MESSAGES/psql-10.mo 907${PLIST.nls}share/locale/pt_BR/LC_MESSAGES/psql-10.mo
908share/locale/ro/LC_MESSAGES/pg_config-10.mo 908${PLIST.nls}share/locale/ro/LC_MESSAGES/pg_config-10.mo
909share/locale/ru/LC_MESSAGES/ecpg-10.mo 909${PLIST.nls}share/locale/ru/LC_MESSAGES/ecpg-10.mo
910share/locale/ru/LC_MESSAGES/ecpglib6-10.mo 910${PLIST.nls}share/locale/ru/LC_MESSAGES/ecpglib6-10.mo
911share/locale/ru/LC_MESSAGES/initdb-10.mo 911${PLIST.nls}share/locale/ru/LC_MESSAGES/initdb-10.mo
912share/locale/ru/LC_MESSAGES/libpq5-10.mo 912${PLIST.nls}share/locale/ru/LC_MESSAGES/libpq5-10.mo
913share/locale/ru/LC_MESSAGES/pg_archivecleanup-10.mo 913${PLIST.nls}share/locale/ru/LC_MESSAGES/pg_archivecleanup-10.mo
914share/locale/ru/LC_MESSAGES/pg_basebackup-10.mo 914${PLIST.nls}share/locale/ru/LC_MESSAGES/pg_basebackup-10.mo
915share/locale/ru/LC_MESSAGES/pg_config-10.mo 915${PLIST.nls}share/locale/ru/LC_MESSAGES/pg_config-10.mo
916share/locale/ru/LC_MESSAGES/pg_controldata-10.mo 916${PLIST.nls}share/locale/ru/LC_MESSAGES/pg_controldata-10.mo
917share/locale/ru/LC_MESSAGES/pg_ctl-10.mo 917${PLIST.nls}share/locale/ru/LC_MESSAGES/pg_ctl-10.mo
918share/locale/ru/LC_MESSAGES/pg_dump-10.mo 918${PLIST.nls}share/locale/ru/LC_MESSAGES/pg_dump-10.mo
919share/locale/ru/LC_MESSAGES/pg_resetwal-10.mo 919${PLIST.nls}share/locale/ru/LC_MESSAGES/pg_resetwal-10.mo
920share/locale/ru/LC_MESSAGES/pg_rewind-10.mo 920${PLIST.nls}share/locale/ru/LC_MESSAGES/pg_rewind-10.mo
921share/locale/ru/LC_MESSAGES/pg_test_fsync-10.mo 921${PLIST.nls}share/locale/ru/LC_MESSAGES/pg_test_fsync-10.mo
922share/locale/ru/LC_MESSAGES/pg_test_timing-10.mo 922${PLIST.nls}share/locale/ru/LC_MESSAGES/pg_test_timing-10.mo
923share/locale/ru/LC_MESSAGES/pg_upgrade-10.mo 923${PLIST.nls}share/locale/ru/LC_MESSAGES/pg_upgrade-10.mo
924share/locale/ru/LC_MESSAGES/pg_waldump-10.mo 924${PLIST.nls}share/locale/ru/LC_MESSAGES/pg_waldump-10.mo
925share/locale/ru/LC_MESSAGES/pgscripts-10.mo 925${PLIST.nls}share/locale/ru/LC_MESSAGES/pgscripts-10.mo
926share/locale/ru/LC_MESSAGES/psql-10.mo 926${PLIST.nls}share/locale/ru/LC_MESSAGES/psql-10.mo
927share/locale/sv/LC_MESSAGES/ecpg-10.mo 927${PLIST.nls}share/locale/sv/LC_MESSAGES/ecpg-10.mo
928share/locale/sv/LC_MESSAGES/ecpglib6-10.mo 928${PLIST.nls}share/locale/sv/LC_MESSAGES/ecpglib6-10.mo
929share/locale/sv/LC_MESSAGES/initdb-10.mo 929${PLIST.nls}share/locale/sv/LC_MESSAGES/initdb-10.mo
930share/locale/sv/LC_MESSAGES/libpq5-10.mo 930${PLIST.nls}share/locale/sv/LC_MESSAGES/libpq5-10.mo
931share/locale/sv/LC_MESSAGES/pg_archivecleanup-10.mo 931${PLIST.nls}share/locale/sv/LC_MESSAGES/pg_archivecleanup-10.mo
932share/locale/sv/LC_MESSAGES/pg_basebackup-10.mo 932${PLIST.nls}share/locale/sv/LC_MESSAGES/pg_basebackup-10.mo
933share/locale/sv/LC_MESSAGES/pg_config-10.mo 933${PLIST.nls}share/locale/sv/LC_MESSAGES/pg_config-10.mo
934share/locale/sv/LC_MESSAGES/pg_controldata-10.mo 934${PLIST.nls}share/locale/sv/LC_MESSAGES/pg_controldata-10.mo
935share/locale/sv/LC_MESSAGES/pg_ctl-10.mo 935${PLIST.nls}share/locale/sv/LC_MESSAGES/pg_ctl-10.mo
936share/locale/sv/LC_MESSAGES/pg_dump-10.mo 936${PLIST.nls}share/locale/sv/LC_MESSAGES/pg_dump-10.mo
937share/locale/sv/LC_MESSAGES/pg_resetwal-10.mo 937${PLIST.nls}share/locale/sv/LC_MESSAGES/pg_resetwal-10.mo
938share/locale/sv/LC_MESSAGES/pg_rewind-10.mo 938${PLIST.nls}share/locale/sv/LC_MESSAGES/pg_rewind-10.mo
939share/locale/sv/LC_MESSAGES/pg_test_fsync-10.mo 939${PLIST.nls}share/locale/sv/LC_MESSAGES/pg_test_fsync-10.mo
940share/locale/sv/LC_MESSAGES/pg_test_timing-10.mo 940${PLIST.nls}share/locale/sv/LC_MESSAGES/pg_test_timing-10.mo
941share/locale/sv/LC_MESSAGES/pg_upgrade-10.mo 941${PLIST.nls}share/locale/sv/LC_MESSAGES/pg_upgrade-10.mo
942share/locale/sv/LC_MESSAGES/pg_waldump-10.mo 942${PLIST.nls}share/locale/sv/LC_MESSAGES/pg_waldump-10.mo
943share/locale/sv/LC_MESSAGES/pgscripts-10.mo 943${PLIST.nls}share/locale/sv/LC_MESSAGES/pgscripts-10.mo
944share/locale/sv/LC_MESSAGES/psql-10.mo 944${PLIST.nls}share/locale/sv/LC_MESSAGES/psql-10.mo
945share/locale/ta/LC_MESSAGES/pg_config-10.mo 945${PLIST.nls}share/locale/ta/LC_MESSAGES/pg_config-10.mo
946share/locale/tr/LC_MESSAGES/ecpg-10.mo 946${PLIST.nls}share/locale/tr/LC_MESSAGES/ecpg-10.mo
947share/locale/tr/LC_MESSAGES/ecpglib6-10.mo 947${PLIST.nls}share/locale/tr/LC_MESSAGES/ecpglib6-10.mo
948share/locale/tr/LC_MESSAGES/initdb-10.mo 948${PLIST.nls}share/locale/tr/LC_MESSAGES/initdb-10.mo
949share/locale/tr/LC_MESSAGES/libpq5-10.mo 949${PLIST.nls}share/locale/tr/LC_MESSAGES/libpq5-10.mo
950share/locale/tr/LC_MESSAGES/pg_archivecleanup-10.mo 950${PLIST.nls}share/locale/tr/LC_MESSAGES/pg_archivecleanup-10.mo
951share/locale/tr/LC_MESSAGES/pg_basebackup-10.mo 951${PLIST.nls}share/locale/tr/LC_MESSAGES/pg_basebackup-10.mo
952share/locale/tr/LC_MESSAGES/pg_config-10.mo 952${PLIST.nls}share/locale/tr/LC_MESSAGES/pg_config-10.mo
953share/locale/tr/LC_MESSAGES/pg_controldata-10.mo 953${PLIST.nls}share/locale/tr/LC_MESSAGES/pg_controldata-10.mo
954share/locale/tr/LC_MESSAGES/pg_ctl-10.mo 954${PLIST.nls}share/locale/tr/LC_MESSAGES/pg_ctl-10.mo
955share/locale/tr/LC_MESSAGES/pg_dump-10.mo 955${PLIST.nls}share/locale/tr/LC_MESSAGES/pg_dump-10.mo
956share/locale/tr/LC_MESSAGES/pg_resetwal-10.mo 956${PLIST.nls}share/locale/tr/LC_MESSAGES/pg_resetwal-10.mo
957share/locale/tr/LC_MESSAGES/pg_rewind-10.mo 957${PLIST.nls}share/locale/tr/LC_MESSAGES/pg_rewind-10.mo
958share/locale/tr/LC_MESSAGES/pg_test_fsync-10.mo 958${PLIST.nls}share/locale/tr/LC_MESSAGES/pg_test_fsync-10.mo
959share/locale/tr/LC_MESSAGES/pg_test_timing-10.mo 959${PLIST.nls}share/locale/tr/LC_MESSAGES/pg_test_timing-10.mo
960share/locale/tr/LC_MESSAGES/pg_upgrade-10.mo 960${PLIST.nls}share/locale/tr/LC_MESSAGES/pg_upgrade-10.mo
961share/locale/tr/LC_MESSAGES/pg_waldump-10.mo 961${PLIST.nls}share/locale/tr/LC_MESSAGES/pg_waldump-10.mo
962share/locale/tr/LC_MESSAGES/pgscripts-10.mo 962${PLIST.nls}share/locale/tr/LC_MESSAGES/pgscripts-10.mo
963share/locale/tr/LC_MESSAGES/psql-10.mo 963${PLIST.nls}share/locale/tr/LC_MESSAGES/psql-10.mo
964share/locale/zh_CN/LC_MESSAGES/ecpg-10.mo 964${PLIST.nls}share/locale/zh_CN/LC_MESSAGES/ecpg-10.mo
965share/locale/zh_CN/LC_MESSAGES/ecpglib6-10.mo 965${PLIST.nls}share/locale/zh_CN/LC_MESSAGES/ecpglib6-10.mo
966share/locale/zh_CN/LC_MESSAGES/initdb-10.mo 966${PLIST.nls}share/locale/zh_CN/LC_MESSAGES/initdb-10.mo
967share/locale/zh_CN/LC_MESSAGES/libpq5-10.mo 967${PLIST.nls}share/locale/zh_CN/LC_MESSAGES/libpq5-10.mo
968share/locale/zh_CN/LC_MESSAGES/pg_config-10.mo 968${PLIST.nls}share/locale/zh_CN/LC_MESSAGES/pg_config-10.mo
969share/locale/zh_CN/LC_MESSAGES/pg_controldata-10.mo 969${PLIST.nls}share/locale/zh_CN/LC_MESSAGES/pg_controldata-10.mo
970share/locale/zh_CN/LC_MESSAGES/pg_ctl-10.mo 970${PLIST.nls}share/locale/zh_CN/LC_MESSAGES/pg_ctl-10.mo
971share/locale/zh_CN/LC_MESSAGES/pg_dump-10.mo 971${PLIST.nls}share/locale/zh_CN/LC_MESSAGES/pg_dump-10.mo
972share/locale/zh_CN/LC_MESSAGES/pg_resetwal-10.mo 972${PLIST.nls}share/locale/zh_CN/LC_MESSAGES/pg_resetwal-10.mo
973share/locale/zh_CN/LC_MESSAGES/pg_rewind-10.mo 973${PLIST.nls}share/locale/zh_CN/LC_MESSAGES/pg_rewind-10.mo
974share/locale/zh_CN/LC_MESSAGES/pgscripts-10.mo 974${PLIST.nls}share/locale/zh_CN/LC_MESSAGES/pgscripts-10.mo
975share/locale/zh_CN/LC_MESSAGES/psql-10.mo 975${PLIST.nls}share/locale/zh_CN/LC_MESSAGES/psql-10.mo
976share/locale/zh_TW/LC_MESSAGES/ecpg-10.mo 976${PLIST.nls}share/locale/zh_TW/LC_MESSAGES/ecpg-10.mo
977share/locale/zh_TW/LC_MESSAGES/pg_config-10.mo 977${PLIST.nls}share/locale/zh_TW/LC_MESSAGES/pg_config-10.mo
978share/postgresql/pg_service.conf.sample 978share/postgresql/pg_service.conf.sample
979share/postgresql/psqlrc.sample 979share/postgresql/psqlrc.sample

cvs diff -r1.2 -r1.3 pkgsrc/databases/postgresql10-plperl/Attic/PLIST (expand / switch to unified diff)

--- pkgsrc/databases/postgresql10-plperl/Attic/PLIST 2018/03/02 17:11:12 1.2
+++ pkgsrc/databases/postgresql10-plperl/Attic/PLIST 2019/10/25 12:01:19 1.3
@@ -1,24 +1,24 @@ @@ -1,24 +1,24 @@
1@comment $NetBSD: PLIST,v 1.2 2018/03/02 17:11:12 adam Exp $ 1@comment $NetBSD: PLIST,v 1.3 2019/10/25 12:01:19 triaxx Exp $
2include/postgresql/server/plperl.h 2include/postgresql/server/plperl.h
3include/postgresql/server/ppport.h 3include/postgresql/server/ppport.h
4lib/postgresql/plperl.so 4lib/postgresql/plperl.so
5share/locale/cs/LC_MESSAGES/plperl-10.mo 5${PLIST.nls}share/locale/cs/LC_MESSAGES/plperl-10.mo
6share/locale/de/LC_MESSAGES/plperl-10.mo 6${PLIST.nls}share/locale/de/LC_MESSAGES/plperl-10.mo
7share/locale/es/LC_MESSAGES/plperl-10.mo 7${PLIST.nls}share/locale/es/LC_MESSAGES/plperl-10.mo
8share/locale/fr/LC_MESSAGES/plperl-10.mo 8${PLIST.nls}share/locale/fr/LC_MESSAGES/plperl-10.mo
9share/locale/it/LC_MESSAGES/plperl-10.mo 9${PLIST.nls}share/locale/it/LC_MESSAGES/plperl-10.mo
10share/locale/ja/LC_MESSAGES/plperl-10.mo 10${PLIST.nls}share/locale/ja/LC_MESSAGES/plperl-10.mo
11share/locale/ko/LC_MESSAGES/plperl-10.mo 11${PLIST.nls}share/locale/ko/LC_MESSAGES/plperl-10.mo
12share/locale/pl/LC_MESSAGES/plperl-10.mo 12${PLIST.nls}share/locale/pl/LC_MESSAGES/plperl-10.mo
13share/locale/pt_BR/LC_MESSAGES/plperl-10.mo 13${PLIST.nls}share/locale/pt_BR/LC_MESSAGES/plperl-10.mo
14share/locale/ro/LC_MESSAGES/plperl-10.mo 14${PLIST.nls}share/locale/ro/LC_MESSAGES/plperl-10.mo
15share/locale/ru/LC_MESSAGES/plperl-10.mo 15${PLIST.nls}share/locale/ru/LC_MESSAGES/plperl-10.mo
16share/locale/sv/LC_MESSAGES/plperl-10.mo 16${PLIST.nls}share/locale/sv/LC_MESSAGES/plperl-10.mo
17share/locale/tr/LC_MESSAGES/plperl-10.mo 17${PLIST.nls}share/locale/tr/LC_MESSAGES/plperl-10.mo
18share/locale/zh_CN/LC_MESSAGES/plperl-10.mo 18${PLIST.nls}share/locale/zh_CN/LC_MESSAGES/plperl-10.mo
19share/postgresql/extension/plperl--1.0.sql 19share/postgresql/extension/plperl--1.0.sql
20share/postgresql/extension/plperl--unpackaged--1.0.sql 20share/postgresql/extension/plperl--unpackaged--1.0.sql
21share/postgresql/extension/plperl.control 21share/postgresql/extension/plperl.control
22share/postgresql/extension/plperlu--1.0.sql 22share/postgresql/extension/plperlu--1.0.sql
23share/postgresql/extension/plperlu--unpackaged--1.0.sql 23share/postgresql/extension/plperlu--unpackaged--1.0.sql
24share/postgresql/extension/plperlu.control 24share/postgresql/extension/plperlu.control

cvs diff -r1.3 -r1.4 pkgsrc/databases/postgresql10-plpython/Attic/PLIST (expand / switch to unified diff)

--- pkgsrc/databases/postgresql10-plpython/Attic/PLIST 2018/08/10 11:56:10 1.3
+++ pkgsrc/databases/postgresql10-plpython/Attic/PLIST 2019/10/25 12:01:19 1.4
@@ -1,33 +1,33 @@ @@ -1,33 +1,33 @@
1@comment $NetBSD: PLIST,v 1.3 2018/08/10 11:56:10 adam Exp $ 1@comment $NetBSD: PLIST,v 1.4 2019/10/25 12:01:19 triaxx Exp $
2include/postgresql/server/plpy_util.h 2include/postgresql/server/plpy_util.h
3include/postgresql/server/plpython.h 3include/postgresql/server/plpython.h
4${PLIST.py2x}lib/postgresql/hstore_plpython2.so 4${PLIST.py2x}lib/postgresql/hstore_plpython2.so
5${PLIST.py3x}lib/postgresql/hstore_plpython3.so 5${PLIST.py3x}lib/postgresql/hstore_plpython3.so
6${PLIST.py2x}lib/postgresql/plpython2.so 6${PLIST.py2x}lib/postgresql/plpython2.so
7${PLIST.py3x}lib/postgresql/plpython3.so 7${PLIST.py3x}lib/postgresql/plpython3.so
8share/locale/cs/LC_MESSAGES/plpython-10.mo 8${PLIST}share/locale/cs/LC_MESSAGES/plpython-10.mo
9share/locale/de/LC_MESSAGES/plpython-10.mo 9${PLIST}share/locale/de/LC_MESSAGES/plpython-10.mo
10share/locale/es/LC_MESSAGES/plpython-10.mo 10${PLIST}share/locale/es/LC_MESSAGES/plpython-10.mo
11share/locale/fr/LC_MESSAGES/plpython-10.mo 11${PLIST}share/locale/fr/LC_MESSAGES/plpython-10.mo
12share/locale/it/LC_MESSAGES/plpython-10.mo 12${PLIST}share/locale/it/LC_MESSAGES/plpython-10.mo
13share/locale/ja/LC_MESSAGES/plpython-10.mo 13${PLIST}share/locale/ja/LC_MESSAGES/plpython-10.mo
14share/locale/ko/LC_MESSAGES/plpython-10.mo 14${PLIST}share/locale/ko/LC_MESSAGES/plpython-10.mo
15share/locale/pl/LC_MESSAGES/plpython-10.mo 15${PLIST}share/locale/pl/LC_MESSAGES/plpython-10.mo
16share/locale/pt_BR/LC_MESSAGES/plpython-10.mo 16${PLIST}share/locale/pt_BR/LC_MESSAGES/plpython-10.mo
17share/locale/ru/LC_MESSAGES/plpython-10.mo 17${PLIST}share/locale/ru/LC_MESSAGES/plpython-10.mo
18share/locale/sv/LC_MESSAGES/plpython-10.mo 18${PLIST}share/locale/sv/LC_MESSAGES/plpython-10.mo
19share/locale/tr/LC_MESSAGES/plpython-10.mo 19${PLIST}share/locale/tr/LC_MESSAGES/plpython-10.mo
20share/locale/zh_CN/LC_MESSAGES/plpython-10.mo 20${PLIST}share/locale/zh_CN/LC_MESSAGES/plpython-10.mo
21share/postgresql/extension/hstore_plpython2u--1.0.sql 21share/postgresql/extension/hstore_plpython2u--1.0.sql
22share/postgresql/extension/hstore_plpython2u.control 22share/postgresql/extension/hstore_plpython2u.control
23share/postgresql/extension/hstore_plpython3u--1.0.sql 23share/postgresql/extension/hstore_plpython3u--1.0.sql
24share/postgresql/extension/hstore_plpython3u.control 24share/postgresql/extension/hstore_plpython3u.control
25share/postgresql/extension/hstore_plpythonu--1.0.sql 25share/postgresql/extension/hstore_plpythonu--1.0.sql
26share/postgresql/extension/hstore_plpythonu.control 26share/postgresql/extension/hstore_plpythonu.control
27${PLIST.py2x}share/postgresql/extension/plpython2u--1.0.sql 27${PLIST.py2x}share/postgresql/extension/plpython2u--1.0.sql
28${PLIST.py2x}share/postgresql/extension/plpython2u--unpackaged--1.0.sql 28${PLIST.py2x}share/postgresql/extension/plpython2u--unpackaged--1.0.sql
29${PLIST.py2x}share/postgresql/extension/plpython2u.control 29${PLIST.py2x}share/postgresql/extension/plpython2u.control
30${PLIST.py3x}share/postgresql/extension/plpython3u--1.0.sql 30${PLIST.py3x}share/postgresql/extension/plpython3u--1.0.sql
31${PLIST.py3x}share/postgresql/extension/plpython3u--unpackaged--1.0.sql 31${PLIST.py3x}share/postgresql/extension/plpython3u--unpackaged--1.0.sql
32${PLIST.py3x}share/postgresql/extension/plpython3u.control 32${PLIST.py3x}share/postgresql/extension/plpython3u.control
33${PLIST.py2x}share/postgresql/extension/plpythonu--1.0.sql 33${PLIST.py2x}share/postgresql/extension/plpythonu--1.0.sql

cvs diff -r1.3 -r1.4 pkgsrc/databases/postgresql10-pltcl/Attic/PLIST (expand / switch to unified diff)

--- pkgsrc/databases/postgresql10-pltcl/Attic/PLIST 2018/08/10 11:56:10 1.3
+++ pkgsrc/databases/postgresql10-pltcl/Attic/PLIST 2019/10/25 12:01:19 1.4
@@ -1,19 +1,19 @@ @@ -1,19 +1,19 @@
1@comment $NetBSD: PLIST,v 1.3 2018/08/10 11:56:10 adam Exp $ 1@comment $NetBSD: PLIST,v 1.4 2019/10/25 12:01:19 triaxx Exp $
2lib/postgresql/pltcl.so 2lib/postgresql/pltcl.so
3share/locale/cs/LC_MESSAGES/pltcl-10.mo 3${PLIST.nls}share/locale/cs/LC_MESSAGES/pltcl-10.mo
4share/locale/de/LC_MESSAGES/pltcl-10.mo 4${PLIST.nls}share/locale/de/LC_MESSAGES/pltcl-10.mo
5share/locale/es/LC_MESSAGES/pltcl-10.mo 5${PLIST.nls}share/locale/es/LC_MESSAGES/pltcl-10.mo
6share/locale/fr/LC_MESSAGES/pltcl-10.mo 6${PLIST.nls}share/locale/fr/LC_MESSAGES/pltcl-10.mo
7share/locale/it/LC_MESSAGES/pltcl-10.mo 7${PLIST.nls}share/locale/it/LC_MESSAGES/pltcl-10.mo
8share/locale/ja/LC_MESSAGES/pltcl-10.mo 8${PLIST.nls}share/locale/ja/LC_MESSAGES/pltcl-10.mo
9share/locale/ko/LC_MESSAGES/pltcl-10.mo 9${PLIST.nls}share/locale/ko/LC_MESSAGES/pltcl-10.mo
10share/locale/pl/LC_MESSAGES/pltcl-10.mo 10${PLIST.nls}share/locale/pl/LC_MESSAGES/pltcl-10.mo
11share/locale/ru/LC_MESSAGES/pltcl-10.mo 11${PLIST.nls}share/locale/ru/LC_MESSAGES/pltcl-10.mo
12share/locale/sv/LC_MESSAGES/pltcl-10.mo 12${PLIST.nls}share/locale/sv/LC_MESSAGES/pltcl-10.mo
13share/locale/tr/LC_MESSAGES/pltcl-10.mo 13${PLIST.nls}share/locale/tr/LC_MESSAGES/pltcl-10.mo
14share/postgresql/extension/pltcl--1.0.sql 14share/postgresql/extension/pltcl--1.0.sql
15share/postgresql/extension/pltcl--unpackaged--1.0.sql 15share/postgresql/extension/pltcl--unpackaged--1.0.sql
16share/postgresql/extension/pltcl.control 16share/postgresql/extension/pltcl.control
17share/postgresql/extension/pltclu--1.0.sql 17share/postgresql/extension/pltclu--1.0.sql
18share/postgresql/extension/pltclu--unpackaged--1.0.sql 18share/postgresql/extension/pltclu--unpackaged--1.0.sql
19share/postgresql/extension/pltclu.control 19share/postgresql/extension/pltclu.control

cvs diff -r1.6 -r1.7 pkgsrc/databases/postgresql10-server/Attic/Makefile (expand / switch to unified diff)

--- pkgsrc/databases/postgresql10-server/Attic/Makefile 2019/02/17 08:26:11 1.6
+++ pkgsrc/databases/postgresql10-server/Attic/Makefile 2019/10/25 12:01:19 1.7
@@ -1,37 +1,35 @@ @@ -1,37 +1,35 @@
1# $NetBSD: Makefile,v 1.6 2019/02/17 08:26:11 adam Exp $ 1# $NetBSD: Makefile,v 1.7 2019/10/25 12:01:19 triaxx Exp $
2 2
3PKGNAME= ${DISTNAME:C/-/10-server-/} 3PKGNAME= ${DISTNAME:C/-/10-server-/}
4COMMENT= PostgreSQL database server programs 4COMMENT= PostgreSQL database server programs
5 5
6# mips has no TAS implementation 6# mips has no TAS implementation
7BROKEN_ON_PLATFORM= *-*-mips 7BROKEN_ON_PLATFORM= *-*-mips
8 8
9.include "../../databases/postgresql10/Makefile.common" 9.include "../../databases/postgresql10/Makefile.common"
10 10
11CONFIGURE_ARGS+= --with-openssl 11CONFIGURE_ARGS+= --with-openssl
12 12
13INSTALL_DIRS= src/backend 13INSTALL_DIRS= src/backend
14INSTALL_DIRS+= src/backend/replication/libpqwalreceiver 14INSTALL_DIRS+= src/backend/replication/libpqwalreceiver
15INSTALL_DIRS+= src/backend/replication/pgoutput 15INSTALL_DIRS+= src/backend/replication/pgoutput
16INSTALL_DIRS+= src/backend/utils/mb/conversion_procs 16INSTALL_DIRS+= src/backend/utils/mb/conversion_procs
17INSTALL_DIRS+= src/backend/snowball 17INSTALL_DIRS+= src/backend/snowball
18INSTALL_DIRS+= src/timezone 18INSTALL_DIRS+= src/timezone
19INSTALL_DIRS+= src/pl 19INSTALL_DIRS+= src/pl
20BUILD_DIRS= src/port 20BUILD_DIRS= src/port
21BUILD_DIRS+= ${INSTALL_DIRS} 21BUILD_DIRS+= ${INSTALL_DIRS}
22 22
23LIBS.SunOS+= -lintl 
24 
25# PostgreSQL has loadable server-side language modules. 23# PostgreSQL has loadable server-side language modules.
26# 24#
27# Explicitly set DLOPEN_REQUIRE_PTHREADS to "no" on NetBSD as NetBSD-2.x 25# Explicitly set DLOPEN_REQUIRE_PTHREADS to "no" on NetBSD as NetBSD-2.x
28# had problems with mixing dlopen() and pthreads, which blows up in 26# had problems with mixing dlopen() and pthreads, which blows up in
29# PostgreSQL's backend (pkg/28729). This works on older and newer 27# PostgreSQL's backend (pkg/28729). This works on older and newer
30# versions of NetBSD as well since they don't have the bad interaction 28# versions of NetBSD as well since they don't have the bad interaction
31# between dlopen() and pthreads. 29# between dlopen() and pthreads.
32.if ${OPSYS} == "NetBSD" 30.if ${OPSYS} == "NetBSD"
33DLOPEN_REQUIRE_PTHREADS= no 31DLOPEN_REQUIRE_PTHREADS= no
34.endif 32.endif
35.include "../../mk/dlopen.buildlink3.mk" 33.include "../../mk/dlopen.buildlink3.mk"
36 34
37# If we're using libltdl to provide "dlopen" functionality, then add the 35# If we're using libltdl to provide "dlopen" functionality, then add the

cvs diff -r1.7 -r1.8 pkgsrc/databases/postgresql10-server/Attic/PLIST (expand / switch to unified diff)

--- pkgsrc/databases/postgresql10-server/Attic/PLIST 2019/02/17 08:26:11 1.7
+++ pkgsrc/databases/postgresql10-server/Attic/PLIST 2019/10/25 12:01:19 1.8
@@ -1,14 +1,14 @@ @@ -1,14 +1,14 @@
1@comment $NetBSD: PLIST,v 1.7 2019/02/17 08:26:11 adam Exp $ 1@comment $NetBSD: PLIST,v 1.8 2019/10/25 12:01:19 triaxx Exp $
2bin/postgres 2bin/postgres
3bin/postmaster 3bin/postmaster
4include/postgresql/server/plpgsql.h 4include/postgresql/server/plpgsql.h
5lib/postgresql/ascii_and_mic.so 5lib/postgresql/ascii_and_mic.so
6lib/postgresql/cyrillic_and_mic.so 6lib/postgresql/cyrillic_and_mic.so
7lib/postgresql/dict_snowball.so 7lib/postgresql/dict_snowball.so
8lib/postgresql/euc2004_sjis2004.so 8lib/postgresql/euc2004_sjis2004.so
9lib/postgresql/euc_cn_and_mic.so 9lib/postgresql/euc_cn_and_mic.so
10lib/postgresql/euc_jp_and_sjis.so 10lib/postgresql/euc_jp_and_sjis.so
11lib/postgresql/euc_kr_and_mic.so 11lib/postgresql/euc_kr_and_mic.so
12lib/postgresql/euc_tw_and_big5.so 12lib/postgresql/euc_tw_and_big5.so
13lib/postgresql/latin2_and_win1250.so 13lib/postgresql/latin2_and_win1250.so
14lib/postgresql/latin_and_mic.so 14lib/postgresql/latin_and_mic.so
@@ -22,52 +22,52 @@ lib/postgresql/utf8_and_euc2004.so @@ -22,52 +22,52 @@ lib/postgresql/utf8_and_euc2004.so
22lib/postgresql/utf8_and_euc_cn.so 22lib/postgresql/utf8_and_euc_cn.so
23lib/postgresql/utf8_and_euc_jp.so 23lib/postgresql/utf8_and_euc_jp.so
24lib/postgresql/utf8_and_euc_kr.so 24lib/postgresql/utf8_and_euc_kr.so
25lib/postgresql/utf8_and_euc_tw.so 25lib/postgresql/utf8_and_euc_tw.so
26lib/postgresql/utf8_and_gb18030.so 26lib/postgresql/utf8_and_gb18030.so
27lib/postgresql/utf8_and_gbk.so 27lib/postgresql/utf8_and_gbk.so
28lib/postgresql/utf8_and_iso8859.so 28lib/postgresql/utf8_and_iso8859.so
29lib/postgresql/utf8_and_iso8859_1.so 29lib/postgresql/utf8_and_iso8859_1.so
30lib/postgresql/utf8_and_johab.so 30lib/postgresql/utf8_and_johab.so
31lib/postgresql/utf8_and_sjis.so 31lib/postgresql/utf8_and_sjis.so
32lib/postgresql/utf8_and_sjis2004.so 32lib/postgresql/utf8_and_sjis2004.so
33lib/postgresql/utf8_and_uhc.so 33lib/postgresql/utf8_and_uhc.so
34lib/postgresql/utf8_and_win.so 34lib/postgresql/utf8_and_win.so
35share/locale/cs/LC_MESSAGES/plpgsql-10.mo 35${PLIST.nls}share/locale/cs/LC_MESSAGES/plpgsql-10.mo
36share/locale/de/LC_MESSAGES/plpgsql-10.mo 36${PLIST.nls}share/locale/de/LC_MESSAGES/plpgsql-10.mo
37share/locale/de/LC_MESSAGES/postgres-10.mo 37${PLIST.nls}share/locale/de/LC_MESSAGES/postgres-10.mo
38share/locale/es/LC_MESSAGES/plpgsql-10.mo 38${PLIST.nls}share/locale/es/LC_MESSAGES/plpgsql-10.mo
39share/locale/es/LC_MESSAGES/postgres-10.mo 39${PLIST.nls}share/locale/es/LC_MESSAGES/postgres-10.mo
40share/locale/fr/LC_MESSAGES/plpgsql-10.mo 40${PLIST.nls}share/locale/fr/LC_MESSAGES/plpgsql-10.mo
41share/locale/fr/LC_MESSAGES/postgres-10.mo 41${PLIST.nls}share/locale/fr/LC_MESSAGES/postgres-10.mo
42share/locale/it/LC_MESSAGES/plpgsql-10.mo 42${PLIST.nls}share/locale/it/LC_MESSAGES/plpgsql-10.mo
43share/locale/it/LC_MESSAGES/postgres-10.mo 43${PLIST.nls}share/locale/it/LC_MESSAGES/postgres-10.mo
44share/locale/ja/LC_MESSAGES/plpgsql-10.mo 44${PLIST.nls}share/locale/ja/LC_MESSAGES/plpgsql-10.mo
45share/locale/ja/LC_MESSAGES/postgres-10.mo 45${PLIST.nls}share/locale/ja/LC_MESSAGES/postgres-10.mo
46share/locale/ko/LC_MESSAGES/plpgsql-10.mo 46${PLIST.nls}share/locale/ko/LC_MESSAGES/plpgsql-10.mo
47share/locale/ko/LC_MESSAGES/postgres-10.mo 47${PLIST.nls}share/locale/ko/LC_MESSAGES/postgres-10.mo
48share/locale/pl/LC_MESSAGES/plpgsql-10.mo 48${PLIST.nls}share/locale/pl/LC_MESSAGES/plpgsql-10.mo
49share/locale/pl/LC_MESSAGES/postgres-10.mo 49${PLIST.nls}share/locale/pl/LC_MESSAGES/postgres-10.mo
50share/locale/pt_BR/LC_MESSAGES/plpgsql-10.mo 50${PLIST.nls}share/locale/pt_BR/LC_MESSAGES/plpgsql-10.mo
51share/locale/ro/LC_MESSAGES/plpgsql-10.mo 51${PLIST.nls}share/locale/ro/LC_MESSAGES/plpgsql-10.mo
52share/locale/ru/LC_MESSAGES/plpgsql-10.mo 52${PLIST.nls}share/locale/ru/LC_MESSAGES/plpgsql-10.mo
53share/locale/ru/LC_MESSAGES/postgres-10.mo 53${PLIST.nls}share/locale/ru/LC_MESSAGES/postgres-10.mo
54share/locale/sv/LC_MESSAGES/plpgsql-10.mo 54${PLIST.nls}share/locale/sv/LC_MESSAGES/plpgsql-10.mo
55share/locale/sv/LC_MESSAGES/postgres-10.mo 55${PLIST.nls}share/locale/sv/LC_MESSAGES/postgres-10.mo
56share/locale/tr/LC_MESSAGES/plpgsql-10.mo 56${PLIST.nls}share/locale/tr/LC_MESSAGES/plpgsql-10.mo
57share/locale/tr/LC_MESSAGES/postgres-10.mo 57${PLIST.nls}share/locale/tr/LC_MESSAGES/postgres-10.mo
58share/locale/zh_CN/LC_MESSAGES/plpgsql-10.mo 58${PLIST.nls}share/locale/zh_CN/LC_MESSAGES/plpgsql-10.mo
59share/locale/zh_CN/LC_MESSAGES/postgres-10.mo 59${PLIST.nls}share/locale/zh_CN/LC_MESSAGES/postgres-10.mo
60share/locale/zh_TW/LC_MESSAGES/plpgsql-10.mo 60${PLIST.nls}share/locale/zh_TW/LC_MESSAGES/plpgsql-10.mo
61share/postgresql/conversion_create.sql 61share/postgresql/conversion_create.sql
62share/postgresql/extension/plpgsql--1.0.sql 62share/postgresql/extension/plpgsql--1.0.sql
63share/postgresql/extension/plpgsql--unpackaged--1.0.sql 63share/postgresql/extension/plpgsql--unpackaged--1.0.sql
64share/postgresql/extension/plpgsql.control 64share/postgresql/extension/plpgsql.control
65share/postgresql/information_schema.sql 65share/postgresql/information_schema.sql
66share/postgresql/pg_hba.conf.sample 66share/postgresql/pg_hba.conf.sample
67share/postgresql/pg_ident.conf.sample 67share/postgresql/pg_ident.conf.sample
68share/postgresql/postgres.bki 68share/postgresql/postgres.bki
69share/postgresql/postgres.description 69share/postgresql/postgres.description
70share/postgresql/postgres.shdescription 70share/postgresql/postgres.shdescription
71share/postgresql/postgresql.conf.sample 71share/postgresql/postgresql.conf.sample
72share/postgresql/recovery.conf.sample 72share/postgresql/recovery.conf.sample
73share/postgresql/snowball_create.sql 73share/postgresql/snowball_create.sql