Sat Jul 20 05:10:42 2013 UTC ()
 pgAdmin 1.16.1 has been released, offering 19 bug fixes over the previous version.
 The list of bug fixes is available in the CHANGELOG.

 The following are the recent Changes
 ------------------------------------

 Date       Dev Ver     Change details
 ---------- --- ------  --------------
 2012-12-03 DP  1.16.1  Prevent a crash that could happen if further changes
                        were made on a dialogue after using the Apply button.
                        [Akshay Joshi]
 2012-11-29 GL  1.16.1  Save new comments on already existing columns when
                        editing a table. Per a report from Jeff Janes.
 2012-11-29 GL  1.16.1  Fix the query editor behaviour when executing COPY TO
                        stdout and COPY FROM stdin [Heikki Linnakangas]
 2012-11-28 AV  1.16.1  Date picker controls returns a full timestamp by
                        default, which can cause inadvertent date changes
                        on jobs and role validty dates. Ignore the time part.
 2012-11-26 MH  1.16.1  Fix query for database descriptions
 2012-11-15 DP  1.16.1  Avoid querying the catalogs for toast table settings
                        for every table in the database. This gives a huge
                        performance gain with large schemas.
 2012-11-08 DP  1.16.1  Prevent a crash when refreshing a node which has a
                        child with an open dialogue [Dhiraj Chawla]
 2012-11-08 DP  1.16.1  Fix dropping/renaming of indexes [Akshay Joshi]
 2012-11-08 DP  1.16.1  Avoid updating the GQB model on every key press in
                        the query tool [Dhiraj Chawla]
 2012-11-02 DP  1.16.1  Fix a crash that can occur when renaming objects.
                        [Ashesh Vashi/Sachin Srivastava]
 2012-11-01 DP  1.16.1  Fix dropping of constraints [Akshay Joshi]
 2012-10-31 DP  1.16.1  Fix the "blocked by" column in the server status
                        dialogue on 9.2 servers [Sachin Srivastava]
 2012-10-11 DP  1.16.1  Prevent a crash if the query tool is closed whilst a
                        file is loading [Akshay Joshi]
 2012-10-09 AV  1.16.1  Fix setting of comments on PPAS procedures.
 2012-10-08 DP  1.16.1  Don't autosize the search results columns if no
                        results are found [Akshay Joshi]
 2012-10-08 AV  1.16.1  Prevent a crash if opening a second config file in
                        the editor.
 2012-10-08 DP  1.16.1  Prevent the SSL options combo box displaying
                        duplicate options if the server dialogue is
                        reopened [Akshay Joshi]
 2012-09-14 GL  1.16.1  Fix trigger query when connected to PostgreSQL 8.2 or
                        lower, per a report from Jon Roberts.
 2012-09-12 GL  1.16.1  Fix message when executing an empty query, per Marc
                        Mamin.


(richard)
diff -r1.38 -r1.39 pkgsrc/databases/pgadmin3/Makefile
diff -r1.8 -r1.9 pkgsrc/databases/pgadmin3/PLIST
diff -r1.8 -r1.9 pkgsrc/databases/pgadmin3/distinfo
diff -r0 -r1.1 pkgsrc/databases/pgadmin3/patches/patch-Makefile.am
diff -r0 -r1.1 pkgsrc/databases/pgadmin3/patches/patch-acinclude.m4
diff -r0 -r1.1 pkgsrc/databases/pgadmin3/patches/patch-configure
diff -r0 -r1.1 pkgsrc/databases/pgadmin3/patches/patch-pgadmin_gqb_gqbView.cpp
diff -r0 -r1.1 pkgsrc/databases/pgadmin3/patches/patch-xtra_pgscript_file_test_execute.sh
diff -r1.4 -r0 pkgsrc/databases/pgadmin3/patches/patch-aa
diff -r1.3 -r0 pkgsrc/databases/pgadmin3/patches/patch-ab
diff -r1.1 -r0 pkgsrc/databases/pgadmin3/patches/patch-ac
diff -r1.1 -r0 pkgsrc/databases/pgadmin3/patches/patch-ad

cvs diff -r1.38 -r1.39 pkgsrc/databases/pgadmin3/Makefile (expand / switch to unified diff)

--- pkgsrc/databases/pgadmin3/Makefile 2013/06/06 12:54:11 1.38
+++ pkgsrc/databases/pgadmin3/Makefile 2013/07/20 05:10:42 1.39
@@ -1,24 +1,53 @@ @@ -1,24 +1,53 @@
1# $NetBSD: Makefile,v 1.38 2013/06/06 12:54:11 wiz Exp $ 1# $NetBSD: Makefile,v 1.39 2013/07/20 05:10:42 richard Exp $
2 2
3DISTNAME= pgadmin3-1.12.1 3DISTNAME= pgadmin3-1.16.1
4PKGREVISION= 17 
5CATEGORIES= databases 4CATEGORIES= databases
6MASTER_SITES= ${MASTER_SITE_PGSQL:=pgadmin3/release/v${PKGVERSION_NOREV}/src/} 5MASTER_SITES= ${MASTER_SITE_PGSQL:=pgadmin3/release/v${PKGVERSION_NOREV}/src/}
7 6
8MAINTAINER= joerg@NetBSD.org 7MAINTAINER= joerg@NetBSD.org
9HOMEPAGE= http://www.pgadmin.org/ 8HOMEPAGE= http://www.pgadmin.org/
10COMMENT= Graphical PostgreSQL client and administration tool 9COMMENT= Graphical PostgreSQL client and administration tool
 10LICENSE= postgresql-license
11 11
12PGSQL_VERSIONS_ACCEPTED=90 84 12USE_LANGUAGES= c99 c++
13 13USE_TOOLS+= automake autoreconf gmake msgfmt
14USE_LANGUAGES= c c++ 
15USE_TOOLS+= gmake msgfmt 
16GNU_CONFIGURE= yes 14GNU_CONFIGURE= yes
 15
 16PKG_OPTIONS_VAR= PKG_OPTIONS.pgadmin3
 17PKG_SUPPORTED_OPTIONS= pgadmin-db-designer doc
 18PKG_SUGGESTED_OPTIONS= pgadmin-db-designer
 19
 20.include "../../mk/bsd.options.mk"
 21
 22PLIST_VARS= doc
 23
 24###
 25### Database Designer support
 26###
 27.if !empty(PKG_OPTIONS:Mpgadmin-db-designer)
 28CONFIGURE_ARGS+= --enable-databasedesigner
 29.endif
 30
 31.if !empty(PKG_OPTIONS:Mdoc)
 32PLIST.doc= yes
 33PYTHON_FOR_BUILD_ONLY=yes
 34.include "../../lang/python/pyversion.mk"
 35BUILD_DEPENDS+= ${PYPKGPREFIX}-sphinx>=1.0:../../textproc/py-sphinx
 36.else
 37CONFIGURE_ENV+= ac_cv_path_SPHINX_BUILD=
 38.endif
 39
17CONFIGURE_ARGS+= --with-wx=${BUILDLINK_PREFIX.wxGTK28} 40CONFIGURE_ARGS+= --with-wx=${BUILDLINK_PREFIX.wxGTK28}
 41CONFIGURE_ARGS+= --with-libxml2=${BUILDLINK_PREFIX.libxml2}
 42CONFIGURE_ARGS+= --with-libxslt=${BUILDLINK_PREFIX.libxslt}
 43
 44pre-configure:
 45 cd ${WRKSRC} && autoreconf -vfi
18 46
 47.include "../../graphics/hicolor-icon-theme/buildlink3.mk"
19.include "../../textproc/libxml2/buildlink3.mk" 48.include "../../textproc/libxml2/buildlink3.mk"
20.include "../../textproc/libxslt/buildlink3.mk" 49.include "../../textproc/libxslt/buildlink3.mk"
21.include "../../x11/wxGTK28/buildlink3.mk" 50.include "../../x11/wxGTK28/buildlink3.mk"
22.include "../../x11/wxGTK28-contrib/buildlink3.mk" 51.include "../../x11/wxGTK28-contrib/buildlink3.mk"
23.include "../../mk/pgsql.buildlink3.mk" 52.include "../../mk/pgsql.buildlink3.mk"
24.include "../../mk/bsd.pkg.mk" 53.include "../../mk/bsd.pkg.mk"

cvs diff -r1.8 -r1.9 pkgsrc/databases/pgadmin3/PLIST (expand / switch to unified diff)

--- pkgsrc/databases/pgadmin3/PLIST 2010/11/05 20:21:17 1.8
+++ pkgsrc/databases/pgadmin3/PLIST 2013/07/20 05:10:42 1.9
@@ -1,489 +1,395 @@ @@ -1,489 +1,395 @@
1@comment $NetBSD: PLIST,v 1.8 2010/11/05 20:21:17 adam Exp $ 1@comment $NetBSD: PLIST,v 1.9 2013/07/20 05:10:42 richard Exp $
2bin/pgadmin3 2bin/pgadmin3
 3bin/png2c
3share/pgadmin3/branding/branding.ini 4share/pgadmin3/branding/branding.ini
4share/pgadmin3/docs/cs_CZ/appendices.html 
5share/pgadmin3/docs/cs_CZ/backup.html 
6share/pgadmin3/docs/cs_CZ/bugreport.html 
7share/pgadmin3/docs/cs_CZ/commandline.html 
8share/pgadmin3/docs/cs_CZ/connect-error.html 
9share/pgadmin3/docs/cs_CZ/connect.html 
10share/pgadmin3/docs/cs_CZ/control-server.html 
11share/pgadmin3/docs/cs_CZ/debugger.html 
12share/pgadmin3/docs/cs_CZ/default-xsl.html 
13share/pgadmin3/docs/cs_CZ/editgrid.html 
14share/pgadmin3/docs/cs_CZ/export.html 
15share/pgadmin3/docs/cs_CZ/extend.html 
16share/pgadmin3/docs/cs_CZ/gqb.html 
17share/pgadmin3/docs/cs_CZ/grantwiz.html 
18share/pgadmin3/docs/cs_CZ/gridopts.html 
19share/pgadmin3/docs/cs_CZ/guruhints.html 
20share/pgadmin3/docs/cs_CZ/hints/autovacuum.html 5share/pgadmin3/docs/cs_CZ/hints/autovacuum.html
21share/pgadmin3/docs/cs_CZ/hints/conn-hba.html 6share/pgadmin3/docs/cs_CZ/hints/conn-hba.html
22share/pgadmin3/docs/cs_CZ/hints/conn-ident.html 7share/pgadmin3/docs/cs_CZ/hints/conn-ident.html
23share/pgadmin3/docs/cs_CZ/hints/conn-listen.html 8share/pgadmin3/docs/cs_CZ/hints/conn-listen.html
24share/pgadmin3/docs/cs_CZ/hints/encoding-ascii.html 9share/pgadmin3/docs/cs_CZ/hints/encoding-ascii.html
25share/pgadmin3/docs/cs_CZ/hints/encoding-unicode.html 10share/pgadmin3/docs/cs_CZ/hints/encoding-unicode.html
26share/pgadmin3/docs/cs_CZ/hints/fki.html 11share/pgadmin3/docs/cs_CZ/hints/fki.html
27share/pgadmin3/docs/cs_CZ/hints/instrumentation.html 12share/pgadmin3/docs/cs_CZ/hints/instrumentation.html
28share/pgadmin3/docs/cs_CZ/hints/multiple.html 13share/pgadmin3/docs/cs_CZ/hints/multiple.html
29share/pgadmin3/docs/cs_CZ/hints/object-editing.html 14share/pgadmin3/docs/cs_CZ/hints/object-editing.html
30share/pgadmin3/docs/cs_CZ/hints/pk.html 15share/pgadmin3/docs/cs_CZ/hints/pk.html
31share/pgadmin3/docs/cs_CZ/hints/saving-passwords.html 16share/pgadmin3/docs/cs_CZ/hints/saving-passwords.html
32share/pgadmin3/docs/cs_CZ/hints/vacuum.html 17share/pgadmin3/docs/cs_CZ/hints/vacuum.html
33share/pgadmin3/docs/cs_CZ/hints/view-without-pk.html 18share/pgadmin3/docs/cs_CZ/hints/view-without-pk.html
34share/pgadmin3/docs/cs_CZ/images/backup.png 
35share/pgadmin3/docs/cs_CZ/images/debugger.png 
36share/pgadmin3/docs/cs_CZ/images/editgrid.png 
37share/pgadmin3/docs/cs_CZ/images/export.png 
38share/pgadmin3/docs/cs_CZ/images/gqb.png 
39share/pgadmin3/docs/cs_CZ/images/grantwiz.png 
40share/pgadmin3/docs/cs_CZ/images/gridopt-filter.png 
41share/pgadmin3/docs/cs_CZ/images/gridopt-sort.png 
42share/pgadmin3/docs/cs_CZ/images/guru-connect.png 
43share/pgadmin3/docs/cs_CZ/images/main.png 
44share/pgadmin3/docs/cs_CZ/images/maintenance.png 
45share/pgadmin3/docs/cs_CZ/images/manage-macros.png 
46share/pgadmin3/docs/cs_CZ/images/no-hba.png 
47share/pgadmin3/docs/cs_CZ/images/not-running.png 
48share/pgadmin3/docs/cs_CZ/images/options-display.png 
49share/pgadmin3/docs/cs_CZ/images/options-general.png 
50share/pgadmin3/docs/cs_CZ/images/options-logging.png 
51share/pgadmin3/docs/cs_CZ/images/options-pref.png 
52share/pgadmin3/docs/cs_CZ/images/options-query.png 
53share/pgadmin3/docs/cs_CZ/images/password.png 
54share/pgadmin3/docs/cs_CZ/images/pgagent-jobdetails.png 
55share/pgadmin3/docs/cs_CZ/images/pgagent-jobproperties.png 
56share/pgadmin3/docs/cs_CZ/images/pgagent-jobstats.png 
57share/pgadmin3/docs/cs_CZ/images/pgagent-scheduledetails1.png 
58share/pgadmin3/docs/cs_CZ/images/pgagent-scheduledetails2.png 
59share/pgadmin3/docs/cs_CZ/images/pgagent-scheduledetails3.png 
60share/pgadmin3/docs/cs_CZ/images/pgagent-scheduleproperties.png 
61share/pgadmin3/docs/cs_CZ/images/pgagent-stepdetails.png 
62share/pgadmin3/docs/cs_CZ/images/pgagent-stepstats.png 
63share/pgadmin3/docs/cs_CZ/images/query-analyze.png 
64share/pgadmin3/docs/cs_CZ/images/query-connect.png 
65share/pgadmin3/docs/cs_CZ/images/query.png 
66share/pgadmin3/docs/cs_CZ/images/reporttool-html.png 
67share/pgadmin3/docs/cs_CZ/images/reporttool-xml.png 
68share/pgadmin3/docs/cs_CZ/images/restore.png 
69share/pgadmin3/docs/cs_CZ/images/server.png 
70share/pgadmin3/docs/cs_CZ/images/slony-create.png 
71share/pgadmin3/docs/cs_CZ/images/slony-execute.png 
72share/pgadmin3/docs/cs_CZ/images/slony-join.png 
73share/pgadmin3/docs/cs_CZ/images/slony-listen.png 
74share/pgadmin3/docs/cs_CZ/images/slony-overview.png 
75share/pgadmin3/docs/cs_CZ/images/slony-path.png 
76share/pgadmin3/docs/cs_CZ/images/slony-sequence.png 
77share/pgadmin3/docs/cs_CZ/images/slony-set.png 
78share/pgadmin3/docs/cs_CZ/images/slony-subscription.png 
79share/pgadmin3/docs/cs_CZ/images/slony-table.png 
80share/pgadmin3/docs/cs_CZ/images/slony-upgrade.png 
81share/pgadmin3/docs/cs_CZ/images/status.png 
82share/pgadmin3/docs/cs_CZ/index.html 
83share/pgadmin3/docs/cs_CZ/kerberos.html 
84share/pgadmin3/docs/cs_CZ/licence.html 
85share/pgadmin3/docs/cs_CZ/macros.html 
86share/pgadmin3/docs/cs_CZ/main.html 
87share/pgadmin3/docs/cs_CZ/maintenance.html 
88share/pgadmin3/docs/cs_CZ/openssl.html 
89share/pgadmin3/docs/cs_CZ/options-tab1.html 
90share/pgadmin3/docs/cs_CZ/options-tab2.html 
91share/pgadmin3/docs/cs_CZ/options-tab3.html 
92share/pgadmin3/docs/cs_CZ/options-tab4.html 
93share/pgadmin3/docs/cs_CZ/options-tab5.html 
94share/pgadmin3/docs/cs_CZ/options.html 
95share/pgadmin3/docs/cs_CZ/password.html 
96share/pgadmin3/docs/cs_CZ/pgadmin3.css 19share/pgadmin3/docs/cs_CZ/pgadmin3.css
97share/pgadmin3/docs/cs_CZ/pgadmin3.hhc 
98share/pgadmin3/docs/cs_CZ/pgadmin3.hhp 
99share/pgadmin3/docs/cs_CZ/pgagent-install.html 
100share/pgadmin3/docs/cs_CZ/pgagent-jobs.html 
101share/pgadmin3/docs/cs_CZ/pgagent-schedules.html 
102share/pgadmin3/docs/cs_CZ/pgagent-steps.html 
103share/pgadmin3/docs/cs_CZ/pgagent.html 
104share/pgadmin3/docs/cs_CZ/pgscript.html 
105share/pgadmin3/docs/cs_CZ/query.html 
106share/pgadmin3/docs/cs_CZ/reports.html 
107share/pgadmin3/docs/cs_CZ/restore.html 
108share/pgadmin3/docs/cs_CZ/sample-xml.html 
109share/pgadmin3/docs/cs_CZ/slony-example.html 
110share/pgadmin3/docs/cs_CZ/slony-execute.html 
111share/pgadmin3/docs/cs_CZ/slony-functions.html 
112share/pgadmin3/docs/cs_CZ/slony-install.html 
113share/pgadmin3/docs/cs_CZ/slony-overview.html 
114share/pgadmin3/docs/cs_CZ/slony-path.html 
115share/pgadmin3/docs/cs_CZ/slony-set.html 
116share/pgadmin3/docs/cs_CZ/slony.html 
117share/pgadmin3/docs/cs_CZ/status.html 
118share/pgadmin3/docs/cs_CZ/team.html 
119share/pgadmin3/docs/cs_CZ/translation_team.html 
120share/pgadmin3/docs/cs_CZ/using.html 
121share/pgadmin3/docs/de_DE/hints/autovacuum.html 20share/pgadmin3/docs/de_DE/hints/autovacuum.html
122share/pgadmin3/docs/de_DE/hints/conn-hba.html 21share/pgadmin3/docs/de_DE/hints/conn-hba.html
123share/pgadmin3/docs/de_DE/hints/conn-ident.html 22share/pgadmin3/docs/de_DE/hints/conn-ident.html
124share/pgadmin3/docs/de_DE/hints/conn-listen.html 23share/pgadmin3/docs/de_DE/hints/conn-listen.html
125share/pgadmin3/docs/de_DE/hints/encoding-ascii.html 24share/pgadmin3/docs/de_DE/hints/encoding-ascii.html
126share/pgadmin3/docs/de_DE/hints/encoding-unicode.html 25share/pgadmin3/docs/de_DE/hints/encoding-unicode.html
127share/pgadmin3/docs/de_DE/hints/fki.html 26share/pgadmin3/docs/de_DE/hints/fki.html
128share/pgadmin3/docs/de_DE/hints/instrumentation.html 27share/pgadmin3/docs/de_DE/hints/instrumentation.html
129share/pgadmin3/docs/de_DE/hints/multiple.html 28share/pgadmin3/docs/de_DE/hints/multiple.html
130share/pgadmin3/docs/de_DE/hints/object-editing.html 29share/pgadmin3/docs/de_DE/hints/object-editing.html
131share/pgadmin3/docs/de_DE/hints/pk.html 30share/pgadmin3/docs/de_DE/hints/pk.html
132share/pgadmin3/docs/de_DE/hints/saving-passwords.html 31share/pgadmin3/docs/de_DE/hints/saving-passwords.html
133share/pgadmin3/docs/de_DE/hints/vacuum.html 32share/pgadmin3/docs/de_DE/hints/vacuum.html
134share/pgadmin3/docs/de_DE/hints/view-without-pk.html 33share/pgadmin3/docs/de_DE/hints/view-without-pk.html
135share/pgadmin3/docs/en_US/appendices.html 34share/pgadmin3/docs/de_DE/pgadmin3.css
136share/pgadmin3/docs/en_US/backup.html 35${PLIST.doc}share/pgadmin3/docs/en_US/_images/backup-2.png
137share/pgadmin3/docs/en_US/bugreport.html 36${PLIST.doc}share/pgadmin3/docs/en_US/_images/backup-3.png
138share/pgadmin3/docs/en_US/commandline.html 37${PLIST.doc}share/pgadmin3/docs/en_US/_images/backup-4.png
139share/pgadmin3/docs/en_US/connect-error.html 38${PLIST.doc}share/pgadmin3/docs/en_US/_images/backup.png
140share/pgadmin3/docs/en_US/connect.html 39${PLIST.doc}share/pgadmin3/docs/en_US/_images/debugger.png
141share/pgadmin3/docs/en_US/control-server.html 40${PLIST.doc}share/pgadmin3/docs/en_US/_images/editgrid.png
142share/pgadmin3/docs/en_US/debugger.html 41${PLIST.doc}share/pgadmin3/docs/en_US/_images/export.png
143share/pgadmin3/docs/en_US/default-xsl.html 42${PLIST.doc}share/pgadmin3/docs/en_US/_images/gqb.png
144share/pgadmin3/docs/en_US/editgrid.html 43${PLIST.doc}share/pgadmin3/docs/en_US/_images/grantwiz.png
145share/pgadmin3/docs/en_US/export.html 44${PLIST.doc}share/pgadmin3/docs/en_US/_images/gridopt-filter.png
146share/pgadmin3/docs/en_US/extend.html 45${PLIST.doc}share/pgadmin3/docs/en_US/_images/gridopt-sort.png
147share/pgadmin3/docs/en_US/gqb.html 46${PLIST.doc}share/pgadmin3/docs/en_US/_images/guru-connect.png
148share/pgadmin3/docs/en_US/grantwiz.html 47${PLIST.doc}share/pgadmin3/docs/en_US/_images/main.png
149share/pgadmin3/docs/en_US/gridopts.html 48${PLIST.doc}share/pgadmin3/docs/en_US/_images/maintenance.png
150share/pgadmin3/docs/en_US/guruhints.html 49${PLIST.doc}share/pgadmin3/docs/en_US/_images/manage-macros.png
 50${PLIST.doc}share/pgadmin3/docs/en_US/_images/no-hba.png
 51${PLIST.doc}share/pgadmin3/docs/en_US/_images/not-running.png
 52${PLIST.doc}share/pgadmin3/docs/en_US/_images/options-binary_paths.png
 53${PLIST.doc}share/pgadmin3/docs/en_US/_images/options-colours.png
 54${PLIST.doc}share/pgadmin3/docs/en_US/_images/options-database_designer.png
 55${PLIST.doc}share/pgadmin3/docs/en_US/_images/options-display.png
 56${PLIST.doc}share/pgadmin3/docs/en_US/_images/options-favourites.png
 57${PLIST.doc}share/pgadmin3/docs/en_US/_images/options-guru_hints.png
 58${PLIST.doc}share/pgadmin3/docs/en_US/_images/options-help_paths.png
 59${PLIST.doc}share/pgadmin3/docs/en_US/_images/options-history_file.png
 60${PLIST.doc}share/pgadmin3/docs/en_US/_images/options-logging.png
 61${PLIST.doc}share/pgadmin3/docs/en_US/_images/options-macros.png
 62${PLIST.doc}share/pgadmin3/docs/en_US/_images/options-properties.png
 63${PLIST.doc}share/pgadmin3/docs/en_US/_images/options-query_editor.png
 64${PLIST.doc}share/pgadmin3/docs/en_US/_images/options-query_file.png
 65${PLIST.doc}share/pgadmin3/docs/en_US/_images/options-results_grid.png
 66${PLIST.doc}share/pgadmin3/docs/en_US/_images/options-server_status.png
 67${PLIST.doc}share/pgadmin3/docs/en_US/_images/options-ui_miscellaneous.png
 68${PLIST.doc}share/pgadmin3/docs/en_US/_images/options-user_interface.png
 69${PLIST.doc}share/pgadmin3/docs/en_US/_images/options.png
 70${PLIST.doc}share/pgadmin3/docs/en_US/_images/password.png
 71${PLIST.doc}share/pgadmin3/docs/en_US/_images/pgagent-jobdetails.png
 72${PLIST.doc}share/pgadmin3/docs/en_US/_images/pgagent-jobproperties.png
 73${PLIST.doc}share/pgadmin3/docs/en_US/_images/pgagent-jobstats.png
 74${PLIST.doc}share/pgadmin3/docs/en_US/_images/pgagent-scheduledetails1.png
 75${PLIST.doc}share/pgadmin3/docs/en_US/_images/pgagent-scheduledetails2.png
 76${PLIST.doc}share/pgadmin3/docs/en_US/_images/pgagent-scheduledetails3.png
 77${PLIST.doc}share/pgadmin3/docs/en_US/_images/pgagent-scheduleproperties.png
 78${PLIST.doc}share/pgadmin3/docs/en_US/_images/pgagent-stepdetails.png
 79${PLIST.doc}share/pgadmin3/docs/en_US/_images/pgagent-stepstats.png
 80${PLIST.doc}share/pgadmin3/docs/en_US/_images/query-analyze.png
 81${PLIST.doc}share/pgadmin3/docs/en_US/_images/query-connect.png
 82${PLIST.doc}share/pgadmin3/docs/en_US/_images/query.png
 83${PLIST.doc}share/pgadmin3/docs/en_US/_images/reporttool-html.png
 84${PLIST.doc}share/pgadmin3/docs/en_US/_images/reporttool-xml.png
 85${PLIST.doc}share/pgadmin3/docs/en_US/_images/restore-2.png
 86${PLIST.doc}share/pgadmin3/docs/en_US/_images/restore-3.png
 87${PLIST.doc}share/pgadmin3/docs/en_US/_images/restore-4.png
 88${PLIST.doc}share/pgadmin3/docs/en_US/_images/restore.png
 89${PLIST.doc}share/pgadmin3/docs/en_US/_images/search.png
 90${PLIST.doc}share/pgadmin3/docs/en_US/_images/server.png
 91${PLIST.doc}share/pgadmin3/docs/en_US/_images/slony-create.png
 92${PLIST.doc}share/pgadmin3/docs/en_US/_images/slony-execute.png
 93${PLIST.doc}share/pgadmin3/docs/en_US/_images/slony-join.png
 94${PLIST.doc}share/pgadmin3/docs/en_US/_images/slony-listen.png
 95${PLIST.doc}share/pgadmin3/docs/en_US/_images/slony-overview.png
 96${PLIST.doc}share/pgadmin3/docs/en_US/_images/slony-path.png
 97${PLIST.doc}share/pgadmin3/docs/en_US/_images/slony-sequence.png
 98${PLIST.doc}share/pgadmin3/docs/en_US/_images/slony-set.png
 99${PLIST.doc}share/pgadmin3/docs/en_US/_images/slony-subscription.png
 100${PLIST.doc}share/pgadmin3/docs/en_US/_images/slony-table.png
 101${PLIST.doc}share/pgadmin3/docs/en_US/_images/slony-upgrade.png
 102${PLIST.doc}share/pgadmin3/docs/en_US/_images/status.png
 103${PLIST.doc}share/pgadmin3/docs/en_US/_static/ajax-loader.gif
 104${PLIST.doc}share/pgadmin3/docs/en_US/_static/backup-2.png
 105${PLIST.doc}share/pgadmin3/docs/en_US/_static/backup-3.png
 106${PLIST.doc}share/pgadmin3/docs/en_US/_static/backup-4.png
 107${PLIST.doc}share/pgadmin3/docs/en_US/_static/backup.png
 108${PLIST.doc}share/pgadmin3/docs/en_US/_static/basic.css
 109${PLIST.doc}share/pgadmin3/docs/en_US/_static/comment-bright.png
 110${PLIST.doc}share/pgadmin3/docs/en_US/_static/comment-close.png
 111${PLIST.doc}share/pgadmin3/docs/en_US/_static/comment.png
 112${PLIST.doc}share/pgadmin3/docs/en_US/_static/connect.png
 113${PLIST.doc}share/pgadmin3/docs/en_US/_static/debugger.png
 114${PLIST.doc}share/pgadmin3/docs/en_US/_static/default.css
 115${PLIST.doc}share/pgadmin3/docs/en_US/_static/doctools.js
 116${PLIST.doc}share/pgadmin3/docs/en_US/_static/down-pressed.png
 117${PLIST.doc}share/pgadmin3/docs/en_US/_static/down.png
 118${PLIST.doc}share/pgadmin3/docs/en_US/_static/editgrid.png
 119${PLIST.doc}share/pgadmin3/docs/en_US/_static/export.png
 120${PLIST.doc}share/pgadmin3/docs/en_US/_static/file.png
 121${PLIST.doc}share/pgadmin3/docs/en_US/_static/gqb.png
 122${PLIST.doc}share/pgadmin3/docs/en_US/_static/grantwiz.png
 123${PLIST.doc}share/pgadmin3/docs/en_US/_static/gridopt-filter.png
 124${PLIST.doc}share/pgadmin3/docs/en_US/_static/gridopt-sort.png
 125${PLIST.doc}share/pgadmin3/docs/en_US/_static/guru-connect.png
 126${PLIST.doc}share/pgadmin3/docs/en_US/_static/jquery.js
 127${PLIST.doc}share/pgadmin3/docs/en_US/_static/locks.png
 128${PLIST.doc}share/pgadmin3/docs/en_US/_static/logfile.png
 129${PLIST.doc}share/pgadmin3/docs/en_US/_static/main.png
 130${PLIST.doc}share/pgadmin3/docs/en_US/_static/maintenance.png
 131${PLIST.doc}share/pgadmin3/docs/en_US/_static/manage-macros.png
 132${PLIST.doc}share/pgadmin3/docs/en_US/_static/minus.png
 133${PLIST.doc}share/pgadmin3/docs/en_US/_static/no-hba.png
 134${PLIST.doc}share/pgadmin3/docs/en_US/_static/not-running.png
 135${PLIST.doc}share/pgadmin3/docs/en_US/_static/options-binary_paths.png
 136${PLIST.doc}share/pgadmin3/docs/en_US/_static/options-colours.png
 137${PLIST.doc}share/pgadmin3/docs/en_US/_static/options-database_designer.png
 138${PLIST.doc}share/pgadmin3/docs/en_US/_static/options-display.png
 139${PLIST.doc}share/pgadmin3/docs/en_US/_static/options-favourites.png
 140${PLIST.doc}share/pgadmin3/docs/en_US/_static/options-guru_hints.png
 141${PLIST.doc}share/pgadmin3/docs/en_US/_static/options-help_paths.png
 142${PLIST.doc}share/pgadmin3/docs/en_US/_static/options-history_file.png
 143${PLIST.doc}share/pgadmin3/docs/en_US/_static/options-logging.png
 144${PLIST.doc}share/pgadmin3/docs/en_US/_static/options-macros.png
 145${PLIST.doc}share/pgadmin3/docs/en_US/_static/options-properties.png
 146${PLIST.doc}share/pgadmin3/docs/en_US/_static/options-query_editor.png
 147${PLIST.doc}share/pgadmin3/docs/en_US/_static/options-query_file.png
 148${PLIST.doc}share/pgadmin3/docs/en_US/_static/options-results_grid.png
 149${PLIST.doc}share/pgadmin3/docs/en_US/_static/options-server_status.png
 150${PLIST.doc}share/pgadmin3/docs/en_US/_static/options-ui_miscellaneous.png
 151${PLIST.doc}share/pgadmin3/docs/en_US/_static/options-user_interface.png
 152${PLIST.doc}share/pgadmin3/docs/en_US/_static/options.png
 153${PLIST.doc}share/pgadmin3/docs/en_US/_static/password.png
 154${PLIST.doc}share/pgadmin3/docs/en_US/_static/pgagent-jobdetails.png
 155${PLIST.doc}share/pgadmin3/docs/en_US/_static/pgagent-jobproperties.png
 156${PLIST.doc}share/pgadmin3/docs/en_US/_static/pgagent-jobstats.png
 157${PLIST.doc}share/pgadmin3/docs/en_US/_static/pgagent-scheduledetails1.png
 158${PLIST.doc}share/pgadmin3/docs/en_US/_static/pgagent-scheduledetails2.png
 159${PLIST.doc}share/pgadmin3/docs/en_US/_static/pgagent-scheduledetails3.png
 160${PLIST.doc}share/pgadmin3/docs/en_US/_static/pgagent-scheduleproperties.png
 161${PLIST.doc}share/pgadmin3/docs/en_US/_static/pgagent-stepdetails.png
 162${PLIST.doc}share/pgadmin3/docs/en_US/_static/pgagent-stepstats.png
 163${PLIST.doc}share/pgadmin3/docs/en_US/_static/plus.png
 164${PLIST.doc}share/pgadmin3/docs/en_US/_static/pygments.css
 165${PLIST.doc}share/pgadmin3/docs/en_US/_static/query-analyze.png
 166${PLIST.doc}share/pgadmin3/docs/en_US/_static/query-connect.png
 167${PLIST.doc}share/pgadmin3/docs/en_US/_static/query.png
 168${PLIST.doc}share/pgadmin3/docs/en_US/_static/reporttool-html.png
 169${PLIST.doc}share/pgadmin3/docs/en_US/_static/reporttool-xml.png
 170${PLIST.doc}share/pgadmin3/docs/en_US/_static/restore-2.png
 171${PLIST.doc}share/pgadmin3/docs/en_US/_static/restore-3.png
 172${PLIST.doc}share/pgadmin3/docs/en_US/_static/restore-4.png
 173${PLIST.doc}share/pgadmin3/docs/en_US/_static/restore.png
 174${PLIST.doc}share/pgadmin3/docs/en_US/_static/search.png
 175${PLIST.doc}share/pgadmin3/docs/en_US/_static/searchtools.js
 176${PLIST.doc}share/pgadmin3/docs/en_US/_static/server.png
 177${PLIST.doc}share/pgadmin3/docs/en_US/_static/sidebar.js
 178${PLIST.doc}share/pgadmin3/docs/en_US/_static/slony-create.png
 179${PLIST.doc}share/pgadmin3/docs/en_US/_static/slony-execute.png
 180${PLIST.doc}share/pgadmin3/docs/en_US/_static/slony-join.png
 181${PLIST.doc}share/pgadmin3/docs/en_US/_static/slony-listen.png
 182${PLIST.doc}share/pgadmin3/docs/en_US/_static/slony-overview.png
 183${PLIST.doc}share/pgadmin3/docs/en_US/_static/slony-path.png
 184${PLIST.doc}share/pgadmin3/docs/en_US/_static/slony-sequence.png
 185${PLIST.doc}share/pgadmin3/docs/en_US/_static/slony-set.png
 186${PLIST.doc}share/pgadmin3/docs/en_US/_static/slony-subscription.png
 187${PLIST.doc}share/pgadmin3/docs/en_US/_static/slony-table.png
 188${PLIST.doc}share/pgadmin3/docs/en_US/_static/slony-upgrade.png
 189${PLIST.doc}share/pgadmin3/docs/en_US/_static/status.png
 190${PLIST.doc}share/pgadmin3/docs/en_US/_static/transaction.png
 191${PLIST.doc}share/pgadmin3/docs/en_US/_static/underscore.js
 192${PLIST.doc}share/pgadmin3/docs/en_US/_static/up-pressed.png
 193${PLIST.doc}share/pgadmin3/docs/en_US/_static/up.png
 194${PLIST.doc}share/pgadmin3/docs/en_US/_static/websupport.js
 195${PLIST.doc}share/pgadmin3/docs/en_US/appendices.html
 196${PLIST.doc}share/pgadmin3/docs/en_US/backup.html
 197${PLIST.doc}share/pgadmin3/docs/en_US/bugreport.html
 198${PLIST.doc}share/pgadmin3/docs/en_US/commandline.html
 199${PLIST.doc}share/pgadmin3/docs/en_US/connect-error.html
 200${PLIST.doc}share/pgadmin3/docs/en_US/connect.html
 201${PLIST.doc}share/pgadmin3/docs/en_US/control-server.html
 202${PLIST.doc}share/pgadmin3/docs/en_US/debugger.html
 203${PLIST.doc}share/pgadmin3/docs/en_US/default-xsl.html
 204${PLIST.doc}share/pgadmin3/docs/en_US/editgrid.html
 205${PLIST.doc}share/pgadmin3/docs/en_US/export.html
 206${PLIST.doc}share/pgadmin3/docs/en_US/extend.html
 207${PLIST.doc}share/pgadmin3/docs/en_US/genindex.html
 208${PLIST.doc}share/pgadmin3/docs/en_US/gqb.html
 209${PLIST.doc}share/pgadmin3/docs/en_US/grantwiz.html
 210${PLIST.doc}share/pgadmin3/docs/en_US/gridopts.html
 211${PLIST.doc}share/pgadmin3/docs/en_US/guruhints.html
151share/pgadmin3/docs/en_US/hints/autovacuum.html 212share/pgadmin3/docs/en_US/hints/autovacuum.html
152share/pgadmin3/docs/en_US/hints/conn-hba.html 213share/pgadmin3/docs/en_US/hints/conn-hba.html
153share/pgadmin3/docs/en_US/hints/conn-ident.html 214share/pgadmin3/docs/en_US/hints/conn-ident.html
154share/pgadmin3/docs/en_US/hints/conn-listen.html 215share/pgadmin3/docs/en_US/hints/conn-listen.html
155share/pgadmin3/docs/en_US/hints/encoding-ascii.html 216share/pgadmin3/docs/en_US/hints/encoding-ascii.html
156share/pgadmin3/docs/en_US/hints/encoding-unicode.html 217share/pgadmin3/docs/en_US/hints/encoding-unicode.html
157share/pgadmin3/docs/en_US/hints/fki.html 218share/pgadmin3/docs/en_US/hints/fki.html
158share/pgadmin3/docs/en_US/hints/instrumentation.html 219share/pgadmin3/docs/en_US/hints/instrumentation.html
 220share/pgadmin3/docs/en_US/hints/instrumentation91_with.html
 221share/pgadmin3/docs/en_US/hints/instrumentation91_without.html
159share/pgadmin3/docs/en_US/hints/multiple.html 222share/pgadmin3/docs/en_US/hints/multiple.html
160share/pgadmin3/docs/en_US/hints/object-editing.html 223share/pgadmin3/docs/en_US/hints/object-editing.html
161share/pgadmin3/docs/en_US/hints/pk.html 224share/pgadmin3/docs/en_US/hints/pk.html
162share/pgadmin3/docs/en_US/hints/saving-passwords.html 225share/pgadmin3/docs/en_US/hints/saving-passwords.html
 226share/pgadmin3/docs/en_US/hints/vacuum-full.html
163share/pgadmin3/docs/en_US/hints/vacuum.html 227share/pgadmin3/docs/en_US/hints/vacuum.html
164share/pgadmin3/docs/en_US/hints/view-without-pk.html 228share/pgadmin3/docs/en_US/hints/view-without-pk.html
165share/pgadmin3/docs/en_US/images/backup-2.png 229${PLIST.doc}share/pgadmin3/docs/en_US/index.html
166share/pgadmin3/docs/en_US/images/backup-3.png 230${PLIST.doc}share/pgadmin3/docs/en_US/introduction.html
167share/pgadmin3/docs/en_US/images/backup-4.png 231${PLIST.doc}share/pgadmin3/docs/en_US/kerberos.html
168share/pgadmin3/docs/en_US/images/backup.png 232${PLIST.doc}share/pgadmin3/docs/en_US/licence.html
169share/pgadmin3/docs/en_US/images/connect.png 233${PLIST.doc}share/pgadmin3/docs/en_US/macros.html
170share/pgadmin3/docs/en_US/images/debugger.png 234${PLIST.doc}share/pgadmin3/docs/en_US/main.html
171share/pgadmin3/docs/en_US/images/editgrid.png 235${PLIST.doc}share/pgadmin3/docs/en_US/maintenance.html
172share/pgadmin3/docs/en_US/images/export.png 236${PLIST.doc}share/pgadmin3/docs/en_US/openssl.html
173share/pgadmin3/docs/en_US/images/gqb.png 237${PLIST.doc}share/pgadmin3/docs/en_US/options-browser.html
174share/pgadmin3/docs/en_US/images/grantwiz.png 238${PLIST.doc}share/pgadmin3/docs/en_US/options-database_designer.html
175share/pgadmin3/docs/en_US/images/gridopt-filter.png 239${PLIST.doc}share/pgadmin3/docs/en_US/options-miscellaneous.html
176share/pgadmin3/docs/en_US/images/gridopt-sort.png 240${PLIST.doc}share/pgadmin3/docs/en_US/options-query_tool.html
177share/pgadmin3/docs/en_US/images/guru-connect.png 241${PLIST.doc}share/pgadmin3/docs/en_US/options-server_status.html
178share/pgadmin3/docs/en_US/images/locks.png 242${PLIST.doc}share/pgadmin3/docs/en_US/options.html
179share/pgadmin3/docs/en_US/images/logfile.png 243${PLIST.doc}share/pgadmin3/docs/en_US/password.html
180share/pgadmin3/docs/en_US/images/main.png 244${PLIST.doc}share/pgadmin3/docs/en_US/pgadmin3.hhc
181share/pgadmin3/docs/en_US/images/maintenance.png 245${PLIST.doc}share/pgadmin3/docs/en_US/pgadmin3.hhk
182share/pgadmin3/docs/en_US/images/manage-macros.png 246${PLIST.doc}share/pgadmin3/docs/en_US/pgadmin3.hhp
183share/pgadmin3/docs/en_US/images/no-hba.png 247${PLIST.doc}share/pgadmin3/docs/en_US/pgadmin3.stp
184share/pgadmin3/docs/en_US/images/not-running.png 248${PLIST.doc}share/pgadmin3/docs/en_US/pgagent-install.html
185share/pgadmin3/docs/en_US/images/options-browser.png 249${PLIST.doc}share/pgadmin3/docs/en_US/pgagent-jobs.html
186share/pgadmin3/docs/en_US/images/options-colours.png 250${PLIST.doc}share/pgadmin3/docs/en_US/pgagent-schedules.html
187share/pgadmin3/docs/en_US/images/options-display.png 251${PLIST.doc}share/pgadmin3/docs/en_US/pgagent-steps.html
188share/pgadmin3/docs/en_US/images/options-general.png 252${PLIST.doc}share/pgadmin3/docs/en_US/pgagent.html
189share/pgadmin3/docs/en_US/images/options-logging.png 253${PLIST.doc}share/pgadmin3/docs/en_US/pgscript.html
190share/pgadmin3/docs/en_US/images/options-pref.png 254${PLIST.doc}share/pgadmin3/docs/en_US/query.html
191share/pgadmin3/docs/en_US/images/options-preferences.png 255${PLIST.doc}share/pgadmin3/docs/en_US/reports.html
192share/pgadmin3/docs/en_US/images/options-query.png 256${PLIST.doc}share/pgadmin3/docs/en_US/restore.html
193share/pgadmin3/docs/en_US/images/options-querytool.png 257${PLIST.doc}share/pgadmin3/docs/en_US/sample-xml.html
194share/pgadmin3/docs/en_US/images/password.png 258${PLIST.doc}share/pgadmin3/docs/en_US/search_object.html
195share/pgadmin3/docs/en_US/images/pgagent-jobdetails.png 259${PLIST.doc}share/pgadmin3/docs/en_US/slony-example.html
196share/pgadmin3/docs/en_US/images/pgagent-jobproperties.png 260${PLIST.doc}share/pgadmin3/docs/en_US/slony-execute.html
197share/pgadmin3/docs/en_US/images/pgagent-jobstats.png 261${PLIST.doc}share/pgadmin3/docs/en_US/slony-functions.html
198share/pgadmin3/docs/en_US/images/pgagent-scheduledetails1.png 262${PLIST.doc}share/pgadmin3/docs/en_US/slony-install.html
199share/pgadmin3/docs/en_US/images/pgagent-scheduledetails2.png 263${PLIST.doc}share/pgadmin3/docs/en_US/slony-overview.html
200share/pgadmin3/docs/en_US/images/pgagent-scheduledetails3.png 264${PLIST.doc}share/pgadmin3/docs/en_US/slony-path.html
201share/pgadmin3/docs/en_US/images/pgagent-scheduleproperties.png 265${PLIST.doc}share/pgadmin3/docs/en_US/slony-set.html
202share/pgadmin3/docs/en_US/images/pgagent-stepdetails.png 266${PLIST.doc}share/pgadmin3/docs/en_US/slony.html
203share/pgadmin3/docs/en_US/images/pgagent-stepstats.png 267${PLIST.doc}share/pgadmin3/docs/en_US/status.html
204share/pgadmin3/docs/en_US/images/query-analyze.png 268${PLIST.doc}share/pgadmin3/docs/en_US/team.html
205share/pgadmin3/docs/en_US/images/query-connect.png 269${PLIST.doc}share/pgadmin3/docs/en_US/translation_team.html
206share/pgadmin3/docs/en_US/images/query.png 270${PLIST.doc}share/pgadmin3/docs/en_US/using.html
207share/pgadmin3/docs/en_US/images/reporttool-html.png 
208share/pgadmin3/docs/en_US/images/reporttool-xml.png 
209share/pgadmin3/docs/en_US/images/restore-2.png 
210share/pgadmin3/docs/en_US/images/restore-3.png 
211share/pgadmin3/docs/en_US/images/restore-4.png 
212share/pgadmin3/docs/en_US/images/restore-content.png 
213share/pgadmin3/docs/en_US/images/restore.png 
214share/pgadmin3/docs/en_US/images/server.png 
215share/pgadmin3/docs/en_US/images/slony-create.png 
216share/pgadmin3/docs/en_US/images/slony-execute.png 
217share/pgadmin3/docs/en_US/images/slony-join.png 
218share/pgadmin3/docs/en_US/images/slony-listen.png 
219share/pgadmin3/docs/en_US/images/slony-overview.png 
220share/pgadmin3/docs/en_US/images/slony-path.png 
221share/pgadmin3/docs/en_US/images/slony-sequence.png 
222share/pgadmin3/docs/en_US/images/slony-set.png 
223share/pgadmin3/docs/en_US/images/slony-subscription.png 
224share/pgadmin3/docs/en_US/images/slony-table.png 
225share/pgadmin3/docs/en_US/images/slony-upgrade.png 
226share/pgadmin3/docs/en_US/images/status.png 
227share/pgadmin3/docs/en_US/images/transaction.png 
228share/pgadmin3/docs/en_US/index.html 
229share/pgadmin3/docs/en_US/kerberos.html 
230share/pgadmin3/docs/en_US/licence.html 
231share/pgadmin3/docs/en_US/macros.html 
232share/pgadmin3/docs/en_US/main.html 
233share/pgadmin3/docs/en_US/maintenance.html 
234share/pgadmin3/docs/en_US/openssl.html 
235share/pgadmin3/docs/en_US/options-tab1.html 
236share/pgadmin3/docs/en_US/options-tab2.html 
237share/pgadmin3/docs/en_US/options-tab3.html 
238share/pgadmin3/docs/en_US/options-tab4.html 
239share/pgadmin3/docs/en_US/options-tab5.html 
240share/pgadmin3/docs/en_US/options-tab6.html 
241share/pgadmin3/docs/en_US/options.html 
242share/pgadmin3/docs/en_US/password.html 
243share/pgadmin3/docs/en_US/pgadmin3.css 
244share/pgadmin3/docs/en_US/pgadmin3.hhc 
245share/pgadmin3/docs/en_US/pgadmin3.hhp 
246share/pgadmin3/docs/en_US/pgadmin3.hhp.cached 
247share/pgadmin3/docs/en_US/pgagent-install.html 
248share/pgadmin3/docs/en_US/pgagent-jobs.html 
249share/pgadmin3/docs/en_US/pgagent-schedules.html 
250share/pgadmin3/docs/en_US/pgagent-steps.html 
251share/pgadmin3/docs/en_US/pgagent.html 
252share/pgadmin3/docs/en_US/pgscript.html 
253share/pgadmin3/docs/en_US/query.html 
254share/pgadmin3/docs/en_US/reports.html 
255share/pgadmin3/docs/en_US/restore.html 
256share/pgadmin3/docs/en_US/sample-xml.html 
257share/pgadmin3/docs/en_US/slony-example.html 
258share/pgadmin3/docs/en_US/slony-execute.html 
259share/pgadmin3/docs/en_US/slony-functions.html 
260share/pgadmin3/docs/en_US/slony-install.html 
261share/pgadmin3/docs/en_US/slony-overview.html 
262share/pgadmin3/docs/en_US/slony-path.html 
263share/pgadmin3/docs/en_US/slony-set.html 
264share/pgadmin3/docs/en_US/slony.html 
265share/pgadmin3/docs/en_US/status.html 
266share/pgadmin3/docs/en_US/team.html 
267share/pgadmin3/docs/en_US/translation_team.html 
268share/pgadmin3/docs/en_US/using.html 
269share/pgadmin3/docs/es_ES/hints/autovacuum.html 271share/pgadmin3/docs/es_ES/hints/autovacuum.html
270share/pgadmin3/docs/es_ES/hints/conn-hba.html 272share/pgadmin3/docs/es_ES/hints/conn-hba.html
271share/pgadmin3/docs/es_ES/hints/conn-ident.html 273share/pgadmin3/docs/es_ES/hints/conn-ident.html
272share/pgadmin3/docs/es_ES/hints/conn-listen.html 274share/pgadmin3/docs/es_ES/hints/conn-listen.html
273share/pgadmin3/docs/es_ES/hints/encoding-ascii.html 275share/pgadmin3/docs/es_ES/hints/encoding-ascii.html
274share/pgadmin3/docs/es_ES/hints/encoding-unicode.html 276share/pgadmin3/docs/es_ES/hints/encoding-unicode.html
275share/pgadmin3/docs/es_ES/hints/fki.html 277share/pgadmin3/docs/es_ES/hints/fki.html
276share/pgadmin3/docs/es_ES/hints/instrumentation.html 278share/pgadmin3/docs/es_ES/hints/instrumentation.html
277share/pgadmin3/docs/es_ES/hints/multiple.html 279share/pgadmin3/docs/es_ES/hints/multiple.html
278share/pgadmin3/docs/es_ES/hints/object-editing.html 280share/pgadmin3/docs/es_ES/hints/object-editing.html
279share/pgadmin3/docs/es_ES/hints/pk.html 281share/pgadmin3/docs/es_ES/hints/pk.html
280share/pgadmin3/docs/es_ES/hints/vacuum.html 282share/pgadmin3/docs/es_ES/hints/vacuum.html
281share/pgadmin3/docs/es_ES/hints/view-without-pk.html 283share/pgadmin3/docs/es_ES/hints/view-without-pk.html
 284share/pgadmin3/docs/es_ES/pgadmin3.css
282share/pgadmin3/docs/fi_FI/hints/autovacuum.html 285share/pgadmin3/docs/fi_FI/hints/autovacuum.html
283share/pgadmin3/docs/fi_FI/hints/conn-hba.html 286share/pgadmin3/docs/fi_FI/hints/conn-hba.html
284share/pgadmin3/docs/fi_FI/hints/conn-ident.html 287share/pgadmin3/docs/fi_FI/hints/conn-ident.html
285share/pgadmin3/docs/fi_FI/hints/conn-listen.html 288share/pgadmin3/docs/fi_FI/hints/conn-listen.html
286share/pgadmin3/docs/fi_FI/hints/encoding-ascii.html 289share/pgadmin3/docs/fi_FI/hints/encoding-ascii.html
287share/pgadmin3/docs/fi_FI/hints/encoding-unicode.html 290share/pgadmin3/docs/fi_FI/hints/encoding-unicode.html
288share/pgadmin3/docs/fi_FI/hints/fki.html 291share/pgadmin3/docs/fi_FI/hints/fki.html
289share/pgadmin3/docs/fi_FI/hints/instrumentation.html 292share/pgadmin3/docs/fi_FI/hints/instrumentation.html
290share/pgadmin3/docs/fi_FI/hints/multiple.html 293share/pgadmin3/docs/fi_FI/hints/multiple.html
291share/pgadmin3/docs/fi_FI/hints/object-editing.html 294share/pgadmin3/docs/fi_FI/hints/object-editing.html
292share/pgadmin3/docs/fi_FI/hints/pk.html 295share/pgadmin3/docs/fi_FI/hints/pk.html
293share/pgadmin3/docs/fi_FI/hints/saving-passwords.html 296share/pgadmin3/docs/fi_FI/hints/saving-passwords.html
294share/pgadmin3/docs/fi_FI/hints/vacuum.html 297share/pgadmin3/docs/fi_FI/hints/vacuum.html
295share/pgadmin3/docs/fi_FI/hints/view-without-pk.html 298share/pgadmin3/docs/fi_FI/hints/view-without-pk.html
296share/pgadmin3/docs/fr_FR/appendices.html 299share/pgadmin3/docs/fi_FI/pgadmin3.css
297share/pgadmin3/docs/fr_FR/backup.html 
298share/pgadmin3/docs/fr_FR/bugreport.html 
299share/pgadmin3/docs/fr_FR/commandline.html 
300share/pgadmin3/docs/fr_FR/connect-error.html 
301share/pgadmin3/docs/fr_FR/connect.html 
302share/pgadmin3/docs/fr_FR/control-server.html 
303share/pgadmin3/docs/fr_FR/debugger.html 
304share/pgadmin3/docs/fr_FR/default-xsl.html 
305share/pgadmin3/docs/fr_FR/editgrid.html 
306share/pgadmin3/docs/fr_FR/export.html 
307share/pgadmin3/docs/fr_FR/extend.html 
308share/pgadmin3/docs/fr_FR/gqb.html 
309share/pgadmin3/docs/fr_FR/grantwiz.html 
310share/pgadmin3/docs/fr_FR/gridopts.html 
311share/pgadmin3/docs/fr_FR/guruhints.html 
312share/pgadmin3/docs/fr_FR/hints/autovacuum.html 300share/pgadmin3/docs/fr_FR/hints/autovacuum.html
313share/pgadmin3/docs/fr_FR/hints/conn-hba.html 301share/pgadmin3/docs/fr_FR/hints/conn-hba.html
314share/pgadmin3/docs/fr_FR/hints/conn-ident.html 302share/pgadmin3/docs/fr_FR/hints/conn-ident.html
315share/pgadmin3/docs/fr_FR/hints/conn-listen.html 303share/pgadmin3/docs/fr_FR/hints/conn-listen.html
316share/pgadmin3/docs/fr_FR/hints/encoding-ascii.html 304share/pgadmin3/docs/fr_FR/hints/encoding-ascii.html
317share/pgadmin3/docs/fr_FR/hints/encoding-unicode.html 305share/pgadmin3/docs/fr_FR/hints/encoding-unicode.html
318share/pgadmin3/docs/fr_FR/hints/fki.html 306share/pgadmin3/docs/fr_FR/hints/fki.html
319share/pgadmin3/docs/fr_FR/hints/instrumentation.html 307share/pgadmin3/docs/fr_FR/hints/instrumentation.html
 308share/pgadmin3/docs/fr_FR/hints/instrumentation91_with.html
 309share/pgadmin3/docs/fr_FR/hints/instrumentation91_without.html
320share/pgadmin3/docs/fr_FR/hints/multiple.html 310share/pgadmin3/docs/fr_FR/hints/multiple.html
321share/pgadmin3/docs/fr_FR/hints/pk.html 311share/pgadmin3/docs/fr_FR/hints/pk.html
 312share/pgadmin3/docs/fr_FR/hints/vacuum-full.html
322share/pgadmin3/docs/fr_FR/hints/vacuum.html 313share/pgadmin3/docs/fr_FR/hints/vacuum.html
323share/pgadmin3/docs/fr_FR/hints/view-without-pk.html 314share/pgadmin3/docs/fr_FR/hints/view-without-pk.html
324share/pgadmin3/docs/fr_FR/images/backup.png 
325share/pgadmin3/docs/fr_FR/images/connect.png 
326share/pgadmin3/docs/fr_FR/images/debugger.png 
327share/pgadmin3/docs/fr_FR/images/editgrid.png 
328share/pgadmin3/docs/fr_FR/images/export.png 
329share/pgadmin3/docs/fr_FR/images/gqb.png 
330share/pgadmin3/docs/fr_FR/images/grantwiz.png 
331share/pgadmin3/docs/fr_FR/images/gridopt-filter.png 
332share/pgadmin3/docs/fr_FR/images/gridopt-sort.png 
333share/pgadmin3/docs/fr_FR/images/guru-connect.png 
334share/pgadmin3/docs/fr_FR/images/locks.png 
335share/pgadmin3/docs/fr_FR/images/logfile.png 
336share/pgadmin3/docs/fr_FR/images/main.png 
337share/pgadmin3/docs/fr_FR/images/maintenance.png 
338share/pgadmin3/docs/fr_FR/images/manage-macros.png 
339share/pgadmin3/docs/fr_FR/images/no-hba.png 
340share/pgadmin3/docs/fr_FR/images/not-running.png 
341share/pgadmin3/docs/fr_FR/images/options-display.png 
342share/pgadmin3/docs/fr_FR/images/options-general.png 
343share/pgadmin3/docs/fr_FR/images/options-logging.png 
344share/pgadmin3/docs/fr_FR/images/options-pref.png 
345share/pgadmin3/docs/fr_FR/images/options-query.png 
346share/pgadmin3/docs/fr_FR/images/password.png 
347share/pgadmin3/docs/fr_FR/images/pgagent-jobdetails.png 
348share/pgadmin3/docs/fr_FR/images/pgagent-jobproperties.png 
349share/pgadmin3/docs/fr_FR/images/pgagent-jobstats.png 
350share/pgadmin3/docs/fr_FR/images/pgagent-scheduledetails1.png 
351share/pgadmin3/docs/fr_FR/images/pgagent-scheduledetails2.png 
352share/pgadmin3/docs/fr_FR/images/pgagent-scheduledetails3.png 
353share/pgadmin3/docs/fr_FR/images/pgagent-scheduleproperties.png 
354share/pgadmin3/docs/fr_FR/images/pgagent-stepdetails.png 
355share/pgadmin3/docs/fr_FR/images/pgagent-stepstats.png 
356share/pgadmin3/docs/fr_FR/images/query-analyze.png 
357share/pgadmin3/docs/fr_FR/images/query-connect.png 
358share/pgadmin3/docs/fr_FR/images/query.png 
359share/pgadmin3/docs/fr_FR/images/reporttool-html.png 
360share/pgadmin3/docs/fr_FR/images/reporttool-xml.png 
361share/pgadmin3/docs/fr_FR/images/restore-content.png 
362share/pgadmin3/docs/fr_FR/images/restore.png 
363share/pgadmin3/docs/fr_FR/images/server.png 
364share/pgadmin3/docs/fr_FR/images/slony-create.png 
365share/pgadmin3/docs/fr_FR/images/slony-execute.png 
366share/pgadmin3/docs/fr_FR/images/slony-join.png 
367share/pgadmin3/docs/fr_FR/images/slony-listen.png 
368share/pgadmin3/docs/fr_FR/images/slony-overview.png 
369share/pgadmin3/docs/fr_FR/images/slony-path.png 
370share/pgadmin3/docs/fr_FR/images/slony-sequence.png 
371share/pgadmin3/docs/fr_FR/images/slony-set.png 
372share/pgadmin3/docs/fr_FR/images/slony-subscription.png 
373share/pgadmin3/docs/fr_FR/images/slony-table.png 
374share/pgadmin3/docs/fr_FR/images/slony-upgrade.png 
375share/pgadmin3/docs/fr_FR/images/status.png 
376share/pgadmin3/docs/fr_FR/images/transaction.png 
377share/pgadmin3/docs/fr_FR/index.html 
378share/pgadmin3/docs/fr_FR/kerberos.html 
379share/pgadmin3/docs/fr_FR/licence.html 
380share/pgadmin3/docs/fr_FR/macros.html 
381share/pgadmin3/docs/fr_FR/main.html 
382share/pgadmin3/docs/fr_FR/maintenance.html 
383share/pgadmin3/docs/fr_FR/openssl.html 
384share/pgadmin3/docs/fr_FR/options-tab1.html 
385share/pgadmin3/docs/fr_FR/options-tab2.html 
386share/pgadmin3/docs/fr_FR/options-tab3.html 
387share/pgadmin3/docs/fr_FR/options-tab4.html 
388share/pgadmin3/docs/fr_FR/options-tab5.html 
389share/pgadmin3/docs/fr_FR/options-tab6.html 
390share/pgadmin3/docs/fr_FR/options.html 
391share/pgadmin3/docs/fr_FR/password.html 
392share/pgadmin3/docs/fr_FR/pgadmin3.css 315share/pgadmin3/docs/fr_FR/pgadmin3.css
393share/pgadmin3/docs/fr_FR/pgadmin3.hhc 
394share/pgadmin3/docs/fr_FR/pgadmin3.hhp 
395share/pgadmin3/docs/fr_FR/pgagent-install.html 
396share/pgadmin3/docs/fr_FR/pgagent-jobs.html 
397share/pgadmin3/docs/fr_FR/pgagent-schedules.html 
398share/pgadmin3/docs/fr_FR/pgagent-steps.html 
399share/pgadmin3/docs/fr_FR/pgagent.html 
400share/pgadmin3/docs/fr_FR/pgscript.html 
401share/pgadmin3/docs/fr_FR/query.html 
402share/pgadmin3/docs/fr_FR/reports.html 
403share/pgadmin3/docs/fr_FR/restore.html 
404share/pgadmin3/docs/fr_FR/sample-xml.html 
405share/pgadmin3/docs/fr_FR/slony-example.html 
406share/pgadmin3/docs/fr_FR/slony-execute.html 
407share/pgadmin3/docs/fr_FR/slony-functions.html 
408share/pgadmin3/docs/fr_FR/slony-install.html 
409share/pgadmin3/docs/fr_FR/slony-overview.html 
410share/pgadmin3/docs/fr_FR/slony-path.html 
411share/pgadmin3/docs/fr_FR/slony-set.html 
412share/pgadmin3/docs/fr_FR/slony.html 
413share/pgadmin3/docs/fr_FR/status.html 
414share/pgadmin3/docs/fr_FR/team.html 
415share/pgadmin3/docs/fr_FR/translation_team.html 
416share/pgadmin3/docs/fr_FR/using.html 
417share/pgadmin3/docs/sl_SI/hints/autovacuum.html 316share/pgadmin3/docs/sl_SI/hints/autovacuum.html
418share/pgadmin3/docs/sl_SI/hints/conn-hba.html 317share/pgadmin3/docs/sl_SI/hints/conn-hba.html
419share/pgadmin3/docs/sl_SI/hints/conn-ident.html 318share/pgadmin3/docs/sl_SI/hints/conn-ident.html
420share/pgadmin3/docs/sl_SI/hints/conn-listen.html 319share/pgadmin3/docs/sl_SI/hints/conn-listen.html
421share/pgadmin3/docs/sl_SI/hints/encoding-ascii.html 320share/pgadmin3/docs/sl_SI/hints/encoding-ascii.html
422share/pgadmin3/docs/sl_SI/hints/encoding-unicode.html 321share/pgadmin3/docs/sl_SI/hints/encoding-unicode.html
423share/pgadmin3/docs/sl_SI/hints/fki.html 322share/pgadmin3/docs/sl_SI/hints/fki.html
424share/pgadmin3/docs/sl_SI/hints/instrumentation.html 323share/pgadmin3/docs/sl_SI/hints/instrumentation.html
425share/pgadmin3/docs/sl_SI/hints/multiple.html 324share/pgadmin3/docs/sl_SI/hints/multiple.html
426share/pgadmin3/docs/sl_SI/hints/pk.html 325share/pgadmin3/docs/sl_SI/hints/pk.html
427share/pgadmin3/docs/sl_SI/hints/vacuum.html 326share/pgadmin3/docs/sl_SI/hints/vacuum.html
428share/pgadmin3/docs/sl_SI/hints/view-without-pk.html 327share/pgadmin3/docs/sl_SI/hints/view-without-pk.html
 328share/pgadmin3/docs/sl_SI/pgadmin3.css
429share/pgadmin3/docs/zh_CN/hints/autovacuum.html 329share/pgadmin3/docs/zh_CN/hints/autovacuum.html
430share/pgadmin3/docs/zh_CN/hints/conn-hba.html 330share/pgadmin3/docs/zh_CN/hints/conn-hba.html
431share/pgadmin3/docs/zh_CN/hints/conn-ident.html 331share/pgadmin3/docs/zh_CN/hints/conn-ident.html
432share/pgadmin3/docs/zh_CN/hints/conn-listen.html 332share/pgadmin3/docs/zh_CN/hints/conn-listen.html
433share/pgadmin3/docs/zh_CN/hints/encoding-ascii.html 333share/pgadmin3/docs/zh_CN/hints/encoding-ascii.html
434share/pgadmin3/docs/zh_CN/hints/encoding-unicode.html 334share/pgadmin3/docs/zh_CN/hints/encoding-unicode.html
435share/pgadmin3/docs/zh_CN/hints/fki.html 335share/pgadmin3/docs/zh_CN/hints/fki.html
436share/pgadmin3/docs/zh_CN/hints/instrumentation.html 336share/pgadmin3/docs/zh_CN/hints/instrumentation.html
437share/pgadmin3/docs/zh_CN/hints/multiple.html 337share/pgadmin3/docs/zh_CN/hints/multiple.html
438share/pgadmin3/docs/zh_CN/hints/object-editing.html 338share/pgadmin3/docs/zh_CN/hints/object-editing.html
439share/pgadmin3/docs/zh_CN/hints/pk.html 339share/pgadmin3/docs/zh_CN/hints/pk.html
440share/pgadmin3/docs/zh_CN/hints/saving-passwords.html 340share/pgadmin3/docs/zh_CN/hints/saving-passwords.html
441share/pgadmin3/docs/zh_CN/hints/vacuum.html 341share/pgadmin3/docs/zh_CN/hints/vacuum.html
442share/pgadmin3/docs/zh_CN/hints/view-without-pk.html 342share/pgadmin3/docs/zh_CN/hints/view-without-pk.html
 343share/pgadmin3/docs/zh_CN/pgadmin3.css
443share/pgadmin3/docs/zh_TW/hints/autovacuum.html 344share/pgadmin3/docs/zh_TW/hints/autovacuum.html
444share/pgadmin3/docs/zh_TW/hints/conn-hba.html 345share/pgadmin3/docs/zh_TW/hints/conn-hba.html
445share/pgadmin3/docs/zh_TW/hints/conn-ident.html 346share/pgadmin3/docs/zh_TW/hints/conn-ident.html
446share/pgadmin3/docs/zh_TW/hints/conn-listen.html 347share/pgadmin3/docs/zh_TW/hints/conn-listen.html
447share/pgadmin3/docs/zh_TW/hints/encoding-ascii.html 348share/pgadmin3/docs/zh_TW/hints/encoding-ascii.html
448share/pgadmin3/docs/zh_TW/hints/encoding-unicode.html 349share/pgadmin3/docs/zh_TW/hints/encoding-unicode.html
449share/pgadmin3/docs/zh_TW/hints/fki.html 350share/pgadmin3/docs/zh_TW/hints/fki.html
450share/pgadmin3/docs/zh_TW/hints/instrumentation.html 351share/pgadmin3/docs/zh_TW/hints/instrumentation.html
451share/pgadmin3/docs/zh_TW/hints/multiple.html 352share/pgadmin3/docs/zh_TW/hints/multiple.html
452share/pgadmin3/docs/zh_TW/hints/object-editing.html 353share/pgadmin3/docs/zh_TW/hints/object-editing.html
453share/pgadmin3/docs/zh_TW/hints/pk.html 354share/pgadmin3/docs/zh_TW/hints/pk.html
454share/pgadmin3/docs/zh_TW/hints/saving-passwords.html 355share/pgadmin3/docs/zh_TW/hints/saving-passwords.html
455share/pgadmin3/docs/zh_TW/hints/vacuum.html 356share/pgadmin3/docs/zh_TW/hints/vacuum.html
456share/pgadmin3/docs/zh_TW/hints/view-without-pk.html 357share/pgadmin3/docs/zh_TW/hints/view-without-pk.html
 358share/pgadmin3/docs/zh_TW/pgadmin3.css
457share/pgadmin3/i18n/af_ZA/pgadmin3.mo 359share/pgadmin3/i18n/af_ZA/pgadmin3.mo
458share/pgadmin3/i18n/af_ZA/wxstd.mo 360share/pgadmin3/i18n/af_ZA/wxstd.mo
459share/pgadmin3/i18n/ca_ES/pgadmin3.mo 361share/pgadmin3/i18n/ca_ES/pgadmin3.mo
460share/pgadmin3/i18n/ca_ES/wxstd.mo 362share/pgadmin3/i18n/ca_ES/wxstd.mo
461share/pgadmin3/i18n/cs_CZ/pgadmin3.mo 363share/pgadmin3/i18n/cs_CZ/pgadmin3.mo
462share/pgadmin3/i18n/cs_CZ/wxstd.mo 364share/pgadmin3/i18n/cs_CZ/wxstd.mo
463share/pgadmin3/i18n/de_DE/pgadmin3.mo 365share/pgadmin3/i18n/de_DE/pgadmin3.mo
464share/pgadmin3/i18n/de_DE/wxstd.mo 366share/pgadmin3/i18n/de_DE/wxstd.mo
465share/pgadmin3/i18n/es_ES/pgadmin3.mo 367share/pgadmin3/i18n/es_ES/pgadmin3.mo
466share/pgadmin3/i18n/es_ES/wxstd.mo 368share/pgadmin3/i18n/es_ES/wxstd.mo
467share/pgadmin3/i18n/fr_FR/pgadmin3.mo 369share/pgadmin3/i18n/fr_FR/pgadmin3.mo
468share/pgadmin3/i18n/fr_FR/wxstd.mo 370share/pgadmin3/i18n/fr_FR/wxstd.mo
469share/pgadmin3/i18n/it_IT/pgadmin3.mo 371share/pgadmin3/i18n/it_IT/pgadmin3.mo
470share/pgadmin3/i18n/it_IT/wxstd.mo 372share/pgadmin3/i18n/it_IT/wxstd.mo
471share/pgadmin3/i18n/ja_JP/pgadmin3.mo 373share/pgadmin3/i18n/ja_JP/pgadmin3.mo
472share/pgadmin3/i18n/ja_JP/wxstd.mo 374share/pgadmin3/i18n/ja_JP/wxstd.mo
 375share/pgadmin3/i18n/ko_KR/pgadmin3.mo
 376share/pgadmin3/i18n/ko_KR/wxstd.mo
 377share/pgadmin3/i18n/lv_LV/pgadmin3.mo
 378share/pgadmin3/i18n/lv_LV/wxstd.mo
473share/pgadmin3/i18n/pg_settings.csv 379share/pgadmin3/i18n/pg_settings.csv
474share/pgadmin3/i18n/pgadmin3.lng 380share/pgadmin3/i18n/pgadmin3.lng
475share/pgadmin3/i18n/pl_PL/pgadmin3.mo 381share/pgadmin3/i18n/pl_PL/pgadmin3.mo
476share/pgadmin3/i18n/pl_PL/wxstd.mo 382share/pgadmin3/i18n/pl_PL/wxstd.mo
477share/pgadmin3/i18n/pt_PT/pgadmin3.mo 383share/pgadmin3/i18n/pt_PT/pgadmin3.mo
478share/pgadmin3/i18n/pt_PT/wxstd.mo 384share/pgadmin3/i18n/pt_PT/wxstd.mo
479share/pgadmin3/i18n/ru_RU/pgadmin3.mo 385share/pgadmin3/i18n/ru_RU/pgadmin3.mo
480share/pgadmin3/i18n/ru_RU/wxstd.mo 386share/pgadmin3/i18n/ru_RU/wxstd.mo
481share/pgadmin3/i18n/sr_RS/pgadmin3.mo 387share/pgadmin3/i18n/sr_RS/pgadmin3.mo
482share/pgadmin3/i18n/sr_RS/wxstd.mo 388share/pgadmin3/i18n/sr_RS/wxstd.mo
483share/pgadmin3/i18n/wxstd.mo 389share/pgadmin3/i18n/wxstd.mo
484share/pgadmin3/i18n/zh_CN/pgadmin3.mo 390share/pgadmin3/i18n/zh_CN/pgadmin3.mo
485share/pgadmin3/i18n/zh_CN/wxstd.mo 391share/pgadmin3/i18n/zh_CN/wxstd.mo
486share/pgadmin3/i18n/zh_TW/pgadmin3.mo 392share/pgadmin3/i18n/zh_TW/pgadmin3.mo
487share/pgadmin3/i18n/zh_TW/wxstd.mo 393share/pgadmin3/i18n/zh_TW/wxstd.mo
488share/pgadmin3/plugins.ini 394share/pgadmin3/plugins.d/plugins.ini
489share/pgadmin3/settings.ini 395share/pgadmin3/settings.ini

cvs diff -r1.8 -r1.9 pkgsrc/databases/pgadmin3/distinfo (expand / switch to unified diff)

--- pkgsrc/databases/pgadmin3/distinfo 2010/11/05 20:21:18 1.8
+++ pkgsrc/databases/pgadmin3/distinfo 2013/07/20 05:10:42 1.9
@@ -1,9 +1,10 @@ @@ -1,9 +1,10 @@
1$NetBSD: distinfo,v 1.8 2010/11/05 20:21:18 adam Exp $ 1$NetBSD: distinfo,v 1.9 2013/07/20 05:10:42 richard Exp $
2 2
3SHA1 (pgadmin3-1.12.1.tar.gz) = 6b8b09cdbd76d09bc8a84f6f6ebd852d5a76c575 3SHA1 (pgadmin3-1.16.1.tar.gz) = f5eaa8184d9e30662eec3a7bf639258eb8a658a3
4RMD160 (pgadmin3-1.12.1.tar.gz) = 26b7bafcf72c0ee9ac6f153ac02535626f4c7bcf 4RMD160 (pgadmin3-1.16.1.tar.gz) = b2830f6dcc9b22592cc196e27b2e844a3717e1a9
5Size (pgadmin3-1.12.1.tar.gz) = 15106786 bytes 5Size (pgadmin3-1.16.1.tar.gz) = 13783723 bytes
6SHA1 (patch-aa) = 53bb8be237acce254d50a9b7a33bdc054a5a9b4a 6SHA1 (patch-Makefile.am) = a3a9b705eb74d66fda228c2ce13c61c50d88a84a
7SHA1 (patch-ab) = 266fcf43dbb507a920d3b2c4446ea86d4cc599af 7SHA1 (patch-acinclude.m4) = 3402690e3446ed068bceb9ea4711171e851d58df
8SHA1 (patch-ac) = debdeb377a4496001fdc535bdc4039aa74088c3c 8SHA1 (patch-configure) = 0803a3d1ef954bedbbb181858b135e622bc1642e
9SHA1 (patch-ad) = 140b014beee22447a5cf10d86767f099eb378222 9SHA1 (patch-pgadmin_gqb_gqbView.cpp) = 1a0248ba837f068c7304c97f5f022ae566b6dab9
 10SHA1 (patch-xtra_pgscript_file_test_execute.sh) = e0af8b239c9bd1d2b62053224f225acb7fcee17b

File Added: pkgsrc/databases/pgadmin3/patches/Attic/patch-Makefile.am
$NetBSD: patch-Makefile.am,v 1.1 2013/07/20 05:10:42 richard Exp $

Suppress hack for creating hhp.cached file in help_dir
and use pkgsrc supplied $(MAKE) for building sphinx

--- Makefile.am.orig	2012-08-02 14:28:59.000000000 +0000
+++ Makefile.am
@@ -71,8 +71,8 @@ endif
 
 # We need to ensure the help cache is world writeable
 install-data-hook:
-	touch $(help_dir)/docs/en_US/pgadmin3.hhp.cached
-	chmod 0666 $(help_dir)/docs/en_US/pgadmin3.hhp.cached
+#	touch $(help_dir)/docs/en_US/pgadmin3.hhp.cached
+#	chmod 0666 $(help_dir)/docs/en_US/pgadmin3.hhp.cached
 if SPHINX_BUILD
 	if [ -d $(top_srcdir)/docs/en_US/_build/htmlhelp ]; then cp -R $(top_srcdir)/docs/en_US/_build/htmlhelp/* $(help_dir)/docs/en_US/; fi
 
@@ -94,7 +94,7 @@ style:
 # Create HTML docs
 doc:
 if SPHINX_BUILD
-	cd $(top_srcdir)/docs/en_US && make -f Makefile.sphinx SPHINXBUILD=${SPHINX_BUILD} htmlhelp
+	cd $(top_srcdir)/docs/en_US && $(MAKE) -f Makefile.sphinx SPHINXBUILD=${SPHINX_BUILD} htmlhelp
 endif
 
 all: doc

File Added: pkgsrc/databases/pgadmin3/patches/Attic/patch-acinclude.m4
$NetBSD: patch-acinclude.m4,v 1.1 2013/07/20 05:10:42 richard Exp $

Fix LDFLAGS problem for sun ld not supporting -as-needed

--- acinclude.m4.orig	2012-08-02 14:28:51.000000000 +0000
+++ acinclude.m4
@@ -684,7 +684,9 @@ AC_DEFUN([SETUP_POSTGRESQL],
 			case "${host}" in
 				*-apple-darwin*)
 					;;
- 
+                                *solaris*)
+                                        LDFLAGS="$LDFLAGS"
+                                        ;;
 				*)
 					LDFLAGS="$LDFLAGS -Wl,-as-needed"
 					;;

File Added: pkgsrc/databases/pgadmin3/patches/patch-configure
$NetBSD: patch-configure,v 1.1 2013/07/20 05:10:42 richard Exp $

copy patch details from patch-acinclude.m4 to suppress ld
option -as-needed which is not supported on solaris.

--- configure.orig	2012-12-03 16:02:14.000000000 +0000
+++ configure
@@ -6011,6 +6011,10 @@ $as_echo "failed" >&6; }
 				*-apple-darwin*)
 					;;
 
+				*solaris*)
+				LDFLAGS="$LDFLAGS"
+				;;
+
 				*)
 					LDFLAGS="$LDFLAGS -Wl,-as-needed"
 					;;

File Added: pkgsrc/databases/pgadmin3/patches/Attic/patch-pgadmin_gqb_gqbView.cpp
$NetBSD: patch-pgadmin_gqb_gqbView.cpp,v 1.1 2013/07/20 05:10:42 richard Exp $

patch to quelch g++ warning 

--- pgadmin/gqb/gqbView.cpp.orig	2012-08-02 14:29:01.000000000 +0000
+++ pgadmin/gqb/gqbView.cpp
@@ -341,7 +341,7 @@ void gqbView::onMotion(wxMouseEvent &eve
 		}
 		else
 		{
-			anySelected = false;
+			anySelected = NULL;
 			mode = pt_normal;
 		}
 

File Added: pkgsrc/databases/pgadmin3/patches/Attic/patch-xtra_pgscript_file_test_execute.sh
$NetBSD: patch-xtra_pgscript_file_test_execute.sh,v 1.1 2013/07/20 05:10:42 richard Exp $

Patch non-portable test for null string

--- xtra/pgscript/file/test/execute.sh.orig	2012-08-02 14:29:10.000000000 +0000
+++ xtra/pgscript/file/test/execute.sh
@@ -24,7 +24,7 @@ echo "done"
 echo ""
 
 # Get parameters for database connections
-if test "$*" == ""
+if test -z "$*"
 then
 	PARAMETERS="$DEFAULTPARAM" # Default if nothing is provided
 else

File Deleted: pkgsrc/databases/pgadmin3/patches/Attic/patch-aa

File Deleted: pkgsrc/databases/pgadmin3/patches/Attic/patch-ab

File Deleted: pkgsrc/databases/pgadmin3/patches/Attic/patch-ac

File Deleted: pkgsrc/databases/pgadmin3/patches/Attic/patch-ad