summaryrefslogtreecommitdiff
path: root/math/gnumeric/patches
diff options
context:
space:
mode:
authorrh <rh@pkgsrc.org>2000-06-26 21:55:47 +0000
committerrh <rh@pkgsrc.org>2000-06-26 21:55:47 +0000
commit5cb4f7dad2969a55787564038c7aa671cb334f47 (patch)
tree27e4716030ad47cc0bd74cdf040f82ab07d36d54 /math/gnumeric/patches
parent0bdb3070fc149ad9cf84858a516a290a3c5c8042 (diff)
downloadpkgsrc-5cb4f7dad2969a55787564038c7aa671cb334f47.tar.gz
Update gnumeric to 0.56. In addition to the following changes, this also
fixes PR 10454 by Jasper Wallace. Changes include: * Stf importer bug fixes and enhancements. * Speedup workbook exit, copy/paste. * Improve cut/copy/paste. * Improve col/row resize. * Undo for copy/paste, autofill, col/row resize * More work on formula guru. * Extend auto-fill to support months and years. * Some translation bugs. * Tooltips for combo boxes. * Synchronize list selection with entry field in combo boxes. * Make units in print setup dialog user selectable. * More dialog polishing. * Sorting now moves styles with the elements * Sorting now detects headers when sorting * Added two perl scripts for translation help/maintainence. Also added is a README.tools file, explaining how to use these. * Fix tricky Excel import problem. * Split libole2 out into a standalone package. * Added support for autocompletion. * Changed a bunch of internals to work with StyleFormats instead of throwing strings around. * Improved the optimization of styles. * Fix ROUND. * Make sorts stable. * Make sorts faster. * Updated: da (Kenneth), de (Karl), ja (Oka/Nakai), no (Kjartan), pt (Jesus), ru (Valek), maybe more. * Update not new, but not mentioned the last time: it (Leandro).
Diffstat (limited to 'math/gnumeric/patches')
-rw-r--r--math/gnumeric/patches/patch-aa14
-rw-r--r--math/gnumeric/patches/patch-ab28
2 files changed, 23 insertions, 19 deletions
diff --git a/math/gnumeric/patches/patch-aa b/math/gnumeric/patches/patch-aa
index 28195d16fdc..5f4fcf4459a 100644
--- a/math/gnumeric/patches/patch-aa
+++ b/math/gnumeric/patches/patch-aa
@@ -1,17 +1,17 @@
-$NetBSD: patch-aa,v 1.7 2000/05/30 09:16:10 rh Exp $
+$NetBSD: patch-aa,v 1.8 2000/06/26 21:55:49 rh Exp $
---- configure.orig Wed May 10 03:50:13 2000
-+++ configure Fri May 19 17:55:45 2000
-@@ -3070,7 +3070,7 @@
+--- configure.orig Tue Jun 20 04:00:38 2000
++++ configure Mon Jun 26 22:40:08 2000
+@@ -3055,7 +3055,7 @@
echo $ac_n "(cached) $ac_c" 1>&6
else
ac_save_LIBS="$LIBS"
-LIBS="-lxml `$GNOME_CONFIG --libs xml` $LIBS"
-+LIBS="`xml-config --libs` ${LIBS}"
++LIBS="`xml-config --libs` $LIBS"
cat > conftest.$ac_ext <<EOF
- #line 3076 "configure"
+ #line 3061 "configure"
#include "confdefs.h"
-@@ -3100,7 +3100,7 @@
+@@ -3085,7 +3085,7 @@
echo "$ac_t""yes" 1>&6
diff --git a/math/gnumeric/patches/patch-ab b/math/gnumeric/patches/patch-ab
index 7f76c14981d..8b0424844ec 100644
--- a/math/gnumeric/patches/patch-ab
+++ b/math/gnumeric/patches/patch-ab
@@ -1,13 +1,17 @@
-$NetBSD: patch-ab,v 1.3 2000/06/01 12:08:00 rh Exp $
+$NetBSD: patch-ab,v 1.4 2000/06/26 21:55:50 rh Exp $
---- libole2/doc/Makefile.in.orig Sun May 21 08:26:49 2000
-+++ libole2/doc/Makefile.in Wed May 31 20:59:55 2000
-@@ -272,8 +272,6 @@
- echo '-- Installing '$$i ; \
- $(INSTALL_DATA) $$i $(DESTDIR)$(TARGET_DIR); \
- done; \
-- echo '-- Installing $(srcdir)/html/index.sgml' ; \
-- $(INSTALL_DATA) $(srcdir)/html/index.sgml $(DESTDIR)$(TARGET_DIR); \
- echo '-- Fixing Crossreferences' ; \
- gtkdoc-fixxref --module=$(DOC_MODULE) --html-dir=$(HTML_DIR)|| true; \
- fi)
+--- src/plugin.c.orig Sat May 27 04:18:47 2000
++++ src/plugin.c Mon Jun 26 22:42:10 2000
+@@ -206,10 +206,10 @@
+ len = strlen (e->d_name);
+ /*
+ * Install all files in the directory with the name
+- * gnum_*.so
++ * libgnum_*.so
+ */
+ if (len > 8 &&
+- strncmp (e->d_name, "gnum_", 3) == 0 &&
++ strncmp (e->d_name, "libgnum_", 8) == 0 &&
+ strncmp (e->d_name + len - 3, ".so", 3) == 0){
+ char *plugin_name;
+