Salome HOME
PR: merged from V5_1_4rc1
[modules/smesh.git] / bin / smesh_setenv.py
1 #!/usr/bin/env python
2 #  -*- coding: iso-8859-1 -*-
3 #  Copyright (C) 2007-2010  CEA/DEN, EDF R&D, OPEN CASCADE
4 #
5 #  This library is free software; you can redistribute it and/or
6 #  modify it under the terms of the GNU Lesser General Public
7 #  License as published by the Free Software Foundation; either
8 #  version 2.1 of the License.
9 #
10 #  This library is distributed in the hope that it will be useful,
11 #  but WITHOUT ANY WARRANTY; without even the implied warranty of
12 #  MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the GNU
13 #  Lesser General Public License for more details.
14 #
15 #  You should have received a copy of the GNU Lesser General Public
16 #  License along with this library; if not, write to the Free Software
17 #  Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA  02111-1307 USA
18 #
19 #  See http://www.salome-platform.org/ or email : webmaster.salome@opencascade.com
20 #
21
22 import os, sys
23 from setenv import add_path, get_lib_dir, salome_subdir
24
25 # -----------------------------------------------------------------------------
26
27 def set_env(args):
28     """Add to the PATH-variables modules specific paths"""
29
30     python_version="python%d.%d" % sys.version_info[0:2]
31
32     os.environ["SMESH_MeshersList"]="StdMeshers"
33     if not os.environ.has_key("SALOME_StdMeshersResources"):
34         os.environ["SALOME_StdMeshersResources"] \
35         = os.environ["SMESH_ROOT_DIR"]+"/share/"+salome_subdir+"/resources/smesh"
36         pass
37     if args.has_key("SMESH_plugins"):
38         for plugin in args["SMESH_plugins"]:
39             plugin_root = ""
40             if os.environ.has_key(plugin+"_ROOT_DIR"):
41                 plugin_root = os.environ[plugin+"_ROOT_DIR"]
42             else:
43                 # workaround to avoid modifications of existing environment
44                 if os.environ.has_key(plugin.upper()+"_ROOT_DIR"):
45                     plugin_root = os.environ[plugin.upper()+"_ROOT_DIR"]
46                     pass
47                 pass
48             if plugin_root != "":
49                 os.environ["SMESH_MeshersList"] \
50                 = os.environ["SMESH_MeshersList"]+":"+plugin
51                 if not os.environ.has_key("SALOME_"+plugin+"Resources"):
52                     os.environ["SALOME_"+plugin+"Resources"] \
53                     = plugin_root+"/share/"+salome_subdir+"/resources/"+plugin.lower()
54                     add_path(os.path.join(plugin_root,get_lib_dir(),python_version, "site-packages",salome_subdir), "PYTHONPATH")
55                     add_path(os.path.join(plugin_root,get_lib_dir(),salome_subdir), "PYTHONPATH")
56                     
57                     if sys.platform == "win32":
58                         add_path(os.path.join(plugin_root,get_lib_dir(),salome_subdir), "PATH")
59                     else:
60                         add_path(os.path.join(plugin_root,get_lib_dir(),salome_subdir), "LD_LIBRARY_PATH")
61                         add_path(os.path.join(plugin_root,"bin",salome_subdir), "PYTHONPATH")
62                         add_path(os.path.join(plugin_root,"bin",salome_subdir), "PATH")
63                         pass
64                     pass
65                 pass
66             pass