summaryrefslogtreecommitdiff
path: root/math/mathomatic/Makefile
diff options
context:
space:
mode:
authorminskim <minskim@pkgsrc.org>2004-03-31 18:14:08 +0000
committerminskim <minskim@pkgsrc.org>2004-03-31 18:14:08 +0000
commit4fe29920ec0a3ff7c0ec80e77f40b5e60f643e24 (patch)
tree29e7a3e43d99a0fbfbf8a8ffb2e0e2f550218176 /math/mathomatic/Makefile
parentf39805f7df2216583f0b85402c56b3b2b085b957 (diff)
downloadpkgsrc-4fe29920ec0a3ff7c0ec80e77f40b5e60f643e24.tar.gz
Import mathomatic-10.9b from pkgsrc-wip.
Packaged by Bruce J.A. Nourish, and slightly modified by me. Mathomatic is an automatic algebraic manipulator that is self-testing and strictly follows the rules of algebra. Mathomatic is an interpreter that can: - Solve, simplify, and compare algebraic equations. - Combine simultaneous equations. - Perform basic calculus operations. - Generate the sensitivity formula for one or more variables in an equation. - Act like a double precision floating point programmable calculator. - Perform complex number and polynomial arithmetic. - Compute the Greatest Common Divisor of numbers or polynomials. - Generate "C" code from equations.
Diffstat (limited to 'math/mathomatic/Makefile')
-rw-r--r--math/mathomatic/Makefile31
1 files changed, 31 insertions, 0 deletions
diff --git a/math/mathomatic/Makefile b/math/mathomatic/Makefile
new file mode 100644
index 00000000000..01688d50321
--- /dev/null
+++ b/math/mathomatic/Makefile
@@ -0,0 +1,31 @@
+# $NetBSD: Makefile,v 1.1.1.1 2004/03/31 18:14:08 minskim Exp $
+#
+
+DISTNAME= am-10.9b
+PKGNAME= mathomatic-10.9b
+CATEGORIES= math
+MASTER_SITES= http://www.panix.com/~gesslein/
+EXTRACT_SUFX= .tgz
+
+MAINTAINER= pkgsrc@bjan.freeshell.org
+HOMEPAGE= http://www.panix.com/~gesslein/
+COMMENT= Small portable symbolic math program
+
+PKG_INSTALLATION_TYPES= overwrite pkgviews
+
+WRKSRC= ${WRKDIR}/am
+USE_BUILDLINK3= yes
+NO_CONFIGURE= yes
+MAKEFILE= makefile
+
+# gcc's optimizer causes problems with this version of the program
+CFLAGS+= -DUNIX -O0
+CFLAGS.SunOS+= -DSOLARIS
+
+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
+
+.include "../../mk/bsd.pkg.mk"