diff options
author | kwm <kwm@FreeBSD.org> | 2013-09-06 19:43:34 +0800 |
---|---|---|
committer | kwm <kwm@FreeBSD.org> | 2013-09-06 19:43:34 +0800 |
commit | 819a32baa36593c4215d010deb8a93f07d0d46b3 (patch) | |
tree | aea8d9a008436b668ba637fae59cc3f8668cebc9 /databases/libgda5 | |
parent | 5189b8321d3e628d65828f6b0ed9b12d32a3e4a1 (diff) | |
download | freebsd-ports-gnome-819a32baa36593c4215d010deb8a93f07d0d46b3.tar.gz freebsd-ports-gnome-819a32baa36593c4215d010deb8a93f07d0d46b3.tar.zst freebsd-ports-gnome-819a32baa36593c4215d010deb8a93f07d0d46b3.zip |
Repo copy libgda4 ports to libgda5 and libgdamm to libgdamm5.
Update libgda5 to 5.0.3 and libgdamm5 to 4.99.6.
Libgda 5 is the new version of libgda data abstraction library.
Obtained from: gnome dev repo.
Diffstat (limited to 'databases/libgda5')
-rw-r--r-- | databases/libgda5/Makefile | 143 | ||||
-rw-r--r-- | databases/libgda5/distinfo | 2 | ||||
-rw-r--r-- | databases/libgda5/files/patch-configure | 47 | ||||
-rw-r--r-- | databases/libgda5/pkg-descr | 19 | ||||
-rw-r--r-- | databases/libgda5/pkg-plist | 568 |
5 files changed, 779 insertions, 0 deletions
diff --git a/databases/libgda5/Makefile b/databases/libgda5/Makefile new file mode 100644 index 000000000000..7aeb49911a84 --- /dev/null +++ b/databases/libgda5/Makefile @@ -0,0 +1,143 @@ +# Created by: Joe Marcus Clarke <marcus@FreeBSD.org> +# $FreeBSD$ +# $MCom: ports/trunk/databases/libgda5/Makefile 18610 2013-06-30 16:33:05Z marcus $ + +PORTNAME= libgda +PORTVERSION?= 5.0.3 +PORTREVISION?= 0 +CATEGORIES= databases gnome +MASTER_SITES= GNOME +PKGNAMESUFFIX?= 5 +DIST_SUBDIR= gnome3 + +MAINTAINER?= gnome@FreeBSD.org +COMMENT?= Provides uniform access to different kinds of data sources + +USE_XZ= yes +LIBGDA5_SLAVE?= no + +.if !defined(REFERENCE_PORT) + +LIB_DEPENDS= libgcrypt.so:${PORTSDIR}/security/libgcrypt \ + libsoup-2.4.so:${PORTSDIR}/devel/libsoup \ + libjson-glib-1.0.so:${PORTSDIR}/devel/json-glib + +USE_AUTOTOOLS= libtool +USES= gettext gmake pathfix pkgconfig +USE_GNOME= gnomeprefix glib20 libxslt intlhack referencehack +USE_LDCONFIG= yes +GNU_CONFIGURE= yes +MAKE_JOBS_UNSAFE=yes +CONFIGURE_ARGS= --without-oracle \ + --disable-crypto \ + --disable-default-binary \ + --disable-introspection +CPPFLAGS+= -I${LOCALBASE}/include +LDFLAGS+= -L${LOCALBASE}/lib + +.include <bsd.port.options.mk> + +VERSION= 5.0 +PLIST_SUB= VERSION=${VERSION} + +.if ${LIBGDA5_SLAVE}=="no" +MAN1= gda-sql-5.0.1 +.else +USE_GNOME+= libgda5 +.endif + +.if ${LIBGDA5_SLAVE}==ui +CONFIGURE_ARGS+=--with-ui +USE_GNOME+= gtk30 gnomedocutils +INSTALLS_ICONS= yes +.else +CONFIGURE_ARGS+=--without-ui +.endif + +.if ${LIBGDA5_SLAVE}==bdb +USE_BDB= 5 +CONFIGURE_ARGS+= --with-bdb=${LOCALBASE} +.else +CONFIGURE_ARGS+= --without-bdb +.endif + +.if ${LIBGDA5_SLAVE}==ldap +USE_OPENLDAP= yes +CONFIGURE_ARGS+= --with-ldap=${LOCALBASE} +.else +CONFIGURE_ARGS+= --without-ldap +.endif + +.if ${LIBGDA5_SLAVE}==mysql +USE_MYSQL= yes +CONFIGURE_ARGS+= --with-mysql=${LOCALBASE} +.else +CONFIGURE_ARGS+= --without-mysql +.endif + +.if ${LIBGDA5_SLAVE}==postgresql +USE_PGSQL= yes +CONFIGURE_ARGS+= --with-postgres=${LOCALBASE} +.else +CONFIGURE_ARGS+= --without-postgres +.endif + +# MDB (MS Access) +.if ${LIBGDA5_SLAVE}==mdb +LIB_DEPENDS+= libmdbsql.so:${PORTSDIR}/databases/mdbtools +CONFIGURE_ARGS+= --with-mdb=${LOCALBASE} +.else +CONFIGURE_ARGS+= --without-mdb +.endif + +.if ${LIBGDA5_SLAVE}==jdbc +USE_JAVA= yes +JAVA_VENDOR= bsdjava openjdk +.else +CONFIGURE_ARGS+= --without-java +.endif + +post-patch: + @${REINPLACE_CMD} -e 's|-ldl||g' \ + ${WRKSRC}/configure + @${REINPLACE_CMD} -e 's|"db.h|"db${BDB_VER}/db.h|g' \ + -e 's|ldb47|l${BDB_LIB_NAME}|g' \ + -e 's|ldb|l${BDB_LIB_NAME}|g' \ + -e 's|libdb|lib${BDB_LIB_NAME}|g' \ + ${WRKSRC}/configure + @${REINPLACE_CMD} -e 's|<db\.h>|<db${BDB_VER}/db.h>|' \ + ${WRKSRC}/providers/bdb/gda-bdb-provider.c \ + ${WRKSRC}/providers/bdb/gda-bdb-test.c +.if ${LIBGDA5_SLAVE}!="no" + @${FIND} ${WRKSRC} -name Makefile.in -exec ${REINPLACE_CMD} \ + -e 's|$$(top_builddir)/libgda/libgda-5.0.la|${LOCALBASE}/lib/libgda-5.0.la|g' \ + -e 's|../libgda/libgda-5.0.la|${LOCALBASE}/lib/libgda-5.0.la|g' \ + {} \; +.endif + +pre-build: +.if ${LIBGDA5_SLAVE}==postgresql + cd ${WRKSRC}/providers/reuseable/postgres && ${GMAKE} libgda-postgres.la +.endif + +.if ${LIBGDA5_SLAVE}==mysql + cd ${WRKSRC}/providers/reuseable/mysql && ${GMAKE} libgda-mysql.la +.endif + +.if ${LIBGDA5_SLAVE}==ui + cd ${WRKSRC}/libgda && ${GMAKE} gda-enum-types.h +.endif + +.if ${LIBGDA5_SLAVE}==no +post-install: + ${INSTALL_DATA} ${WRKSRC}/data/config \ + ${PREFIX}/etc/libgda-${VERSION}/config.default +.endif +.if ${LIBGDA5_SLAVE}==ui +post-install: + ${INSTALL_DATA} ${WRKSRC}/libgda-ui-5.0.pc \ + ${PREFIX}/libdata/pkgconfig/ +.endif + +.include <bsd.port.mk> +.endif diff --git a/databases/libgda5/distinfo b/databases/libgda5/distinfo new file mode 100644 index 000000000000..bafd9628d541 --- /dev/null +++ b/databases/libgda5/distinfo @@ -0,0 +1,2 @@ +SHA256 (gnome3/libgda-5.0.3.tar.xz) = 82d204361b794103c366bb690484d25814bfc653cb97da0dfcf7c0a13409d1cc +SIZE (gnome3/libgda-5.0.3.tar.xz) = 11623340 diff --git a/databases/libgda5/files/patch-configure b/databases/libgda5/files/patch-configure new file mode 100644 index 000000000000..ab25d332c7fa --- /dev/null +++ b/databases/libgda5/files/patch-configure @@ -0,0 +1,47 @@ +--- configure.orig 2010-11-28 20:28:23.000000000 -0500 ++++ configure 2010-11-28 20:28:54.000000000 -0500 +@@ -19487,9 +19487,9 @@ $as_echo_n "checking if gobject-introspe + INTROSPECTION_COMPILER=`$PKG_CONFIG --variable=g_ir_compiler gobject-introspection-1.0` + INTROSPECTION_GENERATE=`$PKG_CONFIG --variable=g_ir_generate gobject-introspection-1.0` + INTROSPECTION_GIRDIR=`$PKG_CONFIG --variable=girdir gobject-introspection-1.0` +- INTROSPECTION_GIRDIR=${INTROSPECTION_GIRDIR/$datadir/\$(datadir)} ++ INTROSPECTION_GIRDIR=`echo ${INTROSPECTION_GIRDIR} | sed -e "s|${datadir}|\\\$(datadir)|"` + INTROSPECTION_TYPELIBDIR="$($PKG_CONFIG --variable=typelibdir gobject-introspection-1.0)" +- INTROSPECTION_TYPELIBDIR=${INTROSPECTION_TYPELIBDIR/$libdir/\$(libdir)} ++ INTROSPECTION_TYPELIBDIR=`echo ${INTROSPECTION_TYPELIBDIR} | sed -e "s|${libdir}|\\\$(libdir)|"` + INTROSPECTION_CFLAGS=`$PKG_CONFIG --cflags gobject-introspection-1.0` + INTROSPECTION_LIBS=`$PKG_CONFIG --libs gobject-introspection-1.0` + INTROSPECTION_MAKEFILE=$introspection_makefile +@@ -19589,14 +19589,14 @@ fi + + if test "$enable_crypto" = "yes" + then +- as_fn_error $? "libcrypto support requested but not found" "$LINENO" 5 ++# as_fn_error $? "libcrypto support requested but not found" "$LINENO" 5 + fi + elif test $pkg_failed = untried; then + { $as_echo "$as_me:${as_lineno-$LINENO}: result: no" >&5 + $as_echo "no" >&6; } + if test "$enable_crypto" = "yes" + then +- as_fn_error $? "libcrypto support requested but not found" "$LINENO" 5 ++# as_fn_error $? "libcrypto support requested but not found" "$LINENO" 5 + fi + else + LIBCRYPTO_CFLAGS=$pkg_cv_LIBCRYPTO_CFLAGS +@@ -21776,6 +21776,15 @@ $as_echo "#define MDB_BIND_COLUMN_FOUR_A + fi + CFLAGS="$save_CFLAGS" + fi ++ else ++ if false; then ++ MDB_TRUE= ++ MDB_FALSE='#' ++else ++ MDB_TRUE='#' ++ MDB_FALSE= ++fi ++ + fi + + if test "$mdbtools_found" = "yes"; then diff --git a/databases/libgda5/pkg-descr b/databases/libgda5/pkg-descr new file mode 100644 index 000000000000..12eb57b5ed9b --- /dev/null +++ b/databases/libgda5/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/libgda5/pkg-plist b/databases/libgda5/pkg-plist new file mode 100644 index 000000000000..2a21b48556fc --- /dev/null +++ b/databases/libgda5/pkg-plist @@ -0,0 +1,568 @@ +bin/gda-list-config-%%VERSION%% +bin/gda-list-server-op-%%VERSION%% +bin/gda-sql-%%VERSION%% +bin/gda-test-connection-%%VERSION%% +@unexec if cmp -s %D/etc/libgda-%%VERSION%%/config %D/etc/libgda-%%VERSION%%/config.default; then rm -f %D/etc/libgda-%%VERSION%%/config; fi +etc/libgda-%%VERSION%%/config.default +@exec [ -f %B/config ] || cp %B/%f %B/config +etc/libgda-%%VERSION%%/sales_test.db +include/libgda-%%VERSION%%/libgda-report/gda-report-docbook-document.h +include/libgda-%%VERSION%%/libgda-report/gda-report-document.h +include/libgda-%%VERSION%%/libgda-report/gda-report-engine.h +include/libgda-%%VERSION%%/libgda-report/gda-report-rml-document.h +include/libgda-%%VERSION%%/libgda-report/libgda-report.h +include/libgda-%%VERSION%%/libgda-xslt/libgda-xslt.h +include/libgda-%%VERSION%%/libgda/gda-attributes-manager.h +include/libgda-%%VERSION%%/libgda/gda-batch.h +include/libgda-%%VERSION%%/libgda/gda-binreloc.h +include/libgda-%%VERSION%%/libgda/gda-blob-op.h +include/libgda-%%VERSION%%/libgda/gda-column.h +include/libgda-%%VERSION%%/libgda/gda-config.h +include/libgda-%%VERSION%%/libgda/gda-connection-event.h +include/libgda-%%VERSION%%/libgda/gda-connection-private.h +include/libgda-%%VERSION%%/libgda/gda-connection.h +include/libgda-%%VERSION%%/libgda/gda-data-access-wrapper.h +include/libgda-%%VERSION%%/libgda/gda-data-comparator.h +include/libgda-%%VERSION%%/libgda/gda-data-handler.h +include/libgda-%%VERSION%%/libgda/gda-data-model-array.h +include/libgda-%%VERSION%%/libgda/gda-data-model-dir.h +include/libgda-%%VERSION%%/libgda/gda-data-model-extra.h +include/libgda-%%VERSION%%/libgda/gda-data-model-import.h +include/libgda-%%VERSION%%/libgda/gda-data-model-iter.h +include/libgda-%%VERSION%%/libgda/gda-data-model-iter-extra.h +include/libgda-%%VERSION%%/libgda/gda-data-model-private.h +include/libgda-%%VERSION%%/libgda/gda-data-model.h +include/libgda-%%VERSION%%/libgda/gda-data-pivot.h +include/libgda-%%VERSION%%/libgda/gda-data-proxy.h +include/libgda-%%VERSION%%/libgda/gda-data-select.h +include/libgda-%%VERSION%%/libgda/gda-debug-macros.h +include/libgda-%%VERSION%%/libgda/gda-decl.h +include/libgda-%%VERSION%%/libgda/gda-enum-types.h +include/libgda-%%VERSION%%/libgda/gda-enums.h +include/libgda-%%VERSION%%/libgda/gda-holder.h +include/libgda-%%VERSION%%/libgda/gda-lockable.h +include/libgda-%%VERSION%%/libgda/gda-log.h +include/libgda-%%VERSION%%/libgda/gda-marshal.h +include/libgda-%%VERSION%%/libgda/gda-meta-store.h +include/libgda-%%VERSION%%/libgda/gda-meta-struct.h +include/libgda-%%VERSION%%/libgda/gda-mutex.h +include/libgda-%%VERSION%%/libgda/gda-quark-list.h +include/libgda-%%VERSION%%/libgda/gda-repetitive-statement.h +include/libgda-%%VERSION%%/libgda/gda-row.h +include/libgda-%%VERSION%%/libgda/gda-server-operation.h +include/libgda-%%VERSION%%/libgda/gda-server-provider-extra.h +include/libgda-%%VERSION%%/libgda/gda-server-provider-private.h +include/libgda-%%VERSION%%/libgda/gda-server-provider.h +include/libgda-%%VERSION%%/libgda/gda-set.h +include/libgda-%%VERSION%%/libgda/gda-sql-builder.h +include/libgda-%%VERSION%%/libgda/gda-statement-extra.h +include/libgda-%%VERSION%%/libgda/gda-statement.h +include/libgda-%%VERSION%%/libgda/gda-tree-manager.h +include/libgda-%%VERSION%%/libgda/gda-tree-mgr-columns.h +include/libgda-%%VERSION%%/libgda/gda-tree-mgr-label.h +include/libgda-%%VERSION%%/libgda/gda-tree-mgr-schemas.h +include/libgda-%%VERSION%%/libgda/gda-tree-mgr-select.h +include/libgda-%%VERSION%%/libgda/gda-tree-mgr-tables.h +include/libgda-%%VERSION%%/libgda/gda-tree-node.h +include/libgda-%%VERSION%%/libgda/gda-tree.h +include/libgda-%%VERSION%%/libgda/gda-transaction-status-private.h +include/libgda-%%VERSION%%/libgda/gda-transaction-status.h +include/libgda-%%VERSION%%/libgda/gda-util.h +include/libgda-%%VERSION%%/libgda/gda-value.h +include/libgda-%%VERSION%%/libgda/gda-xa-transaction.h +include/libgda-%%VERSION%%/libgda/handlers/gda-handler-bin.h +include/libgda-%%VERSION%%/libgda/handlers/gda-handler-boolean.h +include/libgda-%%VERSION%%/libgda/handlers/gda-handler-numerical.h +include/libgda-%%VERSION%%/libgda/handlers/gda-handler-string.h +include/libgda-%%VERSION%%/libgda/handlers/gda-handler-time.h +include/libgda-%%VERSION%%/libgda/handlers/gda-handler-type.h +include/libgda-%%VERSION%%/libgda/libgda.h +include/libgda-%%VERSION%%/libgda/libgda-global-variables.h +include/libgda-%%VERSION%%/libgda/providers-support/gda-data-select-priv.h +include/libgda-%%VERSION%%/libgda/providers-support/gda-meta-column-types.h +include/libgda-%%VERSION%%/libgda/providers-support/gda-pstmt.h +include/libgda-%%VERSION%%/libgda/sql-parser/gda-sql-parser-enum-types.h +include/libgda-%%VERSION%%/libgda/sql-parser/gda-sql-parser.h +include/libgda-%%VERSION%%/libgda/sql-parser/gda-sql-statement.h +include/libgda-%%VERSION%%/libgda/sql-parser/gda-statement-struct-compound.h +include/libgda-%%VERSION%%/libgda/sql-parser/gda-statement-struct-decl.h +include/libgda-%%VERSION%%/libgda/sql-parser/gda-statement-struct-delete.h +include/libgda-%%VERSION%%/libgda/sql-parser/gda-statement-struct-insert.h +include/libgda-%%VERSION%%/libgda/sql-parser/gda-statement-struct-parts.h +include/libgda-%%VERSION%%/libgda/sql-parser/gda-statement-struct-pspec.h +include/libgda-%%VERSION%%/libgda/sql-parser/gda-statement-struct-select.h +include/libgda-%%VERSION%%/libgda/sql-parser/gda-statement-struct-trans.h +include/libgda-%%VERSION%%/libgda/sql-parser/gda-statement-struct-unknown.h +include/libgda-%%VERSION%%/libgda/sql-parser/gda-statement-struct-update.h +include/libgda-%%VERSION%%/libgda/sql-parser/gda-statement-struct-util.h +include/libgda-%%VERSION%%/libgda/sql-parser/gda-statement-struct.h +include/libgda-%%VERSION%%/libgda/sqlite/gda-sqlite-provider.h +include/libgda-%%VERSION%%/libgda/thread-wrapper/gda-thread-wrapper.h +include/libgda-%%VERSION%%/libgda/virtual/gda-vconnection-data-model.h +include/libgda-%%VERSION%%/libgda/virtual/gda-vconnection-hub.h +include/libgda-%%VERSION%%/libgda/virtual/gda-virtual-connection.h +include/libgda-%%VERSION%%/libgda/virtual/gda-virtual-provider.h +include/libgda-%%VERSION%%/libgda/virtual/gda-vprovider-data-model.h +include/libgda-%%VERSION%%/libgda/virtual/gda-vprovider-hub.h +include/libgda-%%VERSION%%/libgda/virtual/libgda-virtual.h +lib/libgda-%%VERSION%%.a +lib/libgda-%%VERSION%%.la +lib/libgda-%%VERSION%%.so +lib/libgda-%%VERSION%%.so.5 +lib/libgda-%%VERSION%%/providers/libgda-web.a +lib/libgda-%%VERSION%%/providers/libgda-web.la +lib/libgda-%%VERSION%%/providers/libgda-web.so +lib/libgda-%%VERSION%%/providers/libgda-sqlite.a +lib/libgda-%%VERSION%%/providers/libgda-sqlite.la +lib/libgda-%%VERSION%%/providers/libgda-sqlite.so +lib/libgda-report-%%VERSION%%.a +lib/libgda-report-%%VERSION%%.la +lib/libgda-report-%%VERSION%%.so +lib/libgda-report-%%VERSION%%.so.5 +lib/libgda-xslt-%%VERSION%%.a +lib/libgda-xslt-%%VERSION%%.la +lib/libgda-xslt-%%VERSION%%.so +lib/libgda-xslt-%%VERSION%%.so.5 +libdata/pkgconfig/libgda-%%VERSION%%.pc +libdata/pkgconfig/libgda-report-%%VERSION%%.pc +libdata/pkgconfig/libgda-sqlite-%%VERSION%%.pc +libdata/pkgconfig/libgda-web-%%VERSION%%.pc +libdata/pkgconfig/libgda-xslt-%%VERSION%%.pc +share/doc/libgda-%%VERSION%%/DataModels.png +share/doc/libgda-%%VERSION%%/GdaBatch.html +share/doc/libgda-%%VERSION%%/GdaBlobOp.html +share/doc/libgda-%%VERSION%%/GdaColumn.html +share/doc/libgda-%%VERSION%%/GdaConnection.html +share/doc/libgda-%%VERSION%%/GdaConnectionEvent.html +share/doc/libgda-%%VERSION%%/GdaDataAccessWrapper.html +share/doc/libgda-%%VERSION%%/GdaDataModel.html +share/doc/libgda-%%VERSION%%/GdaDataModelArray.html +share/doc/libgda-%%VERSION%%/GdaDataModelBdb.html +share/doc/libgda-%%VERSION%%/GdaDataModelDir.html +share/doc/libgda-%%VERSION%%/GdaDataModelImport.html +share/doc/libgda-%%VERSION%%/GdaDataModelIter.html +share/doc/libgda-%%VERSION%%/GdaDataModelIter.png +share/doc/libgda-%%VERSION%%/GdaDataModelLdap.html +share/doc/libgda-%%VERSION%%/GdaDataProxy.html +share/doc/libgda-%%VERSION%%/GdaDataSelect.html +share/doc/libgda-%%VERSION%%/GdaHandlerBin.html +share/doc/libgda-%%VERSION%%/GdaHandlerBoolean.html +share/doc/libgda-%%VERSION%%/GdaHandlerNumerical.html +share/doc/libgda-%%VERSION%%/GdaHandlerString.html +share/doc/libgda-%%VERSION%%/GdaHandlerTime.html +share/doc/libgda-%%VERSION%%/GdaHandlerType.html +share/doc/libgda-%%VERSION%%/GdaHolder.html +share/doc/libgda-%%VERSION%%/GdaLdapConnection.html +share/doc/libgda-%%VERSION%%/GdaLockable.html +share/doc/libgda-%%VERSION%%/GdaMetaStore.html +share/doc/libgda-%%VERSION%%/GdaMetaStoreCustomData.html +share/doc/libgda-%%VERSION%%/GdaMetaStruct.html +share/doc/libgda-%%VERSION%%/GdaPStmt.html +share/doc/libgda-%%VERSION%%/GdaReportDocbookDocument.html +share/doc/libgda-%%VERSION%%/GdaReportDocument.html +share/doc/libgda-%%VERSION%%/GdaReportEngine.html +share/doc/libgda-%%VERSION%%/GdaReportRmlDocument.html +share/doc/libgda-%%VERSION%%/GdaRow.html +share/doc/libgda-%%VERSION%%/GdaServerOperation.html +share/doc/libgda-%%VERSION%%/GdaServerProvider.html +share/doc/libgda-%%VERSION%%/GdaSet.html +share/doc/libgda-%%VERSION%%/GdaSqlBuilder.html +share/doc/libgda-%%VERSION%%/GdaSqlParser.html +share/doc/libgda-%%VERSION%%/GdaStatement.html +share/doc/libgda-%%VERSION%%/GdaStatement.png +share/doc/libgda-%%VERSION%%/GdaThreadWrapper.html +share/doc/libgda-%%VERSION%%/GdaTransactionStatus.html +share/doc/libgda-%%VERSION%%/GdaTree.html +share/doc/libgda-%%VERSION%%/GdaTreeManager.html +share/doc/libgda-%%VERSION%%/GdaTreeMgrColumns.html +share/doc/libgda-%%VERSION%%/GdaTreeMgrLabel.html +share/doc/libgda-%%VERSION%%/GdaTreeMgrLdap.html +share/doc/libgda-%%VERSION%%/GdaTreeMgrSchemas.html +share/doc/libgda-%%VERSION%%/GdaTreeMgrSelect.html +share/doc/libgda-%%VERSION%%/GdaTreeMgrTables.html +share/doc/libgda-%%VERSION%%/GdaTreeNode.html +share/doc/libgda-%%VERSION%%/GdaVconnectionDataModel.html +share/doc/libgda-%%VERSION%%/GdaVconnectionHub.html +share/doc/libgda-%%VERSION%%/GdaVirtualConnection.html +share/doc/libgda-%%VERSION%%/GdaVirtualProvider.html +share/doc/libgda-%%VERSION%%/GdaVproviderDataModel.html +share/doc/libgda-%%VERSION%%/GdaVproviderHub.html +share/doc/libgda-%%VERSION%%/GdauiBasicForm.html +share/doc/libgda-%%VERSION%%/GdauiCloud.html +share/doc/libgda-%%VERSION%%/GdauiCombo.html +share/doc/libgda-%%VERSION%%/GdauiDataEntry.html +share/doc/libgda-%%VERSION%%/GdauiDataFilter.html +share/doc/libgda-%%VERSION%%/GdauiDataProxy.html +share/doc/libgda-%%VERSION%%/GdauiDataProxyInfo.html +share/doc/libgda-%%VERSION%%/GdauiDataSelector.html +share/doc/libgda-%%VERSION%%/GdauiDataStore.html +share/doc/libgda-%%VERSION%%/GdauiForm.html +share/doc/libgda-%%VERSION%%/GdauiGrid.html +share/doc/libgda-%%VERSION%%/GdauiLogin.html +share/doc/libgda-%%VERSION%%/GdauiProviderSelector.html +share/doc/libgda-%%VERSION%%/GdauiRawForm.html +share/doc/libgda-%%VERSION%%/GdauiRawGrid.html +share/doc/libgda-%%VERSION%%/GdauiRtEditor.html +share/doc/libgda-%%VERSION%%/GdauiServerOperation.html +share/doc/libgda-%%VERSION%%/GdauiTreeStore.html +share/doc/libgda-%%VERSION%%/MetaStore1.png +share/doc/libgda-%%VERSION%%/MetaStore2.png +share/doc/libgda-%%VERSION%%/SqlIdentifiers.png +share/doc/libgda-%%VERSION%%/architecture.html +share/doc/libgda-%%VERSION%%/architecture.png +share/doc/libgda-%%VERSION%%/blobs_example.html +share/doc/libgda-%%VERSION%%/ch04.html +share/doc/libgda-%%VERSION%%/ch06s03.html +share/doc/libgda-%%VERSION%%/ch07s02.html +share/doc/libgda-%%VERSION%%/ch07s03.html +share/doc/libgda-%%VERSION%%/ch08s02.html +share/doc/libgda-%%VERSION%%/ch08s03.html +share/doc/libgda-%%VERSION%%/ch08s07.html +share/doc/libgda-%%VERSION%%/ch09s02.html +share/doc/libgda-%%VERSION%%/ch12s02.html +share/doc/libgda-%%VERSION%%/ch12s07.html +share/doc/libgda-%%VERSION%%/ch12s08.html +share/doc/libgda-%%VERSION%%/ch12s11.html +share/doc/libgda-%%VERSION%%/ch12s12.html +share/doc/libgda-%%VERSION%%/ch12s13.html +share/doc/libgda-%%VERSION%%/ch13.html +share/doc/libgda-%%VERSION%%/ch21.html +share/doc/libgda-%%VERSION%%/ch22.html +share/doc/libgda-%%VERSION%%/ch33.html +share/doc/libgda-%%VERSION%%/ch36.html +share/doc/libgda-%%VERSION%%/ch37s02.html +share/doc/libgda-%%VERSION%%/ch37s03.html +share/doc/libgda-%%VERSION%%/ch39s02.html +share/doc/libgda-%%VERSION%%/ch40s02.html +share/doc/libgda-%%VERSION%%/ch40s03.html +share/doc/libgda-%%VERSION%%/ch40s04.html +share/doc/libgda-%%VERSION%%/ch41.html +share/doc/libgda-%%VERSION%%/ch42s02.html +share/doc/libgda-%%VERSION%%/ch42s03.html +share/doc/libgda-%%VERSION%%/ch42s04.html +share/doc/libgda-%%VERSION%%/ch42s05.html +share/doc/libgda-%%VERSION%%/ch42s06.html +share/doc/libgda-%%VERSION%%/ch42s07.html +share/doc/libgda-%%VERSION%%/ch42s08.html +share/doc/libgda-%%VERSION%%/ch42s10.html +share/doc/libgda-%%VERSION%%/ch45s02.html +share/doc/libgda-%%VERSION%%/ch48s02.html +share/doc/libgda-%%VERSION%%/ch48s03.html +share/doc/libgda-%%VERSION%%/ch48s04.html +share/doc/libgda-%%VERSION%%/ch48s05.html +share/doc/libgda-%%VERSION%%/ch48s06.html +share/doc/libgda-%%VERSION%%/ch48s07.html +share/doc/libgda-%%VERSION%%/ch48s08.html +share/doc/libgda-%%VERSION%%/ch49s02.html +share/doc/libgda-%%VERSION%%/ch49s03.html +share/doc/libgda-%%VERSION%%/ch49s04.html +share/doc/libgda-%%VERSION%%/ch49s05.html +share/doc/libgda-%%VERSION%%/compiling.html +share/doc/libgda-%%VERSION%%/connection.html +share/doc/libgda-%%VERSION%%/connections.html +share/doc/libgda-%%VERSION%%/data-model.html +share/doc/libgda-%%VERSION%%/data-select.html +share/doc/libgda-%%VERSION%%/data_conv.html +share/doc/libgda-%%VERSION%%/data_models.html +share/doc/libgda-%%VERSION%%/data_proxy1.png +share/doc/libgda-%%VERSION%%/data_proxy2.png +share/doc/libgda-%%VERSION%%/data_proxy3.png +share/doc/libgda-%%VERSION%%/data_proxy4.png +share/doc/libgda-%%VERSION%%/data_proxy5.png +share/doc/libgda-%%VERSION%%/data_validation_holder.png +share/doc/libgda-%%VERSION%%/data_validation_proxy.png +share/doc/libgda-%%VERSION%%/data_validation_set.png +share/doc/libgda-%%VERSION%%/ddl_example.html +share/doc/libgda-%%VERSION%%/fdl-section1.html +share/doc/libgda-%%VERSION%%/fdl-section10.html +share/doc/libgda-%%VERSION%%/fdl-section2.html +share/doc/libgda-%%VERSION%%/fdl-section3.html +share/doc/libgda-%%VERSION%%/fdl-section4.html +share/doc/libgda-%%VERSION%%/fdl-section5.html +share/doc/libgda-%%VERSION%%/fdl-section6.html +share/doc/libgda-%%VERSION%%/fdl-section7.html +share/doc/libgda-%%VERSION%%/fdl-section8.html +share/doc/libgda-%%VERSION%%/fdl-section9.html +share/doc/libgda-%%VERSION%%/fdl-using.html +share/doc/libgda-%%VERSION%%/fdl.html +share/doc/libgda-%%VERSION%%/features.html +share/doc/libgda-%%VERSION%%/gda-dict.html +share/doc/libgda-%%VERSION%%/gda-sql-graph.png +share/doc/libgda-%%VERSION%%/gda-sql-manual-dsn.html +share/doc/libgda-%%VERSION%%/gda-sql-manual-icommands.html +share/doc/libgda-%%VERSION%%/gda-sql-manual-open.html +share/doc/libgda-%%VERSION%%/gda-sql-manual-run.html +share/doc/libgda-%%VERSION%%/gda-sql.html +share/doc/libgda-%%VERSION%%/gen:sql_identifiers.html +share/doc/libgda-%%VERSION%%/gen_blobs.html +share/doc/libgda-%%VERSION%%/getting_started.html +share/doc/libgda-%%VERSION%%/home.png +share/doc/libgda-%%VERSION%%/howto-exec-non-select.html +share/doc/libgda-%%VERSION%%/howto-exec-select.html +share/doc/libgda-%%VERSION%%/howto-exec.png +share/doc/libgda-%%VERSION%%/howto-meta1.html +share/doc/libgda-%%VERSION%%/howto-meta2.html +share/doc/libgda-%%VERSION%%/howto-modify-select.html +share/doc/libgda-%%VERSION%%/howto-sqlbuilder.html +share/doc/libgda-%%VERSION%%/howto.html +share/doc/libgda-%%VERSION%%/i_s_data_types.png +share/doc/libgda-%%VERSION%%/index-4-2-1.html +share/doc/libgda-%%VERSION%%/index-4-2-10.html +share/doc/libgda-%%VERSION%%/index-4-2-2.html +share/doc/libgda-%%VERSION%%/index-4-2-3.html +share/doc/libgda-%%VERSION%%/index-4-2-4.html +share/doc/libgda-%%VERSION%%/index-4-2-5.html +share/doc/libgda-%%VERSION%%/index-4-2-6.html +share/doc/libgda-%%VERSION%%/index-4-2-7.html +share/doc/libgda-%%VERSION%%/index-4-2-8.html +share/doc/libgda-%%VERSION%%/index-4-2-9.html +share/doc/libgda-%%VERSION%%/index-4-2.html +share/doc/libgda-%%VERSION%%/index-5-0-2.html +share/doc/libgda-%%VERSION%%/index-5-0-3.html +share/doc/libgda-%%VERSION%%/index-5-0.html +share/doc/libgda-%%VERSION%%/index-deprecated.html +share/doc/libgda-%%VERSION%%/index.html +share/doc/libgda-%%VERSION%%/index.sgml +share/doc/libgda-%%VERSION%%/index_main.html +share/doc/libgda-%%VERSION%%/information_schema.html +share/doc/libgda-%%VERSION%%/information_schema.png +share/doc/libgda-%%VERSION%%/init_config.html +share/doc/libgda-%%VERSION%%/installation-configuring.html +share/doc/libgda-%%VERSION%%/installation-installing.html +share/doc/libgda-%%VERSION%%/installation.html +share/doc/libgda-%%VERSION%%/introduction.html +share/doc/libgda-%%VERSION%%/left.png +share/doc/libgda-%%VERSION%%/libgda-%%VERSION%%-Attributes-manager.html +share/doc/libgda-%%VERSION%%/libgda-%%VERSION%%-Configuration.html +share/doc/libgda-%%VERSION%%/libgda-%%VERSION%%-Default-Data-handlers.html +share/doc/libgda-%%VERSION%%/libgda-%%VERSION%%-Gda-Value.html +share/doc/libgda-%%VERSION%%/libgda-%%VERSION%%-GdaDataComparator.html +share/doc/libgda-%%VERSION%%/libgda-%%VERSION%%-GdaDataPivot.html +share/doc/libgda-%%VERSION%%/libgda-%%VERSION%%-GdaMutex.html +share/doc/libgda-%%VERSION%%/libgda-%%VERSION%%-GdaRepetitiveStatement.html +share/doc/libgda-%%VERSION%%/libgda-%%VERSION%%-GdaServerOperation-individual-nodes.html +share/doc/libgda-%%VERSION%%/libgda-%%VERSION%%-GdaServerOperation-sequences.html +share/doc/libgda-%%VERSION%%/libgda-%%VERSION%%-GdaSqlStatement.html +share/doc/libgda-%%VERSION%%/libgda-%%VERSION%%-GdaXaTransaction.html +share/doc/libgda-%%VERSION%%/libgda-%%VERSION%%-Libgda-Initialization.html +share/doc/libgda-%%VERSION%%/libgda-%%VERSION%%-LibgdaUI-Initialization.html +share/doc/libgda-%%VERSION%%/libgda-%%VERSION%%-Logging.html +share/doc/libgda-%%VERSION%%/libgda-%%VERSION%%-Misc-API.html +share/doc/libgda-%%VERSION%%/libgda-%%VERSION%%-Quark-lists.html +share/doc/libgda-%%VERSION%%/libgda-%%VERSION%%-SQL-rendering-API.html +share/doc/libgda-%%VERSION%%/libgda-%%VERSION%%-Subclassing-GdaDataSelect.html +share/doc/libgda-%%VERSION%%/libgda-%%VERSION%%-UI-Utility-functions.html +share/doc/libgda-%%VERSION%%/libgda-%%VERSION%%-UI-plugins.html +share/doc/libgda-%%VERSION%%/libgda-%%VERSION%%-Utility-functions.html +share/doc/libgda-%%VERSION%%/libgda-%%VERSION%%.devhelp2 +share/doc/libgda-%%VERSION%%/libgda-list-server-op.html +share/doc/libgda-%%VERSION%%/libgda-packaging.html +share/doc/libgda-%%VERSION%%/libgda-provider-blobop.html +share/doc/libgda-%%VERSION%%/libgda-provider-class.html +share/doc/libgda-%%VERSION%%/libgda-provider-pack.html +share/doc/libgda-%%VERSION%%/libgda-provider-parser.html +share/doc/libgda-%%VERSION%%/libgda-provider-recordset.html +share/doc/libgda-%%VERSION%%/libgda-reports-introduction.html +share/doc/libgda-%%VERSION%%/libgda-sql.html +share/doc/libgda-%%VERSION%%/libgda-tools-controlcenter.html +share/doc/libgda-%%VERSION%%/libgda-tools-gdabrowser.html +share/doc/libgda-%%VERSION%%/libgda-tools-introduction.html +share/doc/libgda-%%VERSION%%/libgda-tools-list-config.html +share/doc/libgda-%%VERSION%%/libgda-tools-test-connection.html +share/doc/libgda-%%VERSION%%/libgda-xslt-api.html +share/doc/libgda-%%VERSION%%/libgda-xslt-introduction.html +share/doc/libgda-%%VERSION%%/libgdaui-packaging.html +share/doc/libgda-%%VERSION%%/limitations.html +share/doc/libgda-%%VERSION%%/limitations_jdbc.html +share/doc/libgda-%%VERSION%%/limitations_ldap.html +share/doc/libgda-%%VERSION%%/limitations_mysql.html +share/doc/libgda-%%VERSION%%/limitations_oracle.html +share/doc/libgda-%%VERSION%%/limitations_postgres.html +share/doc/libgda-%%VERSION%%/limitations_sqlcipher.html +share/doc/libgda-%%VERSION%%/limitations_sqlite.html +share/doc/libgda-%%VERSION%%/main_example.html +share/doc/libgda-%%VERSION%%/managing-errors.html +share/doc/libgda-%%VERSION%%/migration-1.html +share/doc/libgda-%%VERSION%%/migration-2-dict.html +share/doc/libgda-%%VERSION%%/migration-2-exec.html +share/doc/libgda-%%VERSION%%/migration-2-report.html +share/doc/libgda-%%VERSION%%/migration-2.html +share/doc/libgda-%%VERSION%%/migration-3.html +share/doc/libgda-%%VERSION%%/misc.html +share/doc/libgda-%%VERSION%%/multi-threading.html +share/doc/libgda-%%VERSION%%/null_handling.html +share/doc/libgda-%%VERSION%%/other_examples.html +share/doc/libgda-%%VERSION%%/parser_gen.png +share/doc/libgda-%%VERSION%%/parser_prov.png +share/doc/libgda-%%VERSION%%/part_begin.html +share/doc/libgda-%%VERSION%%/part_index.html +share/doc/libgda-%%VERSION%%/part_libgda-reports.html +share/doc/libgda-%%VERSION%%/part_libgda-xslt.html +share/doc/libgda-%%VERSION%%/part_libgda_api.html +share/doc/libgda-%%VERSION%%/part_providers.html +share/doc/libgda-%%VERSION%%/part_tools.html +share/doc/libgda-%%VERSION%%/parts.png +share/doc/libgda-%%VERSION%%/prov-metadata.html +share/doc/libgda-%%VERSION%%/provider-notes.html +share/doc/libgda-%%VERSION%%/provider_notes_ldap.html +share/doc/libgda-%%VERSION%%/provider_notes_sqlcipher.html +share/doc/libgda-%%VERSION%%/provider_notes_sqlite.html +share/doc/libgda-%%VERSION%%/psupport.html +share/doc/libgda-%%VERSION%%/pt08.html +share/doc/libgda-%%VERSION%%/right.png +share/doc/libgda-%%VERSION%%/stmt-compound.png +share/doc/libgda-%%VERSION%%/stmt-insert1.png +share/doc/libgda-%%VERSION%%/stmt-insert2.png +share/doc/libgda-%%VERSION%%/stmt-select.png +share/doc/libgda-%%VERSION%%/stmt-unknown.png +share/doc/libgda-%%VERSION%%/stmt-update.png +share/doc/libgda-%%VERSION%%/style.css +share/doc/libgda-%%VERSION%%/thread-wrapper.png +share/doc/libgda-%%VERSION%%/transactions.html +share/doc/libgda-%%VERSION%%/tree-overview.png +share/doc/libgda-%%VERSION%%/tree-overview2.png +share/doc/libgda-%%VERSION%%/trees.html +share/doc/libgda-%%VERSION%%/up.png +share/doc/libgda-%%VERSION%%/vi-basic-form.png +share/doc/libgda-%%VERSION%%/vi-cloud.png +share/doc/libgda-%%VERSION%%/vi-combo.png +share/doc/libgda-%%VERSION%%/vi-data-entry.png +share/doc/libgda-%%VERSION%%/vi-filter.png +share/doc/libgda-%%VERSION%%/vi-info.png +share/doc/libgda-%%VERSION%%/vi-login.png +share/doc/libgda-%%VERSION%%/vi-provider-selector.png +share/doc/libgda-%%VERSION%%/vi-raw-grid.png +share/doc/libgda-%%VERSION%%/vi-rte.png +share/doc/libgda-%%VERSION%%/vi-server-op.png +share/doc/libgda-%%VERSION%%/virtual_connection.html +share/doc/libgda-%%VERSION%%/writable_data_model.png +share/gnome/help/gda-sql/C/gda-sql-help.xml +share/libgda-%%VERSION%%/dtd/libgda-array.dtd +share/libgda-%%VERSION%%/dtd/libgda-paramlist.dtd +share/libgda-%%VERSION%%/dtd/libgda-server-operation.dtd +share/libgda-%%VERSION%%/gda_trml2html/__init__.py +share/libgda-%%VERSION%%/gda_trml2html/trml2html.py +share/libgda-%%VERSION%%/gda_trml2html/utils.py +share/libgda-%%VERSION%%/gda_trml2pdf/__init__.py +share/libgda-%%VERSION%%/gda_trml2pdf/color.py +share/libgda-%%VERSION%%/gda_trml2pdf/trml2pdf.py +share/libgda-%%VERSION%%/gda_trml2pdf/utils.py +share/libgda-%%VERSION%%/information_schema.xml +share/libgda-%%VERSION%%/php/README +share/libgda-%%VERSION%%/php/gda-clean.php +share/libgda-%%VERSION%%/php/gda-config.php +share/libgda-%%VERSION%%/php/gda-exception.php +share/libgda-%%VERSION%%/php/gda-front.php +share/libgda-%%VERSION%%/php/gda-meta.php +share/libgda-%%VERSION%%/php/gda-secure-config.php +share/libgda-%%VERSION%%/php/gda-setup.php +share/libgda-%%VERSION%%/php/gda-tester.php +share/libgda-%%VERSION%%/php/gda-utils.php +share/libgda-%%VERSION%%/php/gda-worker.php +share/libgda-%%VERSION%%/sqlite_specs_add_column.xml +share/libgda-%%VERSION%%/sqlite_specs_create_db.xml +share/libgda-%%VERSION%%/sqlite_specs_create_index.xml +share/libgda-%%VERSION%%/sqlite_specs_create_table.xml +share/libgda-%%VERSION%%/sqlite_specs_create_view.xml +share/libgda-%%VERSION%%/sqlite_specs_drop_db.xml +share/libgda-%%VERSION%%/sqlite_specs_drop_index.xml +share/libgda-%%VERSION%%/sqlite_specs_drop_table.xml +share/libgda-%%VERSION%%/sqlite_specs_drop_view.xml +share/libgda-%%VERSION%%/sqlite_specs_dsn.xml +share/libgda-%%VERSION%%/sqlite_specs_rename_table.xml +share/libgda-%%VERSION%%/web_specs_auth.xml +share/libgda-%%VERSION%%/web_specs_dsn.xml +share/libgda-%%VERSION%%/web/cnc.js +share/libgda-%%VERSION%%/web/gda-print.css +share/libgda-%%VERSION%%/web/gda.css +share/libgda-%%VERSION%%/web/irb.css +share/libgda-%%VERSION%%/web/irb.js +share/libgda-%%VERSION%%/web/jquery.js +share/libgda-%%VERSION%%/web/md5.js +share/libgda-%%VERSION%%/web/mouseapp_2.js +share/libgda-%%VERSION%%/web/mouseirb_2.js +share/locale/ar/LC_MESSAGES/libgda-%%VERSION%%.mo +share/locale/az/LC_MESSAGES/libgda-%%VERSION%%.mo +share/locale/ca/LC_MESSAGES/libgda-%%VERSION%%.mo +share/locale/ca@valencia/LC_MESSAGES/libgda-%%VERSION%%.mo +share/locale/cs/LC_MESSAGES/libgda-%%VERSION%%.mo +share/locale/da/LC_MESSAGES/libgda-%%VERSION%%.mo +share/locale/de/LC_MESSAGES/libgda-%%VERSION%%.mo +share/locale/dz/LC_MESSAGES/libgda-%%VERSION%%.mo +share/locale/el/LC_MESSAGES/libgda-%%VERSION%%.mo +share/locale/en_CA/LC_MESSAGES/libgda-%%VERSION%%.mo +share/locale/en_GB/LC_MESSAGES/libgda-%%VERSION%%.mo +share/locale/eo/LC_MESSAGES/libgda-%%VERSION%%.mo +share/locale/es/LC_MESSAGES/libgda-%%VERSION%%.mo +share/locale/eu/LC_MESSAGES/libgda-%%VERSION%%.mo +share/locale/fa/LC_MESSAGES/libgda-%%VERSION%%.mo +share/locale/fi/LC_MESSAGES/libgda-%%VERSION%%.mo +share/locale/fr/LC_MESSAGES/libgda-%%VERSION%%.mo +share/locale/ga/LC_MESSAGES/libgda-%%VERSION%%.mo +share/locale/gl/LC_MESSAGES/libgda-%%VERSION%%.mo +share/locale/hr/LC_MESSAGES/libgda-%%VERSION%%.mo +share/locale/hu/LC_MESSAGES/libgda-%%VERSION%%.mo +share/locale/id/LC_MESSAGES/libgda-%%VERSION%%.mo +share/locale/it/LC_MESSAGES/libgda-%%VERSION%%.mo +share/locale/ja/LC_MESSAGES/libgda-%%VERSION%%.mo +share/locale/ko/LC_MESSAGES/libgda-%%VERSION%%.mo +share/locale/lt/LC_MESSAGES/libgda-%%VERSION%%.mo +share/locale/mk/LC_MESSAGES/libgda-%%VERSION%%.mo +share/locale/ml/LC_MESSAGES/libgda-%%VERSION%%.mo +share/locale/ms/LC_MESSAGES/libgda-%%VERSION%%.mo +share/locale/nb/LC_MESSAGES/libgda-%%VERSION%%.mo +share/locale/ne/LC_MESSAGES/libgda-%%VERSION%%.mo +share/locale/nl/LC_MESSAGES/libgda-%%VERSION%%.mo +share/locale/oc/LC_MESSAGES/libgda-%%VERSION%%.mo +share/locale/pa/LC_MESSAGES/libgda-%%VERSION%%.mo +share/locale/pl/LC_MESSAGES/libgda-%%VERSION%%.mo +share/locale/pt/LC_MESSAGES/libgda-%%VERSION%%.mo +share/locale/pt_BR/LC_MESSAGES/libgda-%%VERSION%%.mo +share/locale/ru/LC_MESSAGES/libgda-%%VERSION%%.mo +share/locale/rw/LC_MESSAGES/libgda-%%VERSION%%.mo +share/locale/sk/LC_MESSAGES/libgda-%%VERSION%%.mo +share/locale/sl/LC_MESSAGES/libgda-%%VERSION%%.mo +share/locale/sq/LC_MESSAGES/libgda-%%VERSION%%.mo +share/locale/sr/LC_MESSAGES/libgda-%%VERSION%%.mo +share/locale/sr@Latn/LC_MESSAGES/libgda-%%VERSION%%.mo +share/locale/sv/LC_MESSAGES/libgda-%%VERSION%%.mo +share/locale/tr/LC_MESSAGES/libgda-%%VERSION%%.mo +share/locale/uk/LC_MESSAGES/libgda-%%VERSION%%.mo +share/locale/vi/LC_MESSAGES/libgda-%%VERSION%%.mo +share/locale/zh_CN/LC_MESSAGES/libgda-%%VERSION%%.mo +share/locale/zh_HK/LC_MESSAGES/libgda-%%VERSION%%.mo +share/locale/zh_TW/LC_MESSAGES/libgda-%%VERSION%%.mo +@dirrm share/libgda-%%VERSION%%/web +@dirrm share/libgda-%%VERSION%%/php +@dirrm share/libgda-%%VERSION%%/gda_trml2pdf +@dirrm share/libgda-%%VERSION%%/gda_trml2html +@dirrm share/libgda-%%VERSION%%/dtd +@dirrm share/libgda-%%VERSION%%/ +@dirrm share/gnome/help/gda-sql/C +@dirrm share/gnome/help/gda-sql +@dirrmtry share/gnome/help +@dirrmtry share/gnome +@dirrm share/doc/libgda-%%VERSION%% +@dirrm lib/libgda-%%VERSION%%/providers +@dirrm lib/libgda-%%VERSION%% +@dirrm include/libgda-%%VERSION%%/libgda/virtual +@dirrm include/libgda-%%VERSION%%/libgda/thread-wrapper +@dirrm include/libgda-%%VERSION%%/libgda/sqlite +@dirrm include/libgda-%%VERSION%%/libgda/sql-parser +@dirrm include/libgda-%%VERSION%%/libgda/providers-support +@dirrm include/libgda-%%VERSION%%/libgda/handlers +@dirrm include/libgda-%%VERSION%%/libgda-xslt +@dirrm include/libgda-%%VERSION%%/libgda-report +@dirrm include/libgda-%%VERSION%%/libgda +@dirrm include/libgda-%%VERSION%% +@dirrmtry etc/libgda-%%VERSION%% +@dirrmtry share/locale/zh_HK/LC_MESSAGES +@dirrmtry share/locale/zh_HK +@dirrmtry share/locale/rw/LC_MESSAGES +@dirrmtry share/locale/rw +@dirrmtry share/locale/oc/LC_MESSAGES +@dirrmtry share/locale/oc +@dirrmtry share/locale/dz/LC_MESSAGES +@dirrmtry share/locale/dz +@dirrmtry share/locale/ca@valencia/LC_MESSAGES +@dirrmtry share/locale/ca@valencia |