summaryrefslogtreecommitdiff
path: root/math/maxima/options.mk
blob: d22e26175ca27c41eaf269672f1e7f2f86396973 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
# $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