]> Creatis software - creaToolsTools.git/blob - Linux/scripts/CreaTools-install.sh
#2493 creaToolsTools Feature New Normal - Prepare and Install binary CreaTools...
[creaToolsTools.git] / Linux / scripts / CreaTools-install.sh
1 # ---------------------------------------------------------------------
2 #
3 # Copyright (c) CREATIS (Centre de Recherche en Acquisition et Traitement de l'Image 
4 #                        pour la Santé)
5 # Authors : Eduardo Davila, Frederic Cervenansky, Claire Mouton
6 #
7 #  This software is governed by the CeCILL-B license under French law and 
8 #  abiding by the rules of distribution of free software. You can  use, 
9 #  modify and/ or redistribute the software under the terms of the CeCILL-B 
10 #  license as circulated by CEA, CNRS and INRIA at the following URL 
11 #  http://www.cecill.info/licences/Licence_CeCILL-B_V1-en.html 
12 #  or in the file LICENSE.txt.
13 #
14 #  As a counterpart to the access to the source code and  rights to copy,
15 #  modify and redistribute granted by the license, users are provided only
16 #  with a limited warranty  and the software's author,  the holder of the
17 #  economic rights,  and the successive licensors  have only  limited
18 #  liability. 
19 #
20 #  The fact that you are presently reading this means that you have had
21 #  knowledge of the CeCILL-B license and that you accept its terms.
22 # ------------------------------------------------------------------------  
23
24
25 #!/bin/bash
26
27 # JPR 2/5/2011
28 #if [ $UID = 0 ] 
29 #then
30   # Set all local variables
31   source $PWD/scripts/CreaTools-configure.sh
32   source $PWD/scripts/CreaTools-names.sh
33  
34   if [ -e $generationdir ]
35   then
36      if [ ! -e $generationdir/creatools_install ]
37      then
38         mkdir -p $generationdir/creatools_install
39      fi
40   else
41    echo
42    echo "..ERROR.."
43    echo "==================================================="
44    echo "REMEMBER !"
45    echo ""
46    echo "You MUST load the Creatools sources before (use 2.2)!"
47    echo "==================================================="
48    echo
49    echo 
50    read a
51    exit 0 
52   fi  
53   
54   cd $scriptDir
55
56
57   #create creatools_base_library_config.sh  at the very begining, so we can write "export xxx_BIN=..." inside installmod.sh. JPRx 3 mars 2011
58
59   export baseLibraryCreatoolsDir=$installPrefix/share/creatools
60   mkdir -p $baseLibraryCreatoolsDir
61
62   cp CreaTools-bashrc.sh $baseLibraryCreatoolsDir/.
63
64   echo '## This file is call from .bashrc' > $baseLibraryCreatoolsDir/creatools_base_library_config.sh
65   bash installmodBash.sh $installPrefix
66
67   # JPR 2/5/2011
68   #  modify /etc/bashrc (we cannot modify .bashrc, since we switched as root)  
69   # - add line 'bash $installPrefix/creatools_install/share/creatools_base_library_config.sh'
70
71   bash installmod.sh $buildType $creasource                   $generationdir  $installPrefix
72   bash installmod.sh $buildType $bbtksource                   $generationdir  $installPrefix
73   bash installmod.sh $buildType $creavtksource                $generationdir  $installPrefix
74   bash installmod.sh $buildType $creamaracassource            $generationdir  $installPrefix
75   bash installmod.sh $buildType $creaenvironmentsource        $generationdir  $installPrefix
76   bash installmod.sh $buildType $creabrukersource             $generationdir  $installPrefix
77   bash installmod.sh $buildType $creaimagesource              $generationdir  $installPrefix
78   bash installmod.sh $buildType $creacontourssource           $generationdir  $installPrefix
79   bash installmod.sh $buildType $crearigidregistrationssource $generationdir  $installPrefix
80   bash installmod.sh $buildType $bbtkgeditorsource            $generationdir  $installPrefix
81   bash installmod.sh $buildType $creatoolssource              $generationdir  $installPrefix
82   bash installmod.sh $buildType $creaminitoolssource          $generationdir  $installPrefix
83   # bash installmod.sh $buildType $libidosource                 $generationdir  $installPrefix 
84
85   #export as well bbPackages_DIR // JPR 25 Mai 2011
86
87   bash installmodNomake.sh $buildType appli              $generationdir  $installPrefix
88   bash installmodNomake.sh $buildType creaMiniToolsBase  $generationdir  $installPrefix
89   bash installmodNomake.sh $buildType demo               $generationdir  $installPrefix
90   bash installmodNomake.sh $buildType gdcmvtk            $generationdir  $installPrefix
91   bash installmodNomake.sh $buildType itk                $generationdir  $installPrefix
92   bash installmodNomake.sh $buildType itkvtk             $generationdir  $installPrefix
93   bash installmodNomake.sh $buildType qt                 $generationdir  $installPrefix
94   bash installmodNomake.sh $buildType std                $generationdir  $installPrefix
95   bash installmodNomake.sh $buildType toolsbbtk          $generationdir  $installPrefix
96   bash installmodNomake.sh $buildType vtk                $generationdir  $installPrefix
97   bash installmodNomake.sh $buildType wx                 $generationdir  $installPrefix
98   bash installmodNomake.sh $buildType wxvtk              $generationdir  $installPrefix
99
100
101 source CreaTools-bashrc.sh
102 source $ETC_BASHRC 
103
104 ##EED 21/12/2014
105 ##EED echo "==================================================="
106 ##EED echo " Regenerate Package doc"
107 ##EED $installPrefix/bin/bbRegeneratePackageDoc -a -q
108 ##EED echo " Regenerate Boxes list"
109 ##EED $installPrefix/bin/bbRegenerateBoxesLists -q
110 ##EED echo "==================================================="
111
112   # JPR 2/5/2011
113 #else
114 #  echo
115 #  echo "..ERROR.."
116 #  echo "==================================================="
117 #  echo "REMEMBER !"
118 #  echo ""
119 #  echo "YOU NEED TO RUN THIS ONE AS root"
120 #  echo "==================================================="
121 #  echo
122 #  echo
123 #fi 
124