summaryrefslogtreecommitdiffstats
path: root/rules/gnuplot.in
blob: e5fbfcd194adb6caea17eeb9e1f06710da33886d (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
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
## SECTION=scientific
menuconfig GNUPLOT
	tristate
	prompt "gnuplot                       "
	select LIBC_M
	select GCCLIBS_CXX
	select GCCLIBS_GCC_S
	select ZLIB
	select LIBGD		if GNUPLOT_GD
	select LIBGD_PNG	if GNUPLOT_GD
	select XORG_LIB_XT	if GNUPLOT_X
	help
	  A command-line driven interactive plotting program for
	  making 2D and 3D graphs from data and functions.

	  Supports lots of output formats, including drivers for
	  many printers, (La)TeX, (x)fig, Postscript, and so on.

	  Data files and self-defined functions can be manipulated by internal
	  C-like language.  Can perform smoothing, spline-fitting, or nonlinear
	  fits. Can work with complex numbers.

if GNUPLOT

config GNUPLOT_HELP
	bool
	prompt "Install interactive help"
	help
	  Installs the interactive help files on the target.
	  Requires about 600 kByte of space.

config GNUPLOT_POSTSCRIPT
	bool
	prompt "Install Postscript prolog files"
	help
	  Installs the prolog files needed to generate Postscript output. If you
	  don't need Postscript, you can turn off that setting. Requires about
	  100 kByte of space.

config GNUPLOT_JS
	bool
	prompt "Install JavaScript runtime files"
	help
	  Installs some JavaScript files and PNG images which will be needed if
	  HTML5 output should be generated. Requires about 300 kByte of disk space.

config GNUPLOT_X
	bool
	prompt "X support"
	help
	  Enable the graphical X11 user interface of GNUplot

config GNUPLOT_GD
	bool
	prompt "GD support"
	help
	  Use the GD library.
	  GD is an open source code library for the dynamic
	  creation of images.

config GNUPLOT_PDF
	bool
	prompt "PDF support"
	depends on BROKEN
	help
	  Include support for output as PDF (Portable Document Format)
endif