summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorLeonardo Boshell <leonardop@gentoo.org>2005-08-23 22:27:19 +0000
committerLeonardo Boshell <leonardop@gentoo.org>2005-08-23 22:27:19 +0000
commit624890b7ea0628c0b8fb1f9b413c07d205cc6b13 (patch)
treea58cf36d6f778f8621f950c32d7c054eabc8f137 /app-office/gnumeric
parentTo ~sparc (diff)
downloadgentoo-2-624890b7ea0628c0b8fb1f9b413c07d205cc6b13.tar.gz
gentoo-2-624890b7ea0628c0b8fb1f9b413c07d205cc6b13.tar.bz2
gentoo-2-624890b7ea0628c0b8fb1f9b413c07d205cc6b13.zip
Removing old ebuild/patch.
(Portage version: 2.0.51.22-r2)
Diffstat (limited to 'app-office/gnumeric')
-rw-r--r--app-office/gnumeric/files/digest-gnumeric-1.4.21
-rw-r--r--app-office/gnumeric/files/gnumeric-1.4.2-sheet_object_scroll.patch74
-rw-r--r--app-office/gnumeric/gnumeric-1.4.2.ebuild112
3 files changed, 0 insertions, 187 deletions
diff --git a/app-office/gnumeric/files/digest-gnumeric-1.4.2 b/app-office/gnumeric/files/digest-gnumeric-1.4.2
deleted file mode 100644
index 21719b18ac66..000000000000
--- a/app-office/gnumeric/files/digest-gnumeric-1.4.2
+++ /dev/null
@@ -1 +0,0 @@
-MD5 095167b8f123b3cf4bf76111a9a2cd1e gnumeric-1.4.2.tar.bz2 16914595
diff --git a/app-office/gnumeric/files/gnumeric-1.4.2-sheet_object_scroll.patch b/app-office/gnumeric/files/gnumeric-1.4.2-sheet_object_scroll.patch
deleted file mode 100644
index d0f5bb005020..000000000000
--- a/app-office/gnumeric/files/gnumeric-1.4.2-sheet_object_scroll.patch
+++ /dev/null
@@ -1,74 +0,0 @@
-===================================================================
-RCS file: /cvs/gnome/gnumeric/src/sheet-object-widget.c,v
-retrieving revision 1.141
-retrieving revision 1.142
-diff -u -r1.141 -r1.142
---- sheet-object-widget.c 2005/01/05 05:22:55 1.141
-+++ sheet-object-widget.c 2005/02/06 17:57:39 1.142
-@@ -769,11 +769,11 @@
-
- swa->being_updated = TRUE;
- sheet_cell_set_value (cell, value_new_int (swa->adjustment->value));
-- swa->being_updated = FALSE;
-
- sheet_set_dirty (ref.sheet, TRUE);
- workbook_recalc (ref.sheet->workbook);
- sheet_update (ref.sheet);
-+ swa->being_updated = FALSE;
- }
- }
-
-@@ -782,7 +782,7 @@
- {
- g_return_if_fail (swa != NULL);
-
-- swa->adjustment = GTK_ADJUSTMENT (gtk_adjustment_new (0., 0., 100., 1., 10., 1.));
-+ swa->adjustment = GTK_ADJUSTMENT (gtk_adjustment_new (0., 0., 100., 1., 10., 0.));
- g_object_ref (swa->adjustment);
- gtk_object_sink (GTK_OBJECT (swa->adjustment));
-
-@@ -908,7 +908,7 @@
- state->swa->adjustment->lower = gtk_spin_button_get_value_as_int (
- GTK_SPIN_BUTTON (state->min));
- state->swa->adjustment->upper = gtk_spin_button_get_value_as_int (
-- GTK_SPIN_BUTTON (state->max)) + 1;
-+ GTK_SPIN_BUTTON (state->max));
- state->swa->adjustment->step_increment = gtk_spin_button_get_value_as_int (
- GTK_SPIN_BUTTON (state->inc));
- state->swa->adjustment->page_increment = gtk_spin_button_get_value_as_int (
-@@ -1035,7 +1035,7 @@
- {
- SheetWidgetAdjustment const *swa = SHEET_WIDGET_ADJUSTMENT (so);
- gsf_xml_out_add_float (output, "Min", swa->adjustment->lower, 2);
-- gsf_xml_out_add_float (output, "Max", swa->adjustment->upper-1., 2); /* allow scrolling to max */
-+ gsf_xml_out_add_float (output, "Max", swa->adjustment->upper, 2); /* allow scrolling to max */
- gsf_xml_out_add_float (output, "Inc", swa->adjustment->step_increment, 2);
- gsf_xml_out_add_float (output, "Page", swa->adjustment->page_increment, 2);
- gsf_xml_out_add_float (output, "Value", swa->adjustment->value, 2);
-@@ -1050,7 +1050,7 @@
- SheetWidgetAdjustment *swa = SHEET_WIDGET_ADJUSTMENT (so);
-
- xml_node_set_double (tree, "Min", swa->adjustment->lower, 2);
-- xml_node_set_double (tree, "Max", swa->adjustment->upper-1., 2); /* allow scrolling to max */
-+ xml_node_set_double (tree, "Max", swa->adjustment->upper, 2); /* allow scrolling to max */
- xml_node_set_double (tree, "Inc", swa->adjustment->step_increment, 2);
- xml_node_set_double (tree, "Page", swa->adjustment->page_increment, 2);
- xml_node_set_double (tree, "Value", swa->adjustment->value, 2);
-@@ -1072,7 +1072,7 @@
- if (xml_node_get_double (tree, "Min", &tmp))
- swa->adjustment->lower = tmp;
- if (xml_node_get_double (tree, "Max", &tmp))
-- swa->adjustment->upper = tmp + 1.; /* allow scrolling to max */
-+ swa->adjustment->upper = tmp; /* allow scrolling to max */
- if (xml_node_get_double (tree, "Inc", &tmp))
- swa->adjustment->step_increment = tmp;
- if (xml_node_get_double (tree, "Page", &tmp))
-@@ -1092,7 +1092,7 @@
- g_return_if_fail (swa != NULL);
- swa->adjustment->value = value;
- swa->adjustment->lower = min;
-- swa->adjustment->upper = max + 1.; /* allow scrolling to max */
-+ swa->adjustment->upper = max; /* allow scrolling to max */
- swa->adjustment->step_increment = inc;
- swa->adjustment->page_increment = page;
- if (link != NULL)
diff --git a/app-office/gnumeric/gnumeric-1.4.2.ebuild b/app-office/gnumeric/gnumeric-1.4.2.ebuild
deleted file mode 100644
index 271c1294975b..000000000000
--- a/app-office/gnumeric/gnumeric-1.4.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/app-office/gnumeric/gnumeric-1.4.2.ebuild,v 1.10 2005/06/03 12:21:21 foser Exp $
-
-inherit virtualx gnome2 eutils flag-o-matic
-
-DESCRIPTION="Gnumeric, the GNOME Spreadsheet"
-HOMEPAGE="http://www.gnome.org/projects/gnumeric/"
-LICENSE="GPL-2"
-
-SLOT="0"
-KEYWORDS="alpha amd64 hppa ia64 ppc ppc64 sparc x86"
-
-#IUSE="libgda gnomedb python bonobo"
-IUSE="libgda python gnome"
-
-RDEPEND=">=dev-libs/glib-2.4
- =gnome-extra/libgsf-1.10*
- >=dev-libs/libxml2-2.4.12
- >=x11-libs/pango-1.4
-
- >=x11-libs/gtk+-2.4
- >=gnome-base/libglade-2.4
- >=gnome-base/libgnomecanvas-2
- >=gnome-base/libgnomeprint-2.6
- >=gnome-base/libgnomeprintui-2.6
- >=media-libs/libart_lgpl-2.3.11
-
- gnome? ( >=x11-libs/gtk+-2.4
- >=gnome-base/libglade-2.4
- >=gnome-base/libgnomecanvas-2
- >=gnome-base/libgnomeprint-2.6
- >=gnome-base/libgnomeprintui-2.6
- >=media-libs/libart_lgpl-2.3.11
- >=gnome-base/gconf-2
- >=gnome-base/libgnome-2
- >=gnome-base/libgnomeui-2
- >=gnome-base/libbonobo-2.2
- >=gnome-base/libbonoboui-2.2
- dev-util/pkgconfig )
- python? ( >=dev-lang/python-2
- >=dev-python/pygtk-2 )
- libgda? ( >=gnome-extra/libgda-1.0.1 )
- dev-util/pkgconfig" # see #67107
-# gnomedb? ( >=gnome-extra/libgnomedb-0.90.2 )
-
-DEPEND="${RDEPEND}
- >=dev-util/intltool-0.30
- dev-util/pkgconfig
- app-text/scrollkeeper"
-
-pkg_setup() {
-
- if use gnome; then
- if ! pkg-config --exists libgsf-gnome-1; then
- einfo "libgsf needs to be compiled with gnome in USE"
- einfo "for this version of gnumeric to work. Rebuild"
- einfo "libgsf first like this :"
- einfo "USE=gnome emerge libgsf -vp"
- die "libgsf was built without gnome support..."
- fi
- fi
-
-}
-
-src_unpack() {
-
- unpack ${A}
- gnome2_omf_fix
-
- cd ${S}/src
- # fix #80565 object problem
- epatch ${FILESDIR}/${P}-sheet_object_scroll.patch
-
-}
-
-src_compile() {
-
- # gcc bug (http://bugs.gnome.org/show_bug.cgi?id=128834)
- replace-flags "-Os" "-O2"
-
- econf \
- `use_with python` \
- `use_with libgda gda` \
- `use_with gnome` \
- || die
-# building nogui is still too problematic
-# `use_with gtk` \
- # `use_with gnomedb gda`
-
- # the build process has to be able to connect to X
- Xemake || die
-
-}
-
-src_install() {
-
- gnome2_src_install
-
- # make gnumeric find it's help
- dosym \
- /usr/share/gnome/help/gnumeric \
- /usr/share/${PN}/${PV}/doc
-
-}
-
-DOCS="AUTHORS COPYING* ChangeLog HACKING NEWS README TODO"
-
-USE_DESTDIR="1"
-
-# fix possible compile problem (#78828)
-MAKEOPTS="${MAKEOPTS} -j1"