summaryrefslogtreecommitdiffstats
path: root/math
diff options
context:
space:
mode:
authormarcus <marcus@df743ca5-7f9a-e211-a948-0013205c9059>2005-07-20 13:26:22 +0800
committermarcus <marcus@df743ca5-7f9a-e211-a948-0013205c9059>2005-07-20 13:26:22 +0800
commit44401aa5653c25194c1cff131b10775b4204890a (patch)
treeaf5e8af59fe195e8b74a6dac98b498b30ef1efde /math
parent48d8b9ecbb1c178ca3fd89bb9f75e9d12d18b68b (diff)
downloadmarcuscom-ports-44401aa5653c25194c1cff131b10775b4204890a.tar
marcuscom-ports-44401aa5653c25194c1cff131b10775b4204890a.tar.gz
marcuscom-ports-44401aa5653c25194c1cff131b10775b4204890a.tar.bz2
marcuscom-ports-44401aa5653c25194c1cff131b10775b4204890a.tar.lz
marcuscom-ports-44401aa5653c25194c1cff131b10775b4204890a.tar.xz
marcuscom-ports-44401aa5653c25194c1cff131b10775b4204890a.tar.zst
marcuscom-ports-44401aa5653c25194c1cff131b10775b4204890a.zip
Update to 5.6.24.
git-svn-id: svn://creme-brulee.marcuscom.com/ports/trunk@4276 df743ca5-7f9a-e211-a948-0013205c9059
Diffstat (limited to 'math')
-rw-r--r--math/gcalctool/Makefile4
-rw-r--r--math/gcalctool/distinfo4
-rw-r--r--math/gcalctool/files/patch-gcalctool-functions.c23
3 files changed, 4 insertions, 27 deletions
diff --git a/math/gcalctool/Makefile b/math/gcalctool/Makefile
index 31566f956..9b010f391 100644
--- a/math/gcalctool/Makefile
+++ b/math/gcalctool/Makefile
@@ -3,11 +3,11 @@
# Whom: Joe Marcus Clarke <marcus@FreeBSD.org>
#
# $FreeBSD$
-# $MCom: ports/math/gcalctool/Makefile,v 1.35 2005/07/01 18:03:12 marcus Exp $
+# $MCom: ports/math/gcalctool/Makefile,v 1.36 2005/07/11 21:42:21 marcus Exp $
#
PORTNAME= gcalctool
-PORTVERSION= 5.6.21
+PORTVERSION= 5.6.24
PORTEPOCH= 2
CATEGORIES= math gnome
MASTER_SITES= ${MASTER_SITE_GNOME}
diff --git a/math/gcalctool/distinfo b/math/gcalctool/distinfo
index 5b002da3d..734c58f1c 100644
--- a/math/gcalctool/distinfo
+++ b/math/gcalctool/distinfo
@@ -1,2 +1,2 @@
-MD5 (gnome2/gcalctool-5.6.21.tar.bz2) = bc2fbbaffd166bd14a76527f3cd38aaa
-SIZE (gnome2/gcalctool-5.6.21.tar.bz2) = 1083382
+MD5 (gnome2/gcalctool-5.6.24.tar.bz2) = 69bff6d530ce8b58280674b5bf8df0f9
+SIZE (gnome2/gcalctool-5.6.24.tar.bz2) = 1090261
diff --git a/math/gcalctool/files/patch-gcalctool-functions.c b/math/gcalctool/files/patch-gcalctool-functions.c
deleted file mode 100644
index e51f656f5..000000000
--- a/math/gcalctool/files/patch-gcalctool-functions.c
+++ /dev/null
@@ -1,23 +0,0 @@
---- gcalctool/functions.c.orig Mon Jun 27 20:14:54 2005
-+++ gcalctool/functions.c Mon Jun 27 20:16:22 2005
-@@ -570,9 +570,6 @@
- do_tfunc(int s[MP_SIZE], int t[MP_SIZE], enum trig_func tfunc)
- {
- // Assumes the SIN=0, COS=1, TAN=2
--
-- assert(tfunc < 3);
--
- enum trig_func conv_table[3][4] = {
- {sin_t, asin_t, sinh_t, asinh_t},
- {cos_t, acos_t, cosh_t, acosh_t},
-@@ -582,7 +579,9 @@
- int inverse = (v->inverse) ? 1 : 0;
- int hyperbolic = (v->hyperbolic) ? 2 : 0;
- int mode = (inverse | hyperbolic);
--
-+
-+ assert(tfunc < 3);
-+
- if (!v->current) return -EINVAL;
-
- calc_trigfunc(conv_table[tfunc][mode], s, t);