summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorkwm <kwm@df743ca5-7f9a-e211-a948-0013205c9059>2008-02-05 21:20:02 +0800
committerkwm <kwm@df743ca5-7f9a-e211-a948-0013205c9059>2008-02-05 21:20:02 +0800
commitbd93274b02d9e9c2ecbc311bb671b2ce401a46b9 (patch)
tree72a884a9ca10e8e590a570703d010b169a350a4e
parentec269cc21443b17a1ad530732f2353cf92a0958c (diff)
downloadmarcuscom-ports-bd93274b02d9e9c2ecbc311bb671b2ce401a46b9.tar
marcuscom-ports-bd93274b02d9e9c2ecbc311bb671b2ce401a46b9.tar.gz
marcuscom-ports-bd93274b02d9e9c2ecbc311bb671b2ce401a46b9.tar.bz2
marcuscom-ports-bd93274b02d9e9c2ecbc311bb671b2ce401a46b9.tar.lz
marcuscom-ports-bd93274b02d9e9c2ecbc311bb671b2ce401a46b9.tar.xz
marcuscom-ports-bd93274b02d9e9c2ecbc311bb671b2ce401a46b9.tar.zst
marcuscom-ports-bd93274b02d9e9c2ecbc311bb671b2ce401a46b9.zip
Add libgda2.
Only diffence with the one from the FreeBSD repo is it doesn't conflict with libgda3 anymore. By chance this fixes the conflict with libgda(1). Which got overwriten by the libgda3 conflict. git-svn-id: svn://creme-brulee.marcuscom.com/ports/trunk@10352 df743ca5-7f9a-e211-a948-0013205c9059
-rw-r--r--databases/libgda2/Makefile196
-rw-r--r--databases/libgda2/distinfo3
-rw-r--r--databases/libgda2/files/patch-aa10
-rw-r--r--databases/libgda2/files/patch-configure11
-rw-r--r--databases/libgda2/files/patch-doc::libgda-C.omf.in11
-rw-r--r--databases/libgda2/files/patch-doc_C_Makefile.in11
-rw-r--r--databases/libgda2/files/patch-libgda.pc.in11
-rw-r--r--databases/libgda2/files/patch-po_Makefile.in.in10
-rw-r--r--databases/libgda2/files/patch-providers_freetds_0.6444
-rw-r--r--databases/libgda2/files/patch-providers_mdb_gda-mdb-provider.c11
-rw-r--r--databases/libgda2/files/patch-providers_mysql_gda-mysql-recordset.c11
-rw-r--r--databases/libgda2/files/patch-providers_postgres_utils.c11
-rw-r--r--databases/libgda2/files/patch-tools_gda-config-tool.c11
-rw-r--r--databases/libgda2/pkg-descr19
-rw-r--r--databases/libgda2/pkg-plist164
15 files changed, 534 insertions, 0 deletions
diff --git a/databases/libgda2/Makefile b/databases/libgda2/Makefile
new file mode 100644
index 000000000..1e081d7ac
--- /dev/null
+++ b/databases/libgda2/Makefile
@@ -0,0 +1,196 @@
+# New ports collection makefile for: libgda2
+# Date created: 02 June 2002
+# Whom: Joe Marcus Clarke <marcus@FreeBSD.org>
+#
+# $FreeBSD: ports/databases/libgda2/Makefile,v 1.81 2007/10/24 23:35:18 marcus Exp $
+# $MCom: ports/databases/libgda2/Makefile,v 1.41 2007/10/21 03:13:52 mezz Exp $
+#
+
+PORTNAME= libgda2
+PORTVERSION= 1.2.4
+PORTREVISION?= 3
+PORTEPOCH?= 1
+CATEGORIES= databases gnome
+MASTER_SITES= ${MASTER_SITE_GNOME}
+MASTER_SITE_SUBDIR= sources/${PORTNAME:S/2$//}/1.2
+DISTNAME= libgda-${PORTVERSION}
+DIST_SUBDIR= gnome2
+
+MAINTAINER= gnome@FreeBSD.org
+COMMENT= Provides uniform access to different kinds of data sources
+
+USE_BZIP2= yes
+
+.if !defined(REFERENCE_PORT)
+
+LIB_DEPENDS= popt.0:${PORTSDIR}/devel/popt \
+ rarian.0:${PORTSDIR}/textproc/rarian
+
+CONFLICTS= libgda-0*
+
+USE_GMAKE= yes
+USE_GNOME= gnomeprefix gnomehack glib20 libxslt referencehack intlhack
+USE_GETTEXT= yes
+USE_XLIB= yes
+INSTALLS_OMF= yes
+USE_LDCONFIG= yes
+GNU_CONFIGURE= yes
+CONFIGURE_ARGS= --without-bdb
+CONFIGURE_ENV= CPPFLAGS="-I${LOCALBASE}/include" \
+ LIBS="-L${LOCALBASE}/lib -lintl"
+
+MAN1= gda-config-tool.1
+MAN5= gda-config.5
+
+PLIST_SUB= VERSION=${PORTVERSION:R}
+
+post-patch:
+ @${REINPLACE_CMD} -e "/^SUBDIRS =/s/testing//" \
+ ${WRKSRC}/Makefile.in
+
+.include <bsd.port.pre.mk>
+
+.if exists(${LOCALBASE}/lib/mysql/libmysqlclient.so)
+WITH_MYSQL= yes
+.endif
+
+.if exists(${LOCALBASE}/lib/libldap.so)
+WITH_LDAP=yes
+.endif
+
+.if exists(${LOCALBASE}/lib/libgds.so.1)
+WITH_FIREBIRD= yes
+.elif exists(${LOCALBASE}/lib/libgds.so.2)
+WITHOUT_FIREBIRD=yes
+.endif
+
+.if exists(${LOCALBASE}/lib/libtds.so)
+WITH_FREETDS= yes
+.endif
+
+.if exists(${LOCALBASE}/lib/libsybdb.so)
+WITH_SYBASE= yes
+.endif
+
+.if exists(${LOCALBASE}/lib/libmdbsql.so)
+WITH_MDB= yes
+.endif
+
+.if exists(${LOCALBASE}/lib/libODBC.so)
+WITH_ODBC= yes
+.endif
+
+.if exists(${LOCALBASE}/lib/libsqlite3.so)
+WITH_SQLITE= yes
+.endif
+
+.if !defined(WITH_MYSQL)
+PLIST_SUB+= MYSQL:="@comment "
+CONFIGURE_ARGS+= --without-mysql
+.else
+USE_MYSQL= yes
+CONFIGURE_ARGS+= --with-mysql=${LOCALBASE}
+PLIST_SUB+= MYSQL:=""
+.endif
+
+.if !defined(WITHOUT_PGSQL) && defined(WITH_PGSQL)
+USE_PGSQL= yes
+CONFIGURE_ARGS+= --with-postgres=${LOCALBASE}
+PLIST_SUB+= POSTGRES:=""
+.else
+PLIST_SUB+= POSTGRES:="@comment "
+CONFIGURE_ARGS+= --without-postgres
+.endif
+
+.if !defined(WITHOUT_LDAP) && defined(WITH_LDAP)
+USE_OPENLDAP= yes
+CONFIGURE_ARGS+= --with-ldap=${LOCALBASE}
+PLIST_SUB+= LDAP:=""
+.else
+CONFIGURE_ARGS+= --without-ldap
+PLIST_SUB+= LDAP:="@comment "
+.endif
+
+.if !defined(WITHOUT_FIREBIRD) && defined(WITH_FIREBIRD)
+LIB_DEPENDS+= gds.1:${PORTSDIR}/databases/firebird-client
+CONFIGURE_ARGS+= --with-firebird=${LOCALBASE}
+PLIST_SUB+= FIREBIRD:=""
+.else
+CONFIGURE_ARGS+= --without-firebird
+PLIST_SUB+= FIREBIRD:="@comment "
+.endif
+
+.if !defined(WITHOUT_FREETDS) && defined(WITH_FREETDS)
+LIB_DEPENDS+= tds.5:${PORTSDIR}/databases/freetds
+CONFIGURE_ARGS+= --with-tds=${LOCALBASE}
+PLIST_SUB+= FREETDS:=""
+.else
+CONFIGURE_ARGS+= --without-tds
+PLIST_SUB+= FREETDS:="@comment "
+.endif
+
+.if !defined(WITHOUT_SYBASE) && defined(WITH_SYBASE)
+LIB_DEPENDS+= sybdb.5:${PORTSDIR}/databases/freetds
+CONFIGURE_ARGS+= --with-sybase=${LOCALBASE}
+PLIST_SUB+= SYBASE:=""
+.else
+CONFIGURE_ARGS+= --without-sybase
+PLIST_SUB+= SYBASE:="@comment "
+.endif
+
+.if !defined(WITHOUT_MDB) && defined(WITH_MDB)
+LIB_DEPENDS+= mdbsql.0:${PORTSDIR}/databases/mdbtools
+CONFIGURE_ARGS+= --with-mdb=${LOCALBASE}
+PLIST_SUB+= MDB:=""
+.else
+CONFIGURE_ARGS+= --without-mdb
+PLIST_SUB+= MDB:="@comment "
+.endif
+
+.if !defined(WITHOUT_ODBC) && defined(WITH_ODBC)
+LIB_DEPENDS+= odbc.1:${PORTSDIR}/databases/unixODBC
+CONFIGURE_ARGS+= --with-odbc=${LOCALBASE}
+PLIST_SUB+= ODBC:=""
+.else
+CONFIGURE_ARGS+= --without-odbc
+PLIST_SUB+= ODBC:="@comment "
+.endif
+
+.if !defined(WITHOUT_SQLITE) && defined(WITH_SQLITE)
+LIB_DEPENDS+= sqlite3.8:${PORTSDIR}/databases/sqlite3
+CONFIGURE_ARGS+= --with-sqlite=${LOCALBASE}
+PLIST_SUB+= SQLITE:=""
+.else
+CONFIGURE_ARGS+= --without-sqlite
+PLIST_SUB+= SQLITE:="@comment "
+.endif
+
+pre-everything::
+.if !defined(WITH_MYSQL)
+ @${ECHO_MSG} "You can enable support for MySQL databases by defining WITH_MYSQL."
+.endif
+.if !defined(WITH_LDAP)
+ @${ECHO_MSG} "You can enable support for LDAP databases by defining WITH_LDAP."
+.endif
+.if !defined(WITH_FIREBIRD)
+ @${ECHO_MSG} "You can enable support for FireBird databases by defining WITH_FIREBIRD."
+.endif
+.if !defined(WITH_FREETDS)
+ @${ECHO_MSG} "You can enable support for TDS databases by defining WITH_FREETDS."
+.endif
+.if !defined(WITH_SYBASE)
+ @${ECHO_MSG} "You can enable support for Sybase databases by defining WITH_SYBASE."
+.endif
+.if !defined(WITH_MDB)
+ @${ECHO_MSG} "You can enable support for MDB databases by defining WITH_MDB."
+.endif
+.if !defined(WITH_ODBC)
+ @${ECHO_MSG} "You can enable support for ODBC databases by defining WITH_ODBC."
+.endif
+.if !defined(WITH_SQLITE)
+ @${ECHO_MSG} "You can enable support for SQLITE databases by defining WITH_SQLITE."
+.endif
+
+.include <bsd.port.post.mk>
+
+.endif
diff --git a/databases/libgda2/distinfo b/databases/libgda2/distinfo
new file mode 100644
index 000000000..b52f77e14
--- /dev/null
+++ b/databases/libgda2/distinfo
@@ -0,0 +1,3 @@
+MD5 (gnome2/libgda-1.2.4.tar.bz2) = 512a8ed842ce98eb432e69bd6867f437
+SHA256 (gnome2/libgda-1.2.4.tar.bz2) = d5e700203764e3f8d9ab3573a9b1b0e218778022c7956cf719fa0500b3027930
+SIZE (gnome2/libgda-1.2.4.tar.bz2) = 1087076
diff --git a/databases/libgda2/files/patch-aa b/databases/libgda2/files/patch-aa
new file mode 100644
index 000000000..3b1f99251
--- /dev/null
+++ b/databases/libgda2/files/patch-aa
@@ -0,0 +1,10 @@
+--- Makefile.in.orig Fri Jan 16 23:06:50 2004
++++ Makefile.in Fri Jan 16 23:07:18 2004
+@@ -276,7 +276,6 @@
+ providers \
+ report \
+ tools \
+- testing \
+ data \
+ doc
+
diff --git a/databases/libgda2/files/patch-configure b/databases/libgda2/files/patch-configure
new file mode 100644
index 000000000..8df5044bb
--- /dev/null
+++ b/databases/libgda2/files/patch-configure
@@ -0,0 +1,11 @@
+--- configure.orig Tue Apr 6 14:10:07 2004
++++ configure Tue Apr 6 14:10:19 2004
+@@ -23012,7 +23012,7 @@
+ _ACEOF
+
+ FIREBIRD_CFLAGS="-I${firebirddir}/include"
+- FIREBIRD_LIBS="-L${firebirddir}/lib -lgds -ldl -lcrypt"
++ FIREBIRD_LIBS="-L${firebirddir}/lib -lgds -lcrypt"
+ fi
+ fi
+
diff --git a/databases/libgda2/files/patch-doc::libgda-C.omf.in b/databases/libgda2/files/patch-doc::libgda-C.omf.in
new file mode 100644
index 000000000..f98b540c5
--- /dev/null
+++ b/databases/libgda2/files/patch-doc::libgda-C.omf.in
@@ -0,0 +1,11 @@
+--- doc/libgda-C.omf.in.orig Mon Feb 28 05:30:59 2005
++++ doc/libgda-C.omf.in Thu Mar 3 14:07:24 2005
+@@ -16,7 +16,7 @@
+ </description>
+ <type>user's guide</type>
+ <format mime="text/html"/>
+- <identifier url="file:@prefix@/share/gtk-doc/html/libgda/index.html"/>
++ <identifier url="file:@prefix@/share/doc/libgda/index.html"/>
+ <language code="C"/>
+ <relation seriesid="ebe4f574-a94d-11d6-8bc3-bd1f202a92f8"/>
+ <rights type="GNU FDL" license.version="1.1"/>
diff --git a/databases/libgda2/files/patch-doc_C_Makefile.in b/databases/libgda2/files/patch-doc_C_Makefile.in
new file mode 100644
index 000000000..ef37c3190
--- /dev/null
+++ b/databases/libgda2/files/patch-doc_C_Makefile.in
@@ -0,0 +1,11 @@
+--- doc/C/Makefile.in.orig Thu Jul 22 10:35:19 2004
++++ doc/C/Makefile.in Thu Jul 22 10:35:48 2004
+@@ -116,7 +116,7 @@
+ HISTORY_LIB = @HISTORY_LIB@
+ HISTORY_LIB_FALSE = @HISTORY_LIB_FALSE@
+ HISTORY_LIB_TRUE = @HISTORY_LIB_TRUE@
+-HTML_DIR = $(datadir)/gtk-doc/html
++HTML_DIR = $(prefix)/share/doc
+ IBMDB2_CFLAGS = @IBMDB2_CFLAGS@
+ IBMDB2_FALSE = @IBMDB2_FALSE@
+ IBMDB2_LIBS = @IBMDB2_LIBS@
diff --git a/databases/libgda2/files/patch-libgda.pc.in b/databases/libgda2/files/patch-libgda.pc.in
new file mode 100644
index 000000000..f9bd3aaed
--- /dev/null
+++ b/databases/libgda2/files/patch-libgda.pc.in
@@ -0,0 +1,11 @@
+--- libgda.pc.in.orig Fri Oct 31 21:59:33 2003
++++ libgda.pc.in Fri Oct 31 22:00:52 2003
+@@ -5,7 +5,7 @@
+
+ Name: libgda
+ Description: GDA (GNOME Data Access) library
+-Requires: glib-2.0 libxml-2.0 libxslt
++Requires: glib-2.0 gthread-2.0 gmodule-2.0 libxml-2.0 libxslt
+ Version: @VERSION@
+ Libs: -L${libdir} -lgda-2
+ Cflags: -I${includedir}
diff --git a/databases/libgda2/files/patch-po_Makefile.in.in b/databases/libgda2/files/patch-po_Makefile.in.in
new file mode 100644
index 000000000..1e6984b6b
--- /dev/null
+++ b/databases/libgda2/files/patch-po_Makefile.in.in
@@ -0,0 +1,10 @@
+--- po/Makefile.in.in.orig Sat Aug 14 00:43:46 2004
++++ po/Makefile.in.in Sat Aug 14 00:45:54 2004
+@@ -35,6 +35,7 @@
+
+ INSTALL = @INSTALL@
+ INSTALL_DATA = @INSTALL_DATA@
++mkinstalldirs = $(SHELL) $(top_srcdir)/mkinstalldirs
+
+ CC = @CC@
+ GENCAT = @GENCAT@
diff --git a/databases/libgda2/files/patch-providers_freetds_0.64 b/databases/libgda2/files/patch-providers_freetds_0.64
new file mode 100644
index 000000000..4ee9c151e
--- /dev/null
+++ b/databases/libgda2/files/patch-providers_freetds_0.64
@@ -0,0 +1,44 @@
+--- providers/freetds/gda-freetds-provider.c.orig Tue Jan 9 18:50:54 2007
++++ providers/freetds/gda-freetds-provider.c Wed Mar 7 17:10:38 2007
+@@ -253,7 +253,7 @@
+
+ /* Version 0.60 api uses context additionaly */
+ #if defined(HAVE_FREETDS_VER0_6X) || defined(HAVE_FREETDS_VER0_60)
+- tds_cnc->ctx = tds_alloc_context();
++ tds_cnc->ctx = tds_alloc_context(NULL);
+ if (! tds_cnc->ctx) {
+ gda_log_error (_("Allocating tds context failed."));
+ gda_freetds_free_connection_data (tds_cnc);
+@@ -1062,9 +1062,9 @@
+ TDS_SUCCEED);
+
+ msg = g_strdup_printf(_("Msg %d, Level %d, State %d, Server %s, Line %d\n%s\n"),
+- msg_info->msg_number,
+- msg_info->msg_level,
+- msg_info->msg_state,
++ msg_info->msgno,
++ msg_info->severity,
++ msg_info->state,
+ (msg_info->server ? msg_info->server : ""),
+ msg_info->line_number,
+ msg_info->message ? msg_info->message : "");
+@@ -1074,7 +1074,7 @@
+ if (cnc != NULL) {
+ error = gda_error_new ();
+ gda_error_set_description (error, msg);
+- gda_error_set_number (error, msg_info->msg_number);
++ gda_error_set_number (error, msg_info->msgno);
+ gda_error_set_source (error, "gda-freetds");
+ if (msg_info->sql_state != NULL) {
+ gda_error_set_sqlstate (error,
+--- providers/freetds/gda-freetds-recordset.c.orig Mon Mar 12 13:19:31 2007
++++ providers/freetds/gda-freetds-recordset.c Mon Mar 12 13:21:09 2007
+@@ -386,7 +386,7 @@
+ g_object_unref (recset);
+ recset = NULL;
+ return NULL;
+- } else if (tds_cnc->rc != TDS_NO_MORE_ROWS) {
++ } else if (tds_cnc->rc != TDS_NO_MORE_RESULTS) {
+ error = gda_freetds_make_error(tds_cnc->tds,
+ _("Unexpected freetds return code in tds_process_row_tokens().\n"));
+ gda_connection_add_error (cnc, error);
diff --git a/databases/libgda2/files/patch-providers_mdb_gda-mdb-provider.c b/databases/libgda2/files/patch-providers_mdb_gda-mdb-provider.c
new file mode 100644
index 000000000..1d5f2d8e4
--- /dev/null
+++ b/databases/libgda2/files/patch-providers_mdb_gda-mdb-provider.c
@@ -0,0 +1,11 @@
+--- providers/mdb/gda-mdb-provider.c.orig Thu Jan 4 17:14:00 2007
++++ providers/mdb/gda-mdb-provider.c Thu Jan 4 17:14:06 2007
+@@ -209,7 +209,7 @@
+ mdb_cnc = g_new0 (GdaMdbConnection, 1);
+ mdb_cnc->cnc = cnc;
+ mdb_cnc->server_version = NULL;
+- mdb_cnc->mdb = mdb_open (filename, MDB_WRITABLE);
++ mdb_cnc->mdb = mdb_open (filename);
+ if (!mdb_cnc->mdb) {
+ gda_connection_add_error_string (cnc, _("Could not open file %s"), filename);
+ g_free (mdb_cnc);
diff --git a/databases/libgda2/files/patch-providers_mysql_gda-mysql-recordset.c b/databases/libgda2/files/patch-providers_mysql_gda-mysql-recordset.c
new file mode 100644
index 000000000..f75b3284d
--- /dev/null
+++ b/databases/libgda2/files/patch-providers_mysql_gda-mysql-recordset.c
@@ -0,0 +1,11 @@
+--- providers/mysql/gda-mysql-recordset.c.orig Wed May 18 03:10:04 2005
++++ providers/mysql/gda-mysql-recordset.c Tue Jun 14 23:12:25 2005
+@@ -71,7 +71,7 @@ fill_gda_value (GdaValue *gda_value, enu
+ if (is_unsigned) {
+ gda_value_set_biguint (gda_value, strtoull (value, NULL, 0));
+ } else {
+- gda_value_set_bigint (gda_value, atoll (value));
++ gda_value_set_bigint (gda_value, strtoll (value, NULL, 10));
+ }
+ break;
+ case FIELD_TYPE_SHORT :
diff --git a/databases/libgda2/files/patch-providers_postgres_utils.c b/databases/libgda2/files/patch-providers_postgres_utils.c
new file mode 100644
index 000000000..29fe99b98
--- /dev/null
+++ b/databases/libgda2/files/patch-providers_postgres_utils.c
@@ -0,0 +1,11 @@
+--- providers/postgres/utils.c.orig Mon Feb 17 21:43:51 2003
++++ providers/postgres/utils.c Mon Feb 17 21:44:12 2003
+@@ -156,7 +156,7 @@
+ gda_value_set_string (value, thevalue);
+ break;
+ case GDA_VALUE_TYPE_BIGINT :
+- gda_value_set_bigint (value, atoll (thevalue));
++ gda_value_set_bigint (value, strtoll(thevalue, &thevalue, 10));
+ break;
+ case GDA_VALUE_TYPE_INTEGER :
+ gda_value_set_integer (value, atol (thevalue));
diff --git a/databases/libgda2/files/patch-tools_gda-config-tool.c b/databases/libgda2/files/patch-tools_gda-config-tool.c
new file mode 100644
index 000000000..226aeeee7
--- /dev/null
+++ b/databases/libgda2/files/patch-tools_gda-config-tool.c
@@ -0,0 +1,11 @@
+--- tools/gda-config-tool.c.orig Fri Jul 26 16:19:17 2002
++++ tools/gda-config-tool.c Fri Jul 26 16:18:47 2002
+@@ -1136,7 +1136,7 @@
+ static char **
+ completion_func (const gchar *text, int start, int end)
+ {
+- return ((start == 0) ? rl_completion_matches (text, cmd_generator) :
++ return ((start == 0) ? completion_matches (text, cmd_generator) :
+ NULL);
+ }
+
diff --git a/databases/libgda2/pkg-descr b/databases/libgda2/pkg-descr
new file mode 100644
index 000000000..12eb57b5e
--- /dev/null
+++ b/databases/libgda2/pkg-descr
@@ -0,0 +1,19 @@
+GNU Data Access (GDA) is an attempt to provide uniform access to
+different kinds of data sources (databases, information servers,
+mail spools, etc).
+
+It is a complete architecture that provides all you need to access
+your data, defined by a set of CORBA interfaces as generic as possible
+(but very powerful at the same time) so that any kind of data source
+can be accessed through them.
+
+libgda is an interface to the GDA architecture, providing a nice
+wrapper around the CORBA interfaces, for both the client and the server
+parts. It also provides a bunch of tools to help you both in the
+development and management of your data sources, all done through
+the GDA model's set of CORBA interfaces.
+
+libgda was part of the GNOME-DB project, but has been separated from it
+to allow non-GNOME applications to be developed based on it.
+
+WWW: http://www.gnome-db.org/
diff --git a/databases/libgda2/pkg-plist b/databases/libgda2/pkg-plist
new file mode 100644
index 000000000..f014a8593
--- /dev/null
+++ b/databases/libgda2/pkg-plist
@@ -0,0 +1,164 @@
+bin/gda-config-tool
+bin/gda-report-test
+bin/gda-run
+etc/libgda/config
+include/libgda-%%VERSION%%/libgda-report/gda-report-document.h
+include/libgda-%%VERSION%%/libgda-report/gda-report-item-detail.h
+include/libgda-%%VERSION%%/libgda-report/gda-report-item-label.h
+include/libgda-%%VERSION%%/libgda-report/gda-report-item-pagefooter.h
+include/libgda-%%VERSION%%/libgda-report/gda-report-item-pageheader.h
+include/libgda-%%VERSION%%/libgda-report/gda-report-item-repfield.h
+include/libgda-%%VERSION%%/libgda-report/gda-report-item-report.h
+include/libgda-%%VERSION%%/libgda-report/gda-report-item-reportfooter.h
+include/libgda-%%VERSION%%/libgda-report/gda-report-item-reportheader.h
+include/libgda-%%VERSION%%/libgda-report/gda-report-item-sqlquery.h
+include/libgda-%%VERSION%%/libgda-report/gda-report-item.h
+include/libgda-%%VERSION%%/libgda-report/gda-report-result.h
+include/libgda-%%VERSION%%/libgda-report/gda-report-types.h
+include/libgda-%%VERSION%%/libgda-report/gda-report-valid.h
+include/libgda-%%VERSION%%/libgda-report/gda-report.h
+include/libgda-%%VERSION%%/libgda/gda-blob.h
+include/libgda-%%VERSION%%/libgda/gda-client.h
+include/libgda-%%VERSION%%/libgda/gda-command.h
+include/libgda-%%VERSION%%/libgda/gda-config.h
+include/libgda-%%VERSION%%/libgda/gda-connection.h
+include/libgda-%%VERSION%%/libgda/gda-data-model-array.h
+include/libgda-%%VERSION%%/libgda/gda-data-model-hash.h
+include/libgda-%%VERSION%%/libgda/gda-data-model-list.h
+include/libgda-%%VERSION%%/libgda/gda-data-model.h
+include/libgda-%%VERSION%%/libgda/gda-enum-types.h
+include/libgda-%%VERSION%%/libgda/gda-error.h
+include/libgda-%%VERSION%%/libgda/gda-field.h
+include/libgda-%%VERSION%%/libgda/gda-log.h
+include/libgda-%%VERSION%%/libgda/gda-marshal.h
+include/libgda-%%VERSION%%/libgda/gda-parameter.h
+include/libgda-%%VERSION%%/libgda/gda-quark-list.h
+include/libgda-%%VERSION%%/libgda/gda-row.h
+include/libgda-%%VERSION%%/libgda/gda-select.h
+include/libgda-%%VERSION%%/libgda/gda-server-provider.h
+include/libgda-%%VERSION%%/libgda/gda-table.h
+include/libgda-%%VERSION%%/libgda/gda-transaction.h
+include/libgda-%%VERSION%%/libgda/gda-util.h
+include/libgda-%%VERSION%%/libgda/gda-value.h
+include/libgda-%%VERSION%%/libgda/gda-xml-connection.h
+include/libgda-%%VERSION%%/libgda/gda-xml-database.h
+include/libgda-%%VERSION%%/libgda/gda-xml-document.h
+include/libgda-%%VERSION%%/libgda/gda-xql-atom.h
+include/libgda-%%VERSION%%/libgda/gda-xql-bin.h
+include/libgda-%%VERSION%%/libgda/gda-xql-column.h
+include/libgda-%%VERSION%%/libgda/gda-xql-const.h
+include/libgda-%%VERSION%%/libgda/gda-xql-delete.h
+include/libgda-%%VERSION%%/libgda/gda-xql-dml.h
+include/libgda-%%VERSION%%/libgda/gda-xql-dual.h
+include/libgda-%%VERSION%%/libgda/gda-xql-field.h
+include/libgda-%%VERSION%%/libgda/gda-xql-func.h
+include/libgda-%%VERSION%%/libgda/gda-xql-insert.h
+include/libgda-%%VERSION%%/libgda/gda-xql-item.h
+include/libgda-%%VERSION%%/libgda/gda-xql-join.h
+include/libgda-%%VERSION%%/libgda/gda-xql-list.h
+include/libgda-%%VERSION%%/libgda/gda-xql-query.h
+include/libgda-%%VERSION%%/libgda/gda-xql-select.h
+include/libgda-%%VERSION%%/libgda/gda-xql-stack.h
+include/libgda-%%VERSION%%/libgda/gda-xql-target.h
+include/libgda-%%VERSION%%/libgda/gda-xql-update.h
+include/libgda-%%VERSION%%/libgda/gda-xql-utils.h
+include/libgda-%%VERSION%%/libgda/gda-xql-value.h
+include/libgda-%%VERSION%%/libgda/gda-xql-valueref.h
+include/libgda-%%VERSION%%/libgda/libgda.h
+include/libgda-%%VERSION%%/sql/sql_parser.h
+lib/libgda-2.a
+lib/libgda-2.la
+lib/libgda-2.so
+lib/libgda-2.so.3
+lib/libgda-report-2.a
+lib/libgda-report-2.la
+lib/libgda-report-2.so
+lib/libgda-report-2.so.3
+lib/libgdasql.a
+lib/libgdasql.la
+lib/libgdasql.so
+lib/libgdasql.so.3
+%%FIREBIRD:%%lib/libgda/providers/libgda-firebird.a
+%%FIREBIRD:%%lib/libgda/providers/libgda-firebird.la
+%%FIREBIRD:%%lib/libgda/providers/libgda-firebird.so
+%%FREETDS:%%lib/libgda/providers/libgda-freetds.a
+%%FREETDS:%%lib/libgda/providers/libgda-freetds.la
+%%FREETDS:%%lib/libgda/providers/libgda-freetds.so
+%%LDAP:%%lib/libgda/providers/libgda-ldap.a
+%%LDAP:%%lib/libgda/providers/libgda-ldap.la
+%%LDAP:%%lib/libgda/providers/libgda-ldap.so
+%%MDB:%%lib/libgda/providers/libgda-mdb.a
+%%MDB:%%lib/libgda/providers/libgda-mdb.la
+%%MDB:%%lib/libgda/providers/libgda-mdb.so
+%%MYSQL:%%lib/libgda/providers/libgda-mysql.a
+%%MYSQL:%%lib/libgda/providers/libgda-mysql.la
+%%MYSQL:%%lib/libgda/providers/libgda-mysql.so
+%%ODBC:%%lib/libgda/providers/libgda-odbc.a
+%%ODBC:%%lib/libgda/providers/libgda-odbc.la
+%%ODBC:%%lib/libgda/providers/libgda-odbc.so
+%%POSTGRES:%%lib/libgda/providers/libgda-postgres.a
+%%POSTGRES:%%lib/libgda/providers/libgda-postgres.la
+%%POSTGRES:%%lib/libgda/providers/libgda-postgres.so
+%%SYBASE:%%lib/libgda/providers/libgda-sybase.a
+%%SYBASE:%%lib/libgda/providers/libgda-sybase.la
+%%SYBASE:%%lib/libgda/providers/libgda-sybase.so
+%%SQLITE:%%lib/libgda/providers/libgda-sqlite.a
+%%SQLITE:%%lib/libgda/providers/libgda-sqlite.la
+%%SQLITE:%%lib/libgda/providers/libgda-sqlite.so
+lib/libgda/providers/libgda-xml.a
+lib/libgda/providers/libgda-xml.la
+lib/libgda/providers/libgda-xml.so
+libdata/pkgconfig/libgda.pc
+share/libgda/xml/gda-report.dtd
+share/libgda/xml/gda-report-result.dtd
+share/libgda/xml/gda-xml-query.dtd
+share/libgda/xml/gda-xml-query.xsl
+share/omf/libgda/libgda-C.omf
+share/locale/az/LC_MESSAGES/libgda-2.mo
+share/locale/ca/LC_MESSAGES/libgda-2.mo
+share/locale/cs/LC_MESSAGES/libgda-2.mo
+share/locale/da/LC_MESSAGES/libgda-2.mo
+share/locale/de/LC_MESSAGES/libgda-2.mo
+share/locale/el/LC_MESSAGES/libgda-2.mo
+share/locale/en_CA/LC_MESSAGES/libgda-2.mo
+share/locale/en_GB/LC_MESSAGES/libgda-2.mo
+share/locale/es/LC_MESSAGES/libgda-2.mo
+share/locale/fa/LC_MESSAGES/libgda-2.mo
+share/locale/fi/LC_MESSAGES/libgda-2.mo
+share/locale/fr/LC_MESSAGES/libgda-2.mo
+share/locale/ga/LC_MESSAGES/libgda-2.mo
+share/locale/gl/LC_MESSAGES/libgda-2.mo
+share/locale/hr/LC_MESSAGES/libgda-2.mo
+share/locale/hu/LC_MESSAGES/libgda-2.mo
+share/locale/it/LC_MESSAGES/libgda-2.mo
+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/pl/LC_MESSAGES/libgda-2.mo
+share/locale/pt/LC_MESSAGES/libgda-2.mo
+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
+share/locale/tr/LC_MESSAGES/libgda-2.mo
+share/locale/uk/LC_MESSAGES/libgda-2.mo
+share/locale/vi/LC_MESSAGES/libgda-2.mo
+share/locale/zh_CN/LC_MESSAGES/libgda-2.mo
+share/locale/zh_TW/LC_MESSAGES/libgda-2.mo
+@dirrm share/omf/libgda
+@dirrm share/libgda/xml
+@dirrm share/libgda
+@dirrm lib/libgda/providers
+@dirrm lib/libgda
+@dirrm include/libgda-%%VERSION%%/sql
+@dirrm include/libgda-%%VERSION%%/libgda-report
+@dirrm include/libgda-%%VERSION%%/libgda
+@dirrm include/libgda-%%VERSION%%
+@dirrm etc/libgda