diff options
author | dmcmahill <dmcmahill> | 2001-12-19 01:09:25 +0000 |
---|---|---|
committer | dmcmahill <dmcmahill> | 2001-12-19 01:09:25 +0000 |
commit | a38d61d573a45d1d104ff527806769dd4bbe2293 (patch) | |
tree | c6e8084791ef92088c6518984a32158e5f67134d /math/yacas/Makefile | |
parent | 127f1af6803a28e267c946bb350ddb2df2199a35 (diff) | |
download | pkgsrc-a38d61d573a45d1d104ff527806769dd4bbe2293.tar.gz |
many bug fixes and improvements such as:
* small improvement to Arg(...) working on real numbers.
* improved 'make test', no need to install before test any more.
* VarList can now accept a second argument, a filter predicate.
* Pattern matcher now allows extended prototypes, like
PP(list_Contains("a")) <-- ... etcetera.
* c-style tokenizer using CTokenizer() (DefaultTokenizer() switches back
to the default tokenizer).
* Great speed-up of function Assoc.
* Christian Obrecht implemented the Rabin-Miller primality testing
algorithm, which greatly improves the speed of IsPrime.
* Orthogonal polynomials OrthoP, OrthoP,OrthoG,OrthoH,OrthoL,
OrthoT,OrthoU implemented by Serge Winitzki.
* various speedups, and a new memory manager, optimized for allocating
many small blocks (which is the case in Yacas).
* Changed the directory structure for the script files
* Greatly improved Simplify function.
* Added CurrentFile, CurrentLine functions
* Implemented backquote mechanism: `(...) will substitute every @a with
the evaluation of a (and if a is a function the function name is
replaced). The end result is evaluated. see substitute.cpp for more
details
many more... see http://www.xs4all.nl/~apinkus/changes.html for the complete
list.
Diffstat (limited to 'math/yacas/Makefile')
-rw-r--r-- | math/yacas/Makefile | 18 |
1 files changed, 7 insertions, 11 deletions
diff --git a/math/yacas/Makefile b/math/yacas/Makefile index 0823ce03bc5..f925050e31d 100644 --- a/math/yacas/Makefile +++ b/math/yacas/Makefile @@ -1,27 +1,23 @@ -# $NetBSD: Makefile,v 1.6 2001/05/05 23:54:47 jtb Exp $ +# $NetBSD: Makefile,v 1.7 2001/12/19 01:09:25 dmcmahill Exp $ # -DISTNAME= yacas-latest -PKGNAME= yacas-1.0.43 +DISTNAME= yacas-1.0.48 CATEGORIES= math -MASTER_SITES= http://www.xs4all.nl/~apinkus/ +MASTER_SITES= http://www.xs4all.nl/~apinkus/backups/ MAINTAINER= packages@netbsd.org HOMEPAGE= http://www.xs4all.nl/~apinkus/yacas.html COMMENT= Yet Another Computer Algebra System -DIST_SUBDIR= ${PKGNAME} -WRKSRC= ${WRKDIR}/${PKGNAME} - GNU_CONFIGURE= YES -post-patch: - cd ${WRKSRC}; ${SED} 's|@prefix@|${PREFIX}|g' yacas.sh.in > \ - yacas.sh - post-install: ${INSTALL_SCRIPT} ${WRKSRC}/yacas.sh ${PREFIX}/bin ${INSTALL_DATA_DIR} ${PREFIX}/share/emacs/site-lisp ${INSTALL_DATA} ${WRKSRC}/yacas.el ${PREFIX}/share/emacs/site-lisp +test: build + cd ${WRKSRC} && ${MAKE_ENV} ${MAKE_PROGRAM} test 2>&1 | \ + tee ${WRKDIR}/tests.log + .include "../../mk/bsd.pkg.mk" |