summaryrefslogtreecommitdiff
path: root/math
diff options
context:
space:
mode:
authorChristian Weisgerber <naddy@FreeBSD.org>2002-06-11 10:12:58 +0000
committerChristian Weisgerber <naddy@FreeBSD.org>2002-06-11 10:12:58 +0000
commit037081f33fbd40d11038a4fedfd381b49c82cc24 (patch)
treeda7ad7cd14e4f78db02a7a21e9087e1289bfaa59 /math
parentFix a bug that removes a startup problem with rtpmon, namely erroring out (diff)
Update to 1.3.9. Notable changes in this release:
* An option for output rounding has been added.
Notes
Notes: svn path=/head/; revision=61101
Diffstat (limited to 'math')
-rw-r--r--math/calcoo/Makefile3
-rw-r--r--math/calcoo/distinfo2
-rw-r--r--math/calcoo/files/patch-src_c__input.c23
3 files changed, 2 insertions, 26 deletions
diff --git a/math/calcoo/Makefile b/math/calcoo/Makefile
index 69d378fa0c90..480bf70c8308 100644
--- a/math/calcoo/Makefile
+++ b/math/calcoo/Makefile
@@ -5,8 +5,7 @@
# $FreeBSD$
PORTNAME= calcoo
-PORTVERSION= 1.3.8
-PORTREVISION= 1
+PORTVERSION= 1.3.9
CATEGORIES= math
MASTER_SITES= ${MASTER_SITE_SOURCEFORGE} \
http://www.physics.umn.edu/~kaminski/calcoo/
diff --git a/math/calcoo/distinfo b/math/calcoo/distinfo
index 048d7965753b..367dcea3b73f 100644
--- a/math/calcoo/distinfo
+++ b/math/calcoo/distinfo
@@ -1 +1 @@
-MD5 (calcoo-1.3.8.tar.gz) = f37f868e2533a3fdecad8e68903cc5c5
+MD5 (calcoo-1.3.9.tar.gz) = 5241c3b9e36c46b9ef42f5f01008e4c3
diff --git a/math/calcoo/files/patch-src_c__input.c b/math/calcoo/files/patch-src_c__input.c
deleted file mode 100644
index 754c26e65658..000000000000
--- a/math/calcoo/files/patch-src_c__input.c
+++ /dev/null
@@ -1,23 +0,0 @@
-
-$FreeBSD$
-
---- src/c_input.c.orig Sun Jun 2 20:50:25 2002
-+++ src/c_input.c Tue Jun 4 23:28:14 2002
-@@ -118,10 +118,15 @@
-
- void call_dot(void)
- {
-- if(cpu->last_action != ACTION_INPUT) {
-- cpu->y = cpu->x;
-+ if (cpu->last_action != ACTION_INPUT) {
-+ if ((cpu->rpn_mode)
-+ && (cpu->last_action == ACTION_ENTER)) {
-+ push_stack();
-+ cpu->y = cpu->x;
-+ }
- reset_input();
- cpu->last_action = ACTION_INPUT;
-+ cpu_to_output();
- }
-
- if (cpu->d->input_field == INPUT_FIELD_INT) {