pkgsrc-Changes archive

[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index][Old Index]

CVS commit: pkgsrc/databases



Module Name:    pkgsrc
Committed By:   triaxx
Date:           Fri Oct 25 12:01:20 UTC 2019

Modified Files:
        pkgsrc/databases/postgresql10: Makefile.common options.mk
        pkgsrc/databases/postgresql10-client: PLIST
        pkgsrc/databases/postgresql10-plperl: PLIST
        pkgsrc/databases/postgresql10-plpython: PLIST
        pkgsrc/databases/postgresql10-pltcl: PLIST
        pkgsrc/databases/postgresql10-server: Makefile PLIST

Log Message:
postgresql10: make nls support optional


To generate a diff of this commit:
cvs rdiff -u -r1.15 -r1.16 pkgsrc/databases/postgresql10/Makefile.common
cvs rdiff -u -r1.2 -r1.3 pkgsrc/databases/postgresql10/options.mk
cvs rdiff -u -r1.7 -r1.8 pkgsrc/databases/postgresql10-client/PLIST
cvs rdiff -u -r1.2 -r1.3 pkgsrc/databases/postgresql10-plperl/PLIST
cvs rdiff -u -r1.3 -r1.4 pkgsrc/databases/postgresql10-plpython/PLIST
cvs rdiff -u -r1.3 -r1.4 pkgsrc/databases/postgresql10-pltcl/PLIST
cvs rdiff -u -r1.6 -r1.7 pkgsrc/databases/postgresql10-server/Makefile
cvs rdiff -u -r1.7 -r1.8 pkgsrc/databases/postgresql10-server/PLIST

Please note that diffs are not public domain; they are subject to the
copyright notices on the relevant files.

Modified files:

Index: pkgsrc/databases/postgresql10/Makefile.common
diff -u pkgsrc/databases/postgresql10/Makefile.common:1.15 pkgsrc/databases/postgresql10/Makefile.common:1.16
--- pkgsrc/databases/postgresql10/Makefile.common:1.15  Mon Oct  7 19:28:28 2019
+++ pkgsrc/databases/postgresql10/Makefile.common       Fri Oct 25 12:01:19 2019
@@ -1,4 +1,4 @@
-# $NetBSD: Makefile.common,v 1.15 2019/10/07 19:28:28 adam Exp $
+# $NetBSD: Makefile.common,v 1.16 2019/10/25 12:01:19 triaxx Exp $
 #
 # This Makefile fragment is included by all PostgreSQL packages built from
 # the main sources of the PostgreSQL distribution except jdbc-postgresql.
@@ -37,8 +37,7 @@ DISTINFO_FILE?=               ${.CURDIR}/../../databa
 COMMON_FILESDIR?=      ${.CURDIR}/../../databases/postgresql10/files
 PATCHDIR?=             ${.CURDIR}/../../databases/postgresql10/patches
 
-USE_PKGLOCALEDIR=      yes
-USE_TOOLS+=            bison gmake lex msgfmt
+USE_TOOLS+=            bison gmake lex
 PKG_SYSCONFSUBDIR=     postgresql
 
 .include "../../mk/bsd.prefs.mk"
@@ -62,16 +61,12 @@ CONFIGURE_ARGS+=    --docdir=${PG_DOC_DIR}
 CONFIGURE_ARGS+=       --localedir=${PG_LOCALE_DIR}
 CONFIGURE_ARGS+=       --with-template=${PG_TEMPLATE.${OPSYS}}
 
-CONFIGURE_ARGS+=       --enable-nls
 CONFIGURE_ARGS+=       --with-libxml
 CONFIGURE_ARGS+=       --with-readline
 CONFIGURE_ARGS+=       --without-perl
 CONFIGURE_ARGS+=       --without-python
 CONFIGURE_ARGS+=       --without-tcl
 
-# avoid pointing to a wrapper
-CONFIGURE_ENV+=                MSGFMT=${TOOLS_PATH.msgfmt}
-
 # sys/ucred.h shouldn't be included on Solaris, causes conflicts between
 # procfs and largefile.
 CONFIGURE_ENV.SunOS+=  ac_cv_header_sys_ucred_h=no
@@ -107,8 +102,6 @@ USE_LIBLTDL?=               yes
 .endif
 USE_LIBLTDL?=          no
 
-.include "../../devel/gettext-lib/buildlink3.mk"
-LIBS.SunOS+=           -lintl
 .include "../../devel/zlib/buildlink3.mk"
 .include "../../textproc/libxml2/buildlink3.mk"
 

Index: pkgsrc/databases/postgresql10/options.mk
diff -u pkgsrc/databases/postgresql10/options.mk:1.2 pkgsrc/databases/postgresql10/options.mk:1.3
--- pkgsrc/databases/postgresql10/options.mk:1.2        Fri Dec 15 16:52:23 2017
+++ pkgsrc/databases/postgresql10/options.mk    Fri Oct 25 12:01:19 2019
@@ -1,8 +1,10 @@
-# $NetBSD: options.mk,v 1.2 2017/12/15 16:52:23 dholland Exp $
+# $NetBSD: options.mk,v 1.3 2019/10/25 12:01:19 triaxx Exp $
 
 PKG_OPTIONS_VAR=       PKG_OPTIONS.postgresql10
-PKG_SUPPORTED_OPTIONS= bonjour dtrace icu gssapi ldap pam
-PKG_SUGGESTED_OPTIONS= gssapi
+PKG_SUPPORTED_OPTIONS= bonjour dtrace icu gssapi ldap nls pam
+PKG_SUGGESTED_OPTIONS= gssapi nls
+
+PLIST_VARS+=           nls
 
 .include "../../mk/bsd.options.mk"
 
@@ -41,6 +43,18 @@ CONFIGURE_ARGS+=       --without-gssapi
 CONFIGURE_ARGS+=       --with-ldap
 .endif
 
+# NLS support
+.if !empty(PKG_OPTIONS:Mnls)
+USE_PKGLOCALEDIR=      yes
+CONFIGURE_ARGS+=       --enable-nls
+PLIST.nls=             yes
+BROKEN_GETTEXT_DETECTION=      yes
+.  include "../../devel/gettext-lib/buildlink3.mk"
+LIBS.SunOS+=           -lintl
+.else
+CONFIGURE_ARGS+=       --disable-nls
+.endif
+
 # PAM authentication for the PostgreSQL backend
 .if !empty(PKG_OPTIONS:Mpam)
 .  include "../../mk/pam.buildlink3.mk"

Index: pkgsrc/databases/postgresql10-client/PLIST
diff -u pkgsrc/databases/postgresql10-client/PLIST:1.7 pkgsrc/databases/postgresql10-client/PLIST:1.8
--- pkgsrc/databases/postgresql10-client/PLIST:1.7      Mon May 13 20:38:11 2019
+++ pkgsrc/databases/postgresql10-client/PLIST  Fri Oct 25 12:01:19 2019
@@ -1,4 +1,4 @@
-@comment $NetBSD: PLIST,v 1.7 2019/05/13 20:38:11 adam Exp $
+@comment $NetBSD: PLIST,v 1.8 2019/10/25 12:01:19 triaxx Exp $
 bin/clusterdb
 bin/createdb
 bin/createuser
@@ -748,232 +748,232 @@ lib/postgresql/pgxs/src/Makefile.port
 lib/postgresql/pgxs/src/Makefile.shlib
 lib/postgresql/pgxs/src/makefiles/pgxs.mk
 lib/postgresql/pgxs/src/nls-global.mk
-share/locale/cs/LC_MESSAGES/ecpg-10.mo
-share/locale/cs/LC_MESSAGES/ecpglib6-10.mo
-share/locale/cs/LC_MESSAGES/initdb-10.mo
-share/locale/cs/LC_MESSAGES/libpq5-10.mo
-share/locale/cs/LC_MESSAGES/pg_archivecleanup-10.mo
-share/locale/cs/LC_MESSAGES/pg_basebackup-10.mo
-share/locale/cs/LC_MESSAGES/pg_config-10.mo
-share/locale/cs/LC_MESSAGES/pg_controldata-10.mo
-share/locale/cs/LC_MESSAGES/pg_ctl-10.mo
-share/locale/cs/LC_MESSAGES/pg_dump-10.mo
-share/locale/cs/LC_MESSAGES/pg_resetwal-10.mo
-share/locale/cs/LC_MESSAGES/pg_rewind-10.mo
-share/locale/cs/LC_MESSAGES/pg_test_fsync-10.mo
-share/locale/cs/LC_MESSAGES/pg_test_timing-10.mo
-share/locale/cs/LC_MESSAGES/pg_upgrade-10.mo
-share/locale/cs/LC_MESSAGES/pg_waldump-10.mo
-share/locale/cs/LC_MESSAGES/pgscripts-10.mo
-share/locale/cs/LC_MESSAGES/psql-10.mo
-share/locale/de/LC_MESSAGES/ecpg-10.mo
-share/locale/de/LC_MESSAGES/ecpglib6-10.mo
-share/locale/de/LC_MESSAGES/initdb-10.mo
-share/locale/de/LC_MESSAGES/libpq5-10.mo
-share/locale/de/LC_MESSAGES/pg_archivecleanup-10.mo
-share/locale/de/LC_MESSAGES/pg_basebackup-10.mo
-share/locale/de/LC_MESSAGES/pg_config-10.mo
-share/locale/de/LC_MESSAGES/pg_controldata-10.mo
-share/locale/de/LC_MESSAGES/pg_ctl-10.mo
-share/locale/de/LC_MESSAGES/pg_dump-10.mo
-share/locale/de/LC_MESSAGES/pg_resetwal-10.mo
-share/locale/de/LC_MESSAGES/pg_rewind-10.mo
-share/locale/de/LC_MESSAGES/pg_test_fsync-10.mo
-share/locale/de/LC_MESSAGES/pg_test_timing-10.mo
-share/locale/de/LC_MESSAGES/pg_upgrade-10.mo
-share/locale/de/LC_MESSAGES/pg_waldump-10.mo
-share/locale/de/LC_MESSAGES/pgscripts-10.mo
-share/locale/de/LC_MESSAGES/psql-10.mo
-share/locale/es/LC_MESSAGES/ecpg-10.mo
-share/locale/es/LC_MESSAGES/ecpglib6-10.mo
-share/locale/es/LC_MESSAGES/initdb-10.mo
-share/locale/es/LC_MESSAGES/libpq5-10.mo
-share/locale/es/LC_MESSAGES/pg_archivecleanup-10.mo
-share/locale/es/LC_MESSAGES/pg_basebackup-10.mo
-share/locale/es/LC_MESSAGES/pg_config-10.mo
-share/locale/es/LC_MESSAGES/pg_controldata-10.mo
-share/locale/es/LC_MESSAGES/pg_ctl-10.mo
-share/locale/es/LC_MESSAGES/pg_dump-10.mo
-share/locale/es/LC_MESSAGES/pg_resetwal-10.mo
-share/locale/es/LC_MESSAGES/pg_rewind-10.mo
-share/locale/es/LC_MESSAGES/pg_test_fsync-10.mo
-share/locale/es/LC_MESSAGES/pg_test_timing-10.mo
-share/locale/es/LC_MESSAGES/pg_upgrade-10.mo
-share/locale/es/LC_MESSAGES/pg_waldump-10.mo
-share/locale/es/LC_MESSAGES/pgscripts-10.mo
-share/locale/es/LC_MESSAGES/psql-10.mo
-share/locale/fr/LC_MESSAGES/ecpg-10.mo
-share/locale/fr/LC_MESSAGES/ecpglib6-10.mo
-share/locale/fr/LC_MESSAGES/initdb-10.mo
-share/locale/fr/LC_MESSAGES/libpq5-10.mo
-share/locale/fr/LC_MESSAGES/pg_archivecleanup-10.mo
-share/locale/fr/LC_MESSAGES/pg_basebackup-10.mo
-share/locale/fr/LC_MESSAGES/pg_config-10.mo
-share/locale/fr/LC_MESSAGES/pg_controldata-10.mo
-share/locale/fr/LC_MESSAGES/pg_ctl-10.mo
-share/locale/fr/LC_MESSAGES/pg_dump-10.mo
-share/locale/fr/LC_MESSAGES/pg_resetwal-10.mo
-share/locale/fr/LC_MESSAGES/pg_rewind-10.mo
-share/locale/fr/LC_MESSAGES/pg_test_fsync-10.mo
-share/locale/fr/LC_MESSAGES/pg_test_timing-10.mo
-share/locale/fr/LC_MESSAGES/pg_upgrade-10.mo
-share/locale/fr/LC_MESSAGES/pg_waldump-10.mo
-share/locale/fr/LC_MESSAGES/pgscripts-10.mo
-share/locale/fr/LC_MESSAGES/psql-10.mo
-share/locale/he/LC_MESSAGES/initdb-10.mo
-share/locale/he/LC_MESSAGES/libpq5-10.mo
-share/locale/he/LC_MESSAGES/pg_basebackup-10.mo
-share/locale/he/LC_MESSAGES/pg_config-10.mo
-share/locale/he/LC_MESSAGES/pg_ctl-10.mo
-share/locale/he/LC_MESSAGES/pg_dump-10.mo
-share/locale/he/LC_MESSAGES/pgscripts-10.mo
-share/locale/he/LC_MESSAGES/psql-10.mo
-share/locale/it/LC_MESSAGES/ecpg-10.mo
-share/locale/it/LC_MESSAGES/ecpglib6-10.mo
-share/locale/it/LC_MESSAGES/initdb-10.mo
-share/locale/it/LC_MESSAGES/libpq5-10.mo
-share/locale/it/LC_MESSAGES/pg_basebackup-10.mo
-share/locale/it/LC_MESSAGES/pg_config-10.mo
-share/locale/it/LC_MESSAGES/pg_controldata-10.mo
-share/locale/it/LC_MESSAGES/pg_ctl-10.mo
-share/locale/it/LC_MESSAGES/pg_dump-10.mo
-share/locale/it/LC_MESSAGES/pg_rewind-10.mo
-share/locale/it/LC_MESSAGES/pgscripts-10.mo
-share/locale/it/LC_MESSAGES/psql-10.mo
-share/locale/ja/LC_MESSAGES/ecpg-10.mo
-share/locale/ja/LC_MESSAGES/ecpglib6-10.mo
-share/locale/ja/LC_MESSAGES/initdb-10.mo
-share/locale/ja/LC_MESSAGES/libpq5-10.mo
-share/locale/ja/LC_MESSAGES/pg_archivecleanup-10.mo
-share/locale/ja/LC_MESSAGES/pg_basebackup-10.mo
-share/locale/ja/LC_MESSAGES/pg_config-10.mo
-share/locale/ja/LC_MESSAGES/pg_controldata-10.mo
-share/locale/ja/LC_MESSAGES/pg_ctl-10.mo
-share/locale/ja/LC_MESSAGES/pg_dump-10.mo
-share/locale/ja/LC_MESSAGES/pg_resetwal-10.mo
-share/locale/ja/LC_MESSAGES/pg_rewind-10.mo
-share/locale/ja/LC_MESSAGES/pg_test_fsync-10.mo
-share/locale/ja/LC_MESSAGES/pg_test_timing-10.mo
-share/locale/ja/LC_MESSAGES/pg_upgrade-10.mo
-share/locale/ja/LC_MESSAGES/pg_waldump-10.mo
-share/locale/ja/LC_MESSAGES/pgscripts-10.mo
-share/locale/ja/LC_MESSAGES/psql-10.mo
-share/locale/ko/LC_MESSAGES/ecpg-10.mo
-share/locale/ko/LC_MESSAGES/ecpglib6-10.mo
-share/locale/ko/LC_MESSAGES/initdb-10.mo
-share/locale/ko/LC_MESSAGES/libpq5-10.mo
-share/locale/ko/LC_MESSAGES/pg_archivecleanup-10.mo
-share/locale/ko/LC_MESSAGES/pg_basebackup-10.mo
-share/locale/ko/LC_MESSAGES/pg_config-10.mo
-share/locale/ko/LC_MESSAGES/pg_controldata-10.mo
-share/locale/ko/LC_MESSAGES/pg_ctl-10.mo
-share/locale/ko/LC_MESSAGES/pg_dump-10.mo
-share/locale/ko/LC_MESSAGES/pg_resetwal-10.mo
-share/locale/ko/LC_MESSAGES/pg_rewind-10.mo
-share/locale/ko/LC_MESSAGES/pg_test_fsync-10.mo
-share/locale/ko/LC_MESSAGES/pg_test_timing-10.mo
-share/locale/ko/LC_MESSAGES/pg_upgrade-10.mo
-share/locale/ko/LC_MESSAGES/pg_waldump-10.mo
-share/locale/ko/LC_MESSAGES/pgscripts-10.mo
-share/locale/ko/LC_MESSAGES/psql-10.mo
-share/locale/nb/LC_MESSAGES/pg_config-10.mo
-share/locale/pl/LC_MESSAGES/ecpg-10.mo
-share/locale/pl/LC_MESSAGES/ecpglib6-10.mo
-share/locale/pl/LC_MESSAGES/initdb-10.mo
-share/locale/pl/LC_MESSAGES/libpq5-10.mo
-share/locale/pl/LC_MESSAGES/pg_archivecleanup-10.mo
-share/locale/pl/LC_MESSAGES/pg_basebackup-10.mo
-share/locale/pl/LC_MESSAGES/pg_config-10.mo
-share/locale/pl/LC_MESSAGES/pg_controldata-10.mo
-share/locale/pl/LC_MESSAGES/pg_ctl-10.mo
-share/locale/pl/LC_MESSAGES/pg_dump-10.mo
-share/locale/pl/LC_MESSAGES/pg_resetwal-10.mo
-share/locale/pl/LC_MESSAGES/pg_rewind-10.mo
-share/locale/pl/LC_MESSAGES/pg_test_fsync-10.mo
-share/locale/pl/LC_MESSAGES/pg_test_timing-10.mo
-share/locale/pl/LC_MESSAGES/pgscripts-10.mo
-share/locale/pl/LC_MESSAGES/psql-10.mo
-share/locale/pt_BR/LC_MESSAGES/ecpg-10.mo
-share/locale/pt_BR/LC_MESSAGES/ecpglib6-10.mo
-share/locale/pt_BR/LC_MESSAGES/initdb-10.mo
-share/locale/pt_BR/LC_MESSAGES/libpq5-10.mo
-share/locale/pt_BR/LC_MESSAGES/pg_config-10.mo
-share/locale/pt_BR/LC_MESSAGES/pg_controldata-10.mo
-share/locale/pt_BR/LC_MESSAGES/pg_ctl-10.mo
-share/locale/pt_BR/LC_MESSAGES/pg_dump-10.mo
-share/locale/pt_BR/LC_MESSAGES/pg_resetwal-10.mo
-share/locale/pt_BR/LC_MESSAGES/pg_rewind-10.mo
-share/locale/pt_BR/LC_MESSAGES/pgscripts-10.mo
-share/locale/pt_BR/LC_MESSAGES/psql-10.mo
-share/locale/ro/LC_MESSAGES/pg_config-10.mo
-share/locale/ru/LC_MESSAGES/ecpg-10.mo
-share/locale/ru/LC_MESSAGES/ecpglib6-10.mo
-share/locale/ru/LC_MESSAGES/initdb-10.mo
-share/locale/ru/LC_MESSAGES/libpq5-10.mo
-share/locale/ru/LC_MESSAGES/pg_archivecleanup-10.mo
-share/locale/ru/LC_MESSAGES/pg_basebackup-10.mo
-share/locale/ru/LC_MESSAGES/pg_config-10.mo
-share/locale/ru/LC_MESSAGES/pg_controldata-10.mo
-share/locale/ru/LC_MESSAGES/pg_ctl-10.mo
-share/locale/ru/LC_MESSAGES/pg_dump-10.mo
-share/locale/ru/LC_MESSAGES/pg_resetwal-10.mo
-share/locale/ru/LC_MESSAGES/pg_rewind-10.mo
-share/locale/ru/LC_MESSAGES/pg_test_fsync-10.mo
-share/locale/ru/LC_MESSAGES/pg_test_timing-10.mo
-share/locale/ru/LC_MESSAGES/pg_upgrade-10.mo
-share/locale/ru/LC_MESSAGES/pg_waldump-10.mo
-share/locale/ru/LC_MESSAGES/pgscripts-10.mo
-share/locale/ru/LC_MESSAGES/psql-10.mo
-share/locale/sv/LC_MESSAGES/ecpg-10.mo
-share/locale/sv/LC_MESSAGES/ecpglib6-10.mo
-share/locale/sv/LC_MESSAGES/initdb-10.mo
-share/locale/sv/LC_MESSAGES/libpq5-10.mo
-share/locale/sv/LC_MESSAGES/pg_archivecleanup-10.mo
-share/locale/sv/LC_MESSAGES/pg_basebackup-10.mo
-share/locale/sv/LC_MESSAGES/pg_config-10.mo
-share/locale/sv/LC_MESSAGES/pg_controldata-10.mo
-share/locale/sv/LC_MESSAGES/pg_ctl-10.mo
-share/locale/sv/LC_MESSAGES/pg_dump-10.mo
-share/locale/sv/LC_MESSAGES/pg_resetwal-10.mo
-share/locale/sv/LC_MESSAGES/pg_rewind-10.mo
-share/locale/sv/LC_MESSAGES/pg_test_fsync-10.mo
-share/locale/sv/LC_MESSAGES/pg_test_timing-10.mo
-share/locale/sv/LC_MESSAGES/pg_upgrade-10.mo
-share/locale/sv/LC_MESSAGES/pg_waldump-10.mo
-share/locale/sv/LC_MESSAGES/pgscripts-10.mo
-share/locale/sv/LC_MESSAGES/psql-10.mo
-share/locale/ta/LC_MESSAGES/pg_config-10.mo
-share/locale/tr/LC_MESSAGES/ecpg-10.mo
-share/locale/tr/LC_MESSAGES/ecpglib6-10.mo
-share/locale/tr/LC_MESSAGES/initdb-10.mo
-share/locale/tr/LC_MESSAGES/libpq5-10.mo
-share/locale/tr/LC_MESSAGES/pg_archivecleanup-10.mo
-share/locale/tr/LC_MESSAGES/pg_basebackup-10.mo
-share/locale/tr/LC_MESSAGES/pg_config-10.mo
-share/locale/tr/LC_MESSAGES/pg_controldata-10.mo
-share/locale/tr/LC_MESSAGES/pg_ctl-10.mo
-share/locale/tr/LC_MESSAGES/pg_dump-10.mo
-share/locale/tr/LC_MESSAGES/pg_resetwal-10.mo
-share/locale/tr/LC_MESSAGES/pg_rewind-10.mo
-share/locale/tr/LC_MESSAGES/pg_test_fsync-10.mo
-share/locale/tr/LC_MESSAGES/pg_test_timing-10.mo
-share/locale/tr/LC_MESSAGES/pg_upgrade-10.mo
-share/locale/tr/LC_MESSAGES/pg_waldump-10.mo
-share/locale/tr/LC_MESSAGES/pgscripts-10.mo
-share/locale/tr/LC_MESSAGES/psql-10.mo
-share/locale/zh_CN/LC_MESSAGES/ecpg-10.mo
-share/locale/zh_CN/LC_MESSAGES/ecpglib6-10.mo
-share/locale/zh_CN/LC_MESSAGES/initdb-10.mo
-share/locale/zh_CN/LC_MESSAGES/libpq5-10.mo
-share/locale/zh_CN/LC_MESSAGES/pg_config-10.mo
-share/locale/zh_CN/LC_MESSAGES/pg_controldata-10.mo
-share/locale/zh_CN/LC_MESSAGES/pg_ctl-10.mo
-share/locale/zh_CN/LC_MESSAGES/pg_dump-10.mo
-share/locale/zh_CN/LC_MESSAGES/pg_resetwal-10.mo
-share/locale/zh_CN/LC_MESSAGES/pg_rewind-10.mo
-share/locale/zh_CN/LC_MESSAGES/pgscripts-10.mo
-share/locale/zh_CN/LC_MESSAGES/psql-10.mo
-share/locale/zh_TW/LC_MESSAGES/ecpg-10.mo
-share/locale/zh_TW/LC_MESSAGES/pg_config-10.mo
+${PLIST.nls}share/locale/cs/LC_MESSAGES/ecpg-10.mo
+${PLIST.nls}share/locale/cs/LC_MESSAGES/ecpglib6-10.mo
+${PLIST.nls}share/locale/cs/LC_MESSAGES/initdb-10.mo
+${PLIST.nls}share/locale/cs/LC_MESSAGES/libpq5-10.mo
+${PLIST.nls}share/locale/cs/LC_MESSAGES/pg_archivecleanup-10.mo
+${PLIST.nls}share/locale/cs/LC_MESSAGES/pg_basebackup-10.mo
+${PLIST.nls}share/locale/cs/LC_MESSAGES/pg_config-10.mo
+${PLIST.nls}share/locale/cs/LC_MESSAGES/pg_controldata-10.mo
+${PLIST.nls}share/locale/cs/LC_MESSAGES/pg_ctl-10.mo
+${PLIST.nls}share/locale/cs/LC_MESSAGES/pg_dump-10.mo
+${PLIST.nls}share/locale/cs/LC_MESSAGES/pg_resetwal-10.mo
+${PLIST.nls}share/locale/cs/LC_MESSAGES/pg_rewind-10.mo
+${PLIST.nls}share/locale/cs/LC_MESSAGES/pg_test_fsync-10.mo
+${PLIST.nls}share/locale/cs/LC_MESSAGES/pg_test_timing-10.mo
+${PLIST.nls}share/locale/cs/LC_MESSAGES/pg_upgrade-10.mo
+${PLIST.nls}share/locale/cs/LC_MESSAGES/pg_waldump-10.mo
+${PLIST.nls}share/locale/cs/LC_MESSAGES/pgscripts-10.mo
+${PLIST.nls}share/locale/cs/LC_MESSAGES/psql-10.mo
+${PLIST.nls}share/locale/de/LC_MESSAGES/ecpg-10.mo
+${PLIST.nls}share/locale/de/LC_MESSAGES/ecpglib6-10.mo
+${PLIST.nls}share/locale/de/LC_MESSAGES/initdb-10.mo
+${PLIST.nls}share/locale/de/LC_MESSAGES/libpq5-10.mo
+${PLIST.nls}share/locale/de/LC_MESSAGES/pg_archivecleanup-10.mo
+${PLIST.nls}share/locale/de/LC_MESSAGES/pg_basebackup-10.mo
+${PLIST.nls}share/locale/de/LC_MESSAGES/pg_config-10.mo
+${PLIST.nls}share/locale/de/LC_MESSAGES/pg_controldata-10.mo
+${PLIST.nls}share/locale/de/LC_MESSAGES/pg_ctl-10.mo
+${PLIST.nls}share/locale/de/LC_MESSAGES/pg_dump-10.mo
+${PLIST.nls}share/locale/de/LC_MESSAGES/pg_resetwal-10.mo
+${PLIST.nls}share/locale/de/LC_MESSAGES/pg_rewind-10.mo
+${PLIST.nls}share/locale/de/LC_MESSAGES/pg_test_fsync-10.mo
+${PLIST.nls}share/locale/de/LC_MESSAGES/pg_test_timing-10.mo
+${PLIST.nls}share/locale/de/LC_MESSAGES/pg_upgrade-10.mo
+${PLIST.nls}share/locale/de/LC_MESSAGES/pg_waldump-10.mo
+${PLIST.nls}share/locale/de/LC_MESSAGES/pgscripts-10.mo
+${PLIST.nls}share/locale/de/LC_MESSAGES/psql-10.mo
+${PLIST.nls}share/locale/es/LC_MESSAGES/ecpg-10.mo
+${PLIST.nls}share/locale/es/LC_MESSAGES/ecpglib6-10.mo
+${PLIST.nls}share/locale/es/LC_MESSAGES/initdb-10.mo
+${PLIST.nls}share/locale/es/LC_MESSAGES/libpq5-10.mo
+${PLIST.nls}share/locale/es/LC_MESSAGES/pg_archivecleanup-10.mo
+${PLIST.nls}share/locale/es/LC_MESSAGES/pg_basebackup-10.mo
+${PLIST.nls}share/locale/es/LC_MESSAGES/pg_config-10.mo
+${PLIST.nls}share/locale/es/LC_MESSAGES/pg_controldata-10.mo
+${PLIST.nls}share/locale/es/LC_MESSAGES/pg_ctl-10.mo
+${PLIST.nls}share/locale/es/LC_MESSAGES/pg_dump-10.mo
+${PLIST.nls}share/locale/es/LC_MESSAGES/pg_resetwal-10.mo
+${PLIST.nls}share/locale/es/LC_MESSAGES/pg_rewind-10.mo
+${PLIST.nls}share/locale/es/LC_MESSAGES/pg_test_fsync-10.mo
+${PLIST.nls}share/locale/es/LC_MESSAGES/pg_test_timing-10.mo
+${PLIST.nls}share/locale/es/LC_MESSAGES/pg_upgrade-10.mo
+${PLIST.nls}share/locale/es/LC_MESSAGES/pg_waldump-10.mo
+${PLIST.nls}share/locale/es/LC_MESSAGES/pgscripts-10.mo
+${PLIST.nls}share/locale/es/LC_MESSAGES/psql-10.mo
+${PLIST.nls}share/locale/fr/LC_MESSAGES/ecpg-10.mo
+${PLIST.nls}share/locale/fr/LC_MESSAGES/ecpglib6-10.mo
+${PLIST.nls}share/locale/fr/LC_MESSAGES/initdb-10.mo
+${PLIST.nls}share/locale/fr/LC_MESSAGES/libpq5-10.mo
+${PLIST.nls}share/locale/fr/LC_MESSAGES/pg_archivecleanup-10.mo
+${PLIST.nls}share/locale/fr/LC_MESSAGES/pg_basebackup-10.mo
+${PLIST.nls}share/locale/fr/LC_MESSAGES/pg_config-10.mo
+${PLIST.nls}share/locale/fr/LC_MESSAGES/pg_controldata-10.mo
+${PLIST.nls}share/locale/fr/LC_MESSAGES/pg_ctl-10.mo
+${PLIST.nls}share/locale/fr/LC_MESSAGES/pg_dump-10.mo
+${PLIST.nls}share/locale/fr/LC_MESSAGES/pg_resetwal-10.mo
+${PLIST.nls}share/locale/fr/LC_MESSAGES/pg_rewind-10.mo
+${PLIST.nls}share/locale/fr/LC_MESSAGES/pg_test_fsync-10.mo
+${PLIST.nls}share/locale/fr/LC_MESSAGES/pg_test_timing-10.mo
+${PLIST.nls}share/locale/fr/LC_MESSAGES/pg_upgrade-10.mo
+${PLIST.nls}share/locale/fr/LC_MESSAGES/pg_waldump-10.mo
+${PLIST.nls}share/locale/fr/LC_MESSAGES/pgscripts-10.mo
+${PLIST.nls}share/locale/fr/LC_MESSAGES/psql-10.mo
+${PLIST.nls}share/locale/he/LC_MESSAGES/initdb-10.mo
+${PLIST.nls}share/locale/he/LC_MESSAGES/libpq5-10.mo
+${PLIST.nls}share/locale/he/LC_MESSAGES/pg_basebackup-10.mo
+${PLIST.nls}share/locale/he/LC_MESSAGES/pg_config-10.mo
+${PLIST.nls}share/locale/he/LC_MESSAGES/pg_ctl-10.mo
+${PLIST.nls}share/locale/he/LC_MESSAGES/pg_dump-10.mo
+${PLIST.nls}share/locale/he/LC_MESSAGES/pgscripts-10.mo
+${PLIST.nls}share/locale/he/LC_MESSAGES/psql-10.mo
+${PLIST.nls}share/locale/it/LC_MESSAGES/ecpg-10.mo
+${PLIST.nls}share/locale/it/LC_MESSAGES/ecpglib6-10.mo
+${PLIST.nls}share/locale/it/LC_MESSAGES/initdb-10.mo
+${PLIST.nls}share/locale/it/LC_MESSAGES/libpq5-10.mo
+${PLIST.nls}share/locale/it/LC_MESSAGES/pg_basebackup-10.mo
+${PLIST.nls}share/locale/it/LC_MESSAGES/pg_config-10.mo
+${PLIST.nls}share/locale/it/LC_MESSAGES/pg_controldata-10.mo
+${PLIST.nls}share/locale/it/LC_MESSAGES/pg_ctl-10.mo
+${PLIST.nls}share/locale/it/LC_MESSAGES/pg_dump-10.mo
+${PLIST.nls}share/locale/it/LC_MESSAGES/pg_rewind-10.mo
+${PLIST.nls}share/locale/it/LC_MESSAGES/pgscripts-10.mo
+${PLIST.nls}share/locale/it/LC_MESSAGES/psql-10.mo
+${PLIST.nls}share/locale/ja/LC_MESSAGES/ecpg-10.mo
+${PLIST.nls}share/locale/ja/LC_MESSAGES/ecpglib6-10.mo
+${PLIST.nls}share/locale/ja/LC_MESSAGES/initdb-10.mo
+${PLIST.nls}share/locale/ja/LC_MESSAGES/libpq5-10.mo
+${PLIST.nls}share/locale/ja/LC_MESSAGES/pg_archivecleanup-10.mo
+${PLIST.nls}share/locale/ja/LC_MESSAGES/pg_basebackup-10.mo
+${PLIST.nls}share/locale/ja/LC_MESSAGES/pg_config-10.mo
+${PLIST.nls}share/locale/ja/LC_MESSAGES/pg_controldata-10.mo
+${PLIST.nls}share/locale/ja/LC_MESSAGES/pg_ctl-10.mo
+${PLIST.nls}share/locale/ja/LC_MESSAGES/pg_dump-10.mo
+${PLIST.nls}share/locale/ja/LC_MESSAGES/pg_resetwal-10.mo
+${PLIST.nls}share/locale/ja/LC_MESSAGES/pg_rewind-10.mo
+${PLIST.nls}share/locale/ja/LC_MESSAGES/pg_test_fsync-10.mo
+${PLIST.nls}share/locale/ja/LC_MESSAGES/pg_test_timing-10.mo
+${PLIST.nls}share/locale/ja/LC_MESSAGES/pg_upgrade-10.mo
+${PLIST.nls}share/locale/ja/LC_MESSAGES/pg_waldump-10.mo
+${PLIST.nls}share/locale/ja/LC_MESSAGES/pgscripts-10.mo
+${PLIST.nls}share/locale/ja/LC_MESSAGES/psql-10.mo
+${PLIST.nls}share/locale/ko/LC_MESSAGES/ecpg-10.mo
+${PLIST.nls}share/locale/ko/LC_MESSAGES/ecpglib6-10.mo
+${PLIST.nls}share/locale/ko/LC_MESSAGES/initdb-10.mo
+${PLIST.nls}share/locale/ko/LC_MESSAGES/libpq5-10.mo
+${PLIST.nls}share/locale/ko/LC_MESSAGES/pg_archivecleanup-10.mo
+${PLIST.nls}share/locale/ko/LC_MESSAGES/pg_basebackup-10.mo
+${PLIST.nls}share/locale/ko/LC_MESSAGES/pg_config-10.mo
+${PLIST.nls}share/locale/ko/LC_MESSAGES/pg_controldata-10.mo
+${PLIST.nls}share/locale/ko/LC_MESSAGES/pg_ctl-10.mo
+${PLIST.nls}share/locale/ko/LC_MESSAGES/pg_dump-10.mo
+${PLIST.nls}share/locale/ko/LC_MESSAGES/pg_resetwal-10.mo
+${PLIST.nls}share/locale/ko/LC_MESSAGES/pg_rewind-10.mo
+${PLIST.nls}share/locale/ko/LC_MESSAGES/pg_test_fsync-10.mo
+${PLIST.nls}share/locale/ko/LC_MESSAGES/pg_test_timing-10.mo
+${PLIST.nls}share/locale/ko/LC_MESSAGES/pg_upgrade-10.mo
+${PLIST.nls}share/locale/ko/LC_MESSAGES/pg_waldump-10.mo
+${PLIST.nls}share/locale/ko/LC_MESSAGES/pgscripts-10.mo
+${PLIST.nls}share/locale/ko/LC_MESSAGES/psql-10.mo
+${PLIST.nls}share/locale/nb/LC_MESSAGES/pg_config-10.mo
+${PLIST.nls}share/locale/pl/LC_MESSAGES/ecpg-10.mo
+${PLIST.nls}share/locale/pl/LC_MESSAGES/ecpglib6-10.mo
+${PLIST.nls}share/locale/pl/LC_MESSAGES/initdb-10.mo
+${PLIST.nls}share/locale/pl/LC_MESSAGES/libpq5-10.mo
+${PLIST.nls}share/locale/pl/LC_MESSAGES/pg_archivecleanup-10.mo
+${PLIST.nls}share/locale/pl/LC_MESSAGES/pg_basebackup-10.mo
+${PLIST.nls}share/locale/pl/LC_MESSAGES/pg_config-10.mo
+${PLIST.nls}share/locale/pl/LC_MESSAGES/pg_controldata-10.mo
+${PLIST.nls}share/locale/pl/LC_MESSAGES/pg_ctl-10.mo
+${PLIST.nls}share/locale/pl/LC_MESSAGES/pg_dump-10.mo
+${PLIST.nls}share/locale/pl/LC_MESSAGES/pg_resetwal-10.mo
+${PLIST.nls}share/locale/pl/LC_MESSAGES/pg_rewind-10.mo
+${PLIST.nls}share/locale/pl/LC_MESSAGES/pg_test_fsync-10.mo
+${PLIST.nls}share/locale/pl/LC_MESSAGES/pg_test_timing-10.mo
+${PLIST.nls}share/locale/pl/LC_MESSAGES/pgscripts-10.mo
+${PLIST.nls}share/locale/pl/LC_MESSAGES/psql-10.mo
+${PLIST.nls}share/locale/pt_BR/LC_MESSAGES/ecpg-10.mo
+${PLIST.nls}share/locale/pt_BR/LC_MESSAGES/ecpglib6-10.mo
+${PLIST.nls}share/locale/pt_BR/LC_MESSAGES/initdb-10.mo
+${PLIST.nls}share/locale/pt_BR/LC_MESSAGES/libpq5-10.mo
+${PLIST.nls}share/locale/pt_BR/LC_MESSAGES/pg_config-10.mo
+${PLIST.nls}share/locale/pt_BR/LC_MESSAGES/pg_controldata-10.mo
+${PLIST.nls}share/locale/pt_BR/LC_MESSAGES/pg_ctl-10.mo
+${PLIST.nls}share/locale/pt_BR/LC_MESSAGES/pg_dump-10.mo
+${PLIST.nls}share/locale/pt_BR/LC_MESSAGES/pg_resetwal-10.mo
+${PLIST.nls}share/locale/pt_BR/LC_MESSAGES/pg_rewind-10.mo
+${PLIST.nls}share/locale/pt_BR/LC_MESSAGES/pgscripts-10.mo
+${PLIST.nls}share/locale/pt_BR/LC_MESSAGES/psql-10.mo
+${PLIST.nls}share/locale/ro/LC_MESSAGES/pg_config-10.mo
+${PLIST.nls}share/locale/ru/LC_MESSAGES/ecpg-10.mo
+${PLIST.nls}share/locale/ru/LC_MESSAGES/ecpglib6-10.mo
+${PLIST.nls}share/locale/ru/LC_MESSAGES/initdb-10.mo
+${PLIST.nls}share/locale/ru/LC_MESSAGES/libpq5-10.mo
+${PLIST.nls}share/locale/ru/LC_MESSAGES/pg_archivecleanup-10.mo
+${PLIST.nls}share/locale/ru/LC_MESSAGES/pg_basebackup-10.mo
+${PLIST.nls}share/locale/ru/LC_MESSAGES/pg_config-10.mo
+${PLIST.nls}share/locale/ru/LC_MESSAGES/pg_controldata-10.mo
+${PLIST.nls}share/locale/ru/LC_MESSAGES/pg_ctl-10.mo
+${PLIST.nls}share/locale/ru/LC_MESSAGES/pg_dump-10.mo
+${PLIST.nls}share/locale/ru/LC_MESSAGES/pg_resetwal-10.mo
+${PLIST.nls}share/locale/ru/LC_MESSAGES/pg_rewind-10.mo
+${PLIST.nls}share/locale/ru/LC_MESSAGES/pg_test_fsync-10.mo
+${PLIST.nls}share/locale/ru/LC_MESSAGES/pg_test_timing-10.mo
+${PLIST.nls}share/locale/ru/LC_MESSAGES/pg_upgrade-10.mo
+${PLIST.nls}share/locale/ru/LC_MESSAGES/pg_waldump-10.mo
+${PLIST.nls}share/locale/ru/LC_MESSAGES/pgscripts-10.mo
+${PLIST.nls}share/locale/ru/LC_MESSAGES/psql-10.mo
+${PLIST.nls}share/locale/sv/LC_MESSAGES/ecpg-10.mo
+${PLIST.nls}share/locale/sv/LC_MESSAGES/ecpglib6-10.mo
+${PLIST.nls}share/locale/sv/LC_MESSAGES/initdb-10.mo
+${PLIST.nls}share/locale/sv/LC_MESSAGES/libpq5-10.mo
+${PLIST.nls}share/locale/sv/LC_MESSAGES/pg_archivecleanup-10.mo
+${PLIST.nls}share/locale/sv/LC_MESSAGES/pg_basebackup-10.mo
+${PLIST.nls}share/locale/sv/LC_MESSAGES/pg_config-10.mo
+${PLIST.nls}share/locale/sv/LC_MESSAGES/pg_controldata-10.mo
+${PLIST.nls}share/locale/sv/LC_MESSAGES/pg_ctl-10.mo
+${PLIST.nls}share/locale/sv/LC_MESSAGES/pg_dump-10.mo
+${PLIST.nls}share/locale/sv/LC_MESSAGES/pg_resetwal-10.mo
+${PLIST.nls}share/locale/sv/LC_MESSAGES/pg_rewind-10.mo
+${PLIST.nls}share/locale/sv/LC_MESSAGES/pg_test_fsync-10.mo
+${PLIST.nls}share/locale/sv/LC_MESSAGES/pg_test_timing-10.mo
+${PLIST.nls}share/locale/sv/LC_MESSAGES/pg_upgrade-10.mo
+${PLIST.nls}share/locale/sv/LC_MESSAGES/pg_waldump-10.mo
+${PLIST.nls}share/locale/sv/LC_MESSAGES/pgscripts-10.mo
+${PLIST.nls}share/locale/sv/LC_MESSAGES/psql-10.mo
+${PLIST.nls}share/locale/ta/LC_MESSAGES/pg_config-10.mo
+${PLIST.nls}share/locale/tr/LC_MESSAGES/ecpg-10.mo
+${PLIST.nls}share/locale/tr/LC_MESSAGES/ecpglib6-10.mo
+${PLIST.nls}share/locale/tr/LC_MESSAGES/initdb-10.mo
+${PLIST.nls}share/locale/tr/LC_MESSAGES/libpq5-10.mo
+${PLIST.nls}share/locale/tr/LC_MESSAGES/pg_archivecleanup-10.mo
+${PLIST.nls}share/locale/tr/LC_MESSAGES/pg_basebackup-10.mo
+${PLIST.nls}share/locale/tr/LC_MESSAGES/pg_config-10.mo
+${PLIST.nls}share/locale/tr/LC_MESSAGES/pg_controldata-10.mo
+${PLIST.nls}share/locale/tr/LC_MESSAGES/pg_ctl-10.mo
+${PLIST.nls}share/locale/tr/LC_MESSAGES/pg_dump-10.mo
+${PLIST.nls}share/locale/tr/LC_MESSAGES/pg_resetwal-10.mo
+${PLIST.nls}share/locale/tr/LC_MESSAGES/pg_rewind-10.mo
+${PLIST.nls}share/locale/tr/LC_MESSAGES/pg_test_fsync-10.mo
+${PLIST.nls}share/locale/tr/LC_MESSAGES/pg_test_timing-10.mo
+${PLIST.nls}share/locale/tr/LC_MESSAGES/pg_upgrade-10.mo
+${PLIST.nls}share/locale/tr/LC_MESSAGES/pg_waldump-10.mo
+${PLIST.nls}share/locale/tr/LC_MESSAGES/pgscripts-10.mo
+${PLIST.nls}share/locale/tr/LC_MESSAGES/psql-10.mo
+${PLIST.nls}share/locale/zh_CN/LC_MESSAGES/ecpg-10.mo
+${PLIST.nls}share/locale/zh_CN/LC_MESSAGES/ecpglib6-10.mo
+${PLIST.nls}share/locale/zh_CN/LC_MESSAGES/initdb-10.mo
+${PLIST.nls}share/locale/zh_CN/LC_MESSAGES/libpq5-10.mo
+${PLIST.nls}share/locale/zh_CN/LC_MESSAGES/pg_config-10.mo
+${PLIST.nls}share/locale/zh_CN/LC_MESSAGES/pg_controldata-10.mo
+${PLIST.nls}share/locale/zh_CN/LC_MESSAGES/pg_ctl-10.mo
+${PLIST.nls}share/locale/zh_CN/LC_MESSAGES/pg_dump-10.mo
+${PLIST.nls}share/locale/zh_CN/LC_MESSAGES/pg_resetwal-10.mo
+${PLIST.nls}share/locale/zh_CN/LC_MESSAGES/pg_rewind-10.mo
+${PLIST.nls}share/locale/zh_CN/LC_MESSAGES/pgscripts-10.mo
+${PLIST.nls}share/locale/zh_CN/LC_MESSAGES/psql-10.mo
+${PLIST.nls}share/locale/zh_TW/LC_MESSAGES/ecpg-10.mo
+${PLIST.nls}share/locale/zh_TW/LC_MESSAGES/pg_config-10.mo
 share/postgresql/pg_service.conf.sample
 share/postgresql/psqlrc.sample

Index: pkgsrc/databases/postgresql10-plperl/PLIST
diff -u pkgsrc/databases/postgresql10-plperl/PLIST:1.2 pkgsrc/databases/postgresql10-plperl/PLIST:1.3
--- pkgsrc/databases/postgresql10-plperl/PLIST:1.2      Fri Mar  2 17:11:12 2018
+++ pkgsrc/databases/postgresql10-plperl/PLIST  Fri Oct 25 12:01:19 2019
@@ -1,21 +1,21 @@
-@comment $NetBSD: PLIST,v 1.2 2018/03/02 17:11:12 adam Exp $
+@comment $NetBSD: PLIST,v 1.3 2019/10/25 12:01:19 triaxx Exp $
 include/postgresql/server/plperl.h
 include/postgresql/server/ppport.h
 lib/postgresql/plperl.so
-share/locale/cs/LC_MESSAGES/plperl-10.mo
-share/locale/de/LC_MESSAGES/plperl-10.mo
-share/locale/es/LC_MESSAGES/plperl-10.mo
-share/locale/fr/LC_MESSAGES/plperl-10.mo
-share/locale/it/LC_MESSAGES/plperl-10.mo
-share/locale/ja/LC_MESSAGES/plperl-10.mo
-share/locale/ko/LC_MESSAGES/plperl-10.mo
-share/locale/pl/LC_MESSAGES/plperl-10.mo
-share/locale/pt_BR/LC_MESSAGES/plperl-10.mo
-share/locale/ro/LC_MESSAGES/plperl-10.mo
-share/locale/ru/LC_MESSAGES/plperl-10.mo
-share/locale/sv/LC_MESSAGES/plperl-10.mo
-share/locale/tr/LC_MESSAGES/plperl-10.mo
-share/locale/zh_CN/LC_MESSAGES/plperl-10.mo
+${PLIST.nls}share/locale/cs/LC_MESSAGES/plperl-10.mo
+${PLIST.nls}share/locale/de/LC_MESSAGES/plperl-10.mo
+${PLIST.nls}share/locale/es/LC_MESSAGES/plperl-10.mo
+${PLIST.nls}share/locale/fr/LC_MESSAGES/plperl-10.mo
+${PLIST.nls}share/locale/it/LC_MESSAGES/plperl-10.mo
+${PLIST.nls}share/locale/ja/LC_MESSAGES/plperl-10.mo
+${PLIST.nls}share/locale/ko/LC_MESSAGES/plperl-10.mo
+${PLIST.nls}share/locale/pl/LC_MESSAGES/plperl-10.mo
+${PLIST.nls}share/locale/pt_BR/LC_MESSAGES/plperl-10.mo
+${PLIST.nls}share/locale/ro/LC_MESSAGES/plperl-10.mo
+${PLIST.nls}share/locale/ru/LC_MESSAGES/plperl-10.mo
+${PLIST.nls}share/locale/sv/LC_MESSAGES/plperl-10.mo
+${PLIST.nls}share/locale/tr/LC_MESSAGES/plperl-10.mo
+${PLIST.nls}share/locale/zh_CN/LC_MESSAGES/plperl-10.mo
 share/postgresql/extension/plperl--1.0.sql
 share/postgresql/extension/plperl--unpackaged--1.0.sql
 share/postgresql/extension/plperl.control

Index: pkgsrc/databases/postgresql10-plpython/PLIST
diff -u pkgsrc/databases/postgresql10-plpython/PLIST:1.3 pkgsrc/databases/postgresql10-plpython/PLIST:1.4
--- pkgsrc/databases/postgresql10-plpython/PLIST:1.3    Fri Aug 10 11:56:10 2018
+++ pkgsrc/databases/postgresql10-plpython/PLIST        Fri Oct 25 12:01:19 2019
@@ -1,23 +1,23 @@
-@comment $NetBSD: PLIST,v 1.3 2018/08/10 11:56:10 adam Exp $
+@comment $NetBSD: PLIST,v 1.4 2019/10/25 12:01:19 triaxx Exp $
 include/postgresql/server/plpy_util.h
 include/postgresql/server/plpython.h
 ${PLIST.py2x}lib/postgresql/hstore_plpython2.so
 ${PLIST.py3x}lib/postgresql/hstore_plpython3.so
 ${PLIST.py2x}lib/postgresql/plpython2.so
 ${PLIST.py3x}lib/postgresql/plpython3.so
-share/locale/cs/LC_MESSAGES/plpython-10.mo
-share/locale/de/LC_MESSAGES/plpython-10.mo
-share/locale/es/LC_MESSAGES/plpython-10.mo
-share/locale/fr/LC_MESSAGES/plpython-10.mo
-share/locale/it/LC_MESSAGES/plpython-10.mo
-share/locale/ja/LC_MESSAGES/plpython-10.mo
-share/locale/ko/LC_MESSAGES/plpython-10.mo
-share/locale/pl/LC_MESSAGES/plpython-10.mo
-share/locale/pt_BR/LC_MESSAGES/plpython-10.mo
-share/locale/ru/LC_MESSAGES/plpython-10.mo
-share/locale/sv/LC_MESSAGES/plpython-10.mo
-share/locale/tr/LC_MESSAGES/plpython-10.mo
-share/locale/zh_CN/LC_MESSAGES/plpython-10.mo
+${PLIST}share/locale/cs/LC_MESSAGES/plpython-10.mo
+${PLIST}share/locale/de/LC_MESSAGES/plpython-10.mo
+${PLIST}share/locale/es/LC_MESSAGES/plpython-10.mo
+${PLIST}share/locale/fr/LC_MESSAGES/plpython-10.mo
+${PLIST}share/locale/it/LC_MESSAGES/plpython-10.mo
+${PLIST}share/locale/ja/LC_MESSAGES/plpython-10.mo
+${PLIST}share/locale/ko/LC_MESSAGES/plpython-10.mo
+${PLIST}share/locale/pl/LC_MESSAGES/plpython-10.mo
+${PLIST}share/locale/pt_BR/LC_MESSAGES/plpython-10.mo
+${PLIST}share/locale/ru/LC_MESSAGES/plpython-10.mo
+${PLIST}share/locale/sv/LC_MESSAGES/plpython-10.mo
+${PLIST}share/locale/tr/LC_MESSAGES/plpython-10.mo
+${PLIST}share/locale/zh_CN/LC_MESSAGES/plpython-10.mo
 share/postgresql/extension/hstore_plpython2u--1.0.sql
 share/postgresql/extension/hstore_plpython2u.control
 share/postgresql/extension/hstore_plpython3u--1.0.sql

Index: pkgsrc/databases/postgresql10-pltcl/PLIST
diff -u pkgsrc/databases/postgresql10-pltcl/PLIST:1.3 pkgsrc/databases/postgresql10-pltcl/PLIST:1.4
--- pkgsrc/databases/postgresql10-pltcl/PLIST:1.3       Fri Aug 10 11:56:10 2018
+++ pkgsrc/databases/postgresql10-pltcl/PLIST   Fri Oct 25 12:01:19 2019
@@ -1,16 +1,16 @@
-@comment $NetBSD: PLIST,v 1.3 2018/08/10 11:56:10 adam Exp $
+@comment $NetBSD: PLIST,v 1.4 2019/10/25 12:01:19 triaxx Exp $
 lib/postgresql/pltcl.so
-share/locale/cs/LC_MESSAGES/pltcl-10.mo
-share/locale/de/LC_MESSAGES/pltcl-10.mo
-share/locale/es/LC_MESSAGES/pltcl-10.mo
-share/locale/fr/LC_MESSAGES/pltcl-10.mo
-share/locale/it/LC_MESSAGES/pltcl-10.mo
-share/locale/ja/LC_MESSAGES/pltcl-10.mo
-share/locale/ko/LC_MESSAGES/pltcl-10.mo
-share/locale/pl/LC_MESSAGES/pltcl-10.mo
-share/locale/ru/LC_MESSAGES/pltcl-10.mo
-share/locale/sv/LC_MESSAGES/pltcl-10.mo
-share/locale/tr/LC_MESSAGES/pltcl-10.mo
+${PLIST.nls}share/locale/cs/LC_MESSAGES/pltcl-10.mo
+${PLIST.nls}share/locale/de/LC_MESSAGES/pltcl-10.mo
+${PLIST.nls}share/locale/es/LC_MESSAGES/pltcl-10.mo
+${PLIST.nls}share/locale/fr/LC_MESSAGES/pltcl-10.mo
+${PLIST.nls}share/locale/it/LC_MESSAGES/pltcl-10.mo
+${PLIST.nls}share/locale/ja/LC_MESSAGES/pltcl-10.mo
+${PLIST.nls}share/locale/ko/LC_MESSAGES/pltcl-10.mo
+${PLIST.nls}share/locale/pl/LC_MESSAGES/pltcl-10.mo
+${PLIST.nls}share/locale/ru/LC_MESSAGES/pltcl-10.mo
+${PLIST.nls}share/locale/sv/LC_MESSAGES/pltcl-10.mo
+${PLIST.nls}share/locale/tr/LC_MESSAGES/pltcl-10.mo
 share/postgresql/extension/pltcl--1.0.sql
 share/postgresql/extension/pltcl--unpackaged--1.0.sql
 share/postgresql/extension/pltcl.control

Index: pkgsrc/databases/postgresql10-server/Makefile
diff -u pkgsrc/databases/postgresql10-server/Makefile:1.6 pkgsrc/databases/postgresql10-server/Makefile:1.7
--- pkgsrc/databases/postgresql10-server/Makefile:1.6   Sun Feb 17 08:26:11 2019
+++ pkgsrc/databases/postgresql10-server/Makefile       Fri Oct 25 12:01:19 2019
@@ -1,4 +1,4 @@
-# $NetBSD: Makefile,v 1.6 2019/02/17 08:26:11 adam Exp $
+# $NetBSD: Makefile,v 1.7 2019/10/25 12:01:19 triaxx Exp $
 
 PKGNAME=       ${DISTNAME:C/-/10-server-/}
 COMMENT=       PostgreSQL database server programs
@@ -20,8 +20,6 @@ INSTALL_DIRS+=        src/pl
 BUILD_DIRS=    src/port
 BUILD_DIRS+=   ${INSTALL_DIRS}
 
-LIBS.SunOS+=   -lintl
-
 # PostgreSQL has loadable server-side language modules.
 #
 # Explicitly set DLOPEN_REQUIRE_PTHREADS to "no" on NetBSD as NetBSD-2.x

Index: pkgsrc/databases/postgresql10-server/PLIST
diff -u pkgsrc/databases/postgresql10-server/PLIST:1.7 pkgsrc/databases/postgresql10-server/PLIST:1.8
--- pkgsrc/databases/postgresql10-server/PLIST:1.7      Sun Feb 17 08:26:11 2019
+++ pkgsrc/databases/postgresql10-server/PLIST  Fri Oct 25 12:01:19 2019
@@ -1,4 +1,4 @@
-@comment $NetBSD: PLIST,v 1.7 2019/02/17 08:26:11 adam Exp $
+@comment $NetBSD: PLIST,v 1.8 2019/10/25 12:01:19 triaxx Exp $
 bin/postgres
 bin/postmaster
 include/postgresql/server/plpgsql.h
@@ -32,32 +32,32 @@ lib/postgresql/utf8_and_sjis.so
 lib/postgresql/utf8_and_sjis2004.so
 lib/postgresql/utf8_and_uhc.so
 lib/postgresql/utf8_and_win.so
-share/locale/cs/LC_MESSAGES/plpgsql-10.mo
-share/locale/de/LC_MESSAGES/plpgsql-10.mo
-share/locale/de/LC_MESSAGES/postgres-10.mo
-share/locale/es/LC_MESSAGES/plpgsql-10.mo
-share/locale/es/LC_MESSAGES/postgres-10.mo
-share/locale/fr/LC_MESSAGES/plpgsql-10.mo
-share/locale/fr/LC_MESSAGES/postgres-10.mo
-share/locale/it/LC_MESSAGES/plpgsql-10.mo
-share/locale/it/LC_MESSAGES/postgres-10.mo
-share/locale/ja/LC_MESSAGES/plpgsql-10.mo
-share/locale/ja/LC_MESSAGES/postgres-10.mo
-share/locale/ko/LC_MESSAGES/plpgsql-10.mo
-share/locale/ko/LC_MESSAGES/postgres-10.mo
-share/locale/pl/LC_MESSAGES/plpgsql-10.mo
-share/locale/pl/LC_MESSAGES/postgres-10.mo
-share/locale/pt_BR/LC_MESSAGES/plpgsql-10.mo
-share/locale/ro/LC_MESSAGES/plpgsql-10.mo
-share/locale/ru/LC_MESSAGES/plpgsql-10.mo
-share/locale/ru/LC_MESSAGES/postgres-10.mo
-share/locale/sv/LC_MESSAGES/plpgsql-10.mo
-share/locale/sv/LC_MESSAGES/postgres-10.mo
-share/locale/tr/LC_MESSAGES/plpgsql-10.mo
-share/locale/tr/LC_MESSAGES/postgres-10.mo
-share/locale/zh_CN/LC_MESSAGES/plpgsql-10.mo
-share/locale/zh_CN/LC_MESSAGES/postgres-10.mo
-share/locale/zh_TW/LC_MESSAGES/plpgsql-10.mo
+${PLIST.nls}share/locale/cs/LC_MESSAGES/plpgsql-10.mo
+${PLIST.nls}share/locale/de/LC_MESSAGES/plpgsql-10.mo
+${PLIST.nls}share/locale/de/LC_MESSAGES/postgres-10.mo
+${PLIST.nls}share/locale/es/LC_MESSAGES/plpgsql-10.mo
+${PLIST.nls}share/locale/es/LC_MESSAGES/postgres-10.mo
+${PLIST.nls}share/locale/fr/LC_MESSAGES/plpgsql-10.mo
+${PLIST.nls}share/locale/fr/LC_MESSAGES/postgres-10.mo
+${PLIST.nls}share/locale/it/LC_MESSAGES/plpgsql-10.mo
+${PLIST.nls}share/locale/it/LC_MESSAGES/postgres-10.mo
+${PLIST.nls}share/locale/ja/LC_MESSAGES/plpgsql-10.mo
+${PLIST.nls}share/locale/ja/LC_MESSAGES/postgres-10.mo
+${PLIST.nls}share/locale/ko/LC_MESSAGES/plpgsql-10.mo
+${PLIST.nls}share/locale/ko/LC_MESSAGES/postgres-10.mo
+${PLIST.nls}share/locale/pl/LC_MESSAGES/plpgsql-10.mo
+${PLIST.nls}share/locale/pl/LC_MESSAGES/postgres-10.mo
+${PLIST.nls}share/locale/pt_BR/LC_MESSAGES/plpgsql-10.mo
+${PLIST.nls}share/locale/ro/LC_MESSAGES/plpgsql-10.mo
+${PLIST.nls}share/locale/ru/LC_MESSAGES/plpgsql-10.mo
+${PLIST.nls}share/locale/ru/LC_MESSAGES/postgres-10.mo
+${PLIST.nls}share/locale/sv/LC_MESSAGES/plpgsql-10.mo
+${PLIST.nls}share/locale/sv/LC_MESSAGES/postgres-10.mo
+${PLIST.nls}share/locale/tr/LC_MESSAGES/plpgsql-10.mo
+${PLIST.nls}share/locale/tr/LC_MESSAGES/postgres-10.mo
+${PLIST.nls}share/locale/zh_CN/LC_MESSAGES/plpgsql-10.mo
+${PLIST.nls}share/locale/zh_CN/LC_MESSAGES/postgres-10.mo
+${PLIST.nls}share/locale/zh_TW/LC_MESSAGES/plpgsql-10.mo
 share/postgresql/conversion_create.sql
 share/postgresql/extension/plpgsql--1.0.sql
 share/postgresql/extension/plpgsql--unpackaged--1.0.sql



Home | Main Index | Thread Index | Old Index