Add a -lite version for gnuplot which has minimal dependencies.

This has been requested particularly by those running it in a headless
environment.
This commit is contained in:
Greg Lewis 2017-12-13 07:23:10 +00:00
parent 43bdbadbf9
commit a202998baa
Notes: svn2git 2021-03-31 03:12:20 +00:00
svn path=/head/; revision=456194
3 changed files with 33 additions and 0 deletions

View file

@ -208,6 +208,7 @@
SUBDIR += gnubc
SUBDIR += gnumeric
SUBDIR += gnuplot
SUBDIR += gnuplot-lite
SUBDIR += gnuplot-tex-extras
SUBDIR += goblin
SUBDIR += gotoblas

View file

@ -0,0 +1,10 @@
PKGNAMESUFFIX= -lite
COMMENT= Command-line driven graphing utility (lite package)
CONFLICTS_INSTALL= gnuplot-[0-9]*
LITE= yes
MASTERDIR= ${.CURDIR}/../gnuplot
.include "${MASTERDIR}/Makefile"

View file

@ -0,0 +1,22 @@
Gnuplot is a portable multi-platform command-line driven graphing utility. It
was originally created to allow scientists and students to visualize
mathematical functions and data interactively, but has grown to support many
non-interactive uses such as web scripting. It is also used as a plotting engine
by third-party applications like Octave. Gnuplot has been supported and under
active development since 1986.
Gnuplot supports many types of plots in either 2D or 3D. It can draw using
lines, points, boxes, contours, vector fields, surfaces, and various associated
text. It also supports various specialized plot types. Gnuplot supports many
different types of output: interactive screen terminals (with mouse and hotkey
input), direct output to pen plotters or modern printers, and output to many
file formats (eps, emf, fig, jpeg, LaTeX, pdf, png, postscript, ...). Gnuplot is
easily extensible to include new output modes. Recent additions include
interactive terminals based on wxWidgets (usable on multiple platforms), and Qt.
Mouseable plots embedded in web pages can be generated using the svg or HTML5
canvas terminal drivers.
This is the lite version of the package, which doesn't support rendering
directly on graphical terminals and other graphical feaures.
WWW: http://www.gnuplot.info/