blob: df9fd16a8d0d1d021bbfbfeb0d725d6f7acf71cb (
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
33
34
35
36
37
38
39
40
41
|
# $NetBSD: options.mk,v 1.4 2010/03/13 22:16:34 schmonz Exp $
PKG_OPTIONS_VAR= PKG_OPTIONS.pari
PKG_SUPPORTED_OPTIONS= doc gmp x11
PKG_SUGGESTED_OPTIONS= doc gmp x11
.include "../../mk/bsd.options.mk"
PLIST_VARS+= doc
.if !empty(PKG_OPTIONS:Mdoc)
PLIST.doc= yes
BUILD_TARGET+= doc
INSTALL_TARGET+= install-doc
BUILD_DEPENDS+= dvipsk-[0-9]*:../../print/dvipsk
TEX_ACCEPTED= teTeX3
TEX_DEPMETHOD= build
.include "../../mk/tex.buildlink3.mk"
.endif
PLIST_VARS+= nogmp gmp
.if !empty(PKG_OPTIONS:Mgmp)
PLIST.gmp= yes
CONFIGURE_ARGS+= --with-gmp=${PREFIX:Q}
.include "../../devel/gmp/buildlink3.mk"
.else
PLIST.nogmp= yes
.endif
.if !empty(PKG_OPTIONS:Mx11)
USE_TOOLS+= imake
CONFIGURE_ARGS+= --graphic=X11
CONFIGURE_ARGS+= --with-fltk=${PREFIX:Q}
CONFIGURE_ENV+= X11BASE=${X11BASE:Q}
CONFIGURE_ENV+= Xincroot=${X11BASE}/include
.include "../../x11/libX11/buildlink3.mk"
.include "../../x11/fltk/buildlink3.mk"
.else
CONFIGURE_ARGS+= --graphic=none
# don't let the configure script find an installed fltk
CONFIGURE_ARGS+= --with-fltk={BUILDLINK_DIR:Q}/nonexistent
.endif
|