diff options
author | minskim <minskim> | 2004-05-10 16:47:15 +0000 |
---|---|---|
committer | minskim <minskim> | 2004-05-10 16:47:15 +0000 |
commit | 294f6a715c58f4c488923d8411fdfed4b61c0a0f (patch) | |
tree | 65ae5a05d2cc341a9ffb69e060465d20258f8224 /math/mathomatic | |
parent | 8d2a118f85157f604e7466e5c88fa9fb19a859d9 (diff) | |
download | pkgsrc-294f6a715c58f4c488923d8411fdfed4b61c0a0f.tar.gz |
Update mathomatic to 11.1.
Changes:
- Fixed "makefile" to be completely portable.
No longer requires GNU make.
- Simplified some code.
- Converted token_type.kind to enum type for better type checking.
- Removed all "unsigned" variables and type casts.
- Simplified "simplify" command code. Some speed up.
- Moved "*.in" and "fix*" to directory "tests".
- Implemented long variable names (up to 40 characters).
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 | 18 |
3 files changed, 13 insertions, 17 deletions
diff --git a/math/mathomatic/Makefile b/math/mathomatic/Makefile index f8cc92549da..c4286eef255 100644 --- a/math/mathomatic/Makefile +++ b/math/mathomatic/Makefile @@ -1,7 +1,7 @@ -# $NetBSD: Makefile,v 1.8 2004/05/04 17:20:49 minskim Exp $ +# $NetBSD: Makefile,v 1.9 2004/05/10 16:47:15 minskim Exp $ # -DISTNAME= mathomatic-11.0f +DISTNAME= mathomatic-11.1 CATEGORIES= math MASTER_SITES= http://www.panix.com/~gesslein/ EXTRACT_SUFX= .tgz diff --git a/math/mathomatic/distinfo b/math/mathomatic/distinfo index 12022ecf223..59f88d9f1c3 100644 --- a/math/mathomatic/distinfo +++ b/math/mathomatic/distinfo @@ -1,5 +1,5 @@ -$NetBSD: distinfo,v 1.7 2004/05/04 17:20:49 minskim Exp $ +$NetBSD: distinfo,v 1.8 2004/05/10 16:47:15 minskim Exp $ -SHA1 (mathomatic-11.0f/mathomatic-11.0f.tgz) = 9aa8a9c14ac7ba2f6f25a94f42dc4d330fe26e0b -Size (mathomatic-11.0f/mathomatic-11.0f.tgz) = 110330 bytes -SHA1 (patch-aa) = 675eb9b2241f39fb0e29e3dcb6cae5b6829d2351 +SHA1 (mathomatic-11.1/mathomatic-11.1.tgz) = 7d5a52ffb607d39ed429a2925f756fb72966fee2 +Size (mathomatic-11.1/mathomatic-11.1.tgz) = 119337 bytes +SHA1 (patch-aa) = f2b0919ad4ce62172e8719218c6e295bee248aaf diff --git a/math/mathomatic/patches/patch-aa b/math/mathomatic/patches/patch-aa index 148a2c3e65b..51fc2da8e7c 100644 --- a/math/mathomatic/patches/patch-aa +++ b/math/mathomatic/patches/patch-aa @@ -1,8 +1,8 @@ -$NetBSD: patch-aa,v 1.3 2004/05/04 17:20:49 minskim Exp $ +$NetBSD: patch-aa,v 1.4 2004/05/10 16:47:15 minskim Exp $ ---- makefile.orig 2004-05-01 20:43:07.000000000 -0500 +--- makefile.orig 2004-05-08 18:33:05.000000000 -0500 +++ makefile -@@ -1,16 +1,16 @@ +@@ -1,13 +1,13 @@ # Makefile for compiling Mathomatic for UNIX or Linux. -CFLAGS = -O -DUNIX @@ -11,14 +11,10 @@ $NetBSD: patch-aa,v 1.3 2004/05/04 17:20:49 minskim Exp $ +#LDFLAGS = -s LIBS = -lm - # Comment out the following lines if you are not using GNU make. --ifdef READLINE -+#ifdef READLINE - CFLAGS += -DREADLINE --LIBS += -lreadline -lcurses --endif -+LIBS += -lreadline #-lcurses -+#endif +-CFLAGS += $(READLINE:1=-DREADLINE) +-LIBS += $(READLINE:1=-lreadline -lcurses) ++CFLAGS += -DREADLINE ++LIBS += -lreadline -PREFIX = /usr/local +#PREFIX = /usr/local |