3 ####################################################################################
5 # Created : Thu Dec 18 12:01:00 2002
6 # Author : Vadim SANDLER, Open CASCADE SAS (vadim.sandler@opencascade.com)
8 # Module : Installation Wizard
9 # Copyright : 2002-2007 CEA
11 # This script is the part of the SALOME installation procedure.
13 ####################################################################################
16 export SHRC="salome.sh"
17 export CSHRC="salome.csh"
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
24 check_salome_src_version(){
25 root_dir=`printenv $1`
28 if [ -n "$root_dir" ]; then
30 if [ ! -f ${root_dir}/${cfg_file} ] ; then
31 cfg_file=configure.in.base
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
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)
53 if [ -n "$INSTALL_WORK" ] ; then errfile=$INSTALL_WORK/errlog; fi
55 if [ "$out" != "1" ] ; then cmd="$cmd >> $out" ; fi
57 if [ "$out" != "1" ] ; then
62 if [ "$?" -ne "0" ] ; then
63 if [ $out != "1" ] ; then
68 # VSR : 10/11/05: disable answer mode ==>
70 #echo -e "NOT DONE !!! => $*"
71 #echo -n "Would you like to continue to install this product: (Y,N) [Y] : "
73 #rep=`echo $rep | tr "[A-Z]" "[a-z]"`
74 #if test -z $rep || [ $rep = "y" ] ; then
77 # VSR : 10/11/05: disable answer mode <==
83 #invoke check_job function
84 #all output will be put into terminal
94 rm -rf "$1" > /dev/null
98 #create environment for sh and csh
101 install_root=$1; shift
104 for i in $SHRC $CSHRC ; do
105 if [ -e ${install_work}/$i ]; then
106 rm ${install_work}/$i
108 touch ${install_work}/$i
111 if [ $# -eq 4 ] ; then
113 product_env=${install_work}/env_${product_name}.sh
114 (test -e ${product_env} && rm ${product_env} )
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}
121 #${DELIM} Environment switch: 0 for SALOME building, 1 for SALOME launching ${DELIM}
122 export ENV_FOR_LAUNCH=1
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
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
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.
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
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
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
174 cat $env_file >> ${install_work}/$SHRC 2>/dev/null
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,
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.
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
199 out_var=\`echo \$1 \$2 | awk -v dir=\$3 '{ \\
200 na = split(\$2,a,":"); \\
204 if(\$1 != "<empty>") { \\
205 nb = split(\$1,b,":"); \\
206 for(i=1;i<=nb;i++) { \\
207 if(!(b[i] in ccc) ) { \\
215 for(i=1;i<=na;i++) { \\
216 if(!(a[i] in ccc)) { \\
223 for(i=1;i<k2;i++) { \\
226 for(i=1;i<k1;i++) { \\
231 for(i=1;i<k1;i++) { \\
234 for(i=1;i<k2;i++) { \\
238 }' | sed -e 's/\(.*\):/\1/g'\`
242 # appends directory or set of directories, separated by ':' (second parameter)
243 # to the variable (first parameter)
245 xenv=\`printenv \$1\`
246 if [ -z "\$xenv" ]; then xenv="<empty>"; fi
247 out_var=\`cleandup \$xenv \$2 0\`
251 # prepends directory or set of directories, separated by ':' (second parameter)
252 # to the variable (first parameter)
254 xenv=\`printenv \$1\`
255 if [ -z "\$xenv" ]; then xenv="<empty>"; fi
256 out_var=\`cleandup \$xenv \$2 1\`
259 ###########################################################################
263 # 3. writing global functions to _salome.csh file
264 cat >> ${install_work}/_$CSHRC <<EOF
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,
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.
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,":"); \\\\
288 if(\$1 != "<empty>") { \\\\
289 nb = split(\$1,b,":"); \\\\
290 for(i=1;i<=nb;i++) { \\\\
291 if(!(b[i] in ccc) ) { \\\\
299 for(i=1;i<=na;i++) { \\\\
300 if(!(a[i] in ccc)) { \\\\
307 for(i=1;i<k2;i++) { \\\\
310 for(i=1;i<k1;i++) { \\\\
315 for(i=1;i<k1;i++) { \\\\
318 for(i=1;i<k2;i++) { \\\\
322 }'"' | sed -e 's/\(.*\):/\1/g'"
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\` ; \\
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\` ; \\
340 ###########################################################################
343 cat ${install_work}/$CSHRC >> ${install_work}/_$CSHRC
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
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
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
360 cat ${INSTALL_WORK}/_tmp2 >> ${install_work}/_$SHRC
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
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
375 rm -f ${INSTALL_WORK}/_tmp1 ${INSTALL_WORK}/_tmp2
377 if [ $# -eq 5 ] ; then
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
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
389 cp -f ${install_work}/_$CSHRC ${install_root}/env_products.csh
390 cp -f ${install_work}/_$SHRC ${install_root}/env_products.sh
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}
397 if [ -e ./build.sh ]; then
398 cp -f ./build.sh ${install_root}
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
405 if [ ! -e ${install_root}/${RN} ]; then
406 cp -f ../${RN} ${install_root}
413 #try use already existing product
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
424 if [ $? -eq 0 ] ; then
428 echo ${product_type} | grep -q '_src$'
429 if [ $? -eq 1 ] ; then
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
446 whereIs=$LD_LIBRARY_PATH
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"
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"`
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
481 exclude_list="usr lib bin sbin etc"
482 for i in ${exclude_list} ; do
484 echo ${val1} | grep -E "$tmp" >/dev/null 2>&1
485 if [ $? == 0 ] ; then to_tail=0; break; fi
487 if [ $to_tail -eq 0 ] ; then
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
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"`
514 if [ $ver1 -gt $ver ] && [ $ver1 -gt $newerver ] ; then
516 newer=`echo $ret | sed -e"s%/gcc$%%g"`
520 if [ -n "$newer" ] ; then
528 if test -z "${TCLHOME}"; then
531 tclcfg=`find ${TCLHOME}/lib -name "tclConfig.sh" 2> /dev/null`
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
541 if test -n "$file"; then
551 if test -z "${TCLHOME}"; then
554 tclcfg=`find ${TCLHOME}/lib -name "tkConfig.sh" 2> /dev/null`
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
564 if test -n "$file"; then
574 if test -f /usr/X11R6/include/DPS/dpsconfig.h ; then
578 if test -f /usr/include/DPS/dpsconfig.h ; then
587 for d in /usr/X11R6/include /usr/include ; do
588 if [ -d ${d}/GL ] && [ -f ${d}/GL/gl.h ] ; then
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
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
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
631 if [ -z "$ldir" ] || [ ! -d "$ldir" ]; then return 1; fi
635 SALOME_MODULES="`env | awk -F_ '/[[:alnum:]]*_ROOT_DIR/ { print $1 }'`"
639 la_files=`find . -name "*.la"`
641 for l in X ${la_files}; do
642 if [ "$l" != "X" ] ; then
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"_"
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"_"
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"_"
674 # 4. process VTK dependencies
675 if test `uname -m` = "x86_64" ; then
676 vtkdir=`printenv VTKHOME`/lib64/vtk
678 vtkdir=`printenv VTKHOME`/lib/vtk
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"_"
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"_"
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"_"
699 # 7. process qwt dependencies
700 qwtdir=`find_in_path libqwt.so ${LD_LIBRARY_PATH}`
701 if [ -n "${qwtdir}" ] && [ -d "${qwtdir}" ] ; then
703 sed -e "s%[[:space:]]\(-L\)\?[^[:space:]]*qwt[^[:space:]/]*/lib% \1${qwtdir}%g" $l > $l"_"
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"_"
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"_"
723 # 10. process sip dependencies
724 sipdir=`find_in_path sip.so ${LD_LIBRARY_PATH}`
725 if [ -n "${sipdir}" ] && [ -d "${sipdir}" ] ; then
727 sed -e "s%-L[^[:space:]]*sip[^[:space:]]*%-L${sipdir}%g" $l > $l"_"
730 # 11. process PyQt dependencies
731 pyqtdir=`find_in_path qt.so ${LD_LIBRARY_PATH}`
732 if [ -n "${pyqtdir}" ] && [ -d "${pyqtdir}" ] ; then
734 sed -e "s%-L[^[:space:]]*PyQt[^[:space:]]*%-L${pyqtdir}%g" $l > $l"_"
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"_"
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"_"
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"_"
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"_"
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"_"
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"_"