3c0620138d
Submitted by Aleksej Saushev in PR pkg/39404. Changes since Maxima 5.15 Major changes: * ECL can build Maxima via autoconf machinery Other revisions: * Revision and extension of code for exponential integral functions * Revision and extension of code for hypergeometric functions * share/contrib/amatrix: revisions * share/contrib/gf: bug fixes * share/contrib/sarag: revisions * share/contrib/zeilberger: revisions * share/contrib/graphs: revisions * share/contrib/distrib: revisions and new test script * share/contrib/maximaMathML: revisions * share/tensor: additional demonstrations * Patches for Lispworks and MCL * Revisions and extensions of reference manual and its translations Plus various bug fixes.
32 lines
788 B
Makefile
32 lines
788 B
Makefile
# $NetBSD: options.mk,v 1.3 2008/08/25 22:14:17 ahoka Exp $
|
|
|
|
PKG_OPTIONS_VAR= PKG_OPTIONS.maxima
|
|
PKG_OPTIONS_REQUIRED_GROUPS= lisp
|
|
PKG_OPTIONS_GROUP.lisp= clisp sbcl ecl
|
|
|
|
PKG_SUGGESTED_OPTIONS+= clisp
|
|
|
|
.include "../../mk/bsd.options.mk"
|
|
|
|
# Select Lisp backend
|
|
.if !empty(PKG_OPTIONS:Mclisp)
|
|
DEPENDS+= clisp-[0-9]*:../../lang/clisp
|
|
CONFIGURE_ARGS+= --enable-clisp
|
|
.endif
|
|
.if !empty(PKG_OPTIONS:Msbcl)
|
|
DEPENDS+= sbcl-[0-9]*:../../lang/sbcl
|
|
CONFIGURE_ARGS+= --enable-sbcl
|
|
.endif
|
|
.if !empty(PKG_OPTIONS:Mecl)
|
|
DEPENDS+= ecl-[0-9]*:../../lang/ecl
|
|
CONFIGURE_ARGS+= --enable-ecl
|
|
.include "../../lang/ecl/buildlink3.mk"
|
|
.endif
|
|
|
|
# Modify PLIST
|
|
PLIST_VARS+= ${PKG_OPTIONS_GROUP.lisp}
|
|
.for opt in ${PKG_OPTIONS_GROUP.lisp}
|
|
. if !empty(PKG_OPTIONS:M${opt})
|
|
PLIST.${opt}= yes
|
|
. endif
|
|
.endfor
|