diff options
author | minskim <minskim@pkgsrc.org> | 2005-01-29 10:53:17 +0000 |
---|---|---|
committer | minskim <minskim@pkgsrc.org> | 2005-01-29 10:53:17 +0000 |
commit | 5d95909fd9a8be82a60130ebf4390fa64fd3a6cf (patch) | |
tree | 1cf003367c1b5ecf2a8ba104e63813aed54a4e7b /math/mathomatic/Makefile | |
parent | 8cb4cb3a1f2776811f0d9c99f787fc4fd9c8b279 (diff) | |
download | pkgsrc-5d95909fd9a8be82a60130ebf4390fa64fd3a6cf.tar.gz |
Update mathomatic to 11.7.
Changes:
Another minor adjustment to simplify command to make everything work
just right.
Trap "derivative x" of (negative constant or zero)^x.
Solve "(constant)^y=constant" for y.
Moved all html files and the man page to subdirectory "doc".
Code cleanup.
Improved modulus solving.
Trap "x%0". Simplify "x%inf".
Fix fraction list display of -0.
Change for better simplification.
Fix for division by roots of fractions.
Diffstat (limited to 'math/mathomatic/Makefile')
-rw-r--r-- | math/mathomatic/Makefile | 8 |
1 files changed, 4 insertions, 4 deletions
diff --git a/math/mathomatic/Makefile b/math/mathomatic/Makefile index c8c67285075..072917beed4 100644 --- a/math/mathomatic/Makefile +++ b/math/mathomatic/Makefile @@ -1,7 +1,7 @@ -# $NetBSD: Makefile,v 1.30 2005/01/14 14:52:44 minskim Exp $ +# $NetBSD: Makefile,v 1.31 2005/01/29 10:53:17 minskim Exp $ # -DISTNAME= mathomatic-11.6d +DISTNAME= mathomatic-11.7 CATEGORIES= math MASTER_SITES= http://www.panix.com/~gesslein/ EXTRACT_SUFX= .tgz @@ -24,9 +24,9 @@ INSTALLATION_DIRS= bin man/man1 do-install: ${INSTALL_PROGRAM} ${WRKSRC}/mathomatic ${PREFIX}/bin - ${INSTALL_MAN} ${WRKSRC}/mathomatic.1 ${PREFIX}/man/man1 + ${INSTALL_MAN} ${WRKSRC}/doc/mathomatic.1 ${PREFIX}/man/man1 ${INSTALL_DATA_DIR} ${PREFIX}/share/doc/${PKGBASE} - ${INSTALL_DATA} ${WRKSRC}/*.htm ${WRKSRC}/README.txt \ + ${INSTALL_DATA} ${WRKSRC}/doc/*.htm ${WRKSRC}/README.txt \ ${PREFIX}/share/doc/${PKGBASE} .include "../../mk/bsd.pkg.mk" |