]> Creatis software - creaToolsTools.git/blob - Linux/scripts/ThirdParty-install-gdcm.sh
fb97632963a0e26a12a7f8ca75508c52596fe72c
[creaToolsTools.git] / Linux / scripts / ThirdParty-install-gdcm.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  if [ ! -f $PWD/scripts/CreaTools-configure.sh ]
28  then 
29    echo
30    echo "..ERROR.."
31    echo "==================================================="
32    echo "REMEMBER !"
33    echo ""
34    echo "YOU NEED TO RUN 'Configure' (0) First !"
35    echo "==================================================="
36    echo
37    echo
38    exit 0
39 fi
40
41 source $PWD/scripts/CreaTools-configure.sh
42
43 #EED 2021-11-15
44   source $PWD/scripts/LocalFunctions.sh
45   if [ `getDistrib` == "CentOS" ] && [ `getKernelVersion` < "2.6.34" ]
46   then
47         stdCompiler=c++98
48   else
49         stdCompiler=c++11
50   fi
51
52
53    echo "------"
54    echo $PWD/scripts/CreaTools-configure.sh
55    echo --generationdir--
56    echo $generationdir
57    echo --docgeneration--
58    echo $docgeneration
59    echo --installPrefix--
60    echo $installPrefix
61    echo --installPrefixThird--
62    echo $installPrefixThird
63    echo --buildType--
64    echo $buildType
65    echo --gdcmVersion--
66    echo $gdcmVersion
67 #   echo --sourcesFrom--
68 #   echo $sourcesFrom
69 #   echo --scriptDir--
70 #   echo $scriptDir
71 #   echo --start_point--
72 #   echo $start_point
73    echo "------"
74
75
76 scriptDir=$PWD
77 sourcesDir=$generationdir/thirdparty_sources
78 binDir=$generationdir/thirdparty_bin
79
80 if [ ! -e $generationdir ]
81 then
82    mkdir -p $generationdir
83    chown -R $loginUserName  $generationdir
84    chgrp -R $loginGroupName $generationdir
85
86 fi
87 if [ ! -e $sourcesDir ]
88 then
89    mkdir -p $sourcesDir
90    #was : (pb on MacOS?)
91    #chown -R $loginUserName:$loginGroupName $sourcesDir
92    chown -R $loginUserName  $sourcesDir
93    chgrp -R $loginGroupName $sourcesDir
94 fi
95
96 if [ ! -e $binDir ]
97 then
98    mkdir -p $binDir
99    chown -R $loginUserName  $binDir
100    chgrp -R $loginGroupName $binDir
101 fi
102
103   echo "we remove old stuff"
104   rm -rf $sourcesDir/gdcm*
105   rm -rf $binDir/gdcm*
106
107   cd $sourcesDir
108
109   echo "we download new stuff"
110   
111 ##  if [ $OperatingSystem = "MacOS" ]
112 ##  then
113 ##   curl -O http://www.creatis.insa-lyon.fr/software/public/creatools/crea_ThirdParty_Libraries/source/gdcm_05_Mai_2011.tar.gz
114 ##   # MacOS, clever enough to understand it *has* to uncompress, doesn't understand tar -z :-(
115 ##   tar -xvf gdcm_05_Mai_2011.tar.gz
116 ##  else
117 ## ##19mai2015  wget http://www.creatis.insa-lyon.fr/software/public/creatools/crea_ThirdParty_Libraries/source/gdcm_05_Mai_2011.tar.gz
118 ## 
119 ## ##VTK-5
120 ## #    wget http://www.creatis.insa-lyon.fr/~davila/creatools_back_site/crea_ThirdParty_Libraries/source/gdcm_05_Mai_2011.tar.gz
121 ## #    tar -xvzf gdcm_05_Mai_2011.tar.gz
122 ## 
123 ## #    wget http://www.creatis.insa-lyon.fr/~davila/creatools_back_site/crea_ThirdParty_Libraries/source/gdcm_10_Mars_2017-vtk7.tar.gz
124 ## #    tar -xvzf gdcm13_2018_05_28_vtk8.tar.gz
125 ##  fi
126
127
128 cxxFlags='  '
129 if [ $TDx == "ON" ]
130 then
131     cxxFlags=$cxxFlags'-F/Library/Frameworks -DVTK_USE_TDX '
132 fi
133
134
135     wget http://www.creatis.insa-lyon.fr/~davila/creatools_back_site/crea_ThirdParty_Libraries/source/gdcm13_2019_06_17_vtk8.zip
136         unzip gdcm13_2019_06_17_vtk8.zip
137
138 if [ $buildType = "Debug" ]
139 then
140    debug="ON"
141 else
142    debug="OFF"
143 fi
144
145 # the following stupid test is used at debug time; Please don't remove!
146 #if [ true = false ]
147 if [ true = true ]
148 then
149   libname=gdcm13
150   dirInstall=$binDir/$libname-Bin
151   export GDCM_DIR=$installPrefixThird/lib/gdcm/
152   mkdir -p $dirInstall
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 CMAKE_CXX_FLAGS:STRING="$cxxFlags"                                 CMakeCache.txt
158   cmake -D CMAKE_BUILD_TYPE:STRING=$buildType -D CMAKE_INSTALL_PREFIX:PATH=$installPrefixThird CMakeCache.txt
159   cmake -D VTK_DIR:PATH=$VTK_DIR CMakeCache.txt
160   cmake -D GDCM_VTK:BOOL=ON -D GDCM_NAME_SPACE:STRING=gdcm13 CMakeCache.txt
161
162   #EED 2017-03-24
163   source $PWD/scripts/LocalFunctions.sh
164   if [ `getDistrib` == "CentOS" ] && [ `getKernelVersion` < "2.6.34" ]
165   then
166         cmake -D CMAKE_CXX_FLAGS:STRING=-std=c++98 CMakeCache.txt
167   fi
168
169   make -j $corenumber
170   make -j $corenumber install
171   cd ..
172 fi
173
174 #if [ true = false ]
175 if [ true = true ]
176 then
177   cd $sourcesDir
178   cp tth $installPrefixThird/bin
179 fi
180
181
182 # deal with create creatools_third_party_libraries_config.sh
183 # is now done in ThirdParty-install-Finalize.sh
184