Salome HOME
*** empty log message ***
[tools/install.git] / config_files / common.sh
1 #!/bin/bash -noprofile
2
3 ####################################################################################
4 #  File      : common.sh
5 #  Created   : Thu Dec 18 12:01:00 2002
6 #  Author    : Vadim SANDLER, Open CASCADE SAS (vadim.sandler@opencascade.com)
7 #  Project   : SALOME
8 #  Module    : Installation Wizard
9 #  Copyright : 2002-2007 CEA
10 #
11 #  This script is the part of the SALOME installation procedure.
12 #
13 ####################################################################################
14
15 export DELIM="------"
16 export SHRC="salome.sh"
17 export CSHRC="salome.csh"
18
19
20 #this function takes several parameters
21 #first parameter contains path to module source filder
22 #second parameters is value of $VERSION variables form MODULE.sh file
23
24 check_salome_src_version(){
25 root_dir=`printenv $1`
26 module_version=$2
27
28 if [ -n "$root_dir" ]; then
29     cfg_file=configure.ac
30     if [ ! -f ${root_dir}/${cfg_file} ] ; then
31         cfg_file=configure.in.base
32     fi
33     if [ -f ${root_dir}/${cfg_file} ] ; then
34         ver=`grep -e "^AC_INIT" ${root_dir}/${cfg_file} | sed -e "s%.*\[\([[:digit:].]*\)\].*%\1%g"`
35         if [ "$ver" = "${module_version}" ]; then
36             return 0
37         fi
38     fi
39 fi
40 return 1
41 }
42
43 #this function takes several parameters
44 #first parameter contains descriptor of output file
45 #next parameters is command for execution
46 #in case of bad result of execution ask user about furher steps
47 #(user can cancel installation procedure)
48 check_job()
49 {
50   out=$1
51   shift
52   errfile=/tmp/errlog
53   if [ -n "$INSTALL_WORK" ] ; then errfile=$INSTALL_WORK/errlog; fi
54   cmd="`pwd` -> $*"
55   if [ "$out" != "1" ] ; then cmd="$cmd >> $out" ; fi
56   echo -e $cmd
57   if [ "$out" != "1" ] ; then
58       $* >> $out 2>$errfile
59   else
60       $*
61   fi
62   if [ "$?" -ne "0" ] ; then
63     if [ $out != "1" ] ; then
64       cat $out
65       cat $errfile >&2
66       cat $errfile >> $out
67     fi
68     # VSR : 10/11/05: disable answer mode ==>
69     #echo -n " " >&2
70     #echo -e "NOT DONE !!! => $*"
71     #echo -n "Would you like to continue to install this product: (Y,N) [Y] : "
72     #read rep;
73     #rep=`echo $rep  | tr "[A-Z]" "[a-z]"`
74     #if test -z $rep || [ $rep = "y" ] ; then
75     #  return 1
76     #fi
77     # VSR : 10/11/05: disable answer mode <==
78     exit 1
79   fi
80   return 0
81 }
82
83 #invoke check_job function
84 #all output will be put into terminal
85 check_jb()
86 {
87   check_job 1 $*
88   return
89 }
90
91 # make directory
92 makedir()
93 {
94   rm -rf "$1" > /dev/null
95   mkdir -p "$1"
96 }
97
98 #create environment for sh and csh
99 make_env()
100 {
101 install_root=$1;  shift
102 install_work=$1; 
103
104 for i in $SHRC $CSHRC ; do
105     if [ -e ${install_work}/$i ]; then
106         rm ${install_work}/$i
107     fi
108     touch ${install_work}/$i
109 done
110
111 if [ $# -eq 4 ] ; then
112     product_name=$4;
113     product_env=${install_work}/env_${product_name}.sh
114     (test -e ${product_env} && rm ${product_env} )
115 fi
116 ### !!! writing salome.sh file !!!  -> define INSTALL_ROOT
117 cat >> ${install_work}/$SHRC <<EOF
118 #${DELIM} Setting products installation directory ${DELIM}
119 export INSTALL_ROOT=${install_root}
120
121 #${DELIM} Environment switch: 0 for SALOME building, 1 for SALOME launching ${DELIM}
122 export ENV_FOR_LAUNCH=1
123
124 EOF
125 ### !!! The next is for RedHat 9 only !!! 
126 if [ -f /etc/redhat-release ] ; then
127   grep -e "Red Hat Linux release 9" /etc/redhat-release > /dev/null
128   if [ $? -eq 0 ] ; then
129     cat >> ${install_work}/$SHRC <<EOF
130 #${DELIM} Force RH9 to use old implementation of threads ${DELIM}
131 export LD_ASSUME_KERNEL=2.4.18
132
133 EOF
134   fi
135 fi
136 ### !!! writing salome.csh file !!! -> set inital variables
137 pre_vars="PATH LD_LIBRARY_PATH LD_RUN_PATH PYTHONPATH TCLLIBPATH"
138 for i in $pre_vars ; do
139 cat >> ${install_work}/$CSHRC <<EOF
140 #${DELIM} setting initial ${i} ${DELIM}
141 if (! (\$?${i}) ) then
142   setenv $i
143 endif
144
145 EOF
146 done
147
148 ### !!! writing salome.(c)sh files !!! -> dump products environment files, changing 'export' by 'setenv(a|p)' where necessary
149 ### Note, that for performance reasons temporary environment files used during installation procedure itself
150 ### are created without using setenv(a|p) aliases.
151
152 # 0. add /usr/lib or /usr/lib64 dir to the LD_LIBRARY_PATH
153 if test `uname -m` = "x86_64" ; then
154 echo 'export LD_LIBRARY_PATH=/usr/lib64:${LD_LIBRARY_PATH}' >> ${install_work}/$SHRC 2>/dev/null
155 echo '' >> ${install_work}/$SHRC 2>/dev/null
156 else
157 echo 'export LD_LIBRARY_PATH=/usr/lib:${LD_LIBRARY_PATH}' >> ${install_work}/$SHRC 2>/dev/null
158 echo '' >> ${install_work}/$SHRC 2>/dev/null
159 fi
160
161 # 1. first dump all environment files into the $SHRC file
162 product_sequence="$2"
163 install_products="$3"
164 for i in $product_sequence ; do
165     env_file=${install_work}/env_${i}.sh
166     _env_file=${install_work}/_env_${i}.sh
167     if [ -e $_env_file ] ; then
168         cat $_env_file >> ${install_work}/$SHRC 2>/dev/null
169     elif [ -e $env_file ] ; then
170         echo $install_products | grep -q "\b${i}\b"
171         if [ $? -eq 1 ] ; then
172             cat $env_file | sed 's/^/## /' >> ${install_work}/$SHRC 2>/dev/null
173         else
174             cat $env_file >> ${install_work}/$SHRC 2>/dev/null
175         fi
176     fi
177 done
178
179 # 2. writing global functions to _salome.sh file
180 cat >> ${install_work}/_$SHRC <<EOF
181 ##########################################################################
182 # Functions exporta and exportp are used to append/prepend correspondingly 
183 # one directory or a set of directories separated by semicolon symbol (':')
184 # to the environment variables like PATH, LD_LIBRARY_PATH, PYTHONPATH,
185 # LD_RUN_PATH etc. 
186 # The main purpose is to replace default setenv command behavior:
187 # exporta, exportp also remove duplicated entries, shortening in that way
188 # the environment variables.
189 # If some directory being added is already included into the variable
190 # nothing is done for it.
191 # Note, that these functions work some slower that setenv command itself.
192 #
193 #### cleandup ###
194 # appends/prepends set of directories (second parameter) 
195 # to the another set of directories (first parameter) and
196 # removes duplicated entries;
197 # the third parameter defines the mode: 0 - append, 1 - prepend
198 cleandup() {
199 out_var=\`echo \$1 \$2 | awk -v dir=\$3 '{                   \\
200      na = split(\$2,a,":");                               \\
201      k1=0;                                               \\
202      bbb[k1++]="";                                       \\
203      ccc[""];                                            \\
204      if(\$1 != "<empty>") {                               \\
205        nb = split(\$1,b,":");                             \\
206        for(i=1;i<=nb;i++) {                              \\
207          if(!(b[i] in ccc) ) {                           \\
208            ccc[b[i]];                                    \\
209            bbb[k1++]=b[i];                               \\
210          };                                              \\
211        };                                                \\
212      };                                                  \\
213      k2=0;                                               \\
214      aaa[k2++]="";                                       \\
215      for(i=1;i<=na;i++) {                                \\
216        if(!(a[i] in ccc)) {                              \\
217          ccc[a[i]];                                      \\
218          aaa[k2++]=a[i];                                 \\
219        };                                                \\
220      };                                                  \\
221      ORS=":";                                            \\
222      if(dir) {                                           \\
223        for(i=1;i<k2;i++) {                               \\
224          print aaa[i];                                   \\
225        }                                                 \\
226        for(i=1;i<k1;i++) {                               \\
227          print bbb[i];                                   \\
228        }                                                 \\
229      }                                                   \\
230      else {                                              \\
231        for(i=1;i<k1;i++) {                               \\
232          print bbb[i];                                   \\
233        }                                                 \\
234        for(i=1;i<k2;i++) {                               \\
235          print aaa[i];                                   \\
236        }                                                 \\
237      }                                                   \\
238    }' | sed -e 's/\(.*\):/\1/g'\`
239 echo \$out_var
240 }
241 ### exporta ###
242 # appends directory or set of directories, separated by ':' (second parameter)
243 # to the variable (first parameter)
244 exporta () { 
245 xenv=\`printenv \$1\`
246 if [ -z "\$xenv" ]; then xenv="<empty>"; fi
247 out_var=\`cleandup \$xenv \$2 0\`
248 export \$1=\$out_var
249 }
250 ### exportp ###
251 # prepends directory or set of directories, separated by ':' (second parameter)
252 # to the variable (first parameter)
253 exportp () { 
254 xenv=\`printenv \$1\`
255 if [ -z "\$xenv" ]; then xenv="<empty>"; fi
256 out_var=\`cleandup \$xenv \$2 1\`
257 export \$1=\$out_var
258 }
259 ###########################################################################
260
261 EOF
262
263 # 3. writing global functions to _salome.csh file
264 cat >> ${install_work}/_$CSHRC <<EOF
265
266 ###########################################################################
267 # Aliases setenva and setenvp are used to append/prepend correspondingly 
268 # one directory or a set of directories separated by semicolon symbol (':')
269 # to the environment variables like PATH, LD_LIBRARY_PATH, PYTHONPATH,
270 # LD_RUN_PATH etc. 
271 # The main purpose is to replace default setenv command behavior:
272 # setenva, setenvp also remove duplicated entries, shortening in that way
273 # the environment variables.
274 # If some directory being added is already included into the variable
275 # nothing is done for it.
276 # Note, that these aliases work some slower that setenv command itself.
277 #
278 #### cleandup ###
279 # appends/prepends set of directories (second parameter) 
280 # to the another set of directories (first parameter) and
281 # removes duplicated entries;
282 # the third parameter defines the mode: 0 - append, 1 - prepend
283 alias cleandup "echo \!:1 \!:2 | awk -v dir=\!:3         \\\\
284 '"'{ na = split(\$2,a,":");                               \\\\
285      k1=0;                                               \\\\
286      bbb[k1++]="";                                       \\\\
287      ccc[""];                                            \\\\
288      if(\$1 != "<empty>") {                               \\\\
289        nb = split(\$1,b,":");                             \\\\
290        for(i=1;i<=nb;i++) {                              \\\\
291          if(!(b[i] in ccc) ) {                           \\\\
292            ccc[b[i]];                                    \\\\
293            bbb[k1++]=b[i];                               \\\\
294          };                                              \\\\
295        };                                                \\\\
296      };                                                  \\\\
297      k2=0;                                               \\\\
298      aaa[k2++]="";                                       \\\\
299      for(i=1;i<=na;i++) {                                \\\\
300        if(!(a[i] in ccc)) {                              \\\\
301          ccc[a[i]];                                      \\\\
302          aaa[k2++]=a[i];                                 \\\\
303        };                                                \\\\
304      };                                                  \\\\
305      ORS=":";                                            \\\\
306      if(dir) {                                           \\\\
307        for(i=1;i<k2;i++) {                               \\\\
308          print aaa[i];                                   \\\\
309        }                                                 \\\\
310        for(i=1;i<k1;i++) {                               \\\\
311          print bbb[i];                                   \\\\
312        }                                                 \\\\
313      }                                                   \\\\
314      else {                                              \\\\
315        for(i=1;i<k1;i++) {                               \\\\
316          print bbb[i];                                   \\\\
317        }                                                 \\\\
318        for(i=1;i<k2;i++) {                               \\\\
319          print aaa[i];                                   \\\\
320        }                                                 \\\\
321      }                                                   \\\\
322   }'"' | sed -e 's/\(.*\):/\1/g'"
323 ### setenva ###
324 # appends directory or set of directories, separated by ':' (second parameter)
325 # to the variable (first parameter)
326 alias setenva 'set a=\!:1 ; set b=\!:2 ;  \\
327                set c=\`printenv \$a\` ;      \\
328                set b=\`cleandup \$c \$b 0\` ; \\
329                setenv \$a \$b ;             \\
330                unset a, b, c'
331
332 ### setenvp ###
333 # prepends directory or set of directories, separated by ':' (second parameter)
334 # to the variable (first parameter)
335 alias setenvp 'set a=\!:1 ; set b=\!:2 ;  \\
336                set c=\`printenv \$a\` ;      \\
337                set b=\`cleandup \$c \$b 1\` ; \\
338                setenv \$a \$b ;             \\
339                unset a, b, c'
340 ###########################################################################
341
342 EOF
343 cat ${install_work}/$CSHRC >> ${install_work}/_$CSHRC
344
345 # 4. put the contents of salome.sh to _salome.sh replacing export by export(a|p) aliases where necessary
346 sed -e 's%export\([[:blank:]]*\)PATH=\$[{]\?PATH[}]\?:\(.*\)%exporta\1PATH \2%g' -e 's%export\([[:blank:]]*\)PATH=\(.*\):\$[{]\?PATH[}]\?%exportp\1PATH \2%g' ${install_work}/$SHRC > ${INSTALL_WORK}/_tmp1 2>/dev/null
347 sed -e 's%export\([[:blank:]]*\)LD_LIBRARY_PATH=\$[{]\?LD_LIBRARY_PATH[}]\?:\(.*\)%exporta\1LD_LIBRARY_PATH \2%g' -e 's%export\([[:blank:]]*\)LD_LIBRARY_PATH=\(.*\):\$[{]\?LD_LIBRARY_PATH[}]\?%exportp\1LD_LIBRARY_PATH \2%g' ${INSTALL_WORK}/_tmp1 > ${INSTALL_WORK}/_tmp2 2>/dev/null
348 sed -e 's%export\([[:blank:]]*\)PYTHONPATH=\$[{]\?PYTHONPATH[}]\?:\(.*\)%exporta\1PYTHONPATH \2%g' -e 's%export\([[:blank:]]*\)PYTHONPATH=\(.*\):\$[{]\?PYTHONPATH[}]\?%exportp\1PYTHONPATH \2%g' ${INSTALL_WORK}/_tmp2 > ${INSTALL_WORK}/_tmp1 2>/dev/null
349 sed -e 's%export\([[:blank:]]*\)LD_RUN_PATH=\$[{]\?LD_RUN_PATH[}]\?:\(.*\)%exporta\1LD_RUN_PATH \2%g' -e 's%export\([[:blank:]]*\)LD_RUN_PATH=\(.*\):\$[{]\?LD_RUN_PATH[}]\?%exportp\1LD_RUN_PATH \2%g' ${INSTALL_WORK}/_tmp1 > ${INSTALL_WORK}/_tmp2
350
351 # Setting "/usr/X11R6/lib" path in LD_LIBRARY_PATH for the libGL.so.1 file
352 if test `uname -m` = "x86_64" ; then
353 echo '# Setting /usr/X11R6/lib64 path in LD_LIBRARY_PATH for the libGL.so.1 file' >> ${INSTALL_WORK}/_tmp2
354 echo 'export LD_LIBRARY_PATH=/usr/X11R6/lib64:${LD_LIBRARY_PATH}' >> ${INSTALL_WORK}/_tmp2
355 else
356 echo '# Setting /usr/X11R6/lib path in LD_LIBRARY_PATH for the libGL.so.1 file' >> ${INSTALL_WORK}/_tmp2
357 echo 'export LD_LIBRARY_PATH=/usr/X11R6/lib:${LD_LIBRARY_PATH}' >> ${INSTALL_WORK}/_tmp2
358 fi
359
360 cat ${INSTALL_WORK}/_tmp2 >> ${install_work}/_$SHRC
361
362 # 5. Create a salome.csh file from salome.sh by replacing export by setenv, etc.
363 sed -e 's%export \([[:alnum:]_[:blank:]]*\)\=%setenv \1 %g' ${install_work}/$SHRC > ${INSTALL_WORK}/_tmp1 2>/dev/null
364 cat ${INSTALL_WORK}/_tmp1 >> ${install_work}/$CSHRC
365
366 # 6. Create a _salome.csh file from _salome.sh by replacing export by setenv, exporta by setenva, etc.
367 sed -e 's%export \([[:alnum:]_[:blank:]]*\)\=%setenv \1 %g' ${INSTALL_WORK}/_tmp2 > ${INSTALL_WORK}/_tmp1 2>/dev/null
368 sed -e 's%exporta \([[:alnum:]_[:blank:]]*\)%setenva \1%g'  ${INSTALL_WORK}/_tmp1 > ${INSTALL_WORK}/_tmp2 2>/dev/null
369 sed -e 's%exportp \([[:alnum:]_[:blank:]]*\)%setenvp \1%g'  ${INSTALL_WORK}/_tmp2 > ${INSTALL_WORK}/_tmp1 2>/dev/null
370 sed -e 's%if \[ -n "\${ENV_FOR_LAUNCH}" \] ; then%if ( ${?ENV_FOR_LAUNCH} ) then%g' ${INSTALL_WORK}/_tmp1 > ${INSTALL_WORK}/_tmp2 2>/dev/null
371 sed -e 's%if \[ "\${ENV_FOR_LAUNCH}" == "1" \] ; then%if ( "\${ENV_FOR_LAUNCH}" == "1" ) then%g' ${INSTALL_WORK}/_tmp2 > ${INSTALL_WORK}/_tmp1 2>/dev/null
372 sed -e 's%^\([[:blank:]]*\)fi\([[:blank:]]*\)$%\1endif\2%g' ${INSTALL_WORK}/_tmp1 > ${INSTALL_WORK}/_tmp2 2>/dev/null
373 cat ${INSTALL_WORK}/_tmp2 >> ${install_work}/_$CSHRC 2>/dev/null
374
375 rm -f ${INSTALL_WORK}/_tmp1 ${INSTALL_WORK}/_tmp2
376
377 if [ $# -eq 5 ] ; then
378     product_dir=$5
379     if [ -e ${product_dir} ] ; then
380         test -e ${product_dir}/$SHRC && mv ${product_dir}/$SHRC ${product_dir}/${SHRC}_`date +%F_%T`
381         cp ${install_work}/_$SHRC  ${product_dir}/$SHRC
382         test -e ${product_dir}/$CSHRC && mv ${product_dir}/$CSHRC ${product_dir}/${CSHRC}_`date +%F_%T`
383         cp ${install_work}/_$CSHRC ${product_dir}/$CSHRC
384     fi
385 fi
386 sed -e 's%setenv ENV_FOR_LAUNCH 1%setenv ENV_FOR_LAUNCH 0%' ${install_work}/_$CSHRC > ${install_root}/env_build.csh
387 sed -e 's%export ENV_FOR_LAUNCH=1%export ENV_FOR_LAUNCH=0%' ${install_work}/_$SHRC  > ${install_root}/env_build.sh
388
389 cp -f ${install_work}/_$CSHRC ${install_root}/env_products.csh
390 cp -f ${install_work}/_$SHRC  ${install_root}/env_products.sh
391
392 rm -f ${install_work}/_$SHRC ${install_work}/_$CSHRC
393 ### !!! copying build.csh and build.sh scripts
394 if [ -e ./build.csh ]; then
395     cp -f ./build.csh ${install_root}
396 fi
397 if [ -e ./build.sh ]; then
398     cp -f ./build.sh ${install_root}
399 fi
400 ### !!! copying release notes
401 for p in `ls ../` ; do
402     export pdf=`echo ${p} | sed s/[.]/" "/g | awk '{print $2}'`
403     if [ "${pdf}" = "pdf" ]; then
404         export RN=$p
405         if [ ! -e ${install_root}/${RN} ]; then
406             cp -f ../${RN} ${install_root}
407         fi
408     fi
409 done
410
411 }
412
413 #try use already existing product
414 try_existing()
415 {
416 product_dir=$1;  install_root=$2;  install_work=$3;
417 product_sequence="$4"; installed_products="$5";  product_type=$6
418 env_file=${product_dir}/env_${product_type}.sh
419 if [ -f ${env_file} ] ; then
420     cp -f ${env_file} ${install_work}/_env_${product_type}.sh
421     make_env ${install_root} ${install_work} "${product_sequence}" "${installed_products}"
422     source ${install_work}/$SHRC
423     check_version
424     if [ $? -eq 0 ] ; then
425         return 0
426     fi
427 fi
428 echo ${product_type} | grep -q '_src$'
429 if [ $? -eq 1 ] ; then
430     print_env_bin
431 else
432     print_env_src
433 fi
434 return 0
435 }
436
437 #check existance of lib passed as first parameter
438 #return 0 if lib exists
439 #if you pass second parameter search will be done in it 
440 #otherwise search will be done in $LD_LIBRARY_PATH
441 #you should use : as dilimeter if you are going to pass second parameter
442 check_lib_version(){
443 if [ -n "$2" ]; then
444    whereIs=$2
445 else
446    whereIs=$LD_LIBRARY_PATH
447 fi
448 for L in `echo ${whereIs} | sed -e"s%:% %g"` ;  do
449     ret=`find $L -name $1 2>/dev/null`
450     if [ -n "$ret" ] ; then
451         #echo "The $1 exists on yours system in a $L folder"
452         return 0
453     fi
454 done
455 return 1
456 }
457
458 find_in_path(){
459 file=$1;  shift; 
460 path=$*
461 for i in `echo ${path} | sed -e"s%:% %g"` ; do 
462     ret=`find $i -name $file -maxdepth 1 2>/dev/null`
463     if [ -n "$ret" ] ; then
464         ret=`echo $ret | sed -e"s%/\$file$%%g"`
465         echo $ret
466         return 0
467     fi
468 done
469 return 1
470 }
471
472 sort_path(){
473 arg1=$1;  val1=$2;  arg2=$3;  val2=$4
474 tmp="^$val1$|^$val1:|:$val1$|:$val1:"
475 #echo $val2 | grep -E "$tmp" >/dev/null 2>&1
476 #if [ $? -eq 0 ] ; then 
477 #    echo "$arg2"
478 #    return
479 #fi
480 to_tail=1
481 exclude_list="usr lib bin sbin etc"
482 for i in ${exclude_list} ; do
483     tmp="^/$i/|^/$i\$"
484     echo ${val1} | grep -E "$tmp" >/dev/null 2>&1
485     if [ $? == 0 ] ; then to_tail=0; break; fi
486 done
487 if [ $to_tail -eq 0 ] ; then
488     echo $arg2:$arg1
489 else
490     echo $arg1:$arg2
491 fi
492 return $to_tail
493 }
494
495 where_gcc(){
496 maj_ver=`echo $1 | awk -F. '{if(NF>0) print $1; else print 0}'`
497 min_ver=`echo $1 | awk -F. '{if(NF>1) print $2; else print 0}'`
498 rel_ver=`echo $1 | awk -F. '{if(NF>2) print $3; else print 0}'`
499 let ver=$maj_ver*10000+$min_ver*100+$rel_ver
500 newer=""
501 newerver=0
502 for i in `echo ${PATH}:/usr/bin:/usr/local/bin | sed -e"s%:% %g"` ; do 
503     ret=`find $i -name gcc -maxdepth 1 2>/dev/null`
504     if [ -n "$ret" ] ; then
505         maj_ver=`$ret -dumpversion | awk -F. '{if(NF>0) print $1; else print 0}'`
506         min_ver=`$ret -dumpversion | awk -F. '{if(NF>1) print $2; else print 0}'`
507         rel_ver=`$ret -dumpversion | awk -F. '{if(NF>2) print $3; else print 0}'`
508         let ver1=$maj_ver*10000+$min_ver*100+$rel_ver
509         if [ $ver1 -eq $ver ] ; then
510             ret=`echo $ret | sed -e"s%/gcc$%%g"`
511             echo $ret
512             return 0
513         fi
514         if [ $ver1 -gt $ver ] && [ $ver1 -gt $newerver ] ; then
515             let newerver=$ver1
516             newer=`echo $ret | sed -e"s%/gcc$%%g"`
517         fi
518     fi
519 done
520 if [ -n "$newer" ] ; then
521     echo $newer
522     return 0
523 fi
524 return 1
525 }
526
527 where_tcl(){
528 if test -z "${TCLHOME}"; then
529     TCLHOME=/usr
530 fi
531 tclcfg=`find ${TCLHOME}/lib -name "tclConfig.sh" 2> /dev/null`
532 file=""
533 maxver=0
534 for f in $tclcfg; do
535     ver=`cat $f | grep -e "TCL_VERSION=.*" | sed -e "s%TCL_VERSION=[\'|\"]\(.*\)[\'|\"]%\1%g" | awk -F. '{x=0;for(i=1;i<=3;i++){x=x*100;if(i<=NF)x+=$i;}print x;}'`
536     if [ $maxver -lt $ver ]; then
537         maxver=$ver
538         file=$f
539     fi
540 done
541 if test -n "$file"; then
542     echo `dirname $file`
543     return 0
544 else
545     echo ""
546     return 1
547 fi
548 }
549
550 where_tk(){
551 if test -z "${TCLHOME}"; then
552     TCLHOME=/usr
553 fi
554 tclcfg=`find ${TCLHOME}/lib -name "tkConfig.sh" 2> /dev/null`
555 file=""
556 maxver=0
557 for f in $tclcfg; do
558     ver=`cat $f | grep -e "TK_VERSION=.*" | sed -e "s%TK_VERSION=[\'|\"]\(.*\)[\'|\"]%\1%g" | awk -F. '{x=0;for(i=1;i<=3;i++){x=x*100;if(i<=NF)x+=$i;}print x;}'`
559     if [ $maxver -lt $ver ]; then
560         maxver=$ver
561         file=$f
562     fi
563 done
564 if test -n "$file"; then
565     echo `dirname $file`
566     return 0
567 else
568     echo ""
569     return 1
570 fi
571 }
572
573 where_dps(){
574 if test -f /usr/X11R6/include/DPS/dpsconfig.h ; then
575     echo "/usr/X11R6"
576     return 0
577 fi
578 if test -f /usr/include/DPS/dpsconfig.h ; then
579     echo "/usr"
580     return 0
581 fi
582 echo ""
583 return 1
584 }
585
586 where_gl_includes(){
587 for d in /usr/X11R6/include /usr/include ; do
588     if [ -d ${d}/GL ] && [ -f ${d}/GL/gl.h ] ; then
589         echo "$d"
590         return 0
591     fi
592 done
593 echo ""
594 return 1
595 }
596
597 where_gl_libs(){
598 # search libGL.so* file and correct libGL.la in the same directory
599 for d in /usr/X11R6/lib64 /usr/lib64 /usr/X11R6/lib /usr/lib ; do
600     if [ "`ls ${d}/libGL.so* 2>/dev/null`" ] && [ -f ${d}/libGL.la ]; then
601         libdir=`grep "libdir=" ${d}/libGL.la | sed -e "s%libdir='\(.*\)'%\1%" -e "s%/*$%%g"`
602         if [ "$libdir" == "$d" ] ; then
603             echo "$d"
604             return 0
605         fi
606     fi
607 done
608 # search libGL.la file and check if this file is correct
609 for d in /usr/X11R6/lib64 /usr/lib64 /usr/X11R6/lib /usr/lib ; do
610     if [ -f ${d}/libGL.la ] ; then
611         libdir=`grep "libdir=" ${d}/libGL.la | sed -e "s%libdir='\(.*\)'%\1%"`
612         if [ "`ls $libdir/libGL.so* 2>/dev/null`" ] ; then
613             echo "$d"
614             return 0
615         fi
616     fi
617 done
618 # then search libGL.so* file
619 for d in /usr/X11R6/lib64 /usr/lib64 /usr/X11R6/lib /usr/lib ; do
620     if [ "`ls ${d}/libGL.so* 2>/dev/null`" ] ; then
621         echo "$d"
622         return 0
623     fi
624 done
625 echo ""
626 return 1
627 }
628
629 modif_la_files(){
630 ldir=$1
631 if [ -z "$ldir" ] || [ ! -d "$ldir" ]; then return 1; fi
632
633 srcdir=`pwd`
634
635 SALOME_MODULES="`env | awk -F_ '/[[:alnum:]]*_ROOT_DIR/ { print $1 }'`"
636
637 cd $ldir
638 ldir=`pwd`
639 la_files=`find . -name "*.la"`
640
641 for l in X ${la_files}; do
642 if [ "$l" != "X" ] ; then
643     d=`dirname $l`
644     l=`basename $l`
645     cd $ldir; cd $d
646     # 1. process salome modules dependencies
647     for mod in $SALOME_MODULES; do
648         moddir=`printenv ${mod}_ROOT_DIR`
649         if [ -n "${moddir}" ] ; then
650             #echo $l $mod $moddir
651             sed -e "s%[[:space:]]\(-L\)\?[^[:space:]]*${mod}[^[:space:]/]*/lib% \1${moddir}/lib%g" $l > $l"_"
652             mv -f $l"_" $l
653         fi
654     done
655     # 2. process CAS.CADE dependencies
656     casdir=`printenv CASROOT`/lib
657     if [ ! -d ${casdir} ] ; then casdir=`printenv CASROOT`/Linux/lib ; fi
658     if [ ! -d ${casdir} ] ; then casdir=`printenv CASROOT`/lin/lib ; fi
659     if [ -n "${CASROOT}" ] && [ -d "${casdir}" ] ; then
660         # echo $l $CASROOT $casdir
661         sed -e "s%[[:space:]]\(-L\)\?[^[:space:]]*\(OCT\|CAS\)[^[:space:]/]*/Linux/lib% \1${casdir}%g" \
662             -e "s%[[:space:]]\(-L\)\?[^[:space:]]*\(OCT\|CAS\)[^[:space:]/]*/lin/lib% \1${casdir}%g"   \
663             -e "s%[[:space:]]\(-L\)\?[^[:space:]]*\(OCT\|CAS\)[^[:space:]/]*/lib% \1${casdir}%g" $l > $l"_"
664         mv -f $l"_" $l
665     fi
666     # 3. process omniORB dependencies
667     omnidir=`printenv OMNIORBDIR`/lib/i586_linux_2.0_glibc2.1
668     if [ ! -d ${omnidir} ] ; then omnidir=`printenv OMNIORBDIR`/lib ; fi
669     if [ -n "${OMNIORBDIR}" ] && [ -d "${omnidir}" ] ; then
670         # echo $l $OMNIORBDIR $omnidir
671         sed -e "s%-L[^[:space:]]*omni[^[:space:]]*%-L${omnidir}%g" $l > $l"_"
672         mv -f $l"_" $l
673     fi
674     # 4. process VTK dependencies
675     if test `uname -m` = "x86_64" ; then
676     vtkdir=`printenv VTKHOME`/lib64/vtk
677     else
678     vtkdir=`printenv VTKHOME`/lib/vtk
679     fi
680     if [ -n "${VTKHOME}" ] && [ -d "${vtkdir}" ] ; then
681         # echo $l $VTKHOME $vtkdir
682         sed -e "s%-L[^[:space:]]*VTK[^[:space:]]*/\(lib\|lib64\)/vtk%-L${vtkdir}%g" $l > $l"_"
683         mv -f $l"_" $l
684     fi
685     # 5. process HDF dependencies
686     hdfdir=`printenv HDF5HOME`/lib
687     if [ -n "${HDF5HOME}" ] && [ -d "${hdfdir}" ] ; then
688         # echo $l $HDF5HOME $hdfdir
689         sed -e "s%[[:space:]]\(-L\)\?[^[:space:]]*hdf[^[:space:]/]*/lib% \1${hdfdir}%g" $l > $l"_"
690         mv -f $l"_" $l
691     fi
692     # 6. process MED dependencies
693     meddir=`printenv MED2HOME`/lib
694     if [ -n "${MED2HOME}" ] && [ -d "${meddir}" ] ; then
695         # echo $l $MED2HOME $meddir
696         sed -e "s%[[:space:]]\(-L\)\?[^[:space:]]*med[^[:space:]/]*/lib% \1${meddir}%g" $l > $l"_"
697         mv -f $l"_" $l
698     fi
699     # 7. process qwt dependencies
700     qwtdir=`find_in_path libqwt.so ${LD_LIBRARY_PATH}`
701     if [ -n "${qwtdir}" ] && [ -d "${qwtdir}" ] ; then
702         # echo $l $qwtdir
703         sed -e "s%[[:space:]]\(-L\)\?[^[:space:]]*qwt[^[:space:]/]*/lib% \1${qwtdir}%g" $l > $l"_"
704         mv -f $l"_" $l
705     fi
706     # 8. process qt dependencies
707     qtdir=`printenv QTDIR`/lib
708     if [ -n "${QTDIR}" ] && [ -d "${qtdir}" ] ; then
709         # echo $l $QTDIR $qtdir
710         sed -e "s%[[:space:]]\(-L\)\?[^[:space:]]*qt[^[:space:]/]*/lib% \1${qtdir}%g" $l > $l"_"
711         mv -f $l"_" $l
712     fi
713     # 9. process python dependencies
714     where_python=`which python`                 # e.g. /usr/bin/python
715     if [ -n "$where_python" ] ; then
716         where_python=`dirname $where_python`    # --> /usr/bin
717         where_python=`dirname $where_python`    # --> /usr
718         python_version=`python -c "import sys; print sys.version[:3]"`
719         # echo $l $where_python $python_version
720         sed -e "s%-L[^[:space:]]*python[0-9]\.[0-9]\([^[:space:]]*\)%-L${where_python}/lib/python${python_version}\1%g" $l > $l"_"
721         mv -f $l"_" $l
722     fi
723     # 10. process sip dependencies
724     sipdir=`find_in_path sip.so ${LD_LIBRARY_PATH}`
725     if [ -n "${sipdir}" ] && [ -d "${sipdir}" ] ; then
726         # echo $l $sipdir
727         sed -e "s%-L[^[:space:]]*sip[^[:space:]]*%-L${sipdir}%g" $l > $l"_"
728         mv -f $l"_" $l
729     fi
730     # 11. process PyQt dependencies
731     pyqtdir=`find_in_path qt.so ${LD_LIBRARY_PATH}`
732     if [ -n "${pyqtdir}" ] && [ -d "${pyqtdir}" ] ; then
733         # echo $l $pyqtdir
734         sed -e "s%-L[^[:space:]]*PyQt[^[:space:]]*%-L${pyqtdir}%g" $l > $l"_"
735         mv -f $l"_" $l
736     fi
737     # 12. process tcl/tk dependencies
738     tcldir=`printenv TCLHOME`/lib
739     if [ -n "${tcldir}" ] && [ -d "${tcldir}" ] ; then
740         # echo $l $TCLHOME $tcldir
741         sed -e "s%-L[^[:space:]]*tcltk[^[:space:]]*/lib%-L${tcldir}%g" $l > $l"_"
742         mv -f $l"_" $l
743     fi
744     # 13. process boost dependencies
745     boostdir=`printenv BOOSTDIR`/lib
746     if [ -n "${boostdir}" ] && [ -d "${boostdir}" ] ; then
747         # echo $l $BOOSTDIR $boostdir
748         sed -e "s%-L[^[:space:]]*boost[^[:space:]]*/lib%-L${boostdir}%g" $l > $l"_"
749         mv -f $l"_" $l
750     fi
751     # 14. modify libdir
752     #sed -e "s%^libdir='\(.*\)'%libdir='${PRODUCT_DIR}/lib/salome'%g" $l > $l"_"
753     mod=`basename $ldir | awk -F_ '{print $1}'`
754     moddir=`printenv ${mod}_ROOT_DIR`
755     sed -e "s%^libdir='[^[:space:]]*${mod}[^[:space:]]*/\(lib.*\)'%libdir='${moddir}/\1'%g" $l > $l"_"
756     mv -f $l"_" $l
757
758     # 15. process libxml dependencies
759     libxmldir=`printenv LIBXML_DIR`/lib
760     if [ ! -d ${libxmldir} ] ; then libxmldir=`printenv  LIBXML_DIR`/lib ; fi
761     sed -e "s%\(.*\)\([[:space:]].*/lib/libxml2.la[[:space:]]\)\(.*\)%\1 ${libxmldir}/libxml2.la \3%g" \
762         -e "s%-L[^[:space:]]*libxml2[^[:space:]]*/lib%-L${libxmldir}%g" $l > $l"_"
763     mv -f $l"_" $l      
764
765     # 16. process metis dependencies
766     metisdir=`printenv METISDIR`
767     if [ ! -d ${metisdir} ] ; then metisdir=`printenv  METISDIR` ; fi
768     sed -e "s%-L[^[:space:]]*metis[^[:space:]]*%-L${metisdir}%g" $l > $l"_"
769     mv -f $l"_" $l      
770
771     # 3. process scotch dependencies
772     scotchdir=`printenv SCOTCHDIR`/bin
773     if [ ! -d ${scotchdir} ] ; then scotchdir=`printenv SCOTCHDIR`/bin ; fi
774     sed    -e "s%-L[^[:space:]]*scotch[^[:space:]]*/bin%-L${scotchdir}%g" $l > $l"_"
775     mv -f $l"_" $l      
776
777
778 fi
779 done
780
781 cd $srcdir
782 return 0
783 }