Index: head/math/plplot/Makefile =================================================================== --- head/math/plplot/Makefile (revision 329044) +++ head/math/plplot/Makefile (revision 329045) @@ -1,144 +1,140 @@ # Created by: Thomas Gellekum # $FreeBSD$ PORTNAME= plplot -PORTVERSION= 5.9.9 -PORTREVISION= 2 +PORTVERSION= 5.9.10 CATEGORIES= math science MASTER_SITES= SF/${PORTNAME}/${PORTNAME}/${PORTVERSION}%20Source MAINTAINER= ports@FreeBSD.org COMMENT= Scientific plotting package LICENSE= LGPL21 # (or later) BUILD_DEPENDS= bash:${PORTSDIR}/shells/bash \ ${FREEFONT_DIR}/FreeMono.ttf:${PORTSDIR}/x11-fonts/freefont-ttf -LIB_DEPENDS= LASi:${PORTSDIR}/devel/lasi \ - qhull:${PORTSDIR}/math/qhull5 \ - freetype:${PORTSDIR}/print/freetype2 +LIB_DEPENDS= libLASi.so:${PORTSDIR}/devel/lasi \ + libqhull.so:${PORTSDIR}/math/qhull5 \ + libfreetype.so:${PORTSDIR}/print/freetype2 RUN_DEPENDS= bash:${PORTSDIR}/shells/bash \ ${FREEFONT_DIR}/FreeMono.ttf:${PORTSDIR}/x11-fonts/freefont-ttf OPTIONS_DEFINE= FORTRAN GD LUA PYTHON QT4 TCLTK THREADS WXGTK X11 OPTIONS_DEFAULT= THREADS X11 USE_GNOME= pango USE_PERL5= build USE_GHOSTSCRIPT=yes USES= cmake gmake perl5 pkgconfig CMAKE_ARGS= -DENABLE_java:BOOL=OFF -DENABLE_octave:BOOL=OFF \ -DENABLE_pdl:BOOL=OFF -DENABLE_ada:BOOL=OFF \ -DENABLE_d:BOOL=OFF -DENABLE_ocaml:BOOL=OFF \ -DENABLE_pyqt4:BOOL=OFF \ -DPL_FREETYPE_FONT_PATH:PATH="${FREEFONT_DIR}" \ - -DPLD_plmeta:BOOL=ON + -DPLD_plmeta:BOOL=OFF USE_AUTOTOOLS= libltdl USE_LDCONFIG= yes -MAN1= plm2gif.1 plpr.1 pltek.1 plrender.1 - FREEFONT_DIR= ${LOCALBASE}/lib/X11/fonts/freefont-ttf -NO_STAGE= yes .include .if ${PORT_OPTIONS:MFORTRAN} USE_FORTRAN= yes CONFIGURE_ENV+= CMAKE_Fortran_COMPILER="${FC}" +CMAKE_ARGS+= -DENABLE_f95:BOOL=ON -DENABLE_f77:BOOL=ON PLIST_SUB+= FORTRAN="" .else CMAKE_ARGS+= -DENABLE_f95:BOOL=OFF -DENABLE_f77:BOOL=OFF PLIST_SUB+= FORTRAN="@comment " .endif .if ${PORT_OPTIONS:MGD} -LIB_DEPENDS+= gd:${PORTSDIR}/graphics/gd +LIB_DEPENDS+= libgd.so:${PORTSDIR}/graphics/gd CMAKE_ARGS+= -DPLD_png:BOOL=ON PLIST_SUB+= GD="" -.else +.else PLIST_SUB+= GD="@comment " .endif .if ${PORT_OPTIONS:MLUA} USE_LUA= yes CMAKE_ARGS+= -DLUA_EXECUTABLE:FILEPATH="${LUA_CMD}" PLIST_SUB+= LUA="" LUA_MODLIBDIR="${LUA_MODLIBDIR:S,${LUA_PREFIX}/,,}" .else -CMAKE_ARGS+= -DENABLE_lua:BOOL=OFF +CMAKE_ARGS+= -DENABLE_lua:BOOL=OFF PLIST_SUB+= LUA="@comment " .endif .if ${PORT_OPTIONS:MPYTHON} BUILD_DEPENDS+= swig:${PORTSDIR}/devel/swig13 \ ${PYNUMPY} RUN_DEPENDS+= ${PYNUMPY} USE_PYTHON= yes PLIST_SUB+= PYTHON="" CONFIGURE_ENV+= PYTHON_VERSION="${PYTHON_VERSION}" .else CMAKE_ARGS+= -DENABLE_python:BOOL=OFF PLIST_SUB+= PYTHON="@comment " .endif .if ${PORT_OPTIONS:MTCLTK} .if empty(PORT_OPTIONS:MX11) IGNORE= TCLTK needs X11 support .endif -LIB_DEPENDS+= itk:${PORTSDIR}/x11-toolkits/itk -USE_TK= yes +LIB_DEPENDS+= libitk.so:${PORTSDIR}/x11-toolkits/itk +USES+= tk CMAKE_ARGS+= -DTCL_TCLSH:FILEPATH="${TCLSH}" \ -DTCL_INCLUDE_PATH:PATH="${TCL_INCLUDEDIR}" \ -DITCL_INCLUDE_PATH:PATH="${LOCALBASE}/include/itcl3.4" \ -DITCL_LIBRARY:FILEPATH="${LOCALBASE}/lib/libitcl.so" \ -DTK_INCLUDE_PATH:PATH="${TK_INCLUDEDIR}" \ -DITK_INCLUDE_PATH:PATH="${LOCALBASE}/include/itk3.3" \ -DITK_LIBRARY:FILEPATH="${LOCALBASE}/lib/libitk.so" -MAN1+= plserver.1 pltcl.1 PLIST_SUB+= TCLTK="" .else CMAKE_ARGS+= -DENABLE_tcl:BOOL=OFF PLIST_SUB+= TCLTK="@comment " .endif .if empty(PORT_OPTIONS:MTHREADS) CMAKE_ARGS+= -DTHREADS_HAVE_PTHREAD_ARG:BOOL=OFF .endif .if ${PORT_OPTIONS:MQT4} USE_QT4= corelib gui svg xml \ moc_build qmake_build rcc_build uic_build PLIST_SUB+= QT4="" .else CMAKE_ARGS+= -DENABLE_qt:BOOL=OFF -DDEFAULT_NO_QT_DEVICES:BOOL=ON PLIST_SUB+= QT4="@comment " .endif .if ${PORT_OPTIONS:MWXGTK} -LIB_DEPENDS+= agg:${PORTSDIR}/graphics/agg +LIB_DEPENDS+= libagg.so:${PORTSDIR}/graphics/agg USE_WX= 2.6+ CMAKE_ARGS+= -DPLD_wxpng:BOOL=ON \ -DwxWidgets_CONFIG_EXECUTABLE:FILEPATH="${WX_CONFIG}" PLIST_SUB+= WXGTK="" .else CMAKE_ARGS+= -DENABLE_wxwidgets:BOOL=OFF PLIST_SUB+= WXGTK="@comment " .endif .if ${PORT_OPTIONS:MX11} USE_XORG= ice sm x11 xext PLIST_SUB+= X11="" .else CMAKE_ARGS+= -DPLD_xcairo:BOOL=OFF -DPLD_xwin:BOOL=OFF PLIST_SUB+= X11="@comment " .endif -post-patch: - @${REINPLACE_CMD} -e \ +pre-configure: + ${REINPLACE_CMD} -e \ 's|dl dlopen|c dlopen|' \ ${WRKSRC}/cmake/modules/FindLTDL.cmake - @${GREP} -lR "/usr/local" ${WRKSRC}/cmake/modules | ${XARGS} \ + ${GREP} -lR "/usr/local" ${WRKSRC}/cmake/modules | ${XARGS} \ ${REINPLACE_CMD} -e \ 's|/usr/local|${LOCALBASE}|g' .include Index: head/math/plplot/distinfo =================================================================== --- head/math/plplot/distinfo (revision 329044) +++ head/math/plplot/distinfo (revision 329045) @@ -1,2 +1,2 @@ -SHA256 (plplot-5.9.9.tar.gz) = 747e5a043681f3e20df30d159f6e8517cb1e25e502322adcd80e8ca53ec2c90d -SIZE (plplot-5.9.9.tar.gz) = 13778554 +SHA256 (plplot-5.9.10.tar.gz) = 6be3e20d6992cb2afd132a00cbc812aa5db170abe5855c44eb01481ac4b0b723 +SIZE (plplot-5.9.10.tar.gz) = 15215720 Property changes on: head/math/plplot/distinfo ___________________________________________________________________ Added: svn:eol-style ## -0,0 +1 ## +native \ No newline at end of property Added: svn:mime-type ## -0,0 +1 ## +text/plain \ No newline at end of property Index: head/math/plplot/files/patch-bindings__tk__tkshell.c =================================================================== --- head/math/plplot/files/patch-bindings__tk__tkshell.c (revision 329044) +++ head/math/plplot/files/patch-bindings__tk__tkshell.c (nonexistent) @@ -1,11 +0,0 @@ ---- bindings/tk/tkshell.c.orig -+++ bindings/tk/tkshell.c -@@ -115,7 +115,7 @@ - if ( Tcl_ExprBoolean( interp, argv[1], &result ) ) - { - fprintf( stderr, "wait_until command \"%s\" failed:\n\t %s\n", -- argv[1], interp->result ); -+ argv[1], Tcl_GetStringResult(interp) ); - break; - } - if ( result ) Property changes on: head/math/plplot/files/patch-bindings__tk__tkshell.c ___________________________________________________________________ Deleted: fbsd:nokeywords ## -1 +0,0 ## -yes \ No newline at end of property Deleted: svn:eol-style ## -1 +0,0 ## -native \ No newline at end of property Deleted: svn:mime-type ## -1 +0,0 ## -text/plain \ No newline at end of property Index: head/math/plplot/files/patch-drivers__tk.c =================================================================== --- head/math/plplot/files/patch-drivers__tk.c (revision 329044) +++ head/math/plplot/files/patch-drivers__tk.c (nonexistent) @@ -1,65 +0,0 @@ ---- drivers/tk.c.orig -+++ drivers/tk.c -@@ -764,7 +764,7 @@ - - if ( Tcl_Init( dev->interp ) != TCL_OK ) - { -- fprintf( stderr, "%s\n", dev->interp->result ); -+ fprintf( stderr, "%s\n", Tcl_GetStringResult(dev->interp) ); - abort_session( pls, "Unable to initialize Tcl" ); - } - -@@ -1568,7 +1568,7 @@ - 0, 1, ( ClientData ) & iodev->file ) != TCL_OK ) - { - fprintf( stderr, "Cannot get file info:\n\t %s\n", -- dev->interp->result ); -+ Tcl_GetStringResult(dev->interp) ); - abort_session( pls, "" ); - } - iodev->fd = fileno( iodev->file ); -@@ -1673,7 +1673,7 @@ - if ( pl_PacketSend( dev->interp, dev->iodev, pls->pdfs ) ) - { - fprintf( stderr, "Packet send failed:\n\t %s\n", -- dev->interp->result ); -+ Tcl_GetStringResult(dev->interp) ); - abort_session( pls, "" ); - } - pdfs->bp = 0; -@@ -2131,7 +2131,7 @@ - - if ( Tk_Init( interp ) ) - { -- fprintf( stderr, "tk_init:%s\n", interp->result ); -+ fprintf( stderr, "tk_init:%s\n", Tcl_GetStringResult(interp) ); - return 1; - } - -@@ -2165,7 +2165,7 @@ - if ( Tcl_ExprBoolean( dev->interp, dev->cmdbuf, &result ) ) - { - fprintf( stderr, "tk_wait command \"%s\" failed:\n\t %s\n", -- cmd, dev->interp->result ); -+ cmd, Tcl_GetStringResult(dev->interp) ); - break; - } - if ( result ) -@@ -2225,7 +2225,7 @@ - if ( result != TCL_OK ) - { - fprintf( stderr, "Server command \"%s\" failed:\n\t %s\n", -- cmd, dev->interp->result ); -+ cmd, Tcl_GetStringResult(dev->interp) ); - abort_session( pls, "" ); - } - } -@@ -2247,7 +2247,7 @@ - if ( Tcl_VarEval( dev->interp, cmd, (char **) NULL ) != TCL_OK ) - { - fprintf( stderr, "TCL command \"%s\" failed:\n\t %s\n", -- cmd, dev->interp->result ); -+ cmd, Tcl_GetStringResult(dev->interp) ); - abort_session( pls, "" ); - } - } Property changes on: head/math/plplot/files/patch-drivers__tk.c ___________________________________________________________________ Deleted: fbsd:nokeywords ## -1 +0,0 ## -yes \ No newline at end of property Deleted: svn:eol-style ## -1 +0,0 ## -native \ No newline at end of property Deleted: svn:mime-type ## -1 +0,0 ## -text/plain \ No newline at end of property Index: head/math/plplot/files/patch-doc__docbook__src__plplotdoc.texi =================================================================== --- head/math/plplot/files/patch-doc__docbook__src__plplotdoc.texi (revision 329044) +++ head/math/plplot/files/patch-doc__docbook__src__plplotdoc.texi (nonexistent) @@ -1,20 +0,0 @@ ---- doc/docbook/src/plplotdoc.texi.orig -+++ doc/docbook/src/plplotdoc.texi -@@ -6722,7 +6722,7 @@ - if (pm->fdata[i] > max) - max = pm->fdata[i]; - -- sprintf( interp->result, "%f", max ); -+ sprintf( Tcl_GetStringResult(interp), "%f", max ); - return TCL_OK; - @} - -@@ -6735,7 +6735,7 @@ - if (pm->fdata[i] < min) - min = pm->fdata[i]; - -- sprintf( interp->result, "%f", min ); -+ sprintf( Tcl_GetStringResult(interp), "%f", min ); - return TCL_OK; - @} - Property changes on: head/math/plplot/files/patch-doc__docbook__src__plplotdoc.texi ___________________________________________________________________ Deleted: fbsd:nokeywords ## -1 +0,0 ## -yes \ No newline at end of property Deleted: svn:eol-style ## -1 +0,0 ## -native \ No newline at end of property Deleted: svn:mime-type ## -1 +0,0 ## -text/plain \ No newline at end of property Index: head/math/plplot/files/patch-bindings__tk-x-plat__plolotter.c =================================================================== --- head/math/plplot/files/patch-bindings__tk-x-plat__plolotter.c (revision 329044) +++ head/math/plplot/files/patch-bindings__tk-x-plat__plolotter.c (revision 329045) @@ -1,102 +1,11 @@ ---- bindings/tk-x-plat/plplotter.c.orig -+++ bindings/tk-x-plat/plplotter.c -@@ -463,7 +463,7 @@ - PlPlotterFirstInit( (ClientData) plPlotterPtr ); - Tk_GeometryRequest( plPlotterPtr->tkwin, 200, 200 ); - -- interp->result = Tk_PathName( plPlotterPtr->tkwin ); -+ Tcl_SetResult(interp,(char*)Tk_PathName(plPlotterPtr->tkwin) ,TCL_VOLATILE); - - return TCL_OK; - } -@@ -2018,7 +2018,7 @@ +--- bindings/tk-x-plat/plplotter.c.orig 2012-08-14 00:14:23.000000000 +0200 ++++ bindings/tk-x-plat/plplotter.c 2013-10-01 22:42:16.000000000 +0200 +@@ -2024,7 +2024,7 @@ // // Results: // The return value is a standard Tcl result. If TCL_ERROR is -// returned, then interp->result contains an error message. +// returned, then Tcl_GetStringResult(interp) contains an error message. // // Side effects: // Configuration information, such as text string, colors, font, etc. -@@ -2469,7 +2469,7 @@ - plr->at_bop = 0; - if ( Tcl_Eval( interp, plPlotterPtr->bopCmd ) != TCL_OK ) - fprintf( stderr, "Command \"%s\" failed:\n\t %s\n", -- plPlotterPtr->bopCmd, interp->result ); -+ plPlotterPtr->bopCmd, Tcl_GetStringResult(interp) ); - } - - // Signal eop if necessary -@@ -2479,7 +2479,7 @@ - plr->at_eop = 0; - if ( Tcl_Eval( interp, plPlotterPtr->eopCmd ) != TCL_OK ) - fprintf( stderr, "Command \"%s\" failed:\n\t %s\n", -- plPlotterPtr->eopCmd, interp->result ); -+ plPlotterPtr->eopCmd, Tcl_GetStringResult(interp) ); - } - - return result; -@@ -2491,7 +2491,7 @@ - { - if ( Tcl_Eval( interp, plPlotterPtr->eopCmd ) != TCL_OK ) - fprintf( stderr, "Command \"%s\" failed:\n\t %s\n", -- plPlotterPtr->eopCmd, interp->result ); -+ plPlotterPtr->eopCmd, Tcl_GetStringResult(interp) ); - } - } - -@@ -2501,7 +2501,7 @@ - { - if ( Tcl_Eval( interp, plPlotterPtr->bopCmd ) != TCL_OK ) - fprintf( stderr, "Command \"%s\" failed:\n\t %s\n", -- plPlotterPtr->bopCmd, interp->result ); -+ plPlotterPtr->bopCmd, Tcl_GetStringResult(interp ) ); - } - } - -@@ -2536,7 +2536,7 @@ - { - #endif - Tcl_AppendResult( interp, "Packet receive failed:\n\t %s\n", -- interp->result, (char *) NULL ); -+ Tcl_GetStringResult(interp), (char *) NULL ); - return TCL_ERROR; - } - -@@ -3082,7 +3082,7 @@ - - if ( argc == 0 ) - { -- interp->result = "report what?"; -+ Tcl_SetResult(interp,(char*)"report what?",TCL_VOLATILE); - return TCL_ERROR; - } - -@@ -3093,7 +3093,7 @@ - - if ( argc != 3 ) - { -- interp->result = "Wrong # of args: report wc x y"; -+ Tcl_SetResult(interp,(char*)"Wrong # of args: report wc x y",TCL_VOLATILE); - return TCL_ERROR; - } - -@@ -3107,15 +3107,15 @@ - - if ( plTranslateCursor( gin ) ) - { -- sprintf( interp->result, "%f %f", gin->wX, gin->wY ); -+ sprintf( Tcl_GetStringResult(interp), "%f %f", gin->wX, gin->wY ); - return TCL_OK; - } - -- interp->result = "Cannot locate"; -+ Tcl_SetResult(interp,(char*)"Cannot locate",TCL_VOLATILE); - return TCL_OK; - } - -- interp->result = "nonsensical request."; -+ Tcl_SetResult(interp,(char*)"nonsensical request.",TCL_VOLATILE); - return TCL_ERROR; - } - Index: head/math/plplot/files/patch-bindings__tk__plframe.c =================================================================== --- head/math/plplot/files/patch-bindings__tk__plframe.c (revision 329044) +++ head/math/plplot/files/patch-bindings__tk__plframe.c (revision 329045) @@ -1,102 +1,11 @@ ---- bindings/tk/plframe.c.orig -+++ bindings/tk/plframe.c -@@ -484,7 +484,7 @@ - Tk_DestroyWindow( plFramePtr->tkwin ); - return TCL_ERROR; - } -- interp->result = Tk_PathName( plFramePtr->tkwin ); -+ Tcl_SetResult(interp,(char*)Tk_PathName( plFramePtr->tkwin) ,TCL_VOLATILE); - - return TCL_OK; - } -@@ -616,7 +616,7 @@ - { - bcb.cmd = PLESC_DOUBLEBUFFERING_QUERY; - pl_cmd( PLESC_DOUBLEBUFFERING, &bcb ); -- sprintf( interp->result, "%d", bcb.result ); -+ sprintf( Tcl_GetStringResult(interp), "%d", bcb.result ); - } - } - -@@ -2215,7 +2215,7 @@ +--- bindings/tk/plframe.c.orig 2012-08-14 00:14:23.000000000 +0200 ++++ bindings/tk/plframe.c 2013-10-01 22:47:19.000000000 +0200 +@@ -2218,7 +2218,7 @@ // // Results: // The return value is a standard Tcl result. If TCL_ERROR is -// returned, then interp->result contains an error message. +// returned, then Tcl_GetStringResult(interp) contains an error message. // // Side effects: // Configuration information, such as text string, colors, font, etc. -@@ -2675,7 +2675,7 @@ - plr->at_bop = 0; - if ( Tcl_Eval( interp, plFramePtr->bopCmd ) != TCL_OK ) - fprintf( stderr, "Command \"%s\" failed:\n\t %s\n", -- plFramePtr->bopCmd, interp->result ); -+ plFramePtr->bopCmd, Tcl_GetStringResult(interp) ); - } - - // Signal eop if necessary -@@ -2685,7 +2685,7 @@ - plr->at_eop = 0; - if ( Tcl_Eval( interp, plFramePtr->eopCmd ) != TCL_OK ) - fprintf( stderr, "Command \"%s\" failed:\n\t %s\n", -- plFramePtr->eopCmd, interp->result ); -+ plFramePtr->eopCmd, Tcl_GetStringResult(interp) ); - } - - return result; -@@ -3275,7 +3275,7 @@ - - if ( argc == 0 ) - { -- interp->result = "report what?"; -+ Tcl_SetResult(interp,(char*)"report what?",TCL_VOLATILE); - return TCL_ERROR; - } - -@@ -3286,7 +3286,7 @@ - - if ( argc != 3 ) - { -- interp->result = "Wrong # of args: report wc x y"; -+ Tcl_SetResult(interp,(char*)"Wrong # of args: report wc x y",TCL_VOLATILE); - return TCL_ERROR; - } - -@@ -3300,15 +3300,15 @@ - - if ( plTranslateCursor( gin ) ) - { -- sprintf( interp->result, "%f %f", gin->wX, gin->wY ); -+ sprintf( Tcl_GetStringResult(interp), "%f %f", gin->wX, gin->wY ); - return TCL_OK; - } - -- interp->result = "Cannot locate"; -+ Tcl_SetResult(interp,(char*)"Cannot locate",TCL_VOLATILE); - return TCL_OK; - } - -- interp->result = "nonsensical request."; -+ Tcl_SetResult(interp,(char*)"nonsensical request.",TCL_VOLATILE); - return TCL_ERROR; - } - -@@ -3324,7 +3324,7 @@ - - if ( Tcl_Eval( plFramePtr->interp, plFramePtr->bopCmd ) != TCL_OK ) - fprintf( stderr, "Command \"%s\" failed:\n\t %s\n", -- plFramePtr->bopCmd, plFramePtr->interp->result ); -+ plFramePtr->bopCmd, Tcl_GetStringResult(plFramePtr->interp) ); - } - - //-------------------------------------------------------------------------- -@@ -3339,7 +3339,7 @@ - - if ( Tcl_Eval( plFramePtr->interp, plFramePtr->eopCmd ) != TCL_OK ) - fprintf( stderr, "Command \"%s\" failed:\n\t %s\n", -- plFramePtr->eopCmd, plFramePtr->interp->result ); -+ plFramePtr->eopCmd, Tcl_GetStringResult(plFramePtr->interp) ); - } - - //-------------------------------------------------------------------------- Index: head/math/plplot/files/patch-bindings__tk__plserver.c =================================================================== --- head/math/plplot/files/patch-bindings__tk__plserver.c (revision 329044) +++ head/math/plplot/files/patch-bindings__tk__plserver.c (revision 329045) @@ -1,36 +1,11 @@ ---- bindings/tk/plserver.c.orig -+++ bindings/tk/plserver.c -@@ -126,11 +126,11 @@ - if ( Tk_ParseArgv( interp, (Tk_Window) NULL, &argc, argv, - argTable, TK_ARGV_NO_DEFAULTS ) != TCL_OK ) - { -- fprintf( stderr, "\n(plserver) %s\n\n", interp->result ); -+ fprintf( stderr, "\n(plserver) %s\n\n", Tcl_GetStringResult(interp) ); - fprintf( stderr, "\ - The client_ and -child options should not be used except via the\n\ - PLplot/Tk driver.\n\n(wish) " ); -- if ( strncmp( interp->result, helpmsg, strlen( helpmsg ) ) ) -+ if ( strncmp( Tcl_GetStringResult(interp), helpmsg, strlen( helpmsg ) ) ) - exit( 1 ); - } - +--- bindings/tk/plserver.c.orig 2013-04-26 12:02:06.000000000 +0200 ++++ bindings/tk/plserver.c 2013-10-01 22:49:59.000000000 +0200 @@ -158,7 +158,7 @@ // // Results: // Returns a standard Tcl completion code, and leaves an error -// message in interp->result if an error occurs. +// message in Tcl_GetStringResult(interp) if an error occurs. // // Side effects: // Depends on the startup script. -@@ -257,8 +257,8 @@ - - // Print error message if one given - -- if ( interp->result != NULL && interp->result[0] != '\0' ) -- fprintf( stderr, "%s\n", interp->result ); -+ if ( Tcl_GetStringResult(interp) != NULL && Tcl_GetStringResult(interp)[0] != '\0' ) -+ fprintf( stderr, "%s\n", Tcl_GetStringResult(interp) ); - - // Best to check the syntax before proceeding - Index: head/math/plplot/files/patch-bindings__tk__tkMain.c =================================================================== --- head/math/plplot/files/patch-bindings__tk__tkMain.c (revision 329044) +++ head/math/plplot/files/patch-bindings__tk__tkMain.c (revision 329045) @@ -1,106 +1,20 @@ ---- bindings/tk/tkMain.c.orig -+++ bindings/tk/tkMain.c +--- bindings/tk/tkMain.c.orig 2013-01-30 00:36:01.000000000 +0100 ++++ bindings/tk/tkMain.c 2013-10-01 22:51:31.000000000 +0200 @@ -85,17 +85,6 @@ // From tclIntDecls.h -#ifndef Tcl_Import_TCL_DECLARED -EXTERN int Tcl_Import _ANSI_ARGS_( ( Tcl_Interp * interp, - Tcl_Namespace * nsPtr, char * pattern, - int allowOverwrite ) ); -#endif - -#ifndef Tcl_GetGlobalNamespace_TCL_DECLARE -EXTERN Tcl_Namespace * Tcl_GetGlobalNamespace _ANSI_ARGS_( ( - Tcl_Interp * interp ) ); -#endif - // // Declarations for various library procedures and variables (don't want // to include tkInt.h or tkConfig.h here, because people might copy this -@@ -180,7 +169,7 @@ - pltkMain( int argc, const char **argv, char *RcFileName, - int ( *AppInit )( Tcl_Interp *interp ) ) - { -- char *args, *msg; -+ char *args; const char *msg; - const char *p; - char buf[20]; - int code; -@@ -202,7 +191,7 @@ - if ( Tk_ParseArgv( interp, (Tk_Window) NULL, &argc, argv, argTable, 0 ) - != TCL_OK ) - { -- fprintf( stderr, "%s\n", interp->result ); -+ fprintf( stderr, "%s\n", Tcl_GetStringResult(interp) ); - exit( 1 ); - } - if ( name == NULL ) -@@ -331,7 +320,7 @@ - - if ( ( *AppInit )( interp ) != TCL_OK ) - { -- fprintf( stderr, "(*AppInit) failed: %s\n", interp->result ); -+ fprintf( stderr, "(*AppInit) failed: %s\n", Tcl_GetStringResult(interp) ); - } - - // -@@ -343,7 +332,7 @@ - code = Tcl_VarEval( interp, "wm geometry . ", geometry, (char *) NULL ); - if ( code != TCL_OK ) - { -- fprintf( stderr, "%s\n", interp->result ); -+ fprintf( stderr, "%s\n", Tcl_GetStringResult(interp) ); - } - } - -@@ -393,7 +382,7 @@ - fullName = Tcl_TildeSubst( interp, RcFileName, &buffer ); - if ( fullName == NULL ) - { -- fprintf( stderr, "%s\n", interp->result ); -+ fprintf( stderr, "%s\n", Tcl_GetStringResult(interp) ); - } - else - { -@@ -403,7 +392,7 @@ - code = Tcl_EvalFile( interp, fullName ); - if ( code != TCL_OK ) - { -- fprintf( stderr, "%s\n", interp->result ); -+ fprintf( stderr, "%s\n", Tcl_GetStringResult(interp) ); - } - fclose( f ); - } -@@ -442,7 +431,7 @@ - msg = (char *) Tcl_GetVar( interp, "errorInfo", TCL_GLOBAL_ONLY ); - if ( msg == NULL ) - { -- msg = interp->result; -+ msg = Tcl_GetStringResult(interp); - } - fprintf( stderr, "%s\n", msg ); - Tcl_Eval( interp, errorExitCmd ); -@@ -535,11 +524,11 @@ - Tk_CreateFileHandler( 0, TK_READABLE, StdinProc, (ClientData) 0 ); - #endif - Tcl_DStringFree( &command ); -- if ( *interp->result != 0 ) -+ if ( Tcl_GetStringResult(interp) ) - { - if ( ( code != TCL_OK ) || ( tty ) ) - { -- printf( "%s\n", interp->result ); -+ printf( "%s\n", Tcl_GetStringResult(interp) ); - } - } - -@@ -599,7 +588,7 @@ - { - Tcl_AddErrorInfo( interp, - "\n (script that generates prompt)" ); -- fprintf( stderr, "%s\n", interp->result ); -+ fprintf( stderr, "%s\n", Tcl_GetStringResult(interp) ); - goto defaultPrompt; - } - } Index: head/math/plplot/files/patch-cmake_modules_pkg-config.cmake =================================================================== --- head/math/plplot/files/patch-cmake_modules_pkg-config.cmake (revision 329044) +++ head/math/plplot/files/patch-cmake_modules_pkg-config.cmake (revision 329045) @@ -1,11 +1,11 @@ ---- ./cmake/modules/pkg-config.cmake.orig 2009-09-06 21:04:43.000000000 +0200 -+++ ./cmake/modules/pkg-config.cmake 2009-12-26 23:55:00.000000000 +0100 -@@ -48,7 +48,7 @@ +--- cmake/modules/pkg-config.cmake.orig 2012-01-05 14:59:36.000000000 +0100 ++++ cmake/modules/pkg-config.cmake 2013-10-01 23:01:57.000000000 +0200 +@@ -39,7 +39,7 @@ + if(PKG_CONFIG_EXECUTABLE) message(STATUS "Looking for pkg-config - found") - set(pkg_config_true "") - set(PKG_CONFIG_DIR ${LIB_DIR}/pkgconfig) + set(PKG_CONFIG_DIR ${LIB_DIR}data/pkgconfig) set(PKG_CONFIG_ENV PKG_CONFIG_PATH=${PKG_CONFIG_DIR}) else(PKG_CONFIG_EXECUTABLE) message(STATUS "Looking for pkg-config - not found") Property changes on: head/math/plplot/files/patch-cmake_modules_pkg-config.cmake ___________________________________________________________________ Added: svn:eol-style ## -0,0 +1 ## +native \ No newline at end of property Added: svn:mime-type ## -0,0 +1 ## +text/plain \ No newline at end of property Index: head/math/plplot/files/patch-examples__tk__xtk02.c =================================================================== --- head/math/plplot/files/patch-examples__tk__xtk02.c (revision 329044) +++ head/math/plplot/files/patch-examples__tk__xtk02.c (revision 329045) @@ -1,20 +1,11 @@ ---- examples/tk/xtk02.c.orig -+++ examples/tk/xtk02.c -@@ -49,7 +49,7 @@ - pm->fdata[i] = y; - } - -- interp->result = "Things are cool in gumbyville."; -+ Tcl_SetResult(interp,(char*)"Things are cool in gumbyville.",TCL_VOLATILE); - return TCL_OK; - } - -@@ -82,7 +82,7 @@ +--- examples/tk/xtk02.c.orig 2011-11-30 23:04:42.000000000 +0100 ++++ examples/tk/xtk02.c 2013-10-01 23:06:58.000000000 +0200 +@@ -85,7 +85,7 @@ // // Results: // Returns a standard Tcl completion code, and leaves an error -// message in interp->result if an error occurs. +// message in Tcl_GetStringResult(interp) if an error occurs. // // Side effects: // Depends on the startup script. Index: head/math/plplot/files/patch-examples__tk__xtk04.c =================================================================== --- head/math/plplot/files/patch-examples__tk__xtk04.c (revision 329044) +++ head/math/plplot/files/patch-examples__tk__xtk04.c (revision 329045) @@ -1,38 +1,11 @@ ---- examples/tk/xtk04.c.orig -+++ examples/tk/xtk04.c -@@ -35,7 +35,7 @@ - if ( pm->fdata[i] > max ) - max = pm->fdata[i]; - -- sprintf( interp->result, "%f", max ); -+ sprintf( Tcl_GetStringResult(interp), "%f", max ); - return TCL_OK; - } - -@@ -48,7 +48,7 @@ - if ( pm->fdata[i] < min ) - min = pm->fdata[i]; - -- sprintf( interp->result, "%f", min ); -+ sprintf( Tcl_GetStringResult(interp), "%f", min ); - return TCL_OK; - } - -@@ -80,7 +80,7 @@ +--- examples/tk/xtk04.c.orig 2011-11-30 23:04:42.000000000 +0100 ++++ examples/tk/xtk04.c 2013-10-01 23:08:24.000000000 +0200 +@@ -87,7 +87,7 @@ // // Results: // Returns a standard Tcl completion code, and leaves an error -// message in interp->result if an error occurs. +// message in Tcl_GetStringResult(interp) if an error occurs. // // Side effects: // Depends on the startup script. -@@ -158,7 +158,7 @@ - - if ( pm->dim != 2 ) - { -- interp->result = "must use 2-d matrix."; -+ Tcl_SetResult(interp,(char*)"must use 2-d matrix.",TCL_VOLATILE); - return TCL_ERROR; - } - Index: head/math/plplot/files/patch-plplot_test__CMakeLists.txt =================================================================== --- head/math/plplot/files/patch-plplot_test__CMakeLists.txt (revision 329044) +++ head/math/plplot/files/patch-plplot_test__CMakeLists.txt (revision 329045) @@ -1,15 +1,17 @@ ---- plplot_test/CMakeLists.txt.orig -+++ plplot_test/CMakeLists.txt -@@ -387,12 +387,6 @@ - ) +--- plplot_test/CMakeLists.txt.orig 2013-07-09 21:27:35.000000000 +0200 ++++ plplot_test/CMakeLists.txt 2013-10-01 23:12:09.000000000 +0200 +@@ -452,14 +452,6 @@ + list(APPEND test_output_files_LIST ${output_list}) endif(PLD_pdfqt) - if(PLD_pdf) - add_test(examples_pdf - ${SH_EXECUTABLE} -c "${TEST_ENVIRONMENT} ${TEST_SCRIPT} --front-end=c --device=pdf" - ) +- list_example_files(. pdf c output_list) +- list(APPEND test_output_files_LIST ${output_list}) - endif(PLD_pdf) - if(CMP_EXECUTABLE OR DIFF_EXECUTABLE AND TAIL_EXECUTABLE) configure_file( test_diff.sh.in Index: head/math/plplot/files/patch-scripts__CMakeLists.txt =================================================================== --- head/math/plplot/files/patch-scripts__CMakeLists.txt (revision 329044) +++ head/math/plplot/files/patch-scripts__CMakeLists.txt (revision 329045) @@ -1,14 +1,11 @@ ---- scripts/CMakeLists.txt.orig -+++ scripts/CMakeLists.txt -@@ -28,9 +28,9 @@ +--- scripts/CMakeLists.txt.orig 2012-01-04 16:45:07.000000000 +0100 ++++ scripts/CMakeLists.txt 2013-10-01 23:16:18.000000000 +0200 +@@ -28,7 +28,7 @@ ) endif(PLD_plmeta) if(PLD_pstex) - set(scripts_SCRIPTS ${scripts_SCRIPTS} pstex2eps) + set(scripts_SCRIPTS "${scripts_SCRIPTS}" pstex2eps) endif(PLD_pstex) -- if (NOT ${scripts_SCRIPTS} STREQUAL "") -+ if (NOT "${scripts_SCRIPTS}" STREQUAL "") + if (NOT "${scripts_SCRIPTS}" STREQUAL "") install(PROGRAMS ${scripts_SCRIPTS} DESTINATION ${BIN_DIR}) - endif (NOT ${scripts_SCRIPTS} STREQUAL "") - endif(HAVE_BASH) Index: head/math/plplot/pkg-plist =================================================================== --- head/math/plplot/pkg-plist (revision 329044) +++ head/math/plplot/pkg-plist (revision 329045) @@ -1,637 +1,649 @@ -bin/plm2gif -bin/plpr -bin/plrender %%TCLTK%%bin/plserver %%TCLTK%%bin/pltcl bin/pltek include/plplot/disptab.h include/plplot/drivers.h include/plplot/gcw.h include/plplot/pdf.h include/plplot/plConfig.h include/plplot/plDevs.h include/plplot/pldebug.h include/plplot/pldll.h include/plplot/plevent.h include/plplot/plplot.h include/plplot/plplotP.h include/plplot/plplotcanvas.h include/plplot/plstream.h include/plplot/plstrm.h %%TCLTK%%include/plplot/pltcl.h %%TCLTK%%include/plplot/pltk.h include/plplot/plxwd.h include/plplot/qsastime.h include/plplot/qsastimedll.h %%QT4%%include/plplot/qt.h %%WXGTK%%include/plplot/wxPLplotstream.h %%WXGTK%%include/plplot/wxPLplotwindow.h %%TCLTK%%include/plplot/tclMatrix.h %%FORTRAN%%lib/fortran/include/plplot/plplot_parameters.h +%%FORTRAN%%lib/fortran/modules/plplot/plf95demolib.mod %%FORTRAN%%lib/fortran/modules/plplot/plplot.mod %%FORTRAN%%lib/fortran/modules/plplot/plplot_flt.mod %%FORTRAN%%lib/fortran/modules/plplot/plplotp.mod lib/libcsirocsa.so lib/libcsirocsa.so.0 lib/libcsirocsa.so.0.0.1 lib/libcsironn.so lib/libcsironn.so.0 lib/libcsironn.so.0.0.1 +%%FORTRAN%%lib/libplf95demolibd.a lib/libplplotcxxd.so -lib/libplplotcxxd.so.10 -lib/libplplotcxxd.so.10.0.0 +lib/libplplotcxxd.so.11 +lib/libplplotcxxd.so.11.0.0 lib/libplplotd.so -lib/libplplotd.so.11 -lib/libplplotd.so.11.0.0 +lib/libplplotd.so.12 +lib/libplplotd.so.12.0.0 %%FORTRAN%%lib/libplplotf77cd.so %%FORTRAN%%lib/libplplotf77cd.so.9 %%FORTRAN%%lib/libplplotf77cd.so.9.1.1 %%FORTRAN%%lib/libplplotf77d.so %%FORTRAN%%lib/libplplotf77d.so.9 %%FORTRAN%%lib/libplplotf77d.so.9.1.1 %%FORTRAN%%lib/libplplotf95cd.so -%%FORTRAN%%lib/libplplotf95cd.so.9 -%%FORTRAN%%lib/libplplotf95cd.so.9.1.1 +%%FORTRAN%%lib/libplplotf95cd.so.10 +%%FORTRAN%%lib/libplplotf95cd.so.10.0.0 %%FORTRAN%%lib/libplplotf95d.so -%%FORTRAN%%lib/libplplotf95d.so.9 -%%FORTRAN%%lib/libplplotf95d.so.9.1.1 +%%FORTRAN%%lib/libplplotf95d.so.10 +%%FORTRAN%%lib/libplplotf95d.so.10.0.0 %%QT4%%lib/libplplotqtd.so -%%QT4%%lib/libplplotqtd.so.0 -%%QT4%%lib/libplplotqtd.so.0.0.1 +%%QT4%%lib/libplplotqtd.so.1 +%%QT4%%lib/libplplotqtd.so.1.0.0 %%TCLTK%%lib/libplplottcltkd.so -%%TCLTK%%lib/libplplottcltkd.so.9 -%%TCLTK%%lib/libplplottcltkd.so.9.2.0 +%%TCLTK%%lib/libplplottcltkd.so.10 +%%TCLTK%%lib/libplplottcltkd.so.10.0.0 %%WXGTK%%lib/libplplotwxwidgetsd.so %%WXGTK%%lib/libplplotwxwidgetsd.so.0 %%WXGTK%%lib/libplplotwxwidgetsd.so.0.0.0 lib/libqsastime.so lib/libqsastime.so.0 lib/libqsastime.so.0.0.1 %%TCLTK%%lib/libtclmatrixd.so %%TCLTK%%lib/libtclmatrixd.so.9 %%TCLTK%%lib/libtclmatrixd.so.9.2.0 %%LUA%%%%LUA_MODLIBDIR%%/plplot/plplotluac.so lib/plplot/driversd/cairo.driver_info lib/plplot/driversd/cairo.so %%GD%%lib/plplot/driversd/gd.driver_info %%GD%%lib/plplot/driversd/gd.so lib/plplot/driversd/mem.driver_info lib/plplot/driversd/mem.so lib/plplot/driversd/null.driver_info lib/plplot/driversd/null.so -lib/plplot/driversd/plmeta.driver_info -lib/plplot/driversd/plmeta.so lib/plplot/driversd/ps.driver_info lib/plplot/driversd/ps.so lib/plplot/driversd/psttf.driver_info lib/plplot/driversd/psttf.so %%QT4%%lib/plplot/driversd/qt.driver_info %%QT4%%lib/plplot/driversd/qt.so lib/plplot/driversd/svg.driver_info lib/plplot/driversd/svg.so %%TCLTK%%lib/plplot/driversd/tk.driver_info %%TCLTK%%lib/plplot/driversd/tk.so %%TCLTK%%lib/plplot/driversd/tkwin.driver_info %%TCLTK%%lib/plplot/driversd/tkwin.so %%WXGTK%%lib/plplot/driversd/wxwidgets.driver_info %%WXGTK%%lib/plplot/driversd/wxwidgets.so lib/plplot/driversd/xfig.driver_info lib/plplot/driversd/xfig.so %%X11%%lib/plplot/driversd/xwin.driver_info %%X11%%lib/plplot/driversd/xwin.so %%TCLTK%%%%PYTHON%%%%PYTHON_SITELIBDIR%%/Plframe.py %%TCLTK%%%%PYTHON%%%%PYTHON_SITELIBDIR%%/TclSup.py %%PYTHON%%%%PYTHON_SITELIBDIR%%/_plplotcmodule.so %%PYTHON%%%%PYTHON_SITELIBDIR%%/plplot.py %%PYTHON%%%%PYTHON_SITELIBDIR%%/plplot_widgetmodule.so %%PYTHON%%%%PYTHON_SITELIBDIR%%/plplotc.py libdata/pkgconfig/plplotd-c++.pc %%FORTRAN%%libdata/pkgconfig/plplotd-f77.pc %%FORTRAN%%libdata/pkgconfig/plplotd-f95.pc %%QT4%%libdata/pkgconfig/plplotd-qt.pc %%TCLTK%%libdata/pkgconfig/plplotd-tcl.pc %%WXGTK%%libdata/pkgconfig/plplotd-wxwidgets.pc libdata/pkgconfig/plplotd.pc +%%TCLTK%%man/man1/plserver.1.gz +%%TCLTK%%man/man1/pltcl.1.gz +man/man1/pltek.1.gz %%DOCSDIR%%/ABOUT %%DOCSDIR%%/AUTHORS %%DOCSDIR%%/COPYING.LIB %%DOCSDIR%%/ChangeLog.release %%DOCSDIR%%/Copyright %%DOCSDIR%%/FAQ %%DOCSDIR%%/NEWS %%DOCSDIR%%/PROBLEMS %%DOCSDIR%%/README %%DOCSDIR%%/README.1st.csa %%DOCSDIR%%/README.1st.nn %%DOCSDIR%%/README.csa %%DOCSDIR%%/README.drivers %%DOCSDIR%%/README.nn %%DOCSDIR%%/README.pkg-config %%DOCSDIR%%/README.release %%DOCSDIR%%/README.testing %%DOCSDIR%%/README.wxwidgets %%DATADIR%%/cglobe.map %%DATADIR%%/cmap0_alternate.pal %%DATADIR%%/cmap0_black_on_white.pal %%DATADIR%%/cmap0_default.pal %%DATADIR%%/cmap0_white_bg.pal %%DATADIR%%/cmap1_blue_red.pal %%DATADIR%%/cmap1_blue_yellow.pal %%DATADIR%%/cmap1_default.pal %%DATADIR%%/cmap1_gray.pal %%DATADIR%%/cmap1_highfreq.pal %%DATADIR%%/cmap1_lowfreq.pal %%DATADIR%%/cmap1_radar.pal %%DATADIR%%/examples/CMakeLists.txt %%DATADIR%%/examples/Makefile %%DATADIR%%/examples/c++/CMakeLists.txt %%DATADIR%%/examples/c++/Makefile %%QT4%%%%DATADIR%%/examples/c++/README.qt_example %%DATADIR%%/examples/c++/plc++demos.h %%QT4%%%%DATADIR%%/examples/c++/qt_PlotWindow.cpp %%QT4%%%%DATADIR%%/examples/c++/qt_PlotWindow.h %%QT4%%%%DATADIR%%/examples/c++/qt_example.cpp %%WXGTK%%%%DATADIR%%/examples/c++/wxPLplotDemo.cpp +%%DATADIR%%/examples/c++/x00.cc %%DATADIR%%/examples/c++/x01.cc %%DATADIR%%/examples/c++/x01cc.cc %%DATADIR%%/examples/c++/x02.cc %%DATADIR%%/examples/c++/x03.cc %%DATADIR%%/examples/c++/x04.cc %%DATADIR%%/examples/c++/x05.cc %%DATADIR%%/examples/c++/x06.cc %%DATADIR%%/examples/c++/x07.cc %%DATADIR%%/examples/c++/x08.cc %%DATADIR%%/examples/c++/x09.cc %%DATADIR%%/examples/c++/x10.cc %%DATADIR%%/examples/c++/x11.cc %%DATADIR%%/examples/c++/x12.cc %%DATADIR%%/examples/c++/x13.cc %%DATADIR%%/examples/c++/x14.cc %%DATADIR%%/examples/c++/x15.cc %%DATADIR%%/examples/c++/x16.cc %%DATADIR%%/examples/c++/x17.cc %%DATADIR%%/examples/c++/x18.cc %%DATADIR%%/examples/c++/x19.cc %%DATADIR%%/examples/c++/x20.cc %%DATADIR%%/examples/c++/x21.cc %%DATADIR%%/examples/c++/x22.cc %%DATADIR%%/examples/c++/x23.cc %%DATADIR%%/examples/c++/x24.cc %%DATADIR%%/examples/c++/x25.cc %%DATADIR%%/examples/c++/x26.cc %%DATADIR%%/examples/c++/x27.cc %%DATADIR%%/examples/c++/x28.cc %%DATADIR%%/examples/c++/x29.cc %%DATADIR%%/examples/c++/x30.cc %%DATADIR%%/examples/c++/x31.cc %%DATADIR%%/examples/c++/x33.cc %%DATADIR%%/examples/c/CMakeLists.txt %%DATADIR%%/examples/c/Makefile %%DATADIR%%/examples/c/README.cairo %%DATADIR%%/examples/c/ext-cairo-test.c %%X11%%%%DATADIR%%/examples/c/extXdrawable_demo.c %%DATADIR%%/examples/c/plcdemos.h %%DATADIR%%/examples/c/test_plend.c %%DATADIR%%/examples/c/tutor.c +%%DATADIR%%/examples/c/x00c.c %%DATADIR%%/examples/c/x01c.c %%DATADIR%%/examples/c/x02c.c %%DATADIR%%/examples/c/x03c.c %%DATADIR%%/examples/c/x04c.c %%DATADIR%%/examples/c/x05c.c %%DATADIR%%/examples/c/x06c.c %%DATADIR%%/examples/c/x07c.c %%DATADIR%%/examples/c/x08c.c %%DATADIR%%/examples/c/x09c.c %%DATADIR%%/examples/c/x10c.c %%DATADIR%%/examples/c/x11c.c %%DATADIR%%/examples/c/x12c.c %%DATADIR%%/examples/c/x13c.c %%DATADIR%%/examples/c/x14c.c %%DATADIR%%/examples/c/x15c.c %%DATADIR%%/examples/c/x16c.c %%DATADIR%%/examples/c/x17c.c %%DATADIR%%/examples/c/x18c.c %%DATADIR%%/examples/c/x19c.c %%DATADIR%%/examples/c/x20c.c %%DATADIR%%/examples/c/x21c.c %%DATADIR%%/examples/c/x22c.c %%DATADIR%%/examples/c/x23c.c %%DATADIR%%/examples/c/x24c.c %%DATADIR%%/examples/c/x25c.c %%DATADIR%%/examples/c/x26c.c %%DATADIR%%/examples/c/x27c.c %%DATADIR%%/examples/c/x28c.c %%DATADIR%%/examples/c/x29c.c %%DATADIR%%/examples/c/x30c.c %%DATADIR%%/examples/c/x31c.c %%DATADIR%%/examples/c/x32c.c %%DATADIR%%/examples/c/x33c.c %%DATADIR%%/examples/c/x34c.c -%%DATADIR%%/examples/cmake/modules/FindPkgConfig.cmake %%DATADIR%%/examples/cmake/modules/export_plplot-%%CMAKE_BUILD_TYPE%%.cmake %%DATADIR%%/examples/cmake/modules/export_plplot.cmake +%%DATADIR%%/examples/cmake/modules/language_support.cmake %%DATADIR%%/examples/cmake/modules/pkg-config.cmake %%DATADIR%%/examples/cmake/modules/plplot_configure.cmake -%%DATADIR%%/examples/cmake/modules/language_support.cmake +%%DATADIR%%/examples/cmake/modules/plplot_functions.cmake %%FORTRAN%%%%DATADIR%%/examples/f77/CMakeLists.txt %%FORTRAN%%%%DATADIR%%/examples/f77/Makefile %%FORTRAN%%%%DATADIR%%/examples/f77/plf77demos.inc %%FORTRAN%%%%DATADIR%%/examples/f77/x01f.f %%FORTRAN%%%%DATADIR%%/examples/f77/x02f.f %%FORTRAN%%%%DATADIR%%/examples/f77/x03f.f %%FORTRAN%%%%DATADIR%%/examples/f77/x04f.f %%FORTRAN%%%%DATADIR%%/examples/f77/x05f.f %%FORTRAN%%%%DATADIR%%/examples/f77/x06f.f %%FORTRAN%%%%DATADIR%%/examples/f77/x07f.f %%FORTRAN%%%%DATADIR%%/examples/f77/x08f.f %%FORTRAN%%%%DATADIR%%/examples/f77/x09f.f %%FORTRAN%%%%DATADIR%%/examples/f77/x10f.f %%FORTRAN%%%%DATADIR%%/examples/f77/x11f.f %%FORTRAN%%%%DATADIR%%/examples/f77/x12f.f %%FORTRAN%%%%DATADIR%%/examples/f77/x13f.f %%FORTRAN%%%%DATADIR%%/examples/f77/x14f.f %%FORTRAN%%%%DATADIR%%/examples/f77/x15f.f %%FORTRAN%%%%DATADIR%%/examples/f77/x16af.f %%FORTRAN%%%%DATADIR%%/examples/f77/x16f.f %%FORTRAN%%%%DATADIR%%/examples/f77/x17f.f %%FORTRAN%%%%DATADIR%%/examples/f77/x18f.f %%FORTRAN%%%%DATADIR%%/examples/f77/x19f.f %%FORTRAN%%%%DATADIR%%/examples/f77/x20f.f %%FORTRAN%%%%DATADIR%%/examples/f77/x21f.f %%FORTRAN%%%%DATADIR%%/examples/f77/x22f.f %%FORTRAN%%%%DATADIR%%/examples/f77/x23f.f %%FORTRAN%%%%DATADIR%%/examples/f77/x24f.f %%FORTRAN%%%%DATADIR%%/examples/f77/x25f.f %%FORTRAN%%%%DATADIR%%/examples/f77/x26f.f %%FORTRAN%%%%DATADIR%%/examples/f77/x27f.f %%FORTRAN%%%%DATADIR%%/examples/f77/x28f.f %%FORTRAN%%%%DATADIR%%/examples/f77/x29f.f %%FORTRAN%%%%DATADIR%%/examples/f77/x30f.f %%FORTRAN%%%%DATADIR%%/examples/f77/x31f.f %%FORTRAN%%%%DATADIR%%/examples/f77/x33f.f %%FORTRAN%%%%DATADIR%%/examples/f95/CMakeLists.txt %%FORTRAN%%%%DATADIR%%/examples/f95/Makefile %%FORTRAN%%%%DATADIR%%/examples/f95/plf95demos.inc +%%FORTRAN%%%%DATADIR%%/examples/f95/x00f.f90 %%FORTRAN%%%%DATADIR%%/examples/f95/x01f.f90 %%FORTRAN%%%%DATADIR%%/examples/f95/x02f.f90 %%FORTRAN%%%%DATADIR%%/examples/f95/x03f.f90 %%FORTRAN%%%%DATADIR%%/examples/f95/x04f.f90 %%FORTRAN%%%%DATADIR%%/examples/f95/x05f.f90 %%FORTRAN%%%%DATADIR%%/examples/f95/x06f.f90 %%FORTRAN%%%%DATADIR%%/examples/f95/x07f.f90 %%FORTRAN%%%%DATADIR%%/examples/f95/x08f.f90 %%FORTRAN%%%%DATADIR%%/examples/f95/x09f.f90 %%FORTRAN%%%%DATADIR%%/examples/f95/x10f.f90 %%FORTRAN%%%%DATADIR%%/examples/f95/x11f.f90 %%FORTRAN%%%%DATADIR%%/examples/f95/x12f.f90 %%FORTRAN%%%%DATADIR%%/examples/f95/x13f.f90 %%FORTRAN%%%%DATADIR%%/examples/f95/x14f.f90 %%FORTRAN%%%%DATADIR%%/examples/f95/x15f.f90 %%FORTRAN%%%%DATADIR%%/examples/f95/x16af.f90 %%FORTRAN%%%%DATADIR%%/examples/f95/x16f.f90 %%FORTRAN%%%%DATADIR%%/examples/f95/x17f.f90 %%FORTRAN%%%%DATADIR%%/examples/f95/x18f.f90 %%FORTRAN%%%%DATADIR%%/examples/f95/x19f.f90 %%FORTRAN%%%%DATADIR%%/examples/f95/x20f.f90 %%FORTRAN%%%%DATADIR%%/examples/f95/x21f.f90 %%FORTRAN%%%%DATADIR%%/examples/f95/x22f.f90 %%FORTRAN%%%%DATADIR%%/examples/f95/x23f.f90 %%FORTRAN%%%%DATADIR%%/examples/f95/x24f.f90 %%FORTRAN%%%%DATADIR%%/examples/f95/x25f.f90 %%FORTRAN%%%%DATADIR%%/examples/f95/x26f.f90 %%FORTRAN%%%%DATADIR%%/examples/f95/x27f.f90 %%FORTRAN%%%%DATADIR%%/examples/f95/x28f.f90 %%FORTRAN%%%%DATADIR%%/examples/f95/x29f.f90 %%FORTRAN%%%%DATADIR%%/examples/f95/x30f.f90 %%FORTRAN%%%%DATADIR%%/examples/f95/x31f.f90 %%FORTRAN%%%%DATADIR%%/examples/f95/x33f.f90 %%DATADIR%%/examples/lena.pgm %%LUA%%%%DATADIR%%/examples/lua/CMakeLists.txt %%LUA%%%%DATADIR%%/examples/lua/plplot_examples.lua +%%LUA%%%%DATADIR%%/examples/lua/x00.lua %%LUA%%%%DATADIR%%/examples/lua/x01.lua %%LUA%%%%DATADIR%%/examples/lua/x02.lua %%LUA%%%%DATADIR%%/examples/lua/x03.lua %%LUA%%%%DATADIR%%/examples/lua/x04.lua %%LUA%%%%DATADIR%%/examples/lua/x05.lua %%LUA%%%%DATADIR%%/examples/lua/x06.lua %%LUA%%%%DATADIR%%/examples/lua/x07.lua %%LUA%%%%DATADIR%%/examples/lua/x08.lua %%LUA%%%%DATADIR%%/examples/lua/x09.lua %%LUA%%%%DATADIR%%/examples/lua/x10.lua %%LUA%%%%DATADIR%%/examples/lua/x11.lua %%LUA%%%%DATADIR%%/examples/lua/x12.lua %%LUA%%%%DATADIR%%/examples/lua/x13.lua %%LUA%%%%DATADIR%%/examples/lua/x14.lua %%LUA%%%%DATADIR%%/examples/lua/x15.lua %%LUA%%%%DATADIR%%/examples/lua/x16.lua %%LUA%%%%DATADIR%%/examples/lua/x17.lua %%LUA%%%%DATADIR%%/examples/lua/x18.lua %%LUA%%%%DATADIR%%/examples/lua/x19.lua %%LUA%%%%DATADIR%%/examples/lua/x20.lua %%LUA%%%%DATADIR%%/examples/lua/x21.lua %%LUA%%%%DATADIR%%/examples/lua/x22.lua %%LUA%%%%DATADIR%%/examples/lua/x23.lua %%LUA%%%%DATADIR%%/examples/lua/x24.lua %%LUA%%%%DATADIR%%/examples/lua/x25.lua %%LUA%%%%DATADIR%%/examples/lua/x26.lua %%LUA%%%%DATADIR%%/examples/lua/x27.lua %%LUA%%%%DATADIR%%/examples/lua/x28.lua %%LUA%%%%DATADIR%%/examples/lua/x29.lua %%LUA%%%%DATADIR%%/examples/lua/x30.lua %%LUA%%%%DATADIR%%/examples/lua/x31.lua %%LUA%%%%DATADIR%%/examples/lua/x33.lua %%DATADIR%%/examples/plplot-test-interactive.sh %%DATADIR%%/examples/plplot-test.sh %%PYTHON%%%%DATADIR%%/examples/python/CMakeLists.txt %%PYTHON%%%%DATADIR%%/examples/python/README.logo %%PYTHON%%%%DATADIR%%/examples/python/README.pythondemos %%PYTHON%%%%DATADIR%%/examples/python/README.rendering_tests %%PYTHON%%%%DATADIR%%/examples/python/plplot_logo.py %%PYTHON%%%%DATADIR%%/examples/python/plplot_py_demos.py %%PYTHON%%%%DATADIR%%/examples/python/plplot_python_start.py %%PYTHON%%%%DATADIR%%/examples/python/pythondemos.py %%TCLTK%%%%PYTHON%%%%DATADIR%%/examples/python/pytkdemo %%PYTHON%%%%DATADIR%%/examples/python/test_axis_precision.py %%PYTHON%%%%DATADIR%%/examples/python/test_circle.py %%PYTHON%%%%DATADIR%%/examples/python/test_fill.py %%PYTHON%%%%DATADIR%%/examples/python/test_gradient.py %%PYTHON%%%%DATADIR%%/examples/python/test_hebrew_diacritic.py +%%PYTHON%%%%DATADIR%%/examples/python/test_linebreak.py %%PYTHON%%%%DATADIR%%/examples/python/test_plplot_encodings.py %%PYTHON%%%%DATADIR%%/examples/python/test_plsmem.py %%PYTHON%%%%DATADIR%%/examples/python/test_style.py %%PYTHON%%%%DATADIR%%/examples/python/test_superscript_subscript.py %%PYTHON%%%%DATADIR%%/examples/python/test_symbol_clip.py %%PYTHON%%%%DATADIR%%/examples/python/test_type1.py %%PYTHON%%%%DATADIR%%/examples/python/testh.py +%%PYTHON%%%%DATADIR%%/examples/python/x00 %%PYTHON%%%%DATADIR%%/examples/python/x01 %%TCLTK%%%%PYTHON%%%%DATADIR%%/examples/python/x01.py %%PYTHON%%%%DATADIR%%/examples/python/x02 %%TCLTK%%%%PYTHON%%%%DATADIR%%/examples/python/x02.py %%PYTHON%%%%DATADIR%%/examples/python/x03 %%TCLTK%%%%PYTHON%%%%DATADIR%%/examples/python/x03.py %%PYTHON%%%%DATADIR%%/examples/python/x04 %%TCLTK%%%%PYTHON%%%%DATADIR%%/examples/python/x04.py %%PYTHON%%%%DATADIR%%/examples/python/x05 %%TCLTK%%%%PYTHON%%%%DATADIR%%/examples/python/x05.py %%PYTHON%%%%DATADIR%%/examples/python/x06 %%TCLTK%%%%PYTHON%%%%DATADIR%%/examples/python/x06.py %%PYTHON%%%%DATADIR%%/examples/python/x07 %%TCLTK%%%%PYTHON%%%%DATADIR%%/examples/python/x07.py %%PYTHON%%%%DATADIR%%/examples/python/x08 %%TCLTK%%%%PYTHON%%%%DATADIR%%/examples/python/x08.py %%PYTHON%%%%DATADIR%%/examples/python/x09 %%TCLTK%%%%PYTHON%%%%DATADIR%%/examples/python/x09.py %%PYTHON%%%%DATADIR%%/examples/python/x10 %%TCLTK%%%%PYTHON%%%%DATADIR%%/examples/python/x10.py %%PYTHON%%%%DATADIR%%/examples/python/x11 %%TCLTK%%%%PYTHON%%%%DATADIR%%/examples/python/x11.py %%PYTHON%%%%DATADIR%%/examples/python/x12 %%TCLTK%%%%PYTHON%%%%DATADIR%%/examples/python/x12.py %%PYTHON%%%%DATADIR%%/examples/python/x13 %%TCLTK%%%%PYTHON%%%%DATADIR%%/examples/python/x13.py %%PYTHON%%%%DATADIR%%/examples/python/x14 %%TCLTK%%%%PYTHON%%%%DATADIR%%/examples/python/x14.py %%PYTHON%%%%DATADIR%%/examples/python/x15 %%TCLTK%%%%PYTHON%%%%DATADIR%%/examples/python/x15.py %%PYTHON%%%%DATADIR%%/examples/python/x16 %%TCLTK%%%%PYTHON%%%%DATADIR%%/examples/python/x16.py %%PYTHON%%%%DATADIR%%/examples/python/x17 %%TCLTK%%%%PYTHON%%%%DATADIR%%/examples/python/x17.py %%PYTHON%%%%DATADIR%%/examples/python/x18 %%TCLTK%%%%PYTHON%%%%DATADIR%%/examples/python/x18.py %%PYTHON%%%%DATADIR%%/examples/python/x19 %%TCLTK%%%%PYTHON%%%%DATADIR%%/examples/python/x19.py %%PYTHON%%%%DATADIR%%/examples/python/x20 %%PYTHON%%%%DATADIR%%/examples/python/x21 %%PYTHON%%%%DATADIR%%/examples/python/x22 %%PYTHON%%%%DATADIR%%/examples/python/x23 %%PYTHON%%%%DATADIR%%/examples/python/x24 %%PYTHON%%%%DATADIR%%/examples/python/x25 %%PYTHON%%%%DATADIR%%/examples/python/x26 %%PYTHON%%%%DATADIR%%/examples/python/x27 %%PYTHON%%%%DATADIR%%/examples/python/x28 %%PYTHON%%%%DATADIR%%/examples/python/x29 %%PYTHON%%%%DATADIR%%/examples/python/x30 %%PYTHON%%%%DATADIR%%/examples/python/x31 %%PYTHON%%%%DATADIR%%/examples/python/x33 +%%PYTHON%%%%DATADIR%%/examples/python/xw00.py %%PYTHON%%%%DATADIR%%/examples/python/xw01.py %%PYTHON%%%%DATADIR%%/examples/python/xw02.py %%PYTHON%%%%DATADIR%%/examples/python/xw03.py %%PYTHON%%%%DATADIR%%/examples/python/xw04.py %%PYTHON%%%%DATADIR%%/examples/python/xw05.py %%PYTHON%%%%DATADIR%%/examples/python/xw06.py %%PYTHON%%%%DATADIR%%/examples/python/xw07.py %%PYTHON%%%%DATADIR%%/examples/python/xw08.py %%PYTHON%%%%DATADIR%%/examples/python/xw09.py %%PYTHON%%%%DATADIR%%/examples/python/xw10.py %%PYTHON%%%%DATADIR%%/examples/python/xw11.py %%PYTHON%%%%DATADIR%%/examples/python/xw12.py %%PYTHON%%%%DATADIR%%/examples/python/xw13.py %%PYTHON%%%%DATADIR%%/examples/python/xw14.py %%PYTHON%%%%DATADIR%%/examples/python/xw15.py %%PYTHON%%%%DATADIR%%/examples/python/xw16.py %%PYTHON%%%%DATADIR%%/examples/python/xw17.py %%PYTHON%%%%DATADIR%%/examples/python/xw18.py %%PYTHON%%%%DATADIR%%/examples/python/xw19.py %%PYTHON%%%%DATADIR%%/examples/python/xw20.py %%PYTHON%%%%DATADIR%%/examples/python/xw21.py %%PYTHON%%%%DATADIR%%/examples/python/xw22.py %%PYTHON%%%%DATADIR%%/examples/python/xw23.py %%PYTHON%%%%DATADIR%%/examples/python/xw24.py %%PYTHON%%%%DATADIR%%/examples/python/xw25.py %%PYTHON%%%%DATADIR%%/examples/python/xw26.py %%PYTHON%%%%DATADIR%%/examples/python/xw27.py %%PYTHON%%%%DATADIR%%/examples/python/xw28.py %%PYTHON%%%%DATADIR%%/examples/python/xw29.py %%PYTHON%%%%DATADIR%%/examples/python/xw30.py %%PYTHON%%%%DATADIR%%/examples/python/xw31.py %%PYTHON%%%%DATADIR%%/examples/python/xw33.py %%TCLTK%%%%DATADIR%%/examples/tcl/CMakeLists.txt %%TCLTK%%%%DATADIR%%/examples/tcl/README.tcldemos +%%TCLTK%%%%DATADIR%%/examples/tcl/mktclIndex %%TCLTK%%%%DATADIR%%/examples/tcl/plgrid.tcl %%TCLTK%%%%DATADIR%%/examples/tcl/plot.dat %%TCLTK%%%%DATADIR%%/examples/tcl/plot.tcl %%TCLTK%%%%DATADIR%%/examples/tcl/r.dat %%TCLTK%%%%DATADIR%%/examples/tcl/standard_examples.in %%TCLTK%%%%DATADIR%%/examples/tcl/stats.log %%TCLTK%%%%DATADIR%%/examples/tcl/tclIndex %%TCLTK%%%%DATADIR%%/examples/tcl/tcldemos.tcl +%%TCLTK%%%%DATADIR%%/examples/tcl/x00 +%%TCLTK%%%%DATADIR%%/examples/tcl/x00.tcl %%TCLTK%%%%DATADIR%%/examples/tcl/x01 %%TCLTK%%%%DATADIR%%/examples/tcl/x01.tcl %%TCLTK%%%%DATADIR%%/examples/tcl/x02 %%TCLTK%%%%DATADIR%%/examples/tcl/x02.tcl %%TCLTK%%%%DATADIR%%/examples/tcl/x03 %%TCLTK%%%%DATADIR%%/examples/tcl/x03.tcl %%TCLTK%%%%DATADIR%%/examples/tcl/x04 %%TCLTK%%%%DATADIR%%/examples/tcl/x04.tcl %%TCLTK%%%%DATADIR%%/examples/tcl/x05 %%TCLTK%%%%DATADIR%%/examples/tcl/x05.tcl %%TCLTK%%%%DATADIR%%/examples/tcl/x06 %%TCLTK%%%%DATADIR%%/examples/tcl/x06.tcl %%TCLTK%%%%DATADIR%%/examples/tcl/x07 %%TCLTK%%%%DATADIR%%/examples/tcl/x07.tcl %%TCLTK%%%%DATADIR%%/examples/tcl/x08 %%TCLTK%%%%DATADIR%%/examples/tcl/x08.tcl %%TCLTK%%%%DATADIR%%/examples/tcl/x09 %%TCLTK%%%%DATADIR%%/examples/tcl/x09.tcl %%TCLTK%%%%DATADIR%%/examples/tcl/x10 %%TCLTK%%%%DATADIR%%/examples/tcl/x10.tcl %%TCLTK%%%%DATADIR%%/examples/tcl/x11 %%TCLTK%%%%DATADIR%%/examples/tcl/x11.tcl %%TCLTK%%%%DATADIR%%/examples/tcl/x12 %%TCLTK%%%%DATADIR%%/examples/tcl/x12.tcl %%TCLTK%%%%DATADIR%%/examples/tcl/x13 %%TCLTK%%%%DATADIR%%/examples/tcl/x13.tcl %%TCLTK%%%%DATADIR%%/examples/tcl/x14 %%TCLTK%%%%DATADIR%%/examples/tcl/x14.tcl %%TCLTK%%%%DATADIR%%/examples/tcl/x15 %%TCLTK%%%%DATADIR%%/examples/tcl/x15.tcl %%TCLTK%%%%DATADIR%%/examples/tcl/x16 %%TCLTK%%%%DATADIR%%/examples/tcl/x16.tcl %%TCLTK%%%%DATADIR%%/examples/tcl/x17 %%TCLTK%%%%DATADIR%%/examples/tcl/x17.tcl %%TCLTK%%%%DATADIR%%/examples/tcl/x18 %%TCLTK%%%%DATADIR%%/examples/tcl/x18.tcl %%TCLTK%%%%DATADIR%%/examples/tcl/x19 %%TCLTK%%%%DATADIR%%/examples/tcl/x19.tcl %%TCLTK%%%%DATADIR%%/examples/tcl/x20 %%TCLTK%%%%DATADIR%%/examples/tcl/x20.tcl %%TCLTK%%%%DATADIR%%/examples/tcl/x21 %%TCLTK%%%%DATADIR%%/examples/tcl/x21.tcl %%TCLTK%%%%DATADIR%%/examples/tcl/x22 %%TCLTK%%%%DATADIR%%/examples/tcl/x22.tcl %%TCLTK%%%%DATADIR%%/examples/tcl/x23 %%TCLTK%%%%DATADIR%%/examples/tcl/x23.tcl %%TCLTK%%%%DATADIR%%/examples/tcl/x24 %%TCLTK%%%%DATADIR%%/examples/tcl/x24.tcl %%TCLTK%%%%DATADIR%%/examples/tcl/x25 %%TCLTK%%%%DATADIR%%/examples/tcl/x25.tcl %%TCLTK%%%%DATADIR%%/examples/tcl/x26 %%TCLTK%%%%DATADIR%%/examples/tcl/x26.tcl %%TCLTK%%%%DATADIR%%/examples/tcl/x27 %%TCLTK%%%%DATADIR%%/examples/tcl/x27.tcl %%TCLTK%%%%DATADIR%%/examples/tcl/x28 %%TCLTK%%%%DATADIR%%/examples/tcl/x28.tcl %%TCLTK%%%%DATADIR%%/examples/tcl/x29 %%TCLTK%%%%DATADIR%%/examples/tcl/x29.tcl %%TCLTK%%%%DATADIR%%/examples/tcl/x30 %%TCLTK%%%%DATADIR%%/examples/tcl/x30.tcl %%TCLTK%%%%DATADIR%%/examples/tcl/x31 %%TCLTK%%%%DATADIR%%/examples/tcl/x31.tcl %%TCLTK%%%%DATADIR%%/examples/tcl/x33 %%TCLTK%%%%DATADIR%%/examples/tcl/x33.tcl %%DATADIR%%/examples/test_c.sh %%DATADIR%%/examples/test_c_interactive.sh %%DATADIR%%/examples/test_cxx.sh %%DATADIR%%/examples/test_diff.sh %%FORTRAN%%%%DATADIR%%/examples/test_f77.sh %%FORTRAN%%%%DATADIR%%/examples/test_f95.sh %%LUA%%%%DATADIR%%/examples/test_lua.sh %%PYTHON%%%%DATADIR%%/examples/test_python.sh %%TCLTK%%%%DATADIR%%/examples/test_tcl.sh %%TCLTK%%%%DATADIR%%/examples/tk/CMakeLists.txt %%TCLTK%%%%DATADIR%%/examples/tk/Makefile %%TCLTK%%%%DATADIR%%/examples/tk/README.tkdemos %%TCLTK%%%%DATADIR%%/examples/tk/plgrid %%TCLTK%%%%DATADIR%%/examples/tk/plgrid.in %%TCLTK%%%%DATADIR%%/examples/tk/plgrid.tcl %%TCLTK%%%%DATADIR%%/examples/tk/runAllDemos.tcl %%TCLTK%%%%DATADIR%%/examples/tk/runExtendedDemos.tcl %%TCLTK%%%%DATADIR%%/examples/tk/standard_examples %%TCLTK%%%%DATADIR%%/examples/tk/standard_examples.in %%TCLTK%%%%DATADIR%%/examples/tk/tclIndex %%TCLTK%%%%DATADIR%%/examples/tk/tk01 %%TCLTK%%%%DATADIR%%/examples/tk/tk01.in %%TCLTK%%%%DATADIR%%/examples/tk/tk02 %%TCLTK%%%%DATADIR%%/examples/tk/tk02.in %%TCLTK%%%%DATADIR%%/examples/tk/tk03 %%TCLTK%%%%DATADIR%%/examples/tk/tk03.in %%TCLTK%%%%DATADIR%%/examples/tk/tk04 %%TCLTK%%%%DATADIR%%/examples/tk/tk04.in %%TCLTK%%%%DATADIR%%/examples/tk/tkdemos.tcl +%%TCLTK%%%%DATADIR%%/examples/tk/x00.tcl %%TCLTK%%%%DATADIR%%/examples/tk/x01.tcl %%TCLTK%%%%DATADIR%%/examples/tk/x02.tcl %%TCLTK%%%%DATADIR%%/examples/tk/x03.tcl %%TCLTK%%%%DATADIR%%/examples/tk/x04.tcl %%TCLTK%%%%DATADIR%%/examples/tk/x05.tcl %%TCLTK%%%%DATADIR%%/examples/tk/x06.tcl %%TCLTK%%%%DATADIR%%/examples/tk/x07.tcl %%TCLTK%%%%DATADIR%%/examples/tk/x08.tcl %%TCLTK%%%%DATADIR%%/examples/tk/x09.tcl %%TCLTK%%%%DATADIR%%/examples/tk/x10.tcl %%TCLTK%%%%DATADIR%%/examples/tk/x11.tcl %%TCLTK%%%%DATADIR%%/examples/tk/x12.tcl %%TCLTK%%%%DATADIR%%/examples/tk/x13.tcl %%TCLTK%%%%DATADIR%%/examples/tk/x14.tcl %%TCLTK%%%%DATADIR%%/examples/tk/x15.tcl %%TCLTK%%%%DATADIR%%/examples/tk/x16.tcl %%TCLTK%%%%DATADIR%%/examples/tk/x17.tcl %%TCLTK%%%%DATADIR%%/examples/tk/x18.tcl %%TCLTK%%%%DATADIR%%/examples/tk/x19.tcl %%TCLTK%%%%DATADIR%%/examples/tk/x20.tcl %%TCLTK%%%%DATADIR%%/examples/tk/x21.tcl %%TCLTK%%%%DATADIR%%/examples/tk/x22.tcl %%TCLTK%%%%DATADIR%%/examples/tk/x23.tcl %%TCLTK%%%%DATADIR%%/examples/tk/x24.tcl %%TCLTK%%%%DATADIR%%/examples/tk/x25.tcl %%TCLTK%%%%DATADIR%%/examples/tk/x26.tcl %%TCLTK%%%%DATADIR%%/examples/tk/x27.tcl %%TCLTK%%%%DATADIR%%/examples/tk/x28.tcl %%TCLTK%%%%DATADIR%%/examples/tk/x29.tcl %%TCLTK%%%%DATADIR%%/examples/tk/x30.tcl %%TCLTK%%%%DATADIR%%/examples/tk/x31.tcl +%%TCLTK%%%%DATADIR%%/examples/tk/x33.tcl %%TCLTK%%%%DATADIR%%/examples/tk/xtk01.c %%TCLTK%%%%DATADIR%%/examples/tk/xtk02.c %%TCLTK%%%%DATADIR%%/examples/tk/xtk04.c %%DATADIR%%/globe.map %%TCLTK%%%%DATADIR%%/pkgIndex.tcl %%DATADIR%%/plstnd5.fnt %%DATADIR%%/plxtnd5.fnt %%TCLTK%%%%DATADIR%%/tcl/FileSelector.tcl %%TCLTK%%%%DATADIR%%/tcl/PLWin.itk %%TCLTK%%%%DATADIR%%/tcl/PLXWin.itk %%TCLTK%%%%DATADIR%%/tcl/Pltkwin.tcl %%TCLTK%%%%DATADIR%%/tcl/about.tcl %%TCLTK%%%%DATADIR%%/tcl/cmap0a.pal %%TCLTK%%%%DATADIR%%/tcl/cmap1a.pal %%TCLTK%%%%DATADIR%%/tcl/cmap1a1.pal %%TCLTK%%%%DATADIR%%/tcl/cmap1b.pal %%TCLTK%%%%DATADIR%%/tcl/cmap1c.pal %%TCLTK%%%%DATADIR%%/tcl/cmap1d.pal %%TCLTK%%%%DATADIR%%/tcl/help_gui.tcl %%TCLTK%%%%DATADIR%%/tcl/help_keys.tcl %%TCLTK%%%%DATADIR%%/tcl/help_tcltk.tcl %%TCLTK%%%%DATADIR%%/tcl/plclient.tcl %%TCLTK%%%%DATADIR%%/tcl/plcolor.tcl %%TCLTK%%%%DATADIR%%/tcl/plconfig.tcl %%TCLTK%%%%DATADIR%%/tcl/pldefaults.tcl %%TCLTK%%%%DATADIR%%/tcl/plplot.tcl %%TCLTK%%%%DATADIR%%/tcl/plserver.tcl %%TCLTK%%%%DATADIR%%/tcl/pltools.tcl %%TCLTK%%%%DATADIR%%/tcl/plwidget.tcl %%TCLTK%%%%DATADIR%%/tcl/tclIndex %%DATADIR%%/usa.map %%DATADIR%%/usaglobe.map %%TCLTK%%@dirrm %%DATADIR%%/tcl %%TCLTK%%@dirrm %%DATADIR%%/examples/tk %%TCLTK%%@dirrm %%DATADIR%%/examples/tcl %%PYTHON%%@dirrm %%DATADIR%%/examples/python %%LUA%%@dirrm %%DATADIR%%/examples/lua %%FORTRAN%%@dirrm %%DATADIR%%/examples/f95 %%FORTRAN%%@dirrm %%DATADIR%%/examples/f77 @dirrm %%DATADIR%%/examples/cmake/modules @dirrm %%DATADIR%%/examples/cmake @dirrm %%DATADIR%%/examples/c++ @dirrm %%DATADIR%%/examples/c @dirrm %%DATADIR%%/examples @dirrm %%DATADIR%% @dirrm %%DOCSDIR%% @dirrm lib/plplot/driversd @dirrm lib/plplot %%LUA%%@dirrm %%LUA_MODLIBDIR%%/plplot %%FORTRAN%%@dirrm lib/fortran/modules/plplot %%FORTRAN%%@dirrmtry lib/fortran/modules %%FORTRAN%%@dirrm lib/fortran/include/plplot %%FORTRAN%%@dirrmtry lib/fortran/include %%FORTRAN%%@dirrmtry lib/fortran @dirrm include/plplot