Update to 1.7.12.
This commit is contained in:
parent
6ff2d1c425
commit
d170262d35
Notes:
svn2git
2021-03-31 03:12:20 +00:00
svn path=/head/; revision=199580
5 changed files with 27 additions and 21 deletions
|
@ -7,7 +7,7 @@
|
||||||
#
|
#
|
||||||
|
|
||||||
PORTNAME= gnumeric
|
PORTNAME= gnumeric
|
||||||
PORTVERSION= 1.7.11
|
PORTVERSION= 1.7.12
|
||||||
CATEGORIES= math gnome
|
CATEGORIES= math gnome
|
||||||
MASTER_SITES= ${MASTER_SITE_GNOME}
|
MASTER_SITES= ${MASTER_SITE_GNOME}
|
||||||
MASTER_SITE_SUBDIR= sources/${PORTNAME}/${PORTVERSION:R}
|
MASTER_SITE_SUBDIR= sources/${PORTNAME}/${PORTVERSION:R}
|
||||||
|
|
|
@ -1,3 +1,3 @@
|
||||||
MD5 (gnome2/gnumeric-1.7.11.tar.bz2) = 75e8c36afa8322c601a14cb5a35a8793
|
MD5 (gnome2/gnumeric-1.7.12.tar.bz2) = d00a63bac78e29920e5ea2fce8cfa25e
|
||||||
SHA256 (gnome2/gnumeric-1.7.11.tar.bz2) = ee60415d849d8c4a48a16013a8925e70fcee16f934659677667cabd97e7b2516
|
SHA256 (gnome2/gnumeric-1.7.12.tar.bz2) = b3ecf3a8fd51183252e692b9502336d6dc988a3748487488c5c06483e8ccb82a
|
||||||
SIZE (gnome2/gnumeric-1.7.11.tar.bz2) = 13077190
|
SIZE (gnome2/gnumeric-1.7.12.tar.bz2) = 13685912
|
||||||
|
|
|
@ -1,6 +1,6 @@
|
||||||
--- configure.orig 2007-07-29 02:46:18.000000000 -0400
|
--- configure.orig 2007-09-16 17:10:01.000000000 -0400
|
||||||
+++ configure 2007-07-29 02:48:14.000000000 -0400
|
+++ configure 2007-09-16 17:10:01.000000000 -0400
|
||||||
@@ -23472,12 +23472,12 @@ if test -n "$PKG_CONFIG"; then
|
@@ -23327,12 +23327,12 @@ if test -n "$PKG_CONFIG"; then
|
||||||
pkg_cv_GB_CFLAGS="$GB_CFLAGS"
|
pkg_cv_GB_CFLAGS="$GB_CFLAGS"
|
||||||
else
|
else
|
||||||
if test -n "$PKG_CONFIG" && \
|
if test -n "$PKG_CONFIG" && \
|
||||||
|
@ -16,7 +16,7 @@
|
||||||
else
|
else
|
||||||
pkg_failed=yes
|
pkg_failed=yes
|
||||||
fi
|
fi
|
||||||
@@ -23490,12 +23490,12 @@ if test -n "$PKG_CONFIG"; then
|
@@ -23345,12 +23345,12 @@ if test -n "$PKG_CONFIG"; then
|
||||||
pkg_cv_GB_LIBS="$GB_LIBS"
|
pkg_cv_GB_LIBS="$GB_LIBS"
|
||||||
else
|
else
|
||||||
if test -n "$PKG_CONFIG" && \
|
if test -n "$PKG_CONFIG" && \
|
||||||
|
@ -32,7 +32,7 @@
|
||||||
else
|
else
|
||||||
pkg_failed=yes
|
pkg_failed=yes
|
||||||
fi
|
fi
|
||||||
@@ -23514,9 +23514,9 @@ else
|
@@ -23369,9 +23369,9 @@ else
|
||||||
_pkg_short_errors_supported=no
|
_pkg_short_errors_supported=no
|
||||||
fi
|
fi
|
||||||
if test $_pkg_short_errors_supported = yes; then
|
if test $_pkg_short_errors_supported = yes; then
|
||||||
|
@ -44,12 +44,3 @@
|
||||||
fi
|
fi
|
||||||
# Put the nasty error message in config.log where it belongs
|
# Put the nasty error message in config.log where it belongs
|
||||||
echo "$GB_PKG_ERRORS" >&5
|
echo "$GB_PKG_ERRORS" >&5
|
||||||
@@ -27943,7 +27943,7 @@ echo $ECHO_N "checking
|
|
||||||
======== for python = 2.x... $ECHO_C" >&6; }
|
|
||||||
PY_VERSION=`$PYTHON -c 'import sys ; sys.stdout.write(sys.version[0:3])'`
|
|
||||||
major_ver=`$PYTHON -c 'import sys ; sys.stdout.write(sys.version[0:1])'`
|
|
||||||
- if test "x$major_ver" == "x2"; then
|
|
||||||
+ if test "x$major_ver" = "x2"; then
|
|
||||||
{ echo "$as_me:$LINENO: result: yes" >&5
|
|
||||||
echo "${ECHO_T}yes" >&6; }
|
|
||||||
else
|
|
||||||
|
|
13
math/gnumeric/files/patch-src_wbc-gtk-edit.c
Normal file
13
math/gnumeric/files/patch-src_wbc-gtk-edit.c
Normal file
|
@ -0,0 +1,13 @@
|
||||||
|
--- src/wbc-gtk-edit.c.orig 2007-09-16 17:17:41.000000000 -0400
|
||||||
|
+++ src/wbc-gtk-edit.c 2007-09-16 17:18:37.000000000 -0400
|
||||||
|
@@ -887,8 +887,10 @@ wbcg_edit_start (WBCGtk *wbcg,
|
||||||
|
GOFormat *new_fmt;
|
||||||
|
int mbd;
|
||||||
|
|
||||||
|
+#ifndef WITH_GOFFICE_0_4
|
||||||
|
mbd = go_format_month_before_day (fmt);
|
||||||
|
if (mbd < 0)
|
||||||
|
+#endif
|
||||||
|
mbd = go_locale_month_before_day ();
|
||||||
|
|
||||||
|
fstr = g_string_new (mbd ? "m/d/yyyy" : "d/m/yyyy");
|
|
@ -110,13 +110,11 @@ include/libspreadsheet-1-7/symbol.h
|
||||||
include/libspreadsheet-1-7/validation-combo.h
|
include/libspreadsheet-1-7/validation-combo.h
|
||||||
include/libspreadsheet-1-7/validation.h
|
include/libspreadsheet-1-7/validation.h
|
||||||
include/libspreadsheet-1-7/value.h
|
include/libspreadsheet-1-7/value.h
|
||||||
|
include/libspreadsheet-1-7/wbc-gtk-impl.h
|
||||||
include/libspreadsheet-1-7/wbc-gtk.h
|
include/libspreadsheet-1-7/wbc-gtk.h
|
||||||
include/libspreadsheet-1-7/workbook-cmd-format.h
|
include/libspreadsheet-1-7/workbook-cmd-format.h
|
||||||
include/libspreadsheet-1-7/workbook-control-gui-priv.h
|
|
||||||
include/libspreadsheet-1-7/workbook-control-gui.h
|
|
||||||
include/libspreadsheet-1-7/workbook-control-priv.h
|
include/libspreadsheet-1-7/workbook-control-priv.h
|
||||||
include/libspreadsheet-1-7/workbook-control.h
|
include/libspreadsheet-1-7/workbook-control.h
|
||||||
include/libspreadsheet-1-7/workbook-edit.h
|
|
||||||
include/libspreadsheet-1-7/workbook-priv.h
|
include/libspreadsheet-1-7/workbook-priv.h
|
||||||
include/libspreadsheet-1-7/workbook-view.h
|
include/libspreadsheet-1-7/workbook-view.h
|
||||||
include/libspreadsheet-1-7/workbook.h
|
include/libspreadsheet-1-7/workbook.h
|
||||||
|
@ -831,6 +829,8 @@ share/locale/lt/LC_MESSAGES/gnumeric-functions.mo
|
||||||
share/locale/lt/LC_MESSAGES/gnumeric.mo
|
share/locale/lt/LC_MESSAGES/gnumeric.mo
|
||||||
share/locale/lv/LC_MESSAGES/gnumeric-functions.mo
|
share/locale/lv/LC_MESSAGES/gnumeric-functions.mo
|
||||||
share/locale/lv/LC_MESSAGES/gnumeric.mo
|
share/locale/lv/LC_MESSAGES/gnumeric.mo
|
||||||
|
share/locale/mk/LC_MESSAGES/gnumeric-functions.mo
|
||||||
|
share/locale/mk/LC_MESSAGES/gnumeric.mo
|
||||||
share/locale/ml/LC_MESSAGES/gnumeric-functions.mo
|
share/locale/ml/LC_MESSAGES/gnumeric-functions.mo
|
||||||
share/locale/ml/LC_MESSAGES/gnumeric.mo
|
share/locale/ml/LC_MESSAGES/gnumeric.mo
|
||||||
share/locale/mr/LC_MESSAGES/gnumeric-functions.mo
|
share/locale/mr/LC_MESSAGES/gnumeric-functions.mo
|
||||||
|
@ -839,6 +839,8 @@ share/locale/ms/LC_MESSAGES/gnumeric-functions.mo
|
||||||
share/locale/ms/LC_MESSAGES/gnumeric.mo
|
share/locale/ms/LC_MESSAGES/gnumeric.mo
|
||||||
share/locale/nb/LC_MESSAGES/gnumeric-functions.mo
|
share/locale/nb/LC_MESSAGES/gnumeric-functions.mo
|
||||||
share/locale/nb/LC_MESSAGES/gnumeric.mo
|
share/locale/nb/LC_MESSAGES/gnumeric.mo
|
||||||
|
share/locale/ne/LC_MESSAGES/gnumeric-functions.mo
|
||||||
|
share/locale/ne/LC_MESSAGES/gnumeric.mo
|
||||||
share/locale/nl/LC_MESSAGES/gnumeric-functions.mo
|
share/locale/nl/LC_MESSAGES/gnumeric-functions.mo
|
||||||
share/locale/nl/LC_MESSAGES/gnumeric.mo
|
share/locale/nl/LC_MESSAGES/gnumeric.mo
|
||||||
share/locale/nn/LC_MESSAGES/gnumeric-functions.mo
|
share/locale/nn/LC_MESSAGES/gnumeric-functions.mo
|
||||||
|
|
Loading…
Reference in a new issue