From 78ed9458e9887ef8a5b6cec973d5f1fa001c2a4b Mon Sep 17 00:00:00 2001 From: ziggi Date: Wed, 13 May 2020 08:15:41 +0000 Subject: [PATCH] add gnuplot --- math/gnuplot/Makefile | 105 ++++++++ math/gnuplot/distinfo | 3 + math/gnuplot/files/patch-configure | 117 +++++++++ math/gnuplot/files/patch-docs-Makefile.in | 30 +++ math/gnuplot/files/patch-src-command.c | 10 + math/gnuplot/pkg-descr | 19 ++ math/gnuplot/pkg-plist | 296 ++++++++++++++++++++++ 7 files changed, 580 insertions(+) create mode 100644 math/gnuplot/Makefile create mode 100644 math/gnuplot/distinfo create mode 100644 math/gnuplot/files/patch-configure create mode 100644 math/gnuplot/files/patch-docs-Makefile.in create mode 100644 math/gnuplot/files/patch-src-command.c create mode 100644 math/gnuplot/pkg-descr create mode 100644 math/gnuplot/pkg-plist diff --git a/math/gnuplot/Makefile b/math/gnuplot/Makefile new file mode 100644 index 00000000..6f504539 --- /dev/null +++ b/math/gnuplot/Makefile @@ -0,0 +1,105 @@ +# $FreeBSD: head/math/gnuplot/Makefile 518826 2019-12-02 06:14:00Z glewis $ + +PORTNAME= gnuplot +PORTVERSION= 5.2.8 +CATEGORIES= math graphics +MASTER_SITES= SF + +MAINTAINER= glewis@FreeBSD.org +COMMENT= Command-line driven graphing utility + +LIB_DEPENDS+= libexpat.so:text/libexpat +LIB_DEPENDS+= libfontconfig.so:x11/libfontconfig +LIB_DEPENDS+= libfreetype.so:graph/libfreetype2 +LIB_DEPENDS+= libgd.so:graph/libgd +LIB_DEPENDS+= libiconv.so:text/libiconv +LIB_DEPENDS+= libintl.so:devel/gettext +LIB_DEPENDS+= libjpeg.so:graph/libjpeg +LIB_DEPENDS+= libpng16.so:graph/libpng +LIB_DEPENDS+= libreadline.so:devel/libreadline +LIB_DEPENDS+= libtiff.so:graph/libtiff +LIB_DEPENDS+= libwebp.so:graph/libwebp +LIB_DEPENDS+= libX11.so:x11/libX11 +LIB_DEPENDS+= libXau.so:x11/libXau +LIB_DEPENDS+= libxcb.so:x11/libxcb +LIB_DEPENDS+= libXdmcp.so:x11/libXdmcp +LIB_DEPENDS+= libXpm.so:x11/libXpm + +LIB_DEPENDS+= libiconv.so:text/libiconv +LIB_DEPENDS+= libX11.so:x11/libX11 +LIB_DEPENDS+= libXau.so:x11/libXau +LIB_DEPENDS+= libxcb.so:x11/libxcb +LIB_DEPENDS+= libXdmcp.so:x11/libXdmcp + + + +USES+= compiler:c++11-lang iconv pkgconfig readline +GNU_CONFIGURE= yes +LDFLAGS+= -L${LOCALBASE}/lib ${ICONV_LIB} +CONFIGURE_ARGS+= --with-readline=gnu +CONFIGURE_ARGS+= --without-linux-vga +CONFIGURE_ARGS+= --without-lisp-files +CONFIGURE_ARGS+= --without-tutorial +CONFIGURE_ARGS+= --with-bitmap-terminals +CONFIGURE_ARGS+= --with-qt=no + +#CONFIGURE_ARGS+= --disable-x11-mbfonts +#CONFIGURE_ARGS+= --disable-x11-external +CONFIGURE_ARGS+= --disable-wxwidgets +#CONFIGURE_ARGS+= --without-x +CONFIGURE_ARGS+= --without-ggi +#CONFIGURE_ARGS+= --without-gd +CONFIGURE_ARGS+= --without-caca +CONFIGURE_ARGS+= --without-wx +CONFIGURE_ARGS+= --without-gpic +CONFIGURE_ARGS+= --without-mif +CONFIGURE_ARGS+= --without-cairo +CONFIGURE_ARGS+= --without-lua +CONFIGURE_ARGS+= --without-latex +CONFIGURE_ARGS+= --without-kpsexpand + +CONFIGURE_ARGS+= --with-gd=${LOCALBASE} + +CONFIGURE_ARGS+= --without-mif +CONFIGURE_ARGS+= --without-kpsexpand +CONFIGURE_ARGS+= --without-latex +CONFIGURE_ARGS+= ac_cv_prog_KPSEXPAND=${LOCALBASE}/bin/kpsexpand +CONFIGURE_ARGS+= ac_cv_prog_PLAINTEX=${LOCALBASE}/bin/tex +CONFIGURE_ARGS+= ac_cv_prog_LATEX=${LOCALBASE}/bin/latex +CONFIGURE_ARGS+= ac_cv_prog_PDFLATEX=${LOCALBASE}/bin/pdflatex + +TEST_TARGET= check +PORTDOCS= * +PORTEXAMPLES= * + +GRIDBOX_CONFIGURE_OFF= --disable-h3d-quadtree --enable-h3d-gridbox + +post-patch: + ${REINPLACE_CMD} -e '/^install:/s/install-am//' ${WRKSRC}/share/LaTeX/Makefile.in + ${REINPLACE_CMD} -e 's|)/@PACKAGE@/@PKG_MAJOR@|)|g' ${WRKSRC}/src/Makefile.in + ${REINPLACE_CMD} -e 's|luaL_checkint(|(int)luaL_checkinteger(|' ${WRKSRC}/term/lua.trm + +#post-build-DOCS-on: +# cd ${WRKSRC}/docs && ${MAKE} groff + +pre-install: + ${MKDIR} ${STAGEDIR}${DATADIR}/5.2 ; \ + ${INSTALL_DATA} ${WRKSRC}/share/gnuplotrc \ + ${STAGEDIR}${DATADIR}/5.2/gnuplotrc.sample + +post-install: + ${MKDIR} ${STAGEDIR}${EXAMPLESDIR} + cd ${WRKSRC}/demo && ${COPYTREE_SHARE} . ${STAGEDIR}${EXAMPLESDIR} + +#post-install-DOCS-on: +# @${MKDIR} ${STAGEDIR}${DOCSDIR}/psdoc +# cd ${WRKSRC}/docs && ${INSTALL_DATA} gnuplot.txt gnuplot.dvi \ +# gnuplot.ps ${STAGEDIR}${DOCSDIR} +# cd ${WRKSRC}/docs/psdoc && ${INSTALL_DATA} README ps_* ${STAGEDIR}${DOCSDIR}/psdoc + +#.if defined(LITE) +#post-stage: +# @cd ${STAGEDIR}${PREFIX} && ${RMDIR} libexec/gnuplot/5.2 libexec/gnuplot +#.endif + +.include diff --git a/math/gnuplot/distinfo b/math/gnuplot/distinfo new file mode 100644 index 00000000..b5c55dad --- /dev/null +++ b/math/gnuplot/distinfo @@ -0,0 +1,3 @@ +TIMESTAMP = 1575266871 +SHA256 (gnuplot-5.2.8.tar.gz) = 60a6764ccf404a1668c140f11cc1f699290ab70daa1151bb58fed6139a28ac37 +SIZE (gnuplot-5.2.8.tar.gz) = 5340677 diff --git a/math/gnuplot/files/patch-configure b/math/gnuplot/files/patch-configure new file mode 100644 index 00000000..246bcdf6 --- /dev/null +++ b/math/gnuplot/files/patch-configure @@ -0,0 +1,117 @@ +--- configure.orig 2017-11-23 11:59:30.644837000 -0800 ++++ configure 2017-11-23 12:01:09.450617000 -0800 +@@ -11246,12 +11246,12 @@ + pkg_cv_LUA_CFLAGS="$LUA_CFLAGS" + else + if test -n "$PKG_CONFIG" && \ +- { { $as_echo "$as_me:${as_lineno-$LINENO}: \$PKG_CONFIG --exists --print-errors \"lua5.3\""; } >&5 +- ($PKG_CONFIG --exists --print-errors "lua5.3") 2>&5 ++ { { $as_echo "$as_me:${as_lineno-$LINENO}: \$PKG_CONFIG --exists --print-errors \"lua-5.3\""; } >&5 ++ ($PKG_CONFIG --exists --print-errors "lua-5.3") 2>&5 + ac_status=$? + $as_echo "$as_me:${as_lineno-$LINENO}: \$? = $ac_status" >&5 + test $ac_status = 0; }; then +- pkg_cv_LUA_CFLAGS=`$PKG_CONFIG --cflags "lua5.3" 2>/dev/null` ++ pkg_cv_LUA_CFLAGS=`$PKG_CONFIG --cflags "lua-5.3" 2>/dev/null` + else + pkg_failed=yes + fi +@@ -11264,12 +11264,12 @@ + pkg_cv_LUA_LIBS="$LUA_LIBS" + else + if test -n "$PKG_CONFIG" && \ +- { { $as_echo "$as_me:${as_lineno-$LINENO}: \$PKG_CONFIG --exists --print-errors \"lua5.3\""; } >&5 +- ($PKG_CONFIG --exists --print-errors "lua5.3") 2>&5 ++ { { $as_echo "$as_me:${as_lineno-$LINENO}: \$PKG_CONFIG --exists --print-errors \"lua-5.3\""; } >&5 ++ ($PKG_CONFIG --exists --print-errors "lua-5.3") 2>&5 + ac_status=$? + $as_echo "$as_me:${as_lineno-$LINENO}: \$? = $ac_status" >&5 + test $ac_status = 0; }; then +- pkg_cv_LUA_LIBS=`$PKG_CONFIG --libs "lua5.3" 2>/dev/null` ++ pkg_cv_LUA_LIBS=`$PKG_CONFIG --libs "lua-5.3" 2>/dev/null` + else + pkg_failed=yes + fi +@@ -11288,9 +11288,9 @@ + _pkg_short_errors_supported=no + fi + if test $_pkg_short_errors_supported = yes; then +- LUA_PKG_ERRORS=`$PKG_CONFIG --short-errors --errors-to-stdout --print-errors "lua5.3"` ++ LUA_PKG_ERRORS=`$PKG_CONFIG --short-errors --errors-to-stdout --print-errors "lua-5.3"` + else +- LUA_PKG_ERRORS=`$PKG_CONFIG --errors-to-stdout --print-errors "lua5.3"` ++ LUA_PKG_ERRORS=`$PKG_CONFIG --errors-to-stdout --print-errors "lua-5.3"` + fi + # Put the nasty error message in config.log where it belongs + echo "$LUA_PKG_ERRORS" >&5 +@@ -11739,7 +11739,7 @@ + LUA_LIBS=$pkg_cv_LUA_LIBS + { $as_echo "$as_me:${as_lineno-$LINENO}: result: yes" >&5 + $as_echo "yes" >&6; } +- LUA=lua5.3 ++ LUA=lua53 + fi + elif test $pkg_failed = untried; then + { $as_echo "$as_me:${as_lineno-$LINENO}: result: no" >&5 +@@ -11754,12 +11754,12 @@ + pkg_cv_LUA_CFLAGS="$LUA_CFLAGS" + else + if test -n "$PKG_CONFIG" && \ +- { { $as_echo "$as_me:${as_lineno-$LINENO}: \$PKG_CONFIG --exists --print-errors \"lua5.3\""; } >&5 +- ($PKG_CONFIG --exists --print-errors "lua5.3") 2>&5 ++ { { $as_echo "$as_me:${as_lineno-$LINENO}: \$PKG_CONFIG --exists --print-errors \"lua-5.3\""; } >&5 ++ ($PKG_CONFIG --exists --print-errors "lua-5.3") 2>&5 + ac_status=$? + $as_echo "$as_me:${as_lineno-$LINENO}: \$? = $ac_status" >&5 + test $ac_status = 0; }; then +- pkg_cv_LUA_CFLAGS=`$PKG_CONFIG --cflags "lua5.3" 2>/dev/null` ++ pkg_cv_LUA_CFLAGS=`$PKG_CONFIG --cflags "lua-5.3" 2>/dev/null` + else + pkg_failed=yes + fi +@@ -11772,12 +11772,12 @@ + pkg_cv_LUA_LIBS="$LUA_LIBS" + else + if test -n "$PKG_CONFIG" && \ +- { { $as_echo "$as_me:${as_lineno-$LINENO}: \$PKG_CONFIG --exists --print-errors \"lua5.3\""; } >&5 +- ($PKG_CONFIG --exists --print-errors "lua5.3") 2>&5 ++ { { $as_echo "$as_me:${as_lineno-$LINENO}: \$PKG_CONFIG --exists --print-errors \"lua-5.3\""; } >&5 ++ ($PKG_CONFIG --exists --print-errors "lua-5.3") 2>&5 + ac_status=$? + $as_echo "$as_me:${as_lineno-$LINENO}: \$? = $ac_status" >&5 + test $ac_status = 0; }; then +- pkg_cv_LUA_LIBS=`$PKG_CONFIG --libs "lua5.3" 2>/dev/null` ++ pkg_cv_LUA_LIBS=`$PKG_CONFIG --libs "lua-5.3" 2>/dev/null` + else + pkg_failed=yes + fi +@@ -11796,9 +11796,9 @@ + _pkg_short_errors_supported=no + fi + if test $_pkg_short_errors_supported = yes; then +- LUA_PKG_ERRORS=`$PKG_CONFIG --short-errors --errors-to-stdout --print-errors "lua5.3"` ++ LUA_PKG_ERRORS=`$PKG_CONFIG --short-errors --errors-to-stdout --print-errors "lua-5.3"` + else +- LUA_PKG_ERRORS=`$PKG_CONFIG --errors-to-stdout --print-errors "lua5.3"` ++ LUA_PKG_ERRORS=`$PKG_CONFIG --errors-to-stdout --print-errors "lua-5.3"` + fi + # Put the nasty error message in config.log where it belongs + echo "$LUA_PKG_ERRORS" >&5 +@@ -12247,7 +12247,7 @@ + LUA_LIBS=$pkg_cv_LUA_LIBS + { $as_echo "$as_me:${as_lineno-$LINENO}: result: yes" >&5 + $as_echo "yes" >&6; } +- LUA=lua5.3 ++ LUA=lua53 + fi + else + LUA_CFLAGS=$pkg_cv_LUA_CFLAGS +@@ -12290,7 +12290,7 @@ + return 0; + } + _ACEOF +-for ac_lib in '' lua lua5.3 lua5.2 lua5.1; do ++for ac_lib in '' lua lua53 lua5.2 lua5.1; do + if test -z "$ac_lib"; then + ac_res="none required" + else diff --git a/math/gnuplot/files/patch-docs-Makefile.in b/math/gnuplot/files/patch-docs-Makefile.in new file mode 100644 index 00000000..e74d9081 --- /dev/null +++ b/math/gnuplot/files/patch-docs-Makefile.in @@ -0,0 +1,30 @@ +--- docs/Makefile.in.orig 2017-11-06 10:23:52.000000000 -0800 ++++ docs/Makefile.in 2017-11-23 12:14:18.710252000 -0800 +@@ -907,7 +907,7 @@ + $(GNUPLOT_EXE): + ( cd ../src ; $(MAKE) gnuplot$(EXEEXT) ) + @BUILD_LUA_TRUE@$(LUA_HELP): $(top_srcdir)/term/lua/gnuplot-tikz.lua +-@BUILD_LUA_TRUE@ $(AM_V_GEN) $(LUA) $< termhelp > $@ ++@BUILD_LUA_TRUE@ $(AM_V_GEN) $(LUA) $(top_srcdir)/term/lua/gnuplot-tikz.lua termhelp > $@ + + allterm.h: $(CORETERM) $(LUA_HELP) + $(AM_V_GEN) for e in `egrep "^[ ]*START_HELP" $(CORETERM) |\ +@@ -933,15 +933,15 @@ + + grotxt: gnuplot.txt + gnuplot.txt: gnuplot.ms $(srcdir)/titlepag.ms +- $(AM_V_GEN) groff -s -p -t -e -ms -Tlatin1 $< > $@ ++ $(AM_V_GEN) groff -s -p -t -e -ms -Tlatin1 gnuplot.ms > $@ + + grodvi: gnuplot-groff.dvi + gnuplot-groff.dvi: gnuplot.ms $(srcdir)/titlepag.ms +- $(AM_V_GEN) groff -s -p -t -e -ms -Tdvi $< > $@ ++ $(AM_V_GEN) groff -s -p -t -e -ms -Tdvi gnuplot.ms > gnuplot.dvi + + grops: gnuplot-groff.ps + gnuplot-groff.ps: gnuplot.ms $(srcdir)/titlepag.ms +- $(AM_V_GEN) groff -s -p -t -e -ms -Tps $< > $@ ++ $(AM_V_GEN) groff -s -p -t -e -ms -Tps gnuplot.ms > gnuplot.ps + + ### doc2xxx dependencies + gnuplot.ms: doc2ms$(EXEEXT) $(srcdir)/gnuplot.doc diff --git a/math/gnuplot/files/patch-src-command.c b/math/gnuplot/files/patch-src-command.c new file mode 100644 index 00000000..1f55428c --- /dev/null +++ b/math/gnuplot/files/patch-src-command.c @@ -0,0 +1,10 @@ +--- src/command.c.orig 2017-11-01 18:12:31.201708000 -0700 ++++ src/command.c 2017-11-01 18:13:03.695758000 -0700 +@@ -119,6 +119,7 @@ + + #ifndef _Windows + # include "help.h" ++# include + #endif /* _Windows */ + + #ifdef _Windows diff --git a/math/gnuplot/pkg-descr b/math/gnuplot/pkg-descr new file mode 100644 index 00000000..9ec6973b --- /dev/null +++ b/math/gnuplot/pkg-descr @@ -0,0 +1,19 @@ +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. + +WWW: http://www.gnuplot.info/ diff --git a/math/gnuplot/pkg-plist b/math/gnuplot/pkg-plist new file mode 100644 index 00000000..bdf16719 --- /dev/null +++ b/math/gnuplot/pkg-plist @@ -0,0 +1,296 @@ +bin/gnuplot +libexec/gnuplot/5.2/gnuplot_x11 +man/man1/gnuplot.1.gz +share/examples/gnuplot/1.dat +share/examples/gnuplot/2.dat +share/examples/gnuplot/3.dat +share/examples/gnuplot/airfoil.dem +share/examples/gnuplot/all.dem +share/examples/gnuplot/animate.dem +share/examples/gnuplot/animate2.dem +share/examples/gnuplot/approximate.dem +share/examples/gnuplot/armillary.dem +share/examples/gnuplot/array.dem +share/examples/gnuplot/arrowstyle.dat +share/examples/gnuplot/arrowstyle.dem +share/examples/gnuplot/asciimat.dat +share/examples/gnuplot/autoscale.dem +share/examples/gnuplot/azimuth.dem +share/examples/gnuplot/barchart_art.dem +share/examples/gnuplot/battery.dat +share/examples/gnuplot/big_peak.dat +share/examples/gnuplot/binary.dem +share/examples/gnuplot/binary1 +share/examples/gnuplot/binary2 +share/examples/gnuplot/binary3 +share/examples/gnuplot/bins.dem +share/examples/gnuplot/bivariat.dem +share/examples/gnuplot/bldg.png +share/examples/gnuplot/blutux.rgb +share/examples/gnuplot/bolditalic.dem +share/examples/gnuplot/borders.dem +share/examples/gnuplot/boxclusters.dem +share/examples/gnuplot/boxplot.dem +share/examples/gnuplot/break_continue.dem +share/examples/gnuplot/callargs.dem +share/examples/gnuplot/candlesticks.dat +share/examples/gnuplot/candlesticks.dem +share/examples/gnuplot/cerf.dem +share/examples/gnuplot/charset.dem +share/examples/gnuplot/circles.dem +share/examples/gnuplot/cities.dat +share/examples/gnuplot/cities.dem +share/examples/gnuplot/clip14in.dat +share/examples/gnuplot/clipobject.dem +share/examples/gnuplot/colorscheme.dem +share/examples/gnuplot/colorwheel.dem +share/examples/gnuplot/complex_trig.dem +share/examples/gnuplot/contours.dem +share/examples/gnuplot/controls.dem +share/examples/gnuplot/ctg-y2.dat +share/examples/gnuplot/custom_key.dem +share/examples/gnuplot/dashcolor.dem +share/examples/gnuplot/dashtypes.dem +share/examples/gnuplot/datastrings.dem +share/examples/gnuplot/delaunay-edges.dat +share/examples/gnuplot/demo.edf +share/examples/gnuplot/density.fnc +share/examples/gnuplot/dgrid3d.dem +share/examples/gnuplot/discrete.dem +share/examples/gnuplot/electron.dem +share/examples/gnuplot/ellipse.dem +share/examples/gnuplot/ellipses_style.dem +share/examples/gnuplot/ellipses.dat +share/examples/gnuplot/empty-circles.dat +share/examples/gnuplot/energy_circles.dat +share/examples/gnuplot/enhanced_utf8.dem +share/examples/gnuplot/enhancedtext.dem +share/examples/gnuplot/epslatex.dem +share/examples/gnuplot/errorbars.dem +share/examples/gnuplot/fenceplot.dem +share/examples/gnuplot/fillbetween.dem +share/examples/gnuplot/fillcrvs.dem +share/examples/gnuplot/fillstyle.dem +share/examples/gnuplot/finance.dat +share/examples/gnuplot/finance.dem +share/examples/gnuplot/fit.dem +share/examples/gnuplot/fit3.dat +share/examples/gnuplot/fitmulti.dem +share/examples/gnuplot/fontfile_latex.dem +share/examples/gnuplot/fontfile.dem +share/examples/gnuplot/gantt.dem +share/examples/gnuplot/gen-random.inc +share/examples/gnuplot/glass.dat +share/examples/gnuplot/GM1_bonds.r3d +share/examples/gnuplot/GM1_sugar.pdb +share/examples/gnuplot/gnu-valley +share/examples/gnuplot/gnuplot.cfg +share/examples/gnuplot/gnuplot.rot +share/examples/gnuplot/gpdemos.tcl +share/examples/gnuplot/heatmaps.dem +share/examples/gnuplot/hemisphr.dat +share/examples/gnuplot/hexa.fnc +share/examples/gnuplot/hidden.dem +share/examples/gnuplot/hidden2.dem +share/examples/gnuplot/histerror.dat +share/examples/gnuplot/histograms.dem +share/examples/gnuplot/histograms2.dem +share/examples/gnuplot/histopt.dat +share/examples/gnuplot/html/canvas_utf8.dem +share/examples/gnuplot/html/gnuplot_demo.css +share/examples/gnuplot/html/index.canvas +share/examples/gnuplot/html/index.save +share/examples/gnuplot/html/index.svg +share/examples/gnuplot/html/linkedaxes.1.js.orig +share/examples/gnuplot/html/linkedaxes.html.orig +share/examples/gnuplot/html/linkedaxes.patch +share/examples/gnuplot/html/Makefile +share/examples/gnuplot/html/Makefile.canvas +share/examples/gnuplot/html/Makefile.svg +share/examples/gnuplot/html/mouseable.dem +share/examples/gnuplot/html/mousebox.template +share/examples/gnuplot/html/webify_canvas.pl +share/examples/gnuplot/html/webify_svg.pl +share/examples/gnuplot/html/webify.pl +share/examples/gnuplot/hypertext.dem +share/examples/gnuplot/image.dem +share/examples/gnuplot/image2.dem +share/examples/gnuplot/imageNaN.dem +share/examples/gnuplot/immigration.dat +share/examples/gnuplot/iterate.dem +share/examples/gnuplot/jitter.dem +share/examples/gnuplot/kdensity2d.dem +share/examples/gnuplot/key.dem +share/examples/gnuplot/klein.dat +share/examples/gnuplot/layout.dem +share/examples/gnuplot/lcdemo.dat +share/examples/gnuplot/lena-keypoints.bin +share/examples/gnuplot/lena.rgb +share/examples/gnuplot/line.fnc +share/examples/gnuplot/lines_arrows.dem +share/examples/gnuplot/linkedaxes.dem +share/examples/gnuplot/macros.dem +share/examples/gnuplot/Makefile +share/examples/gnuplot/Makefile.am +share/examples/gnuplot/Makefile.am.in +share/examples/gnuplot/Makefile.in +share/examples/gnuplot/margins.dem +share/examples/gnuplot/matrix_every.dem +share/examples/gnuplot/matrix_index.dem +share/examples/gnuplot/mgr.dem +share/examples/gnuplot/molecule.dem +share/examples/gnuplot/moli3.dat +share/examples/gnuplot/monotonic_spline.dem +share/examples/gnuplot/mouselab_1.dem +share/examples/gnuplot/mouselab_2.dem +share/examples/gnuplot/mouselabels.dem +share/examples/gnuplot/mousevariables.dem +share/examples/gnuplot/multiaxis.dem +share/examples/gnuplot/multimsh.dem +share/examples/gnuplot/multipalette.dem +share/examples/gnuplot/multiplt.dem +share/examples/gnuplot/named_var.dem +share/examples/gnuplot/nokey.dem +share/examples/gnuplot/nonlinear1.dem +share/examples/gnuplot/nonlinear2.dem +share/examples/gnuplot/nonlinear3.dem +share/examples/gnuplot/nonlinear4.dem +share/examples/gnuplot/nonlinear5.dem +share/examples/gnuplot/nonlinear6.dem +share/examples/gnuplot/optimize.dat +share/examples/gnuplot/orbital_elements.dat +share/examples/gnuplot/orbits.dem +share/examples/gnuplot/parallel.dem +share/examples/gnuplot/param.dem +share/examples/gnuplot/piecewise.dem +share/examples/gnuplot/plugin/.deps/demo_plugin_so-demo_plugin.Po +share/examples/gnuplot/plugin/demo_plugin_so-demo_plugin.o +share/examples/gnuplot/plugin/demo_plugin.c +share/examples/gnuplot/plugin/demo_plugin.so +share/examples/gnuplot/plugin/gnuplot_plugin.h +share/examples/gnuplot/plugin/Makefile +share/examples/gnuplot/plugin/Makefile.am +share/examples/gnuplot/plugin/Makefile.in +share/examples/gnuplot/plugin/plugin.dem +share/examples/gnuplot/pm3d_lighting.dem +share/examples/gnuplot/pm3d.dem +share/examples/gnuplot/pm3dcolors.dem +share/examples/gnuplot/pm3dgamma.dem +share/examples/gnuplot/pointsize.dem +share/examples/gnuplot/polar.dem +share/examples/gnuplot/poldat.dem +share/examples/gnuplot/prob.dem +share/examples/gnuplot/prob2.dem +share/examples/gnuplot/probably_tux.dem +share/examples/gnuplot/rainbow.dem +share/examples/gnuplot/random-points +share/examples/gnuplot/random.dem +share/examples/gnuplot/rectangle.dem +share/examples/gnuplot/reflect.fnc +share/examples/gnuplot/rgb_variable.dat +share/examples/gnuplot/rgb_variable.dem +share/examples/gnuplot/rgba_lines.dem +share/examples/gnuplot/rgbalpha.dem +share/examples/gnuplot/rotate_labels.dem +share/examples/gnuplot/rugplot.dem +share/examples/gnuplot/running_avg.dem +share/examples/gnuplot/sampling.dem +share/examples/gnuplot/scatter.dem +share/examples/gnuplot/scatter2.bin +share/examples/gnuplot/scatter2.dat +share/examples/gnuplot/silver.dat +share/examples/gnuplot/simple.dem +share/examples/gnuplot/sine.bin +share/examples/gnuplot/singulr.dem +share/examples/gnuplot/smooth_splines.dem +share/examples/gnuplot/smooth.dem +share/examples/gnuplot/solar_params.dem +share/examples/gnuplot/solar_path.dem +share/examples/gnuplot/sound.par +share/examples/gnuplot/sound2.par +share/examples/gnuplot/soundvel.dat +share/examples/gnuplot/special_chars.dem +share/examples/gnuplot/spline.dem +share/examples/gnuplot/srl.dat +share/examples/gnuplot/start.par +share/examples/gnuplot/stat.inc +share/examples/gnuplot/stats.dem +share/examples/gnuplot/steps.dat +share/examples/gnuplot/steps.dem +share/examples/gnuplot/stringvar.dem +share/examples/gnuplot/surface1.dem +share/examples/gnuplot/surface2.dem +share/examples/gnuplot/table.dat +share/examples/gnuplot/textbox.dem +share/examples/gnuplot/textcolor.dem +share/examples/gnuplot/textrotate.dem +share/examples/gnuplot/tics.dem +share/examples/gnuplot/timedat.dat +share/examples/gnuplot/timedat.dem +share/examples/gnuplot/transparent_solids.dem +share/examples/gnuplot/transparent.dem +share/examples/gnuplot/triangle.dat +share/examples/gnuplot/ttics.dem +share/examples/gnuplot/using.bin +share/examples/gnuplot/using.dat +share/examples/gnuplot/using.dem +share/examples/gnuplot/utf8.dem +share/examples/gnuplot/varcolor.dem +share/examples/gnuplot/vector.dem +share/examples/gnuplot/violinplot.dem +share/examples/gnuplot/volatile.dem +share/examples/gnuplot/whale.dat +share/examples/gnuplot/world.cor +share/examples/gnuplot/world.dat +share/examples/gnuplot/world.dem +share/examples/gnuplot/world2.dem +share/examples/gnuplot/zerror.dem +share/gnuplot/5.2/app-defaults/Gnuplot +share/gnuplot/5.2/colors_default.gp +share/gnuplot/5.2/colors_mono.gp +share/gnuplot/5.2/colors_podo.gp +share/gnuplot/5.2/gnuplot.gih +share/gnuplot/5.2/gnuplotrc +share/gnuplot/5.2/gnuplotrc.sample +share/gnuplot/5.2/js/canvasmath.js +share/gnuplot/5.2/js/canvastext.js +share/gnuplot/5.2/js/gnuplot_common.js +share/gnuplot/5.2/js/gnuplot_dashedlines.js +share/gnuplot/5.2/js/gnuplot_mouse.css +share/gnuplot/5.2/js/gnuplot_mouse.js +share/gnuplot/5.2/js/gnuplot_svg.js +share/gnuplot/5.2/js/grid.png +share/gnuplot/5.2/js/help.png +share/gnuplot/5.2/js/nextzoom.png +share/gnuplot/5.2/js/previouszoom.png +share/gnuplot/5.2/js/README +share/gnuplot/5.2/js/return.png +share/gnuplot/5.2/js/textzoom.png +share/gnuplot/5.2/lua/gnuplot-tikz.lua +share/gnuplot/5.2/PostScript/8859-1.ps +share/gnuplot/5.2/PostScript/8859-15.ps +share/gnuplot/5.2/PostScript/8859-2.ps +share/gnuplot/5.2/PostScript/8859-9.ps +share/gnuplot/5.2/PostScript/aglfn.txt +share/gnuplot/5.2/PostScript/cp1250.ps +share/gnuplot/5.2/PostScript/cp1251.ps +share/gnuplot/5.2/PostScript/cp1252.ps +share/gnuplot/5.2/PostScript/cp437.ps +share/gnuplot/5.2/PostScript/cp850.ps +share/gnuplot/5.2/PostScript/cp852.ps +share/gnuplot/5.2/PostScript/koi8r.ps +share/gnuplot/5.2/PostScript/koi8u.ps +share/gnuplot/5.2/PostScript/prologue.ps +share/gnuplot/5.2/PostScript/utf-8.ps +@dir libexec/gnuplot/5.2 +@dir libexec/gnuplot +@dir share/examples/gnuplot/html +@dir share/examples/gnuplot/plugin/.deps +@dir share/examples/gnuplot/plugin +@dir share/examples/gnuplot +@dir share/gnuplot/5.2/app-defaults +@dir share/gnuplot/5.2/js +@dir share/gnuplot/5.2/lua +@dir share/gnuplot/5.2/PostScript +@dir share/gnuplot/5.2 +@dir share/gnuplot