diff -urN science/paraview.orig/Makefile science/paraview/Makefile --- science/paraview.orig/Makefile 2008-04-19 19:53:20.000000000 +0200 +++ science/paraview/Makefile 2008-05-07 19:15:20.000000000 +0200 @@ -6,10 +6,9 @@ # PORTNAME= paraview -PORTVERSION= 2.4.4 -PORTREVISION= 3 +PORTVERSION= 3.2.1 CATEGORIES= science graphics -MASTER_SITES= http://www.paraview.org/files/v2.4/ +MASTER_SITES= http://www.paraview.org/files/v${VERMAJMIN}/ MAINTAINER= ports@FreeBSD.org COMMENT= ParaView is a powerful scientific data visualization application @@ -20,37 +19,49 @@ jpeg.9:${PORTSDIR}/graphics/jpeg \ tiff.4:${PORTSDIR}/graphics/tiff \ freetype.9:${PORTSDIR}/print/freetype2 \ - expat.6:${PORTSDIR}/textproc/expat2 + expat.6:${PORTSDIR}/textproc/expat2 \ + xml2.5:${PORTSDIR}/textproc/libxml2 USE_GL= yes USE_GMAKE= yes +USE_QT_VER= 4 +QT_COMPONENTS= assistant corelib dbus designer gui moc network opengl qmake \ + qt3support qtestlib rcc script sql svg uic uic uic3 xml USE_LDCONFIG= yes -WRKSRC= ${WRKDIR}/${DISTNAME}-build -PATCH_WRKSRC= ${WRKDIR}/${DISTNAME} -PLIST_SUB+= VERMAJORMINOR=2.4 -CMAKE2INST= Utilities/ParaViewConfig.cmake ParaViewConfig.cmake \ - ParaViewLibraryDepends.cmake cmake_install.cmake +# ${LIB_INSTDIR}/VTK is not installed - if needed, we'll have to install vtk5 +#LIB_DEPENDS+= vtksys.5:${PORTSDIR}/math/vtk5 +VTK_VER?= 5.0 + +VERMAJMIN= ${PORTVERSION:R} + +PVDIR= ParaView${PORTVERSION} +WRKSRC= ${WRKDIR}/${PVDIR}-build +PATCH_WRKSRC= ${WRKDIR}/${PVDIR} +PLIST_SUB+= VERMAJORMINOR=${VERMAJMIN} +CMAKE2INST= ParaViewConfig.cmake ParaViewLibraryDepends.cmake \ + cmake_install.cmake MAKE_ENV= CC="${CC}" \ CXX="${CXX}" LIB_INSTDIR= ${PREFIX}/lib/${PORTNAME}-${PORTVERSION:R} -pre-patch: - @${REINPLACE_CMD} -e 's|vtkpng|png|g' \ - ${WRKDIR}/paraview-${PORTVERSION}/GUI/Widgets/CMakeLists.txt - -post-patch: - @${REINPLACE_CMD} -e 's,/usr/X11R6,${LOCALBASE},g' \ - ${WRKDIR}/paraview-${PORTVERSION}/Utilities/TclTk/tk*/unix/configure +REINPLACE_ARGS= -i "" + +pre-configure: + ${REINPLACE_CMD} -e 's|%%QT_QT_INCLUDE_DIR%%|${QT_PREFIX}/include/Qt|' \ + ${PATCH_WRKSRC}/VTK/vtkIncludeDirectories.cmake do-configure: ${MKDIR} ${WRKSRC} cd ${WRKSRC} && \ - ${LOCALBASE}/bin/cmake ../${DISTNAME} \ + QMAKESPEC="${QMAKESPEC}" ${LOCALBASE}/bin/cmake ../${PVDIR} \ -DCMAKE_INSTALL_PREFIX:PATH=${PREFIX} \ - -DCMAKE_C_FLAGS="${CFLAGS} -I${LOCALBASE}/include" \ - -DCMAKE_CXX_FLAGS="${CXXFLAGS} -I${LOCALBASE}/include" \ - -DPARAVIEW_USE_SYSTEM_HDF5=1 \ + -DCMAKE_C_FLAGS="${CFLAGS} -I${LOCALBASE}/include/Qt" \ + -DCMAKE_CXX_FLAGS="${CXXFLAGS} -I${LOCALBASE}/include/Qt" \ + -DDESIRED_QT_VERSION="4" \ + -DQT_QMAKE_EXECUTABLE="${QMAKE}" \ + -DQT_MKSPECS_DIR="${QMAKESPEC}" \ + -DPARAVIEW_USE_SYSTEM_HDF5="ON" \ -DBUILD_SHARED_LIBS="ON" \ -DVTK_USE_SYSTEM_PNG="ON" \ -DVTK_USE_SYSTEM_JPEG="ON" \ @@ -58,16 +69,29 @@ -DVTK_USE_SYSTEM_ZLIB="ON" \ -DVTK_USE_SYSTEM_FREETYPE="ON" \ -DVTK_USE_SYSTEM_EXPAT="ON" \ + -DVTK_USE_SYSTEM_LIBXML2="ON" \ -DVTK_USE_X="ON" \ - -DVTK_HAVE_GETSOCKNAME_WITH_SOCKLEN_T=1 + -DVTK_HAVE_GETSOCKNAME_WITH_SOCKLEN_T=1 \ + -DVTK_INSTALL_QT_PLUGIN_DIR="${LIB_INSTDIR}/plugins/designer" post-install: + # Some more files required by dependencies (e.g. science/openfoam) + ${MKDIR} ${LIB_INSTDIR}/Utilities/VTKClientServer/CMake \ + ${LIB_INSTDIR}/CMake ${LIB_INSTDIR}/bin .for c2f in ${CMAKE2INST} ${SED} -e 's|${WRKSRC}|${LIB_INSTDIR}|g' \ -e 's|${PATCH_WRKSRC}|${LIB_INSTDIR}|g' \ + -e '/PARAVIEW_VTK_DIR/s|${LIB_INSTDIR}/VTK|${LOCALBASE}/lib/vtk-${VTK_VER}|' \ ${WRKSRC}/${c2f} > ${LIB_INSTDIR}/`${BASENAME} ${c2f}` .endfor - ${INSTALL_DATA} ${PATCH_WRKSRC}/ParaViewUse.cmake \ - ${PREFIX}/lib/${PORTNAME}-${PORTVERSION:R} + ${INSTALL_DATA} ${PATCH_WRKSRC}/ParaViewUse.cmake ${LIB_INSTDIR} + ${INSTALL_DATA} ${PATCH_WRKSRC}/CMake/*.cmake ${LIB_INSTDIR}/CMake + ${INSTALL_DATA} ${PATCH_WRKSRC}/Utilities/VTKClientServer/*.h \ + ${LIB_INSTDIR}/Utilities/VTKClientServer/ + ${INSTALL_DATA} ${WRKSRC}/Utilities/VTKClientServer/vtkClientServerConfigure.h \ + ${LIB_INSTDIR}/Utilities/VTKClientServer/ + ${INSTALL_DATA} ${PATCH_WRKSRC}/Utilities/VTKClientServer/CMake/* \ + ${LIB_INSTDIR}/Utilities/VTKClientServer/CMake/ + ${INSTALL_PROGRAM} ${WRKSRC}/bin/vtkWrapClientServer ${LIB_INSTDIR}/bin .include diff -urN science/paraview.orig/distinfo science/paraview/distinfo --- science/paraview.orig/distinfo 2006-09-02 14:50:15.000000000 +0200 +++ science/paraview/distinfo 2008-04-15 21:51:26.000000000 +0200 @@ -1,3 +1,3 @@ -MD5 (paraview-2.4.4.tar.gz) = 7f8e926542268546563e8e8c1d4ad852 -SHA256 (paraview-2.4.4.tar.gz) = 2af388f046ceeff87fa6241ce91bfb55ac090c47f817486f130b7c8714aa8b1e -SIZE (paraview-2.4.4.tar.gz) = 45431692 +MD5 (paraview-3.2.1.tar.gz) = 050830112537c477a1cb20370caded50 +SHA256 (paraview-3.2.1.tar.gz) = d613d6a86f8a9173f42333760c9f0c29b5fcaa85554ba4b9bf61b6fddfae0cb9 +SIZE (paraview-3.2.1.tar.gz) = 21360301 diff -urN science/paraview.orig/files/patch-Applications_Client_CMakeLists.txt science/paraview/files/patch-Applications_Client_CMakeLists.txt --- science/paraview.orig/files/patch-Applications_Client_CMakeLists.txt 1970-01-01 01:00:00.000000000 +0100 +++ science/paraview/files/patch-Applications_Client_CMakeLists.txt 2008-04-29 22:55:38.000000000 +0200 @@ -0,0 +1,86 @@ +--- Applications/Client/CMakeLists.txt.orig 2007-11-07 21:52:05.000000000 +0100 ++++ Applications/Client/CMakeLists.txt 2008-04-29 22:55:14.000000000 +0200 +@@ -453,21 +453,21 @@ + + # Install system libraries on Linux (will not work on any other Unix + # yet) +-FOREACH(fmpglib avcodec avformat avutil) +- IF(FFMPEG_${fmpglib}_LIBRARY) +- GET_FILENAME_COMPONENT(FFMPEG_LIB_DIR_tmp ${FFMPEG_${fmpglib}_LIBRARY} PATH) +- GET_FILENAME_COMPONENT(FFMPEG_LIB_NAME_tmp ${FFMPEG_${fmpglib}_LIBRARY} NAME) +- FILE(GLOB FFMPEG_LIB_LIST RELATIVE ${FFMPEG_LIB_DIR_tmp} "${FFMPEG_${fmpglib}_LIBRARY}*") +- INSTALL(CODE " +-MESSAGE(STATUS \"Installing \${CMAKE_INSTALL_PREFIX}/${PV_INSTALL_LIB_DIR_CM24}/${FFMPEG_LIB_NAME_tmp}\") +-EXECUTE_PROCESS (WORKING_DIRECTORY ${FFMPEG_LIB_DIR_tmp} +- COMMAND tar c ${FFMPEG_LIB_LIST} +- COMMAND tar -xC \${CMAKE_INSTALL_PREFIX}/${PV_INSTALL_LIB_DIR_CM24}) +- " COMPONENT Runtime) +- #INSTALL(FILES ${FFMPEG_${fmpglib}_LIBRARY} DESTINATION ${PV_INSTALL_LIB_DIR_CM24}) +- +- ENDIF(FFMPEG_${fmpglib}_LIBRARY) +-ENDFOREACH(fmpglib) ++#FOREACH(fmpglib avcodec avformat avutil) ++# IF(FFMPEG_${fmpglib}_LIBRARY) ++# GET_FILENAME_COMPONENT(FFMPEG_LIB_DIR_tmp ${FFMPEG_${fmpglib}_LIBRARY} PATH) ++# GET_FILENAME_COMPONENT(FFMPEG_LIB_NAME_tmp ${FFMPEG_${fmpglib}_LIBRARY} NAME) ++# FILE(GLOB FFMPEG_LIB_LIST RELATIVE ${FFMPEG_LIB_DIR_tmp} "${FFMPEG_${fmpglib}_LIBRARY}*") ++# INSTALL(CODE " ++#MESSAGE(STATUS \"Installing \${CMAKE_INSTALL_PREFIX}/${PV_INSTALL_LIB_DIR_CM24}/${FFMPEG_LIB_NAME_tmp}\") ++#EXECUTE_PROCESS (WORKING_DIRECTORY ${FFMPEG_LIB_DIR_tmp} ++# COMMAND tar c ${FFMPEG_LIB_LIST} ++# COMMAND tar -xC \${CMAKE_INSTALL_PREFIX}/${PV_INSTALL_LIB_DIR_CM24}) ++# " COMPONENT Runtime) ++# #INSTALL(FILES ${FFMPEG_${fmpglib}_LIBRARY} DESTINATION ${PV_INSTALL_LIB_DIR_CM24}) ++# ++# ENDIF(FFMPEG_${fmpglib}_LIBRARY) ++#ENDFOREACH(fmpglib) + + SET (QTLIBLIST QTCORE QTGUI QTNETWORK QTXML QTTEST) + # the variable and library names are not the same +@@ -477,26 +477,26 @@ + SET (QTLIBLIST ${QTLIBLIST} QTASSISTANT) + ENDIF (WIN32) + +-IF(NOT Q_WS_MAC) +- FOREACH(qtlib ${QTLIBLIST}) +- IF (NOT WIN32) +- #INSTALL(FILES ${QT_${qtlib}_LIBRARY_RELEASE} DESTINATION ${PV_INSTALL_LIB_DIR_CM24}) +- GET_FILENAME_COMPONENT(QT_LIB_DIR_tmp ${QT_${qtlib}_LIBRARY_RELEASE} PATH) +- GET_FILENAME_COMPONENT(QT_LIB_NAME_tmp ${QT_${qtlib}_LIBRARY_RELEASE} NAME) +- FILE(GLOB QT_LIB_LIST RELATIVE ${QT_LIB_DIR_tmp} "${QT_${qtlib}_LIBRARY_RELEASE}*") +- INSTALL(CODE " +-MESSAGE(STATUS \"Installing \${CMAKE_INSTALL_PREFIX}/${PV_INSTALL_LIB_DIR_CM24}/${QT_LIB_NAME_tmp}\") +-EXECUTE_PROCESS (WORKING_DIRECTORY ${QT_LIB_DIR_tmp} +- COMMAND tar c ${QT_LIB_LIST} +- COMMAND tar -xC \${CMAKE_INSTALL_PREFIX}/${PV_INSTALL_LIB_DIR_CM24}) +- " COMPONENT Runtime) +- ELSE (NOT WIN32) +- GET_FILENAME_COMPONENT(QT_DLL_PATH_tmp ${QT_QMAKE_EXECUTABLE} PATH) +- INSTALL(FILES ${QT_DLL_PATH_tmp}/${qtlib}4.dll DESTINATION ${PV_INSTALL_BIN_DIR_CM24} COMPONENT Runtime) +- ENDIF (NOT WIN32) +- +- ENDFOREACH(qtlib) +-ENDIF(NOT Q_WS_MAC) ++#IF(NOT Q_WS_MAC) ++# FOREACH(qtlib ${QTLIBLIST}) ++# IF (NOT WIN32) ++# #INSTALL(FILES ${QT_${qtlib}_LIBRARY_RELEASE} DESTINATION ${PV_INSTALL_LIB_DIR_CM24}) ++# GET_FILENAME_COMPONENT(QT_LIB_DIR_tmp ${QT_${qtlib}_LIBRARY_RELEASE} PATH) ++# GET_FILENAME_COMPONENT(QT_LIB_NAME_tmp ${QT_${qtlib}_LIBRARY_RELEASE} NAME) ++# FILE(GLOB QT_LIB_LIST RELATIVE ${QT_LIB_DIR_tmp} "${QT_${qtlib}_LIBRARY_RELEASE}*") ++# INSTALL(CODE " ++#MESSAGE(STATUS \"Installing \${CMAKE_INSTALL_PREFIX}/${PV_INSTALL_LIB_DIR_CM24}/${QT_LIB_NAME_tmp}\") ++#EXECUTE_PROCESS (WORKING_DIRECTORY ${QT_LIB_DIR_tmp} ++# COMMAND tar c ${QT_LIB_LIST} ++# COMMAND tar -xC \${CMAKE_INSTALL_PREFIX}/${PV_INSTALL_LIB_DIR_CM24}) ++# " COMPONENT Runtime) ++# ELSE (NOT WIN32) ++# GET_FILENAME_COMPONENT(QT_DLL_PATH_tmp ${QT_QMAKE_EXECUTABLE} PATH) ++# INSTALL(FILES ${QT_DLL_PATH_tmp}/${qtlib}4.dll DESTINATION ${PV_INSTALL_BIN_DIR_CM24} COMPONENT Runtime) ++# ENDIF (NOT WIN32) ++# ++# ENDFOREACH(qtlib) ++#ENDIF(NOT Q_WS_MAC) + + # Hard-coded install rules for anything left to install. These should + # probably go to a local cmake file. Change to match the build system's diff -urN science/paraview.orig/files/patch-CMakeLists.txt science/paraview/files/patch-CMakeLists.txt --- science/paraview.orig/files/patch-CMakeLists.txt 2006-08-06 00:23:21.000000000 +0200 +++ science/paraview/files/patch-CMakeLists.txt 1970-01-01 01:00:00.000000000 +0100 @@ -1,17 +0,0 @@ ---- ./CMakeLists.txt.orig Thu Jun 29 15:01:13 2006 -+++ ./CMakeLists.txt Sun Aug 6 00:22:36 2006 -@@ -318,9 +318,12 @@ - SET(ICET_MPI_MAX_NUMPROCS "${VTK_MPI_MAX_NUMPROCS}" CACHE INTERNAL - "This is set from VTK_MPI_MAX_NUMPROCS.") - -+IF(VTK_USE_X) -+ FIND_PACKAGE(X11) -+ SET(VTK_INCLUDE_DIR ${X11_INCLUDE_DIR}) -+ENDIF(VTK_USE_X) - -- --SET(VTK_INCLUDE_DIR -+SET(VTK_INCLUDE_DIR ${VTK_INCLUDE_DIR} - ${ParaView_SOURCE_DIR}/VTK - ${ParaView_BINARY_DIR}/VTK - ${ParaView_SOURCE_DIR}/VTK/Utilities diff -urN science/paraview.orig/files/patch-GUI_Widgets_CMakeLists.txt science/paraview/files/patch-GUI_Widgets_CMakeLists.txt --- science/paraview.orig/files/patch-GUI_Widgets_CMakeLists.txt 2006-09-01 08:22:21.000000000 +0200 +++ science/paraview/files/patch-GUI_Widgets_CMakeLists.txt 1970-01-01 01:00:00.000000000 +0100 @@ -1,21 +0,0 @@ ---- ./GUI/Widgets/CMakeLists.txt.orig Thu Oct 20 16:32:11 2005 -+++ ./GUI/Widgets/CMakeLists.txt Sun Aug 6 10:38:41 2006 -@@ -397,7 +397,17 @@ - TARGET_LINK_LIBRARIES (KWWidgets vtkParallel) - ENDIF(VTK_USE_PARALLEL OR VTK_USE_PARALLEL_ISSET) - ENDIF(VTK_WRAP_TCL) --TARGET_LINK_LIBRARIES (KWWidgets png) -+ -+IF(VTK_USE_SYSTEM_PNG) -+ TARGET_LINK_LIBRARIES (KWWidgets png) -+ INCLUDE_DIRECTORIES( -+ ${KWWidgets_INCLUDE_PATH} -+ ${VTK_INCLUDE_DIR} -+ ${PNG_INCLUDE_DIR} -+ ) -+ELSE(VTK_USE_SYSTEM_PNG) -+ TARGET_LINK_LIBRARIES (KWWidgets vtkpng) -+ENDIF(VTK_USE_SYSTEM_PNG) - - # We need KWSys - diff -urN science/paraview.orig/files/patch-Qt_CMakeLists.txt science/paraview/files/patch-Qt_CMakeLists.txt --- science/paraview.orig/files/patch-Qt_CMakeLists.txt 1970-01-01 01:00:00.000000000 +0100 +++ science/paraview/files/patch-Qt_CMakeLists.txt 2008-04-29 18:38:38.000000000 +0200 @@ -0,0 +1,29 @@ +--- Qt/CMakeLists.txt.orig 2007-11-07 21:51:44.000000000 +0100 ++++ Qt/CMakeLists.txt 2008-04-29 18:38:14.000000000 +0200 +@@ -13,10 +13,11 @@ + # To make support of ParaView tractable, we only support a single version + # of Qt at one time. If you really want to use a newer version of Qt, you + # can delete this check, but you are on your own. +-STRING(REGEX MATCH "^4\\.2\\.[0-9]+" qt_version_tmp "${QTVERSION}") +-IF (NOT qt_version_tmp) +- MESSAGE(SEND_ERROR "Qt ${QTVERSION} not supported. Please use Qt 4.2.") +-ENDIF (NOT qt_version_tmp) ++#STRING(REGEX MATCH "^4\\.2\\.[0-9]+" qt_version_tmp "${QTVERSION}") ++#IF (NOT qt_version_tmp) ++# MESSAGE(SEND_ERROR "Qt ${QTVERSION} not supported. Please use Qt 4.2.") ++#ENDIF (NOT qt_version_tmp) ++MESSAGE(WARNING " Vendor only supports Qt 4.2 - Qt ${QTVERSION} found (FreeBSD port patch)") + + # help CMake fine QtUiTools on Mac (binary install) + IF(Q_WS_MAC AND QT4_FOUND AND QT_QTCORE_FOUND AND NOT QT_QTUITOOLS_FOUND) +@@ -60,6 +61,10 @@ + SET(QT_USE_QTUITOOLS TRUE) + SET(QT_USE_QTNETWORK TRUE) + SET(QT_USE_QTXML TRUE) ++ ++# FreeBSD patch needed if Qt3 also installed ++INCLUDE_DIRECTORIES("${QT_INCLUDE_DIR}/Qt") ++ + # This ensures that the Qt includes dir etc are set properly. + # We don't need to find the Qt4 package or include the use file + # in any of the SUBDIRS in this directory. diff -urN science/paraview.orig/files/patch-Utilities-Xdmf-libsrc-XdmfDataDesc.cxx science/paraview/files/patch-Utilities-Xdmf-libsrc-XdmfDataDesc.cxx --- science/paraview.orig/files/patch-Utilities-Xdmf-libsrc-XdmfDataDesc.cxx 2008-03-19 08:44:40.000000000 +0100 +++ science/paraview/files/patch-Utilities-Xdmf-libsrc-XdmfDataDesc.cxx 1970-01-01 01:00:00.000000000 +0100 @@ -1,11 +0,0 @@ ---- Utilities/Xdmf/libsrc/XdmfDataDesc.cxx.orig 2008-03-09 00:31:13.000000000 +0800 -+++ Utilities/Xdmf/libsrc/XdmfDataDesc.cxx 2008-03-09 00:32:42.000000000 +0800 -@@ -347,7 +347,7 @@ - status = H5Sselect_elements( this->DataSpace, - H5S_SELECT_SET, - NElements, -- ( const hsize_t **)HCoordinates); -+ ( const hsize_t *)HCoordinates); - #else - status = H5Sselect_elements( this->DataSpace, - H5S_SELECT_SET, diff -urN science/paraview.orig/files/patch-Utilities_Xdmf2_CMakeLists.txt science/paraview/files/patch-Utilities_Xdmf2_CMakeLists.txt --- science/paraview.orig/files/patch-Utilities_Xdmf2_CMakeLists.txt 1970-01-01 01:00:00.000000000 +0100 +++ science/paraview/files/patch-Utilities_Xdmf2_CMakeLists.txt 2008-04-26 19:37:12.000000000 +0200 @@ -0,0 +1,19 @@ +--- ./Utilities/Xdmf2/CMakeLists.txt.orig 2007-11-07 21:51:40.000000000 +0100 ++++ ./Utilities/Xdmf2/CMakeLists.txt 2008-04-26 19:36:49.000000000 +0200 +@@ -14,7 +14,7 @@ + ENDIF(NOT BUILD_SHARED_LIBS) + + SET(XDMF_BUILD_VTK 1) +-SET(LIBXML2_LIBRARY vtklibxml2) ++SET(LIBXML2_LIBRARY xml2) + + SET(HDF5_LIBRARY ${PARAVIEW_HDF5_LIBRARIES}) + IF(VTK_USE_SYSTEM_EXPAT) +@@ -90,6 +90,7 @@ + ${ParaView_SOURCE_DIR}/VTK/Utilities + ${ParaView_BINARY_DIR}/VTK/Utilities + ${ParaView_BINARY_DIR}/VTK/Utilities/vtklibxml2 ++ ${LIBXML2_INCLUDE_DIR} + ${HDF5_INCLUDE_DIR} + ) + SUBDIRS(Ice) diff -urN science/paraview.orig/files/patch-Utilities_Xdmf2_libsrc_XdmfDataDesc.cxx science/paraview/files/patch-Utilities_Xdmf2_libsrc_XdmfDataDesc.cxx --- science/paraview.orig/files/patch-Utilities_Xdmf2_libsrc_XdmfDataDesc.cxx 1970-01-01 01:00:00.000000000 +0100 +++ science/paraview/files/patch-Utilities_Xdmf2_libsrc_XdmfDataDesc.cxx 2008-04-26 22:07:17.000000000 +0200 @@ -0,0 +1,11 @@ +--- Utilities/Xdmf2/libsrc/XdmfDataDesc.cxx.orig 2007-11-07 21:51:40.000000000 +0100 ++++ Utilities/Xdmf2/libsrc/XdmfDataDesc.cxx 2008-04-26 22:06:18.000000000 +0200 +@@ -347,7 +347,7 @@ + status = H5Sselect_elements( this->DataSpace, + H5S_SELECT_SET, + NElements, +- ( const hsize_t **)HCoordinates); ++ ( const hsize_t *)HCoordinates); + #else + status = H5Sselect_elements( this->DataSpace, + H5S_SELECT_SET, diff -urN science/paraview.orig/files/patch-VTK_CMake_CMakeLists.txt science/paraview/files/patch-VTK_CMake_CMakeLists.txt --- science/paraview.orig/files/patch-VTK_CMake_CMakeLists.txt 2006-08-06 09:30:51.000000000 +0200 +++ science/paraview/files/patch-VTK_CMake_CMakeLists.txt 1970-01-01 01:00:00.000000000 +0100 @@ -1,11 +0,0 @@ ---- ./VTK/CMake/CMakeLists.txt.orig Mon Mar 15 16:01:43 2004 -+++ ./VTK/CMake/CMakeLists.txt Sun Aug 6 09:30:22 2006 -@@ -33,8 +33,6 @@ - - # Remove any existing flag. - SET(CMAKE_ABI_VARS -- CMAKE_C_FLAGS -- CMAKE_CXX_FLAGS - CMAKE_EXE_LINKER_FLAGS - CMAKE_SHARED_LINKER_FLAGS - CMAKE_MODULE_LINKER_FLAGS diff -urN science/paraview.orig/files/patch-VTK_Infovis_CMakeLists.txt science/paraview/files/patch-VTK_Infovis_CMakeLists.txt --- science/paraview.orig/files/patch-VTK_Infovis_CMakeLists.txt 1970-01-01 01:00:00.000000000 +0100 +++ science/paraview/files/patch-VTK_Infovis_CMakeLists.txt 2008-04-25 23:34:55.000000000 +0200 @@ -0,0 +1,11 @@ +--- ./VTK/Infovis/CMakeLists.txt.orig 2007-11-07 21:51:56.000000000 +0100 ++++ ./VTK/Infovis/CMakeLists.txt 2008-04-25 23:22:36.000000000 +0200 +@@ -3,7 +3,7 @@ + SET(KIT_TCL_LIBS vtkWidgetsTCL) + SET(KIT_PYTHON_LIBS vtkWidgetsPythonD) + SET(KIT_JAVA_LIBS vtkWidgetsJava) +-SET(KIT_LIBS vtkWidgets vtklibxml2) ++SET(KIT_LIBS vtkWidgets xml2) + + SET( Kit_SRCS + vtkCommunity2DLayoutStrategy.cxx diff -urN science/paraview.orig/files/patch-VTK_Infovis_vtkXMLTreeReader.cxx science/paraview/files/patch-VTK_Infovis_vtkXMLTreeReader.cxx --- science/paraview.orig/files/patch-VTK_Infovis_vtkXMLTreeReader.cxx 1970-01-01 01:00:00.000000000 +0100 +++ science/paraview/files/patch-VTK_Infovis_vtkXMLTreeReader.cxx 2008-04-25 23:13:53.000000000 +0200 @@ -0,0 +1,13 @@ +--- ./VTK/Infovis/vtkXMLTreeReader.cxx.orig 2007-11-07 21:51:56.000000000 +0100 ++++ ./VTK/Infovis/vtkXMLTreeReader.cxx 2008-04-25 23:13:08.000000000 +0200 +@@ -27,8 +27,8 @@ + #include "vtkStringArray.h" + #include "vtkTree.h" + +-#include +-#include ++#include ++#include + + vtkCxxRevisionMacro(vtkXMLTreeReader, "$Revision: 1.5 $"); + vtkStandardNewMacro(vtkXMLTreeReader); diff -urN science/paraview.orig/files/patch-VTK_vtkIncludeDirectories.cmake science/paraview/files/patch-VTK_vtkIncludeDirectories.cmake --- science/paraview.orig/files/patch-VTK_vtkIncludeDirectories.cmake 1970-01-01 01:00:00.000000000 +0100 +++ science/paraview/files/patch-VTK_vtkIncludeDirectories.cmake 2008-04-28 07:10:33.000000000 +0200 @@ -0,0 +1,14 @@ +--- ./VTK/vtkIncludeDirectories.cmake.orig 2007-11-07 21:52:05.000000000 +0100 ++++ ./VTK/vtkIncludeDirectories.cmake 2008-04-28 00:06:45.000000000 +0200 +@@ -147,9 +147,11 @@ + #----------------------------------------------------------------------------- + # Include directories needed for .cxx files in VTK. These include + # directories will NOT be available to user projects. ++# FreeBSD patch needed if Qt3 also installed + SET(VTK_INCLUDE_DIRS_BUILD_TREE_CXX + ${VTK_SOURCE_DIR}/Utilities/ftgl/src + ${VTK_BINARY_DIR}/Utilities/ftgl ++ %%QT_QT_INCLUDE_DIR%% + ) + + IF(VTK_USE_TK) diff -urN science/paraview.orig/pkg-plist science/paraview/pkg-plist --- science/paraview.orig/pkg-plist 2006-04-24 07:26:51.000000000 +0200 +++ science/paraview/pkg-plist 2008-05-07 19:14:23.000000000 +0200 @@ -1,9 +1,336 @@ +bin/assistant bin/paraview -bin/pvbatch -bin/pvclient +bin/pvTestDriver bin/pvdataserver bin/pvrenderserver bin/pvserver +bin/vtkSMExtractDocumentation +include/paraview-%%VERMAJORMINOR%%/verdict.h +include/paraview-%%VERMAJORMINOR%%/vtkMINC.h +include/paraview-%%VERMAJORMINOR%%/vtksys/Base64.h +include/paraview-%%VERMAJORMINOR%%/vtksys/CommandLineArguments.hxx +include/paraview-%%VERMAJORMINOR%%/vtksys/Configure.h +include/paraview-%%VERMAJORMINOR%%/vtksys/Configure.hxx +include/paraview-%%VERMAJORMINOR%%/vtksys/Directory.hxx +include/paraview-%%VERMAJORMINOR%%/vtksys/DynamicLoader.hxx +include/paraview-%%VERMAJORMINOR%%/vtksys/Glob.hxx +include/paraview-%%VERMAJORMINOR%%/vtksys/Process.h +include/paraview-%%VERMAJORMINOR%%/vtksys/RegularExpression.hxx +include/paraview-%%VERMAJORMINOR%%/vtksys/SharedForward.h +include/paraview-%%VERMAJORMINOR%%/vtksys/String.hxx +include/paraview-%%VERMAJORMINOR%%/vtksys/System.h +include/paraview-%%VERMAJORMINOR%%/vtksys/SystemTools.hxx +include/paraview-%%VERMAJORMINOR%%/vtksys/auto_ptr.hxx +include/paraview-%%VERMAJORMINOR%%/vtksys/hash_fun.hxx +include/paraview-%%VERMAJORMINOR%%/vtksys/hash_map.hxx +include/paraview-%%VERMAJORMINOR%%/vtksys/hash_set.hxx +include/paraview-%%VERMAJORMINOR%%/vtksys/hashtable.hxx +include/paraview-%%VERMAJORMINOR%%/vtksys/ios/fstream +include/paraview-%%VERMAJORMINOR%%/vtksys/ios/iosfwd +include/paraview-%%VERMAJORMINOR%%/vtksys/ios/iostream +include/paraview-%%VERMAJORMINOR%%/vtksys/ios/sstream +include/paraview-%%VERMAJORMINOR%%/vtksys/stl/algorithm +include/paraview-%%VERMAJORMINOR%%/vtksys/stl/deque +include/paraview-%%VERMAJORMINOR%%/vtksys/stl/exception +include/paraview-%%VERMAJORMINOR%%/vtksys/stl/functional +include/paraview-%%VERMAJORMINOR%%/vtksys/stl/iterator +include/paraview-%%VERMAJORMINOR%%/vtksys/stl/list +include/paraview-%%VERMAJORMINOR%%/vtksys/stl/map +include/paraview-%%VERMAJORMINOR%%/vtksys/stl/memory +include/paraview-%%VERMAJORMINOR%%/vtksys/stl/new +include/paraview-%%VERMAJORMINOR%%/vtksys/stl/numeric +include/paraview-%%VERMAJORMINOR%%/vtksys/stl/queue +include/paraview-%%VERMAJORMINOR%%/vtksys/stl/set +include/paraview-%%VERMAJORMINOR%%/vtksys/stl/stack +include/paraview-%%VERMAJORMINOR%%/vtksys/stl/stdexcept +include/paraview-%%VERMAJORMINOR%%/vtksys/stl/string +include/paraview-%%VERMAJORMINOR%%/vtksys/stl/string.hxx +include/paraview-%%VERMAJORMINOR%%/vtksys/stl/utility +include/paraview-%%VERMAJORMINOR%%/vtksys/stl/vector +lib/paraview-%%VERMAJORMINOR%%/CMake/FindHDF5.cmake +lib/paraview-%%VERMAJORMINOR%%/CMake/FindVTK.cmake +lib/paraview-%%VERMAJORMINOR%%/CMake/FindZLIB.cmake +lib/paraview-%%VERMAJORMINOR%%/CMake/ParaViewCommon.cmake +lib/paraview-%%VERMAJORMINOR%%/CMake/ParaViewPlugins.cmake +lib/paraview-%%VERMAJORMINOR%%/CMake/TryRunResults-ParaView3-bgl-gcc.cmake +lib/paraview-%%VERMAJORMINOR%%/CMake/TryRunResults-ParaView3-bgl-xlc.cmake +lib/paraview-%%VERMAJORMINOR%%/CMake/TryRunResults-ParaView3-catamount-gcc.cmake +lib/paraview-%%VERMAJORMINOR%%/Documentation/3DView.png +lib/paraview-%%VERMAJORMINOR%%/Documentation/3DViewTitleBarButtons.png +lib/paraview-%%VERMAJORMINOR%%/Documentation/AVSucdReader.html +lib/paraview-%%VERMAJORMINOR%%/Documentation/AboutDialog.png +lib/paraview-%%VERMAJORMINOR%%/Documentation/ActiveVariableControlsToolbar.png +lib/paraview-%%VERMAJORMINOR%%/Documentation/ActiveVariableSelection.png +lib/paraview-%%VERMAJORMINOR%%/Documentation/AddPropertyLinkDialog.png +lib/paraview-%%VERMAJORMINOR%%/Documentation/AdjustCameraButton.png +lib/paraview-%%VERMAJORMINOR%%/Documentation/AfterSwapViews.png +lib/paraview-%%VERMAJORMINOR%%/Documentation/Animation.html +lib/paraview-%%VERMAJORMINOR%%/Documentation/AnimationInspector.png +lib/paraview-%%VERMAJORMINOR%%/Documentation/AnimationToolbar.png +lib/paraview-%%VERMAJORMINOR%%/Documentation/Append.html +lib/paraview-%%VERMAJORMINOR%%/Documentation/AppendAttributes.html +lib/paraview-%%VERMAJORMINOR%%/Documentation/AppendPolyData.html +lib/paraview-%%VERMAJORMINOR%%/Documentation/ArbitrarySourceGlyph.html +lib/paraview-%%VERMAJORMINOR%%/Documentation/ArbitrarySourceStreamTracer.html +lib/paraview-%%VERMAJORMINOR%%/Documentation/ArrowSource.html +lib/paraview-%%VERMAJORMINOR%%/Documentation/Axes.html +lib/paraview-%%VERMAJORMINOR%%/Documentation/BeforeSwapViews.png +lib/paraview-%%VERMAJORMINOR%%/Documentation/BrownianPoints.html +lib/paraview-%%VERMAJORMINOR%%/Documentation/CMakeFiles/CMakeDirectoryInformation.cmake +lib/paraview-%%VERMAJORMINOR%%/Documentation/CMakeFiles/progress.make +lib/paraview-%%VERMAJORMINOR%%/Documentation/CSVReader.html +lib/paraview-%%VERMAJORMINOR%%/Documentation/CSVWriter.html +lib/paraview-%%VERMAJORMINOR%%/Documentation/CTHPart.html +lib/paraview-%%VERMAJORMINOR%%/Documentation/Calculator.html +lib/paraview-%%VERMAJORMINOR%%/Documentation/CalculatorButton.png +lib/paraview-%%VERMAJORMINOR%%/Documentation/CameraControlsToolbar.png +lib/paraview-%%VERMAJORMINOR%%/Documentation/CellCenters.html +lib/paraview-%%VERMAJORMINOR%%/Documentation/CellData.png +lib/paraview-%%VERMAJORMINOR%%/Documentation/CellDataToPointData.html +lib/paraview-%%VERMAJORMINOR%%/Documentation/ChangeInput.png +lib/paraview-%%VERMAJORMINOR%%/Documentation/ChooseServerDialog.png +lib/paraview-%%VERMAJORMINOR%%/Documentation/CleanPolyData.html +lib/paraview-%%VERMAJORMINOR%%/Documentation/CleanUnstructuredGrid.html +lib/paraview-%%VERMAJORMINOR%%/Documentation/Clip.html +lib/paraview-%%VERMAJORMINOR%%/Documentation/ClipButton.png +lib/paraview-%%VERMAJORMINOR%%/Documentation/CloseViewButton.png +lib/paraview-%%VERMAJORMINOR%%/Documentation/ColorEditor.png +lib/paraview-%%VERMAJORMINOR%%/Documentation/ColorLegend.png +lib/paraview-%%VERMAJORMINOR%%/Documentation/ColorLegendToolbarButton.png +lib/paraview-%%VERMAJORMINOR%%/Documentation/ColorOpacityEditor.png +lib/paraview-%%VERMAJORMINOR%%/Documentation/ColorScalePresets.png +lib/paraview-%%VERMAJORMINOR%%/Documentation/CommonFiltersToolbar.png +lib/paraview-%%VERMAJORMINOR%%/Documentation/ComparativeView.png +lib/paraview-%%VERMAJORMINOR%%/Documentation/ConeSource.html +lib/paraview-%%VERMAJORMINOR%%/Documentation/ConfigureNewServerDialog.png +lib/paraview-%%VERMAJORMINOR%%/Documentation/ConfigureServerCommandDialog.png +lib/paraview-%%VERMAJORMINOR%%/Documentation/ConfigureServerManualDialog.png +lib/paraview-%%VERMAJORMINOR%%/Documentation/ConnectButton.png +lib/paraview-%%VERMAJORMINOR%%/Documentation/Contour.html +lib/paraview-%%VERMAJORMINOR%%/Documentation/ContourButton.png +lib/paraview-%%VERMAJORMINOR%%/Documentation/CreateLookmarkDialog.png +lib/paraview-%%VERMAJORMINOR%%/Documentation/CreateViewButtons.png +lib/paraview-%%VERMAJORMINOR%%/Documentation/CubeSource.html +lib/paraview-%%VERMAJORMINOR%%/Documentation/CurrentTimeControlsToolbar.png +lib/paraview-%%VERMAJORMINOR%%/Documentation/Curvatures.html +lib/paraview-%%VERMAJORMINOR%%/Documentation/Cut.html +lib/paraview-%%VERMAJORMINOR%%/Documentation/CutButton.png +lib/paraview-%%VERMAJORMINOR%%/Documentation/CylinderSource.html +lib/paraview-%%VERMAJORMINOR%%/Documentation/D3.html +lib/paraview-%%VERMAJORMINOR%%/Documentation/DEMReader.html +lib/paraview-%%VERMAJORMINOR%%/Documentation/DartTestfile.txt +lib/paraview-%%VERMAJORMINOR%%/Documentation/DataSetSurfaceFilter.html +lib/paraview-%%VERMAJORMINOR%%/Documentation/DataSetTriangleFilter.html +lib/paraview-%%VERMAJORMINOR%%/Documentation/DataSetWriter.html +lib/paraview-%%VERMAJORMINOR%%/Documentation/DecimatePro.html +lib/paraview-%%VERMAJORMINOR%%/Documentation/Delaunay2D.html +lib/paraview-%%VERMAJORMINOR%%/Documentation/DisconnectButton.png +lib/paraview-%%VERMAJORMINOR%%/Documentation/DisconnectDialog.png +lib/paraview-%%VERMAJORMINOR%%/Documentation/DisconnectReconnectDialog.png +lib/paraview-%%VERMAJORMINOR%%/Documentation/Display.html +lib/paraview-%%VERMAJORMINOR%%/Documentation/DisplayColorByArray.png +lib/paraview-%%VERMAJORMINOR%%/Documentation/DisplayColorSolid.png +lib/paraview-%%VERMAJORMINOR%%/Documentation/DisplayStyle.png +lib/paraview-%%VERMAJORMINOR%%/Documentation/DisplayTransformation.png +lib/paraview-%%VERMAJORMINOR%%/Documentation/DisplayView.png +lib/paraview-%%VERMAJORMINOR%%/Documentation/EditMenu.html +lib/paraview-%%VERMAJORMINOR%%/Documentation/EditViewOptionsButton.png +lib/paraview-%%VERMAJORMINOR%%/Documentation/ElevationFilter.html +lib/paraview-%%VERMAJORMINOR%%/Documentation/EnSightWriter.html +lib/paraview-%%VERMAJORMINOR%%/Documentation/ExodusIIReader.html +lib/paraview-%%VERMAJORMINOR%%/Documentation/ExodusIIWriter.html +lib/paraview-%%VERMAJORMINOR%%/Documentation/ExodusReader.html +lib/paraview-%%VERMAJORMINOR%%/Documentation/Exponential.png +lib/paraview-%%VERMAJORMINOR%%/Documentation/ExtendedHelp.html +lib/paraview-%%VERMAJORMINOR%%/Documentation/ExtractCellsOverTime.html +lib/paraview-%%VERMAJORMINOR%%/Documentation/ExtractDataSets.html +lib/paraview-%%VERMAJORMINOR%%/Documentation/ExtractEdges.html +lib/paraview-%%VERMAJORMINOR%%/Documentation/ExtractFieldDataOverTime.html +lib/paraview-%%VERMAJORMINOR%%/Documentation/ExtractGeometry.html +lib/paraview-%%VERMAJORMINOR%%/Documentation/ExtractGrid.html +lib/paraview-%%VERMAJORMINOR%%/Documentation/ExtractGridButton.png +lib/paraview-%%VERMAJORMINOR%%/Documentation/ExtractHistogram.html +lib/paraview-%%VERMAJORMINOR%%/Documentation/ExtractLevel.html +lib/paraview-%%VERMAJORMINOR%%/Documentation/ExtractPointsOverTime.html +lib/paraview-%%VERMAJORMINOR%%/Documentation/ExtractSelections.html +lib/paraview-%%VERMAJORMINOR%%/Documentation/Facet Reader.html +lib/paraview-%%VERMAJORMINOR%%/Documentation/FeatureEdges.html +lib/paraview-%%VERMAJORMINOR%%/Documentation/FileMenu.html +lib/paraview-%%VERMAJORMINOR%%/Documentation/GUIOverview.html +lib/paraview-%%VERMAJORMINOR%%/Documentation/Glyph.html +lib/paraview-%%VERMAJORMINOR%%/Documentation/GlyphButton.png +lib/paraview-%%VERMAJORMINOR%%/Documentation/GlyphSource2D.html +lib/paraview-%%VERMAJORMINOR%%/Documentation/Gradient.html +lib/paraview-%%VERMAJORMINOR%%/Documentation/GradientMagnitude.html +lib/paraview-%%VERMAJORMINOR%%/Documentation/GroupDataSets.html +lib/paraview-%%VERMAJORMINOR%%/Documentation/GroupDataSetsButton.png +lib/paraview-%%VERMAJORMINOR%%/Documentation/GroupIdScalars.html +lib/paraview-%%VERMAJORMINOR%%/Documentation/HelpButton.png +lib/paraview-%%VERMAJORMINOR%%/Documentation/HelpMenu.html +lib/paraview-%%VERMAJORMINOR%%/Documentation/HierarchicalFractal.html +lib/paraview-%%VERMAJORMINOR%%/Documentation/HistogramDisplayTab.png +lib/paraview-%%VERMAJORMINOR%%/Documentation/HistogramView.png +lib/paraview-%%VERMAJORMINOR%%/Documentation/ImageMandelbrotSource.html +lib/paraview-%%VERMAJORMINOR%%/Documentation/ImageReader.html +lib/paraview-%%VERMAJORMINOR%%/Documentation/Information.html +lib/paraview-%%VERMAJORMINOR%%/Documentation/InformationTab.png +lib/paraview-%%VERMAJORMINOR%%/Documentation/IntegrateAttributes.html +lib/paraview-%%VERMAJORMINOR%%/Documentation/IntegrateFlowThroughSurface.html +lib/paraview-%%VERMAJORMINOR%%/Documentation/InteractButton.png +lib/paraview-%%VERMAJORMINOR%%/Documentation/LSDynaReader.html +lib/paraview-%%VERMAJORMINOR%%/Documentation/LabeledSelection.png +lib/paraview-%%VERMAJORMINOR%%/Documentation/LegacyVTKFileReader.html +lib/paraview-%%VERMAJORMINOR%%/Documentation/LineSource.html +lib/paraview-%%VERMAJORMINOR%%/Documentation/LinearExtrusionFilter.html +lib/paraview-%%VERMAJORMINOR%%/Documentation/LinkManagerDialog.png +lib/paraview-%%VERMAJORMINOR%%/Documentation/LookmarkBrowser.png +lib/paraview-%%VERMAJORMINOR%%/Documentation/LookmarkButton.png +lib/paraview-%%VERMAJORMINOR%%/Documentation/LookmarkInspector.png +lib/paraview-%%VERMAJORMINOR%%/Documentation/Lookmarks.html +lib/paraview-%%VERMAJORMINOR%%/Documentation/LoopSubdivisionFilter.html +lib/paraview-%%VERMAJORMINOR%%/Documentation/MainControlsToolbar.png +lib/paraview-%%VERMAJORMINOR%%/Documentation/Makefile +lib/paraview-%%VERMAJORMINOR%%/Documentation/MaskPoints.html +lib/paraview-%%VERMAJORMINOR%%/Documentation/MaximizeViewButton.png +lib/paraview-%%VERMAJORMINOR%%/Documentation/Median.html +lib/paraview-%%VERMAJORMINOR%%/Documentation/MeshQuality.html +lib/paraview-%%VERMAJORMINOR%%/Documentation/Meta Image Reader.html +lib/paraview-%%VERMAJORMINOR%%/Documentation/MetaImageWriter.html +lib/paraview-%%VERMAJORMINOR%%/Documentation/ObjectInspector.html +lib/paraview-%%VERMAJORMINOR%%/Documentation/OctreeDepthLimit.html +lib/paraview-%%VERMAJORMINOR%%/Documentation/OctreeDepthScalars.html +lib/paraview-%%VERMAJORMINOR%%/Documentation/OctreeFractal.html +lib/paraview-%%VERMAJORMINOR%%/Documentation/OpenDataFileButton.png +lib/paraview-%%VERMAJORMINOR%%/Documentation/OutlineCornerFilter.html +lib/paraview-%%VERMAJORMINOR%%/Documentation/OutlineFilter.html +lib/paraview-%%VERMAJORMINOR%%/Documentation/OutlineSource.html +lib/paraview-%%VERMAJORMINOR%%/Documentation/P3DReader.html +lib/paraview-%%VERMAJORMINOR%%/Documentation/PLYWriter.html +lib/paraview-%%VERMAJORMINOR%%/Documentation/PNGReader.html +lib/paraview-%%VERMAJORMINOR%%/Documentation/PNGWriter.html +lib/paraview-%%VERMAJORMINOR%%/Documentation/PVConnectivityFilter.html +lib/paraview-%%VERMAJORMINOR%%/Documentation/PVDReader.html +lib/paraview-%%VERMAJORMINOR%%/Documentation/ParaViewBook_FrontCover_smaller.png +lib/paraview-%%VERMAJORMINOR%%/Documentation/ParaViewDoc.css +lib/paraview-%%VERMAJORMINOR%%/Documentation/ParaViewFilters.html +lib/paraview-%%VERMAJORMINOR%%/Documentation/ParaViewGUIOverview.png +lib/paraview-%%VERMAJORMINOR%%/Documentation/ParaViewLogo.png +lib/paraview-%%VERMAJORMINOR%%/Documentation/ParaViewReaders.html +lib/paraview-%%VERMAJORMINOR%%/Documentation/ParaViewSources.html +lib/paraview-%%VERMAJORMINOR%%/Documentation/ParaViewWriters.html +lib/paraview-%%VERMAJORMINOR%%/Documentation/ParticleTracer.html +lib/paraview-%%VERMAJORMINOR%%/Documentation/PhastaReader.html +lib/paraview-%%VERMAJORMINOR%%/Documentation/PickCenterButton.png +lib/paraview-%%VERMAJORMINOR%%/Documentation/PipelineBrowser.html +lib/paraview-%%VERMAJORMINOR%%/Documentation/PipelineBrowser.png +lib/paraview-%%VERMAJORMINOR%%/Documentation/PlaneSource.html +lib/paraview-%%VERMAJORMINOR%%/Documentation/PointData.png +lib/paraview-%%VERMAJORMINOR%%/Documentation/PointDataToCellData.html +lib/paraview-%%VERMAJORMINOR%%/Documentation/PointSource.html +lib/paraview-%%VERMAJORMINOR%%/Documentation/PolyDataNormals.html +lib/paraview-%%VERMAJORMINOR%%/Documentation/Probe.html +lib/paraview-%%VERMAJORMINOR%%/Documentation/ProbeLine.html +lib/paraview-%%VERMAJORMINOR%%/Documentation/ProbeLocationOverTime.html +lib/paraview-%%VERMAJORMINOR%%/Documentation/ProbePoint.html +lib/paraview-%%VERMAJORMINOR%%/Documentation/ProcessIdScalars.html +lib/paraview-%%VERMAJORMINOR%%/Documentation/Properties.html +lib/paraview-%%VERMAJORMINOR%%/Documentation/PropertiesButtons.png +lib/paraview-%%VERMAJORMINOR%%/Documentation/Ramp.png +lib/paraview-%%VERMAJORMINOR%%/Documentation/ReaderSelectionDialog.png +lib/paraview-%%VERMAJORMINOR%%/Documentation/RedoButton.png +lib/paraview-%%VERMAJORMINOR%%/Documentation/RedoCameraButton.png +lib/paraview-%%VERMAJORMINOR%%/Documentation/RepresentationToolbar.png +lib/paraview-%%VERMAJORMINOR%%/Documentation/ResetCameraButton.png +lib/paraview-%%VERMAJORMINOR%%/Documentation/ResetCenterButton.png +lib/paraview-%%VERMAJORMINOR%%/Documentation/RestoreViewButton.png +lib/paraview-%%VERMAJORMINOR%%/Documentation/RightClickFilter.png +lib/paraview-%%VERMAJORMINOR%%/Documentation/SESAMEReader.html +lib/paraview-%%VERMAJORMINOR%%/Documentation/SaveDataFileButton.png +lib/paraview-%%VERMAJORMINOR%%/Documentation/SelectCellsFrustumButton.png +lib/paraview-%%VERMAJORMINOR%%/Documentation/SelectCellsSurfaceButton.png +lib/paraview-%%VERMAJORMINOR%%/Documentation/SelectPointsFrustumButton.png +lib/paraview-%%VERMAJORMINOR%%/Documentation/SelectPointsSurfaceButton.png +lib/paraview-%%VERMAJORMINOR%%/Documentation/SelectionInspector.html +lib/paraview-%%VERMAJORMINOR%%/Documentation/SelectionInspector.png +lib/paraview-%%VERMAJORMINOR%%/Documentation/SelectionToolbar.png +lib/paraview-%%VERMAJORMINOR%%/Documentation/SettingsGeneral.png +lib/paraview-%%VERMAJORMINOR%%/Documentation/ShowCenterButton.png +lib/paraview-%%VERMAJORMINOR%%/Documentation/Sinusoidal.png +lib/paraview-%%VERMAJORMINOR%%/Documentation/SplitViewHorizontalButton.png +lib/paraview-%%VERMAJORMINOR%%/Documentation/SplitViewVerticalButton.png +lib/paraview-%%VERMAJORMINOR%%/Documentation/SpreadsheetView.png +lib/paraview-%%VERMAJORMINOR%%/Documentation/Step.png +lib/paraview-%%VERMAJORMINOR%%/Documentation/StreamlinesButton.png +lib/paraview-%%VERMAJORMINOR%%/Documentation/ThresholdButton.png +lib/paraview-%%VERMAJORMINOR%%/Documentation/TimeStepSpinBox.png +lib/paraview-%%VERMAJORMINOR%%/Documentation/TimeValueEntry.png +lib/paraview-%%VERMAJORMINOR%%/Documentation/TimerLog.png +lib/paraview-%%VERMAJORMINOR%%/Documentation/ToolsMenu.html +lib/paraview-%%VERMAJORMINOR%%/Documentation/UndoButton.png +lib/paraview-%%VERMAJORMINOR%%/Documentation/UndoCameraButton.png +lib/paraview-%%VERMAJORMINOR%%/Documentation/UndoRedoToolbar.png +lib/paraview-%%VERMAJORMINOR%%/Documentation/UngroupDataSetsButton.png +lib/paraview-%%VERMAJORMINOR%%/Documentation/VCRBack.png +lib/paraview-%%VERMAJORMINOR%%/Documentation/VCRFirst.png +lib/paraview-%%VERMAJORMINOR%%/Documentation/VCRForward.png +lib/paraview-%%VERMAJORMINOR%%/Documentation/VCRLast.png +lib/paraview-%%VERMAJORMINOR%%/Documentation/VCRLoop.png +lib/paraview-%%VERMAJORMINOR%%/Documentation/VCRPause.png +lib/paraview-%%VERMAJORMINOR%%/Documentation/VCRPlay.png +lib/paraview-%%VERMAJORMINOR%%/Documentation/View+XButton.png +lib/paraview-%%VERMAJORMINOR%%/Documentation/View+YButton.png +lib/paraview-%%VERMAJORMINOR%%/Documentation/View+ZButton.png +lib/paraview-%%VERMAJORMINOR%%/Documentation/View-XButton.png +lib/paraview-%%VERMAJORMINOR%%/Documentation/View-YButton.png +lib/paraview-%%VERMAJORMINOR%%/Documentation/View-ZButton.png +lib/paraview-%%VERMAJORMINOR%%/Documentation/ViewMenu.html +lib/paraview-%%VERMAJORMINOR%%/Documentation/ViewTitleBarButtons.png +lib/paraview-%%VERMAJORMINOR%%/Documentation/Views.html +lib/paraview-%%VERMAJORMINOR%%/Documentation/WarpVectorButton.png +lib/paraview-%%VERMAJORMINOR%%/Documentation/XMLHierarchicalBoxDataReader.html +lib/paraview-%%VERMAJORMINOR%%/Documentation/XMLHierarchicalDataReader.html +lib/paraview-%%VERMAJORMINOR%%/Documentation/XMLImageDataReader.html +lib/paraview-%%VERMAJORMINOR%%/Documentation/XMLImageDataWriter.html +lib/paraview-%%VERMAJORMINOR%%/Documentation/XMLMultiBlockDataReader.html +lib/paraview-%%VERMAJORMINOR%%/Documentation/XMLMultiGroupDataReader.html +lib/paraview-%%VERMAJORMINOR%%/Documentation/XMLPImageDataReader.html +lib/paraview-%%VERMAJORMINOR%%/Documentation/XMLPImageDataWriter.html +lib/paraview-%%VERMAJORMINOR%%/Documentation/XMLPMultiGroupDataWriter.html +lib/paraview-%%VERMAJORMINOR%%/Documentation/XMLPPolyDataReader.html +lib/paraview-%%VERMAJORMINOR%%/Documentation/XMLPPolyDataWriter.html +lib/paraview-%%VERMAJORMINOR%%/Documentation/XMLPRectilinearGridReader.html +lib/paraview-%%VERMAJORMINOR%%/Documentation/XMLPRectilinearGridWriter.html +lib/paraview-%%VERMAJORMINOR%%/Documentation/XMLPStructuredGridReader.html +lib/paraview-%%VERMAJORMINOR%%/Documentation/XMLPStructuredGridWriter.html +lib/paraview-%%VERMAJORMINOR%%/Documentation/XMLPUnstructuredGridReader.html +lib/paraview-%%VERMAJORMINOR%%/Documentation/XMLPUnstructuredGridWriter.html +lib/paraview-%%VERMAJORMINOR%%/Documentation/XMLPVDWriter.html +lib/paraview-%%VERMAJORMINOR%%/Documentation/XMLPolyDataReader.html +lib/paraview-%%VERMAJORMINOR%%/Documentation/XMLPolyDataWriter.html +lib/paraview-%%VERMAJORMINOR%%/Documentation/XMLRectilinearGridReader.html +lib/paraview-%%VERMAJORMINOR%%/Documentation/XMLRectilinearGridWriter.html +lib/paraview-%%VERMAJORMINOR%%/Documentation/XMLStructuredGridReader.html +lib/paraview-%%VERMAJORMINOR%%/Documentation/XMLStructuredGridWriter.html +lib/paraview-%%VERMAJORMINOR%%/Documentation/XMLUnstructuredGridReader.html +lib/paraview-%%VERMAJORMINOR%%/Documentation/XMLUnstructuredGridWriter.html +lib/paraview-%%VERMAJORMINOR%%/Documentation/XYPlotDisplayTab.png +lib/paraview-%%VERMAJORMINOR%%/Documentation/XYPlotView.png +lib/paraview-%%VERMAJORMINOR%%/Documentation/XdmfReader.html +lib/paraview-%%VERMAJORMINOR%%/Documentation/XdmfWriter.html +lib/paraview-%%VERMAJORMINOR%%/Documentation/byureader.html +lib/paraview-%%VERMAJORMINOR%%/Documentation/cmake_install.cmake +lib/paraview-%%VERMAJORMINOR%%/Documentation/ensight.html +lib/paraview-%%VERMAJORMINOR%%/Documentation/ensightMS.html +lib/paraview-%%VERMAJORMINOR%%/Documentation/gaussiancubereader.html +lib/paraview-%%VERMAJORMINOR%%/Documentation/index.html +lib/paraview-%%VERMAJORMINOR%%/Documentation/pdbreader.html +lib/paraview-%%VERMAJORMINOR%%/Documentation/plyreader.html +lib/paraview-%%VERMAJORMINOR%%/Documentation/popreader.html +lib/paraview-%%VERMAJORMINOR%%/Documentation/pvtkfile.html +lib/paraview-%%VERMAJORMINOR%%/Documentation/spcthreader.html +lib/paraview-%%VERMAJORMINOR%%/Documentation/stlreader.html +lib/paraview-%%VERMAJORMINOR%%/Documentation/vrmlreader.html +lib/paraview-%%VERMAJORMINOR%%/Documentation/xyzreader.html lib/paraview-%%VERMAJORMINOR%%/ParaViewConfig.cmake lib/paraview-%%VERMAJORMINOR%%/ParaViewLibraryDepends.cmake lib/paraview-%%VERMAJORMINOR%%/ParaViewUse.cmake @@ -13,368 +340,121 @@ lib/paraview-%%VERMAJORMINOR%%/ServerManager/Resources/sources.xml lib/paraview-%%VERMAJORMINOR%%/ServerManager/Resources/utilities.xml lib/paraview-%%VERMAJORMINOR%%/ServerManager/Resources/writers.xml +lib/paraview-%%VERMAJORMINOR%%/Utilities/VTKClientServer/CMake/vtkWrapClientServer.cmake +lib/paraview-%%VERMAJORMINOR%%/Utilities/VTKClientServer/CMake/vtkWrapClientServer.cxx.in +lib/paraview-%%VERMAJORMINOR%%/Utilities/VTKClientServer/vtkClientServerConfigure.h +lib/paraview-%%VERMAJORMINOR%%/Utilities/VTKClientServer/vtkClientServerID.h +lib/paraview-%%VERMAJORMINOR%%/Utilities/VTKClientServer/vtkClientServerInterpreter.h +lib/paraview-%%VERMAJORMINOR%%/Utilities/VTKClientServer/vtkClientServerStream.h +lib/paraview-%%VERMAJORMINOR%%/assistant-real +lib/paraview-%%VERMAJORMINOR%%/bin/vtkWrapClientServer lib/paraview-%%VERMAJORMINOR%%/cmake_install.cmake +lib/paraview-%%VERMAJORMINOR%%/doc/verdict/1.2.0/README +lib/paraview-%%VERMAJORMINOR%%/doc/verdict/1.2.0/Verdict.doc +lib/paraview-%%VERMAJORMINOR%%/doc/verdict/1.2.0/Verdict.htm +lib/paraview-%%VERMAJORMINOR%%/doc/verdict/1.2.0/hex.eps +lib/paraview-%%VERMAJORMINOR%%/doc/verdict/1.2.0/hex.tex +lib/paraview-%%VERMAJORMINOR%%/doc/verdict/1.2.0/quad.eps +lib/paraview-%%VERMAJORMINOR%%/doc/verdict/1.2.0/quad.tex +lib/paraview-%%VERMAJORMINOR%%/doc/verdict/1.2.0/tri.eps +lib/paraview-%%VERMAJORMINOR%%/doc/verdict/1.2.0/tri.tex +lib/paraview-%%VERMAJORMINOR%%/doc/verdict/1.2.0/verdict_test.cpp lib/paraview-%%VERMAJORMINOR%%/libKWCommon.so -lib/paraview-%%VERMAJORMINOR%%/libKWWidgets.so -lib/paraview-%%VERMAJORMINOR%%/libSPCTH.so +lib/paraview-%%VERMAJORMINOR%%/libQVTK.so +lib/paraview-%%VERMAJORMINOR%%/libQVTK.so.pv%%VERMAJORMINOR%% +lib/paraview-%%VERMAJORMINOR%%/libQtChart.so +lib/paraview-%%VERMAJORMINOR%%/libQtTesting.so lib/paraview-%%VERMAJORMINOR%%/libXdmf.so +lib/paraview-%%VERMAJORMINOR%%/libpqComponents.so +lib/paraview-%%VERMAJORMINOR%%/libpqCore.so +lib/paraview-%%VERMAJORMINOR%%/libpqWidgets.so +lib/paraview-%%VERMAJORMINOR%%/libverdict.so +lib/paraview-%%VERMAJORMINOR%%/libverdict.so.1.2 +lib/paraview-%%VERMAJORMINOR%%/libverdict.so.1.2.0 lib/paraview-%%VERMAJORMINOR%%/libvtkClientServer.so lib/paraview-%%VERMAJORMINOR%%/libvtkCommon.so -lib/paraview-%%VERMAJORMINOR%%/libvtkCommon.so.pv2.4 +lib/paraview-%%VERMAJORMINOR%%/libvtkCommon.so.pv%%VERMAJORMINOR%% lib/paraview-%%VERMAJORMINOR%%/libvtkCommonCS.so -lib/paraview-%%VERMAJORMINOR%%/libvtkCommonTCL.so lib/paraview-%%VERMAJORMINOR%%/libvtkDICOMParser.so -lib/paraview-%%VERMAJORMINOR%%/libvtkDICOMParser.so.pv2.4 +lib/paraview-%%VERMAJORMINOR%%/libvtkDICOMParser.so.pv%%VERMAJORMINOR%% lib/paraview-%%VERMAJORMINOR%%/libvtkFiltering.so -lib/paraview-%%VERMAJORMINOR%%/libvtkFiltering.so.pv2.4 +lib/paraview-%%VERMAJORMINOR%%/libvtkFiltering.so.pv%%VERMAJORMINOR%% lib/paraview-%%VERMAJORMINOR%%/libvtkFilteringCS.so lib/paraview-%%VERMAJORMINOR%%/libvtkGenericFiltering.so -lib/paraview-%%VERMAJORMINOR%%/libvtkGenericFiltering.so.pv2.4 +lib/paraview-%%VERMAJORMINOR%%/libvtkGenericFiltering.so.pv%%VERMAJORMINOR%% lib/paraview-%%VERMAJORMINOR%%/libvtkGenericFilteringCS.so lib/paraview-%%VERMAJORMINOR%%/libvtkGraphics.so -lib/paraview-%%VERMAJORMINOR%%/libvtkGraphics.so.pv2.4 +lib/paraview-%%VERMAJORMINOR%%/libvtkGraphics.so.pv%%VERMAJORMINOR%% lib/paraview-%%VERMAJORMINOR%%/libvtkGraphicsCS.so lib/paraview-%%VERMAJORMINOR%%/libvtkHybrid.so -lib/paraview-%%VERMAJORMINOR%%/libvtkHybrid.so.pv2.4 +lib/paraview-%%VERMAJORMINOR%%/libvtkHybrid.so.pv%%VERMAJORMINOR%% lib/paraview-%%VERMAJORMINOR%%/libvtkHybridCS.so lib/paraview-%%VERMAJORMINOR%%/libvtkIO.so -lib/paraview-%%VERMAJORMINOR%%/libvtkIO.so.pv2.4 +lib/paraview-%%VERMAJORMINOR%%/libvtkIO.so.pv%%VERMAJORMINOR%% lib/paraview-%%VERMAJORMINOR%%/libvtkIOCS.so lib/paraview-%%VERMAJORMINOR%%/libvtkImaging.so -lib/paraview-%%VERMAJORMINOR%%/libvtkImaging.so.pv2.4 +lib/paraview-%%VERMAJORMINOR%%/libvtkImaging.so.pv%%VERMAJORMINOR%% lib/paraview-%%VERMAJORMINOR%%/libvtkImagingCS.so -lib/paraview-%%VERMAJORMINOR%%/libvtkKWParaView.so -lib/paraview-%%VERMAJORMINOR%%/libvtkKWParaViewCS.so -lib/paraview-%%VERMAJORMINOR%%/libvtkMPEG2Encode.so -lib/paraview-%%VERMAJORMINOR%%/libvtkMPEG2Encode.so.pv2.4 +lib/paraview-%%VERMAJORMINOR%%/libvtkInfovis.so +lib/paraview-%%VERMAJORMINOR%%/libvtkInfovis.so.pv%%VERMAJORMINOR%% +lib/paraview-%%VERMAJORMINOR%%/libvtkInfovisCS.so lib/paraview-%%VERMAJORMINOR%%/libvtkNetCDF.so -lib/paraview-%%VERMAJORMINOR%%/libvtkNetCDF.so.pv2.4 +lib/paraview-%%VERMAJORMINOR%%/libvtkNetCDF.so.pv%%VERMAJORMINOR%% +lib/paraview-%%VERMAJORMINOR%%/libvtkPVCommandOptions.so lib/paraview-%%VERMAJORMINOR%%/libvtkPVFilters.so lib/paraview-%%VERMAJORMINOR%%/libvtkPVFiltersCS.so lib/paraview-%%VERMAJORMINOR%%/libvtkPVServerCommon.so lib/paraview-%%VERMAJORMINOR%%/libvtkPVServerCommonCS.so -lib/paraview-%%VERMAJORMINOR%%/libvtkPVServerCommonTCL.so lib/paraview-%%VERMAJORMINOR%%/libvtkPVServerManager.so -lib/paraview-%%VERMAJORMINOR%%/libvtkPVServerManagerTCL.so lib/paraview-%%VERMAJORMINOR%%/libvtkParallel.so -lib/paraview-%%VERMAJORMINOR%%/libvtkParallel.so.pv2.4 +lib/paraview-%%VERMAJORMINOR%%/libvtkParallel.so.pv%%VERMAJORMINOR%% lib/paraview-%%VERMAJORMINOR%%/libvtkParallelCS.so lib/paraview-%%VERMAJORMINOR%%/libvtkRendering.so -lib/paraview-%%VERMAJORMINOR%%/libvtkRendering.so.pv2.4 +lib/paraview-%%VERMAJORMINOR%%/libvtkRendering.so.pv%%VERMAJORMINOR%% lib/paraview-%%VERMAJORMINOR%%/libvtkRenderingCS.so +lib/paraview-%%VERMAJORMINOR%%/libvtkViews.so +lib/paraview-%%VERMAJORMINOR%%/libvtkViews.so.pv%%VERMAJORMINOR%% lib/paraview-%%VERMAJORMINOR%%/libvtkVolumeRendering.so -lib/paraview-%%VERMAJORMINOR%%/libvtkVolumeRendering.so.pv2.4 +lib/paraview-%%VERMAJORMINOR%%/libvtkVolumeRendering.so.pv%%VERMAJORMINOR%% lib/paraview-%%VERMAJORMINOR%%/libvtkVolumeRenderingCS.so lib/paraview-%%VERMAJORMINOR%%/libvtkWidgets.so -lib/paraview-%%VERMAJORMINOR%%/libvtkWidgets.so.pv2.4 +lib/paraview-%%VERMAJORMINOR%%/libvtkWidgets.so.pv%%VERMAJORMINOR%% lib/paraview-%%VERMAJORMINOR%%/libvtkWidgetsCS.so lib/paraview-%%VERMAJORMINOR%%/libvtkXdmf.so lib/paraview-%%VERMAJORMINOR%%/libvtkXdmfCS.so lib/paraview-%%VERMAJORMINOR%%/libvtkexoIIc.so -lib/paraview-%%VERMAJORMINOR%%/libvtkexoIIc.so.pv2.4 +lib/paraview-%%VERMAJORMINOR%%/libvtkexoIIc.so.pv%%VERMAJORMINOR%% lib/paraview-%%VERMAJORMINOR%%/libvtkftgl.so -lib/paraview-%%VERMAJORMINOR%%/libvtkftgl.so.pv2.4 +lib/paraview-%%VERMAJORMINOR%%/libvtkftgl.so.pv%%VERMAJORMINOR%% +lib/paraview-%%VERMAJORMINOR%%/libvtkmetaio.so +lib/paraview-%%VERMAJORMINOR%%/libvtkmetaio.so.pv%%VERMAJORMINOR%% +lib/paraview-%%VERMAJORMINOR%%/libvtksqlite.so +lib/paraview-%%VERMAJORMINOR%%/libvtksqlite.so.pv%%VERMAJORMINOR%% lib/paraview-%%VERMAJORMINOR%%/libvtksys.so -lib/paraview-%%VERMAJORMINOR%%/libvtksys.so.pv2.4 +lib/paraview-%%VERMAJORMINOR%%/libvtksys.so.pv%%VERMAJORMINOR%% lib/paraview-%%VERMAJORMINOR%%/paraview-real -lib/paraview-%%VERMAJORMINOR%%/pvbatch-real -lib/paraview-%%VERMAJORMINOR%%/pvclient-real +lib/paraview-%%VERMAJORMINOR%%/plugins/designer/libQVTKWidgetPlugin.so +lib/paraview-%%VERMAJORMINOR%%/pqClient.adp +lib/paraview-%%VERMAJORMINOR%%/pvTestDriver-real lib/paraview-%%VERMAJORMINOR%%/pvdataserver-real lib/paraview-%%VERMAJORMINOR%%/pvrenderserver-real lib/paraview-%%VERMAJORMINOR%%/pvserver-real -lib/paraview-%%VERMAJORMINOR%%/tcl/kwwidgets/kwwidgets.tcl -lib/paraview-%%VERMAJORMINOR%%/tcl/pkgIndex.tcl -lib/paraview-%%VERMAJORMINOR%%/tcl8.4/auto.tcl -lib/paraview-%%VERMAJORMINOR%%/tcl8.4/encoding/ascii.enc -lib/paraview-%%VERMAJORMINOR%%/tcl8.4/encoding/big5.enc -lib/paraview-%%VERMAJORMINOR%%/tcl8.4/encoding/cp1250.enc -lib/paraview-%%VERMAJORMINOR%%/tcl8.4/encoding/cp1251.enc -lib/paraview-%%VERMAJORMINOR%%/tcl8.4/encoding/cp1252.enc -lib/paraview-%%VERMAJORMINOR%%/tcl8.4/encoding/cp1253.enc -lib/paraview-%%VERMAJORMINOR%%/tcl8.4/encoding/cp1254.enc -lib/paraview-%%VERMAJORMINOR%%/tcl8.4/encoding/cp1255.enc -lib/paraview-%%VERMAJORMINOR%%/tcl8.4/encoding/cp1256.enc -lib/paraview-%%VERMAJORMINOR%%/tcl8.4/encoding/cp1257.enc -lib/paraview-%%VERMAJORMINOR%%/tcl8.4/encoding/cp1258.enc -lib/paraview-%%VERMAJORMINOR%%/tcl8.4/encoding/cp437.enc -lib/paraview-%%VERMAJORMINOR%%/tcl8.4/encoding/cp737.enc -lib/paraview-%%VERMAJORMINOR%%/tcl8.4/encoding/cp775.enc -lib/paraview-%%VERMAJORMINOR%%/tcl8.4/encoding/cp850.enc -lib/paraview-%%VERMAJORMINOR%%/tcl8.4/encoding/cp852.enc -lib/paraview-%%VERMAJORMINOR%%/tcl8.4/encoding/cp855.enc -lib/paraview-%%VERMAJORMINOR%%/tcl8.4/encoding/cp857.enc -lib/paraview-%%VERMAJORMINOR%%/tcl8.4/encoding/cp860.enc -lib/paraview-%%VERMAJORMINOR%%/tcl8.4/encoding/cp861.enc -lib/paraview-%%VERMAJORMINOR%%/tcl8.4/encoding/cp862.enc -lib/paraview-%%VERMAJORMINOR%%/tcl8.4/encoding/cp863.enc -lib/paraview-%%VERMAJORMINOR%%/tcl8.4/encoding/cp864.enc -lib/paraview-%%VERMAJORMINOR%%/tcl8.4/encoding/cp865.enc -lib/paraview-%%VERMAJORMINOR%%/tcl8.4/encoding/cp866.enc -lib/paraview-%%VERMAJORMINOR%%/tcl8.4/encoding/cp869.enc -lib/paraview-%%VERMAJORMINOR%%/tcl8.4/encoding/cp874.enc -lib/paraview-%%VERMAJORMINOR%%/tcl8.4/encoding/cp932.enc -lib/paraview-%%VERMAJORMINOR%%/tcl8.4/encoding/cp936.enc -lib/paraview-%%VERMAJORMINOR%%/tcl8.4/encoding/cp949.enc -lib/paraview-%%VERMAJORMINOR%%/tcl8.4/encoding/cp950.enc -lib/paraview-%%VERMAJORMINOR%%/tcl8.4/encoding/dingbats.enc -lib/paraview-%%VERMAJORMINOR%%/tcl8.4/encoding/ebcdic.enc -lib/paraview-%%VERMAJORMINOR%%/tcl8.4/encoding/euc-cn.enc -lib/paraview-%%VERMAJORMINOR%%/tcl8.4/encoding/euc-jp.enc -lib/paraview-%%VERMAJORMINOR%%/tcl8.4/encoding/euc-kr.enc -lib/paraview-%%VERMAJORMINOR%%/tcl8.4/encoding/gb12345.enc -lib/paraview-%%VERMAJORMINOR%%/tcl8.4/encoding/gb1988.enc -lib/paraview-%%VERMAJORMINOR%%/tcl8.4/encoding/gb2312-raw.enc -lib/paraview-%%VERMAJORMINOR%%/tcl8.4/encoding/gb2312.enc -lib/paraview-%%VERMAJORMINOR%%/tcl8.4/encoding/iso2022-jp.enc -lib/paraview-%%VERMAJORMINOR%%/tcl8.4/encoding/iso2022-kr.enc -lib/paraview-%%VERMAJORMINOR%%/tcl8.4/encoding/iso2022.enc -lib/paraview-%%VERMAJORMINOR%%/tcl8.4/encoding/iso8859-1.enc -lib/paraview-%%VERMAJORMINOR%%/tcl8.4/encoding/iso8859-10.enc -lib/paraview-%%VERMAJORMINOR%%/tcl8.4/encoding/iso8859-13.enc -lib/paraview-%%VERMAJORMINOR%%/tcl8.4/encoding/iso8859-14.enc -lib/paraview-%%VERMAJORMINOR%%/tcl8.4/encoding/iso8859-15.enc -lib/paraview-%%VERMAJORMINOR%%/tcl8.4/encoding/iso8859-16.enc -lib/paraview-%%VERMAJORMINOR%%/tcl8.4/encoding/iso8859-2.enc -lib/paraview-%%VERMAJORMINOR%%/tcl8.4/encoding/iso8859-3.enc -lib/paraview-%%VERMAJORMINOR%%/tcl8.4/encoding/iso8859-4.enc -lib/paraview-%%VERMAJORMINOR%%/tcl8.4/encoding/iso8859-5.enc -lib/paraview-%%VERMAJORMINOR%%/tcl8.4/encoding/iso8859-6.enc -lib/paraview-%%VERMAJORMINOR%%/tcl8.4/encoding/iso8859-7.enc -lib/paraview-%%VERMAJORMINOR%%/tcl8.4/encoding/iso8859-8.enc -lib/paraview-%%VERMAJORMINOR%%/tcl8.4/encoding/iso8859-9.enc -lib/paraview-%%VERMAJORMINOR%%/tcl8.4/encoding/jis0201.enc -lib/paraview-%%VERMAJORMINOR%%/tcl8.4/encoding/jis0208.enc -lib/paraview-%%VERMAJORMINOR%%/tcl8.4/encoding/jis0212.enc -lib/paraview-%%VERMAJORMINOR%%/tcl8.4/encoding/koi8-r.enc -lib/paraview-%%VERMAJORMINOR%%/tcl8.4/encoding/koi8-u.enc -lib/paraview-%%VERMAJORMINOR%%/tcl8.4/encoding/ksc5601.enc -lib/paraview-%%VERMAJORMINOR%%/tcl8.4/encoding/macCentEuro.enc -lib/paraview-%%VERMAJORMINOR%%/tcl8.4/encoding/macCroatian.enc -lib/paraview-%%VERMAJORMINOR%%/tcl8.4/encoding/macCyrillic.enc -lib/paraview-%%VERMAJORMINOR%%/tcl8.4/encoding/macDingbats.enc -lib/paraview-%%VERMAJORMINOR%%/tcl8.4/encoding/macGreek.enc -lib/paraview-%%VERMAJORMINOR%%/tcl8.4/encoding/macIceland.enc -lib/paraview-%%VERMAJORMINOR%%/tcl8.4/encoding/macJapan.enc -lib/paraview-%%VERMAJORMINOR%%/tcl8.4/encoding/macRoman.enc -lib/paraview-%%VERMAJORMINOR%%/tcl8.4/encoding/macRomania.enc -lib/paraview-%%VERMAJORMINOR%%/tcl8.4/encoding/macThai.enc -lib/paraview-%%VERMAJORMINOR%%/tcl8.4/encoding/macTurkish.enc -lib/paraview-%%VERMAJORMINOR%%/tcl8.4/encoding/macUkraine.enc -lib/paraview-%%VERMAJORMINOR%%/tcl8.4/encoding/shiftjis.enc -lib/paraview-%%VERMAJORMINOR%%/tcl8.4/encoding/symbol.enc -lib/paraview-%%VERMAJORMINOR%%/tcl8.4/encoding/tis-620.enc -lib/paraview-%%VERMAJORMINOR%%/tcl8.4/history.tcl -lib/paraview-%%VERMAJORMINOR%%/tcl8.4/init.tcl -lib/paraview-%%VERMAJORMINOR%%/tcl8.4/ldAout.tcl -lib/paraview-%%VERMAJORMINOR%%/tcl8.4/package.tcl -lib/paraview-%%VERMAJORMINOR%%/tcl8.4/parray.tcl -lib/paraview-%%VERMAJORMINOR%%/tcl8.4/safe.tcl -lib/paraview-%%VERMAJORMINOR%%/tcl8.4/tclIndex -lib/paraview-%%VERMAJORMINOR%%/tcl8.4/word.tcl -lib/paraview-%%VERMAJORMINOR%%/tk8.4/bgerror.tcl -lib/paraview-%%VERMAJORMINOR%%/tk8.4/button.tcl -lib/paraview-%%VERMAJORMINOR%%/tk8.4/choosedir.tcl -lib/paraview-%%VERMAJORMINOR%%/tk8.4/clrpick.tcl -lib/paraview-%%VERMAJORMINOR%%/tk8.4/comdlg.tcl -lib/paraview-%%VERMAJORMINOR%%/tk8.4/console.tcl -lib/paraview-%%VERMAJORMINOR%%/tk8.4/dialog.tcl -lib/paraview-%%VERMAJORMINOR%%/tk8.4/entry.tcl -lib/paraview-%%VERMAJORMINOR%%/tk8.4/focus.tcl -lib/paraview-%%VERMAJORMINOR%%/tk8.4/listbox.tcl -lib/paraview-%%VERMAJORMINOR%%/tk8.4/menu.tcl -lib/paraview-%%VERMAJORMINOR%%/tk8.4/mkpsenc.tcl -lib/paraview-%%VERMAJORMINOR%%/tk8.4/msgbox.tcl -lib/paraview-%%VERMAJORMINOR%%/tk8.4/obsolete.tcl -lib/paraview-%%VERMAJORMINOR%%/tk8.4/optMenu.tcl -lib/paraview-%%VERMAJORMINOR%%/tk8.4/palette.tcl -lib/paraview-%%VERMAJORMINOR%%/tk8.4/panedwindow.tcl -lib/paraview-%%VERMAJORMINOR%%/tk8.4/safetk.tcl -lib/paraview-%%VERMAJORMINOR%%/tk8.4/scale.tcl -lib/paraview-%%VERMAJORMINOR%%/tk8.4/scrlbar.tcl -lib/paraview-%%VERMAJORMINOR%%/tk8.4/spinbox.tcl -lib/paraview-%%VERMAJORMINOR%%/tk8.4/tclIndex -lib/paraview-%%VERMAJORMINOR%%/tk8.4/tearoff.tcl -lib/paraview-%%VERMAJORMINOR%%/tk8.4/text.tcl -lib/paraview-%%VERMAJORMINOR%%/tk8.4/tk.tcl -lib/paraview-%%VERMAJORMINOR%%/tk8.4/tkfbox.tcl -lib/paraview-%%VERMAJORMINOR%%/tk8.4/unsupported.tcl -lib/paraview-%%VERMAJORMINOR%%/tk8.4/xmfbox.tcl -share/paraview-%%VERMAJORMINOR%%/Data/CMakeLists.txt -share/paraview-%%VERMAJORMINOR%%/Data/Package.pvsm -share/paraview-%%VERMAJORMINOR%%/Data/Package.xml -share/paraview-%%VERMAJORMINOR%%/Data/RectGrid2.vtk -share/paraview-%%VERMAJORMINOR%%/Data/SPCTH/ball_and_box.spcth -share/paraview-%%VERMAJORMINOR%%/Data/SPCTH/spcth.0 -share/paraview-%%VERMAJORMINOR%%/Data/SPCTH/spcth.1 -share/paraview-%%VERMAJORMINOR%%/Data/SPCTH/spcth.2 -share/paraview-%%VERMAJORMINOR%%/Data/SPCTH/spcth.3 -share/paraview-%%VERMAJORMINOR%%/Data/SPCTH/spcth.4 -share/paraview-%%VERMAJORMINOR%%/Data/SPCTH/spcth.5 -share/paraview-%%VERMAJORMINOR%%/Data/Test1.h5 -share/paraview-%%VERMAJORMINOR%%/Data/Test1.xmf -share/paraview-%%VERMAJORMINOR%%/Data/blow data.vtk -share/paraview-%%VERMAJORMINOR%%/Data/blow.vtk -share/paraview-%%VERMAJORMINOR%%/Data/box.ex2 -share/paraview-%%VERMAJORMINOR%%/Data/chombo3d.pvd -share/paraview-%%VERMAJORMINOR%%/Data/chombo3d/chombo3d_0.vti -share/paraview-%%VERMAJORMINOR%%/Data/chombo3d/chombo3d_1.vti -share/paraview-%%VERMAJORMINOR%%/Data/chombo3d/chombo3d_10.vti -share/paraview-%%VERMAJORMINOR%%/Data/chombo3d/chombo3d_11.vti -share/paraview-%%VERMAJORMINOR%%/Data/chombo3d/chombo3d_12.vti -share/paraview-%%VERMAJORMINOR%%/Data/chombo3d/chombo3d_13.vti -share/paraview-%%VERMAJORMINOR%%/Data/chombo3d/chombo3d_14.vti -share/paraview-%%VERMAJORMINOR%%/Data/chombo3d/chombo3d_15.vti -share/paraview-%%VERMAJORMINOR%%/Data/chombo3d/chombo3d_2.vti -share/paraview-%%VERMAJORMINOR%%/Data/chombo3d/chombo3d_3.vti -share/paraview-%%VERMAJORMINOR%%/Data/chombo3d/chombo3d_4.vti -share/paraview-%%VERMAJORMINOR%%/Data/chombo3d/chombo3d_5.vti -share/paraview-%%VERMAJORMINOR%%/Data/chombo3d/chombo3d_6.vti -share/paraview-%%VERMAJORMINOR%%/Data/chombo3d/chombo3d_7.vti -share/paraview-%%VERMAJORMINOR%%/Data/chombo3d/chombo3d_8.vti -share/paraview-%%VERMAJORMINOR%%/Data/chombo3d/chombo3d_9.vti -share/paraview-%%VERMAJORMINOR%%/Data/comb_mb_ascii.q -share/paraview-%%VERMAJORMINOR%%/Data/comb_mb_ascii.xyz -share/paraview-%%VERMAJORMINOR%%/Data/combq.bin -share/paraview-%%VERMAJORMINOR%%/Data/combxyz.bin -share/paraview-%%VERMAJORMINOR%%/Data/cth.vtr -share/paraview-%%VERMAJORMINOR%%/Data/dualSphereAnimation.pvd -share/paraview-%%VERMAJORMINOR%%/Data/elements.ECsca_i -share/paraview-%%VERMAJORMINOR%%/Data/elements.ECsca_r -share/paraview-%%VERMAJORMINOR%%/Data/elements.ECvec_i -share/paraview-%%VERMAJORMINOR%%/Data/elements.ECvec_r -share/paraview-%%VERMAJORMINOR%%/Data/elements.Esca -share/paraview-%%VERMAJORMINOR%%/Data/elements.Eten -share/paraview-%%VERMAJORMINOR%%/Data/elements.Evec -share/paraview-%%VERMAJORMINOR%%/Data/elements.NCsca_i -share/paraview-%%VERMAJORMINOR%%/Data/elements.NCsca_r -share/paraview-%%VERMAJORMINOR%%/Data/elements.NCvec_i -share/paraview-%%VERMAJORMINOR%%/Data/elements.NCvec_r -share/paraview-%%VERMAJORMINOR%%/Data/elements.Nsca -share/paraview-%%VERMAJORMINOR%%/Data/elements.Nten -share/paraview-%%VERMAJORMINOR%%/Data/elements.Nvec -share/paraview-%%VERMAJORMINOR%%/Data/elements.case -share/paraview-%%VERMAJORMINOR%%/Data/elements.geo -share/paraview-%%VERMAJORMINOR%%/Data/headsq/quarter.1 -share/paraview-%%VERMAJORMINOR%%/Data/headsq/quarter.10 -share/paraview-%%VERMAJORMINOR%%/Data/headsq/quarter.11 -share/paraview-%%VERMAJORMINOR%%/Data/headsq/quarter.12 -share/paraview-%%VERMAJORMINOR%%/Data/headsq/quarter.13 -share/paraview-%%VERMAJORMINOR%%/Data/headsq/quarter.14 -share/paraview-%%VERMAJORMINOR%%/Data/headsq/quarter.15 -share/paraview-%%VERMAJORMINOR%%/Data/headsq/quarter.16 -share/paraview-%%VERMAJORMINOR%%/Data/headsq/quarter.17 -share/paraview-%%VERMAJORMINOR%%/Data/headsq/quarter.18 -share/paraview-%%VERMAJORMINOR%%/Data/headsq/quarter.19 -share/paraview-%%VERMAJORMINOR%%/Data/headsq/quarter.2 -share/paraview-%%VERMAJORMINOR%%/Data/headsq/quarter.20 -share/paraview-%%VERMAJORMINOR%%/Data/headsq/quarter.21 -share/paraview-%%VERMAJORMINOR%%/Data/headsq/quarter.22 -share/paraview-%%VERMAJORMINOR%%/Data/headsq/quarter.23 -share/paraview-%%VERMAJORMINOR%%/Data/headsq/quarter.24 -share/paraview-%%VERMAJORMINOR%%/Data/headsq/quarter.25 -share/paraview-%%VERMAJORMINOR%%/Data/headsq/quarter.26 -share/paraview-%%VERMAJORMINOR%%/Data/headsq/quarter.27 -share/paraview-%%VERMAJORMINOR%%/Data/headsq/quarter.28 -share/paraview-%%VERMAJORMINOR%%/Data/headsq/quarter.29 -share/paraview-%%VERMAJORMINOR%%/Data/headsq/quarter.3 -share/paraview-%%VERMAJORMINOR%%/Data/headsq/quarter.30 -share/paraview-%%VERMAJORMINOR%%/Data/headsq/quarter.31 -share/paraview-%%VERMAJORMINOR%%/Data/headsq/quarter.32 -share/paraview-%%VERMAJORMINOR%%/Data/headsq/quarter.33 -share/paraview-%%VERMAJORMINOR%%/Data/headsq/quarter.34 -share/paraview-%%VERMAJORMINOR%%/Data/headsq/quarter.35 -share/paraview-%%VERMAJORMINOR%%/Data/headsq/quarter.36 -share/paraview-%%VERMAJORMINOR%%/Data/headsq/quarter.37 -share/paraview-%%VERMAJORMINOR%%/Data/headsq/quarter.38 -share/paraview-%%VERMAJORMINOR%%/Data/headsq/quarter.39 -share/paraview-%%VERMAJORMINOR%%/Data/headsq/quarter.4 -share/paraview-%%VERMAJORMINOR%%/Data/headsq/quarter.40 -share/paraview-%%VERMAJORMINOR%%/Data/headsq/quarter.41 -share/paraview-%%VERMAJORMINOR%%/Data/headsq/quarter.42 -share/paraview-%%VERMAJORMINOR%%/Data/headsq/quarter.43 -share/paraview-%%VERMAJORMINOR%%/Data/headsq/quarter.44 -share/paraview-%%VERMAJORMINOR%%/Data/headsq/quarter.45 -share/paraview-%%VERMAJORMINOR%%/Data/headsq/quarter.46 -share/paraview-%%VERMAJORMINOR%%/Data/headsq/quarter.47 -share/paraview-%%VERMAJORMINOR%%/Data/headsq/quarter.48 -share/paraview-%%VERMAJORMINOR%%/Data/headsq/quarter.49 -share/paraview-%%VERMAJORMINOR%%/Data/headsq/quarter.5 -share/paraview-%%VERMAJORMINOR%%/Data/headsq/quarter.50 -share/paraview-%%VERMAJORMINOR%%/Data/headsq/quarter.51 -share/paraview-%%VERMAJORMINOR%%/Data/headsq/quarter.52 -share/paraview-%%VERMAJORMINOR%%/Data/headsq/quarter.53 -share/paraview-%%VERMAJORMINOR%%/Data/headsq/quarter.54 -share/paraview-%%VERMAJORMINOR%%/Data/headsq/quarter.55 -share/paraview-%%VERMAJORMINOR%%/Data/headsq/quarter.56 -share/paraview-%%VERMAJORMINOR%%/Data/headsq/quarter.57 -share/paraview-%%VERMAJORMINOR%%/Data/headsq/quarter.58 -share/paraview-%%VERMAJORMINOR%%/Data/headsq/quarter.59 -share/paraview-%%VERMAJORMINOR%%/Data/headsq/quarter.6 -share/paraview-%%VERMAJORMINOR%%/Data/headsq/quarter.60 -share/paraview-%%VERMAJORMINOR%%/Data/headsq/quarter.61 -share/paraview-%%VERMAJORMINOR%%/Data/headsq/quarter.62 -share/paraview-%%VERMAJORMINOR%%/Data/headsq/quarter.63 -share/paraview-%%VERMAJORMINOR%%/Data/headsq/quarter.64 -share/paraview-%%VERMAJORMINOR%%/Data/headsq/quarter.65 -share/paraview-%%VERMAJORMINOR%%/Data/headsq/quarter.66 -share/paraview-%%VERMAJORMINOR%%/Data/headsq/quarter.67 -share/paraview-%%VERMAJORMINOR%%/Data/headsq/quarter.68 -share/paraview-%%VERMAJORMINOR%%/Data/headsq/quarter.69 -share/paraview-%%VERMAJORMINOR%%/Data/headsq/quarter.7 -share/paraview-%%VERMAJORMINOR%%/Data/headsq/quarter.70 -share/paraview-%%VERMAJORMINOR%%/Data/headsq/quarter.71 -share/paraview-%%VERMAJORMINOR%%/Data/headsq/quarter.72 -share/paraview-%%VERMAJORMINOR%%/Data/headsq/quarter.73 -share/paraview-%%VERMAJORMINOR%%/Data/headsq/quarter.74 -share/paraview-%%VERMAJORMINOR%%/Data/headsq/quarter.75 -share/paraview-%%VERMAJORMINOR%%/Data/headsq/quarter.76 -share/paraview-%%VERMAJORMINOR%%/Data/headsq/quarter.77 -share/paraview-%%VERMAJORMINOR%%/Data/headsq/quarter.78 -share/paraview-%%VERMAJORMINOR%%/Data/headsq/quarter.79 -share/paraview-%%VERMAJORMINOR%%/Data/headsq/quarter.8 -share/paraview-%%VERMAJORMINOR%%/Data/headsq/quarter.80 -share/paraview-%%VERMAJORMINOR%%/Data/headsq/quarter.81 -share/paraview-%%VERMAJORMINOR%%/Data/headsq/quarter.82 -share/paraview-%%VERMAJORMINOR%%/Data/headsq/quarter.83 -share/paraview-%%VERMAJORMINOR%%/Data/headsq/quarter.84 -share/paraview-%%VERMAJORMINOR%%/Data/headsq/quarter.85 -share/paraview-%%VERMAJORMINOR%%/Data/headsq/quarter.86 -share/paraview-%%VERMAJORMINOR%%/Data/headsq/quarter.87 -share/paraview-%%VERMAJORMINOR%%/Data/headsq/quarter.88 -share/paraview-%%VERMAJORMINOR%%/Data/headsq/quarter.89 -share/paraview-%%VERMAJORMINOR%%/Data/headsq/quarter.9 -share/paraview-%%VERMAJORMINOR%%/Data/headsq/quarter.90 -share/paraview-%%VERMAJORMINOR%%/Data/headsq/quarter.91 -share/paraview-%%VERMAJORMINOR%%/Data/headsq/quarter.92 -share/paraview-%%VERMAJORMINOR%%/Data/headsq/quarter.93 -share/paraview-%%VERMAJORMINOR%%/Data/iron protein.vtk -share/paraview-%%VERMAJORMINOR%%/Data/ironProt.vtk -share/paraview-%%VERMAJORMINOR%%/Data/multicomb_0.vts -share/paraview-%%VERMAJORMINOR%%/Data/multicomb_1.vts -share/paraview-%%VERMAJORMINOR%%/Data/multicomb_2.vts -share/paraview-%%VERMAJORMINOR%%/Data/vox8_ascii.vtk -share/paraview-%%VERMAJORMINOR%%/Data/vox8_bin.vtk -share/paraview-%%VERMAJORMINOR%%/Demos/Demo1.pvs -share/paraview-%%VERMAJORMINOR%%/Demos/blow.vtk -share/paraview-%%VERMAJORMINOR%%/Demos/combbin.q -share/paraview-%%VERMAJORMINOR%%/Demos/combbin.xyz -share/paraview-%%VERMAJORMINOR%%/Demos/postbin.q -share/paraview-%%VERMAJORMINOR%%/Demos/postbin.xyz -share/paraview-%%VERMAJORMINOR%%/Demos/quadric.vtk -share/paraview-%%VERMAJORMINOR%%/Scripts/ColorSphere.pvs -share/paraview-%%VERMAJORMINOR%%/Scripts/ExodusMeta.pvs -@dirrm share/paraview-%%VERMAJORMINOR%%/Scripts -@dirrm share/paraview-%%VERMAJORMINOR%%/Demos -@dirrm share/paraview-%%VERMAJORMINOR%%/Data/headsq -@dirrm share/paraview-%%VERMAJORMINOR%%/Data/chombo3d -@dirrm share/paraview-%%VERMAJORMINOR%%/Data/SPCTH -@dirrm share/paraview-%%VERMAJORMINOR%%/Data -@dirrm share/paraview-%%VERMAJORMINOR%% -@dirrm lib/paraview-%%VERMAJORMINOR%%/tcl/kwwidgets -@dirrm lib/paraview-%%VERMAJORMINOR%%/tcl -@dirrm lib/paraview-%%VERMAJORMINOR%%/tk8.4 -@dirrm lib/paraview-%%VERMAJORMINOR%%/tcl8.4/encoding -@dirrm lib/paraview-%%VERMAJORMINOR%%/tcl8.4 +@dirrm lib/paraview-%%VERMAJORMINOR%%/plugins/designer +@dirrm lib/paraview-%%VERMAJORMINOR%%/plugins +@dirrm lib/paraview-%%VERMAJORMINOR%%/doc/verdict/1.2.0 +@dirrm lib/paraview-%%VERMAJORMINOR%%/doc/verdict +@dirrm lib/paraview-%%VERMAJORMINOR%%/doc +@dirrm lib/paraview-%%VERMAJORMINOR%%/bin +@dirrm lib/paraview-%%VERMAJORMINOR%%/Utilities/VTKClientServer/CMake +@dirrm lib/paraview-%%VERMAJORMINOR%%/Utilities/VTKClientServer +@dirrm lib/paraview-%%VERMAJORMINOR%%/Utilities @dirrm lib/paraview-%%VERMAJORMINOR%%/ServerManager/Resources @dirrm lib/paraview-%%VERMAJORMINOR%%/ServerManager +@dirrm lib/paraview-%%VERMAJORMINOR%%/Documentation/CMakeFiles +@dirrm lib/paraview-%%VERMAJORMINOR%%/Documentation +@dirrm lib/paraview-%%VERMAJORMINOR%%/CMake @dirrm lib/paraview-%%VERMAJORMINOR%% +@dirrm include/paraview-%%VERMAJORMINOR%%/vtksys/stl +@dirrm include/paraview-%%VERMAJORMINOR%%/vtksys/ios +@dirrm include/paraview-%%VERMAJORMINOR%%/vtksys +@dirrm include/paraview-%%VERMAJORMINOR%%