18 rm env_config.sh || echo "File env_config.sh was not found."
20 echo "#!/bin/bash -ex" >> env_config.sh
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
35 PLATFORM=${PLATFORM}_d
38 echo "export PLATFORM=${PLATFORM}" >> env_config.sh
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
49 echo "Could not find PRODUCTS for the platform ${platform} ${release}"
53 include_products '7.7.0'
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
64 echo "Could not find PRODUCTS for the platform ${platform} ${release}"
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
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
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
88 echo "Could not find SALOME for the platform ${platform} ${release}"
92 include_salome '7.7.0'
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
99 echo "export INST_ROOT=${SALOME_ROOT}" >> env_config.sh