da45eeb096
Changes since FriCAS 1.0.4: - improvement to normalize function, it performs now much stronger simplifications than before - better integration: due to improved normalize FriCAS can now integrate many functions that it previously considered unintegrable - improvement to Martin Rubey guessing package, for example it can now guess differential equation for the generating function of integer partitions - better support for using type valued functions - several bug fixes Changes since FriCAS 1.0.3: User Interface: - Add a new emacs mode: just (require 'fricas), M-x fricas and enjoy. - Add support for inline display of LaTeXed code. - Add support for mouse wheel. - Supress SBCL style warnings due to autoloading. Merge Ralf's wonderful new Aldor interface. Allow calling type-valued functions. Improve coercion of types. Add coercions to InputForm. Improve unparse. Use SExpression as representation of OutputForm. Miscellaneous improvements, bug fixes and cleanups. Approved by <obache>.
33 lines
806 B
Makefile
33 lines
806 B
Makefile
# $NetBSD: Makefile,v 1.3 2009/01/27 15:54:23 asau Exp $
|
|
|
|
PKGNAME= fricas-1.0.5
|
|
DISTNAME= ${PKGNAME}-full
|
|
CATEGORIES= math
|
|
MASTER_SITES= ${MASTER_SITE_SOURCEFORGE:=fricas/}
|
|
EXTRACT_SUFX= .tar.bz2
|
|
|
|
MAINTAINER= asau@inbox.ru
|
|
HOMEPAGE= http://fricas.sourceforge.net/
|
|
COMMENT= FriCAS is a fork of the Axiom computer algebra system
|
|
|
|
WRKSRC= ${WRKDIR}/${PKGNAME_NOREV}
|
|
|
|
BUILD_DEPENDS+= noweb-[0-9]*:../../devel/noweb
|
|
|
|
GNU_CONFIGURE= yes
|
|
USE_TOOLS+= gmake
|
|
|
|
PKG_DESTDIR_SUPPORT= user-destdir
|
|
MAKE_JOBS_SAFE= no
|
|
|
|
# Problems:
|
|
# 4. Emacs files should go into "site-lisp".
|
|
# 5. view3D hangs sometimes (?), killing it doesn't affect binary package.
|
|
|
|
.include "options.mk"
|
|
|
|
.if !empty(PKG_OPTIONS:Mclisp)
|
|
INSTALL_UNSTRIPPED= yes # don't strip AXIOMsys, it breaks FFI
|
|
.endif
|
|
|
|
.include "../../mk/bsd.pkg.mk"
|