]> Creatis software - creaToolsTools.git/blob - Linux/scripts/ThirdParty-install.sh
9211a45b33b07da7ada5128e380bc9756720105d
[creaToolsTools.git] / Linux / scripts / ThirdParty-install.sh
1 #!/bin/bash
2  if [ ! -f $PWD/scripts/CreaTools-configure.sh ]
3  then 
4    echo
5    echo "..ERROR.."
6    echo "==================================================="
7    echo "REMEMBER !"
8    echo ""
9    echo "YOU NEED TO RUN 'Configure' (0) First !"
10    echo "==================================================="
11    echo
12    echo
13    exit 0
14 fi 
15 echo $loginGroupName
16
17 source $PWD/scripts/CreaTools-configure.sh
18
19    echo "------"
20    echo $PWD/scripts/CreaTools-configure.sh
21    echo --generationdir--
22    echo $generationdir
23    echo --corenumber--
24    echo $corenumber   
25    echo --docgeneration--
26    echo $docgeneration
27    echo --installPrefix--
28    echo $installPrefix
29    echo --installPrefixThird--
30    echo $installPrefixThird
31    echo --buildType--
32    echo $buildType
33    echo --gdcmVersion--
34    echo $gdcmVersion
35 #   echo --sourcesFrom--
36 #   echo $sourcesFrom
37 #   echo --scriptDir--
38 #   echo $scriptDir
39 #   echo --start_point--
40 #   echo $start_point
41    echo "------"
42
43
44 scriptDir=$PWD
45 sourcesDir=$generationdir/thirdparty_sources
46 binDir=$generationdir/thirdparty_bin
47
48 if [ ! -e $generationdir ]
49 then
50    mkdir $generationdir
51    chown $loginUserName  $generationdir
52    chgrp $loginGroupName $generationdir
53
54 fi
55 if [ ! -e $sourcesDir ]
56 then
57    mkdir $sourcesDir
58    #was : (pb on MacOS?)
59    #chown $loginUserName:$loginGroupName $sourcesDir
60    chown $loginUserName  $sourcesDir
61    chgrp $loginGroupName $sourcesDir
62 fi
63
64 if [ ! -e $binDir ]
65 then
66    mkdir $binDir
67    chown $loginUserName  $binDir
68    chgrp $loginGroupName $binDir
69 fi
70
71
72 # the following stupid test is used at debug time; Please don't remove!
73 if [ true = true ]
74 #if [ true = false ]
75 then
76   # ///\TODO what about SuSE? Debian? Mandriva? Gentoo?
77   case "$OperatingSystem" in
78   Fedora)
79      yum install cmake                -y 
80      yum install cmake-gui            -y 
81      yum install doxygen              -y
82      yum install graphviz             -y
83      yum install texlive              -y
84      yum install latex2html           -y
85      yum install wxGTK-devel wxBase   -y
86      yum install boost-devel          -y
87      yum install sqlite-devel         -y
88      yum install qt-devel             -y
89      yum install mesa-libOSMesa-devel -y
90      ;;
91   Ubuntu)  
92      apt-get --yes install build-essential  # esta linea instala las librerias necesarias para compilar en ubuntu, g++ gcc etc etc etc.
93      apt-get --yes install cmake
94      apt-get --yes install cmake-gui
95      apt-get --yes install cmake-curses-gui
96      apt-get --yes install doxygen
97      apt-get --yes install graphviz
98      apt-get --yes install texlive
99      apt-get --yes install latex2html
100      apt-get --yes install libgtk2.0-dev #GTK
101      apt-get --yes install libwxgtk2.8-dev #Wx GTK
102      apt-get --yes install libwxbase2.8-dev #Wx solito
103      apt-get --yes install libboost-dev  #Boost
104      apt-get --yes install libboost-all-dev #Boost
105      apt-get --yes install libqt4-dev #QT4
106      apt-get --yes install sqlite
107      apt-get --yes install libsqlite0-dev
108      apt-get --yes install libosmesa6-dev #Mesa6
109      apt-get --yes install uuid-dev # uuid para la instalacion de itk
110      apt-get --yes install libxaw7-dev # X11
111      ;;
112   MacOS)
113      port selfupdate
114      port install cmake                -y
115      port install doxygen              -y
116      port install graphviz             -y
117      port install tetex                -y   # cf EED : http://www.creatis.insa-lyon.fr/site/fr/CreatoolsInstallInstructionsv2.0.1MacOsv10.5.6-Developpers
118      port install texlive              -y
119      port install latex2html           -y
120      port install wxGTK                -y
121      port install boost                -y
122         ln -s libboost_signals-xgcc40-mt-1_38.dylib    libboost_signals.dylib    /usr/local/lib # cf EED : http://www.creatis.insa-lyon.fr/site
123         ln -s libboost_signals-xgcc40-mt-1_38.dylib    libboost_signals.dylib    /usr/local/lib # cf EED
124         ln -s libboost_filesystem-xgcc40-mt-1_38.dylib libboost_filesystem.dylib /usr/local/lib # cf EE
125         ln -s libboost_system-xgcc40-mt-1_38.dylib     libboost_system.dylib     /usr/local/lib # cf EE 
126      port install sqlite3              -y
127      port install qt4-mac              -y
128         ln -s qmake-mac qmake /opt/local/bin  # cf EED
129      port install mesa                 -y
130      ;;
131   *)
132      #echo " '$OperatingSystem' : Unknown (for us...) Operating Sytem "
133      echo " Allowed values are (right now) Fedora, Ubuntu, MacOS "
134      exit 0
135      ;;
136   esac             
137 fi
138
139
140
141 # the following stupid test is used at debug time; Please don't remove!
142 #if [ true = false ]
143 if [ true = true ]
144 then
145   rm -rf $sourcesDir/VTK*
146   rm -rf $sourcesDir/vtk*
147   rm -rf $sourcesDir/InsightToolkit*
148   rm -rf $sourcesDir/gdcm*
149   rm -rf $sourcesDir/tth*
150
151   rm -rf $binDir/gdcm*
152   rm -rf $binDir/InsightToolkit*
153   rm -rf $binDir/VTK*
154   cd $sourcesDir
155
156  if [ $OperatingSystem = "MacOS" ]
157  then     
158   curl -O http://www.creatis.insa-lyon.fr/software/public/creatools/crea_ThirdParty_Libraries/source/VTK-5.6.1.patchCreatis.tar.gz
159   curl -O http://www.creatis.insa-lyon.fr/software/public/creatools/crea_ThirdParty_Libraries/source/gdcm_05_Mai_2011.tar.gz
160   curl -O http://www.creatis.insa-lyon.fr/software/public/creatools/crea_ThirdParty_Libraries/source/InsightToolkit-3.20.0.tar.gz
161   curl -O http://www.creatis.insa-lyon.fr/software/public/creatools/crea_Developer_Tools/All_Versions/tth/tth_linux/tth
162
163   tar -xvf VTK-5.6.1.patchCreatis.tar.gz
164   tar -xvf gdcm_05_Mai_2011.tar.gz
165   tar -xvf InsightToolkit-3.20.0.tar.gz
166 else
167   wget http://www.creatis.insa-lyon.fr/software/public/creatools/crea_ThirdParty_Libraries/source/VTK-5.6.1.patchCreatis.tar.gz
168   wget http://www.creatis.insa-lyon.fr/software/public/creatools/crea_ThirdParty_Libraries/source/gdcm_05_Mai_2011.tar.gz
169   wget http://www.creatis.insa-lyon.fr/software/public/creatools/crea_ThirdParty_Libraries/source/InsightToolkit-3.20.0.tar.gz
170   wget http://www.creatis.insa-lyon.fr/software/public/creatools/crea_Developer_Tools/All_Versions/tth/tth_linux/tth
171   
172   tar -xvzf VTK-5.6.1.patchCreatis.tar.gz
173   tar -xvzf gdcm_05_Mai_2011.tar.gz
174   tar -xvzf InsightToolkit-3.20.0.tar.gz
175 fi
176
177 fi
178
179
180 if [ $buildType = "Debug" ]
181 then
182    debug="ON"
183 else
184    debug="OFF"
185 fi
186
187
188 # the following stupid test is used at debug time; Please don't remove!
189 #if [ true = false ]
190 if [ true = true ]
191 then
192   libname=VTK
193   dirInstall=$binDir/$libname-Bin
194   dirInstallVTK=$dirInstall
195   export VTK_DIR=$installPrefixThird/lib/vtk-5.6/
196   mkdir $dirInstall
197   cd $dirInstall
198  
199   cmake -G"Unix Makefiles" -H$sourcesDir/$libname -B$dirInstall/
200   ##cmake -G"CodeBlocks - Unix Makefiles" -H$sourcesDir/$libname -B$dirInstall/
201   cmake -D USE_DEBUG_LIB:BOOL=$buildType -D CMAKE_INSTALL_PREFIX:PATH=$installPrefixThird CMakeCache.txt
202   cmake -D BUILD_EXAMPLES:BOOL=OFF -D BUILD_TESTING:BOOL=OFF -D BUILD_SHARED_LIBS:BOOL=ON -D VTK_USE_QT:BOOL=ON CMakeCache.txt
203   make -j $corenumber
204   make install
205   cd ..
206 fi
207
208
209 # the following stupid test is used at debug time; Please don't remove!
210 #if [ true = false ]
211 if [ true = true ]
212 then
213   libname=gdcm
214   dirInstall=$binDir/$libname-Bin
215   export GDCM_DIR=$installPrefixThird/lib/gdcm/
216   mkdir $dirInstall
217   cd $dirInstall
218   cmake -G"Unix Makefiles" -H$sourcesDir/$libname -B$dirInstall/
219   ##cmake -G"CodeBlocks - Unix Makefiles" -H$sourcesDir/$libname -B$dirInstall/
220   cmake -D USE_DEBUG_LIB:BOOL=$buildType -D CMAKE_INSTALL_PREFIX:PATH=$installPrefixThird CMakeCache.txt
221   cmake -D VTK_DIR:PATH=$dirInstallVTK CMakeCache.txt
222   cmake -D GDCM_VTK:BOOL=ON -D GDCM_NAME_SPACE:STRING=gdcm13 CMakeCache.txt
223   make -j 2
224   make install
225   cd ..
226 fi
227
228 # the following stupid test is used at debug time; Please don't remove!
229 #if [ true = false ]
230 if [ true = true ]
231 then
232   libname=InsightToolkit-3.20.0
233   dirInstall=$binDir/$libname-Bin
234   export ITK_DIR=$installPrefixThird/lib/InsightToolkit/
235   mkdir $dirInstall
236   cd $dirInstall
237   cmake -G"Unix Makefiles" -H$sourcesDir/$libname -B$dirInstall/
238   ##cmake -G"CodeBlocks - Unix Makefiles" -H$sourcesDir/$libname -B$dirInstall/
239   cmake -D USE_DEBUG_LIB:BOOL=$buildType -D CMAKE_INSTALL_PREFIX:PATH=$installPrefixThird CMakeCache.txt
240   cmake -D BUILD_EXAMPLES:BOOL=OFF -D BUILD_TESTING:BOOL=OFF -D BUILD_SHARED_LIBS:BOOL=ON -D ITK_USE_REVIEW:BOOL=ON CMakeCache.txt
241   #uncomment following line if you want to use the bleeding edge of GDCM2!
242   #cmake -D ITK_USE_SYSTEM_GDCM:BOOL=ON CMakeCache.txt
243   cmake CMakeCache.txt
244   make -j 2
245   make install
246   cd ..
247 fi
248
249 #if [ true = false ]
250 if [ true = true ]
251 then
252   cd $sourcesDir
253  # pourquoi ne copie-t-on plus? JPR
254  # cp tth $installPrefixThird/bin
255 fi
256
257
258 #deal with create creatools_third_party_libraries_config.sh
259
260 if [ -f $installPrefixThird/share/creatools_third_party_library_config.sh ]
261 then
262    rm $installPrefixThird/share/creatools_third_party_library_config.sh
263 fi
264
265 if [ ! -e $installPrefixThird/share ]
266 then
267    mkdir $installPrefixThird/share
268 fi
269 touch     $installPrefixThird/share/creatools_third_party_library_config.sh
270 chmod 755 $installPrefixThird/share/creatools_third_party_library_config.sh
271
272 echo export PATH='$'PATH:$installPrefixThird/bin           >> $installPrefixThird/share/creatools_third_party_library_config.sh
273 echo export VTK_DIR=$installPrefixThird/lib/vtk-5.6        >> $installPrefixThird/share/creatools_third_party_library_config.sh
274 echo export ITK_DIR=$installPrefixThird/lib/InsightToolkit >> $installPrefixThird/share/creatools_third_party_library_config.sh
275 echo export GDCM_DIR=$installPrefixThird/lib/gdcm          >> $installPrefixThird/share/creatools_third_party_library_config.sh
276 echo export TTH=$installPrefixThird/bin/tth                >> $installPrefixThird/share/creatools_third_party_library_config.sh
277 if [ $OperatingSystem = "MacOS" ]
278 then
279 echo export DYLD_LIBRARY_PATH='$'DYLD_LIBRARY_PATH:$GDCM_DIR   >> $installPrefixThird/share/creatools_third_party_library_config.sh
280 echo export DYLD_LIBRARY_PATH='$'DYLD_LIBRARY_PATH:$ITK_DIR    >> $installPrefixThird/share/creatools_third_party_library_config.sh
281 echo export DYLD_LIBRARY_PATH='$'DYLD_LIBRARY_PATH:$VTK_DIR    >> $installPrefixThird/share/creatools_third_party_library_config.sh
282 else
283 echo export LD_LIBRARY_PATH='$'LD_LIBRARY_PATH:$GDCM_DIR   >> $installPrefixThird/share/creatools_third_party_library_config.sh
284 echo export LD_LIBRARY_PATH='$'LD_LIBRARY_PATH:$ITK_DIR    >> $installPrefixThird/share/creatools_third_party_library_config.sh
285 echo export LD_LIBRARY_PATH='$'LD_LIBRARY_PATH:$VTK_DIR    >> $installPrefixThird/share/creatools_third_party_library_config.sh
286 fi
287
288 #  modify .bashrc
289 # - remove line 'bash $installPrefixThird/share/creatools_third_party_library_config.sh' if any (with accurate value for ???)
290
291 # Install creatools as user (no longer as root) // JPR 2/5/2011
292 #if [ ! -f /etc/bashrc ]
293 #then
294 #    export ETC_BASHRC="/etc/bash.bashrc"
295 #else
296 #    export ETC_BASHRC="/etc/bashrc"
297 #fi
298
299    case "$OperatingSystem" in
300    Fedora)
301      export ETC_BASHRC=$HOME/.bashrc
302      ;;
303    Ubuntu)
304      export ETC_BASHRC=$HOME/.bashrc
305      ;;
306    MacOS)      
307      export ETC_BASHRC=$HOME/.profile 
308      ;;
309    esac
310
311
312    sed -i -e '/.*installPrefixThird*/ d' $ETC_BASHRC
313    sed -i -e '/.*creatools_third_party_library_config.*/ d' $ETC_BASHRC
314
315
316 # - add line 'bash $installPrefixThird/share/creatools_third_party_library_config.sh' (with accurate value for ???)
317 echo installPrefixThird=$installPrefixThird >> $ETC_BASHRC
318 echo '[ -f "$installPrefixThird/share/creatools_third_party_library_config.sh" ] &&  source $installPrefixThird/share/creatools_third_party_library_config.sh' >> $ETC_BASHRC 
319
320 chown -R $loginUserName  $generationdir
321 chgrp -R $loginGroupName $generationdir