aboutsummaryrefslogtreecommitdiffstats
path: root/math
diff options
context:
space:
mode:
authormarcus <marcus@FreeBSD.org>2009-08-17 07:00:41 +0800
committermarcus <marcus@FreeBSD.org>2009-08-17 07:00:41 +0800
commit3f28918bf01e9bfe6811c92345f883628677152b (patch)
tree783eec2eddb69ece6d40c495ecd8abbfc7f66d7e /math
parentabfd7995490a43cf216578d9173adbf1e0fd5823 (diff)
downloadfreebsd-ports-gnome-3f28918bf01e9bfe6811c92345f883628677152b.tar.gz
freebsd-ports-gnome-3f28918bf01e9bfe6811c92345f883628677152b.tar.zst
freebsd-ports-gnome-3f28918bf01e9bfe6811c92345f883628677152b.zip
Update to 1.9.10.
Diffstat (limited to 'math')
-rw-r--r--math/gnumeric/Makefile3
-rw-r--r--math/gnumeric/distinfo6
-rw-r--r--math/gnumeric/files/patch-print-crash69
-rw-r--r--math/gnumeric/pkg-plist16
4 files changed, 16 insertions, 78 deletions
diff --git a/math/gnumeric/Makefile b/math/gnumeric/Makefile
index f7481b778564..e612701563b8 100644
--- a/math/gnumeric/Makefile
+++ b/math/gnumeric/Makefile
@@ -7,8 +7,7 @@
#
PORTNAME= gnumeric
-PORTVERSION= 1.9.9
-PORTREVISION= 2
+PORTVERSION= 1.9.10
CATEGORIES= math gnome
MASTER_SITES= GNOME
DIST_SUBDIR= gnome2
diff --git a/math/gnumeric/distinfo b/math/gnumeric/distinfo
index a9c5fdbbab96..deed946db358 100644
--- a/math/gnumeric/distinfo
+++ b/math/gnumeric/distinfo
@@ -1,3 +1,3 @@
-MD5 (gnome2/gnumeric-1.9.9.tar.bz2) = 5ba74b67b0667b165719f9dfa1588519
-SHA256 (gnome2/gnumeric-1.9.9.tar.bz2) = 042fac3bb233d900d837ecd41f683954911330a2b1984a082f259a8423ebe20a
-SIZE (gnome2/gnumeric-1.9.9.tar.bz2) = 16028397
+MD5 (gnome2/gnumeric-1.9.10.tar.bz2) = 33f1c30056c7ce6402bc3ccca3981e1d
+SHA256 (gnome2/gnumeric-1.9.10.tar.bz2) = ebe0b2ab52f2a90eedcb3b070e77d97bfb5eb7379b8ca871706f224705fb2cf2
+SIZE (gnome2/gnumeric-1.9.10.tar.bz2) = 16765251
diff --git a/math/gnumeric/files/patch-print-crash b/math/gnumeric/files/patch-print-crash
deleted file mode 100644
index dc9e7c4930d7..000000000000
--- a/math/gnumeric/files/patch-print-crash
+++ /dev/null
@@ -1,69 +0,0 @@
-From f4d534730632873339ad0a16419edc835b9c771a Mon Sep 17 00:00:00 2001
-From: Andreas J. Guelzow <aguelzow@pyrshep.ca>
-Date: Mon, 22 Jun 2009 23:54:08 +0000
-Subject: Fix printing crash. [#586672]
-
-2009-06-22 Andreas J. Guelzow <aguelzow@pyrshep.ca>
-
- * src/print-info.c (gnm_page_breaks_clean): we can't and don't need
- to clean a non-existing breaks array.
- * src/print.c (compute_sheet_pages): fix sense of test anc combine
- code
----
---- src/print-info.c
-+++ src/print-info.c
-@@ -1441,6 +1441,10 @@ void
- gnm_page_breaks_clean (GnmPageBreaks *breaks)
- {
- guint i;
-+
-+ if (breaks == NULL)
-+ return;
-+
- for (i = 0; i < breaks->details->len; i++) {
- GnmPageBreak *pbreak = &g_array_index (breaks->details,
- GnmPageBreak, i);
-diff --git a/src/print.c b/src/print.c
-index 2c0afd4..5fb815a 100644
---- src/print.c
-+++ src/print.c
-@@ -953,9 +953,18 @@ compute_sheet_pages (GtkPrintContext *context,
- repeat_left_start = repeat_left_use ? r.start.col : 0;
- repeat_left_end = repeat_left_use ? r.end.col : 0;
-
-- if (pi->ignore_pb) {
-- gnm_page_breaks_clean (pinfo->page_breaks.h);
-- gnm_page_breaks_clean (pinfo->page_breaks.v);
-+ if (!pi->ignore_pb) {
-+ if (pinfo->page_breaks.h == NULL)
-+ print_info_set_breaks (pinfo,
-+ gnm_page_breaks_new (FALSE));
-+ else
-+ gnm_page_breaks_clean (pinfo->page_breaks.h);
-+ if (pinfo->page_breaks.v == NULL)
-+ print_info_set_breaks (pinfo,
-+ gnm_page_breaks_new (TRUE));
-+ else
-+ gnm_page_breaks_clean (pinfo->page_breaks.v);
-+
- }
-
- if (pinfo->scaling.type == PRINT_SCALE_FIT_PAGES) {
-@@ -995,15 +1004,6 @@ compute_sheet_pages (GtkPrintContext *context,
- usable_x = page_width / px;
- usable_y = page_height / py;
-
-- if (!pi->ignore_pb) {
-- if (pinfo->page_breaks.h == NULL)
-- print_info_set_breaks (pinfo,
-- gnm_page_breaks_new (FALSE));
-- if (pinfo->page_breaks.v == NULL)
-- print_info_set_breaks (pinfo,
-- gnm_page_breaks_new (TRUE));
-- }
--
- paginate (&column_pagination, sheet, r.start.col, r.end.col,
- usable_x - row_header_width,
- repeat_left_use, repeat_left_start, repeat_left_end,
---
-cgit v0.8.2
diff --git a/math/gnumeric/pkg-plist b/math/gnumeric/pkg-plist
index 4b3a0c38ddf0..3adaa9086ce6 100644
--- a/math/gnumeric/pkg-plist
+++ b/math/gnumeric/pkg-plist
@@ -29,11 +29,13 @@ include/libspreadsheet-1.10/spreadsheet/func-builtin.h
include/libspreadsheet-1.10/spreadsheet/func.h
include/libspreadsheet-1.10/spreadsheet/gnm-command-impl.h
include/libspreadsheet-1.10/spreadsheet/gnm-commands-slicer.h
+include/libspreadsheet-1.10/spreadsheet/gnm-data-cache-source.h
include/libspreadsheet-1.10/spreadsheet/gnm-datetime.h
include/libspreadsheet-1.10/spreadsheet/gnm-format.h
include/libspreadsheet-1.10/spreadsheet/gnm-graph-window.h
include/libspreadsheet-1.10/spreadsheet/gnm-pane.h
include/libspreadsheet-1.10/spreadsheet/gnm-plugin.h
+include/libspreadsheet-1.10/spreadsheet/gnm-sheet-slicer.h
include/libspreadsheet-1.10/spreadsheet/gnm-so-filled.h
include/libspreadsheet-1.10/spreadsheet/gnm-so-line.h
include/libspreadsheet-1.10/spreadsheet/gnm-so-polygon.h
@@ -41,6 +43,12 @@ include/libspreadsheet-1.10/spreadsheet/gnm-style-impl.h
include/libspreadsheet-1.10/spreadsheet/gnumeric-gconf.h
include/libspreadsheet-1.10/spreadsheet/gnumeric-simple-canvas.h
include/libspreadsheet-1.10/spreadsheet/gnumeric.h
+include/libspreadsheet-1.10/spreadsheet/go-data-cache-field.h
+include/libspreadsheet-1.10/spreadsheet/go-data-cache-source.h
+include/libspreadsheet-1.10/spreadsheet/go-data-cache.h
+include/libspreadsheet-1.10/spreadsheet/go-data-slicer-field.h
+include/libspreadsheet-1.10/spreadsheet/go-data-slicer.h
+include/libspreadsheet-1.10/spreadsheet/go-val.h
include/libspreadsheet-1.10/spreadsheet/graph.h
include/libspreadsheet-1.10/spreadsheet/gui-clipboard.h
include/libspreadsheet-1.10/spreadsheet/gui-file.h
@@ -245,9 +253,9 @@ lib/gnumeric/%%VERSION%%/plugins/uihello/plugin.xml
lib/gnumeric/%%VERSION%%/plugins/xbase/plugin.xml
lib/gnumeric/%%VERSION%%/plugins/xbase/xbase.la
lib/gnumeric/%%VERSION%%/plugins/xbase/xbase.so
-lib/goffice/0.7.8/plugins/gnumeric/gnumeric.la
-lib/goffice/0.7.8/plugins/gnumeric/gnumeric.so
-lib/goffice/0.7.8/plugins/gnumeric/plugin.xml
+lib/goffice/0.7.9/plugins/gnumeric/gnumeric.la
+lib/goffice/0.7.9/plugins/gnumeric/gnumeric.so
+lib/goffice/0.7.9/plugins/gnumeric/plugin.xml
lib/libspreadsheet-%%VERSION%%.so
lib/libspreadsheet.la
lib/libspreadsheet.so
@@ -939,7 +947,7 @@ share/locale/zh_TW/LC_MESSAGES/gnumeric.mo
@dirrm share/gnumeric/%%VERSION%%/autoformat-templates
@dirrm share/gnumeric/%%VERSION%%
@dirrm share/gnumeric
-@dirrm lib/goffice/0.7.8/plugins/gnumeric
+@dirrm lib/goffice/0.7.9/plugins/gnumeric
@dirrm lib/gnumeric/%%VERSION%%/plugins/xbase
@dirrm lib/gnumeric/%%VERSION%%/plugins/uihello
@dirrm lib/gnumeric/%%VERSION%%/plugins/sylk