1 #----------------------------------*-sh-*--------------------------------------
3 # \\ / F ield | OpenFOAM: The Open Source CFD Toolbox
5 # \\ / A nd | Copyright (C) 2004-2011 OpenCFD Ltd.
7 #------------------------------------------------------------------------------
9 # This file is part of OpenFOAM.
11 # OpenFOAM is free software: you can redistribute it and/or modify it
12 # under the terms of the GNU General Public License as published by
13 # the Free Software Foundation, either version 3 of the License, or
14 # (at your option) any later version.
16 # OpenFOAM is distributed in the hope that it will be useful, but WITHOUT
17 # ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or
18 # FITNESS FOR A PARTICULAR PURPOSE. See the GNU General Public License
21 # You should have received a copy of the GNU General Public License
22 # along with OpenFOAM. If not, see <http://www.gnu.org/licenses/>.
28 # Setup file for paraview-3.x
29 # Sourced from OpenFOAM-<VERSION>/etc/bashrc or from foamPV alias
32 # The env. variables 'ParaView_DIR' and 'ParaView_MAJOR'
33 # are required for building plugins
34 #------------------------------------------------------------------------------
37 cleaned
=`$WM_PROJECT_DIR/bin/foamCleanPath "$PATH" "$WM_THIRD_PARTY_DIR/platforms/$WM_ARCH$WM_COMPILER/cmake- $WM_THIRD_PARTY_DIR/platforms/$WM_ARCH$WM_COMPILER/paraview-"` && PATH
="$cleaned"
39 # determine the cmake to be used
41 for cmake
in cmake-2.8
.4 cmake-2.8
.3 cmake-2.8
.1
43 cmake
=$WM_THIRD_PARTY_DIR/platforms
/$WM_ARCH$WM_COMPILER/$cmake
46 export CMAKE_HOME
=$cmake
47 export PATH
=$CMAKE_HOME/bin
:$PATH
53 #- ParaView version, automatically determine major version
54 export ParaView_VERSION
=3.10.1
55 export ParaView_MAJOR
=detect
58 # Evaluate command-line parameters for ParaView
65 # name=value -> export name=value
73 # Evaluate command-line parameters
77 # set MAJOR version to correspond to VERSION
78 # ParaView_MAJOR is "<digits>.<digits>" from ParaView_VERSION
79 case "$ParaView_VERSION" in
81 # version and major appear to correspond
85 # extract major from the version
86 ParaView_MAJOR
=`echo $ParaView_VERSION | sed -e 's/^\([0-9][0-9]*\.[0-9][0-9]*\).*$/\1/'`
89 export ParaView_VERSION ParaView_MAJOR
91 paraviewInstDir
=$WM_THIRD_PARTY_DIR/ParaView-
$ParaView_VERSION
92 export ParaView_DIR
=$WM_THIRD_PARTY_DIR/platforms
/$WM_ARCH$WM_COMPILER/paraview-
$ParaView_VERSION
94 # set paths if binaries or source are present
95 if [ -r $ParaView_DIR -o -r $paraviewInstDir ]
97 export PATH
=$ParaView_DIR/bin
:$PATH
98 export LD_LIBRARY_PATH
=$ParaView_DIR/lib
/paraview-
$ParaView_MAJOR:$LD_LIBRARY_PATH
99 export PV_PLUGIN_PATH
=$FOAM_LIBBIN/paraview-
$ParaView_MAJOR
101 # add in python libraries if required
102 paraviewPython
=$ParaView_DIR/Utilities
/VTKPythonWrapping
103 if [ -r $paraviewPython ]
107 export PYTHONPATH
=$PYTHONPATH:$paraviewPython:$ParaView_DIR/lib
/paraview-
$ParaView_MAJOR
109 export PYTHONPATH
=$paraviewPython:$ParaView_DIR/lib
/paraview-
$ParaView_MAJOR
116 unset _foamParaviewEval
117 unset cleaned cmake paraviewInstDir paraviewPython
119 # -----------------------------------------------------------------------------