Update plplot to 5.15.0 which unbreak the build with upcoming cmake 3.15.1.

This version required a newer cmake version than we have in the tree.
The diff below should be clear. I added CMakeLists.txt to examples.
In my opinion it is worth offering this.

Tested on amd64 with cmake 3.15.x.

Index: Makefile
===================================================================
RCS file: /cvs/ports/math/plplot/Makefile,v
retrieving revision 1.66
diff -u -p -u -p -r1.66 Makefile
--- Makefile    3 Aug 2019 19:36:04 -0000       1.66
+++ Makefile    6 Aug 2019 18:32:52 -0000
@@ -6,19 +6,18 @@ COMMENT-main =        advanced 2D and 3D scient
 COMMENT-c++ =  C++ interface to plplot
 COMMENT-fortran =      Fortran 77 interface to plplot
 
-VERSION =      5.13.0
+VERSION =      5.15.0
 DISTNAME =     plplot-${VERSION}
 SHARED_LIBS =  csirocsa        4.0     \
                csironn         0.0     \
-               plplot          15.0    \
-               plplotcxx       13.0    \
-               plplotfortran   0.0     \
+               plplot          16.0    \
+               plplotcxx       14.0    \
+               plplotfortran   1.0     \
                qsastime        0.0
 
 PKGNAME-main = ${DISTNAME}
 PKGNAME-c++ =  plplot-c++-${VERSION}
 PKGNAME-fortran =      plplot-fortran-${VERSION}
-REVISION =     4
 
 CATEGORIES =   math graphics
 
@@ -30,8 +29,8 @@ PERMIT_PACKAGE =              Yes
 MASTER_SITES = ${MASTER_SITE_SOURCEFORGE:=plplot/}
 
 COMPILER =             base-clang ports-gcc base-gcc
-MODULES =      fortran
-MODFORTRAN_COMPILER = gfortran
+MODULES =              fortran
+MODFORTRAN_COMPILER =  gfortran
 
 BUILD_DEPENDS =        print/ghostscript/gnu-fonts \
                ${MODFORTRAN_BUILD_DEPENDS}
@@ -51,7 +50,6 @@ CONFIGURE_ARGS =      -D ENABLE_ada=OFF \
                        -D ENABLE_lua=OFF \
                        -D ENABLE_ocaml=OFF \
                        -D ENABLE_octave=OFF \
-                       -D ENABLE_pdl=OFF \
                        -D ENABLE_python=OFF \
                        -D ENABLE_qt=OFF \
                        -D ENABLE_pyqt4=OFF \
Index: distinfo
===================================================================
RCS file: /cvs/ports/math/plplot/distinfo,v
retrieving revision 1.6
diff -u -p -u -p -r1.6 distinfo
--- distinfo    4 Nov 2017 10:28:21 -0000       1.6
+++ distinfo    6 Aug 2019 18:32:52 -0000
@@ -1,2 +1,2 @@
-SHA256 (plplot-5.13.0.tar.gz) = 7Da77osD2dHJj4/Yj33DQVVg5Vm1PrGqmRwtz2GyXSs=
-SIZE (plplot-5.13.0.tar.gz) = 16269842
+SHA256 (plplot-5.15.0.tar.gz) = uS3k2PYmqbIMhPyU9Papl27dduM/serkT2gEvcxijHs=
+SIZE (plplot-5.15.0.tar.gz) = 15380293
Index: patches/patch-cmake_modules_csiro_cmake
===================================================================
RCS file: /cvs/ports/math/plplot/patches/patch-cmake_modules_csiro_cmake,v
retrieving revision 1.2
diff -u -p -u -p -r1.2 patch-cmake_modules_csiro_cmake
--- patches/patch-cmake_modules_csiro_cmake     4 Nov 2017 10:28:21 -0000       
1.2
+++ patches/patch-cmake_modules_csiro_cmake     6 Aug 2019 18:32:52 -0000
@@ -2,18 +2,18 @@ $OpenBSD: patch-cmake_modules_csiro_cmak
 Index: cmake/modules/csiro.cmake
 --- cmake/modules/csiro.cmake.orig
 +++ cmake/modules/csiro.cmake
-@@ -31,11 +31,11 @@ if(PL_HAVE_QHULL OR WITH_CSA)
+@@ -30,11 +30,11 @@ if(PL_HAVE_QHULL OR WITH_CSA)
+   if(CMAKE_SYSTEM_PROCESSOR MATCHES "i[0-9]86" AND NOT CMAKE_C_COMPILER 
MATCHES "gcc")
      set(NAN_CFLAGS "${NAN_CFLAGS} -mieee-fp")
-   else(CMAKE_SYSTEM_PROCESSOR MATCHES "i[0-9]86")
-     if(CMAKE_SYSTEM_PROCESSOR MATCHES "alpha.*")
--      if(CMAKE_C_COMPILER MATCHES "gcc")
-+      if(CMAKE_COMPILER_IS_GNUCC)
-         set(NAN_CFLAGS "${NAN_CFLAGS} -mieee")
--      else(CMAKE_C_COMPILER MATCHES "gcc")
-+      else(CMAKE_COMPILER_IS_GNUCC)
-         set(NAN_CFLAGS "${NAN_CFLAGS} -ieee")
--      endif(CMAKE_C_COMPILER MATCHES "gcc")
-+      endif(CMAKE_COMPILER_IS_GNUCC)
-     endif(CMAKE_SYSTEM_PROCESSOR MATCHES "alpha.*")
-   endif(CMAKE_SYSTEM_PROCESSOR MATCHES "i[0-9]86")
+   elseif(CMAKE_SYSTEM_PROCESSOR MATCHES "alpha.*")
+-    if(CMAKE_C_COMPILER MATCHES "gcc")
++    if(CMAKE_COMPILER_IS_GNUCC)
+       set(NAN_CFLAGS "${NAN_CFLAGS} -mieee")
+-    else(CMAKE_C_COMPILER MATCHES "gcc")
++    else(CMAKE_COMPILER_IS_GNUCC)
+       set(NAN_CFLAGS "${NAN_CFLAGS} -ieee")
+-    endif(CMAKE_C_COMPILER MATCHES "gcc")
++    endif(CMAKE_COMPILER_IS_GNUCC)
+   endif(CMAKE_SYSTEM_PROCESSOR MATCHES "i[0-9]86" AND NOT CMAKE_C_COMPILER 
MATCHES "gcc")
    if(NOT DEFINED NaNAwareCCompiler)
+     message(STATUS "Check for NaN awareness in C compiler")
Index: patches/patch-examples_CMakeLists_txt
===================================================================
RCS file: /cvs/ports/math/plplot/patches/patch-examples_CMakeLists_txt,v
retrieving revision 1.2
diff -u -p -u -p -r1.2 patch-examples_CMakeLists_txt
--- patches/patch-examples_CMakeLists_txt       4 Nov 2017 10:28:21 -0000       
1.2
+++ patches/patch-examples_CMakeLists_txt       6 Aug 2019 18:32:52 -0000
@@ -2,7 +2,7 @@ $OpenBSD: patch-examples_CMakeLists_txt,
 Index: examples/CMakeLists.txt
 --- examples/CMakeLists.txt.orig
 +++ examples/CMakeLists.txt
-@@ -213,7 +213,7 @@ if(CORE_BUILD)
+@@ -225,7 +225,7 @@ if(CORE_BUILD)
      )
  
    install(FILES ${CMAKE_CURRENT_BINARY_DIR}/Makefile.examples
@@ -11,7 +11,7 @@ Index: examples/CMakeLists.txt
      RENAME Makefile
      )
  
-@@ -291,7 +291,7 @@ if(CORE_BUILD)
+@@ -393,7 +393,7 @@ if(CORE_BUILD)
      FILES
      ${CMAKE_CURRENT_SOURCE_DIR}/Chloe.pgm
      ${CMAKE_CURRENT_SOURCE_DIR}/README.Chloe
@@ -20,7 +20,7 @@ Index: examples/CMakeLists.txt
      )
  
  endif(CORE_BUILD)
-@@ -314,7 +314,7 @@ if(CORE_BUILD)
+@@ -409,7 +409,7 @@ if(CORE_BUILD)
    # Start configuration/installation of CMake-based build system for
    # installed examples.
    install(FILES ${CMAKE_CURRENT_SOURCE_DIR}/CMakeLists.txt
@@ -29,7 +29,7 @@ Index: examples/CMakeLists.txt
      )
  
    # language_info_LIST contains information about the languages used in
-@@ -351,33 +351,33 @@ if(CORE_BUILD)
+@@ -445,33 +445,33 @@ if(CORE_BUILD)
  
    install(FILES
      ${CMAKE_CURRENT_BINARY_DIR}/plplot_configure.cmake_installed_examples
@@ -68,7 +68,7 @@ Index: examples/CMakeLists.txt
        )
    endif(ANY_QT_DEVICE)
  
-@@ -424,7 +424,7 @@ if(CORE_BUILD)
+@@ -518,7 +518,7 @@ if(CORE_BUILD)
        string(REGEX REPLACE "^.*:(.*)$" "\\1" LANG_SUPPORT_FILE 
${LANG_SUPPORT_info})
        install(FILES
        
${CMAKE_SOURCE_DIR}/cmake/modules/${LANG_SUPPORT_DIR}/${LANG_SUPPORT_FILE}
Index: patches/patch-examples_c++_CMakeLists_txt
===================================================================
RCS file: /cvs/ports/math/plplot/patches/patch-examples_c++_CMakeLists_txt,v
retrieving revision 1.2
diff -u -p -u -p -r1.2 patch-examples_c++_CMakeLists_txt
--- patches/patch-examples_c++_CMakeLists_txt   4 Nov 2017 10:28:21 -0000       
1.2
+++ patches/patch-examples_c++_CMakeLists_txt   6 Aug 2019 18:32:52 -0000
@@ -2,7 +2,7 @@ $OpenBSD: patch-examples_c++_CMakeLists_
 Index: examples/c++/CMakeLists.txt
 --- examples/c++/CMakeLists.txt.orig
 +++ examples/c++/CMakeLists.txt
-@@ -76,12 +76,12 @@ if(CORE_BUILD)
+@@ -74,12 +74,12 @@ if(CORE_BUILD)
      set(qt_INSTALLED_FILES qt_PlotWindow.cpp qt_PlotWindow.h qt_example.cpp 
README.qt_example)
    endif(PLD_extqt)
  
@@ -17,7 +17,7 @@ Index: examples/c++/CMakeLists.txt
      )
  endif(CORE_BUILD)
  
-@@ -271,7 +271,7 @@ if(CORE_BUILD)
+@@ -270,7 +270,7 @@ if(CORE_BUILD)
      )
  
    install(FILES ${CMAKE_CURRENT_BINARY_DIR}/Makefile.examples
Index: patches/patch-examples_c_CMakeLists_txt
===================================================================
RCS file: /cvs/ports/math/plplot/patches/patch-examples_c_CMakeLists_txt,v
retrieving revision 1.2
diff -u -p -u -p -r1.2 patch-examples_c_CMakeLists_txt
--- patches/patch-examples_c_CMakeLists_txt     4 Nov 2017 10:28:21 -0000       
1.2
+++ patches/patch-examples_c_CMakeLists_txt     6 Aug 2019 18:32:52 -0000
@@ -2,7 +2,7 @@ $OpenBSD: patch-examples_c_CMakeLists_tx
 Index: examples/c/CMakeLists.txt
 --- examples/c/CMakeLists.txt.orig
 +++ examples/c/CMakeLists.txt
-@@ -86,11 +86,11 @@ if(CORE_BUILD)
+@@ -84,11 +84,11 @@ if(CORE_BUILD)
    endif(PLD_xcairo OR PLD_extcairo)
  
    install(FILES ${c_SRCS} ${extXdrawable_SRC} ${extcairo_SRC} ${cairo_DOCS}
@@ -16,7 +16,7 @@ Index: examples/c/CMakeLists.txt
      )
  
    set(CC "${CMAKE_C_COMPILER} ${CMAKE_C_COMPILER_ARG1} ${CMAKE_C_FLAGS}")
-@@ -210,7 +210,7 @@ if(CORE_BUILD)
+@@ -209,7 +209,7 @@ if(CORE_BUILD)
      )
  
    install(FILES ${CMAKE_CURRENT_BINARY_DIR}/Makefile.examples
Index: patches/patch-examples_fortran_CMakeLists_txt
===================================================================
RCS file: /cvs/ports/math/plplot/patches/patch-examples_fortran_CMakeLists_txt,v
retrieving revision 1.1
diff -u -p -u -p -r1.1 patch-examples_fortran_CMakeLists_txt
--- patches/patch-examples_fortran_CMakeLists_txt       4 Nov 2017 10:28:21 
-0000       1.1
+++ patches/patch-examples_fortran_CMakeLists_txt       6 Aug 2019 18:32:52 
-0000
@@ -3,8 +3,8 @@ $OpenBSD: patch-examples_fortran_CMakeLi
 Index: examples/fortran/CMakeLists.txt
 --- examples/fortran/CMakeLists.txt.orig
 +++ examples/fortran/CMakeLists.txt
-@@ -117,7 +117,7 @@ if(CORE_BUILD)
-     )
+@@ -123,7 +123,7 @@ if(CORE_BUILD)
+     PROPERTIES GENERATED ON)
  
    install(FILES ${fortran_SRCS} README_precision
 -    DESTINATION ${DATA_DIR}/examples/fortran
@@ -12,7 +12,7 @@ Index: examples/fortran/CMakeLists.txt
      )
  
    set(FC "${CMAKE_Fortran_COMPILER} ${CMAKE_Fortran_COMPILER_ARG1} 
${CMAKE_Fortran_FLAGS}")
-@@ -127,16 +127,16 @@ if(CORE_BUILD)
+@@ -133,16 +133,16 @@ if(CORE_BUILD)
      )
  
    install(FILES ${CMAKE_CURRENT_BINARY_DIR}/Makefile.examples
Index: patches/patch-plplot_test_CMakeLists_txt
===================================================================
RCS file: /cvs/ports/math/plplot/patches/patch-plplot_test_CMakeLists_txt,v
retrieving revision 1.1
diff -u -p -u -p -r1.1 patch-plplot_test_CMakeLists_txt
--- patches/patch-plplot_test_CMakeLists_txt    4 Nov 2017 10:28:21 -0000       
1.1
+++ patches/patch-plplot_test_CMakeLists_txt    6 Aug 2019 18:32:52 -0000
@@ -3,45 +3,57 @@ $OpenBSD: patch-plplot_test_CMakeLists_t
 Index: plplot_test/CMakeLists.txt
 --- plplot_test/CMakeLists.txt.orig
 +++ plplot_test/CMakeLists.txt
-@@ -492,14 +492,14 @@ if(SH_EXECUTABLE)
-   foreach(SCRIPT ${SCRIPTS})
-     install(
-       FILES ${CMAKE_CURRENT_BINARY_DIR}/${SCRIPT}
--      DESTINATION ${DATA_DIR}/examples
-+      DESTINATION ${EXAMPLE_DIR}
-       PERMISSIONS ${PERM_SCRIPTS}
-       )
-   endforeach(SCRIPT ${SCRIPTS})
+@@ -77,7 +77,7 @@ if(SH_EXECUTABLE)
+     endif(ENABLE_tcl)
+ 
+     # Part 2. Install this CMakeLists.txt file.
+-    install(FILES CMakeLists.txt DESTINATION ${DATA_DIR}/examples/plplot_test)
++    install(FILES CMakeLists.txt DESTINATION ${EXAMPLE_DIR}/plplot_test)
  
-   install(
-     FILES ${CMAKE_CURRENT_BINARY_DIR}/plplot-test.sh_install
--    DESTINATION ${DATA_DIR}/examples
-+    DESTINATION ${EXAMPLE_DIR}
-     PERMISSIONS ${PERM_SCRIPTS}
-     RENAME plplot-test.sh
-     )
-@@ -507,21 +507,21 @@ if(SH_EXECUTABLE)
-   if(ENABLE_tcl)
+     # Part 3. Configure AND install PLplot test files.
+     set(PERM_SCRIPTS
+@@ -99,7 +99,7 @@ if(SH_EXECUTABLE)
+       )
      install(
-       FILES ${CMAKE_CURRENT_BINARY_DIR}/test_tcl.sh_install
+       FILES ${CMAKE_CURRENT_BINARY_DIR}/plplot-test.sh_install
 -      DESTINATION ${DATA_DIR}/examples
 +      DESTINATION ${EXAMPLE_DIR}
        PERMISSIONS ${PERM_SCRIPTS}
-       RENAME test_tcl.sh
+       RENAME plplot-test.sh
+       )
+@@ -114,7 +114,7 @@ if(SH_EXECUTABLE)
        )
-   endif(ENABLE_tcl)
-   install(
-     FILES ${CMAKE_CURRENT_BINARY_DIR}/plplot-test-interactive.sh_install
--    DESTINATION ${DATA_DIR}/examples
-+    DESTINATION ${EXAMPLE_DIR}
-     PERMISSIONS ${PERM_SCRIPTS}
-     RENAME plplot-test-interactive.sh
-     )
-   if(PLD_plmeta)
      install(
-       FILES ${CMAKE_CURRENT_BINARY_DIR}/test_plrender.sh_install
+       FILES ${CMAKE_CURRENT_BINARY_DIR}/plplot-test-interactive.sh_install
 -      DESTINATION ${DATA_DIR}/examples
 +      DESTINATION ${EXAMPLE_DIR}
        PERMISSIONS ${PERM_SCRIPTS}
-       RENAME test_plrender.sh
+       RENAME plplot-test-interactive.sh
        )
+@@ -244,7 +244,7 @@ if(SH_EXECUTABLE)
+       )
+       install(
+       FILES ${CMAKE_CURRENT_BINARY_DIR}/test_tcl.sh_install
+-      DESTINATION ${DATA_DIR}/examples
++      DESTINATION ${EXAMPLE_DIR}
+       PERMISSIONS ${PERM_SCRIPTS}
+       RENAME test_tcl.sh
+       )
+@@ -309,7 +309,7 @@ if(SH_EXECUTABLE)
+       )
+       install(
+       FILES ${CMAKE_CURRENT_BINARY_DIR}/test_plrender.sh_install
+-      DESTINATION ${DATA_DIR}/examples
++      DESTINATION ${EXAMPLE_DIR}
+       PERMISSIONS ${PERM_SCRIPTS}
+       RENAME test_plrender.sh
+       )
+@@ -328,7 +328,7 @@ if(SH_EXECUTABLE)
+     foreach(SCRIPT ${SCRIPTS})
+       install(
+       FILES ${CMAKE_CURRENT_BINARY_DIR}/${SCRIPT}
+-      DESTINATION ${DATA_DIR}/examples
++      DESTINATION ${EXAMPLE_DIR}
+       PERMISSIONS ${PERM_SCRIPTS}
+       )
+     endforeach(SCRIPT ${SCRIPTS})
Index: pkg/PLIST-main
===================================================================
RCS file: /cvs/ports/math/plplot/pkg/PLIST-main,v
retrieving revision 1.6
diff -u -p -u -p -r1.6 PLIST-main
--- pkg/PLIST-main      3 Aug 2019 19:36:04 -0000       1.6
+++ pkg/PLIST-main      6 Aug 2019 18:32:52 -0000
@@ -2,8 +2,12 @@
 @pkgpath math/plplot
 @bin bin/pltek
 include/plplot/
+include/plplot/csa.h
+include/plplot/csadll.h
 include/plplot/disptab.h
 include/plplot/drivers.h
+include/plplot/nn.h
+include/plplot/nndll.h
 include/plplot/pdf.h
 include/plplot/plConfig.h
 include/plplot/plDevs.h
@@ -18,9 +22,38 @@ include/plplot/plxwd.h
 include/plplot/qsastime.h
 include/plplot/qsastimedll.h
 lib/cmake/plplot/
+lib/cmake/plplot/export_cairo${MODCMAKE_BUILD_SUFFIX}
+lib/cmake/plplot/export_cairo.cmake
+lib/cmake/plplot/export_csirocsa${MODCMAKE_BUILD_SUFFIX}
+lib/cmake/plplot/export_csirocsa.cmake
+lib/cmake/plplot/export_csironn${MODCMAKE_BUILD_SUFFIX}
+lib/cmake/plplot/export_csironn.cmake
+lib/cmake/plplot/export_mem${MODCMAKE_BUILD_SUFFIX}
+lib/cmake/plplot/export_mem.cmake
+lib/cmake/plplot/export_null${MODCMAKE_BUILD_SUFFIX}
+lib/cmake/plplot/export_null.cmake
+lib/cmake/plplot/export_plfortrandemolib${MODCMAKE_BUILD_SUFFIX}
+lib/cmake/plplot/export_plfortrandemolib.cmake
 lib/cmake/plplot/export_plplot${MODCMAKE_BUILD_SUFFIX}
 lib/cmake/plplot/export_plplot.cmake
+lib/cmake/plplot/export_plplotcxx${MODCMAKE_BUILD_SUFFIX}
+lib/cmake/plplot/export_plplotcxx.cmake
+lib/cmake/plplot/export_plplotfortran${MODCMAKE_BUILD_SUFFIX}
+lib/cmake/plplot/export_plplotfortran.cmake
+lib/cmake/plplot/export_pltek${MODCMAKE_BUILD_SUFFIX}
+lib/cmake/plplot/export_pltek.cmake
+lib/cmake/plplot/export_ps${MODCMAKE_BUILD_SUFFIX}
+lib/cmake/plplot/export_ps.cmake
+lib/cmake/plplot/export_qsastime${MODCMAKE_BUILD_SUFFIX}
+lib/cmake/plplot/export_qsastime.cmake
+lib/cmake/plplot/export_svg${MODCMAKE_BUILD_SUFFIX}
+lib/cmake/plplot/export_svg.cmake
+lib/cmake/plplot/export_xfig${MODCMAKE_BUILD_SUFFIX}
+lib/cmake/plplot/export_xfig.cmake
+lib/cmake/plplot/export_xwin${MODCMAKE_BUILD_SUFFIX}
+lib/cmake/plplot/export_xwin.cmake
 lib/cmake/plplot/plplotConfig.cmake
+lib/cmake/plplot/plplot_exports.cmake
 @lib lib/libcsirocsa.so.${LIBcsirocsa_VERSION}
 @lib lib/libcsironn.so.${LIBcsironn_VERSION}
 @lib lib/libplplot.so.${LIBplplot_VERSION}
@@ -235,7 +268,6 @@ share/doc/plplot/README.nn
 share/doc/plplot/README.pkg-config
 share/doc/plplot/README.release
 share/doc/plplot/README.shapefiles
-share/doc/plplot/README.testing
 share/doc/plplot/README.wxwidgets
 share/doc/plplot/html/
 share/doc/plplot/html/API-C.html
@@ -320,12 +352,10 @@ share/doc/plplot/html/part_introduction.
 share/doc/plplot/html/part_programming.html
 share/doc/plplot/html/part_reference.html
 share/doc/plplot/html/pdf-driver.html
-share/doc/plplot/html/perl.html
 share/doc/plplot/html/plAlloc2dGrid.html
 share/doc/plplot/html/plClearOpts.html
 share/doc/plplot/html/plFree2dGrid.html
 share/doc/plplot/html/plGetCursor.html
-share/doc/plplot/html/plHLS_RGB.html
 share/doc/plplot/html/plMergeOpts.html
 share/doc/plplot/html/plMinMax2dGrid.html
 share/doc/plplot/html/plOptUsage.html
@@ -333,6 +363,7 @@ share/doc/plplot/html/plP_checkdriverini
 share/doc/plplot/html/plP_getinitdriverlist.html
 share/doc/plplot/html/plResetOpts.html
 share/doc/plplot/html/plSetUsage.html
+share/doc/plplot/html/plStatic2dGrid.html
 share/doc/plplot/html/plTranslateCursor.html
 share/doc/plplot/html/pl_setcontlabelformat.html
 share/doc/plplot/html/pl_setcontlabelparam.html
@@ -347,8 +378,6 @@ share/doc/plplot/html/plbox3.html
 share/doc/plplot/html/plbtime.html
 share/doc/plplot/html/plcalc_world.html
 share/doc/plplot/html/plclear.html
-share/doc/plplot/html/plclr.html
-share/doc/plplot/html/plcol.html
 share/doc/plplot/html/plcol0.html
 share/doc/plplot/html/plcol1.html
 share/doc/plplot/html/plcolorbar.html
@@ -403,7 +432,6 @@ share/doc/plplot/html/plgxax.html
 share/doc/plplot/html/plgyax.html
 share/doc/plplot/html/plgzax.html
 share/doc/plplot/html/plhist.html
-share/doc/plplot/html/plhls.html
 share/doc/plplot/html/plhlsrgb.html
 share/doc/plplot/html/plimage.html
 share/doc/plplot/html/plimagefr.html
@@ -431,7 +459,6 @@ share/doc/plplot/html/plot3d.html
 share/doc/plplot/html/plot3dc.html
 share/doc/plplot/html/plot3dcl.html
 share/doc/plplot/html/plot3dfortran.html
-share/doc/plplot/html/plpage.html
 share/doc/plplot/html/plparseopts.html
 share/doc/plplot/html/plparseoptsfortran.html
 share/doc/plplot/html/plpat.html
@@ -447,8 +474,6 @@ share/doc/plplot/html/plptex.html
 share/doc/plplot/html/plptex3.html
 share/doc/plplot/html/plrandd.html
 share/doc/plplot/html/plreplot.html
-share/doc/plplot/html/plrgb.html
-share/doc/plplot/html/plrgb1.html
 share/doc/plplot/html/plrgbhls.html
 share/doc/plplot/html/plsabort.html
 share/doc/plplot/html/plschr.html
@@ -531,7 +556,6 @@ share/doc/plplot/html/plvpas.html
 share/doc/plplot/html/plvpor.html
 share/doc/plplot/html/plvsta.html
 share/doc/plplot/html/plw3d.html
-share/doc/plplot/html/plwid.html
 share/doc/plplot/html/plwidth.html
 share/doc/plplot/html/plwind.html
 share/doc/plplot/html/plxormod.html
@@ -612,6 +636,8 @@ share/examples/plplot/cmake/modules/plpl
 share/examples/plplot/cmake/modules/plplot_functions.cmake
 share/examples/plplot/plplot-test-interactive.sh
 share/examples/plplot/plplot-test.sh
+share/examples/plplot/plplot_test/
+share/examples/plplot/plplot_test/CMakeLists.txt
 share/examples/plplot/test_c.sh
 share/examples/plplot/test_c_interactive.sh
 share/examples/plplot/test_cxx.sh

Reply via email to