summaryrefslogtreecommitdiffstats
path: root/databases
diff options
context:
space:
mode:
authoradamw <adamw@df743ca5-7f9a-e211-a948-0013205c9059>2003-09-25 11:17:48 +0800
committeradamw <adamw@df743ca5-7f9a-e211-a948-0013205c9059>2003-09-25 11:17:48 +0800
commit8f70c1293a3b528702422bb5aa5ceeda3ff543b9 (patch)
tree6db41ccf5f67170d5c3692ec762ce59feb4d46af /databases
parent34cb070c3e7d8d35cbeb5fdf35980e8f57f490a6 (diff)
downloadmarcuscom-ports-8f70c1293a3b528702422bb5aa5ceeda3ff543b9.tar
marcuscom-ports-8f70c1293a3b528702422bb5aa5ceeda3ff543b9.tar.gz
marcuscom-ports-8f70c1293a3b528702422bb5aa5ceeda3ff543b9.tar.bz2
marcuscom-ports-8f70c1293a3b528702422bb5aa5ceeda3ff543b9.tar.lz
marcuscom-ports-8f70c1293a3b528702422bb5aa5ceeda3ff543b9.tar.xz
marcuscom-ports-8f70c1293a3b528702422bb5aa5ceeda3ff543b9.tar.zst
marcuscom-ports-8f70c1293a3b528702422bb5aa5ceeda3ff543b9.zip
Remove libgda2 and libgnomedb, after merging them into FreeBSD CVS.
git-svn-id: svn://creme-brulee.marcuscom.com/ports/trunk@1261 df743ca5-7f9a-e211-a948-0013205c9059
Diffstat (limited to 'databases')
-rw-r--r--databases/libgda2/Makefile200
-rw-r--r--databases/libgda2/distinfo1
-rw-r--r--databases/libgda2/files/patch-aa11
-rw-r--r--databases/libgda2/files/patch-doc_C_Makefile.in11
-rw-r--r--databases/libgda2/files/patch-ltmain.sh51
-rw-r--r--databases/libgda2/files/patch-providers_mysql_gda-mysql-recordset.c11
-rw-r--r--databases/libgda2/files/patch-providers_postgres_utils.c11
-rw-r--r--databases/libgda2/files/patch-tools_gda-config-tool.c11
-rw-r--r--databases/libgda2/pkg-descr19
-rw-r--r--databases/libgda2/pkg-plist238
-rw-r--r--databases/libgnomedb/Makefile28
-rw-r--r--databases/libgnomedb/distinfo1
-rw-r--r--databases/libgnomedb/files/patch-configure10
-rw-r--r--databases/libgnomedb/pkg-descr4
-rw-r--r--databases/libgnomedb/pkg-plist178
15 files changed, 0 insertions, 785 deletions
diff --git a/databases/libgda2/Makefile b/databases/libgda2/Makefile
deleted file mode 100644
index b28f359f3..000000000
--- a/databases/libgda2/Makefile
+++ /dev/null
@@ -1,200 +0,0 @@
-# New ports collection makefile for: libgda2
-# Date created: 02 June 2002
-# Whom: Joe Marcus Clarke <marcus@FreeBSD.org>
-#
-# $FreeBSD$
-#
-
-PORTNAME= libgda2
-PORTVERSION= 1.0.0
-CATEGORIES= databases gnome
-MASTER_SITES= ${MASTER_SITE_GNOME}
-MASTER_SITE_SUBDIR= sources/${PORTNAME:S/2$//}/1.0
-DISTNAME= libgda-${PORTVERSION}
-DIST_SUBDIR= gnome2
-
-MAINTAINER= gnome@FreeBSD.org
-COMMENT= Provides uniform access to different kinds of data sources
-
-BUILD_DEPENDS= scrollkeeper-config:${PORTSDIR}/textproc/scrollkeeper
-LIB_DEPENDS= popt.0:${PORTSDIR}/devel/popt
-RUN_DEPENDS= scrollkeeper-config:${PORTSDIR}/textproc/scrollkeeper
-
-USE_BZIP2= yes
-USE_X_PREFIX= yes
-USE_GMAKE= yes
-USE_REINPLACE= yes
-USE_GNOME= gnomeprefix gnomehack gnomehier glib20 libxslt
-INSTALLS_SHLIB= yes
-GNU_CONFIGURE= yes
-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$//}
-
-.include <bsd.port.pre.mk>
-
-.if exists(${LOCALBASE}/lib/mysql/libmysqlclient.so)
-WITH_MYSQL= yes
-.endif
-
-.if exists(${LOCALBASE}/lib/libpq.so.3)
-WITH_POSTGRES7= yes
-.endif
-
-.if exists(${LOCALBASE}/lib/libpgeasy.so.2)
-WITH_POSTGRES72=yes
-.endif
-
-.if exists(${LOCALBASE}/lib/libldap.so.2)
-WITH_LDAP=yes
-.endif
-
-.if exists(${LOCALBASE}/firebird/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_POSTGRES7) && defined(WITH_POSTGRES7)
-POSTGRESQL_PORT?= databases/postgresql7
-LIB_DEPENDS+= pq.3:${PORTSDIR}/${POSTGRESQL_PORT}
-CONFIGURE_ARGS+= --with-postgres=${LOCALBASE}
-PLIST_SUB+= POSTGRES:=""
-.endif
-
-.if !defined(WITHOUT_POSTGRES72) && defined(WITH_POSTGRES72)
-POSTGRESQL_PORT?= databases/postgresql72
-LIB_DEPENDS+= pqeasy.2:${PORTSDIR}/${POSTGRESQL_PORT}
-CONFIGURE_ARGS+= --with-postgres=${LOCALBASE}
-PLIST_SUB+= POSTGRES:=""
-.endif
-
-.if !defined(WITH_POSTGRES7) && !defined(WITH_POSTGRES72)
-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
-CONFIGURE_ARGS+= --with-firebird=${LOCALBASE}/firebird
-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/sqlite
-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_POSTGRES7)
- @${ECHO_MSG} "You can enable support for Postgres 7.0 databases by defining WITH_POSTGRES7."
-.endif
-.if !defined(WITH_POSTGRES72)
- @${ECHO_MSG} "You can enable support for Postgres 7.2 databases by defining WITH_POSTGRES72."
-.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 84cec9827..000000000
--- a/databases/libgda2/distinfo
+++ /dev/null
@@ -1 +0,0 @@
-MD5 (gnome2/libgda-1.0.0.tar.bz2) = 7e5f5c0943600236ec16df35119af86a
diff --git a/databases/libgda2/files/patch-aa b/databases/libgda2/files/patch-aa
deleted file mode 100644
index a090fe088..000000000
--- a/databases/libgda2/files/patch-aa
+++ /dev/null
@@ -1,11 +0,0 @@
---- Makefile.in.orig Thu Feb 6 23:01:24 2003
-+++ Makefile.in Thu Feb 6 23:01:54 2003
-@@ -164,7 +164,7 @@
- YACC = @YACC@
- cxxflags_set = @cxxflags_set@
-
--SUBDIRS = po libsql libgda providers report tools testing data doc
-+SUBDIRS = po libsql libgda providers report tools data doc
-
-
- EXTRA_DIST = COPYING libgda.spec intltool-extract.in intltool-merge.in intltool-update.in
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 718a4a1eb..000000000
--- a/databases/libgda2/files/patch-doc_C_Makefile.in
+++ /dev/null
@@ -1,11 +0,0 @@
---- doc/C/Makefile.in.orig Sun Jun 2 22:17:05 2002
-+++ doc/C/Makefile.in Sun Jun 2 22:17:27 2002
-@@ -152,7 +152,7 @@
- cxxflags_set = @cxxflags_set@
-
- DOC_MODULE = libgda
--HTML_DIR = $(datadir)/gtk-doc/html
-+HTML_DIR = $(prefix)/share/doc
-
- # The top-level SGML file. Change it if you want.
- DOC_MAIN_SGML_FILE = $(DOC_MODULE)-docs.sgml
diff --git a/databases/libgda2/files/patch-ltmain.sh b/databases/libgda2/files/patch-ltmain.sh
deleted file mode 100644
index 860ddda64..000000000
--- a/databases/libgda2/files/patch-ltmain.sh
+++ /dev/null
@@ -1,51 +0,0 @@
---- ltmain.sh.orig Tue Aug 5 18:08:30 2003
-+++ ltmain.sh Wed Aug 6 08:18:27 2003
-@@ -1278,7 +1278,7 @@
- esac
- elif test "X$arg" = "X-lc_r"; then
- case $host in
-- *-*-openbsd* | *-*-freebsd*)
-+ *-*-openbsd* | *-*-freebsd4*)
- # Do not include libc_r directly, use -pthread flag.
- continue
- ;;
-@@ -1288,8 +1288,16 @@
- continue
- ;;
-
-+ -pthread)
-+ compile_command="$compile_command -pthread"
-+ finalize_command="$finalize_command -pthread"
-+ compiler_flags="$compiler_flags -pthread"
-+ continue
-+ ;;
-+
- -module)
- module=yes
-+ build_old_libs=no
- continue
- ;;
-
-@@ -3008,6 +3016,9 @@
- # problems, so we reset it completely
- verstring=
- ;;
-+ *-*-freebsd*)
-+ # FreeBSD doesn't need this...
-+ ;;
- *)
- verstring="0.0"
- ;;
-@@ -5457,10 +5468,12 @@
- fi
-
- # Install the pseudo-library for information purposes.
-+ if /usr/bin/false; then
- name=`$echo "X$file" | $Xsed -e 's%^.*/%%'`
- instname="$dir/$name"i
- $show "$install_prog $instname $destdir/$name"
- $run eval "$install_prog $instname $destdir/$name" || exit $?
-+ fi
-
- # Maybe install the static library, too.
- test -n "$old_library" && staticlibs="$staticlibs $dir/$old_library"
diff --git a/databases/libgda2/files/patch-providers_mysql_gda-mysql-recordset.c b/databases/libgda2/files/patch-providers_mysql_gda-mysql-recordset.c
deleted file mode 100644
index 758d31ca4..000000000
--- a/databases/libgda2/files/patch-providers_mysql_gda-mysql-recordset.c
+++ /dev/null
@@ -1,11 +0,0 @@
---- providers/mysql/gda-mysql-recordset.c.orig Mon Feb 17 21:42:16 2003
-+++ providers/mysql/gda-mysql-recordset.c Mon Feb 17 21:42:57 2003
-@@ -102,7 +102,7 @@
- break;
- case FIELD_TYPE_LONGLONG :
- case FIELD_TYPE_INT24 :
-- gda_value_set_bigint (field, thevalue ? atoll (thevalue) : 0);
-+ gda_value_set_bigint (field, thevalue ? strtoll(thevalue, &thevalue, 10) : 0);
- break;
- case FIELD_TYPE_SHORT :
- gda_value_set_smallint (field, thevalue ? atoi (thevalue) : 0);
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 f5df3cb24..000000000
--- a/databases/libgda2/pkg-plist
+++ /dev/null
@@ -1,238 +0,0 @@
-bin/gda-config-tool
-bin/gda-report-test
-bin/gda-run
-etc/libgda/config
-include/libgda-report/gda-report-document.h
-include/libgda-report/gda-report-item-detail.h
-include/libgda-report/gda-report-item-label.h
-include/libgda-report/gda-report-item-pagefooter.h
-include/libgda-report/gda-report-item-pageheader.h
-include/libgda-report/gda-report-item-repfield.h
-include/libgda-report/gda-report-item-report.h
-include/libgda-report/gda-report-item-reportfooter.h
-include/libgda-report/gda-report-item-reportheader.h
-include/libgda-report/gda-report-item-sqlquery.h
-include/libgda-report/gda-report-item.h
-include/libgda-report/gda-report-result.h
-include/libgda-report/gda-report-types.h
-include/libgda-report/gda-report-valid.h
-include/libgda-report/gda-report.h
-include/libgda/gda-blob.h
-include/libgda/gda-client.h
-include/libgda/gda-command.h
-include/libgda/gda-config.h
-include/libgda/gda-connection.h
-include/libgda/gda-data-model-array.h
-include/libgda/gda-data-model-hash.h
-include/libgda/gda-data-model-list.h
-include/libgda/gda-data-model.h
-include/libgda/gda-error.h
-include/libgda/gda-export.h
-include/libgda/gda-field.h
-include/libgda/gda-log.h
-include/libgda/gda-marshal.h
-include/libgda/gda-parameter.h
-include/libgda/gda-quark-list.h
-include/libgda/gda-row.h
-include/libgda/gda-select.h
-include/libgda/gda-server-provider.h
-include/libgda/gda-table.h
-include/libgda/gda-transaction.h
-include/libgda/gda-util.h
-include/libgda/gda-value.h
-include/libgda/gda-xml-connection.h
-include/libgda/gda-xml-database.h
-include/libgda/gda-xml-document.h
-include/libgda/gda-xql-atom.h
-include/libgda/gda-xql-bin.h
-include/libgda/gda-xql-column.h
-include/libgda/gda-xql-const.h
-include/libgda/gda-xql-delete.h
-include/libgda/gda-xql-dml.h
-include/libgda/gda-xql-dual.h
-include/libgda/gda-xql-field.h
-include/libgda/gda-xql-func.h
-include/libgda/gda-xql-insert.h
-include/libgda/gda-xql-item.h
-include/libgda/gda-xql-join.h
-include/libgda/gda-xql-list.h
-include/libgda/gda-xql-query.h
-include/libgda/gda-xql-select.h
-include/libgda/gda-xql-stack.h
-include/libgda/gda-xql-target.h
-include/libgda/gda-xql-update.h
-include/libgda/gda-xql-utils.h
-include/libgda/gda-xql-value.h
-include/libgda/gda-xql-valueref.h
-include/libgda/libgda.h
-lib/libgda-2.a
-lib/libgda-2.so
-lib/libgda-2.so.2
-lib/libgda-report-2.a
-lib/libgda-report-2.so
-lib/libgda-report-2.so.2
-lib/libgdasql.a
-lib/libgdasql.so
-lib/libgdasql.so.0
-%%FIREBIRD:%%lib/libgda/providers/libgda-firebird.so
-%%FREETDS:%%lib/libgda/providers/libgda-freetds.so
-%%LDAP:%%lib/libgda/providers/libgda-ldap.so
-%%MDB:%%lib/libgda/providers/libgda-mdb.so
-%%MYSQL:%%lib/libgda/providers/libgda-mysql.so
-%%ODBC:%%lib/libgda/providers/libgda-odbc.so
-%%POSTGRES:%%lib/libgda/providers/libgda-postgres.so
-%%SYBASE:%%lib/libgda/providers/libgda-sybase.so
-%%SQLITE:%%lib/libgda/providers/libgda-sqlite.so
-lib/libgda/providers/libgda-xml.so
-libdata/pkgconfig/libgda.pc
-%%DOCSDIR%%/architecture.html
-%%DOCSDIR%%/c694.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%%/gdavalue.html
-%%DOCSDIR%%/index.html
-%%DOCSDIR%%/index.sgml
-%%DOCSDIR%%/installation-configuring.html
-%%DOCSDIR%%/installation-installing.html
-%%DOCSDIR%%/installation.html
-%%DOCSDIR%%/introduction.html
-%%DOCSDIR%%/libgda-api.html
-%%DOCSDIR%%/libgda-gda-blob.html
-%%DOCSDIR%%/libgda-gda-command.html
-%%DOCSDIR%%/libgda-gda-config.html
-%%DOCSDIR%%/libgda-gda-field.html
-%%DOCSDIR%%/libgda-gda-log.html
-%%DOCSDIR%%/libgda-gda-parameter.html
-%%DOCSDIR%%/libgda-gda-quark-list.html
-%%DOCSDIR%%/libgda-gda-report-types.html
-%%DOCSDIR%%/libgda-gda-row.html
-%%DOCSDIR%%/libgda-gda-util.html
-%%DOCSDIR%%/libgda-gda-value.html
-%%DOCSDIR%%/libgda-gda-xql-utils.html
-%%DOCSDIR%%/libgda-gdaclient.html
-%%DOCSDIR%%/libgda-gdaconnection.html
-%%DOCSDIR%%/libgda-gdadatamodel.html
-%%DOCSDIR%%/libgda-gdadatamodelarray.html
-%%DOCSDIR%%/libgda-gdadatamodelhash.html
-%%DOCSDIR%%/libgda-gdadatamodellist.html
-%%DOCSDIR%%/libgda-gdaerror.html
-%%DOCSDIR%%/libgda-gdaexport.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-gdaselect.html
-%%DOCSDIR%%/libgda-gdaserverprovider.html
-%%DOCSDIR%%/libgda-gdatable.html
-%%DOCSDIR%%/libgda-gdatransaction.html
-%%DOCSDIR%%/libgda-gdaxmlconnection.html
-%%DOCSDIR%%/libgda-gdaxmldatabase.html
-%%DOCSDIR%%/libgda-gdaxmldocument.html
-%%DOCSDIR%%/libgda-gdaxqlatom.html
-%%DOCSDIR%%/libgda-gdaxqlbin.html
-%%DOCSDIR%%/libgda-gdaxqlcolumn.html
-%%DOCSDIR%%/libgda-gdaxqlconst.html
-%%DOCSDIR%%/libgda-gdaxqldelete.html
-%%DOCSDIR%%/libgda-gdaxqldml.html
-%%DOCSDIR%%/libgda-gdaxqldual.html
-%%DOCSDIR%%/libgda-gdaxqlfield.html
-%%DOCSDIR%%/libgda-gdaxqlfunc.html
-%%DOCSDIR%%/libgda-gdaxqlinsert.html
-%%DOCSDIR%%/libgda-gdaxqlitem.html
-%%DOCSDIR%%/libgda-gdaxqljoin.html
-%%DOCSDIR%%/libgda-gdaxqllist.html
-%%DOCSDIR%%/libgda-gdaxqlquery.html
-%%DOCSDIR%%/libgda-gdaxqlselect.html
-%%DOCSDIR%%/libgda-gdaxqlstack.html
-%%DOCSDIR%%/libgda-gdaxqltarget.html
-%%DOCSDIR%%/libgda-gdaxqlupdate.html
-%%DOCSDIR%%/libgda-gdaxqlvalue.html
-%%DOCSDIR%%/libgda-gdaxqlvalueref.html
-%%DOCSDIR%%/libgda-libgda.html
-%%DOCSDIR%%/libgda-provider-class.html
-%%DOCSDIR%%/libgda-provider-recordset.html
-%%DOCSDIR%%/libgda-providers.html
-%%DOCSDIR%%/libgda-reports.html
-%%DOCSDIR%%/libgda-xql.html
-%%DOCSDIR%%/main_example.html
-%%DOCSDIR%%/managing-errors.html
-%%DOCSDIR%%/migration-configuration.html
-%%DOCSDIR%%/migration-executing-commands.html
-%%DOCSDIR%%/migration.html
-%%DOCSDIR%%/processing-queries.html
-%%DOCSDIR%%/x863.html
-%%DOCSDIR%%/x892.html
-%%DOCSDIR%%/x897.html
-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/gnome/omf/libgda/libgda-C.omf
-@exec scrollkeeper-install -q %D/share/gnome/omf/libgda/libgda-C.omf 2>/dev/null || /usr/bin/true
-share/locale/az/LC_MESSAGES/libgda-2.mo
-share/locale/ca/LC_MESSAGES/libgda-2.mo
-share/locale/cs/LC_MESSAGES/libgda-2.mo
-share/locale/da/LC_MESSAGES/libgda-2.mo
-share/locale/de/LC_MESSAGES/libgda-2.mo
-share/locale/el/LC_MESSAGES/libgda-2.mo
-share/locale/es/LC_MESSAGES/libgda-2.mo
-share/locale/fa/LC_MESSAGES/libgda-2.mo
-share/locale/fi/LC_MESSAGES/libgda-2.mo
-share/locale/fr/LC_MESSAGES/libgda-2.mo
-share/locale/ga/LC_MESSAGES/libgda-2.mo
-share/locale/gl/LC_MESSAGES/libgda-2.mo
-share/locale/hu/LC_MESSAGES/libgda-2.mo
-share/locale/it/LC_MESSAGES/libgda-2.mo
-share/locale/ja/LC_MESSAGES/libgda-2.mo
-share/locale/ko/LC_MESSAGES/libgda-2.mo
-share/locale/ml/LC_MESSAGES/libgda-2.mo
-share/locale/ms/LC_MESSAGES/libgda-2.mo
-share/locale/nl/LC_MESSAGES/libgda-2.mo
-share/locale/no/LC_MESSAGES/libgda-2.mo
-share/locale/pl/LC_MESSAGES/libgda-2.mo
-share/locale/pt/LC_MESSAGES/libgda-2.mo
-share/locale/pt_BR/LC_MESSAGES/libgda-2.mo
-share/locale/ru/LC_MESSAGES/libgda-2.mo
-share/locale/sk/LC_MESSAGES/libgda-2.mo
-share/locale/sl/LC_MESSAGES/libgda-2.mo
-share/locale/sr/LC_MESSAGES/libgda-2.mo
-share/locale/sr@Latn/LC_MESSAGES/libgda-2.mo
-share/locale/sv/LC_MESSAGES/libgda-2.mo
-share/locale/tr/LC_MESSAGES/libgda-2.mo
-share/locale/uk/LC_MESSAGES/libgda-2.mo
-share/locale/vi/LC_MESSAGES/libgda-2.mo
-share/locale/zh_CN/LC_MESSAGES/libgda-2.mo
-share/locale/zh_TW/LC_MESSAGES/libgda-2.mo
-@dirrm share/gnome/omf/libgda
-@dirrm share/gnome/libgda/xml
-@dirrm share/gnome/libgda
-@dirrm lib/libgda/providers
-@dirrm lib/libgda
-@dirrm include/libgda/sql
-@dirrm include/libgda
-@dirrm include/libgda-report
-@dirrm etc/libgda
-@unexec scrollkeeper-uninstall -q %D/share/gnome/omf/libgda/libgda-C.omf 2>/dev/null || /usr/bin/true
diff --git a/databases/libgnomedb/Makefile b/databases/libgnomedb/Makefile
deleted file mode 100644
index b489ff497..000000000
--- a/databases/libgnomedb/Makefile
+++ /dev/null
@@ -1,28 +0,0 @@
-# New ports collection makefile for: libgnomedb
-# Date created: 02 June 2002
-# Whom: Joe Marcus Clarke <marcus@FreeBSD.org>
-#
-# $FreeBSD$
-#
-
-PORTNAME= libgnomedb
-PORTVERSION= 1.0.0
-CATEGORIES= databases gnome
-MASTER_SITES= ${MASTER_SITE_GNOME}
-MASTER_SITE_SUBDIR= sources/libgnomedb/1.0
-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_REINPLACE= yes
-USE_GNOME= gnomeprefix gnomehack libgnomeui libgda2
-USE_LIBTOOL= yes
-INSTALLS_SHLIB= yes
-CONFIGURE_ENV= CPPFLAGS="-I${LOCALBASE}/include" \
- LDFLAGS="-L${LOCALBASE}/lib"
-
-.include <bsd.port.mk>
diff --git a/databases/libgnomedb/distinfo b/databases/libgnomedb/distinfo
deleted file mode 100644
index ef1e9bc55..000000000
--- a/databases/libgnomedb/distinfo
+++ /dev/null
@@ -1 +0,0 @@
-MD5 (gnome2/libgnomedb-1.0.0.tar.bz2) = e5943ddf8e13cf216deb98433aeb02b7
diff --git a/databases/libgnomedb/files/patch-configure b/databases/libgnomedb/files/patch-configure
deleted file mode 100644
index 95a17c45b..000000000
--- a/databases/libgnomedb/files/patch-configure
+++ /dev/null
@@ -1,10 +0,0 @@
---- configure.orig Fri Jun 13 07:07:05 2003
-+++ configure Sun Jun 15 17:15:17 2003
-@@ -8612,6 +8612,7 @@
-
- # This can be used to rebuild libtool when needed
- LIBTOOL_DEPS="$ac_aux_dir/ltmain.sh"
-+$ac_aux_dir/ltconfig $LIBTOOL_DEPS
-
- # Always use our own libtool.
- LIBTOOL='$(SHELL) $(top_builddir)/libtool'
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 a4ed2b55f..000000000
--- a/databases/libgnomedb/pkg-plist
+++ /dev/null
@@ -1,178 +0,0 @@
-bin/gnome-database-properties
-etc/gconf/gconf.xml.defaults/apps/gnome-db/%gconf.xml
-etc/gconf/gconf.xml.defaults/apps/gnome-db/Editor/%gconf.xml
-etc/gconf/gconf.xml.defaults/apps/gnome-db/UI/%gconf.xml
-etc/gconf/gconf.xml.defaults/schemas/apps/gnome-db/%gconf.xml
-etc/gconf/gconf.xml.defaults/schemas/apps/gnome-db/Editor/%gconf.xml
-etc/gconf/gconf.xml.defaults/schemas/apps/gnome-db/UI/%gconf.xml
-etc/gconf/schemas/libgnomedb.schemas
-include/libgnomedb/gnome-db-browser.h
-include/libgnomedb/gnome-db-combo.h
-include/libgnomedb/gnome-db-config.h
-include/libgnomedb/gnome-db-connection-properties.h
-include/libgnomedb/gnome-db-connection-selector.h
-include/libgnomedb/gnome-db-control-widget.h
-include/libgnomedb/gnome-db-control.h
-include/libgnomedb/gnome-db-data-source-selector.h
-include/libgnomedb/gnome-db-dsn-config-druid.h
-include/libgnomedb/gnome-db-dsn-config.h
-include/libgnomedb/gnome-db-editor.h
-include/libgnomedb/gnome-db-error-dialog.h
-include/libgnomedb/gnome-db-error.h
-include/libgnomedb/gnome-db-form.h
-include/libgnomedb/gnome-db-gray-bar.h
-include/libgnomedb/gnome-db-grid.h
-include/libgnomedb/gnome-db-i18n.h
-include/libgnomedb/gnome-db-icon-list.h
-include/libgnomedb/gnome-db-list.h
-include/libgnomedb/gnome-db-login-dialog.h
-include/libgnomedb/gnome-db-login.h
-include/libgnomedb/gnome-db-model.h
-include/libgnomedb/gnome-db-provider-selector.h
-include/libgnomedb/gnome-db-query-builder.h
-include/libgnomedb/gnome-db-report-editor.h
-include/libgnomedb/gnome-db-stock.h
-include/libgnomedb/gnome-db-table-editor.h
-include/libgnomedb/gnome-db-util.h
-include/libgnomedb/libgnomedb.h
-lib/bonobo/monikers/libmoniker_database.so
-lib/libglade/2.0/libgnomedb.so
-lib/libgnomedb-2.a
-lib/libgnomedb-2.so
-lib/libgnomedb-2.so.3
-libdata/pkgconfig/libgnomedb.pc
-libdata/bonobo/servers/GNOME_Database_Components.server
-libdata/bonobo/servers/GNOME_Database_Monikers.server
-libexec/gnome-database-components
-share/doc/libgnomedb/fdl-section1.html
-share/doc/libgnomedb/fdl-section10.html
-share/doc/libgnomedb/fdl-section2.html
-share/doc/libgnomedb/fdl-section3.html
-share/doc/libgnomedb/fdl-section4.html
-share/doc/libgnomedb/fdl-section5.html
-share/doc/libgnomedb/fdl-section6.html
-share/doc/libgnomedb/fdl-section7.html
-share/doc/libgnomedb/fdl-section8.html
-share/doc/libgnomedb/fdl-section9.html
-share/doc/libgnomedb/fdl-using.html
-share/doc/libgnomedb/fdl.html
-share/doc/libgnomedb/index.html
-share/doc/libgnomedb/index.sgml
-share/doc/libgnomedb/libgnomedb-basic.html
-share/doc/libgnomedb/libgnomedb-bonobo.html
-share/doc/libgnomedb/libgnomedb-gnome-db-config.html
-share/doc/libgnomedb/libgnomedb-gnome-db-model.html
-share/doc/libgnomedb/libgnomedb-gnome-db-stock.html
-share/doc/libgnomedb/libgnomedb-gnome-db-util.html
-share/doc/libgnomedb/libgnomedb-gnomedbbrowser.html
-share/doc/libgnomedb/libgnomedb-gnomedbcombo.html
-share/doc/libgnomedb/libgnomedb-gnomedbconnectionproperties.html
-share/doc/libgnomedb/libgnomedb-gnomedbconnectionselector.html
-share/doc/libgnomedb/libgnomedb-gnomedbcontrol.html
-share/doc/libgnomedb/libgnomedb-gnomedbcontrolwidget.html
-share/doc/libgnomedb/libgnomedb-gnomedbdatasourceselector.html
-share/doc/libgnomedb/libgnomedb-gnomedbdsnconfig.html
-share/doc/libgnomedb/libgnomedb-gnomedbdsnconfigdruid.html
-share/doc/libgnomedb/libgnomedb-gnomedbeditor.html
-share/doc/libgnomedb/libgnomedb-gnomedberror.html
-share/doc/libgnomedb/libgnomedb-gnomedberrordialog.html
-share/doc/libgnomedb/libgnomedb-gnomedbform.html
-share/doc/libgnomedb/libgnomedb-gnomedbgraybar.html
-share/doc/libgnomedb/libgnomedb-gnomedbgrid.html
-share/doc/libgnomedb/libgnomedb-gnomedbiconlist.html
-share/doc/libgnomedb/libgnomedb-gnomedblist.html
-share/doc/libgnomedb/libgnomedb-gnomedblogin.html
-share/doc/libgnomedb/libgnomedb-gnomedblogindialog.html
-share/doc/libgnomedb/libgnomedb-gnomedbproviderselector.html
-share/doc/libgnomedb/libgnomedb-gnomedbquerybuilder.html
-share/doc/libgnomedb/libgnomedb-gnomedbreporteditor.html
-share/doc/libgnomedb/libgnomedb-gnomedbtableeditor.html
-share/doc/libgnomedb/libgnomedb-gnomedbwindow.html
-share/doc/libgnomedb/libgnomedb-introduction.html
-share/doc/libgnomedb/libgnomedb-libgnomedb.html
-share/doc/libgnomedb/libgnomedb-widgets.html
-share/gnome/control-center-2.0/capplets/database-properties.desktop
-share/gnome/gnome-db/ui/db-shell.xml
-share/gnome/mime-info/libgnomedb.keys
-share/gnome/mime-info/libgnomedb.mime
-share/gnome/omf/libgnomedb/libgnomedb-C.omf
-@exec scrollkeeper-install -q %D/share/gnome/omf/libgnomedb/libgnomedb-C.omf 2>/dev/null || /usr/bin/true
-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-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-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-2.mo
-share/locale/be/LC_MESSAGES/libgnomedb-2.mo
-share/locale/ca/LC_MESSAGES/libgnomedb-2.mo
-share/locale/cs/LC_MESSAGES/libgnomedb-2.mo
-share/locale/da/LC_MESSAGES/libgnomedb-2.mo
-share/locale/de/LC_MESSAGES/libgnomedb-2.mo
-share/locale/el/LC_MESSAGES/libgnomedb-2.mo
-share/locale/es/LC_MESSAGES/libgnomedb-2.mo
-share/locale/fa/LC_MESSAGES/libgnomedb-2.mo
-share/locale/fi/LC_MESSAGES/libgnomedb-2.mo
-share/locale/fr/LC_MESSAGES/libgnomedb-2.mo
-share/locale/ga/LC_MESSAGES/libgnomedb-2.mo
-share/locale/gl/LC_MESSAGES/libgnomedb-2.mo
-share/locale/hu/LC_MESSAGES/libgnomedb-2.mo
-share/locale/it/LC_MESSAGES/libgnomedb-2.mo
-share/locale/ja/LC_MESSAGES/libgnomedb-2.mo
-share/locale/ko/LC_MESSAGES/libgnomedb-2.mo
-share/locale/ml/LC_MESSAGES/libgnomedb-2.mo
-share/locale/ms/LC_MESSAGES/libgnomedb-2.mo
-share/locale/nl/LC_MESSAGES/libgnomedb-2.mo
-share/locale/no/LC_MESSAGES/libgnomedb-2.mo
-share/locale/pl/LC_MESSAGES/libgnomedb-2.mo
-share/locale/pt/LC_MESSAGES/libgnomedb-2.mo
-share/locale/pt_BR/LC_MESSAGES/libgnomedb-2.mo
-share/locale/ru/LC_MESSAGES/libgnomedb-2.mo
-share/locale/sk/LC_MESSAGES/libgnomedb-2.mo
-share/locale/sl/LC_MESSAGES/libgnomedb-2.mo
-share/locale/sr/LC_MESSAGES/libgnomedb-2.mo
-share/locale/sr@Latn/LC_MESSAGES/libgnomedb-2.mo
-share/locale/sv/LC_MESSAGES/libgnomedb-2.mo
-share/locale/ta/LC_MESSAGES/libgnomedb-2.mo
-share/locale/tr/LC_MESSAGES/libgnomedb-2.mo
-share/locale/uk/LC_MESSAGES/libgnomedb-2.mo
-share/locale/vi/LC_MESSAGES/libgnomedb-2.mo
-share/locale/zh_CN/LC_MESSAGES/libgnomedb-2.mo
-share/locale/zh_TW/LC_MESSAGES/libgnomedb-2.mo
-@dirrm share/gnome/pixmaps/libgnomedb
-@dirrm share/gnome/omf/libgnomedb
-@dirrm share/gnome/gnome-db/ui
-@dirrm share/gnome/gnome-db
-@dirrm share/doc/libgnomedb
-@dirrm include/libgnomedb
-@dirrm etc/gconf/gconf.xml.defaults/schemas/apps/gnome-db/UI
-@dirrm etc/gconf/gconf.xml.defaults/schemas/apps/gnome-db/Editor
-@dirrm etc/gconf/gconf.xml.defaults/schemas/apps/gnome-db
-@dirrm etc/gconf/gconf.xml.defaults/apps/gnome-db/UI
-@dirrm etc/gconf/gconf.xml.defaults/apps/gnome-db/Editor
-@dirrm etc/gconf/gconf.xml.defaults/apps/gnome-db
-@unexec scrollkeeper-uninstall -q %D/share/gnome/omf/libgnomedb/libgnomedb-C.omf 2>/dev/null || /usr/bin/true