diff options
author | asau <asau@pkgsrc.org> | 2009-04-30 19:55:47 +0000 |
---|---|---|
committer | asau <asau@pkgsrc.org> | 2009-04-30 19:55:47 +0000 |
commit | e0d880668740a38a9820cdf5a0ce161b99fd71f8 (patch) | |
tree | 44ba4c488c0c7b59547e56364eea36190d912345 /math/fricas/Makefile | |
parent | 15f52ca9584d0dfb17a6de4f1d36ce4de5235d8b (diff) | |
download | pkgsrc-e0d880668740a38a9820cdf5a0ce161b99fd71f8.tar.gz |
Update to FriCAS 1.0.6
Notable changes (compared to 1.0.5 version) include:
- the axiom script is no longer installed (use fricas script instead)
- some undesirable simplification are no longer done by default,
for example now asin(sin(3)) is left unevaluated
- support lambda expressions using '+->' syntax and nested functions
in Spad
- better configure, support for Dragonfly BSD
- faster bootstrap, also parallel (this does not affect speed
of release build)
Several bug fixes, in particular:
- fixed a regression introduced in 1.0.4 which caused equality
for nested products to sometimes give wrong result
- corrected fixed output of floating point numbers,
- operations on differential operators like symmetric power work now
- fixed crashes related to coercing power series
- functions returning Void can be traced
Diffstat (limited to 'math/fricas/Makefile')
-rw-r--r-- | math/fricas/Makefile | 12 |
1 files changed, 2 insertions, 10 deletions
diff --git a/math/fricas/Makefile b/math/fricas/Makefile index cb3ac5f8383..98c8dc0bfe3 100644 --- a/math/fricas/Makefile +++ b/math/fricas/Makefile @@ -1,8 +1,7 @@ -# $NetBSD: Makefile,v 1.6 2009/03/08 17:17:02 asau Exp $ +# $NetBSD: Makefile,v 1.7 2009/04/30 19:55:47 asau Exp $ -PKGNAME= fricas-1.0.5 +PKGNAME= fricas-1.0.6 DISTNAME= ${PKGNAME_NOREV}-full -PKGREVISION= 1 CATEGORIES= math MASTER_SITES= ${MASTER_SITE_SOURCEFORGE:=fricas/} EXTRACT_SUFX= .tar.bz2 @@ -31,11 +30,4 @@ MAKE_JOBS_SAFE= no INSTALL_UNSTRIPPED= yes # don't strip AXIOMsys, it breaks FFI .endif -# Fix BSD Family pattern: -SUBST_CLASSES+= dragonfly -SUBST_STAGE.dragonfly= post-patch -SUBST_MESSAGE.dragonfly= Fixing BSD Family pattern -SUBST_FILES.dragonfly= configure -SUBST_SED.dragonfly= -e 's/\*bsd\*)/*bsd*|*dragonfly*)/' - .include "../../mk/bsd.pkg.mk" |