diff options
author | minskim <minskim> | 2004-10-14 13:43:26 +0000 |
---|---|---|
committer | minskim <minskim> | 2004-10-14 13:43:26 +0000 |
commit | 2dfb5b158b2d961195fab2c6bcba5d090d39f5a1 (patch) | |
tree | d84ad17417463fa98a4fbf9632dc1fb138c9cf42 /math | |
parent | 8e502cf28aa524ff6db3a3cf0b038dfbf3d655f1 (diff) | |
download | pkgsrc-2dfb5b158b2d961195fab2c6bcba5d090d39f5a1.tar.gz |
Update mathomatic to 11.4b.
Changes:
- Added "code integer" command, which outputs working C code with integer
variables.
- Changed makefile to use libncurses instead of libcurses.
- Added more simplification rules for modulus.
Diffstat (limited to 'math')
-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 bfd0f92bca0..2c6bb5116ad 100644 --- a/math/mathomatic/Makefile +++ b/math/mathomatic/Makefile @@ -1,7 +1,7 @@ -# $NetBSD: Makefile,v 1.21 2004/10/04 21:32:29 minskim Exp $ +# $NetBSD: Makefile,v 1.22 2004/10/14 13:43:26 minskim Exp $ # -DISTNAME= mathomatic-11.4 +DISTNAME= mathomatic-11.4b CATEGORIES= math MASTER_SITES= http://www.panix.com/~gesslein/ EXTRACT_SUFX= .tgz diff --git a/math/mathomatic/distinfo b/math/mathomatic/distinfo index e7f519eb408..d7a98df203b 100644 --- a/math/mathomatic/distinfo +++ b/math/mathomatic/distinfo @@ -1,5 +1,5 @@ -$NetBSD: distinfo,v 1.19 2004/10/04 21:32:29 minskim Exp $ +$NetBSD: distinfo,v 1.20 2004/10/14 13:43:26 minskim Exp $ -SHA1 (mathomatic-11.4.tgz) = 72cb6af569f3452a0c3a021f8cad69f5267b8aa5 -Size (mathomatic-11.4.tgz) = 119821 bytes -SHA1 (patch-aa) = 75ecc14afaa661e27db5020e18fe6da7eb9d7afd +SHA1 (mathomatic-11.4b.tgz) = adf92e9c3d1e58ba4c8a21efd57d717a2561e857 +Size (mathomatic-11.4b.tgz) = 120932 bytes +SHA1 (patch-aa) = 74c3123ab56a9605cf70163eb67c5d50f24b0d2b diff --git a/math/mathomatic/patches/patch-aa b/math/mathomatic/patches/patch-aa index a4ebe533865..3dc69682980 100644 --- a/math/mathomatic/patches/patch-aa +++ b/math/mathomatic/patches/patch-aa @@ -1,6 +1,6 @@ -$NetBSD: patch-aa,v 1.8 2004/09/25 00:40:54 minskim Exp $ +$NetBSD: patch-aa,v 1.9 2004/10/14 13:43:26 minskim Exp $ ---- makefile.orig 2004-08-02 20:07:42.000000000 -0500 +--- makefile.orig Mon Oct 4 20:55:33 2004 +++ makefile @@ -1,14 +1,14 @@ # Makefile for compiling Mathomatic for UNIX or Linux or Mac OS X. @@ -13,7 +13,7 @@ $NetBSD: patch-aa,v 1.8 2004/09/25 00:40:54 minskim Exp $ LIBS = -lm -CFLAGS += $(READLINE:1=-DREADLINE) --LIBS += $(READLINE:1=-lreadline -lcurses) +-LIBS += $(READLINE:1=-lreadline -lncurses) +CFLAGS += -DREADLINE +LIBS += -lreadline -ltermcap |