X-Git-Url: https://git.creatis.insa-lyon.fr/pubgit/?a=blobdiff_plain;f=Linux%2Fscripts%2FCreaTools-install.sh;h=4a37bb3f4f2709c94c6577cb09ce465a6422aafd;hb=6d26f492da9eea9c4c53600995316af84cca6c1d;hp=d5b107f1133bf35c06273fe0cc02f501556a3ad3;hpb=a5fce6cfe871e7dee66e6e7c064ef9e632a5c192;p=creaToolsTools.git diff --git a/Linux/scripts/CreaTools-install.sh b/Linux/scripts/CreaTools-install.sh index d5b107f..4a37bb3 100644 --- a/Linux/scripts/CreaTools-install.sh +++ b/Linux/scripts/CreaTools-install.sh @@ -1,3 +1,27 @@ +# --------------------------------------------------------------------- +# +# Copyright (c) CREATIS (Centre de Recherche en Acquisition et Traitement de l'Image +# pour la Santé) +# Authors : Eduardo Davila, Frederic Cervenansky, Claire Mouton +# +# This software is governed by the CeCILL-B license under French law and +# abiding by the rules of distribution of free software. You can use, +# modify and/ or redistribute the software under the terms of the CeCILL-B +# license as circulated by CEA, CNRS and INRIA at the following URL +# http://www.cecill.info/licences/Licence_CeCILL-B_V1-en.html +# or in the file LICENSE.txt. +# +# As a counterpart to the access to the source code and rights to copy, +# modify and redistribute granted by the license, users are provided only +# with a limited warranty and the software's author, the holder of the +# economic rights, and the successive licensors have only limited +# liability. +# +# The fact that you are presently reading this means that you have had +# knowledge of the CeCILL-B license and that you accept its terms. +# ------------------------------------------------------------------------ + + #!/bin/bash # JPR 2/5/2011 @@ -6,10 +30,30 @@ # Set all local variables source $PWD/scripts/CreaTools-configure.sh source $PWD/scripts/CreaTools-names.sh + + if [ -e $generationdir ] + then + if [ ! -e $generationdir/creatools_install ] + then + mkdir $generationdir/creatools_install + fi + else + echo + echo "..ERROR.." + echo "===================================================" + echo "REMEMBER !" + echo "" + echo "You MUST load the Creatools sources before (use 2.2)!" + echo "===================================================" + echo + echo + read a + exit 0 + fi cd $scriptDir -#create creatools_base_library_config.sh at the very begining, so we can write "export xxx_BIN=..." inside installmod.sh. JPRx 3 mars 2011 + #create creatools_base_library_config.sh at the very begining, so we can write "export xxx_BIN=..." inside installmod.sh. JPRx 3 mars 2011 if [ -f $installPrefix/share/creatools_base_library_config.sh ] then @@ -19,20 +63,16 @@ chmod 755 $installPrefix/share/creatools_base_library_config.sh echo export PATH='$'PATH:$installPrefix/bin >> $installPrefix/share/creatools_base_library_config.sh - echo export LD_LIBRARY_PATH='$'LD_LIBRARY_PATH:$installPrefix/lib/creatools >> $installPrefix/share/creatools_base_library_config.sh - echo export LD_LIBRARY_PATH='$'LD_LIBRARY_PATH:$installPrefix/lib64/creatools >> $installPrefix/share/creatools_base_library_config.sh - -# Install creatools as user (no longer as root) // JPR 2/5/2011 - -# if [ ! -f /etc/bashrc ] -# then -# export ETC_BASHRC="/etc/bash.bashrc" -# else -# export ETC_BASHRC="/etc/bashrc" -# fi + if [ $OperatingSystem = "MacOS" ] + then + echo export DYLD_LIBRARY_PATH='$'DYLD_LIBRARY_PATH:$installPrefix/lib/creatools >> $installPrefix/share/creatools_base_library_config.sh + else + echo export LD_LIBRARY_PATH='$'LD_LIBRARY_PATH:$installPrefix/lib/creatools >> $installPrefix/share/creatools_base_library_config.sh + echo export LD_LIBRARY_PATH='$'LD_LIBRARY_PATH:$installPrefix/lib64/creatools >> $installPrefix/share/creatools_base_library_config.sh + fi + + # Install creatools as user (no longer as root) // JPR 2/5/2011 -export ETC_BASHRC=$HOME/.bashrc - # - remove line 'bash $installPrefix/creatools_install/share/creatools_base_library_config.sh' if any sed -i -e '/.*creatools_base_library_config.*/ d' $ETC_BASHRC sed -i -e '/installPrefixtmp*/ d' $ETC_BASHRC @@ -43,6 +83,7 @@ export ETC_BASHRC=$HOME/.bashrc bash installmod.sh $buildType $creasource $generationdir $installPrefix bash installmod.sh $buildType $bbtksource $generationdir $installPrefix + bash installmod.sh $buildType $creavtksource $generationdir $installPrefix bash installmod.sh $buildType $creamaracassource $generationdir $installPrefix bash installmod.sh $buildType $creaenvironmentsource $generationdir $installPrefix bash installmod.sh $buildType $creabrukersource $generationdir $installPrefix @@ -51,7 +92,35 @@ export ETC_BASHRC=$HOME/.bashrc bash installmod.sh $buildType $crearigidregistrationssource $generationdir $installPrefix bash installmod.sh $buildType $bbtkgeditorsource $generationdir $installPrefix bash installmod.sh $buildType $creatoolssource $generationdir $installPrefix - + bash installmod.sh $buildType $creaminitoolssource $generationdir $installPrefix + # bash installmod.sh $buildType $libidosource $generationdir $installPrefix + + #export as well bbPackages_DIR // JPR 25 Mai 2011 + + bash installmodNomake.sh $buildType appli $generationdir $installPrefix + bash installmodNomake.sh $buildType creaMiniToolsBase $generationdir $installPrefix + bash installmodNomake.sh $buildType demo $generationdir $installPrefix + bash installmodNomake.sh $buildType gdcmvtk $generationdir $installPrefix + bash installmodNomake.sh $buildType itk $generationdir $installPrefix + bash installmodNomake.sh $buildType itkvtk $generationdir $installPrefix + bash installmodNomake.sh $buildType qt $generationdir $installPrefix + bash installmodNomake.sh $buildType std $generationdir $installPrefix + bash installmodNomake.sh $buildType toolsbbtk $generationdir $installPrefix + bash installmodNomake.sh $buildType vtk $generationdir $installPrefix + bash installmodNomake.sh $buildType wx $generationdir $installPrefix + bash installmodNomake.sh $buildType wxvtk $generationdir $installPrefix + +#EED I don't know why this works here and not after the chmod 755 +echo export PATH='$'PATH:$installPrefix/bin >> $installPrefix/share/creatools_base_library_config.sh +if [ $OperatingSystem = "MacOS" ] +then + echo export DYLD_LIBRARY_PATH='$'DYLD_LIBRARY_PATH:$installPrefix/lib/creatools >> $installPrefix/share/creatools_base_library_config.sh +else + echo export LD_LIBRARY_PATH='$'LD_LIBRARY_PATH:$installPrefix/lib/creatools >> $installPrefix/share/creatools_base_library_config.sh + echo export LD_LIBRARY_PATH='$'LD_LIBRARY_PATH:$installPrefix/lib64/creatools >> $installPrefix/share/creatools_base_library_config.sh +fi + +echo "===================================================in CreaTools-install.sh ETC_BASHRC : " $ETC_BASHRC echo installPrefixtmp=$installPrefix >> $ETC_BASHRC echo '[ -f "$installPrefixtmp/share/creatools_base_library_config.sh" ] && source $installPrefixtmp/share/creatools_base_library_config.sh' >> $ETC_BASHRC