Salome HOME
3a696f378cec86bb2e4023f8326b493063ae17f4
[modules/geom.git] / bin / geom_setenv.py
1 #! /usr/bin/env python
2 #  -*- coding: iso-8859-1 -*-
3 #  Copyright (C) 2007-2008  CEA/DEN, EDF R&D, OPEN CASCADE
4 #
5 #  Copyright (C) 2003-2007  OPEN CASCADE, EADS/CCR, LIP6, CEA/DEN,
6 #  CEDRAT, EDF R&D, LEG, PRINCIPIA R&D, BUREAU VERITAS
7 #
8 #  This library is free software; you can redistribute it and/or
9 #  modify it under the terms of the GNU Lesser General Public
10 #  License as published by the Free Software Foundation; either
11 #  version 2.1 of the License.
12 #
13 #  This library is distributed in the hope that it will be useful,
14 #  but WITHOUT ANY WARRANTY; without even the implied warranty of
15 #  MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the GNU
16 #  Lesser General Public License for more details.
17 #
18 #  You should have received a copy of the GNU Lesser General Public
19 #  License along with this library; if not, write to the Free Software
20 #  Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA  02111-1307 USA
21 #
22 #  See http://www.salome-platform.org/ or email : webmaster.salome@opencascade.com
23 #
24
25 import os
26 from salome_utils import getTmpDir, generateFileName, uniteFiles
27 from setenv import salome_subdir
28
29 # -----------------------------------------------------------------------------
30
31 def set_env( args ):
32     """Add to the PATH-variables modules specific paths"""
33     
34     tmp_dir = getTmpDir()
35     env_dir = generateFileName( tmp_dir, prefix="env", with_port=True )
36     res_dir = os.path.join( os.getenv( "GEOM_ROOT_DIR" ), "share", salome_subdir, "resources", "geom" )
37
38     csf_list = ["Plugin", "GEOMDS_Resources", "ShHealing"]
39
40     for csf_file in csf_list:
41        uniteFiles( os.path.join( res_dir, csf_file ), os.path.join( env_dir, csf_file ) )
42        pass
43
44     for csf_string in csf_list:
45         csf_var = "CSF_" + csf_string + "Defaults"
46         if not os.getenv( csf_var ):
47             os.environ[ csf_var ] = env_dir
48             pass
49         pass
50