diff options
author | Thierry Thomas <thierry@FreeBSD.org> | 2005-04-11 20:45:00 +0000 |
---|---|---|
committer | Thierry Thomas <thierry@FreeBSD.org> | 2005-04-11 20:45:00 +0000 |
commit | 1bd7e1d799fa1c44c8fb8e888459e7fe4a323b75 (patch) | |
tree | 1fe3d394f820e0371ed6e8417a83b8ad81afbd98 /math/mathomatic/Makefile | |
parent | - Change maintainer's email address. (diff) |
Add mathomatic 12.1.e, highly portable, general purpose CAS
(Computer Algebra System).
PR: 79118
Submitted by: Roman Neuhauser <neuhauser (at) sigpipe.cz>
Notes
Notes:
svn path=/head/; revision=133081
Diffstat (limited to 'math/mathomatic/Makefile')
-rw-r--r-- | math/mathomatic/Makefile | 34 |
1 files changed, 34 insertions, 0 deletions
diff --git a/math/mathomatic/Makefile b/math/mathomatic/Makefile new file mode 100644 index 000000000000..d5bb1bf4e26c --- /dev/null +++ b/math/mathomatic/Makefile @@ -0,0 +1,34 @@ +# ex: ts=8 sts=0 noet +# New ports collection makefile for: Mathomatic +# Date created: Tue Mar 22 10:05:25 CET 2005 +# Whom: Roman Neuhauser <neuhauser@sigpipe.cz> +# +# $FreeBSD$ +# + +PORTNAME= mathomatic +PORTVERSION= 12.1.e +CATEGORIES= math +MASTER_SITES= http://www.panix.com/~gesslein/ +EXTRACT_SUFX= .tgz + +MAINTAINER= neuhauser@sigpipe.cz +COMMENT= Highly portable, general purpose CAS (Computer Algebra System) + +DISTVERSION= ${PORTVERSION:C/\.([[:alpha:]]+)/\1/} +WRKSRC= ${WRKDIR}/${DISTNAME} +MAKEFILE= makefile +MAKE_ARGS+= -DREADLINE prefix=${PREFIX} docdir='$$(prefix)/share/doc' +USE_REINPLACE= yes + +PLIST_FILES= bin/mathomatic +PORTDOCS= am.htm ctips.html index.html manual.htm notes.htm + +MAN1= mathomatic.1 + +pre-configure: +.if !defined(NOPORTDOCS) + @${REINPLACE_CMD} -e "s|#%%PORTDOCS%%| |" ${WRKSRC}/makefile +.endif + +.include <bsd.port.mk> |