summaryrefslogtreecommitdiffstats
path: root/rules/gnuplot.in
blob: b06d78d7e18254c2f5f1e8acad6b16212fedf643 (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
## SECTION=scientific
menuconfig GNUPLOT
	tristate
	prompt "gnuplot                       "
	select ZLIB
	select LIBPNG if GNUPLOT_PNG
	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_FITERRVARS
	bool
	prompt "Support for fitting error variables"

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

config GNUPLOT_PLOT
	bool
	prompt "use Unix plot library"
	depends on BROKEN
	help
	  If you link this program with the Unix plot library
	  (rather outdated) it will be able to generate Unix
	  plot output.

config GNUPLOT_PNG
	bool
	prompt "PNG support"
	help
	  Include support for PNG (Portable Network Graphics)
	  graphics format

config GNUPLOT_GD
	bool
	prompt "GD support"
	depends on BROKEN
	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