diff options
author | ahze <ahze@df743ca5-7f9a-e211-a948-0013205c9059> | 2005-11-06 09:46:00 +0800 |
---|---|---|
committer | ahze <ahze@df743ca5-7f9a-e211-a948-0013205c9059> | 2005-11-06 09:46:00 +0800 |
commit | dc267ab59961ebbf633a9f1f936960169eaea546 (patch) | |
tree | a48cf275df4d6d138551a5f8cd0c7f4914c79372 /databases | |
parent | 57c63e904f0d33618b6cb8ad2801eb974a6c1d10 (diff) | |
download | marcuscom-ports-dc267ab59961ebbf633a9f1f936960169eaea546.tar marcuscom-ports-dc267ab59961ebbf633a9f1f936960169eaea546.tar.gz marcuscom-ports-dc267ab59961ebbf633a9f1f936960169eaea546.tar.bz2 marcuscom-ports-dc267ab59961ebbf633a9f1f936960169eaea546.tar.lz marcuscom-ports-dc267ab59961ebbf633a9f1f936960169eaea546.tar.xz marcuscom-ports-dc267ab59961ebbf633a9f1f936960169eaea546.tar.zst marcuscom-ports-dc267ab59961ebbf633a9f1f936960169eaea546.zip |
- Clean out databases, these are in ports now.
git-svn-id: svn://creme-brulee.marcuscom.com/ports/trunk@5025 df743ca5-7f9a-e211-a948-0013205c9059
Diffstat (limited to 'databases')
28 files changed, 0 insertions, 1240 deletions
diff --git a/databases/libgda2/Makefile b/databases/libgda2/Makefile deleted file mode 100644 index 4d9b7501e..000000000 --- a/databases/libgda2/Makefile +++ /dev/null @@ -1,183 +0,0 @@ -# New ports collection makefile for: libgda2 -# Date created: 02 June 2002 -# Whom: Joe Marcus Clarke <marcus@FreeBSD.org> -# -# $FreeBSD$ -# $MCom: ports/databases/libgda2/Makefile,v 1.31 2005/10/13 19:55:55 marcus Exp $ -# - -PORTNAME= libgda2 -PORTVERSION= 1.9.100 -PORTREVISION= 1 -CATEGORIES= databases gnome -MASTER_SITES= ${MASTER_SITE_GNOME} -MASTER_SITE_SUBDIR= sources/${PORTNAME:S/2$//}/${PORTVERSION:R} -DISTNAME= libgda-${PORTVERSION} -DIST_SUBDIR= gnome2 - -MAINTAINER= gnome@FreeBSD.org -COMMENT= Provides uniform access to different kinds of data sources - -LIB_DEPENDS= popt.0:${PORTSDIR}/devel/popt - -USE_BZIP2= yes -USE_X_PREFIX= yes -USE_GMAKE= yes -USE_GNOME= gnomeprefix gnomehack glib20 libxslt intlhack -INSTALLS_SHLIB= yes -USE_AUTOTOOLS= libtool:15 -USE_REINPLACE= 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 - -DOCSDIR= ${PREFIX}/share/doc/${PORTNAME:S/2$//} - -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.2) -WITH_LDAP=yes -.endif - -.if exists(${LOCALBASE}/lib/libgds.so.1) -WITH_FIREBIRD= yes -.endif - -.if exists(${LOCALBASE}/lib/libtds.so.2) -WITH_FREETDS= yes -.endif - -.if exists(${LOCALBASE}/lib/libsybdb.so.3) -WITH_SYBASE= yes -.endif - -.if exists(${LOCALBASE}/lib/libmdbsql.so.0) -WITH_MDB= yes -.endif - -.if exists(${LOCALBASE}/lib/libODBC.so.1) -WITH_ODBC= yes -.endif - -.if exists(${LOCALBASE}/lib/libsqlite.so.2) -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-interbase -PLIST_SUB+= FIREBIRD:="@comment " -.endif - -.if !defined(WITHOUT_FREETDS) && defined(WITH_FREETDS) -LIB_DEPENDS+= tds.2:${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.3:${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+= sqlite.2:${PORTSDIR}/databases/sqlite2 -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_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> diff --git a/databases/libgda2/distinfo b/databases/libgda2/distinfo deleted file mode 100644 index 996ce4c69..000000000 --- a/databases/libgda2/distinfo +++ /dev/null @@ -1,2 +0,0 @@ -MD5 (gnome2/libgda-1.9.100.tar.bz2) = c943610dc4c9c286bb14d6ce3c6e549b -SIZE (gnome2/libgda-1.9.100.tar.bz2) = 1464595 diff --git a/databases/libgda2/files/patch-aa b/databases/libgda2/files/patch-aa deleted file mode 100644 index 283a9d659..000000000 --- a/databases/libgda2/files/patch-aa +++ /dev/null @@ -1,10 +0,0 @@ ---- Makefile.in.orig Thu Oct 13 15:37:21 2005 -+++ Makefile.in Thu Oct 13 15:37:38 2005 -@@ -345,7 +345,6 @@ - report \ - tools \ - gda-sharp \ -- testing \ - data \ - doc - diff --git a/databases/libgda2/files/patch-configure b/databases/libgda2/files/patch-configure deleted file mode 100644 index 8df5044bb..000000000 --- a/databases/libgda2/files/patch-configure +++ /dev/null @@ -1,11 +0,0 @@ ---- 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_C_Makefile.in b/databases/libgda2/files/patch-doc_C_Makefile.in deleted file mode 100644 index ef37c3190..000000000 --- a/databases/libgda2/files/patch-doc_C_Makefile.in +++ /dev/null @@ -1,11 +0,0 @@ ---- 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-2.0.pc.in b/databases/libgda2/files/patch-libgda-2.0.pc.in deleted file mode 100644 index 4e4c40569..000000000 --- a/databases/libgda2/files/patch-libgda-2.0.pc.in +++ /dev/null @@ -1,11 +0,0 @@ ---- libgda-2.0.pc.in.orig Fri Oct 31 21:59:33 2003 -+++ libgda-2.0.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 deleted file mode 100644 index 1e6984b6b..000000000 --- a/databases/libgda2/files/patch-po_Makefile.in.in +++ /dev/null @@ -1,10 +0,0 @@ ---- 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_postgres_utils.c b/databases/libgda2/files/patch-providers_postgres_utils.c deleted file mode 100644 index 29fe99b98..000000000 --- a/databases/libgda2/files/patch-providers_postgres_utils.c +++ /dev/null @@ -1,11 +0,0 @@ ---- 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 deleted file mode 100644 index 226aeeee7..000000000 --- a/databases/libgda2/files/patch-tools_gda-config-tool.c +++ /dev/null @@ -1,11 +0,0 @@ ---- 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 deleted file mode 100644 index 12eb57b5e..000000000 --- a/databases/libgda2/pkg-descr +++ /dev/null @@ -1,19 +0,0 @@ -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 deleted file mode 100644 index c992b3b6a..000000000 --- a/databases/libgda2/pkg-plist +++ /dev/null @@ -1,215 +0,0 @@ -bin/gda-config-tool -bin/gda-report-test -bin/gda-run -etc/libgda/config -etc/libgda/sales_test.db -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-column-index.h -include/libgda-%%VERSION%%/libgda/gda-column.h -include/libgda-%%VERSION%%/libgda/gda-command.h -include/libgda-%%VERSION%%/libgda/gda-config.h -include/libgda-%%VERSION%%/libgda/gda-connection-event.h -include/libgda-%%VERSION%%/libgda/gda-connection.h -include/libgda-%%VERSION%%/libgda/gda-data-model-array.h -include/libgda-%%VERSION%%/libgda/gda-data-model-base.h -include/libgda-%%VERSION%%/libgda/gda-data-model-hash.h -include/libgda-%%VERSION%%/libgda/gda-data-model-index.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-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-threader.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/global-decl.h -include/libgda-%%VERSION%%/libgda/libgda.h -include/libgda-%%VERSION%%/sql/sql_parser.h -lib/libgda-3.a -lib/libgda-3.so -lib/libgda-3.so.3 -lib/libgda-report-3.a -lib/libgda-report-3.so -lib/libgda-report-3.so.3 -lib/libgdasql.a -lib/libgdasql.so -lib/libgdasql.so.3 -%%FIREBIRD:%%lib/libgda-%%VERSION%%/providers/libgda-firebird.so -%%FREETDS:%%lib/libgda-%%VERSION%%/providers/libgda-freetds.so -%%LDAP:%%lib/libgda-%%VERSION%%/providers/libgda-ldap.so -%%MDB:%%lib/libgda-%%VERSION%%/providers/libgda-mdb.so -%%MYSQL:%%lib/libgda-%%VERSION%%/providers/libgda-mysql.so -%%ODBC:%%lib/libgda-%%VERSION%%/providers/libgda-odbc.so -%%POSTGRES:%%lib/libgda-%%VERSION%%/providers/libgda-postgres.so -%%SYBASE:%%lib/libgda-%%VERSION%%/providers/libgda-sybase.so -lib/libgda-%%VERSION%%/providers/libgda-sqlite.so -libdata/pkgconfig/libgda-2.0.pc -%%DOCSDIR%%/GdaClient.html -%%DOCSDIR%%/GdaColumn.html -%%DOCSDIR%%/GdaColumnIndex.html -%%DOCSDIR%%/GdaDataModel.html -%%DOCSDIR%%/GdaDataModelArray.html -%%DOCSDIR%%/GdaDataModelHash.html -%%DOCSDIR%%/GdaDataModelList.html -%%DOCSDIR%%/GdaRow.html -%%DOCSDIR%%/GdaSelect.html -%%DOCSDIR%%/GdaServerProvider.html -%%DOCSDIR%%/GdaTransaction.html -%%DOCSDIR%%/architecture.html -%%DOCSDIR%%/ch06.html -%%DOCSDIR%%/ch09s04.html -%%DOCSDIR%%/ch09s05.html -%%DOCSDIR%%/ch09s06.html -%%DOCSDIR%%/compiling.html -%%DOCSDIR%%/connecting.html -%%DOCSDIR%%/connections.html -%%DOCSDIR%%/data-model.html -%%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%%/home.png -%%DOCSDIR%%/index.html -%%DOCSDIR%%/index.sgml -%%DOCSDIR%%/installation-configuring.html -%%DOCSDIR%%/installation-installing.html -%%DOCSDIR%%/installation.html -%%DOCSDIR%%/introduction.html -%%DOCSDIR%%/ix01.html -%%DOCSDIR%%/left.png -%%DOCSDIR%%/libgda-BLOBs.html -%%DOCSDIR%%/libgda-Commands.html -%%DOCSDIR%%/libgda-GdaConnection.html -%%DOCSDIR%%/libgda-GdaConnectionEvent.html -%%DOCSDIR%%/libgda-GdaDataModelIndex.html -%%DOCSDIR%%/libgda-GdaParameter.html -%%DOCSDIR%%/libgda-GdaReportDocument.html -%%DOCSDIR%%/libgda-GdaReportItem.html -%%DOCSDIR%%/libgda-GdaReportItemDetail.html -%%DOCSDIR%%/libgda-GdaReportItemLabel.html -%%DOCSDIR%%/libgda-GdaReportItemPageFooter.html -%%DOCSDIR%%/libgda-GdaReportItemPageHeader.html -%%DOCSDIR%%/libgda-GdaReportItemRepField.html -%%DOCSDIR%%/libgda-GdaReportItemReport.html -%%DOCSDIR%%/libgda-GdaReportItemReportFooter.html -%%DOCSDIR%%/libgda-GdaReportItemReportHeader.html -%%DOCSDIR%%/libgda-GdaReportItemSqlQuery.html -%%DOCSDIR%%/libgda-GdaReportResult.html -%%DOCSDIR%%/libgda-GdaReportValid.html -%%DOCSDIR%%/libgda-GdaValue.html -%%DOCSDIR%%/libgda-Libgda-Initialization.html -%%DOCSDIR%%/libgda-Logging.html -%%DOCSDIR%%/libgda-Quark-lists.html -%%DOCSDIR%%/libgda-Utility-functions.html -%%DOCSDIR%%/libgda-api.html -%%DOCSDIR%%/libgda-gda-config.html -%%DOCSDIR%%/libgda-gda-data-model-base.html -%%DOCSDIR%%/libgda-gda-report-types.html -%%DOCSDIR%%/libgda-provider-class.html -%%DOCSDIR%%/libgda-provider-recordset.html -%%DOCSDIR%%/libgda-providers.html -%%DOCSDIR%%/libgda-reports.html -%%DOCSDIR%%/libgda.devhelp -%%DOCSDIR%%/main_example.html -%%DOCSDIR%%/manage-gdavalue.html -%%DOCSDIR%%/managing-errors.html -%%DOCSDIR%%/migration-configuration.html -%%DOCSDIR%%/migration-executing-commands.html -%%DOCSDIR%%/migration.html -%%DOCSDIR%%/processing-queries.html -%%DOCSDIR%%/right.png -%%DOCSDIR%%/style.css -%%DOCSDIR%%/up.png -%%MYSQL:%%share/gnome/libgda/mysql_specs_create_db.xml -%%MYSQL:%%share/gnome/libgda/mysql_specs_dsn.xml -%%POSTGRES:%%share/gnome/libgda/postgres_specs_create_db.xml -%%POSTGRES:%%share/gnome/libgda/postgres_specs_dsn.xml -share/gnome/libgda/sqlite_specs_create_db.xml -share/gnome/libgda/sqlite_specs_dsn.xml -share/gnome/libgda/xml/gda-report.dtd -share/gnome/libgda/xml/gda-report-result.dtd -share/gnome/libgda/xml/gda-xml-query.dtd -share/gnome/libgda/xml/gda-xml-query.xsl -share/locale/az/LC_MESSAGES/libgda-3.mo -share/locale/ca/LC_MESSAGES/libgda-3.mo -share/locale/cs/LC_MESSAGES/libgda-3.mo -share/locale/da/LC_MESSAGES/libgda-3.mo -share/locale/de/LC_MESSAGES/libgda-3.mo -share/locale/el/LC_MESSAGES/libgda-3.mo -share/locale/en_CA/LC_MESSAGES/libgda-3.mo -share/locale/en_GB/LC_MESSAGES/libgda-3.mo -share/locale/es/LC_MESSAGES/libgda-3.mo -share/locale/eu/LC_MESSAGES/libgda-3.mo -share/locale/fa/LC_MESSAGES/libgda-3.mo -share/locale/fi/LC_MESSAGES/libgda-3.mo -share/locale/fr/LC_MESSAGES/libgda-3.mo -share/locale/ga/LC_MESSAGES/libgda-3.mo -share/locale/gl/LC_MESSAGES/libgda-3.mo -share/locale/hr/LC_MESSAGES/libgda-3.mo -share/locale/hu/LC_MESSAGES/libgda-3.mo -share/locale/it/LC_MESSAGES/libgda-3.mo -share/locale/ja/LC_MESSAGES/libgda-3.mo -share/locale/ko/LC_MESSAGES/libgda-3.mo -share/locale/ml/LC_MESSAGES/libgda-3.mo -share/locale/ms/LC_MESSAGES/libgda-3.mo -share/locale/nb/LC_MESSAGES/libgda-3.mo -share/locale/ne/LC_MESSAGES/libgda-3.mo -share/locale/nl/LC_MESSAGES/libgda-3.mo -share/locale/no/LC_MESSAGES/libgda-3.mo -share/locale/pl/LC_MESSAGES/libgda-3.mo -share/locale/pt/LC_MESSAGES/libgda-3.mo -share/locale/pt_BR/LC_MESSAGES/libgda-3.mo -share/locale/ru/LC_MESSAGES/libgda-3.mo -share/locale/rw/LC_MESSAGES/libgda-3.mo -share/locale/sk/LC_MESSAGES/libgda-3.mo -share/locale/sl/LC_MESSAGES/libgda-3.mo -share/locale/sq/LC_MESSAGES/libgda-3.mo -share/locale/sr/LC_MESSAGES/libgda-3.mo -share/locale/sr@Latn/LC_MESSAGES/libgda-3.mo -share/locale/sv/LC_MESSAGES/libgda-3.mo -share/locale/tr/LC_MESSAGES/libgda-3.mo -share/locale/uk/LC_MESSAGES/libgda-3.mo -share/locale/vi/LC_MESSAGES/libgda-3.mo -share/locale/zh_CN/LC_MESSAGES/libgda-3.mo -share/locale/zh_TW/LC_MESSAGES/libgda-3.mo -@unexec rmdir %D/share/locale/rw/LC_MESSAGES 2> /dev/null || true -@unexec rmdir %D/share/locale/rw 2> /dev/null || true -@dirrm share/gnome/libgda/xml -@dirrm share/gnome/libgda -@dirrm lib/libgda-%%VERSION%%/providers -@dirrm lib/libgda-%%VERSION%% -@dirrm include/libgda-%%VERSION%%/sql -@dirrm include/libgda-%%VERSION%%/libgda-report -@dirrm include/libgda-%%VERSION%%/libgda -@dirrm include/libgda-%%VERSION%% -@dirrm etc/libgda diff --git a/databases/libgdamm/Makefile b/databases/libgdamm/Makefile deleted file mode 100644 index a2ee3dbf5..000000000 --- a/databases/libgdamm/Makefile +++ /dev/null @@ -1,50 +0,0 @@ -# New ports collection makefile for: libglademm -# Date created: 1 Oct 2003 -# Whom: Alexander Nedotsukov <bland@FreeBSD.org> -# -# $FreeBSD$ -# $MCom$ -# - -PORTNAME= libgdamm -PORTVERSION= 1.3.6 -CATEGORIES= databases gnome -MASTER_SITES= ${MASTER_SITE_GNOME} -MASTER_SITE_SUBDIR= sources/${PORTNAME}/1.3 -DIST_SUBDIR= gnome2 - -MAINTAINER= bland@FreeBSD.org -COMMENT= C++ wrapper for libgda2 library - -LIB_DEPENDS= glibmm-2.4:${PORTSDIR}/devel/glibmm -BUILD_DEPENDS= gm4:${PORTSDIR}/devel/m4 - -USE_BZIP2= yes -USE_X_PREFIX= yes -USE_GCC= 3.4 -USE_GMAKE= yes -USE_REINPLACE= yes -USE_GNOME= gnomehack libgda2 -USE_INC_LIBTOOL_VER= 15 -INSTALLS_SHLIB= yes -CONFIGURE_ARGS= --enable-static - -BROKEN= "Does not build with libgda-1.3.91" - -patch-autotools: - @(cd ${PATCH_WRKSRC}; \ - for file in ${LIBTOOLFILES}; do \ - ${CP} $$file $$file.tmp; \ - ${SED} -e "/^ltmain=/s^\$$ac_aux_dir/ltmain.sh^${LTMAIN}^g" \ - $$file.tmp > $$file; \ - ${RM} $$file.tmp; \ - done); - -post-patch: - @${REINPLACE_CMD} -e "s|\(-lglibmm\)|-L\$$(GMM_PROCDIR)/../.. \1|" \ - ${WRKSRC}/tools/extra_defs_gen/Makefile.in -# remove after next update!! - @${REINPLACE_CMD} -e "s|libgda >=|libgda-2.0 >=|g" \ - ${WRKSRC}/configure - -.include <bsd.port.mk> diff --git a/databases/libgdamm/distinfo b/databases/libgdamm/distinfo deleted file mode 100644 index 00303e985..000000000 --- a/databases/libgdamm/distinfo +++ /dev/null @@ -1,2 +0,0 @@ -MD5 (gnome2/libgdamm-1.3.6.tar.bz2) = 8a44124b4249da02f287379edad4a1cb -SIZE (gnome2/libgdamm-1.3.6.tar.bz2) = 260666 diff --git a/databases/libgdamm/pkg-descr b/databases/libgdamm/pkg-descr deleted file mode 100644 index ad001fe74..000000000 --- a/databases/libgdamm/pkg-descr +++ /dev/null @@ -1,3 +0,0 @@ -This is a set of thin C++ wrappers for libgda v2 library. - -WWW: http://www.gtkmm.org/ diff --git a/databases/libgdamm/pkg-plist b/databases/libgdamm/pkg-plist deleted file mode 100644 index 63268a2b4..000000000 --- a/databases/libgdamm/pkg-plist +++ /dev/null @@ -1,46 +0,0 @@ -include/libgdamm-2.0/libgdamm.h -include/libgdamm-2.0/libgdamm/client.h -include/libgdamm-2.0/libgdamm/command.h -include/libgdamm-2.0/libgdamm/config.h -include/libgdamm-2.0/libgdamm/connection.h -include/libgdamm-2.0/libgdamm/datamodel.h -include/libgdamm-2.0/libgdamm/datasourceinfo.h -include/libgdamm-2.0/libgdamm/error.h -include/libgdamm-2.0/libgdamm/fieldattributes.h -include/libgdamm-2.0/libgdamm/init.h -include/libgdamm-2.0/libgdamm/parameter.h -include/libgdamm-2.0/libgdamm/parameterlist.h -include/libgdamm-2.0/libgdamm/private/client_p.h -include/libgdamm-2.0/libgdamm/private/command_p.h -include/libgdamm-2.0/libgdamm/private/connection_p.h -include/libgdamm-2.0/libgdamm/private/datamodel_p.h -include/libgdamm-2.0/libgdamm/private/datasourceinfo_p.h -include/libgdamm-2.0/libgdamm/private/error_p.h -include/libgdamm-2.0/libgdamm/private/fieldattributes_p.h -include/libgdamm-2.0/libgdamm/private/parameter_p.h -include/libgdamm-2.0/libgdamm/private/parameterlist_p.h -include/libgdamm-2.0/libgdamm/private/providerinfo_p.h -include/libgdamm-2.0/libgdamm/private/row_p.h -include/libgdamm-2.0/libgdamm/private/serverprovider_p.h -include/libgdamm-2.0/libgdamm/private/transaction_p.h -include/libgdamm-2.0/libgdamm/private/value_p.h -include/libgdamm-2.0/libgdamm/providerinfo.h -include/libgdamm-2.0/libgdamm/row.h -include/libgdamm-2.0/libgdamm/serverprovider.h -include/libgdamm-2.0/libgdamm/transaction.h -include/libgdamm-2.0/libgdamm/value.h -include/libgdamm-2.0/libgdamm/wrap_init.h -lib/libgdamm-1.3.a -lib/libgdamm-1.3.so -lib/libgdamm-1.3.so.7 -lib/libgdamm-2.0/include/libgdammconfig.h -lib/libgdamm-2.0/proc/m4/convert.m4 -lib/libgdamm-2.0/proc/m4/convert_libgdamm.m4 -libdata/pkgconfig/libgdamm-2.0.pc -@dirrm lib/libgdamm-2.0/include -@dirrm lib/libgdamm-2.0/proc/m4 -@dirrm lib/libgdamm-2.0/proc -@dirrm lib/libgdamm-2.0 -@dirrm include/libgdamm-2.0/libgdamm/private -@dirrm include/libgdamm-2.0/libgdamm -@dirrm include/libgdamm-2.0 diff --git a/databases/libgnomedb/Makefile b/databases/libgnomedb/Makefile deleted file mode 100644 index dd663e8bf..000000000 --- a/databases/libgnomedb/Makefile +++ /dev/null @@ -1,34 +0,0 @@ -# New ports collection makefile for: libgnomedb -# Date created: 02 June 2002 -# Whom: Joe Marcus Clarke <marcus@FreeBSD.org> -# -# $FreeBSD$ -# $MCom: ports/databases/libgnomedb/Makefile,v 1.24 2005/08/10 19:38:53 marcus Exp $ -# - -PORTNAME= libgnomedb -PORTVERSION= 1.9.100 -CATEGORIES= databases gnome -MASTER_SITES= ${MASTER_SITE_GNOME} -MASTER_SITE_SUBDIR= sources/${PORTNAME}/${PORTVERSION:R} -DIST_SUBDIR= gnome2 - -MAINTAINER= gnome@FreeBSD.org -COMMENT= Library components for the GNOME database frontend - -USE_BZIP2= yes -USE_X_PREFIX= yes -USE_GMAKE= yes -USE_GNOME= gnomeprefix gnomehack libgnomeui libgda2 gtksourceview \ - intlhack -USE_AUTOTOOLS= libtool:15 -INSTALLS_OMF= yes -INSTALLS_SHLIB= yes -CONFIGURE_ENV= CPPFLAGS="-I${LOCALBASE}/include" \ - LDFLAGS="-L${LOCALBASE}/lib" - -GCONF_SCHEMAS= libgnomedb.schemas - -PLIST_SUB= VERSION=${PORTVERSION:R} - -.include <bsd.port.mk> diff --git a/databases/libgnomedb/distinfo b/databases/libgnomedb/distinfo deleted file mode 100644 index e89f4255f..000000000 --- a/databases/libgnomedb/distinfo +++ /dev/null @@ -1,2 +0,0 @@ -MD5 (gnome2/libgnomedb-1.9.100.tar.bz2) = a98ac52f084b1b0abad6b2c53ec034cc -SIZE (gnome2/libgnomedb-1.9.100.tar.bz2) = 2192360 diff --git a/databases/libgnomedb/files/patch-Makefile.in b/databases/libgnomedb/files/patch-Makefile.in deleted file mode 100644 index d0890cf04..000000000 --- a/databases/libgnomedb/files/patch-Makefile.in +++ /dev/null @@ -1,19 +0,0 @@ ---- Makefile.in.orig Thu Oct 13 15:59:10 2005 -+++ Makefile.in Thu Oct 13 16:00:04 2005 -@@ -290,15 +290,13 @@ - @BUILD_GNOMEDB_SHARP_TRUE@GNOME_DIRECTORY = gnomedb-sharp - @BUILD_WITH_GNOME_FALSE@GNOME_DIRECTORY = - @BUILD_WITH_GNOME_TRUE@GNOME_DIRECTORY = control-center --@ENABLE_GTK_DOC_FALSE@DOC_DIRECTORY = --@ENABLE_GTK_DOC_TRUE@DOC_DIRECTORY = doc -+DOC_DIRECTORY = doc - SUBDIRS = \ - po \ - libgnomedb \ - $(LIBGLADE_DIRECTORY) \ - $(GNOME_DIRECTORY) \ - $(GNOMEDB_SHARP_DIRECTORY) \ -- testing \ - extra \ - examples \ - $(DOC_DIRECTORY) \ diff --git a/databases/libgnomedb/files/patch-doc::libgnomedb-C.omf.in b/databases/libgnomedb/files/patch-doc::libgnomedb-C.omf.in deleted file mode 100644 index e51ccfd6b..000000000 --- a/databases/libgnomedb/files/patch-doc::libgnomedb-C.omf.in +++ /dev/null @@ -1,11 +0,0 @@ ---- doc/libgnomedb-C.omf.in.orig Thu Oct 2 12:15:36 2003 -+++ doc/libgnomedb-C.omf.in Thu Oct 2 12:15:52 2003 -@@ -15,7 +15,7 @@ - </description> - <type>user's guide</type> - <format mime="text/html"/> -- <identifier url="file:/@prefix@/share/gtk-doc/html/libgnomedb/index.html"/> -+ <identifier url="file:/@prefix@/share/doc/libgnomedb/index.html"/> - <language code="C"/> - <relation seriesid="0c3a2de2-d4ca-11d6-8994-cd3caececda4"/> - <rights type="GNU FDL" license.version="1.1"/> diff --git a/databases/libgnomedb/files/patch-doc_C_Makefile.in b/databases/libgnomedb/files/patch-doc_C_Makefile.in deleted file mode 100644 index 448aad656..000000000 --- a/databases/libgnomedb/files/patch-doc_C_Makefile.in +++ /dev/null @@ -1,11 +0,0 @@ ---- doc/C/Makefile.in.orig Tue Jun 7 16:57:58 2005 -+++ doc/C/Makefile.in Tue Jun 7 16:58:27 2005 -@@ -119,7 +119,7 @@ - HAVE_GTKSOURCEVIEW_TRUE = @HAVE_GTKSOURCEVIEW_TRUE@ - HAVE_LIBGLADE_FALSE = @HAVE_LIBGLADE_FALSE@ - HAVE_LIBGLADE_TRUE = @HAVE_LIBGLADE_TRUE@ --HTML_DIR = $(datadir)/gtk-doc/html -+HTML_DIR = $(prefix)/share/doc - INSTALL_DATA = @INSTALL_DATA@ - INSTALL_PROGRAM = @INSTALL_PROGRAM@ - INSTALL_SCRIPT = @INSTALL_SCRIPT@ diff --git a/databases/libgnomedb/files/patch-po::Makefile.in.in b/databases/libgnomedb/files/patch-po::Makefile.in.in deleted file mode 100644 index 2e0e6e70e..000000000 --- a/databases/libgnomedb/files/patch-po::Makefile.in.in +++ /dev/null @@ -1,10 +0,0 @@ ---- po/Makefile.in.in.orig Thu Jul 22 11:06:21 2004 -+++ po/Makefile.in.in Thu Jul 22 11:06:58 2004 -@@ -35,6 +35,7 @@ - - INSTALL = @INSTALL@ - INSTALL_DATA = @INSTALL_DATA@ -+mkinstalldirs = $(SHELL) $(top_srcdir)/mkinstalldirs - - CC = @CC@ - GENCAT = @GENCAT@ diff --git a/databases/libgnomedb/pkg-descr b/databases/libgnomedb/pkg-descr deleted file mode 100644 index 0ef0c27be..000000000 --- a/databases/libgnomedb/pkg-descr +++ /dev/null @@ -1,4 +0,0 @@ -libgnomedb is the library backend for universal database access for the GNOME -2.0 environment. - -WWW: http://www.gnome-db.org/ diff --git a/databases/libgnomedb/pkg-plist b/databases/libgnomedb/pkg-plist deleted file mode 100644 index ae8277b86..000000000 --- a/databases/libgnomedb/pkg-plist +++ /dev/null @@ -1,400 +0,0 @@ -bin/gnome-database-properties -bin/gnome-db-browser -bin/gnome-db-test-parser -bin/gnome-db-verify-file -include/libgnomedb-%%VERSION%%/libgnomedb/gnome-db-base.h -include/libgnomedb-%%VERSION%%/libgnomedb/gnome-db-basic-form.h -include/libgnomedb-%%VERSION%%/libgnomedb/gnome-db-combo.h -include/libgnomedb-%%VERSION%%/libgnomedb/gnome-db-condition.h -include/libgnomedb-%%VERSION%%/libgnomedb/gnome-db-connection-properties.h -include/libgnomedb-%%VERSION%%/libgnomedb/gnome-db-constraint.h -include/libgnomedb-%%VERSION%%/libgnomedb/gnome-db-custom-layout.h -include/libgnomedb-%%VERSION%%/libgnomedb/gnome-db-data-entry.h -include/libgnomedb-%%VERSION%%/libgnomedb/gnome-db-data-handler.h -include/libgnomedb-%%VERSION%%/libgnomedb/gnome-db-data-model.h -include/libgnomedb-%%VERSION%%/libgnomedb/gnome-db-data-proxy.h -include/libgnomedb-%%VERSION%%/libgnomedb/gnome-db-data-set.h -include/libgnomedb-%%VERSION%%/libgnomedb/gnome-db-data-source-selector.h -include/libgnomedb-%%VERSION%%/libgnomedb/gnome-db-data-widget.h -include/libgnomedb-%%VERSION%%/libgnomedb/gnome-db-database.h -include/libgnomedb-%%VERSION%%/libgnomedb/gnome-db-dbms-update-viewer.h -include/libgnomedb-%%VERSION%%/libgnomedb/gnome-db-decl.h -include/libgnomedb-%%VERSION%%/libgnomedb/gnome-db-dict.h -include/libgnomedb-%%VERSION%%/libgnomedb/gnome-db-dsn-config-druid.h -include/libgnomedb-%%VERSION%%/libgnomedb/gnome-db-dsn-config.h -include/libgnomedb-%%VERSION%%/libgnomedb/gnome-db-dsn-spec.h -include/libgnomedb-%%VERSION%%/libgnomedb/gnome-db-editor.h -include/libgnomedb-%%VERSION%%/libgnomedb/gnome-db-entity.h -include/libgnomedb-%%VERSION%%/libgnomedb/gnome-db-enums.h -include/libgnomedb-%%VERSION%%/libgnomedb/gnome-db-error-dialog.h -include/libgnomedb-%%VERSION%%/libgnomedb/gnome-db-error.h -include/libgnomedb-%%VERSION%%/libgnomedb/gnome-db-field.h -include/libgnomedb-%%VERSION%%/libgnomedb/gnome-db-find-dialog.h -include/libgnomedb-%%VERSION%%/libgnomedb/gnome-db-form.h -include/libgnomedb-%%VERSION%%/libgnomedb/gnome-db-graphviz.h -include/libgnomedb-%%VERSION%%/libgnomedb/gnome-db-gray-bar.h -include/libgnomedb-%%VERSION%%/libgnomedb/gnome-db-grid.h -include/libgnomedb-%%VERSION%%/libgnomedb/gnome-db-join.h -include/libgnomedb-%%VERSION%%/libgnomedb/gnome-db-layout.h -include/libgnomedb-%%VERSION%%/libgnomedb/gnome-db-login-dialog.h -include/libgnomedb-%%VERSION%%/libgnomedb/gnome-db-login.h -include/libgnomedb-%%VERSION%%/libgnomedb/gnome-db-matrix.h -include/libgnomedb-%%VERSION%%/libgnomedb/gnome-db-model-wrapper.h -include/libgnomedb-%%VERSION%%/libgnomedb/gnome-db-parameter.h -include/libgnomedb-%%VERSION%%/libgnomedb/gnome-db-provider-selector.h -include/libgnomedb-%%VERSION%%/libgnomedb/gnome-db-qf-agg.h -include/libgnomedb-%%VERSION%%/libgnomedb/gnome-db-qf-all.h -include/libgnomedb-%%VERSION%%/libgnomedb/gnome-db-qf-field.h -include/libgnomedb-%%VERSION%%/libgnomedb/gnome-db-qf-func.h -include/libgnomedb-%%VERSION%%/libgnomedb/gnome-db-qf-value.h -include/libgnomedb-%%VERSION%%/libgnomedb/gnome-db-qfield.h -include/libgnomedb-%%VERSION%%/libgnomedb/gnome-db-query-parsing.h -include/libgnomedb-%%VERSION%%/libgnomedb/gnome-db-query-private.h -include/libgnomedb-%%VERSION%%/libgnomedb/gnome-db-query.h -include/libgnomedb-%%VERSION%%/libgnomedb/gnome-db-ref-base.h -include/libgnomedb-%%VERSION%%/libgnomedb/gnome-db-referer.h -include/libgnomedb-%%VERSION%%/libgnomedb/gnome-db-renderer.h -include/libgnomedb-%%VERSION%%/libgnomedb/gnome-db-report-editor.h -include/libgnomedb-%%VERSION%%/libgnomedb/gnome-db-result-set.h -include/libgnomedb-%%VERSION%%/libgnomedb/gnome-db-selector-private.h -include/libgnomedb-%%VERSION%%/libgnomedb/gnome-db-selector.h -include/libgnomedb-%%VERSION%%/libgnomedb/gnome-db-server-aggregate.h -include/libgnomedb-%%VERSION%%/libgnomedb/gnome-db-server-data-type.h -include/libgnomedb-%%VERSION%%/libgnomedb/gnome-db-server-function.h -include/libgnomedb-%%VERSION%%/libgnomedb/gnome-db-server-info.h -include/libgnomedb-%%VERSION%%/libgnomedb/gnome-db-server.h -include/libgnomedb-%%VERSION%%/libgnomedb/gnome-db-sql-console.h -include/libgnomedb-%%VERSION%%/libgnomedb/gnome-db-stock.h -include/libgnomedb-%%VERSION%%/libgnomedb/gnome-db-table-editor.h -include/libgnomedb-%%VERSION%%/libgnomedb/gnome-db-table-field.h -include/libgnomedb-%%VERSION%%/libgnomedb/gnome-db-table.h -include/libgnomedb-%%VERSION%%/libgnomedb/gnome-db-target.h -include/libgnomedb-%%VERSION%%/libgnomedb/gnome-db-wrapper-field.h -include/libgnomedb-%%VERSION%%/libgnomedb/gnome-db-xml-storage.h -include/libgnomedb-%%VERSION%%/libgnomedb/graph/gnome-db-canvas-cursor.h -include/libgnomedb-%%VERSION%%/libgnomedb/graph/gnome-db-canvas-db-relations.h -include/libgnomedb-%%VERSION%%/libgnomedb/graph/gnome-db-canvas-entity.h -include/libgnomedb-%%VERSION%%/libgnomedb/graph/gnome-db-canvas-field.h -include/libgnomedb-%%VERSION%%/libgnomedb/graph/gnome-db-canvas-fkconstraint.h -include/libgnomedb-%%VERSION%%/libgnomedb/graph/gnome-db-canvas-item.h -include/libgnomedb-%%VERSION%%/libgnomedb/graph/gnome-db-canvas-join.h -include/libgnomedb-%%VERSION%%/libgnomedb/graph/gnome-db-canvas-query-struct.h -include/libgnomedb-%%VERSION%%/libgnomedb/graph/gnome-db-canvas-text.h -include/libgnomedb-%%VERSION%%/libgnomedb/graph/gnome-db-canvas-tip.h -include/libgnomedb-%%VERSION%%/libgnomedb/graph/gnome-db-canvas.h -include/libgnomedb-%%VERSION%%/libgnomedb/graph/gnome-db-graph-item.h -include/libgnomedb-%%VERSION%%/libgnomedb/graph/gnome-db-graph-query.h -include/libgnomedb-%%VERSION%%/libgnomedb/graph/gnome-db-graph.h -include/libgnomedb-%%VERSION%%/libgnomedb/graph/graph-utility.h -include/libgnomedb-%%VERSION%%/libgnomedb/handlers/gnome-db-data-cell-renderer-boolean.h -include/libgnomedb-%%VERSION%%/libgnomedb/handlers/gnome-db-data-cell-renderer-combo.h -include/libgnomedb-%%VERSION%%/libgnomedb/handlers/gnome-db-data-cell-renderer-info.h -include/libgnomedb-%%VERSION%%/libgnomedb/handlers/gnome-db-data-cell-renderer-textual.h -include/libgnomedb-%%VERSION%%/libgnomedb/handlers/gnome-db-entry-boolean.h -include/libgnomedb-%%VERSION%%/libgnomedb/handlers/gnome-db-entry-combo.h -include/libgnomedb-%%VERSION%%/libgnomedb/handlers/gnome-db-entry-none.h -include/libgnomedb-%%VERSION%%/libgnomedb/handlers/gnome-db-entry-shell.h -include/libgnomedb-%%VERSION%%/libgnomedb/handlers/gnome-db-entry-string.h -include/libgnomedb-%%VERSION%%/libgnomedb/handlers/gnome-db-entry-time.h -include/libgnomedb-%%VERSION%%/libgnomedb/handlers/gnome-db-entry-wrapper.h -include/libgnomedb-%%VERSION%%/libgnomedb/handlers/gnome-db-handler-boolean.h -include/libgnomedb-%%VERSION%%/libgnomedb/handlers/gnome-db-handler-none.h -include/libgnomedb-%%VERSION%%/libgnomedb/handlers/gnome-db-handler-numerical.h -include/libgnomedb-%%VERSION%%/libgnomedb/handlers/gnome-db-handler-string.h -include/libgnomedb-%%VERSION%%/libgnomedb/handlers/gnome-db-handler-time.h -include/libgnomedb-%%VERSION%%/libgnomedb/libgnomedb.h -include/libgnomedb-%%VERSION%%/libgnomedb/parser/gnome-db-sql-parser.h -include/libgnomedb-%%VERSION%%/libgnomedb/sel-aggregates.h -include/libgnomedb-%%VERSION%%/libgnomedb/sel-data-types.h -include/libgnomedb-%%VERSION%%/libgnomedb/sel-forms.h -include/libgnomedb-%%VERSION%%/libgnomedb/sel-functions.h -include/libgnomedb-%%VERSION%%/libgnomedb/sel-graphs.h -include/libgnomedb-%%VERSION%%/libgnomedb/sel-onequery.h -include/libgnomedb-%%VERSION%%/libgnomedb/sel-onetable.h -include/libgnomedb-%%VERSION%%/libgnomedb/sel-onetarget.h -include/libgnomedb-%%VERSION%%/libgnomedb/sel-queries.h -include/libgnomedb-%%VERSION%%/libgnomedb/sel-tables.h -lib/libglade/2.0/libgnomedb.so -lib/libgnomedb-3.a -lib/libgnomedb-3.so -lib/libgnomedb-3.so.4 -lib/libgnomedb/plugins/libgnomedb_handler_cidr.so -lib/libgnomedb/plugins/libgnomedb_handler_cidr.so.4 -lib/libgnomedb/plugins/libgnomedb_handler_filesel.so -lib/libgnomedb/plugins/libgnomedb_handler_filesel.so.4 -lib/libgnomedb/plugins/libgnomedb_handler_passmd5.so -lib/libgnomedb/plugins/libgnomedb_handler_passmd5.so.4 -lib/libgnomedb/plugins/libgnomedb_handler_text.so -lib/libgnomedb/plugins/libgnomedb_handler_text.so.4 -lib/libgnomedb_graph-3.a -lib/libgnomedb_graph-3.so -lib/libgnomedb_graph-3.so.4 -lib/libgnomedb_handlers-3.a -lib/libgnomedb_handlers-3.so -lib/libgnomedb_handlers-3.so.4 -lib/libgnomedb_parser-3.a -lib/libgnomedb_parser-3.so -lib/libgnomedb_parser-3.so.4 -libdata/pkgconfig/libgnomedb-2.0.pc -%%DOCSDIR%%/GnomeDbBase.html -%%DOCSDIR%%/GnomeDbBasicForm.html -%%DOCSDIR%%/GnomeDbCanvas.html -%%DOCSDIR%%/GnomeDbCanvasCursor.html -%%DOCSDIR%%/GnomeDbCanvasDbRelations.html -%%DOCSDIR%%/GnomeDbCanvasEntity.html -%%DOCSDIR%%/GnomeDbCanvasField.html -%%DOCSDIR%%/GnomeDbCanvasItem.html -%%DOCSDIR%%/GnomeDbCanvasJoin.html -%%DOCSDIR%%/GnomeDbCanvasQueryStruct.html -%%DOCSDIR%%/GnomeDbCanvasText.html -%%DOCSDIR%%/GnomeDbCanvasTip.html -%%DOCSDIR%%/GnomeDbCombo.html -%%DOCSDIR%%/GnomeDbCondition.html -%%DOCSDIR%%/GnomeDbConstraint.html -%%DOCSDIR%%/GnomeDbDataCellRendererBoolean.html -%%DOCSDIR%%/GnomeDbDataCellRendererCombo.html -%%DOCSDIR%%/GnomeDbDataCellRendererInfo.html -%%DOCSDIR%%/GnomeDbDataCellRendererTextual.html -%%DOCSDIR%%/GnomeDbDataEntry.html -%%DOCSDIR%%/GnomeDbDataHandler.html -%%DOCSDIR%%/GnomeDbDataModel.html -%%DOCSDIR%%/GnomeDbDataProxy.html -%%DOCSDIR%%/GnomeDbDataSet.html -%%DOCSDIR%%/GnomeDbDataWidget.html -%%DOCSDIR%%/GnomeDbDatabase.html -%%DOCSDIR%%/GnomeDbDict.html -%%DOCSDIR%%/GnomeDbEntity.html -%%DOCSDIR%%/GnomeDbEntryBoolean.html -%%DOCSDIR%%/GnomeDbEntryCidr.html -%%DOCSDIR%%/GnomeDbEntryCombo.html -%%DOCSDIR%%/GnomeDbEntryNone.html -%%DOCSDIR%%/GnomeDbEntryPassmd5.html -%%DOCSDIR%%/GnomeDbEntryShell.html -%%DOCSDIR%%/GnomeDbEntryString.html -%%DOCSDIR%%/GnomeDbEntryTime.html -%%DOCSDIR%%/GnomeDbEntryWrapper.html -%%DOCSDIR%%/GnomeDbField.html -%%DOCSDIR%%/GnomeDbForm.html -%%DOCSDIR%%/GnomeDbGraph.html -%%DOCSDIR%%/GnomeDbGraphItem.html -%%DOCSDIR%%/GnomeDbGraphQuery.html -%%DOCSDIR%%/GnomeDbGraphviz.html -%%DOCSDIR%%/GnomeDbGrid.html -%%DOCSDIR%%/GnomeDbHandlerBoolean.html -%%DOCSDIR%%/GnomeDbHandlerCidr.html -%%DOCSDIR%%/GnomeDbHandlerNone.html -%%DOCSDIR%%/GnomeDbHandlerNumerical.html -%%DOCSDIR%%/GnomeDbHandlerPassmd5.html -%%DOCSDIR%%/GnomeDbHandlerString.html -%%DOCSDIR%%/GnomeDbHandlerText.html -%%DOCSDIR%%/GnomeDbHandlerTime.html -%%DOCSDIR%%/GnomeDbJoin.html -%%DOCSDIR%%/GnomeDbLayout.html -%%DOCSDIR%%/GnomeDbMatrix.html -%%DOCSDIR%%/GnomeDbModelWrapper.html -%%DOCSDIR%%/GnomeDbParameter.html -%%DOCSDIR%%/GnomeDbQfAgg.html -%%DOCSDIR%%/GnomeDbQfAll.html -%%DOCSDIR%%/GnomeDbQfField.html -%%DOCSDIR%%/GnomeDbQfFunc.html -%%DOCSDIR%%/GnomeDbQfValue.html -%%DOCSDIR%%/GnomeDbQfield.html -%%DOCSDIR%%/GnomeDbQuery.html -%%DOCSDIR%%/GnomeDbRefBase.html -%%DOCSDIR%%/GnomeDbReferer.html -%%DOCSDIR%%/GnomeDbRenderer.html -%%DOCSDIR%%/GnomeDbResultSet.html -%%DOCSDIR%%/GnomeDbSelector.html -%%DOCSDIR%%/GnomeDbServer.html -%%DOCSDIR%%/GnomeDbServerAggregate.html -%%DOCSDIR%%/GnomeDbServerDataType.html -%%DOCSDIR%%/GnomeDbServerFunction.html -%%DOCSDIR%%/GnomeDbSqlConsole.html -%%DOCSDIR%%/GnomeDbTable.html -%%DOCSDIR%%/GnomeDbTableField.html -%%DOCSDIR%%/GnomeDbTarget.html -%%DOCSDIR%%/GnomeDbWrapperField.html -%%DOCSDIR%%/GnomeDbXmlStorage.html -%%DOCSDIR%%/GnomeDbmsUpdateViewer.html -%%DOCSDIR%%/advanced-widgets.html -%%DOCSDIR%%/ch02.html -%%DOCSDIR%%/ch04s02.html -%%DOCSDIR%%/ch04s03.html -%%DOCSDIR%%/ch05.html -%%DOCSDIR%%/ch10.html -%%DOCSDIR%%/ch11.html -%%DOCSDIR%%/ch12.html -%%DOCSDIR%%/ch13.html -%%DOCSDIR%%/ch14.html -%%DOCSDIR%%/ch15.html -%%DOCSDIR%%/ch15s02.html -%%DOCSDIR%%/ch16.html -%%DOCSDIR%%/ch17.html -%%DOCSDIR%%/ch21.html -%%DOCSDIR%%/data-models.html -%%DOCSDIR%%/databound-widgets.html -%%DOCSDIR%%/dsn-widgets.html -%%DOCSDIR%%/error-widgets.html -%%DOCSDIR%%/example_bad.png -%%DOCSDIR%%/example_result.png -%%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%%/gnome-db-canvas-db-relations.png -%%DOCSDIR%%/gnome-db-canvas-query-struct.png -%%DOCSDIR%%/gnome-db-combo.png -%%DOCSDIR%%/gnome-db-console.png -%%DOCSDIR%%/gnome-db-editor.png -%%DOCSDIR%%/gnome-db-form.png -%%DOCSDIR%%/gnome-db-grid.png -%%DOCSDIR%%/gnome-db-selector.png -%%DOCSDIR%%/gnome-dbms-update-viewer.png -%%DOCSDIR%%/home.png -%%DOCSDIR%%/index.html -%%DOCSDIR%%/index.sgml -%%DOCSDIR%%/ix01.html -%%DOCSDIR%%/left.png -%%DOCSDIR%%/libgnomedb-GnomeDbConnectionProperties.html -%%DOCSDIR%%/libgnomedb-GnomeDbCustomLayout.html -%%DOCSDIR%%/libgnomedb-GnomeDbDataSourceSelector.html -%%DOCSDIR%%/libgnomedb-GnomeDbDsnConfig.html -%%DOCSDIR%%/libgnomedb-GnomeDbDsnConfigDruid.html -%%DOCSDIR%%/libgnomedb-GnomeDbDsnSpec.html -%%DOCSDIR%%/libgnomedb-GnomeDbEditor.html -%%DOCSDIR%%/libgnomedb-GnomeDbError.html -%%DOCSDIR%%/libgnomedb-GnomeDbErrorDialog.html -%%DOCSDIR%%/libgnomedb-GnomeDbFindDialog.html -%%DOCSDIR%%/libgnomedb-GnomeDbGrayBar.html -%%DOCSDIR%%/libgnomedb-GnomeDbLogin.html -%%DOCSDIR%%/libgnomedb-GnomeDbLoginDialog.html -%%DOCSDIR%%/libgnomedb-GnomeDbProviderSelector.html -%%DOCSDIR%%/libgnomedb-GnomeDbReportEditor.html -%%DOCSDIR%%/libgnomedb-GnomeDbTableEditor.html -%%DOCSDIR%%/libgnomedb-List-of-enumerated.html -%%DOCSDIR%%/libgnomedb-basic.html -%%DOCSDIR%%/libgnomedb-example.html -%%DOCSDIR%%/libgnomedb-gnome-db-stock.html -%%DOCSDIR%%/libgnomedb-introduction.html -%%DOCSDIR%%/libgnomedb-libgnomedb.html -%%DOCSDIR%%/libgnomedb.devhelp -%%DOCSDIR%%/pt01.html -%%DOCSDIR%%/pt02.html -%%DOCSDIR%%/pt03.html -%%DOCSDIR%%/pt04.html -%%DOCSDIR%%/pt05.html -%%DOCSDIR%%/query01.png -%%DOCSDIR%%/right.png -%%DOCSDIR%%/sampleapp1.png -%%DOCSDIR%%/sampleapp2.png -%%DOCSDIR%%/sampleapp3.png -%%DOCSDIR%%/sampleapp4.png -%%DOCSDIR%%/style.css -%%DOCSDIR%%/up.png -%%DOCSDIR%%/various.html -%%DOCSDIR%%/various_int.html -share/gnome/applications/database-properties.desktop -share/gnome/libgnomedb/dtd/libgnomedb-dict.dtd -share/gnome/mime-info/libgnomedb.keys -share/gnome/mime-info/libgnomedb.mime -share/gnome/omf/libgnomedb/libgnomedb-C.omf -share/gnome/pixmaps/libgnomedb/gnome-db-aggregates_16x16.png -share/gnome/pixmaps/libgnomedb/gnome-db-aggregates_24x24.png -share/gnome/pixmaps/libgnomedb/gnome-db-commit_24x24.png -share/gnome/pixmaps/libgnomedb/gnome-db-connect_24x24.png -share/gnome/pixmaps/libgnomedb/gnome-db-database-login_48x48.png -share/gnome/pixmaps/libgnomedb/gnome-db-database_16x16.png -share/gnome/pixmaps/libgnomedb/gnome-db-database_24x24.png -share/gnome/pixmaps/libgnomedb/gnome-db-database_48x48.png -share/gnome/pixmaps/libgnomedb/gnome-db-designer_24x24.png -share/gnome/pixmaps/libgnomedb/gnome-db-disconnect_24x24.png -share/gnome/pixmaps/libgnomedb/gnome-db-field_16x16.png -share/gnome/pixmaps/libgnomedb/gnome-db-indexes_16x16.png -share/gnome/pixmaps/libgnomedb/gnome-db-no-transaction_24x24.png -share/gnome/pixmaps/libgnomedb/gnome-db-procedures_16x16.png -share/gnome/pixmaps/libgnomedb/gnome-db-procedures_24x24.png -share/gnome/pixmaps/libgnomedb/gnome-db-query_16x16.png -share/gnome/pixmaps/libgnomedb/gnome-db-query_24x24.png -share/gnome/pixmaps/libgnomedb/gnome-db-relations_16x16.png -share/gnome/pixmaps/libgnomedb/gnome-db-relations_24x24.png -share/gnome/pixmaps/libgnomedb/gnome-db-rollback_24x24.png -share/gnome/pixmaps/libgnomedb/gnome-db-sequences_16x16.png -share/gnome/pixmaps/libgnomedb/gnome-db-sequences_24x24.png -share/gnome/pixmaps/libgnomedb/gnome-db-sql_16x16.png -share/gnome/pixmaps/libgnomedb/gnome-db-sql_24x24.png -share/gnome/pixmaps/libgnomedb/gnome-db-table_16x16.png -share/gnome/pixmaps/libgnomedb/gnome-db-tables_16x16.png -share/gnome/pixmaps/libgnomedb/gnome-db-tables_24x24.png -share/gnome/pixmaps/libgnomedb/gnome-db-triggers_16x16.png -share/gnome/pixmaps/libgnomedb/gnome-db-types_16x16.png -share/gnome/pixmaps/libgnomedb/gnome-db-types_24x24.png -share/gnome/pixmaps/libgnomedb/gnome-db-views_16x16.png -share/gnome/pixmaps/libgnomedb/gnome-db-within-transaction_24x24.png -share/gnome/pixmaps/libgnomedb/gnome-db.png -share/locale/az/LC_MESSAGES/libgnomedb-3.mo -share/locale/be/LC_MESSAGES/libgnomedb-3.mo -share/locale/ca/LC_MESSAGES/libgnomedb-3.mo -share/locale/cs/LC_MESSAGES/libgnomedb-3.mo -share/locale/da/LC_MESSAGES/libgnomedb-3.mo -share/locale/de/LC_MESSAGES/libgnomedb-3.mo -share/locale/el/LC_MESSAGES/libgnomedb-3.mo -share/locale/en_CA/LC_MESSAGES/libgnomedb-3.mo -share/locale/en_GB/LC_MESSAGES/libgnomedb-3.mo -share/locale/es/LC_MESSAGES/libgnomedb-3.mo -share/locale/eu/LC_MESSAGES/libgnomedb-3.mo -share/locale/fa/LC_MESSAGES/libgnomedb-3.mo -share/locale/fi/LC_MESSAGES/libgnomedb-3.mo -share/locale/fr/LC_MESSAGES/libgnomedb-3.mo -share/locale/ga/LC_MESSAGES/libgnomedb-3.mo -share/locale/gl/LC_MESSAGES/libgnomedb-3.mo -share/locale/hr/LC_MESSAGES/libgnomedb-3.mo -share/locale/hu/LC_MESSAGES/libgnomedb-3.mo -share/locale/it/LC_MESSAGES/libgnomedb-3.mo -share/locale/ja/LC_MESSAGES/libgnomedb-3.mo -share/locale/ka/LC_MESSAGES/libgnomedb-3.mo -share/locale/ko/LC_MESSAGES/libgnomedb-3.mo -share/locale/ml/LC_MESSAGES/libgnomedb-3.mo -share/locale/ms/LC_MESSAGES/libgnomedb-3.mo -share/locale/nb/LC_MESSAGES/libgnomedb-3.mo -share/locale/ne/LC_MESSAGES/libgnomedb-3.mo -share/locale/nl/LC_MESSAGES/libgnomedb-3.mo -share/locale/no/LC_MESSAGES/libgnomedb-3.mo -share/locale/pl/LC_MESSAGES/libgnomedb-3.mo -share/locale/pt/LC_MESSAGES/libgnomedb-3.mo -share/locale/pt_BR/LC_MESSAGES/libgnomedb-3.mo -share/locale/ru/LC_MESSAGES/libgnomedb-3.mo -share/locale/rw/LC_MESSAGES/libgnomedb-3.mo -share/locale/sk/LC_MESSAGES/libgnomedb-3.mo -share/locale/sl/LC_MESSAGES/libgnomedb-3.mo -share/locale/sq/LC_MESSAGES/libgnomedb-3.mo -share/locale/sr/LC_MESSAGES/libgnomedb-3.mo -share/locale/sr@Latn/LC_MESSAGES/libgnomedb-3.mo -share/locale/sv/LC_MESSAGES/libgnomedb-3.mo -share/locale/ta/LC_MESSAGES/libgnomedb-3.mo -share/locale/tr/LC_MESSAGES/libgnomedb-3.mo -share/locale/uk/LC_MESSAGES/libgnomedb-3.mo -share/locale/vi/LC_MESSAGES/libgnomedb-3.mo -share/locale/zh_CN/LC_MESSAGES/libgnomedb-3.mo -share/locale/zh_TW/LC_MESSAGES/libgnomedb-3.mo -@unexec rmdir %D/share/locale/rw/LC_MESSAGES 2> /dev/null || true -@unexec rmdir %D/share/locale/rw 2> /dev/null || true -@dirrm share/gnome/pixmaps/libgnomedb -@dirrm share/gnome/omf/libgnomedb -@dirrm share/gnome/libgnomedb/dtd -@dirrm share/gnome/libgnomedb -@dirrm %%DOCSDIR%% -@dirrm lib/libgnomedb/plugins -@dirrm lib/libgnomedb -@dirrm include/libgnomedb-%%VERSION%%/libgnomedb/parser -@dirrm include/libgnomedb-%%VERSION%%/libgnomedb/handlers -@dirrm include/libgnomedb-%%VERSION%%/libgnomedb/graph -@dirrm include/libgnomedb-%%VERSION%%/libgnomedb -@dirrm include/libgnomedb-%%VERSION%% diff --git a/databases/mergeant/Makefile b/databases/mergeant/Makefile deleted file mode 100644 index 45de00942..000000000 --- a/databases/mergeant/Makefile +++ /dev/null @@ -1,31 +0,0 @@ -# New ports collection makefile for: mergeant -# Date created: 14 September 2002 -# Whom: Joe Marcus Clarke <marcus@FreeBSD.org> -# -# $FreeBSD$ -# $MCom: ports/databases/mergeant/Makefile,v 1.14 2005/07/12 04:25:56 marcus Exp $ -# - -PORTNAME= mergeant -PORTVERSION= 0.62 -CATEGORIES= databases gnome -MASTER_SITES= ${MASTER_SITE_GNOME} -MASTER_SITE_SUBDIR= sources/${PORTNAME}/${PORTVERSION} -DIST_SUBDIR= gnome2 - -MAINTAINER= gnome@FreeBSD.org -COMMENT= Provide uniform access to data sources for the GNOME 2 environment - -USE_BZIP2= yes -USE_X_PREFIX= yes -USE_GMAKE= yes -USE_GNOME= gnomeprefix intlhack gnomehack libgnomedb libgnomeprintui -USE_PERL5= yes -USE_AUTOTOOLS= libtool:15 -INSTALLS_OMF= yes -INSTALLS_SHLIB= yes -USE_REINPLACE= yes -CONFIGURE_ENV= CPPFLAGS="-I${LOCALBASE}/include" \ - LDFLAGS="-L${LOCALBASE}/lib" - -.include <bsd.port.mk> diff --git a/databases/mergeant/distinfo b/databases/mergeant/distinfo deleted file mode 100644 index 07d3c52b3..000000000 --- a/databases/mergeant/distinfo +++ /dev/null @@ -1,2 +0,0 @@ -MD5 (gnome2/mergeant-0.62.tar.bz2) = acd5dd8d888f8dde8ca0768d081828e3 -SIZE (gnome2/mergeant-0.62.tar.bz2) = 1005279 diff --git a/databases/mergeant/files/patch-configure b/databases/mergeant/files/patch-configure deleted file mode 100644 index baf457654..000000000 --- a/databases/mergeant/files/patch-configure +++ /dev/null @@ -1,14 +0,0 @@ ---- configure.orig Sun Aug 7 17:40:05 2005 -+++ configure Sun Aug 7 17:40:37 2005 -@@ -22920,9 +22920,9 @@ - - MERGEANT_Pixmapdir=${datadir}/pixmaps/${PACKAGE} - --MERGEANT_Appdir=${datadir}/gnome/applications -+MERGEANT_Appdir=${datadir}/applications - --MERGEANT_Helpdir=${datadir}/gnome/help/${PACKAGE} -+MERGEANT_Helpdir=${datadir}/help/${PACKAGE} - - - diff --git a/databases/mergeant/pkg-descr b/databases/mergeant/pkg-descr deleted file mode 100644 index 7e1974261..000000000 --- a/databases/mergeant/pkg-descr +++ /dev/null @@ -1,9 +0,0 @@ -mergeant can be considered as an extension of the libgda project. - -Its aims are the same: to provide universal data source access for -client applications, as well as development tools and libraries -for doing so. mergeant; is an extension to libgda; because it adds -support to the architecture for the GNOME project. mergeant was formed -by merging components from gnome-db and gASQL. - -WWW: http://www.gnome-db.org/ diff --git a/databases/mergeant/pkg-plist b/databases/mergeant/pkg-plist deleted file mode 100644 index 53fe7bdf3..000000000 --- a/databases/mergeant/pkg-plist +++ /dev/null @@ -1,98 +0,0 @@ -bin/mergeant -libdata/bonobo/servers/GNOME_Mergeant.server -share/gnome/application-registry/mergeant.applications -share/gnome/applications/mergeant.desktop -share/gnome/help/mergeant/C/book1.html -share/gnome/help/mergeant/C/c13.html -share/gnome/help/mergeant/C/c47.html -share/gnome/help/mergeant/C/c68.html -share/gnome/help/mergeant/C/c76.html -share/gnome/help/mergeant/C/c8.html -share/gnome/help/mergeant/C/c84.html -share/gnome/help/mergeant/C/c94.html -share/gnome/help/mergeant/C/docbook.css -share/gnome/help/mergeant/C/images/datasources.png -share/gnome/help/mergeant/C/images/dba_properties.png -share/gnome/help/mergeant/C/images/workspace-data-types.png -share/gnome/help/mergeant/C/images/workspace-graphs.png -share/gnome/help/mergeant/C/images/workspace-queries.png -share/gnome/help/mergeant/C/images/workspace.png -share/gnome/help/mergeant/C/index.html -share/gnome/help/mergeant/C/stylesheet-images/caution.gif -share/gnome/help/mergeant/C/stylesheet-images/home.gif -share/gnome/help/mergeant/C/stylesheet-images/important.gif -share/gnome/help/mergeant/C/stylesheet-images/next.gif -share/gnome/help/mergeant/C/stylesheet-images/note.gif -share/gnome/help/mergeant/C/stylesheet-images/prev.gif -share/gnome/help/mergeant/C/stylesheet-images/tip.gif -share/gnome/help/mergeant/C/stylesheet-images/toc-blank.gif -share/gnome/help/mergeant/C/stylesheet-images/toc-minus.gif -share/gnome/help/mergeant/C/stylesheet-images/toc-plus.gif -share/gnome/help/mergeant/C/stylesheet-images/up.gif -share/gnome/help/mergeant/C/stylesheet-images/warning.gif -share/gnome/help/mergeant/C/topic.dat -share/gnome/help/mergeant/C/x19.html -share/gnome/help/mergeant/C/x40.html -share/gnome/mime-info/mergeant.keys -share/gnome/mime-info/mergeant.mime -share/gnome/omf/mergeant/mergeant-C.omf -share/gnome/pixmaps/document-icons/gnome-application-x-mergeant.png -share/gnome/pixmaps/mergeant/mergeant.png -share/gnome/pixmaps/mergeant/mergeant_connect.png -share/gnome/pixmaps/mergeant/mergeant_connect_small.png -share/gnome/pixmaps/mergeant/mergeant_disconnect.png -share/gnome/pixmaps/mergeant/mergeant_disconnect_small.png -share/gnome/pixmaps/mergeant/mergeant_foot.png -share/gnome/pixmaps/mergeant/mergeant_forms.png -share/gnome/pixmaps/mergeant/mergeant_queries.png -share/gnome/pixmaps/mergeant/mergeant_rels.png -share/gnome/pixmaps/mergeant/mergeant_rels_small.png -share/gnome/pixmaps/mergeant/mergeant_sequences.png -share/gnome/pixmaps/mergeant/mergeant_tables.png -share/gnome/pixmaps/mergeant/query-view-query_16x16.png -share/gnome/pixmaps/mergeant/query-view-table_16x16.png -share/gnome/pixmaps/mergeant/query-view-view_16x16.png -share/locale/am/LC_MESSAGES/mergeant.mo -share/locale/az/LC_MESSAGES/mergeant.mo -share/locale/ca/LC_MESSAGES/mergeant.mo -share/locale/cs/LC_MESSAGES/mergeant.mo -share/locale/da/LC_MESSAGES/mergeant.mo -share/locale/de/LC_MESSAGES/mergeant.mo -share/locale/el/LC_MESSAGES/mergeant.mo -share/locale/en_CA/LC_MESSAGES/mergeant.mo -share/locale/en_GB/LC_MESSAGES/mergeant.mo -share/locale/es/LC_MESSAGES/mergeant.mo -share/locale/fa/LC_MESSAGES/mergeant.mo -share/locale/fr/LC_MESSAGES/mergeant.mo -share/locale/hr/LC_MESSAGES/mergeant.mo -share/locale/it/LC_MESSAGES/mergeant.mo -share/locale/ja/LC_MESSAGES/mergeant.mo -share/locale/lt/LC_MESSAGES/mergeant.mo -share/locale/ml/LC_MESSAGES/mergeant.mo -share/locale/ms/LC_MESSAGES/mergeant.mo -share/locale/nb/LC_MESSAGES/mergeant.mo -share/locale/ne/LC_MESSAGES/mergeant.mo -share/locale/nl/LC_MESSAGES/mergeant.mo -share/locale/no/LC_MESSAGES/mergeant.mo -share/locale/pl/LC_MESSAGES/mergeant.mo -share/locale/pt/LC_MESSAGES/mergeant.mo -share/locale/pt_BR/LC_MESSAGES/mergeant.mo -share/locale/ru/LC_MESSAGES/mergeant.mo -share/locale/rw/LC_MESSAGES/mergeant.mo -share/locale/sk/LC_MESSAGES/mergeant.mo -share/locale/sq/LC_MESSAGES/mergeant.mo -share/locale/sr/LC_MESSAGES/mergeant.mo -share/locale/sr@Latn/LC_MESSAGES/mergeant.mo -share/locale/sv/LC_MESSAGES/mergeant.mo -share/locale/tr/LC_MESSAGES/mergeant.mo -share/locale/uk/LC_MESSAGES/mergeant.mo -share/locale/vi/LC_MESSAGES/mergeant.mo -share/locale/zh_CN/LC_MESSAGES/mergeant.mo -@unexec rmdir %D/share/locale/rw/LC_MESSAGES 2> /dev/null || true -@unexec rmdir %D/share/locale/rw 2> /dev/null || true -@dirrm share/gnome/pixmaps/mergeant -@dirrm share/gnome/omf/mergeant -@dirrm share/gnome/help/mergeant/C/stylesheet-images -@dirrm share/gnome/help/mergeant/C/images -@dirrm share/gnome/help/mergeant/C -@dirrm share/gnome/help/mergeant |