diff options
author | minskim <minskim@pkgsrc.org> | 2004-06-04 03:38:29 +0000 |
---|---|---|
committer | minskim <minskim@pkgsrc.org> | 2004-06-04 03:38:29 +0000 |
commit | 228ad5d1fcbd34d99c432e5960bab09eebe901b1 (patch) | |
tree | 48884cb1bcf8aca78eee851dae92e32ff55afeec /math/mathomatic | |
parent | b3e7c0b83d4f97028edba626827a4619a49f8f4a (diff) | |
download | pkgsrc-228ad5d1fcbd34d99c432e5960bab09eebe901b1.tar.gz |
Update mathomatic to 11.2.
Changes since 11.1c:
Moved notification of polynomial factoring success to debug level 1 or higher.
Removed "NO_COMPLEX_ROOTS" compile-time define option.
I am thinking of making this a run-time option.
Increased security of "SECURE" compile-time define.
Absolutely no file operations are allowed or linked in.
Added check for terminal with isatty().
This allows better piping into Mathomatic.
Split up change-log ("changes.txt" and "changes_old.txt").
Changed "x!" to mean gamma(x+1) for Laplace transforms.
Fixed parsing of things like "2e#", which failed before,
thinking it was scientific notation.
Wrote "primes/twin.c", to find twin primes.
Added "help usage" command.
Allow output of "help" command to be redirected to a file.
Fixed parsing of variable names (like "pig", which didn't work right).
Added "integrate" command.
Fixed "derivative" command.
Code cleanup.
Fixed "taylor" command.
Diffstat (limited to 'math/mathomatic')
-rw-r--r-- | math/mathomatic/Makefile | 4 | ||||
-rw-r--r-- | math/mathomatic/distinfo | 8 | ||||
-rw-r--r-- | math/mathomatic/patches/patch-aa | 6 |
3 files changed, 9 insertions, 9 deletions
diff --git a/math/mathomatic/Makefile b/math/mathomatic/Makefile index 5ba807e9bd5..13da75d1fa9 100644 --- a/math/mathomatic/Makefile +++ b/math/mathomatic/Makefile @@ -1,7 +1,7 @@ -# $NetBSD: Makefile,v 1.11 2004/05/20 21:27:25 minskim Exp $ +# $NetBSD: Makefile,v 1.12 2004/06/04 03:38:29 minskim Exp $ # -DISTNAME= mathomatic-11.1c +DISTNAME= mathomatic-11.2 CATEGORIES= math MASTER_SITES= http://www.panix.com/~gesslein/ EXTRACT_SUFX= .tgz diff --git a/math/mathomatic/distinfo b/math/mathomatic/distinfo index bf229b35843..778db4627d5 100644 --- a/math/mathomatic/distinfo +++ b/math/mathomatic/distinfo @@ -1,5 +1,5 @@ -$NetBSD: distinfo,v 1.10 2004/05/20 21:27:25 minskim Exp $ +$NetBSD: distinfo,v 1.11 2004/06/04 03:38:29 minskim Exp $ -SHA1 (mathomatic-11.1c.tgz) = a11f2515a6fb1094166f3731cdfab8467fa74692 -Size (mathomatic-11.1c.tgz) = 119151 bytes -SHA1 (patch-aa) = f2b0919ad4ce62172e8719218c6e295bee248aaf +SHA1 (mathomatic-11.2.tgz) = 0891248f8001d6632bb0fc1a13832dbaadf1b9dd +Size (mathomatic-11.2.tgz) = 121525 bytes +SHA1 (patch-aa) = 5db7a43eaee9ed963a180e7617f4e8125ac541c8 diff --git a/math/mathomatic/patches/patch-aa b/math/mathomatic/patches/patch-aa index 51fc2da8e7c..9fcbbe14311 100644 --- a/math/mathomatic/patches/patch-aa +++ b/math/mathomatic/patches/patch-aa @@ -1,9 +1,9 @@ -$NetBSD: patch-aa,v 1.4 2004/05/10 16:47:15 minskim Exp $ +$NetBSD: patch-aa,v 1.5 2004/06/04 03:38:29 minskim Exp $ ---- makefile.orig 2004-05-08 18:33:05.000000000 -0500 +--- makefile.orig 2004-06-01 00:55:54.000000000 -0500 +++ makefile @@ -1,13 +1,13 @@ - # Makefile for compiling Mathomatic for UNIX or Linux. + # Makefile for compiling Mathomatic for UNIX or Linux or Mac OS X. -CFLAGS = -O -DUNIX -LDFLAGS = -s |