Salome HOME
Improve SWIG compilation: eliminate types duplication.
[modules/shaper.git] / config.sh
1 #!/bin/bash -ex
2
3 while [[ $# > 0 ]]; do
4   key="$1"
5
6   case $key in
7     standalone|Standalone)
8     MODE=Standalone
9     shift
10     ;;
11     *)
12     shift
13     ;;
14   esac
15 done
16
17
18 rm env_config.sh || echo "File env_config.sh was not found."
19
20 echo "#!/bin/bash -ex" >> env_config.sh
21
22 PLATFORM=""
23 if [ -f PLATFORM ]; then
24   PLATFORM="$(lsb_release -is)"
25   RELEASE="$(lsb_release -rs)"
26   if [ "${PLATFORM}" = 'CentOS' ]; then PLATFORM=-centos
27   elif [ "${PLATFORM}" = 'Debian' ]; then
28     if [ "${RELEASE}" = '8.0' ]; then PLATFORM=-d8
29     else PLATFORM=-d6
30     fi
31   fi
32 fi
33
34 if [ -f DEBUG ]; then
35   PLATFORM=${PLATFORM}_d
36 fi
37
38 echo "export PLATFORM=${PLATFORM}" >> env_config.sh
39
40 include_products() {
41   local salome_version=$1
42   local platform="$(lsb_release -is)"
43   local release="$(lsb_release -rs)"
44   if [[ ${salome_version} = '7.7.0' ]]; then
45     if   [[ "${platform}" = 'CentOS' ]]; then export PRODUCTS_ROOT=/dn23/NEWGEOM/common/PRODUCTS/CentOS.6.3.64/7.7.0
46     elif [[ "${platform}" = 'Debian' && ${release} =~ ^6 ]]; then export PRODUCTS_ROOT=/dn23/NEWGEOM/common/PRODUCTS/DEBIAN.6.0.64/7.7.0
47     fi
48   else
49     echo "Could not find PRODUCTS for the platform ${platform} ${release}"
50     exit 1
51   fi
52 }
53 include_products '7.7.0'
54
55 include_suit() {
56   local salome_version=$1
57   local platform="$(lsb_release -is)"
58   local release="$(lsb_release -rs)"
59   if [[ ${salome_version} = '7.7.0' ]]; then
60     if   [[ "${platform}" = 'CentOS' ]]; then export SUIT_DIR=/dn46/SALOME/series7x/V7_7_0/CentOS63-64/GUI
61     elif [[ "${platform}" = 'Debian' && ${release} =~ ^6 ]]; then export SUIT_DIR=/dn46/SALOME/series7x/V7_7_0/Debian60-64/GUI
62     fi
63   else
64     echo "Could not find PRODUCTS for the platform ${platform} ${release}"
65     exit 1
66   fi
67 }
68 include_suit '7.7.0'
69
70 include_salome() {
71   local salome_version=$1
72   local platform="$(lsb_release -is)"
73   local release="$(lsb_release -rs)"
74   if [[ ${salome_version} = '7.5.1' ]]; then
75     if   [[ "${platform}" = 'CentOS' ]]; then export SALOME_ROOT=/dn48/newgeom/common/SALOME-7.5.1_CentOS-6.3
76     elif [[ "${platform}" = 'Debian' && ${release} =~ ^6 ]]; then export SALOME_ROOT=/dn23/NEWGEOM/common/SALOME-7.5.1_Debian-6.0_SOURCES
77     elif [[ "${platform}" = 'Debian' && ${release} =~ ^8 ]]; then export SALOME_ROOT=/dn23/NEWGEOM/common/SALOME-7.5.1_Debian-8.0_SOURCES
78     fi
79   elif [[ ${salome_version} = '7.6.0' ]]; then
80     if   [[ "${platform}" = 'CentOS' ]]; then export SALOME_ROOT=/dn23/NEWGEOM/common/SALOME-7.6.0_CentOS-6.3_SOURCES
81     elif [[ "${platform}" = 'Debian' && ${release} =~ ^6 ]]; then export SALOME_ROOT=/dn23/NEWGEOM/common/SALOME-7.6.0_Debian-6.0_SOURCES
82     fi
83   elif [[ ${salome_version} = '7.7.0' ]]; then
84     if   [[ "${platform}" = 'CentOS' ]]; then export SALOME_ROOT=/dn23/NEWGEOM/common/SALOME-7.7.0_CentOS63-64
85     elif [[ "${platform}" = 'Debian' && ${release} =~ ^6 ]]; then export SALOME_ROOT=/dn23/NEWGEOM/common/SALOME-7.7.0_Debian60-64
86     fi
87   else 
88     echo "Could not find SALOME for the platform ${platform} ${release}"
89     exit 1
90   fi
91 }
92 include_salome '7.7.0'
93
94
95 if [[ ${MODE} = 'Standalone' ]]; then
96   echo "export INST_ROOT=${PRODUCTS_ROOT}" >> env_config.sh
97   echo "export SUIT_DIR=${SUIT_DIR}" >> env_config.sh
98 else
99   echo "export INST_ROOT=${SALOME_ROOT}" >> env_config.sh
100 fi
101