pkgsrc/graphics/gnuplot/options.mk
bad e1a6b3a74b Configure with --with-wx-single-threaded when using wxwidgets.
Makes wxt terminal usable again on NetBSD.  Also required on some Linux
versions with newer Haswell cpus.
PKGREVISION++
Fixes PR pkg/47177.
2014-05-08 20:48:55 +00:00

51 lines
1.2 KiB
Makefile

# $NetBSD: options.mk,v 1.8 2014/05/08 20:48:55 bad Exp $
PKG_OPTIONS_VAR= PKG_OPTIONS.gnuplot
PKG_SUPPORTED_OPTIONS= gd lua pdf x11 qt4 wxwidgets
PKG_SUGGESTED_OPTIONS= gd x11
.include "../../mk/bsd.options.mk"
PLIST_VARS+= x11 qt4
.if !empty(PKG_OPTIONS:Mgd)
.include "../../graphics/gd/buildlink3.mk"
.endif
.if !empty(PKG_OPTIONS:Mlua)
.include "../../lang/lua/buildlink3.mk"
.else
CONFIGURE_ARGS+= --without-lua
.endif
# PDF output is also provided by cairo
.if !empty(PKG_OPTIONS:Mpdf)
CONFIGURE_ARGS+= --with-pdf
.include "../../print/pdflib-lite/buildlink3.mk"
.endif
.if !empty(PKG_OPTIONS:Mx11)
PLIST.x11= yes
.include "../../x11/libXaw/buildlink3.mk"
.else
CONFIGURE_ARGS+= --without-x
.endif
.if !empty(PKG_OPTIONS:Mqt4)
USE_LANGUAGES+= c++
CONFIGURE_ARGS+= --enable-qt
PLIST.qt4= yes
.include "../../x11/qt4-libs/buildlink3.mk"
.else
CONFIGURE_ARGS+= --disable-qt
.endif
.if !empty(PKG_OPTIONS:Mwxwidgets)
USE_LANGUAGES+= c++
# force wxt terminal into single threaded mode to avoid crashes
# c.f. http://sourceforge.net/p/gnuplot/mailman/message/31928881/
CONFIGURE_ARGS+= --enable-wxwidgets --with-wx-single-threaded
.include "../../x11/wxGTK28/buildlink3.mk"
.else
CONFIGURE_ARGS+= --disable-wxwidgets
.endif