summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorLeonardo Boshell <leonardop@gentoo.org>2005-11-03 07:36:07 +0000
committerLeonardo Boshell <leonardop@gentoo.org>2005-11-03 07:36:07 +0000
commit4fcc08aa0e01c986e27937d2e1e760b19968fc92 (patch)
tree95e188096d3c3c1181e5ca6eb27c173df6d5f2d4 /gnome-extra
parentpost-commit touchup (diff)
downloadgentoo-2-4fcc08aa0e01c986e27937d2e1e760b19968fc92.tar.gz
gentoo-2-4fcc08aa0e01c986e27937d2e1e760b19968fc92.tar.bz2
gentoo-2-4fcc08aa0e01c986e27937d2e1e760b19968fc92.zip
Pruning old ebuild+patches
(Portage version: 2.0.53_rc7)
Diffstat (limited to 'gnome-extra')
-rw-r--r--gnome-extra/libgda/files/digest-libgda-1.0.21
-rw-r--r--gnome-extra/libgda/files/libgda-1.0.2-firebird_fix.patch11
-rw-r--r--gnome-extra/libgda/files/libgda-1.0.2-gcc2_fix.patch15
-rw-r--r--gnome-extra/libgda/files/libgda-1.0.2-gcc3.4_fix.patch96
-rw-r--r--gnome-extra/libgda/libgda-1.0.2.ebuild112
5 files changed, 0 insertions, 235 deletions
diff --git a/gnome-extra/libgda/files/digest-libgda-1.0.2 b/gnome-extra/libgda/files/digest-libgda-1.0.2
deleted file mode 100644
index 3d6a0b20538a..000000000000
--- a/gnome-extra/libgda/files/digest-libgda-1.0.2
+++ /dev/null
@@ -1 +0,0 @@
-MD5 c84cad90fb721c41fc6c47ee2829f4f0 libgda-1.0.2.tar.bz2 1055847
diff --git a/gnome-extra/libgda/files/libgda-1.0.2-firebird_fix.patch b/gnome-extra/libgda/files/libgda-1.0.2-firebird_fix.patch
deleted file mode 100644
index 2087f354e1a3..000000000000
--- a/gnome-extra/libgda/files/libgda-1.0.2-firebird_fix.patch
+++ /dev/null
@@ -1,11 +0,0 @@
-diff -NurdB libgda-1.0.2/providers/firebird/gda-firebird-provider.c libgda-1.0.2-firebird-fix/providers/firebird/gda-firebird-provider.c
---- libgda-1.0.2/providers/firebird/gda-firebird-provider.c 2003-01-15 19:10:29.000000000 -0500
-+++ libgda-1.0.2-firebird-fix/providers/firebird/gda-firebird-provider.c 2005-05-11 15:24:29.000000000 -0500
-@@ -29,6 +29,7 @@
- #define TRANSACTION_DATA "GDA_Firebird_TransactionData"
- #define STATEMENT_DATA "GDA_Firebird_StatementData"
-
-+static isc_tr_handle *gda_firebird_command_get_transaction (GdaCommand *cmd);
- static void gda_firebird_provider_class_init (GdaFirebirdProviderClass *klass);
- static void gda_firebird_provider_init (GdaFirebirdProvider *provider,
- GdaFirebirdProviderClass *klass);
diff --git a/gnome-extra/libgda/files/libgda-1.0.2-gcc2_fix.patch b/gnome-extra/libgda/files/libgda-1.0.2-gcc2_fix.patch
deleted file mode 100644
index d5b27c26b7f8..000000000000
--- a/gnome-extra/libgda/files/libgda-1.0.2-gcc2_fix.patch
+++ /dev/null
@@ -1,15 +0,0 @@
-diff -NurB libgda-1.0.2-orig/libgda/gda-command.c libgda-1.0.2/libgda/gda-command.c
---- libgda-1.0.2-orig/libgda/gda-command.c 2003-12-03 00:46:02.000000000 -0500
-+++ libgda-1.0.2/libgda/gda-command.c 2003-12-03 00:47:33.000000000 -0500
-@@ -100,8 +100,10 @@
- GdaCommand *
- gda_command_copy (GdaCommand *cmd)
- {
-+ GdaCommand *new_cmd;
-+
- g_return_val_if_fail (cmd != NULL, NULL);
-- GdaCommand *new_cmd = gda_command_new (gda_command_get_text (cmd),
-+ new_cmd = gda_command_new (gda_command_get_text (cmd),
- gda_command_get_command_type (cmd),
- gda_command_get_options (cmd));
- gda_command_set_transaction (new_cmd,
diff --git a/gnome-extra/libgda/files/libgda-1.0.2-gcc3.4_fix.patch b/gnome-extra/libgda/files/libgda-1.0.2-gcc3.4_fix.patch
deleted file mode 100644
index fc04b14cc653..000000000000
--- a/gnome-extra/libgda/files/libgda-1.0.2-gcc3.4_fix.patch
+++ /dev/null
@@ -1,96 +0,0 @@
-diff -NurdB libgda-1.0.2/libgda/gda-util.c libgda-1.0.2-gcc3.4/libgda/gda-util.c
---- libgda-1.0.2/libgda/gda-util.c 2003-11-03 04:48:05.000000000 -0500
-+++ libgda-1.0.2-gcc3.4/libgda/gda-util.c 2005-05-11 15:58:31.000000000 -0500
-@@ -60,7 +60,7 @@
- case GDA_VALUE_TYPE_TIME : return "time";
- case GDA_VALUE_TYPE_TIMESTAMP : return "timestamp";
- case GDA_VALUE_TYPE_TINYINT : return "tinyint";
-- default:
-+ default: ;
- }
-
- return "string";
-diff -NurdB libgda-1.0.2/providers/ldap/gda-ldap-provider.c libgda-1.0.2-gcc3.4/providers/ldap/gda-ldap-provider.c
---- libgda-1.0.2/providers/ldap/gda-ldap-provider.c 2003-02-03 12:12:13.000000000 -0500
-+++ libgda-1.0.2-gcc3.4/providers/ldap/gda-ldap-provider.c 2005-05-11 15:59:16.000000000 -0500
-@@ -275,7 +275,7 @@
- switch (feature) {
- case GDA_CONNECTION_FEATURE_SQL :
- return TRUE;
-- default :
-+ default : ;
- }
-
- return FALSE;
-@@ -466,7 +466,7 @@
- return get_ldap_tables (cnc, params);
- case GDA_CONNECTION_SCHEMA_TYPES :
- return get_ldap_types (cnc, params);
-- default :
-+ default : ;
- }
-
- return NULL;
-diff -NurdB libgda-1.0.2/providers/mysql/gda-mysql-provider.c libgda-1.0.2-gcc3.4/providers/mysql/gda-mysql-provider.c
---- libgda-1.0.2/providers/mysql/gda-mysql-provider.c 2003-11-26 16:01:22.000000000 -0500
-+++ libgda-1.0.2-gcc3.4/providers/mysql/gda-mysql-provider.c 2005-05-11 15:58:31.000000000 -0500
-@@ -510,7 +510,7 @@
-
- g_free (str);
- break;
-- default:
-+ default: ;
- }
-
- return reclist;
-@@ -655,7 +655,7 @@
- case GDA_CONNECTION_FEATURE_SQL :
- case GDA_CONNECTION_FEATURE_TRANSACTIONS :
- return TRUE;
-- default :
-+ default : ;
- }
-
- return FALSE;
-@@ -1187,7 +1187,7 @@
- return get_mysql_tables (cnc, params);
- case GDA_CONNECTION_SCHEMA_TYPES :
- return get_mysql_types (cnc, params);
-- default :
-+ default : ;
- }
-
- return NULL;
-diff -NurdB libgda-1.0.2/providers/sqlite/gda-sqlite-provider.c libgda-1.0.2-gcc3.4/providers/sqlite/gda-sqlite-provider.c
---- libgda-1.0.2/providers/sqlite/gda-sqlite-provider.c 2003-01-15 19:13:28.000000000 -0500
-+++ libgda-1.0.2-gcc3.4/providers/sqlite/gda-sqlite-provider.c 2005-05-11 15:58:31.000000000 -0500
-@@ -588,7 +588,7 @@
- case GDA_CONNECTION_FEATURE_TRIGGERS :
- case GDA_CONNECTION_FEATURE_VIEWS :
- return TRUE;
-- default:
-+ default: ;
- }
-
- return FALSE;
-@@ -774,7 +774,7 @@
- return get_tables (cnc);
- case GDA_CONNECTION_SCHEMA_TYPES :
- return get_types ();
-- default:
-+ default: ;
- }
-
- return NULL;
-diff -NurdB libgda-1.0.2/providers/xml/gda-xml-provider.c libgda-1.0.2-gcc3.4/providers/xml/gda-xml-provider.c
---- libgda-1.0.2/providers/xml/gda-xml-provider.c 2003-09-01 18:55:02.000000000 -0500
-+++ libgda-1.0.2-gcc3.4/providers/xml/gda-xml-provider.c 2005-05-11 15:58:31.000000000 -0500
-@@ -681,7 +681,7 @@
- return get_tables (cnc, xmldb);
- case GDA_CONNECTION_SCHEMA_TYPES :
- return get_types (cnc);
-- default :
-+ default : ;
- }
-
- return NULL;
diff --git a/gnome-extra/libgda/libgda-1.0.2.ebuild b/gnome-extra/libgda/libgda-1.0.2.ebuild
deleted file mode 100644
index 6ce85129ed21..000000000000
--- a/gnome-extra/libgda/libgda-1.0.2.ebuild
+++ /dev/null
@@ -1,112 +0,0 @@
-# Copyright 1999-2005 Gentoo Foundation
-# Distributed under the terms of the GNU General Public License v2
-# $Header: /var/cvsroot/gentoo-x86/gnome-extra/libgda/libgda-1.0.2.ebuild,v 1.14 2005/05/11 22:47:00 leonardop Exp $
-
-IUSE="odbc postgres mysql ldap firebird freetds sqlite mdb oci8 doc"
-
-inherit gnome2 eutils
-
-DESCRIPTION="Gnome Database Access Library"
-HOMEPAGE="http://www.gnome-db.org/"
-SLOT="1"
-LICENSE="GPL-2 LGPL-2"
-KEYWORDS="x86 ppc sparc alpha hppa ia64"
-
-RDEPEND=">=dev-libs/glib-2.0
- >=dev-libs/libxml2-2.0
- >=dev-libs/libxslt-1.0.9
- >=gnome-base/gnome-vfs-2.0
- dev-libs/popt
- sys-libs/ncurses
- mysql? ( >=dev-db/mysql-3.23.51 )
- postgres? ( >=dev-db/postgresql-7.2.1 )
- odbc? ( >=dev-db/unixODBC-2.0.6 )
- ldap? ( >=net-nds/openldap-2.0.25 )
- x86? ( firebird? ( dev-db/firebird ) )
- freetds? ( >=dev-db/freetds-0.62 )
- sqlite? ( =dev-db/sqlite-2* )
- !ia64? ( mdb? ( >=app-office/mdbtools-0.5 ) )"
-
-DEPEND=">=dev-util/pkgconfig-0.8
- >=dev-util/intltool-0.22
- >=sys-devel/gettext-0.11
- app-text/scrollkeeper
- doc? ( dev-util/gtk-doc )
- ${RDEPEND}"
-
-DOCS="AUTHORS COPYING* ChangeLog INSTALL NEWS README"
-
-# problems with parallel builds
-MAKEOPTS="${MAKEOPTS} -j1"
-
-src_unpack() {
- unpack ${A}
- gnome2_omf_fix ${S}/doc/Makefile.in
- epatch ${FILESDIR}/${P}-gcc2_fix.patch
-
- cd ${S}
- # See bug #87545
- epatch ${FILESDIR}/${P}-gcc3.4_fix.patch
- # See bug #81724.
- epatch ${FILESDIR}/${P}-freetds_fix.patch
- # See bug #78314
- epatch ${FILESDIR}/${PN}-1.0.3-gtkdoc_fixes.patch
- # Fix compilation of firebird provider
- epatch ${FILESDIR}/${P}-firebird_fix.patch
-}
-
-src_compile() {
-
- local myconf
-
- use mysql \
- && myconf="${myconf} --with-mysql=/usr" \
- || myconf="${myconf} --without-mysql"
-
- use postgres \
- && myconf="${myconf} --with-postgres=/usr" \
- || myconf="${myconf} --without-postgres"
-
- use odbc \
- && myconf="${myconf} --with-odbc=/usr" \
- || myconf="${myconf} --without-odbc"
-
- use ldap \
- && myconf="${myconf} --with-ldap=/usr" \
- || myconf="${myconf} --without-ldap"
-
- use sqlite \
- && myconf="$myconf --with-sqlite=/usr" \
- || myconf="$myconf --without-sqlite"
-
- use freetds \
- && myconf="$myconf --with-tds=/usr" \
- || myconf="$myconf --without-tds"
-
- use firebird \
- && myconf="${myconf} --with-firebird=/usr" \
- || myconf="${myconf} --without-firebird"
-
- use mdb \
- && myconf="${myconf} --with-mdb=/usr" \
- || myconf="${myconf} --without-mdb"
-
- # not in portage (http://linux.techass.com/projects/xdb/)
- myconf="${myconf} --without-xbase"
- myconf="${myconf} --without-msql"
-
- # closed source dbs
- myconf="${myconf} --without-ibmdb2"
- myconf="${myconf} --without-sybase"
- use oci8 || myconf="${myconf} --without-oracle"
-
- # workaround for readline-4.1 profile - disables building of gda-config-tool
- if has_version "=sys-libs/readline-4.1*"; then
- export CONFIG_TOOL_HEADERS="wrong"
- fi
-
- gnome2_src_compile ${myconf}
-
- unset CONFIG_TOOL_HEADERS
-
-}