summaryrefslogtreecommitdiff
path: root/graphics/gnuplot/patches
diff options
context:
space:
mode:
authoradam <adam@pkgsrc.org>2018-11-21 17:12:06 +0000
committeradam <adam@pkgsrc.org>2018-11-21 17:12:06 +0000
commita9066511ab2ae2ad540ff3c9b4f0208e81e86248 (patch)
treeffe35ec0d241dc5b34c063de2a8fc209f19b87f7 /graphics/gnuplot/patches
parent2a58dc48e618b12215c4432d1fa23d0591f0d6fc (diff)
downloadpkgsrc-a9066511ab2ae2ad540ff3c9b4f0208e81e86248.tar.gz
gnuplot: updated to 5.2.5
CHANGES IN 5.2.5 NEW "set pm3d depthorder base" sorts pm3d quadrangles by projecting to z=0 NEW "set jitter vertical" displaces y coordinate rather than x coordinate NEW array size can be determined automatically from the initializer CHANGE place titles along x axis in plots with columnstacked histograms CHANGE equivalent slope constraint for mcs splines at both ends of the range CHANGE treat imaginary values plotted from a using spec as UNDEFINED (NaN) CHANGE allow "reset" between plots in a multiplot layout CHANGE Deprecate linux and vgagl terminals (to be removed in 5.3) CHANGE placement of axis and tic labels in 3D projections on to xz or yz plane CHANGE default to ./configure --without-wx-multithreading FIX parametric function plots did not work with logscale x (regression in 5.2.0-4) FIX polar mode "set trange" was assumed to use radians, now it tracks "set angle" FIX clip polar grid lines and ticks to x/y range limits FIX clipping of plot "with lines" when axes are nonlinear (regression from 5.0) FIX clipping of all elements in finanacebars/candlesticks/boxplots FIX clipping of 3D splot "with labels" FIX strange interaction of "noautoscale" with blank data lines FIX alignment of boxed text to center for eps/cairolatex FIX incompatibility of "pm3d depthorder" and rgb color taken from data column FIX aqua terminal font changes in enhanced text mode
Diffstat (limited to 'graphics/gnuplot/patches')
-rw-r--r--graphics/gnuplot/patches/patch-src_libcerf.c17
1 files changed, 17 insertions, 0 deletions
diff --git a/graphics/gnuplot/patches/patch-src_libcerf.c b/graphics/gnuplot/patches/patch-src_libcerf.c
new file mode 100644
index 00000000000..1a8449991f0
--- /dev/null
+++ b/graphics/gnuplot/patches/patch-src_libcerf.c
@@ -0,0 +1,17 @@
+$NetBSD: patch-src_libcerf.c,v 1.1 2018/11/21 17:12:06 adam Exp $
+
+Re-order includes to avoid buidling problems.
+
+--- src/libcerf.c.orig 2018-11-21 16:52:31.000000000 +0000
++++ src/libcerf.c
+@@ -12,9 +12,8 @@
+ #include "syscfg.h"
+ #ifdef HAVE_LIBCERF
+ #include <complex.h> /* C99 _Complex */
+-#include <cerf.h> /* libcerf library header */
+-
+ #include "eval.h"
++#include <cerf.h> /* libcerf library header */
+ #include "stdfn.h" /* for not_a_number */
+ #include "util.h" /* for int_error() */
+ #include "libcerf.h" /* our own prototypes */