initial commit for version 1.5.x patch release
[OpenFOAM-1.5.x.git] / etc / apps / paraview / bashrc
blob87a75e0b7a457b6f2e65cc07c5fdffafa7c3eb5c
1 #----------------------------------*-sh-*--------------------------------------
2 # =========                 |
3 # \\      /  F ield         | OpenFOAM: The Open Source CFD Toolbox
4 #  \\    /   O peration     |
5 #   \\  /    A nd           | Copyright (C) 1991-2008 OpenCFD Ltd.
6 #    \\/     M anipulation  |
7 #------------------------------------------------------------------------------
8 # License
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 the
13 #     Free Software Foundation; either version 2 of the License, or (at your
14 #     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
19 #     for more details.
21 #     You should have received a copy of the GNU General Public License
22 #     along with OpenFOAM; if not, write to the Free Software Foundation,
23 #     Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301 USA
25 # Script
26 #     paraview/bashrc
28 # Description
29 #     Setup file for Paraview.
30 #     Sourced from OpenFOAM-?.?/etc/bashrc
32 #------------------------------------------------------------------------------
34 export CMAKE_HOME=$WM_THIRD_PARTY_DIR/cmake-2.4.6/platforms/$WM_ARCH
36 if [ -r $CMAKE_HOME ]; then
37     export PATH=$CMAKE_HOME/bin:$PATH
40 export ParaView_VERSION=2.4.4
42 export ParaView_INST_DIR=$WM_THIRD_PARTY_DIR/ParaView$ParaView_VERSION
43 export ParaView_DIR=$ParaView_INST_DIR/lib/paraview-2.4
45 if [ -r $ParaView_INST_DIR ]; then
46     export PV_INTERFACE_PATH=$FOAM_UTILITIES/postProcessing/graphics/PVFoamReader/PVFoamReader/Make
48     export PATH=$ParaView_INST_DIR/bin:$PATH
49     export LD_LIBRARY_PATH=${ParaView_INST_DIR}/lib:${ParaView_INST_DIR}/lib/vtk:${LD_LIBRARY_PATH}
52 if [ -r $ParaView_DIR ]; then
53     export VTK_DIR=$ParaView_DIR/VTK
56 # -----------------------------------------------------------------------------