Update to 4.3.35 which should have bland's thousands separator bug
integrated.
This commit is contained in:
parent
ee92ed6602
commit
6d28d61ac6
Notes:
svn2git
2021-03-31 03:12:20 +00:00
svn path=/head/; revision=97515
@ -6,8 +6,7 @@
|
||||
#
|
||||
|
||||
PORTNAME= gcalctool
|
||||
PORTVERSION= 4.3.31
|
||||
PORTREVISION= 2
|
||||
PORTVERSION= 4.3.35
|
||||
CATEGORIES= math gnome
|
||||
MASTER_SITES= ${MASTER_SITE_GNOME}
|
||||
MASTER_SITE_SUBDIR= sources/${PORTNAME}/4.3
|
||||
|
@ -1 +1 @@
|
||||
MD5 (gnome2/gcalctool-4.3.31.tar.bz2) = 06d193ace7bc1b782ac7d469417f75f4
|
||||
MD5 (gnome2/gcalctool-4.3.35.tar.bz2) = 800124057852e83b7beaf7014f63a9d4
|
||||
|
@ -1,13 +0,0 @@
|
||||
--- gcalctool/display.c.orig Sat Jan 3 13:44:50 2004
|
||||
+++ gcalctool/display.c Sat Jan 3 14:01:31 2004
|
||||
@@ -88,8 +88,8 @@
|
||||
* definitions are potentially in read-only memory, and shouldn't be adjusted.
|
||||
*/
|
||||
|
||||
- if (strstr(str, v->tsep) != NULL) {
|
||||
- tsep_len = strlen(v->tsep);
|
||||
+ tsep_len = strlen(v->tsep);
|
||||
+ if (tsep_len && strstr(str, v->tsep) != NULL) {
|
||||
while (*srcp != '\0') {
|
||||
if (memcmp(srcp, v->tsep, tsep_len) == 0) {
|
||||
srcp += tsep_len;
|
@ -1,36 +0,0 @@
|
||||
--- gcalctool/get.c.orig Tue Dec 23 23:21:12 2003
|
||||
+++ gcalctool/get.c Sat Jan 3 13:18:24 2004
|
||||
@@ -230,7 +230,7 @@
|
||||
setlocale(LC_NUMERIC, "");
|
||||
tsep = nl_langinfo(THOUSEP);
|
||||
|
||||
- if (tsep == NULL || tsep[0] == '\0') {
|
||||
+ if (tsep == NULL) {
|
||||
return(",");
|
||||
} else {
|
||||
return(tsep);
|
||||
@@ -242,6 +242,7 @@
|
||||
init_vars() /* Setup default values for various variables. */
|
||||
{
|
||||
int acc, i, n, size;
|
||||
+ char *loc_radix;
|
||||
|
||||
v->accuracy = 9; /* Initial accuracy. */
|
||||
v->show_zeroes = FALSE; /* Don't show trailing zeroes. */
|
||||
@@ -264,6 +265,8 @@
|
||||
|
||||
read_str(&v->iconlabel, _("calculator")); /* Default icon label. */
|
||||
|
||||
+ loc_radix = v->radix;
|
||||
+ v->radix = ".";
|
||||
MPstr_to_num("0.621", DEC, v->MPcon_vals[0]); /* kms/hr <=> miles/hr. */
|
||||
MPstr_to_num("1.4142135623", DEC, v->MPcon_vals[1]); /* square root of 2 */
|
||||
MPstr_to_num("2.7182818284", DEC, v->MPcon_vals[2]); /* e */
|
||||
@@ -274,6 +277,7 @@
|
||||
MPstr_to_num("0.0353", DEC, v->MPcon_vals[7]); /* grams <=> ounce. */
|
||||
MPstr_to_num("0.948", DEC, v->MPcon_vals[8]); /* Kjoules <=> BTU's. */
|
||||
MPstr_to_num("0.0610", DEC, v->MPcon_vals[9]); /* cms3 <=> inches3. */
|
||||
+ v->radix = loc_radix;
|
||||
|
||||
n = 0;
|
||||
for (i = 0; i < MAXREGS; i++) {
|
@ -30,13 +30,16 @@ share/locale/fi/LC_MESSAGES/gcalctool.mo
|
||||
share/locale/fr/LC_MESSAGES/gcalctool.mo
|
||||
share/locale/he/LC_MESSAGES/gcalctool.mo
|
||||
share/locale/hi/LC_MESSAGES/gcalctool.mo
|
||||
share/locale/hr/LC_MESSAGES/gcalctool.mo
|
||||
share/locale/hu/LC_MESSAGES/gcalctool.mo
|
||||
share/locale/id/LC_MESSAGES/gcalctool.mo
|
||||
share/locale/it/LC_MESSAGES/gcalctool.mo
|
||||
share/locale/ja/LC_MESSAGES/gcalctool.mo
|
||||
share/locale/ko/LC_MESSAGES/gcalctool.mo
|
||||
share/locale/lt/LC_MESSAGES/gcalctool.mo
|
||||
share/locale/mk/LC_MESSAGES/gcalctool.mo
|
||||
share/locale/ml/LC_MESSAGES/gcalctool.mo
|
||||
share/locale/mn/LC_MESSAGES/gcalctool.mo
|
||||
share/locale/ms/LC_MESSAGES/gcalctool.mo
|
||||
share/locale/nl/LC_MESSAGES/gcalctool.mo
|
||||
share/locale/no/LC_MESSAGES/gcalctool.mo
|
||||
|
Loading…
Reference in New Issue
Block a user