pkgsrc-Changes-HG archive
[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index][Old Index]
[pkgsrc/trunk]: pkgsrc Update mathomatic to 11.1.
details: https://anonhg.NetBSD.org/pkgsrc/rev/207c76f43afd
branches: trunk
changeset: 475136:207c76f43afd
user: minskim <minskim%pkgsrc.org@localhost>
date: Mon May 10 16:47:15 2004 +0000
description:
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:
doc/CHANGES | 3 ++-
doc/TODO | 3 +--
math/mathomatic/Makefile | 4 ++--
math/mathomatic/distinfo | 8 ++++----
math/mathomatic/patches/patch-aa | 18 +++++++-----------
5 files changed, 16 insertions(+), 20 deletions(-)
diffs (91 lines):
diff -r 02a5584a3e35 -r 207c76f43afd doc/CHANGES
--- a/doc/CHANGES Mon May 10 16:36:33 2004 +0000
+++ b/doc/CHANGES Mon May 10 16:47:15 2004 +0000
@@ -1,4 +1,4 @@
-$NetBSD: CHANGES,v 1.5897 2004/05/10 16:22:51 jmmv Exp $
+$NetBSD: CHANGES,v 1.5898 2004/05/10 16:47:15 minskim Exp $
Changes to the packages collection and infrastructure in 2004:
@@ -2451,3 +2451,4 @@
Updated roundup to 0.7.1 [recht 2004-05-10]
Updated crimsonfields to 0.4.2 [wiz 2004-05-10]
Updated gpass to 0.4.2 [jmmv 2004-05-10]
+ Updated mathomatic to 11.1 [minskim 2004-05-10]
diff -r 02a5584a3e35 -r 207c76f43afd doc/TODO
--- a/doc/TODO Mon May 10 16:36:33 2004 +0000
+++ b/doc/TODO Mon May 10 16:47:15 2004 +0000
@@ -1,4 +1,4 @@
-$NetBSD: TODO,v 1.1729 2004/05/10 14:53:32 wiz Exp $
+$NetBSD: TODO,v 1.1730 2004/05/10 16:47:15 minskim Exp $
Suggested new packages
======================
@@ -275,7 +275,6 @@
o maradns-1.0.21
o marbles-1.0.6
o matchbox-0.8.2
- o mathomatic-11.1
o mhonarc-2.6.9
o micq-0.4.11
o midnight-commander-4.6.0
diff -r 02a5584a3e35 -r 207c76f43afd math/mathomatic/Makefile
--- a/math/mathomatic/Makefile Mon May 10 16:36:33 2004 +0000
+++ b/math/mathomatic/Makefile Mon May 10 16:47:15 2004 +0000
@@ -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 -r 02a5584a3e35 -r 207c76f43afd math/mathomatic/distinfo
--- a/math/mathomatic/distinfo Mon May 10 16:36:33 2004 +0000
+++ b/math/mathomatic/distinfo Mon May 10 16:47:15 2004 +0000
@@ -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 -r 02a5584a3e35 -r 207c76f43afd math/mathomatic/patches/patch-aa
--- a/math/mathomatic/patches/patch-aa Mon May 10 16:36:33 2004 +0000
+++ b/math/mathomatic/patches/patch-aa Mon May 10 16:47:15 2004 +0000
@@ -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 @@
+#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
Home |
Main Index |
Thread Index |
Old Index