summarylogtreecommitdiffstats
path: root/salome-smesh.profile
diff options
context:
space:
mode:
authorMichele Mocciola2016-12-20 07:23:21 +0100
committerMichele Mocciola2016-12-20 07:23:21 +0100
commitb8ad2cb2baed2a146e74fc12578a272bada3bbed (patch)
treed7a239f1ace093ce2a19c9c75148f2052e470966 /salome-smesh.profile
parentfa50fd36dd7341dcd441b3a2a1a3e2164c5aebb2 (diff)
downloadaur-b8ad2cb2baed2a146e74fc12578a272bada3bbed.tar.gz
Updated
Diffstat (limited to 'salome-smesh.profile')
-rw-r--r--salome-smesh.profile32
1 files changed, 0 insertions, 32 deletions
diff --git a/salome-smesh.profile b/salome-smesh.profile
deleted file mode 100644
index f05b33f142de..000000000000
--- a/salome-smesh.profile
+++ /dev/null
@@ -1,32 +0,0 @@
-# module var
-export SMESH_ROOT_DIR=/opt/salome
-
-# local vars
-_pythonver=2.7
-_paraviewver=4.2
-_smesh_path=$SMESH_ROOT_DIR/bin/salome
-_smesh_librarypath=$SMESH_ROOT_DIR/lib/salome
-_smesh_pythonpath=$SMESH_ROOT_DIR/lib/python${_pythonver}/site-packages/salome
-_paraview_pythonpath="/usr/lib/paraview-${_paraviewver}/site-packages/:/usr/lib/paraview-${_paraviewver}/site-packages/vtk"
-_paraview_librarypath="/usr/lib/paraview-${_paraviewver}"
-
-# PYTHONPATH
-if [[ $PYTHONPATH != *${_smesh_pythonpath}* ]]; then
- export PYTHONPATH=${_smesh_pythonpath}:$PYTHONPATH
-fi
-if [[ $PYTHONPATH != *${_paraview_pythonpath}* ]]; then
- export PYTHONPATH=${_paraview_pythonpath}:$PYTHONPATH
-fi
-
-# LD_LIBRARY_PATH
-if [[ $LD_LIBRARY_PATH != *${_smesh_librarypath}* ]]; then
- export LD_LIBRARY_PATH=${_smesh_librarypath}:$LD_LIBRARY_PATH
-fi
-if [[ $LD_LIBRARY_PATH != *${_paraview_librarypath}* ]]; then
- export LD_LIBRARY_PATH=${_paraview_librarypath}:$LD_LIBRARY_PATH
-fi
-
-# PATH
-if [[ $PATH != *${_smesh_path}* ]]; then
- export PATH=${_smesh_path}:$PATH
-fi