summaryrefslogtreecommitdiff
path: root/math/yacas
diff options
context:
space:
mode:
authordrochner <drochner>2000-12-05 19:02:05 +0000
committerdrochner <drochner>2000-12-05 19:02:05 +0000
commitbd84e7f542924a74539cf342f2a6f2eca2aa23f8 (patch)
treeace7cb7f7f09772e6adf0b0b888c504d390df19a /math/yacas
parent11c301ac6ccc801c80b5158ab30b1b657967ffa5 (diff)
downloadpkgsrc-bd84e7f542924a74539cf342f2a6f2eca2aa23f8.tar.gz
update to 1.0.43, another one without changing the distfile name.
changelog 1.0.41-1.0.43: Added the YacasNotebook directory with the emacs shell to the repository. We have support for BeOS! Thanks to Eugenia Loli. Serious bugfix: the ^ operator wasn't working like it should. It was mapped to BitXor, and its precedence was wrong. Allowed CForm to accept if (predicate) body; and if (predicate) body else other; These routines need to be written still, however, for them to also work in Yacas itself. cleaned up some code. Speedup of 40% of general Yacas execution. Some improvements to the logic theorem prover so it can handle (a>b)-type epressions. added support for annotating expressions, with GetExtraInfo and SetExtraInfo. Initial checkin into sourceforge CVS. Thanks to Vladimir Livshits! Fixed some windows compilation problems. ElfDll being explicitly mentioned in mathcommands3.cc, and explicitly including elfdll.h. added initial versions for the c-like &, | % and ^ operators, and if (...) ... else ... . This will probably make it possible in the future to write code that is a lot more readable than If(..., ..., ...). The else clause binds to the last if, just like in c. So this means you can now enter expressions like: if(3 < 3) a else if (3 > 3) b else c;
Diffstat (limited to 'math/yacas')
-rw-r--r--math/yacas/Makefile4
-rw-r--r--math/yacas/files/md54
-rw-r--r--math/yacas/files/patch-sum4
-rw-r--r--math/yacas/patches/patch-aa12
4 files changed, 13 insertions, 11 deletions
diff --git a/math/yacas/Makefile b/math/yacas/Makefile
index ce4324ba758..4456a14ad5a 100644
--- a/math/yacas/Makefile
+++ b/math/yacas/Makefile
@@ -1,8 +1,8 @@
-# $NetBSD: Makefile,v 1.3 2000/11/11 15:31:51 dmcmahill Exp $
+# $NetBSD: Makefile,v 1.4 2000/12/05 19:02:05 drochner Exp $
#
DISTNAME= yacas-latest
-PKGNAME= yacas-1.0.41
+PKGNAME= yacas-1.0.43
CATEGORIES= math
MASTER_SITES= http://www.xs4all.nl/~apinkus/
diff --git a/math/yacas/files/md5 b/math/yacas/files/md5
index c83b9a49306..7c8d8dd1c14 100644
--- a/math/yacas/files/md5
+++ b/math/yacas/files/md5
@@ -1,3 +1,3 @@
-$NetBSD: md5,v 1.3 2000/11/11 15:31:52 dmcmahill Exp $
+$NetBSD: md5,v 1.4 2000/12/05 19:02:05 drochner Exp $
-MD5 (yacas-1.0.41/yacas-latest.tar.gz) = ab506fb247c3ec571bbe988a2669b77c
+MD5 (yacas-1.0.43/yacas-latest.tar.gz) = dbe5a9c8c906b505e3226b7dee2b5918
diff --git a/math/yacas/files/patch-sum b/math/yacas/files/patch-sum
index 4812c5a5440..0fea1c7fe16 100644
--- a/math/yacas/files/patch-sum
+++ b/math/yacas/files/patch-sum
@@ -1,4 +1,4 @@
-$NetBSD: patch-sum,v 1.3 2000/11/11 15:31:52 dmcmahill Exp $
+$NetBSD: patch-sum,v 1.4 2000/12/05 19:02:05 drochner Exp $
-MD5 (patch-aa) = 9c6513e40f701202613929d8915135b2
+MD5 (patch-aa) = b53aad48f526d5494af841d46bfdb246
MD5 (patch-ad) = cb7a4ea79580f13117a24c2907e54007
diff --git a/math/yacas/patches/patch-aa b/math/yacas/patches/patch-aa
index c38b95fc3fc..6956b82432c 100644
--- a/math/yacas/patches/patch-aa
+++ b/math/yacas/patches/patch-aa
@@ -1,11 +1,13 @@
-$NetBSD: patch-aa,v 1.3 2000/11/11 15:31:52 dmcmahill Exp $
+$NetBSD: patch-aa,v 1.4 2000/12/05 19:02:05 drochner Exp $
---- src/Makefile.in.orig Sun Jul 9 14:25:04 2000
-+++ src/Makefile.in Mon Jul 17 14:50:20 2000
-@@ -90,5 +90,5 @@
+--- src/Makefile.in.orig Sun Nov 19 01:39:17 2000
++++ src/Makefile.in Tue Nov 28 11:07:23 2000
+@@ -89,7 +89,7 @@
+ # supports elf binaries?
#
-yacas_LDFLAGS = -ldl -rdynamic
+yacas_LDFLAGS = -Wl,--export-dynamic
- testnum_SOURCES = anumber.cc grower.cc lispstring.cc stdstubs.cc testnum.cc mathutil.cc
+ testnum_SOURCES = anumber.cpp grower.cpp lispstring.cpp stdstubs.cpp testnum.cpp mathutil.cpp
+