]> Creatis software - creaToolsTools.git/blob - Linux/scripts/ThirdParty-install-VTK.sh
#3405 creaToolsTools Feature New Normal - vtk8itk5wx3-macos
[creaToolsTools.git] / Linux / scripts / ThirdParty-install-VTK.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  echo  "in ThirdParty-install-VTK.sh, source " $PWD/scripts/CreaTools-configure.sh
28  if [ ! -f $PWD/scripts/CreaTools-configure.sh ]
29  then 
30    echo
31    echo "..ERROR.."
32    echo "==================================================="
33    echo "REMEMBER !"
34    echo ""
35    echo "YOU NEED TO RUN 'Configure' (0) First !"
36    echo "==================================================="
37    echo
38    echo
39    exit 0
40 fi
41
42 source $PWD/scripts/CreaTools-configure.sh
43
44    echo "------"
45    echo $PWD/scripts/CreaTools-configure.sh
46    echo --generationdir--
47    echo $generationdir
48    echo --docgeneration--
49    echo $docgeneration
50    echo --installPrefix--
51    echo $installPrefix
52    echo --installPrefixThird--
53    echo $installPrefixThird
54    echo --buildType--
55    echo $buildType
56    echo --gdcmVersion--
57    echo $gdcmVersion
58 #   echo --sourcesFrom--
59 #   echo $sourcesFrom
60 #   echo --scriptDir--
61 #   echo $scriptDir
62 #   echo --start_point--
63 #   echo $start_point
64    echo "------"
65
66
67  
68
69 #EED 2017-03-24
70   source $PWD/scripts/LocalFunctions.sh
71   if [ `getDistrib` == "CentOS" ] && [ `getKernelVersion` < "2.6.34" ]
72   then
73         stdCompiler=c++98
74   else
75         stdCompiler=c++03
76   fi
77
78
79
80 scriptDir=$PWD
81 sourcesDir=$generationdir/thirdparty_sources
82 binDir=$generationdir/thirdparty_bin
83
84 if [ ! -e $generationdir ]
85 then
86    mkdir -p $generationdir
87    chown -R $loginUserName  $generationdir
88    chgrp -R $loginGroupName $generationdir
89
90 fi
91 if [ ! -e $sourcesDir ]
92 then
93    mkdir -p $sourcesDir
94    #was : (pb on MacOS?)
95    #chown -R $loginUserName:$loginGroupName $sourcesDir
96    chown -R $loginUserName  $sourcesDir
97    chgrp -R $loginGroupName $sourcesDir
98 fi
99
100 if [ ! -e $binDir ]
101 then
102    mkdir -p $binDir
103    chown -R $loginUserName  $binDir
104    chgrp -R $loginGroupName $binDir
105 fi
106
107   echo "we remove old stuff"
108   rm -rf $sourcesDir/VTK*
109   rm -rf $sourcesDir/vtk*
110   rm -rf $binDir/VTK*
111
112   cd $sourcesDir
113
114  echo "we download new stuff"
115 ##   if [ $OperatingSystem = "MacOS" ]
116 ##   then
117 ##  
118 ## # EED 2013-10-29
119 ## #  curl -O http://www.creatis.insa-lyon.fr/software/public/creatools/crea_ThirdParty_Libraries/source/VTK-5.6.1.patchCreatis.tar.gz
120 ## #  # MacOS, clever enough to understand it *has* to uncompress, doesn't understand tar -z :-(
121 ## #  tar -xvf VTK-5.6.1.patchCreatis.tar.gz
122 ## 
123 ##   curl -O http://www.vtk.org/files/release/5.10/vtk-5.10.1.zip
124 ##   unzip vtk-5.10.1.zip
125 ##   cd VTK5.10.1/Rendering
126 ##   curl -O http://www.creatis.insa-lyon.fr/software/public/creatools/crea_ThirdParty_Libraries/source/vtk-5.10.1.vtkXOpenGLRenderWindow.patch
127 ##   patch < vtk-5.10.1.vtkXOpenGLRenderWindow.patch
128 ##   # MacOS, clever enough to understand it *has* to uncompress, doesn't understand tar -z :-(
129 ##  else
130 ## 
131 ## ## EED 2013-10-29
132 ## ##  wget http://www.creatis.insa-lyon.fr/software/public/creatools/crea_ThirdParty_Libraries/source/VTK-5.6.1.patchCreatis.tar.gz
133 ## ##  tar -xzvf VTK-5.6.1.patchCreatis.tar.gz
134 ## 
135 ## ## EED 2016-12-28
136 ## ##  wget http://www.vtk.org/files/release/5.10/vtk-5.10.1.zip
137 ## ##  echo unzip vtk-5.10.1.zip
138 ## ##  pwd
139 ## ##  unzip vtk-5.10.1.zip
140 ## ##  cd VTK5.10.1/Rendering
141 ## ####EED19mai2015  wget http://www.creatis.insa-lyon.fr/software/public/creatools/crea_ThirdParty_Libraries/source/vtk-5.10.1.vtkXOpenGLRenderWindow.patch
142 ## ##  wget http://www.creatis.insa-lyon.fr/~davila/creatools_back_site/crea_ThirdParty_Libraries/source/vtk-5.10.1.vtkXOpenGLRenderWindow.patch
143 ## ##  patch < vtk-5.10.1.vtkXOpenGLRenderWindow.patch
144 ## ##  cd ../CMake
145 ## ##  wget http://www.creatis.insa-lyon.fr/~davila/creatools_back_site/crea_ThirdParty_Libraries/source/vtk-5.10.1.vtkCompilerExtras.cmake-PATCH
146 ## ##  patch < vtk-5.10.1.vtkCompilerExtras.cmake-PATCH 
147 ## 
148 ## ##   wget http://www.vtk.org/files/release/7.1/VTK-7.1.0.zip
149 ##      wget https://www.vtk.org/files/release/8.1/VTK-8.1.1.zip
150 ##      unzip VTK-8.1.1.zip
151 ## 
152 ##  fi
153
154         wget https://www.vtk.org/files/release/8.2/VTK-8.2.0.zip
155         unzip VTK-8.2.0.zip
156
157
158
159 #if [ $buildType = "Debug" ]
160 #then
161 #   debug="ON"
162 #else
163 #   debug="OFF"
164 #fi
165
166 ### the following stupid test is used at debug time; Please don't remove!
167 ###if [ true = false ]
168 ##if [ true = true ]
169 ##then
170 ##  libname=VTK5.10.1
171 ##  dirInstall=$binDir/$libname-Bin
172 ####  export VTK_DIR=$installPrefixThird/lib/vtk-5.6/
173 ##  export VTK_DIR=$installPrefixThird/lib/vtk-5.10/
174 ##
175 ##  mkdir -p $dirInstall
176 ##  echo "we prepare directories dirInstall " $dirInstall  " VTK_DIR " $installPrefixThird/lib/vtk-5.10.1/
177 ##  cd $dirInstall
178 ##
179 ### See EED why we have to do this
180 ##  if [ $OperatingSystem = "MacOS" ]
181 ##  then
182 ##     cmake -D  CMAKE_CXX_COMPILER:FILE=/usr/bin/g++
183 ##  fi
184 ##  cmake -G"Unix Makefiles" -H$sourcesDir/$libname -B$dirInstall/
185 ##  ##cmake -G"CodeBlocks - Unix Makefiles" -H$sourcesDir/$libname -B$dirInstall/
186 ##  cmake -D CMAKE_BUILD_TYPE:STRING=$buildType -D CMAKE_INSTALL_PREFIX:PATH=$installPrefixThird CMakeCache.txt
187 ##
188 ##  if [ $OperatingSystem = "MacOS" ]
189 ##  then
190 ##    cmake -D BUILD_SHARE_LIBS:BOOL=ON -D VTK_USE_CARBON:BOOL=ON -D  VTK_USE_COCOA:BOOL=OFF CMakeCache.txt
191 ##    cmake -D  VTK_USE_TCL:BOOL=OFF                                                         CMakeCache.txt
192 ##    CMakeCache.txt
193 ##  fi
194 ##
195 ##  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
196 ##  cmake -D CMAKE_CXX_FLAGS:STRING='-std=c++03' CMakeCache.txt
197 ##
198 ####EED 2016-12-22  make -j $corenumber
199 ##  make -j $corenumber
200 ##  make -j $corenumber install
201 ##  cd ..
202 ##fi
203
204
205 # the following stupid test is used at debug time; Please don't remove!
206 #if [ true = false ]
207 if [ true = true ]
208 then
209   libname=VTK-8.2.0
210   libnameB=vtk-8.2
211   dirInstall=$binDir/$libname-Bin
212 ##  export VTK_DIR=$installPrefixThird/lib/vtk-5.6/
213   export VTK_DIR=$installPrefixThird/lib/cmake/$libnameB/
214
215   mkdir -p $dirInstall
216   echo "we prepare directories dirInstall " $dirInstall  " VTK_DIR " $installPrefixThird/lib/$libnameB/
217   cd $dirInstall
218
219 # See EED why we have to do this
220   if [ $OperatingSystem = "MacOS" ]
221   then
222      cmake -D  CMAKE_CXX_COMPILER:FILE=/usr/bin/g++
223   fi
224
225   cmake -G"Unix Makefiles" -H$sourcesDir/$libname -B$dirInstall/
226   ##cmake -G"CodeBlocks - Unix Makefiles" -H$sourcesDir/$libname -B$dirInstall/
227   cmake -D CMAKE_BUILD_TYPE:STRING=$buildType -D CMAKE_INSTALL_PREFIX:PATH=$installPrefixThird CMakeCache.txt
228
229   if [ $OperatingSystem = "MacOS" ]
230   then
231     cmake -D BUILD_SHARE_LIBS:BOOL=ON -D VTK_USE_CARBON:BOOL=OFF -D  VTK_USE_COCOA:BOOL=ON CMakeCache.txt
232     cmake -D  VTK_USE_TCL:BOOL=OFF                                                         CMakeCache.txt
233     CMakeCache.txt
234   fi
235
236   cmake -D VTK_Group_Views:BOOL=ON  -D VTK_Group_Qt:BOOL=ON   CMakeCache.txt
237   cmake -D BUILD_EXAMPLES:BOOL=OFF -D BUILD_TESTING:BOOL=OFF -D BUILD_SHARED_LIBS:BOOL=ON CMakeCache.txt
238   cmake -D VTK_Group_Views:BOOL=ON -D VTK_Group_Qt:BOOL=OFF CMakeCache.txt  
239
240   make -j $corenumber
241   make -j $corenumber install
242   cd ..
243
244 fi
245
246
247
248
249