]> Creatis software - creaToolsTools.git/blob - Linux/scripts/ThirdParty-install.sh
*** empty log message ***
[creaToolsTools.git] / Linux / scripts / ThirdParty-install.sh
1 #!/bin/sh
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
16 source $PWD/scripts/CreaTools-configure.sh
17
18    echo "------"
19    echo $PWD/scripts/CreaTools-configure.sh
20    echo --generationdir--
21    echo $generationdir
22    echo --docgeneration--
23    echo $docgeneration
24    echo --installPrefix--
25    echo $installPrefix
26    echo --installPrefixThird--
27    echo $installPrefixThird
28    echo --buildType--
29    echo $buildType
30    echo --gdcmVersion--
31    echo $gdcmVersion
32 #   echo --sourcesFrom--
33 #   echo $sourcesFrom
34 #   echo --scriptDir--
35 #   echo $scriptDir
36 #   echo --start_point--
37 #   echo $start_point
38    echo "------"
39
40
41 scriptDir=$PWD
42 sourcesDir=$generationdir/thirdparty_sources
43 binDir=$generationdir/thirdparty_bin
44
45 if [ ! -e $generationdir ]
46 then
47    mkdir $generationdir
48    mkdir $sourcesDir
49    mkdir $binDir
50 fi
51
52
53 # the following stupid test is used at debug time; Please don't remove!
54 if [ true = true ]
55 #if [ true = false ]
56 then
57
58   case "$OperatingSystem" in
59   Fedora)
60      yum install cmake -y 
61      yum install cmake-gui -y 
62      yum install doxygen -y
63      yum install graphviz -y
64      yum install texlive -y
65      yum install latex2html -y
66      yum install wxGTK-devel wxBase -y
67      yum install boost-devel -y
68      yum install sqlite-devel -y
69      yum install qt-devel -y
70      yum install mesa-libOSMesa-devel -y
71      ;;
72   Ubuntu)  
73      apt-get --yes install build-essential  # esta linea instala las librerias necesarias para compilar en ubuntu, g++ gcc etc etc etc.
74      apt-get --yes install cmake
75      apt-get --yes install cmake-gui
76      apt-get --yes install cmake-curses-gui
77      apt-get --yes install doxygen
78      apt-get --yes install graphviz
79      apt-get --yes install texlive
80      apt-get --yes install latex2html
81      apt-get --yes install libgtk2.0-dev #GTK
82      apt-get --yes install libwxgtk2.8-dev #Wx GTK
83      apt-get --yes install libwxbase2.8-dev #Wx solito
84      apt-get --yes install libboost-dev  #Boost
85      apt-get --yes install libboost-all-dev #Boost
86      apt-get --yes install libqt4-dev #QT4
87      apt-get --yes install sqlite
88      apt-get --yes install libsqlite0-dev
89      apt-get --yes install libosmesa6-dev #Mesa6
90      apt-get --yes install uuid-dev # uuid para la instalacion de itk
91      apt-get --yes install libxaw7-dev # X11
92      ;;
93   MacOS)
94 # QUESTION : is -y  mandatory?
95
96      port install cmake -y 
97      port install cmake-gui -y 
98      port install doxygen -y
99      port install graphviz -y
100      port install texlive -y
101      port install latex2html -y
102      port install wxGTK-devel wxBase -y
103      port install boost-devel -y
104      port install sqlite-devel -y
105      port install qt-devel -y
106      port install mesa-libOSMesa-devel -y
107      ;;
108   *)
109      #echo " '$OperatingSystem' : Unknown (for us...) Operating Sytem "
110      echo " Allowed values are (right now) Fedora, Ubuntu, MacOS "
111      exit 0
112      ;;
113   esac             
114 fi
115
116
117
118 # the following stupid test is used at debug time; Please don't remove!
119 #if [ true = false ]
120 if [ true = true ]
121 then
122   rm -rf $sourcesDir/VTK*
123   rm -rf $sourcesDir/vtk*
124   rm -rf $sourcesDir/InsightToolkit*
125   rm -rf $sourcesDir/gdcm*
126   rm -rf $sourcesDir/tth*
127   cd $sourcesDir
128   wget http://www.creatis.insa-lyon.fr/software/public/creatools/crea_ThirdParty_Libraries/source/vtk-5.6.1.tar.gz
129   wget http://www.creatis.insa-lyon.fr/software/public/creatools/crea_ThirdParty_Libraries/source/gdcm_08_Dic_2009.tar.gz
130   wget http://www.creatis.insa-lyon.fr/software/public/creatools/crea_ThirdParty_Libraries/source/InsightToolkit-3.20.0.tar.gz
131   wget http://www.creatis.insa-lyon.fr/software/public/creatools/crea_Developer_Tools/All_Versions/tth/tth_linux/tth
132
133   tar -xvzf vtk-5.6.1.tar.gz
134   tar -xvzf gdcm_08_Dic_2009.tar.gz
135   tar -xvzf InsightToolkit-3.20.0.tar.gz
136 fi
137
138
139 if [ $buildType = "Debug" ]
140 then
141    debug="ON"
142 else
143    debug="OFF"
144 fi
145
146
147 if [ true = true ]
148 then
149   libname=VTK
150   dirInstall=$binDir/$libname-Bin
151   dirInstallVTK=$dirInstall
152   export VTK_DIR=$installPrefixThird/lib/vtk-5.6/
153   cd $dirInstall
154  
155   cmake -G"Unix Makefiles" -H$sourcesDir/$libname -B$dirInstall/
156   ##cmake -G"CodeBlocks - Unix Makefiles" -H$sourcesDir/$libname -B$dirInstall/
157   cmake -D USE_DEBUG_LIB:BOOL=$buildType -D CMAKE_INSTALL_PREFIX:PATH=$installPrefixThird CMakeCache.txt
158   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
159   make -j 2
160   make install
161   cd ..
162 fi
163
164
165 if [ true = true ]
166 then
167   libname=gdcm
168   dirInstall=$binDir/$libname-Bin
169   export GDCM_DIR=$installPrefixThird/lib/gdcm/
170   mkdir $dirInstall
171   cd $dirInstall
172   cmake -G"Unix Makefiles" -H$sourcesDir/$libname -B$dirInstall/
173   ##cmake -G"CodeBlocks - Unix Makefiles" -H$sourcesDir/$libname -B$dirInstall/
174   cmake -D USE_DEBUG_LIB:BOOL=$buildType -D CMAKE_INSTALL_PREFIX:PATH=$installPrefixThird CMakeCache.txt
175   cmake -D VTK_DIR:PATH=$dirInstallVTK CMakeCache.txt
176   cmake -D GDCM_VTK:BOOL=ON -D GDCM_NAME_SPACE:STRING=gdcm13 CMakeCache.txt
177   make -j 2
178   make install
179   cd ..
180 fi
181
182 if [ true = true ]
183 then
184   libname=InsightToolkit-3.20.0
185   dirInstall=$binDir/$libname-Bin
186   export ITK_DIR=$installPrefixThird/lib/InsightToolkit/
187   mkdir $dirInstall
188   cd $dirInstall
189   cmake -G"Unix Makefiles" -H$sourcesDir/$libname -B$dirInstall/
190   ##cmake -G"CodeBlocks - Unix Makefiles" -H$sourcesDir/$libname -B$dirInstall/
191   cmake -D USE_DEBUG_LIB:BOOL=$buildType -D CMAKE_INSTALL_PREFIX:PATH=$installPrefixThird CMakeCache.txt
192   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
193   cmake CMakeCache.txt
194   make -j 2
195   make install
196   cd ..
197 fi
198
199
200 if [ true = true ]
201 then
202   cd $sourcesDir
203   cp tth $installPrefixThird/bin
204 fi
205
206
207 #deal with create creatools_third_party_libraries_config.sh
208
209 if [ -f $installPrefixThird/share/creatools_third_party_library_config.sh ]
210 then
211    rm $installPrefixThird/share/creatools_third_party_library_config.sh
212 fi
213
214 if [ ! -e $installPrefixThird/share ]
215 then
216    mkdir $installPrefixThird/share
217 fi
218 touch     $installPrefixThird/share/creatools_third_party_library_config.sh
219 chmod 755 $installPrefixThird/share/creatools_third_party_library_config.sh
220
221 echo export PATH='$'PATH:$installPrefixThird/bin                        >> $installPrefixThird/share/creatools_third_party_library_config.sh
222 echo export VTK_DIR=$installPrefixThird/lib/vtk-5.6                     >> $installPrefixThird/share/creatools_third_party_library_config.sh
223 echo export ITK_DIR=$installPrefixThird/lib/InsightToolkit              >> $installPrefixThird/share/creatools_third_party_library_config.sh
224 echo export GDCM_DIR=$installPrefixThird/lib/gdcm               >> $installPrefixThird/share/creatools_third_party_library_config.sh
225 echo export TTH=$installPrefixThird/bin/tth                             >> $installPrefixThird/share/creatools_third_party_library_config.sh
226 echo export LD_LIBRARY_PATH='$'LD_LIBRARY_PATH:$GDCM_DIR        >> $installPrefixThird/share/creatools_third_party_library_config.sh
227 echo export LD_LIBRARY_PATH='$'LD_LIBRARY_PATH:$ITK_DIR         >> $installPrefixThird/share/creatools_third_party_library_config.sh
228 echo export LD_LIBRARY_PATH='$'LD_LIBRARY_PATH:$VTK_DIR         >> $installPrefixThird/share/creatools_third_party_library_config.sh
229
230 #  modify .bashrc
231 # - remove line 'sh $installPrefixThird/share/creatools_third_party_library_config.sh' if any (with accurate value for ???)
232 sed -i -e '/.*installPrefixThird*/ d' /etc/bashrc
233 sed -i -e '/.*creatools_third_party_library_config.*/ d' /etc/bashrc
234
235 # - add line 'sh $installPrefixThird/share/creatools_third_party_library_config.sh' (with accurate value for ???)
236 echo installPrefixThird=$installPrefix >> /etc/bashrc
237 echo '[ -f "$installPrefixThird/share/creatools_third_party_library_config.sh" ] &&  source $installPrefixThird/share/creatools_third_party_library_config.sh' >> /etc/bashrc 
238
239
240