Tue Mar 3 15:22:20 2015 UTC ()
(pkgsrc)
  - Two targets added, post-build: and post-install:,
    to build gnuplot.pdf (which was in 4.6.6 PLIST),
    and two dependency for above process. Thanks gdt@ for comment.

(upstream)
  - Update 4.6.6 to 5.0.0
---------------------
		GNUPLOT Version 5.0 Release Notes
		=================================

Gnuplot version 5 contains significant new capabilities and enhancements.
The most recent previous release was 4.6 patchlevel 6 (4.6.6).
Please see the NEWS file for bugfixes and minor changes to version 5.0
applied after feedback on release candidates -rc1, -rc2, and -rc3.

Release Notes date: 31 December 2014

NOTABLE NEW FEATURES
====================

* New plot styles "with parallelaxes" and labeled contours.

* New coordinate system (Degrees, Minutes, Seconds) "set xdata geographic".

* The "fit" command can now handle functions with up to 12 variables, and
  can take into account errors on x as well as errors on dependent variables.
  Final covariance terms are stored in user-accessible variables.
  Fitting options are now controlled by the command "set fit ..." rather than
  by environmental variables.

* The interpretation of columns in a "fit" command depends on new keywords
  "error", "xyerror", "zerror".  In most cases the program can also recognize
  version 4 syntax (no error keyword but last column contains zerror).

* The dot/dash pattern of a line can now be controlled independently
  from other line properties using the keyword "dashtype".

* The default color of individual line types can be changed using
  "set linetype" (introduced in 4.6). In version 5 a default overall color
  sequence can be selected using "set colors {default|classic|podo}".
  The "classic" sequence is red/green/blue/magenta/cyan/yellow as used by
  older gnuplot versions.  The default and podo colors are chosen to be
  more easily distinguished in print and in particular by people with color
  vision problems.

* Text markup now supports bold and italic font settings in addition to
  the subscript, superscript, font size and other options previously
  provided by the "enhanced text" mode.  This mode is now the default.

* Command scripts may place in-line data in a named data block for
  repeated plotting.

* Bit shift operators << and >>

* RGB colors can include an alpha-channel for transparency.
       # ARGBcolor = (Alpha << 24) + (Red << 16) + (Green << 8) + Blue

* Secondary axes (x2, y2) can be locked to the primary axis via a mapping
  function.  In the simplest case this guarantees that the primary and
  secondary axis ranges are identical.  In the general case it allows you
  to define a non-linear axis, something that previously was only possible
  for the special case of log scaling.

* The "import" command attaches a user-defined function name to a
  function provided by an extenal shared object (i.e. a plugin library).

* Previous commands in the history list of an interactive session can be
  reexecuted by number.  For example "history !5" will reexecute the
  command numbered 5 in the list reported by "history".

* Hypertext labels in the interactive terminals including web display
  using the HTML canvas or svg terminals.

Many other additions are described in the "New Features" section of the
documentation.

CHANGES
=======

Gnuplot development assigns very high priority to backward compatibility
with earlier versions.  For example any command script that worked in
version 4.0 is expected to continue to work for all version 4 releases
including the most recent one (4.6.6).  However changes introduced in
version 5 can affect the operation of some version 4 scripts.

A brief summary of potentially incompatible changes is given here.

* Earlier versions of gnuplot used the keyword "linetype" to mean both
  the color and the solid/dot/dash pattern of a line.  Version 5 has
  separate keywords "linecolor" and "dashtype".  You can use these keywords
  directly in a plot command or assign any desired color and a dash pattern
  to a linetype.  The program now provides a default set of 8 linetypes, all solid.
  You can change these or add new linetypes as you please. You do not need
  to change the current terminal or terminal mode in order to use dashed lines.

* The handling of input data containing NaN, Inf, an inconsistent number of
  data columns, or other unexpected content has changed. See documentation
  under "missing" for examples and figures.

* Time coordinates are stored internally as the number of seconds relative
  to the standard unix epoch 1-Jan-1970.  Earlier versions of gnuplot used
  a different epoch internally (1-Jan-2000). This change resolves
  inconsistencies introduced when time in seconds was generated externally.
  The epoch convention used by a particular gnuplot installation can be
  determined using the command `print strftime("%F",0)`.
  Time is now stored to at least millisecond precision.

* The function `timecolumn(N,"timeformat")` now has 2 parameters.
  Because the second parameter is not associated with any particular data axis,
  this allows using the `timecolumn` function to read time data for reasons
  other than specifying the x or y coordinate.  Use of time formats
  to generate axis tick labels is now controlled by "set {xy}tics time" rather
  than by "set {xy}data time".  Thus prior calls to `set xdata time` or
  `set timefmt x` are unnecessary for either input or output.
  These older commands still work, but are deprecated.

* The "reverse" keyword (e.g. "set xrange [*:*] reverse") now affects only
  autoscaling.  It has no effect on explicit ranges.
  "set xrange [0:1] reverse" is _not_ the same as "set xrange [1:0]".

* Options to the "fit" command are now given by "set fit ..." rather than
  by setting environmental variables.  Fit can handle up to MAX_NUM_VAR
  independent variables (currently 12).  Variables other than the first
  two (x, y) have been dissociated from axis names.  This means, for example,
  "set urange [U1:U2]" has no effect on fitting because "u" is not a fit
  variable.  Use the command "set dummy ..." to assign names to fit variables
  3 ... 12.

* The `call` command is implemented by providing a set of variables ARGC,
  ARG0, ..., ARG9. ARG0 holds the name of the script file being executed.
  ARG1 to ARG9 are string variables and thus may either be referenced directly
  or expanded as macros, e.g. @ARG1.  The older convention for referencing
  call parameters as tokens $0 ... $9 is deprecated.

* "unset xrange" (and other axis ranges) restores the default range.

* "unset terminal" restores the original terminal of the current session.


(mef)
diff -r1.95 -r1.96 pkgsrc/graphics/gnuplot/Makefile
diff -r1.18 -r1.19 pkgsrc/graphics/gnuplot/PLIST
diff -r1.28 -r1.29 pkgsrc/graphics/gnuplot/distinfo
diff -r1.6 -r1.7 pkgsrc/graphics/gnuplot/patches/patch-ag
diff -r1.1 -r0 pkgsrc/graphics/gnuplot/patches/patch-docs_gnuplot.texi

cvs diff -r1.95 -r1.96 pkgsrc/graphics/gnuplot/Makefile (expand / switch to unified diff)

--- pkgsrc/graphics/gnuplot/Makefile 2015/03/01 12:58:10 1.95
+++ pkgsrc/graphics/gnuplot/Makefile 2015/03/03 15:22:20 1.96
@@ -1,49 +1,60 @@ @@ -1,49 +1,60 @@
1# $NetBSD: Makefile,v 1.95 2015/03/01 12:58:10 mef Exp $ 1# $NetBSD: Makefile,v 1.96 2015/03/03 15:22:20 mef Exp $
2 2
3DISTNAME= gnuplot-4.6.6 3DISTNAME= gnuplot-5.0.0
4API_VERSION= ${PKGVERSION:C/([0-9])\.([0-9])\.([0-9])/\1.\2/} 4API_VERSION= ${PKGVERSION:C/([0-9])\.([0-9])\.([0-9])/\1.\2/}
5CATEGORIES+= graphics 5CATEGORIES+= graphics
6MASTER_SITES= ${MASTER_SITE_SOURCEFORGE:=gnuplot/} 6MASTER_SITES= ${MASTER_SITE_SOURCEFORGE:=gnuplot/}
7 7
8MAINTAINER= pkgsrc-users@NetBSD.org 8MAINTAINER= pkgsrc-users@NetBSD.org
9HOMEPAGE= http://gnuplot.sourceforge.net/ 9HOMEPAGE= http://gnuplot.sourceforge.net/
10COMMENT= Portable interactive, function plotting utility 10COMMENT= Portable interactive, function plotting utility
11#LICENSE= gnuplot + BSD 11#LICENSE= gnuplot + BSD
12 12
13CONFLICTS+= gnuplot-nox11-[0-9]* 13CONFLICTS+= gnuplot-nox11-[0-9]*
14 14
15PATCHDIR= ${.CURDIR}/../../graphics/gnuplot/patches 15PATCHDIR= ${.CURDIR}/../../graphics/gnuplot/patches
16DISTINFO_FILE= ${.CURDIR}/../../graphics/gnuplot/distinfo 16DISTINFO_FILE= ${.CURDIR}/../../graphics/gnuplot/distinfo
17 17
18USE_LANGUAGES= c 18USE_LANGUAGES= c
19USE_TOOLS+= makeinfo pkg-config gmake 19USE_TOOLS+= makeinfo pkg-config gmake
20GNU_CONFIGURE= yes 20GNU_CONFIGURE= yes
21#CONFIGURE_ARGS+= --enable-history-file 21#CONFIGURE_ARGS+= --enable-history-file
22CONFIGURE_ARGS+= --with-plot=${PREFIX} 22CONFIGURE_ARGS+= --with-plot=${PREFIX}
23CONFIGURE_ARGS+= --without-latex 23CONFIGURE_ARGS+= --without-latex
24CONFIGURE_ARGS+= --without-lisp-files 24CONFIGURE_ARGS+= --without-lisp-files
25CONFIGURE_ARGS+= --without-tutorial 25CONFIGURE_ARGS+= --without-tutorial
26CONFIGURE_ARGS+= ac_cv_prog_EMACS= 26CONFIGURE_ARGS+= ac_cv_prog_EMACS=
27INFO_FILES= yes 27INFO_FILES= yes
28 28
 29# to build doc/gnuplot.pdf
 30BUILD_DEPENDS+= tex-latex-bin-[0-9]*:../../print/tex-latex-bin
 31BUILD_DEPENDS+= tex-ucs-[0-9]*:../../print/tex-ucs
 32
29CONFIGURE_ARGS+= --with-readline=bsd 33CONFIGURE_ARGS+= --with-readline=bsd
30.include "../../mk/readline.buildlink3.mk" 34.include "../../mk/readline.buildlink3.mk"
31.include "../../mk/curses.buildlink3.mk" 35.include "../../mk/curses.buildlink3.mk"
32 36
33PLIST_SUBST= API_VERSION=${API_VERSION} 37PLIST_SUBST+= API_VERSION=${API_VERSION}
34LDFLAGS.SunOS+= -liconv 38LDFLAGS.SunOS+= -liconv
35 39
36# Make this available to patch-ah so the font path can include pkgsrc fonts. 40# Make this available to patch-ah so the font path can include pkgsrc fonts.
37SUBST_CLASSES+= fontpath 41SUBST_CLASSES+= fontpath
38SUBST_STAGE.fontpath= pre-configure 42SUBST_STAGE.fontpath= pre-configure
39SUBST_MESSAGE.fontpath= Fixing font path. 43SUBST_MESSAGE.fontpath= Fixing font path.
40SUBST_FILES.fontpath= src/variable.c 44SUBST_FILES.fontpath= src/variable.c
41SUBST_SED.fontpath= -e 's,@PKGSRC_PREFIX@,"${PREFIX}",' 45SUBST_SED.fontpath= -e 's,@PKGSRC_PREFIX@,"${PREFIX}",'
42 46
 47post-build:
 48 (cd ${WRKSRC}/docs; ${GMAKE} gnuplot.pdf)
 49
 50post-install:
 51 (cd ${WRKSRC}/docs; \
 52 ${INSTALL_DATA} gnuplot.pdf ${DESTDIR}${PREFIX}/share/gnuplot/${API_VERSION})
 53
43.include "options.mk" 54.include "options.mk"
44 55
45.include "../../converters/libiconv/buildlink3.mk" 56.include "../../converters/libiconv/buildlink3.mk"
46.include "../../devel/pango/buildlink3.mk" 57.include "../../devel/pango/buildlink3.mk"
47.include "../../graphics/cairo/buildlink3.mk" 58.include "../../graphics/cairo/buildlink3.mk"
48.include "../../graphics/plotutils/buildlink3.mk" 59.include "../../graphics/plotutils/buildlink3.mk"
49.include "../../mk/bsd.pkg.mk" 60.include "../../mk/bsd.pkg.mk"

cvs diff -r1.18 -r1.19 pkgsrc/graphics/gnuplot/PLIST (expand / switch to unified diff)

--- pkgsrc/graphics/gnuplot/PLIST 2015/03/01 12:58:10 1.18
+++ pkgsrc/graphics/gnuplot/PLIST 2015/03/03 15:22:20 1.19
@@ -1,42 +1,45 @@ @@ -1,42 +1,45 @@
1@comment $NetBSD: PLIST,v 1.18 2015/03/01 12:58:10 mef Exp $ 1@comment $NetBSD: PLIST,v 1.19 2015/03/03 15:22:20 mef Exp $
2bin/gnuplot 2bin/gnuplot
3${PLIST.qt4}libexec/gnuplot/${API_VERSION}/gnuplot_qt 3${PLIST.qt4}libexec/gnuplot/${API_VERSION}/gnuplot_qt
4${PLIST.x11}libexec/gnuplot/${API_VERSION}/gnuplot_x11 4${PLIST.x11}libexec/gnuplot/${API_VERSION}/gnuplot_x11
5man/man1/gnuplot.1 5man/man1/gnuplot.1
 6man/man1/gnuplot-ja.1
6share/gnuplot/${API_VERSION}/PostScript/8859-1.ps 7share/gnuplot/${API_VERSION}/PostScript/8859-1.ps
7share/gnuplot/${API_VERSION}/PostScript/8859-15.ps 8share/gnuplot/${API_VERSION}/PostScript/8859-15.ps
8share/gnuplot/${API_VERSION}/PostScript/8859-2.ps 9share/gnuplot/${API_VERSION}/PostScript/8859-2.ps
9share/gnuplot/${API_VERSION}/PostScript/8859-9.ps 10share/gnuplot/${API_VERSION}/PostScript/8859-9.ps
10share/gnuplot/${API_VERSION}/PostScript/aglfn.txt 11share/gnuplot/${API_VERSION}/PostScript/aglfn.txt
11share/gnuplot/${API_VERSION}/PostScript/cp1250.ps 12share/gnuplot/${API_VERSION}/PostScript/cp1250.ps
12share/gnuplot/${API_VERSION}/PostScript/cp1251.ps 13share/gnuplot/${API_VERSION}/PostScript/cp1251.ps
 14share/gnuplot/${API_VERSION}/PostScript/cp1252.ps
13share/gnuplot/${API_VERSION}/PostScript/cp437.ps 15share/gnuplot/${API_VERSION}/PostScript/cp437.ps
14share/gnuplot/${API_VERSION}/PostScript/cp850.ps 16share/gnuplot/${API_VERSION}/PostScript/cp850.ps
15share/gnuplot/${API_VERSION}/PostScript/cp852.ps 17share/gnuplot/${API_VERSION}/PostScript/cp852.ps
16share/gnuplot/${API_VERSION}/PostScript/koi8r.ps 18share/gnuplot/${API_VERSION}/PostScript/koi8r.ps
17share/gnuplot/${API_VERSION}/PostScript/koi8u.ps 19share/gnuplot/${API_VERSION}/PostScript/koi8u.ps
18share/gnuplot/${API_VERSION}/PostScript/prologue.ps 20share/gnuplot/${API_VERSION}/PostScript/prologue.ps
19share/gnuplot/${API_VERSION}/PostScript/utf-8.ps 21share/gnuplot/${API_VERSION}/PostScript/utf-8.ps
20${PLIST.x11}share/gnuplot/${API_VERSION}/app-defaults/Gnuplot 22${PLIST.x11}share/gnuplot/${API_VERSION}/app-defaults/Gnuplot
21share/gnuplot/${API_VERSION}/colors_default.gp 23share/gnuplot/${API_VERSION}/colors_default.gp
22share/gnuplot/${API_VERSION}/colors_mono.gp 24share/gnuplot/${API_VERSION}/colors_mono.gp
23share/gnuplot/${API_VERSION}/colors_podo.gp 25share/gnuplot/${API_VERSION}/colors_podo.gp
24share/gnuplot/${API_VERSION}/gnuplot.gih 26share/gnuplot/${API_VERSION}/gnuplot.gih
25share/gnuplot/${API_VERSION}/gnuplot.pdf 27share/gnuplot/${API_VERSION}/gnuplot.pdf
26share/gnuplot/${API_VERSION}/gnuplotrc 28share/gnuplot/${API_VERSION}/gnuplotrc
27share/gnuplot/${API_VERSION}/js/README 29share/gnuplot/${API_VERSION}/js/README
28share/gnuplot/${API_VERSION}/js/canvasmath.js 30share/gnuplot/${API_VERSION}/js/canvasmath.js
29share/gnuplot/${API_VERSION}/js/canvastext.js 31share/gnuplot/${API_VERSION}/js/canvastext.js
30share/gnuplot/${API_VERSION}/js/gnuplot_common.js 32share/gnuplot/${API_VERSION}/js/gnuplot_common.js
31share/gnuplot/${API_VERSION}/js/gnuplot_dashedlines.js 33share/gnuplot/${API_VERSION}/js/gnuplot_dashedlines.js
32share/gnuplot/${API_VERSION}/js/gnuplot_mouse.css 34share/gnuplot/${API_VERSION}/js/gnuplot_mouse.css
33share/gnuplot/${API_VERSION}/js/gnuplot_mouse.js 35share/gnuplot/${API_VERSION}/js/gnuplot_mouse.js
34share/gnuplot/${API_VERSION}/js/gnuplot_svg.js 36share/gnuplot/${API_VERSION}/js/gnuplot_svg.js
35share/gnuplot/${API_VERSION}/js/grid.png 37share/gnuplot/${API_VERSION}/js/grid.png
36share/gnuplot/${API_VERSION}/js/help.png 38share/gnuplot/${API_VERSION}/js/help.png
37share/gnuplot/${API_VERSION}/js/nextzoom.png 39share/gnuplot/${API_VERSION}/js/nextzoom.png
38share/gnuplot/${API_VERSION}/js/previouszoom.png 40share/gnuplot/${API_VERSION}/js/previouszoom.png
 41share/gnuplot/${API_VERSION}/js/return.png
39share/gnuplot/${API_VERSION}/js/textzoom.png 42share/gnuplot/${API_VERSION}/js/textzoom.png
40share/gnuplot/${API_VERSION}/lua/gnuplot-tikz.lua 43share/gnuplot/${API_VERSION}/lua/gnuplot-tikz.lua
41${PLIST.qt4}share/gnuplot/${API_VERSION}/qt/qtgnuplot_fr.qm 44${PLIST.qt4}share/gnuplot/${API_VERSION}/qt/qtgnuplot_fr.qm
42${PLIST.qt4}share/gnuplot/${API_VERSION}/qt/qtgnuplot_ja.qm 45${PLIST.qt4}share/gnuplot/${API_VERSION}/qt/qtgnuplot_ja.qm

cvs diff -r1.28 -r1.29 pkgsrc/graphics/gnuplot/distinfo (expand / switch to unified diff)

--- pkgsrc/graphics/gnuplot/distinfo 2014/11/18 22:19:47 1.28
+++ pkgsrc/graphics/gnuplot/distinfo 2015/03/03 15:22:20 1.29
@@ -1,13 +1,12 @@ @@ -1,13 +1,12 @@
1$NetBSD: distinfo,v 1.28 2014/11/18 22:19:47 adam Exp $ 1$NetBSD: distinfo,v 1.29 2015/03/03 15:22:20 mef Exp $
2 2
3SHA1 (gnuplot-4.6.6.tar.gz) = 012bd22b7be32da186b6bb015c0c6d876926c90b 3SHA1 (gnuplot-5.0.0.tar.gz) = ca5163e3cb466b4aeb878f1173b0fe624367f08a
4RMD160 (gnuplot-4.6.6.tar.gz) = eb1185c94d93d19b272311c71d93ba3402eea030 4RMD160 (gnuplot-5.0.0.tar.gz) = e91ae15d1b50110d323450be451db5d180917f4d
5Size (gnuplot-4.6.6.tar.gz) = 5059214 bytes 5Size (gnuplot-5.0.0.tar.gz) = 4955900 bytes
6SHA1 (patch-aa) = fa5981422c83d1467b0df8a7c36ce7b2439855f2 6SHA1 (patch-aa) = fa5981422c83d1467b0df8a7c36ce7b2439855f2
7SHA1 (patch-ac) = ba7d48926faca78399fe10f44020364a244f87e0 7SHA1 (patch-ac) = ba7d48926faca78399fe10f44020364a244f87e0
8SHA1 (patch-ad) = 5165374c6e8275f2f030659daa45051851e98413 8SHA1 (patch-ad) = 5165374c6e8275f2f030659daa45051851e98413
9SHA1 (patch-ae) = ce2a89ebcdcae1b1945563b48e6ebb6974d3a048 9SHA1 (patch-ae) = ce2a89ebcdcae1b1945563b48e6ebb6974d3a048
10SHA1 (patch-af) = e5672a05f88d0ba3c1471b379dd47cd1b274f8b1 10SHA1 (patch-af) = e5672a05f88d0ba3c1471b379dd47cd1b274f8b1
11SHA1 (patch-ag) = 8a27282ee0e9add193e3437e2f88dac149e40068 11SHA1 (patch-ag) = 92a5d18f47f44e799e5f7e24bb232024f2f8d928
12SHA1 (patch-ah) = f768abaddc7b326648e36f82b3edd2c9bead8b11 12SHA1 (patch-ah) = f768abaddc7b326648e36f82b3edd2c9bead8b11
13SHA1 (patch-docs_gnuplot.texi) = fd9e1eccf64198336e9ba80997b022612101ac77 

cvs diff -r1.6 -r1.7 pkgsrc/graphics/gnuplot/patches/Attic/patch-ag (expand / switch to unified diff)

--- pkgsrc/graphics/gnuplot/patches/Attic/patch-ag 2012/11/07 19:22:05 1.6
+++ pkgsrc/graphics/gnuplot/patches/Attic/patch-ag 2015/03/03 15:22:20 1.7
@@ -1,30 +1,57 @@ @@ -1,30 +1,57 @@
1$NetBSD: patch-ag,v 1.6 2012/11/07 19:22:05 he Exp $ 1$NetBSD: patch-ag,v 1.7 2015/03/03 15:22:20 mef Exp $
2 2
3NetBSD editline keeps header files in "readline", not "editline". 3NetBSD editline keeps header files in "readline", not "editline".
4Same applies to DragonFly. 4Same applies to DragonFly.
5 5
6Also get rid of a non-portable "test ... ==" instance. 6Also get rid of a non-portable "test ... ==" instance.
7 7
8--- configure.orig 2012-09-26 23:06:30.000000000 +0000 8--- configure.orig 2015-01-02 04:27:52.000000000 +0900
9+++ configure 9+++ configure 2015-03-01 21:42:48.000000000 +0900
10@@ -9197,9 +9197,9 @@ fi 10@@ -8861,7 +8861,7 @@ $as_echo "yes" >&6; }
 11
 12 # Check whether --with-aquaterm was given.
 13 if test "${with_aquaterm+set}" = set; then :
 14- withval=$with_aquaterm; if test "$withval" == yes; then
 15+ withval=$with_aquaterm; if test "$withval" = yes; then
 16
 17 { $as_echo "$as_me:${as_lineno-$LINENO}: checking for Aquaterm framework presence" >&5
 18 $as_echo_n "checking for Aquaterm framework presence... " >&6; }
 19@@ -10164,9 +10164,9 @@ fi
11  20
12 $as_echo "#define HAVE_LIBEDITLINE 1" >>confdefs.h 21 $as_echo "#define HAVE_LIBEDITLINE 1" >>confdefs.h
13  22
14- for ac_header in editline/readline.h 23- for ac_header in editline/readline.h
15+ for ac_header in readline/readline.h 24+ for ac_header in readline/readline.h
16 do : 25 do :
17- ac_fn_c_check_header_mongrel "$LINENO" "editline/readline.h" "ac_cv_header_editline_readline_h" "$ac_includes_default" 26- ac_fn_c_check_header_mongrel "$LINENO" "editline/readline.h" "ac_cv_header_editline_readline_h" "$ac_includes_default"
18+ ac_fn_c_check_header_mongrel "$LINENO" "readline/readline.h" "ac_cv_header_editline_readline_h" "$ac_includes_default" 27+ ac_fn_c_check_header_mongrel "$LINENO" "readline/readline.h" "ac_cv_header_editline_readline_h" "$ac_includes_default"
19 if test "x$ac_cv_header_editline_readline_h" = xyes; then : 28 if test "x$ac_cv_header_editline_readline_h" = xyes; then :
20 cat >>confdefs.h <<_ACEOF 29 cat >>confdefs.h <<_ACEOF
21 #define HAVE_EDITLINE_READLINE_H 1 30 #define HAVE_EDITLINE_READLINE_H 1
22@@ -15340,7 +15340,7 @@ $as_echo " tek40xx, tek410x, texdraw, 31@@ -16239,7 +16241,7 @@ $as_echo " tek40xx, tek410x, texdraw,
23 { $as_echo "$as_me:${as_lineno-$LINENO}: result: " >&5 32 { $as_echo "$as_me:${as_lineno-$LINENO}: result: " >&5
24 $as_echo "" >&6; } 33 $as_echo "" >&6; }
25  34
26-if test "$with_bitmap_terminals" == yes; then 35-if test "$with_bitmap_terminals" == yes; then
27+if test "$with_bitmap_terminals" = yes; then 36+if test "$with_bitmap_terminals" = yes; then
28 { $as_echo "$as_me:${as_lineno-$LINENO}: result: dot-matrix terminals: yes ( --without-bitmap-terminals to disable)" >&5 37 { $as_echo "$as_me:${as_lineno-$LINENO}: result: dot-matrix terminals: yes ( --without-bitmap-terminals to disable)" >&5
29 $as_echo " dot-matrix terminals: yes ( --without-bitmap-terminals to disable)" >&6; } 38 $as_echo " dot-matrix terminals: yes ( --without-bitmap-terminals to disable)" >&6; }
30 else 39 else
 40@@ -16327,7 +16329,7 @@ else
 41 $as_echo " ggi terminal: no (use --with-ggi to enable, requires libggi)" >&6; }
 42 fi
 43
 44-if test "$with_gpic" == yes; then
 45+if test "$with_gpic" = yes; then
 46 { $as_echo "$as_me:${as_lineno-$LINENO}: result: gpic terminal: yes" >&5
 47 $as_echo " gpic terminal: yes" >&6; }
 48 else
 49@@ -16335,7 +16337,7 @@ else
 50 $as_echo " gpic terminal: no (use --with-gpic to enable)" >&6; }
 51 fi
 52
 53-if test "$with_mif" == yes; then
 54+if test "$with_mif" = yes; then
 55 { $as_echo "$as_me:${as_lineno-$LINENO}: result: mif terminal: yes" >&5
 56 $as_echo " mif terminal: yes" >&6; }
 57 else

File Deleted: pkgsrc/graphics/gnuplot/patches/Attic/patch-docs_gnuplot.texi