diff options
author | minskim <minskim@pkgsrc.org> | 2005-10-29 01:45:35 +0000 |
---|---|---|
committer | minskim <minskim@pkgsrc.org> | 2005-10-29 01:45:35 +0000 |
commit | 9af1fb4b74dff987e083f2d6e40ca8eee06eb28d (patch) | |
tree | e719621a9bb6ac9f2490ea13b24c789eece9632f /math/mathomatic | |
parent | 6f5b605eead5a4b099907b84683925527ee15ddf (diff) | |
download | pkgsrc-9af1fb4b74dff987e083f2d6e40ca8eee06eb28d.tar.gz |
Update mathomatic to 12.5.0.
Changes:
- Made library work with constant strings passed as input to matho_process().
- Added "set bold_colors" option. Use this if equations are difficult to read.
- Removed "doc/ctips.html".
- Cleaned up and improved makefiles.
- Fixed bug in "compile.secure".
Diffstat (limited to 'math/mathomatic')
-rw-r--r-- | math/mathomatic/Makefile | 6 | ||||
-rw-r--r-- | math/mathomatic/PLIST | 3 | ||||
-rw-r--r-- | math/mathomatic/distinfo | 10 | ||||
-rw-r--r-- | math/mathomatic/patches/patch-aa | 15 |
4 files changed, 14 insertions, 20 deletions
diff --git a/math/mathomatic/Makefile b/math/mathomatic/Makefile index a98e602b7a1..ec0bc25d4b8 100644 --- a/math/mathomatic/Makefile +++ b/math/mathomatic/Makefile @@ -1,7 +1,7 @@ -# $NetBSD: Makefile,v 1.52 2005/10/11 01:10:31 minskim Exp $ +# $NetBSD: Makefile,v 1.53 2005/10/29 01:45:35 minskim Exp $ # -DISTNAME= mathomatic-12.4.12 +DISTNAME= mathomatic-12.5.0 CATEGORIES= math MASTER_SITES= http://www.panix.com/~gesslein/ EXTRACT_SUFX= .tgz @@ -23,7 +23,7 @@ INSTALLATION_DIRS= bin man/man1 do-install: ${INSTALL_PROGRAM} ${WRKSRC}/mathomatic ${PREFIX}/bin - ${INSTALL_MAN} ${WRKSRC}/doc/mathomatic.1 ${PREFIX}/man/man1 + ${INSTALL_MAN} ${WRKSRC}/mathomatic.1 ${PREFIX}/man/man1 ${INSTALL_DATA_DIR} ${PREFIX}/share/doc/${PKGBASE} ${INSTALL_DATA} ${WRKSRC}/doc/*.htm ${WRKSRC}/doc/*.html \ ${WRKSRC}/README.txt ${PREFIX}/share/doc/${PKGBASE} diff --git a/math/mathomatic/PLIST b/math/mathomatic/PLIST index 8921e46da35..e2866b08b3f 100644 --- a/math/mathomatic/PLIST +++ b/math/mathomatic/PLIST @@ -1,9 +1,8 @@ -@comment $NetBSD: PLIST,v 1.5 2005/06/05 04:55:43 minskim Exp $ +@comment $NetBSD: PLIST,v 1.6 2005/10/29 01:45:35 minskim Exp $ bin/mathomatic man/man1/mathomatic.1 share/doc/${PKGBASE}/README.txt share/doc/${PKGBASE}/am.htm -share/doc/${PKGBASE}/ctips.html share/doc/${PKGBASE}/index.html share/doc/${PKGBASE}/manual.htm share/doc/${PKGBASE}/notes.html diff --git a/math/mathomatic/distinfo b/math/mathomatic/distinfo index 65c28c475c2..4e28612d959 100644 --- a/math/mathomatic/distinfo +++ b/math/mathomatic/distinfo @@ -1,6 +1,6 @@ -$NetBSD: distinfo,v 1.48 2005/10/11 01:10:31 minskim Exp $ +$NetBSD: distinfo,v 1.49 2005/10/29 01:45:35 minskim Exp $ -SHA1 (mathomatic-12.4.12.tgz) = ef30bd5d042424053774f8d5cabadfbc0c7e8bbf -RMD160 (mathomatic-12.4.12.tgz) = 808e2694706c09412061104e37c05f2d01a727ab -Size (mathomatic-12.4.12.tgz) = 128787 bytes -SHA1 (patch-aa) = 46ce4bdac9ee4846a24004e69847f51f994be2a0 +SHA1 (mathomatic-12.5.0.tgz) = 9f1cb1ca6b429b85f9cac6c4ed6ac944b608107b +RMD160 (mathomatic-12.5.0.tgz) = 7481451927348992b617c8fa891e82404fccc9d6 +Size (mathomatic-12.5.0.tgz) = 128893 bytes +SHA1 (patch-aa) = 3543edb07b77f401623953be57d06784684fbb30 diff --git a/math/mathomatic/patches/patch-aa b/math/mathomatic/patches/patch-aa index b6551e70102..65b46891781 100644 --- a/math/mathomatic/patches/patch-aa +++ b/math/mathomatic/patches/patch-aa @@ -1,8 +1,8 @@ -$NetBSD: patch-aa,v 1.15 2005/09/10 18:15:03 minskim Exp $ +$NetBSD: patch-aa,v 1.16 2005/10/29 01:45:35 minskim Exp $ ---- makefile.orig 2005-08-29 11:59:12.000000000 -0700 +--- makefile.orig 2005-10-20 03:36:30.000000000 -0700 +++ makefile -@@ -5,11 +5,11 @@ CFLAGS += -O -DUNIX -DVERSION=\"$(VERSI +@@ -5,8 +5,8 @@ CFLAGS += -O -DUNIX -DVERSION=\"$(VERSI LDFLAGS += -s LIBS += -lm @@ -11,10 +11,5 @@ $NetBSD: patch-aa,v 1.15 2005/09/10 18:15:03 minskim Exp $ +CFLAGS += -DREADLINE +LIBS += -lreadline --prefix = /usr --bindir = /usr/local/bin -+prefix = ${PREFIX} -+bindir = ${PREFIX}/bin - mandir = $(prefix)/share/man - docdir = $(prefix)/share/doc - + prefix ?= /usr/local + bindir ?= $(prefix)/bin |