summaryrefslogtreecommitdiffstats
path: root/utils/gnuplot/DEPENDS
blob: 709d5ba222014dc1df27c55118999e699b8355c2 (plain) (blame)
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
depends g++  &&
depends jpeg &&

# gnuplot uses gd for rendering pngs, even with true type fonts...
optional_depends  "gd"                 \
                  "--with-gd"   \
                  "--without-gd"          \
                  "for png output support" &&

optional_depends "readline"                                 \
		  "--with-readline=gnu" \
                  "--with-readline=builtin"                 \
                  "use gnu readline instead of builtin readline" &&

optional_depends xorg-libs --with-x --without-x "X11 output" &&
optional_depends wxgtk --enable-wxwidgets --disable-wxwidgets \
                 "wxWidgets interactive terminal" &&

optional_depends svgalib               \
                 "--with-linux-vga"    \
                 "--without-linux-vga" \
                 "Linux SVGA console driver?" &&
if ! [[ $GNUPLOT_LUA == "n" ]]; then
  depends texlive &&
  depends lua
fi &&

if is_depends_enabled $SPELL wxgtk; then
  depends cairo &&
  depends pango
fi