summaryrefslogtreecommitdiff
path: root/math/fricas/options.mk
diff options
context:
space:
mode:
authorasau <asau@pkgsrc.org>2010-11-24 22:43:40 +0000
committerasau <asau@pkgsrc.org>2010-11-24 22:43:40 +0000
commit39bf3cf4fd06a26ad6b0d49af25c84773b1eae55 (patch)
treee04e92b7c4fc353eb6186b53355d0ae255c56431 /math/fricas/options.mk
parent9597f1ce0eaa55250679922fb96e6ca4fd0c6995 (diff)
downloadpkgsrc-39bf3cf4fd06a26ad6b0d49af25c84773b1eae55.tar.gz
Update to FriCAS 1.1.1
Notable changes since version 1.1.0: - New graphics framework. - Support for using GMP with sbcl on 32/64 bit AMD/Intel processors (to activate it one must use '--with-gmp' option to configure). - Improvements to integration and normalization. In particular integrals containing multiple non-nested roots should now work much faster. Also FriCAS now can compute more integrals of Liouvillian functions. - Several new special functions. - Improvements to efricas. - Looking for default init file FriCAS now first tries to use '.fricas.input' and only if that fails it looks for '.axiom.input'. Bug fixes, in particular: - Numeric atan, asin and acos took wrong branch. - WeierstrassPreparation package did not work. - Saving and restoring history should be now more reliable. - Fixed two bugs in Spad compiler related to conditional compilation. - Fixed a problem with rational reconstruction which affected guessing package.
Diffstat (limited to 'math/fricas/options.mk')
-rw-r--r--math/fricas/options.mk7
1 files changed, 6 insertions, 1 deletions
diff --git a/math/fricas/options.mk b/math/fricas/options.mk
index 5e7d6af8a1c..be11134072a 100644
--- a/math/fricas/options.mk
+++ b/math/fricas/options.mk
@@ -1,4 +1,4 @@
-# $NetBSD: options.mk,v 1.4 2009/10/26 07:53:39 asau Exp $
+# $NetBSD: options.mk,v 1.5 2010/11/24 22:43:40 asau Exp $
PKG_OPTIONS_VAR= PKG_OPTIONS.fricas
PKG_OPTIONS_REQUIRED_GROUPS= lisp
@@ -24,6 +24,7 @@ CONFIGURE_ARGS+= --with-lisp=sbcl
.if !empty(PKG_OPTIONS:Mecl)
FASL= fas
CONFIGURE_ARGS+= --with-lisp=ecl
+.include "../../devel/libffi/buildlink3.mk"
.include "../../lang/ecl/buildlink3.mk"
.endif
@@ -53,6 +54,10 @@ PRINT_PLIST_AWK+= {if ($$0 !~ /^\$${x11}/ && $$0 ~ /\/bin\/${_file_}$$/) {$$0 =
.for _file_ in ex2ht hthits htsearch presea spadbuf view2D view3D viewman
PRINT_PLIST_AWK+= {if ($$0 !~ /^\$${x11}/ && $$0 ~ /\/lib\/${_file_}$$/) {$$0 = "$${x11}" $$0;}}
.endfor
+# files in lib/.../bitmaps
+.for _file_ in door ht_icon
+PRINT_PLIST_AWK+= {if ($$0 !~ /^\$${x11}/ && $$0 ~ /\/bitmaps\/${_file_}$$/) {$$0 = "$${x11}" $$0;}}
+.endfor
# Postscript files in lib/.../lib/graph:
PRINT_PLIST_AWK+= {if ($$0 !~ /^\$${x11}/ && $$0 ~ /\/lib\/graph\/.*\.ps$$/) {$$0 = "$${x11}" $$0;}}
.endif