diff options
author | minskim <minskim@pkgsrc.org> | 2007-04-18 21:09:13 +0000 |
---|---|---|
committer | minskim <minskim@pkgsrc.org> | 2007-04-18 21:09:13 +0000 |
commit | 6123d3e5875c32f751c3d4db974266f54afda298 (patch) | |
tree | 9287ac4a9fd37bcdcb31906a3121b2eb6d5d905f /math/mathomatic | |
parent | 5d94bd3c49e785c7f49ef53f2d33624ec77f9eab (diff) | |
download | pkgsrc-6123d3e5875c32f751c3d4db974266f54afda298.tar.gz |
Update mathomatic to 12.6.12.
Changes since 12.6.8:
12/16/06 - Add "set special_variable_character" option.
12/26/06 - Comment makefiles and add "INSTALL.txt" for first-time users.
12/31/06 - Add "primes/primorial" Python program.
2/10/07 - "make install" wasn't working - fixed.
2/24/07 - Allow calculating large powers of complex numbers at the prompt,
like (i#+1)^99.
3/06/07 - Display which color mode is in effect on startup of Mathomatic.
3/08/07 - Some minor interface improvements to the taylor command.
3/31/07 - Corrected limit command for infinity limits.
4/3/07 - Updated root "README.txt" and created "tests/limits.in".
Diffstat (limited to 'math/mathomatic')
-rw-r--r-- | math/mathomatic/Makefile | 4 | ||||
-rw-r--r-- | math/mathomatic/distinfo | 10 | ||||
-rw-r--r-- | math/mathomatic/patches/patch-aa | 12 |
3 files changed, 13 insertions, 13 deletions
diff --git a/math/mathomatic/Makefile b/math/mathomatic/Makefile index c34b7f30e9e..34317d6103c 100644 --- a/math/mathomatic/Makefile +++ b/math/mathomatic/Makefile @@ -1,7 +1,7 @@ -# $NetBSD: Makefile,v 1.76 2007/01/07 09:13:59 rillig Exp $ +# $NetBSD: Makefile,v 1.77 2007/04/18 21:09:13 minskim Exp $ # -DISTNAME= mathomatic-12.6.8 +DISTNAME= mathomatic-12.6.12 CATEGORIES= math MASTER_SITES= http://www.panix.com/~gesslein/ EXTRACT_SUFX= .tar.bz2 diff --git a/math/mathomatic/distinfo b/math/mathomatic/distinfo index 63753632f2b..248d7e5bda6 100644 --- a/math/mathomatic/distinfo +++ b/math/mathomatic/distinfo @@ -1,6 +1,6 @@ -$NetBSD: distinfo,v 1.69 2007/01/02 16:56:20 minskim Exp $ +$NetBSD: distinfo,v 1.70 2007/04/18 21:09:13 minskim Exp $ -SHA1 (mathomatic-12.6.8.tar.bz2) = b2344ac3244990eed56e61fbfbd9ba586558201e -RMD160 (mathomatic-12.6.8.tar.bz2) = cfdde7d03ba97983dc6e8d4067c4ec9b61fcd2fe -Size (mathomatic-12.6.8.tar.bz2) = 116303 bytes -SHA1 (patch-aa) = e1e881d988e092376e15b0b2b4fc1af7546daee9 +SHA1 (mathomatic-12.6.12.tar.bz2) = 20b5d2144c40dc062f58448b7a994aca9fdf914b +RMD160 (mathomatic-12.6.12.tar.bz2) = 928b1ba2446fd39865cfcd0dead91c67e70d9be7 +Size (mathomatic-12.6.12.tar.bz2) = 118966 bytes +SHA1 (patch-aa) = 3505940a53bd2573a4b45bbe2f13dc7755a141af diff --git a/math/mathomatic/patches/patch-aa b/math/mathomatic/patches/patch-aa index c9dadfe948a..78de3dc4bf4 100644 --- a/math/mathomatic/patches/patch-aa +++ b/math/mathomatic/patches/patch-aa @@ -1,15 +1,15 @@ -$NetBSD: patch-aa,v 1.17 2006/08/15 15:38:26 minskim Exp $ +$NetBSD: patch-aa,v 1.18 2007/04/18 21:09:13 minskim Exp $ ---- makefile.orig 2006-07-23 03:22:54.000000000 -0700 +--- makefile.orig 2007-04-04 15:06:10.000000000 -0700 +++ makefile -@@ -7,8 +7,8 @@ CFLAGS += -O -DUNIX -DVERSION=\"$(VERSI - LDFLAGS += -s - LIBS += -lm +@@ -8,8 +8,8 @@ LDFLAGS += -s # The default linker flag + LIBS += -lm # The default libraries to link. + # "make READLINE=1" to include readline support: -CFLAGS += $(READLINE:1=-DREADLINE) -LIBS += $(READLINE:1=-lreadline -lncurses) +CFLAGS += -DREADLINE +LIBS += -lreadline + # Install directories: prefix ?= /usr/local - bindir ?= $(prefix)/bin |