summaryrefslogtreecommitdiffstats
path: root/math
diff options
context:
space:
mode:
authorkwm <kwm@df743ca5-7f9a-e211-a948-0013205c9059>2011-10-13 17:34:00 +0800
committerkwm <kwm@df743ca5-7f9a-e211-a948-0013205c9059>2011-10-13 17:34:00 +0800
commita8158b4e0f9e6f223dc2b4ecb71c60a8ebc4c614 (patch)
tree12b06aee9b9048e8e1ebfdbb4298e260a231d425 /math
parent788d4f1fca2d03b3de349ea5473054561829662d (diff)
downloadmarcuscom-ports-a8158b4e0f9e6f223dc2b4ecb71c60a8ebc4c614.tar
marcuscom-ports-a8158b4e0f9e6f223dc2b4ecb71c60a8ebc4c614.tar.gz
marcuscom-ports-a8158b4e0f9e6f223dc2b4ecb71c60a8ebc4c614.tar.bz2
marcuscom-ports-a8158b4e0f9e6f223dc2b4ecb71c60a8ebc4c614.tar.lz
marcuscom-ports-a8158b4e0f9e6f223dc2b4ecb71c60a8ebc4c614.tar.xz
marcuscom-ports-a8158b4e0f9e6f223dc2b4ecb71c60a8ebc4c614.tar.zst
marcuscom-ports-a8158b4e0f9e6f223dc2b4ecb71c60a8ebc4c614.zip
Update to 6.2.0.
git-svn-id: svn://creme-brulee.marcuscom.com/ports/trunk@16394 df743ca5-7f9a-e211-a948-0013205c9059
Diffstat (limited to 'math')
-rw-r--r--math/gcalctool3/Makefile9
-rw-r--r--math/gcalctool3/distinfo4
-rw-r--r--math/gcalctool3/files/patch-src_math-equation.c25
3 files changed, 6 insertions, 32 deletions
diff --git a/math/gcalctool3/Makefile b/math/gcalctool3/Makefile
index 0439e3731..4747be474 100644
--- a/math/gcalctool3/Makefile
+++ b/math/gcalctool3/Makefile
@@ -3,12 +3,11 @@
# Whom: Joe Marcus Clarke <marcus@FreeBSD.org>
#
# $FreeBSD$
-# $MCom: ports/math/gcalctool3/Makefile,v 1.14 2011/05/30 23:25:21 marcus Exp $
+# $MCom: ports/math/gcalctool3/Makefile,v 1.15 2011/06/10 22:59:05 mezz Exp $
#
PORTNAME= gcalctool
-PORTVERSION= 6.0.2
-PORTREVISION= 1
+PORTVERSION= 6.2.0
CATEGORIES= math gnome
MASTER_SITES= GNOME
DIST_SUBDIR= gnome3
@@ -19,7 +18,7 @@ COMMENT= A GNOME 3 calculator tool based on the old calctool for OpenWindows
CONFLICTS= gcalctool-5.[0-9]*
LATEST_LINK= gcalctool3
-USE_BZIP2= yes
+USE_XZ= yes
USE_BISON= build
USE_GETTEXT= yes
USE_GMAKE= yes
@@ -27,7 +26,7 @@ USE_AUTOTOOLS= libtool
USE_GNOME= gnomeprefix gnomehack intlhack gconf2 gnomedocutils gtk30 \
libxml2
CPPFLAGS= -I${LOCALBASE}/include
-CONFIGURE_ENV= LDFLAGS="-L${LOCALBASE}/lib"
+LDFLAGS= -L${LOCALBASE}/lib
MAN1= gcalccmd.1 gcalctool.1
GLIB_SCHEMAS= org.gnome.gcalctool.gschema.xml
diff --git a/math/gcalctool3/distinfo b/math/gcalctool3/distinfo
index 8edd44133..3113c16e6 100644
--- a/math/gcalctool3/distinfo
+++ b/math/gcalctool3/distinfo
@@ -1,2 +1,2 @@
-SHA256 (gnome3/gcalctool-6.0.2.tar.bz2) = 63190fde1be5202ab43774785b5521d8f11592c6a9e125673028c5ac235c9316
-SIZE (gnome3/gcalctool-6.0.2.tar.bz2) = 1275979
+SHA256 (gnome3/gcalctool-6.2.0.tar.xz) = ddc2efe25220e9341832304dfd9e5e2390a70bb6bd70d1afeb49da88023cdffb
+SIZE (gnome3/gcalctool-6.2.0.tar.xz) = 999804
diff --git a/math/gcalctool3/files/patch-src_math-equation.c b/math/gcalctool3/files/patch-src_math-equation.c
deleted file mode 100644
index 14b7577f8..000000000
--- a/math/gcalctool3/files/patch-src_math-equation.c
+++ /dev/null
@@ -1,25 +0,0 @@
---- src/math-equation.c.orig 2011-05-30 19:16:53.000000000 -0400
-+++ src/math-equation.c 2011-05-30 19:19:35.000000000 -0400
-@@ -1305,6 +1305,7 @@ void
- math_equation_solve(MathEquation *equation)
- {
- GError *error = NULL;
-+ gulong stacksize = 0;
-
- g_return_if_fail(equation != NULL);
-
-@@ -1326,7 +1327,13 @@ math_equation_solve(MathEquation *equati
-
- math_equation_set_number_mode(equation, NORMAL);
-
-- g_thread_create(math_equation_solve_real, equation, false, &error);
-+ if (GLIB_SIZEOF_LONG == 8) {
-+ stacksize = 0x400000;
-+ } else {
-+ stacksize = 0x200000;
-+ }
-+
-+ g_thread_create_full(math_equation_solve_real, equation, stacksize, false, false, G_THREAD_PRIORITY_NORMAL, &error);
-
- if (error)
- g_warning("Error spawning thread for calculations: %s\n", error->message);