diff options
author | minskim <minskim@pkgsrc.org> | 2004-06-28 13:58:25 +0000 |
---|---|---|
committer | minskim <minskim@pkgsrc.org> | 2004-06-28 13:58:25 +0000 |
commit | cbc1cd8ca4beeabfcb4523a16be39fd51e198d0a (patch) | |
tree | 8b6cbd011649af4f419b1b326af5e5c56a3cfcab /math | |
parent | a6033b2fd0dab3fb0866c157b4adab2d2ba61be3 (diff) | |
download | pkgsrc-cbc1cd8ca4beeabfcb4523a16be39fd51e198d0a.tar.gz |
Update mathomatic to 11.2d.
Changes:
Slight improvement to integrate and laplace commands.
Integrate/laplace x on (a+x)/(b+c) works now.
Added more examples to the documentation (am.htm).
2 to 10 times speedup for simplify command by fixing polynomial factoring.
Diffstat (limited to 'math')
-rw-r--r-- | math/mathomatic/Makefile | 7 | ||||
-rw-r--r-- | math/mathomatic/PLIST | 7 | ||||
-rw-r--r-- | math/mathomatic/distinfo | 8 | ||||
-rw-r--r-- | math/mathomatic/patches/patch-aa | 12 |
4 files changed, 21 insertions, 13 deletions
diff --git a/math/mathomatic/Makefile b/math/mathomatic/Makefile index e84ddce8b14..a278f5bf0b4 100644 --- a/math/mathomatic/Makefile +++ b/math/mathomatic/Makefile @@ -1,7 +1,7 @@ -# $NetBSD: Makefile,v 1.13 2004/06/26 21:23:43 minskim Exp $ +# $NetBSD: Makefile,v 1.14 2004/06/28 13:58:25 minskim Exp $ # -DISTNAME= mathomatic-11.2c +DISTNAME= mathomatic-11.2d CATEGORIES= math MASTER_SITES= http://www.panix.com/~gesslein/ EXTRACT_SUFX= .tgz @@ -26,5 +26,8 @@ INSTALLATION_DIRS= bin man/man1 do-install: ${INSTALL_PROGRAM} ${WRKSRC}/am ${PREFIX}/bin/am_mathomatic ${INSTALL_MAN} ${WRKSRC}/am.1 ${PREFIX}/man/man1/am_mathomatic.1 + ${INSTALL_DATA_DIR} ${PREFIX}/share/doc/${PKGBASE} + ${INSTALL_DATA} ${WRKSRC}/*.htm ${WRKSRC}/readme.txt \ + ${PREFIX}/share/doc/${PKGBASE} .include "../../mk/bsd.pkg.mk" diff --git a/math/mathomatic/PLIST b/math/mathomatic/PLIST index faaf612192d..8b74b11eb7e 100644 --- a/math/mathomatic/PLIST +++ b/math/mathomatic/PLIST @@ -1,3 +1,8 @@ -@comment $NetBSD: PLIST,v 1.1.1.1 2004/03/31 18:14:08 minskim Exp $ +@comment $NetBSD: PLIST,v 1.2 2004/06/28 13:58:25 minskim Exp $ bin/am_mathomatic man/man1/am_mathomatic.1 +share/doc/${PKGBASE}/am.htm +share/doc/${PKGBASE}/manual.htm +share/doc/${PKGBASE}/notes.htm +share/doc/${PKGBASE}/readme.txt +@dirrm share/doc/${PKGBASE} diff --git a/math/mathomatic/distinfo b/math/mathomatic/distinfo index 454201d9b33..29e4d87b1cc 100644 --- a/math/mathomatic/distinfo +++ b/math/mathomatic/distinfo @@ -1,5 +1,5 @@ -$NetBSD: distinfo,v 1.12 2004/06/26 21:23:43 minskim Exp $ +$NetBSD: distinfo,v 1.13 2004/06/28 13:58:25 minskim Exp $ -SHA1 (mathomatic-11.2c.tgz) = ccf3b18ac9613c59327e1f03954f18d34483d410 -Size (mathomatic-11.2c.tgz) = 123833 bytes -SHA1 (patch-aa) = 5db7a43eaee9ed963a180e7617f4e8125ac541c8 +SHA1 (mathomatic-11.2d.tgz) = 5e6a942ef54c8c633ca9429c8feba4cb2efa6da9 +Size (mathomatic-11.2d.tgz) = 125048 bytes +SHA1 (patch-aa) = f590bd224831b7f882f7cfed72ba6db39e866985 diff --git a/math/mathomatic/patches/patch-aa b/math/mathomatic/patches/patch-aa index 9fcbbe14311..8a6298ecf87 100644 --- a/math/mathomatic/patches/patch-aa +++ b/math/mathomatic/patches/patch-aa @@ -1,6 +1,6 @@ -$NetBSD: patch-aa,v 1.5 2004/06/04 03:38:29 minskim Exp $ +$NetBSD: patch-aa,v 1.6 2004/06/28 13:58:25 minskim Exp $ ---- makefile.orig 2004-06-01 00:55:54.000000000 -0500 +--- makefile.orig 2004-06-25 18:30:52.000000000 -0500 +++ makefile @@ -1,13 +1,13 @@ # Makefile for compiling Mathomatic for UNIX or Linux or Mac OS X. @@ -16,8 +16,8 @@ $NetBSD: patch-aa,v 1.5 2004/06/04 03:38:29 minskim Exp $ +CFLAGS += -DREADLINE +LIBS += -lreadline --PREFIX = /usr/local -+#PREFIX = /usr/local +-prefix = /usr/local ++prefix = ${PREFIX} + bindir = $(prefix)/bin + mandir = $(prefix)/man - AOUT =am - OBJECTS =main.o am.o parse.o cmds.o simplify.o factor.o super.o \ |