]> Creatis software - creaToolsTools.git/blob - Linux/scripts/ThirdParty-install-VTK.sh
#3044 creaToolsTools Bug New Normal - Fedora 24 ThirdParty library conflict with...
[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 scriptDir=$PWD
68 sourcesDir=$generationdir/thirdparty_sources
69 binDir=$generationdir/thirdparty_bin
70
71 if [ ! -e $generationdir ]
72 then
73    mkdir -p $generationdir
74    chown -R $loginUserName  $generationdir
75    chgrp -R $loginGroupName $generationdir
76
77 fi
78 if [ ! -e $sourcesDir ]
79 then
80    mkdir -p $sourcesDir
81    #was : (pb on MacOS?)
82    #chown -R $loginUserName:$loginGroupName $sourcesDir
83    chown -R $loginUserName  $sourcesDir
84    chgrp -R $loginGroupName $sourcesDir
85 fi
86
87 if [ ! -e $binDir ]
88 then
89    mkdir -p $binDir
90    chown -R $loginUserName  $binDir
91    chgrp -R $loginGroupName $binDir
92 fi
93
94   echo "we remove old stuff"
95   rm -rf $sourcesDir/VTK*
96   rm -rf $sourcesDir/vtk*
97   rm -rf $binDir/VTK*
98
99   cd $sourcesDir
100
101  echo "we download new stuff"
102  if [ $OperatingSystem = "MacOS" ]
103  then
104
105 ## EED 2013-10-29
106 ##  curl -O http://www.creatis.insa-lyon.fr/software/public/creatools/crea_ThirdParty_Libraries/source/VTK-5.6.1.patchCreatis.tar.gz
107 ##  # MacOS, clever enough to understand it *has* to uncompress, doesn't understand tar -z :-(
108 ##  tar -xvf VTK-5.6.1.patchCreatis.tar.gz
109
110   curl -O http://www.vtk.org/files/release/5.10/vtk-5.10.1.zip
111   unzip vtk-5.10.1.zip
112   cd VTK5.10.1/Rendering
113   curl -O http://www.creatis.insa-lyon.fr/software/public/creatools/crea_ThirdParty_Libraries/source/vtk-5.10.1.vtkXOpenGLRenderWindow.patch
114   patch < vtk-5.10.1.vtkXOpenGLRenderWindow.patch
115   # MacOS, clever enough to understand it *has* to uncompress, doesn't understand tar -z :-(
116  else
117
118 ## EED 2013-10-29
119 ##  wget http://www.creatis.insa-lyon.fr/software/public/creatools/crea_ThirdParty_Libraries/source/VTK-5.6.1.patchCreatis.tar.gz
120 ##  tar -xzvf VTK-5.6.1.patchCreatis.tar.gz
121   wget http://www.vtk.org/files/release/5.10/vtk-5.10.1.zip
122
123 echo unzip vtk-5.10.1.zip
124 pwd
125   unzip vtk-5.10.1.zip
126
127   cd VTK5.10.1/Rendering
128 ##EED19mai2015  wget http://www.creatis.insa-lyon.fr/software/public/creatools/crea_ThirdParty_Libraries/source/vtk-5.10.1.vtkXOpenGLRenderWindow.patch
129   wget http://www.creatis.insa-lyon.fr/~davila/creatools_back_site/crea_ThirdParty_Libraries/source/vtk-5.10.1.vtkXOpenGLRenderWindow.patch
130   patch < vtk-5.10.1.vtkXOpenGLRenderWindow.patch
131
132   cd ../CMake
133   wget http://www.creatis.insa-lyon.fr/~davila/creatools_back_site/crea_ThirdParty_Libraries/source/vtk-5.10.1.vtkCompilerExtras.cmake-PATCH
134   patch < vtk-5.10.1.vtkCompilerExtras.cmake-PATCH 
135
136  fi
137
138
139
140
141 #if [ $buildType = "Debug" ]
142 #then
143 #   debug="ON"
144 #else
145 #   debug="OFF"
146 #fi
147
148 # the following stupid test is used at debug time; Please don't remove!
149 #if [ true = false ]
150 if [ true = true ]
151 then
152   libname=VTK5.10.1
153   dirInstall=$binDir/$libname-Bin
154 ##  export VTK_DIR=$installPrefixThird/lib/vtk-5.6/
155   export VTK_DIR=$installPrefixThird/lib/vtk-5.10/
156
157   mkdir -p $dirInstall
158   echo "we prepare directories dirInstall " $dirInstall  " VTK_DIR " $installPrefixThird/lib/vtk-5.10.1/
159   cd $dirInstall
160
161 # See EED why we have to do this
162   if [ $OperatingSystem = "MacOS" ]
163   then
164      cmake -D  CMAKE_CXX_COMPILER:FILE=/usr/bin/g++
165   fi
166   cmake -G"Unix Makefiles" -H$sourcesDir/$libname -B$dirInstall/
167   ##cmake -G"CodeBlocks - Unix Makefiles" -H$sourcesDir/$libname -B$dirInstall/
168   cmake -D CMAKE_BUILD_TYPE:STRING=$buildType -D CMAKE_INSTALL_PREFIX:PATH=$installPrefixThird CMakeCache.txt
169
170   if [ $OperatingSystem = "MacOS" ]
171   then
172     cmake -D BUILD_SHARE_LIBS:BOOL=ON -D VTK_USE_CARBON:BOOL=ON -D  VTK_USE_COCOA:BOOL=OFF CMakeCache.txt
173     cmake -D  VTK_USE_TCL:BOOL=OFF                                                         CMakeCache.txt
174     CMakeCache.txt
175   fi
176
177   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
178   cmake -D CMAKE_CXX_FLAGS:STRING='-std=c++03' CMakeCache.txt
179
180 ##EED 2016-12-22  make -j $corenumber
181   make -j $corenumber
182   make -j $corenumber install
183   cd ..
184 fi