summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authoradamw <adamw@df743ca5-7f9a-e211-a948-0013205c9059>2004-10-12 00:40:16 +0800
committeradamw <adamw@df743ca5-7f9a-e211-a948-0013205c9059>2004-10-12 00:40:16 +0800
commit5ce175db72b643596aaffd602c77481038aa8830 (patch)
tree3179d39a3971ebb427b4633b606f7896e6b1653f
parent3e4b4c0b335468e18608c2ddb1804d42eeaa8c96 (diff)
downloadmarcuscom-ports-5ce175db72b643596aaffd602c77481038aa8830.tar
marcuscom-ports-5ce175db72b643596aaffd602c77481038aa8830.tar.gz
marcuscom-ports-5ce175db72b643596aaffd602c77481038aa8830.tar.bz2
marcuscom-ports-5ce175db72b643596aaffd602c77481038aa8830.tar.lz
marcuscom-ports-5ce175db72b643596aaffd602c77481038aa8830.tar.xz
marcuscom-ports-5ce175db72b643596aaffd602c77481038aa8830.tar.zst
marcuscom-ports-5ce175db72b643596aaffd602c77481038aa8830.zip
Update to 1.1.99.
Note that the shlib minor for libgnomedb-2.so went DOWNWARDS from 4 to 2. git-svn-id: svn://creme-brulee.marcuscom.com/ports/trunk@2944 df743ca5-7f9a-e211-a948-0013205c9059
-rw-r--r--databases/libgda2/Makefile3
-rw-r--r--databases/libgda2/distinfo4
-rw-r--r--databases/libgda2/files/patch-providers_xml_gda-xml-provider.c57
-rw-r--r--databases/libgda2/pkg-plist129
-rw-r--r--databases/libgnomedb/Makefile2
-rw-r--r--databases/libgnomedb/distinfo4
-rw-r--r--databases/libgnomedb/pkg-plist218
7 files changed, 185 insertions, 232 deletions
diff --git a/databases/libgda2/Makefile b/databases/libgda2/Makefile
index 5220bc311..09b747918 100644
--- a/databases/libgda2/Makefile
+++ b/databases/libgda2/Makefile
@@ -6,8 +6,7 @@
#
PORTNAME= libgda2
-PORTVERSION= 1.1.6
-PORTREVISION= 1
+PORTVERSION= 1.1.99
CATEGORIES= databases gnome
MASTER_SITES= ${MASTER_SITE_GNOME}
MASTER_SITE_SUBDIR= sources/${PORTNAME:S/2$//}/1.1
diff --git a/databases/libgda2/distinfo b/databases/libgda2/distinfo
index 88feb1bc1..3311c8e35 100644
--- a/databases/libgda2/distinfo
+++ b/databases/libgda2/distinfo
@@ -1,2 +1,2 @@
-MD5 (gnome2/libgda-1.1.6.tar.bz2) = 971142a54704f73224b0d49d7e5b10ad
-SIZE (gnome2/libgda-1.1.6.tar.bz2) = 1169045
+MD5 (gnome2/libgda-1.1.99.tar.bz2) = ca7cb079d48988cb8495a8be9a3b88c1
+SIZE (gnome2/libgda-1.1.99.tar.bz2) = 1213949
diff --git a/databases/libgda2/files/patch-providers_xml_gda-xml-provider.c b/databases/libgda2/files/patch-providers_xml_gda-xml-provider.c
deleted file mode 100644
index d9de4d05d..000000000
--- a/databases/libgda2/files/patch-providers_xml_gda-xml-provider.c
+++ /dev/null
@@ -1,57 +0,0 @@
---- providers/xml/gda-xml-provider.c.orig Sat Aug 14 12:41:57 2004
-+++ providers/xml/gda-xml-provider.c Sat Aug 14 12:43:17 2004
-@@ -652,33 +652,32 @@
- /* create the recordset */
- recset = GDA_DATA_MODEL_ARRAY (gda_data_model_array_new (4));
- gda_data_model_set_column_title (GDA_DATA_MODEL (recset), 0, _("Type"));
-- gda_data_model_set_column_title (GDA_DATA_MODEL (recset), 0, _("Type"));
- gda_data_model_set_column_title (GDA_DATA_MODEL (recset), 1, _("Owner"));
- gda_data_model_set_column_title (GDA_DATA_MODEL (recset), 2, _("Comments"));
- gda_data_model_set_column_title (GDA_DATA_MODEL (recset), 3, _("GDA type"));
-
- /* fill the recordset */
-- add_type_row (recset, "bigint", NULL, _("Big integer"), GDA_VALUE_TYPE_BIGINT);
-- add_type_row (recset, "biguint", NULL, _("Big unsigned integer"), GDA_VALUE_TYPE_BIGUINT);
-- add_type_row (recset, "binary", NULL, _("Binary"), GDA_VALUE_TYPE_BINARY);
-- add_type_row (recset, "boolean", NULL, _("Boolean"), GDA_VALUE_TYPE_BOOLEAN);
-- add_type_row (recset, "date", NULL, _("Date"), GDA_VALUE_TYPE_DATE);
-- add_type_row (recset, "double", NULL, _("Double precision"), GDA_VALUE_TYPE_DOUBLE);
-- add_type_row (recset, "integer", NULL, _("Integer"), GDA_VALUE_TYPE_INTEGER);
-- add_type_row (recset, "list", NULL, _("List"), GDA_VALUE_TYPE_LIST);
-- add_type_row (recset, "money", NULL, _("Money"), GDA_VALUE_TYPE_MONEY);
-- add_type_row (recset, "numeric", NULL, _("Numeric"), GDA_VALUE_TYPE_NUMERIC);
-- add_type_row (recset, "point", NULL, _("Point"), GDA_VALUE_TYPE_GEOMETRIC_POINT);
-- add_type_row (recset, "single", NULL, _("Single precision"), GDA_VALUE_TYPE_SINGLE);
-- add_type_row (recset, "smallint", NULL, _("Small integer"), GDA_VALUE_TYPE_SMALLINT);
-- add_type_row (recset, "smalluint", NULL, _("Small unsigned integer"), GDA_VALUE_TYPE_SMALLUINT);
-- add_type_row (recset, "string", NULL, _("String"), GDA_VALUE_TYPE_STRING);
-- add_type_row (recset, "time", NULL, _("Time"), GDA_VALUE_TYPE_TIME);
-- add_type_row (recset, "timestamp", NULL, _("Timestamp"), GDA_VALUE_TYPE_TIMESTAMP);
-- add_type_row (recset, "tinyint", NULL, _("Tiny integer"), GDA_VALUE_TYPE_TINYINT);
-- add_type_row (recset, "tinyuint", NULL, _("Tiny unsigned integer"), GDA_VALUE_TYPE_TINYUINT);
-- add_type_row (recset, "type", NULL, _("Type"), GDA_VALUE_TYPE_TYPE);
-- add_type_row (recset, "uinteger", NULL, _("Unsigned integer"), GDA_VALUE_TYPE_UINTEGER);
-+ add_type_row (recset, "bigint", "", _("Big integer"), GDA_VALUE_TYPE_BIGINT);
-+ add_type_row (recset, "biguint", "", _("Big unsigned integer"), GDA_VALUE_TYPE_BIGUINT);
-+ add_type_row (recset, "binary", "", _("Binary"), GDA_VALUE_TYPE_BINARY);
-+ add_type_row (recset, "boolean", "", _("Boolean"), GDA_VALUE_TYPE_BOOLEAN);
-+ add_type_row (recset, "date", "", _("Date"), GDA_VALUE_TYPE_DATE);
-+ add_type_row (recset, "double", "", _("Double precision"), GDA_VALUE_TYPE_DOUBLE);
-+ add_type_row (recset, "integer", "", _("Integer"), GDA_VALUE_TYPE_INTEGER);
-+ add_type_row (recset, "list", "", _("List"), GDA_VALUE_TYPE_LIST);
-+ add_type_row (recset, "money", "", _("Money"), GDA_VALUE_TYPE_MONEY);
-+ add_type_row (recset, "numeric", "", _("Numeric"), GDA_VALUE_TYPE_NUMERIC);
-+ add_type_row (recset, "point", "", _("Point"), GDA_VALUE_TYPE_GEOMETRIC_POINT);
-+ add_type_row (recset, "single", "", _("Single precision"), GDA_VALUE_TYPE_SINGLE);
-+ add_type_row (recset, "smallint", "", _("Small integer"), GDA_VALUE_TYPE_SMALLINT);
-+ add_type_row (recset, "smalluint", "", _("Small unsigned integer"), GDA_VALUE_TYPE_SMALLUINT);
-+ add_type_row (recset, "string", "", _("String"), GDA_VALUE_TYPE_STRING);
-+ add_type_row (recset, "time", "", _("Time"), GDA_VALUE_TYPE_TIME);
-+ add_type_row (recset, "timestamp", "", _("Timestamp"), GDA_VALUE_TYPE_TIMESTAMP);
-+ add_type_row (recset, "tinyint", "", _("Tiny integer"), GDA_VALUE_TYPE_TINYINT);
-+ add_type_row (recset, "tinyuint", "", _("Tiny unsigned integer"), GDA_VALUE_TYPE_TINYUINT);
-+ add_type_row (recset, "type", "", _("Type"), GDA_VALUE_TYPE_TYPE);
-+ add_type_row (recset, "uinteger", "", _("Unsigned integer"), GDA_VALUE_TYPE_UINTEGER);
-
- return GDA_DATA_MODEL (recset);
- }
diff --git a/databases/libgda2/pkg-plist b/databases/libgda2/pkg-plist
index ec17b10cf..937e02c3b 100644
--- a/databases/libgda2/pkg-plist
+++ b/databases/libgda2/pkg-plist
@@ -2,69 +2,70 @@ bin/gda-config-tool
bin/gda-report-test
bin/gda-run
etc/libgda/config
-include/libgda-report/gda-report-document.h
-include/libgda-report/gda-report-item-detail.h
-include/libgda-report/gda-report-item-label.h
-include/libgda-report/gda-report-item-pagefooter.h
-include/libgda-report/gda-report-item-pageheader.h
-include/libgda-report/gda-report-item-repfield.h
-include/libgda-report/gda-report-item-report.h
-include/libgda-report/gda-report-item-reportfooter.h
-include/libgda-report/gda-report-item-reportheader.h
-include/libgda-report/gda-report-item-sqlquery.h
-include/libgda-report/gda-report-item.h
-include/libgda-report/gda-report-result.h
-include/libgda-report/gda-report-types.h
-include/libgda-report/gda-report-valid.h
-include/libgda-report/gda-report.h
-include/libgda/gda-blob.h
-include/libgda/gda-client.h
-include/libgda/gda-command.h
-include/libgda/gda-config.h
-include/libgda/gda-connection.h
-include/libgda/gda-data-model-array.h
-include/libgda/gda-data-model-hash.h
-include/libgda/gda-data-model-list.h
-include/libgda/gda-data-model.h
-include/libgda/gda-enum-types.h
-include/libgda/gda-error.h
-include/libgda/gda-field.h
-include/libgda/gda-marshal.h
-include/libgda/gda-parameter.h
-include/libgda/gda-quark-list.h
-include/libgda/gda-row.h
-include/libgda/gda-select.h
-include/libgda/gda-server-provider.h
-include/libgda/gda-table.h
-include/libgda/gda-transaction.h
-include/libgda/gda-util.h
-include/libgda/gda-value.h
-include/libgda/gda-xml-connection.h
-include/libgda/gda-xml-database.h
-include/libgda/gda-xml-document.h
-include/libgda/gda-xql-atom.h
-include/libgda/gda-xql-bin.h
-include/libgda/gda-xql-column.h
-include/libgda/gda-xql-const.h
-include/libgda/gda-xql-delete.h
-include/libgda/gda-xql-dml.h
-include/libgda/gda-xql-dual.h
-include/libgda/gda-xql-field.h
-include/libgda/gda-xql-func.h
-include/libgda/gda-xql-insert.h
-include/libgda/gda-xql-item.h
-include/libgda/gda-xql-join.h
-include/libgda/gda-xql-list.h
-include/libgda/gda-xql-query.h
-include/libgda/gda-xql-select.h
-include/libgda/gda-xql-stack.h
-include/libgda/gda-xql-target.h
-include/libgda/gda-xql-update.h
-include/libgda/gda-xql-utils.h
-include/libgda/gda-xql-value.h
-include/libgda/gda-xql-valueref.h
-include/libgda/libgda.h
-include/libgda/sql/sql_parser.h
+include/libgda-1.1/libgda-report/gda-report-document.h
+include/libgda-1.1/libgda-report/gda-report-item-detail.h
+include/libgda-1.1/libgda-report/gda-report-item-label.h
+include/libgda-1.1/libgda-report/gda-report-item-pagefooter.h
+include/libgda-1.1/libgda-report/gda-report-item-pageheader.h
+include/libgda-1.1/libgda-report/gda-report-item-repfield.h
+include/libgda-1.1/libgda-report/gda-report-item-report.h
+include/libgda-1.1/libgda-report/gda-report-item-reportfooter.h
+include/libgda-1.1/libgda-report/gda-report-item-reportheader.h
+include/libgda-1.1/libgda-report/gda-report-item-sqlquery.h
+include/libgda-1.1/libgda-report/gda-report-item.h
+include/libgda-1.1/libgda-report/gda-report-result.h
+include/libgda-1.1/libgda-report/gda-report-types.h
+include/libgda-1.1/libgda-report/gda-report-valid.h
+include/libgda-1.1/libgda-report/gda-report.h
+include/libgda-1.1/libgda/gda-blob.h
+include/libgda-1.1/libgda/gda-client.h
+include/libgda-1.1/libgda/gda-command.h
+include/libgda-1.1/libgda/gda-config.h
+include/libgda-1.1/libgda/gda-connection.h
+include/libgda-1.1/libgda/gda-data-model-array.h
+include/libgda-1.1/libgda/gda-data-model-hash.h
+include/libgda-1.1/libgda/gda-data-model-list.h
+include/libgda-1.1/libgda/gda-data-model.h
+include/libgda-1.1/libgda/gda-enum-types.h
+include/libgda-1.1/libgda/gda-error.h
+include/libgda-1.1/libgda/gda-field.h
+include/libgda-1.1/libgda/gda-log.h
+include/libgda-1.1/libgda/gda-marshal.h
+include/libgda-1.1/libgda/gda-parameter.h
+include/libgda-1.1/libgda/gda-quark-list.h
+include/libgda-1.1/libgda/gda-row.h
+include/libgda-1.1/libgda/gda-select.h
+include/libgda-1.1/libgda/gda-server-provider.h
+include/libgda-1.1/libgda/gda-table.h
+include/libgda-1.1/libgda/gda-transaction.h
+include/libgda-1.1/libgda/gda-util.h
+include/libgda-1.1/libgda/gda-value.h
+include/libgda-1.1/libgda/gda-xml-connection.h
+include/libgda-1.1/libgda/gda-xml-database.h
+include/libgda-1.1/libgda/gda-xml-document.h
+include/libgda-1.1/libgda/gda-xql-atom.h
+include/libgda-1.1/libgda/gda-xql-bin.h
+include/libgda-1.1/libgda/gda-xql-column.h
+include/libgda-1.1/libgda/gda-xql-const.h
+include/libgda-1.1/libgda/gda-xql-delete.h
+include/libgda-1.1/libgda/gda-xql-dml.h
+include/libgda-1.1/libgda/gda-xql-dual.h
+include/libgda-1.1/libgda/gda-xql-field.h
+include/libgda-1.1/libgda/gda-xql-func.h
+include/libgda-1.1/libgda/gda-xql-insert.h
+include/libgda-1.1/libgda/gda-xql-item.h
+include/libgda-1.1/libgda/gda-xql-join.h
+include/libgda-1.1/libgda/gda-xql-list.h
+include/libgda-1.1/libgda/gda-xql-query.h
+include/libgda-1.1/libgda/gda-xql-select.h
+include/libgda-1.1/libgda/gda-xql-stack.h
+include/libgda-1.1/libgda/gda-xql-target.h
+include/libgda-1.1/libgda/gda-xql-update.h
+include/libgda-1.1/libgda/gda-xql-utils.h
+include/libgda-1.1/libgda/gda-xql-value.h
+include/libgda-1.1/libgda/gda-xql-valueref.h
+include/libgda-1.1/libgda/libgda.h
+include/libgda-1.1/sql/sql_parser.h
lib/libgda-2.a
lib/libgda-2.so
lib/libgda-2.so.2
@@ -230,6 +231,7 @@ share/locale/ja/LC_MESSAGES/libgda-2.mo
share/locale/ko/LC_MESSAGES/libgda-2.mo
share/locale/ml/LC_MESSAGES/libgda-2.mo
share/locale/ms/LC_MESSAGES/libgda-2.mo
+share/locale/nb/LC_MESSAGES/libgda-2.mo
share/locale/nl/LC_MESSAGES/libgda-2.mo
share/locale/no/LC_MESSAGES/libgda-2.mo
share/locale/pl/LC_MESSAGES/libgda-2.mo
@@ -238,6 +240,7 @@ share/locale/pt_BR/LC_MESSAGES/libgda-2.mo
share/locale/ru/LC_MESSAGES/libgda-2.mo
share/locale/sk/LC_MESSAGES/libgda-2.mo
share/locale/sl/LC_MESSAGES/libgda-2.mo
+share/locale/sq/LC_MESSAGES/libgda-2.mo
share/locale/sr/LC_MESSAGES/libgda-2.mo
share/locale/sr@Latn/LC_MESSAGES/libgda-2.mo
share/locale/sv/LC_MESSAGES/libgda-2.mo
diff --git a/databases/libgnomedb/Makefile b/databases/libgnomedb/Makefile
index e08a92ea4..7f60dca36 100644
--- a/databases/libgnomedb/Makefile
+++ b/databases/libgnomedb/Makefile
@@ -6,7 +6,7 @@
#
PORTNAME= libgnomedb
-PORTVERSION= 1.1.6
+PORTVERSION= 1.1.99
CATEGORIES= databases gnome
MASTER_SITES= ${MASTER_SITE_GNOME}
MASTER_SITE_SUBDIR= sources/libgnomedb/1.1
diff --git a/databases/libgnomedb/distinfo b/databases/libgnomedb/distinfo
index bf6c1de74..da78ba134 100644
--- a/databases/libgnomedb/distinfo
+++ b/databases/libgnomedb/distinfo
@@ -1,2 +1,2 @@
-MD5 (gnome2/libgnomedb-1.1.6.tar.bz2) = 8d410f0fa1b2bfed5abbaa7bb9f05df6
-SIZE (gnome2/libgnomedb-1.1.6.tar.bz2) = 647778
+MD5 (gnome2/libgnomedb-1.1.99.tar.bz2) = 91e9f56946bae16115ada57a89b6f761
+SIZE (gnome2/libgnomedb-1.1.99.tar.bz2) = 677743
diff --git a/databases/libgnomedb/pkg-plist b/databases/libgnomedb/pkg-plist
index 30374d5c4..22e892b3e 100644
--- a/databases/libgnomedb/pkg-plist
+++ b/databases/libgnomedb/pkg-plist
@@ -1,113 +1,118 @@
bin/gnome-database-properties
-include/libgnomedb/gnome-db-browser.h
-include/libgnomedb/gnome-db-combo.h
-include/libgnomedb/gnome-db-config.h
-include/libgnomedb/gnome-db-connection-properties.h
-include/libgnomedb/gnome-db-connection-selector.h
-include/libgnomedb/gnome-db-control-widget.h
-include/libgnomedb/gnome-db-control.h
-include/libgnomedb/gnome-db-data-source-selector.h
-include/libgnomedb/gnome-db-dsn-config-druid.h
-include/libgnomedb/gnome-db-dsn-config.h
-include/libgnomedb/gnome-db-editor.h
-include/libgnomedb/gnome-db-error-dialog.h
-include/libgnomedb/gnome-db-error.h
-include/libgnomedb/gnome-db-find-dialog.h
-include/libgnomedb/gnome-db-form.h
-include/libgnomedb/gnome-db-gray-bar.h
-include/libgnomedb/gnome-db-grid.h
-include/libgnomedb/gnome-db-i18n.h
-include/libgnomedb/gnome-db-icon-list.h
-include/libgnomedb/gnome-db-list.h
-include/libgnomedb/gnome-db-login-dialog.h
-include/libgnomedb/gnome-db-login.h
-include/libgnomedb/gnome-db-model.h
-include/libgnomedb/gnome-db-provider-selector.h
-include/libgnomedb/gnome-db-query-builder.h
-include/libgnomedb/gnome-db-report-editor.h
-include/libgnomedb/gnome-db-stock.h
-include/libgnomedb/gnome-db-table-editor.h
-include/libgnomedb/gnome-db-util.h
-include/libgnomedb/libgnomedb.h
+include/libgnomedb-1.1/libgnomedb/gnome-db-browser.h
+include/libgnomedb-1.1/libgnomedb/gnome-db-combo.h
+include/libgnomedb-1.1/libgnomedb/gnome-db-config.h
+include/libgnomedb-1.1/libgnomedb/gnome-db-connection-properties.h
+include/libgnomedb-1.1/libgnomedb/gnome-db-connection-selector.h
+include/libgnomedb-1.1/libgnomedb/gnome-db-control-widget.h
+include/libgnomedb-1.1/libgnomedb/gnome-db-control.h
+include/libgnomedb-1.1/libgnomedb/gnome-db-data-source-selector.h
+include/libgnomedb-1.1/libgnomedb/gnome-db-dsn-config-druid.h
+include/libgnomedb-1.1/libgnomedb/gnome-db-dsn-config.h
+include/libgnomedb-1.1/libgnomedb/gnome-db-editor.h
+include/libgnomedb-1.1/libgnomedb/gnome-db-error-dialog.h
+include/libgnomedb-1.1/libgnomedb/gnome-db-error.h
+include/libgnomedb-1.1/libgnomedb/gnome-db-find-dialog.h
+include/libgnomedb-1.1/libgnomedb/gnome-db-form.h
+include/libgnomedb-1.1/libgnomedb/gnome-db-gray-bar.h
+include/libgnomedb-1.1/libgnomedb/gnome-db-grid.h
+include/libgnomedb-1.1/libgnomedb/gnome-db-i18n.h
+include/libgnomedb-1.1/libgnomedb/gnome-db-icon-list.h
+include/libgnomedb-1.1/libgnomedb/gnome-db-list.h
+include/libgnomedb-1.1/libgnomedb/gnome-db-login-dialog.h
+include/libgnomedb-1.1/libgnomedb/gnome-db-login.h
+include/libgnomedb-1.1/libgnomedb/gnome-db-model.h
+include/libgnomedb-1.1/libgnomedb/gnome-db-provider-selector.h
+include/libgnomedb-1.1/libgnomedb/gnome-db-query-builder.h
+include/libgnomedb-1.1/libgnomedb/gnome-db-report-editor.h
+include/libgnomedb-1.1/libgnomedb/gnome-db-stock.h
+include/libgnomedb-1.1/libgnomedb/gnome-db-table-editor.h
+include/libgnomedb-1.1/libgnomedb/gnome-db-util.h
+include/libgnomedb-1.1/libgnomedb/libgnomedb.h
lib/libglade/2.0/libgnomedb.so
lib/libgnomedb-2.a
lib/libgnomedb-2.so
-lib/libgnomedb-2.so.4
+lib/libgnomedb-2.so.2
libdata/pkgconfig/libgnomedb.pc
-%%DOCSDIR%%/fdl-section1.html
-%%DOCSDIR%%/fdl-section10.html
-%%DOCSDIR%%/fdl-section2.html
-%%DOCSDIR%%/fdl-section3.html
-%%DOCSDIR%%/fdl-section4.html
-%%DOCSDIR%%/fdl-section5.html
-%%DOCSDIR%%/fdl-section6.html
-%%DOCSDIR%%/fdl-section7.html
-%%DOCSDIR%%/fdl-section8.html
-%%DOCSDIR%%/fdl-section9.html
-%%DOCSDIR%%/fdl-using.html
-%%DOCSDIR%%/fdl.html
-%%DOCSDIR%%/index.html
-%%DOCSDIR%%/index.sgml
-%%DOCSDIR%%/libgnomedb-GnomeDbBrowser.html
-%%DOCSDIR%%/libgnomedb-GnomeDbCombo.html
-%%DOCSDIR%%/libgnomedb-GnomeDbConnectionProperties.html
-%%DOCSDIR%%/libgnomedb-GnomeDbConnectionSelector.html
-%%DOCSDIR%%/libgnomedb-GnomeDbControl.html
-%%DOCSDIR%%/libgnomedb-GnomeDbControlWidget.html
-%%DOCSDIR%%/libgnomedb-GnomeDbDataSourceSelector.html
-%%DOCSDIR%%/libgnomedb-GnomeDbDsnConfig.html
-%%DOCSDIR%%/libgnomedb-GnomeDbDsnConfigDruid.html
-%%DOCSDIR%%/libgnomedb-GnomeDbEditor.html
-%%DOCSDIR%%/libgnomedb-GnomeDbError.html
-%%DOCSDIR%%/libgnomedb-GnomeDbErrorDialog.html
-%%DOCSDIR%%/libgnomedb-GnomeDbFindDialog.html
-%%DOCSDIR%%/libgnomedb-GnomeDbForm.html
-%%DOCSDIR%%/libgnomedb-GnomeDbGrayBar.html
-%%DOCSDIR%%/libgnomedb-GnomeDbGrid.html
-%%DOCSDIR%%/libgnomedb-GnomeDbIconList.html
-%%DOCSDIR%%/libgnomedb-GnomeDbList.html
-%%DOCSDIR%%/libgnomedb-GnomeDbLogin.html
-%%DOCSDIR%%/libgnomedb-GnomeDbLoginDialog.html
-%%DOCSDIR%%/libgnomedb-GnomeDbProviderSelector.html
-%%DOCSDIR%%/libgnomedb-GnomeDbQueryBuilder.html
-%%DOCSDIR%%/libgnomedb-GnomeDbReportEditor.html
-%%DOCSDIR%%/libgnomedb-GnomeDbTableEditor.html
-%%DOCSDIR%%/libgnomedb-GnomeDbWindow.html
-%%DOCSDIR%%/libgnomedb-basic.html
-%%DOCSDIR%%/libgnomedb-bonobo.html
-%%DOCSDIR%%/libgnomedb-gnome-db-config.html
-%%DOCSDIR%%/libgnomedb-gnome-db-model.html
-%%DOCSDIR%%/libgnomedb-gnome-db-stock.html
-%%DOCSDIR%%/libgnomedb-gnome-db-util.html
-%%DOCSDIR%%/libgnomedb-gnomedbbrowser.html
-%%DOCSDIR%%/libgnomedb-gnomedbcombo.html
-%%DOCSDIR%%/libgnomedb-gnomedbconnectionproperties.html
-%%DOCSDIR%%/libgnomedb-gnomedbconnectionselector.html
-%%DOCSDIR%%/libgnomedb-gnomedbcontrol.html
-%%DOCSDIR%%/libgnomedb-gnomedbcontrolwidget.html
-%%DOCSDIR%%/libgnomedb-gnomedbdatasourceselector.html
-%%DOCSDIR%%/libgnomedb-gnomedbdsnconfig.html
-%%DOCSDIR%%/libgnomedb-gnomedbdsnconfigdruid.html
-%%DOCSDIR%%/libgnomedb-gnomedbeditor.html
-%%DOCSDIR%%/libgnomedb-gnomedberror.html
-%%DOCSDIR%%/libgnomedb-gnomedberrordialog.html
-%%DOCSDIR%%/libgnomedb-gnomedbform.html
-%%DOCSDIR%%/libgnomedb-gnomedbgraybar.html
-%%DOCSDIR%%/libgnomedb-gnomedbgrid.html
-%%DOCSDIR%%/libgnomedb-gnomedbiconlist.html
-%%DOCSDIR%%/libgnomedb-gnomedblist.html
-%%DOCSDIR%%/libgnomedb-gnomedblogin.html
-%%DOCSDIR%%/libgnomedb-gnomedblogindialog.html
-%%DOCSDIR%%/libgnomedb-gnomedbproviderselector.html
-%%DOCSDIR%%/libgnomedb-gnomedbquerybuilder.html
-%%DOCSDIR%%/libgnomedb-gnomedbreporteditor.html
-%%DOCSDIR%%/libgnomedb-gnomedbtableeditor.html
-%%DOCSDIR%%/libgnomedb-gnomedbwindow.html
-%%DOCSDIR%%/libgnomedb-introduction.html
-%%DOCSDIR%%/libgnomedb-libgnomedb.html
-%%DOCSDIR%%/libgnomedb-widgets.html
share/gnome/control-center-2.0/capplets/database-properties.desktop
share/gnome/gnome-db/ui/db-shell.xml
+share/gnome/gtk-doc/html/libgnomedb/fdl-section1.html
+share/gnome/gtk-doc/html/libgnomedb/fdl-section10.html
+share/gnome/gtk-doc/html/libgnomedb/fdl-section2.html
+share/gnome/gtk-doc/html/libgnomedb/fdl-section3.html
+share/gnome/gtk-doc/html/libgnomedb/fdl-section4.html
+share/gnome/gtk-doc/html/libgnomedb/fdl-section5.html
+share/gnome/gtk-doc/html/libgnomedb/fdl-section6.html
+share/gnome/gtk-doc/html/libgnomedb/fdl-section7.html
+share/gnome/gtk-doc/html/libgnomedb/fdl-section8.html
+share/gnome/gtk-doc/html/libgnomedb/fdl-section9.html
+share/gnome/gtk-doc/html/libgnomedb/fdl-using.html
+share/gnome/gtk-doc/html/libgnomedb/fdl.html
+share/gnome/gtk-doc/html/libgnomedb/home.png
+share/gnome/gtk-doc/html/libgnomedb/index.html
+share/gnome/gtk-doc/html/libgnomedb/index.sgml
+share/gnome/gtk-doc/html/libgnomedb/left.png
+share/gnome/gtk-doc/html/libgnomedb/libgnomedb-GnomeDbBrowser.html
+share/gnome/gtk-doc/html/libgnomedb/libgnomedb-GnomeDbCombo.html
+share/gnome/gtk-doc/html/libgnomedb/libgnomedb-GnomeDbConnectionProperties.html
+share/gnome/gtk-doc/html/libgnomedb/libgnomedb-GnomeDbConnectionSelector.html
+share/gnome/gtk-doc/html/libgnomedb/libgnomedb-GnomeDbControl.html
+share/gnome/gtk-doc/html/libgnomedb/libgnomedb-GnomeDbControlWidget.html
+share/gnome/gtk-doc/html/libgnomedb/libgnomedb-GnomeDbDataSourceSelector.html
+share/gnome/gtk-doc/html/libgnomedb/libgnomedb-GnomeDbDsnConfig.html
+share/gnome/gtk-doc/html/libgnomedb/libgnomedb-GnomeDbDsnConfigDruid.html
+share/gnome/gtk-doc/html/libgnomedb/libgnomedb-GnomeDbEditor.html
+share/gnome/gtk-doc/html/libgnomedb/libgnomedb-GnomeDbError.html
+share/gnome/gtk-doc/html/libgnomedb/libgnomedb-GnomeDbErrorDialog.html
+share/gnome/gtk-doc/html/libgnomedb/libgnomedb-GnomeDbFindDialog.html
+share/gnome/gtk-doc/html/libgnomedb/libgnomedb-GnomeDbForm.html
+share/gnome/gtk-doc/html/libgnomedb/libgnomedb-GnomeDbGrayBar.html
+share/gnome/gtk-doc/html/libgnomedb/libgnomedb-GnomeDbGrid.html
+share/gnome/gtk-doc/html/libgnomedb/libgnomedb-GnomeDbIconList.html
+share/gnome/gtk-doc/html/libgnomedb/libgnomedb-GnomeDbList.html
+share/gnome/gtk-doc/html/libgnomedb/libgnomedb-GnomeDbLogin.html
+share/gnome/gtk-doc/html/libgnomedb/libgnomedb-GnomeDbLoginDialog.html
+share/gnome/gtk-doc/html/libgnomedb/libgnomedb-GnomeDbProviderSelector.html
+share/gnome/gtk-doc/html/libgnomedb/libgnomedb-GnomeDbQueryBuilder.html
+share/gnome/gtk-doc/html/libgnomedb/libgnomedb-GnomeDbReportEditor.html
+share/gnome/gtk-doc/html/libgnomedb/libgnomedb-GnomeDbTableEditor.html
+share/gnome/gtk-doc/html/libgnomedb/libgnomedb-GnomeDbWindow.html
+share/gnome/gtk-doc/html/libgnomedb/libgnomedb-basic.html
+share/gnome/gtk-doc/html/libgnomedb/libgnomedb-bonobo.html
+share/gnome/gtk-doc/html/libgnomedb/libgnomedb-gnome-db-config.html
+share/gnome/gtk-doc/html/libgnomedb/libgnomedb-gnome-db-model.html
+share/gnome/gtk-doc/html/libgnomedb/libgnomedb-gnome-db-stock.html
+share/gnome/gtk-doc/html/libgnomedb/libgnomedb-gnome-db-util.html
+share/gnome/gtk-doc/html/libgnomedb/libgnomedb-gnomedbbrowser.html
+share/gnome/gtk-doc/html/libgnomedb/libgnomedb-gnomedbcombo.html
+share/gnome/gtk-doc/html/libgnomedb/libgnomedb-gnomedbconnectionproperties.html
+share/gnome/gtk-doc/html/libgnomedb/libgnomedb-gnomedbconnectionselector.html
+share/gnome/gtk-doc/html/libgnomedb/libgnomedb-gnomedbcontrol.html
+share/gnome/gtk-doc/html/libgnomedb/libgnomedb-gnomedbcontrolwidget.html
+share/gnome/gtk-doc/html/libgnomedb/libgnomedb-gnomedbdatasourceselector.html
+share/gnome/gtk-doc/html/libgnomedb/libgnomedb-gnomedbdsnconfig.html
+share/gnome/gtk-doc/html/libgnomedb/libgnomedb-gnomedbdsnconfigdruid.html
+share/gnome/gtk-doc/html/libgnomedb/libgnomedb-gnomedbeditor.html
+share/gnome/gtk-doc/html/libgnomedb/libgnomedb-gnomedberror.html
+share/gnome/gtk-doc/html/libgnomedb/libgnomedb-gnomedberrordialog.html
+share/gnome/gtk-doc/html/libgnomedb/libgnomedb-gnomedbform.html
+share/gnome/gtk-doc/html/libgnomedb/libgnomedb-gnomedbgraybar.html
+share/gnome/gtk-doc/html/libgnomedb/libgnomedb-gnomedbgrid.html
+share/gnome/gtk-doc/html/libgnomedb/libgnomedb-gnomedbiconlist.html
+share/gnome/gtk-doc/html/libgnomedb/libgnomedb-gnomedblist.html
+share/gnome/gtk-doc/html/libgnomedb/libgnomedb-gnomedblogin.html
+share/gnome/gtk-doc/html/libgnomedb/libgnomedb-gnomedblogindialog.html
+share/gnome/gtk-doc/html/libgnomedb/libgnomedb-gnomedbproviderselector.html
+share/gnome/gtk-doc/html/libgnomedb/libgnomedb-gnomedbquerybuilder.html
+share/gnome/gtk-doc/html/libgnomedb/libgnomedb-gnomedbreporteditor.html
+share/gnome/gtk-doc/html/libgnomedb/libgnomedb-gnomedbtableeditor.html
+share/gnome/gtk-doc/html/libgnomedb/libgnomedb-gnomedbwindow.html
+share/gnome/gtk-doc/html/libgnomedb/libgnomedb-introduction.html
+share/gnome/gtk-doc/html/libgnomedb/libgnomedb-libgnomedb.html
+share/gnome/gtk-doc/html/libgnomedb/libgnomedb-widgets.html
+share/gnome/gtk-doc/html/libgnomedb/libgnomedb.devhelp
+share/gnome/gtk-doc/html/libgnomedb/right.png
+share/gnome/gtk-doc/html/libgnomedb/up.png
share/gnome/mime-info/libgnomedb.keys
share/gnome/mime-info/libgnomedb.mime
share/gnome/omf/libgnomedb/libgnomedb-C.omf
@@ -167,6 +172,7 @@ share/locale/ja/LC_MESSAGES/libgnomedb-2.mo
share/locale/ko/LC_MESSAGES/libgnomedb-2.mo
share/locale/ml/LC_MESSAGES/libgnomedb-2.mo
share/locale/ms/LC_MESSAGES/libgnomedb-2.mo
+share/locale/nb/LC_MESSAGES/libgnomedb-2.mo
share/locale/nl/LC_MESSAGES/libgnomedb-2.mo
share/locale/no/LC_MESSAGES/libgnomedb-2.mo
share/locale/pl/LC_MESSAGES/libgnomedb-2.mo
@@ -175,6 +181,7 @@ share/locale/pt_BR/LC_MESSAGES/libgnomedb-2.mo
share/locale/ru/LC_MESSAGES/libgnomedb-2.mo
share/locale/sk/LC_MESSAGES/libgnomedb-2.mo
share/locale/sl/LC_MESSAGES/libgnomedb-2.mo
+share/locale/sq/LC_MESSAGES/libgnomedb-2.mo
share/locale/sr/LC_MESSAGES/libgnomedb-2.mo
share/locale/sr@Latn/LC_MESSAGES/libgnomedb-2.mo
share/locale/sv/LC_MESSAGES/libgnomedb-2.mo
@@ -186,8 +193,9 @@ share/locale/zh_CN/LC_MESSAGES/libgnomedb-2.mo
share/locale/zh_TW/LC_MESSAGES/libgnomedb-2.mo
@dirrm share/gnome/pixmaps/libgnomedb
@dirrm share/gnome/omf/libgnomedb
+@dirrm share/gnome/gtk-doc/html/libgnomedb
@dirrm share/gnome/gnome-db/ui
@dirrm share/gnome/gnome-db
-@dirrm %%DOCSDIR%%
-@dirrm include/libgnomedb
+@dirrm include/libgnomedb-1.1/libgnomedb
+@dirrm include/libgnomedb-1.1
@unexec scrollkeeper-uninstall -q %D/share/gnome/omf/libgnomedb/libgnomedb-C.omf 2>/dev/null || /usr/bin/true