]> Creatis software - creaToolsTools.git/blob - Linux/scripts/ThirdParty-install-gdcm.sh
#3432 creaToolsTools Bug New Normal - gdcm in Fedora 31
[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
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/gdcm*
96   rm -rf $binDir/gdcm*
97
98   cd $sourcesDir
99
100   echo "we download new stuff"
101   
102 ##  if [ $OperatingSystem = "MacOS" ]
103 ##  then
104 ##   curl -O http://www.creatis.insa-lyon.fr/software/public/creatools/crea_ThirdParty_Libraries/source/gdcm_05_Mai_2011.tar.gz
105 ##   # MacOS, clever enough to understand it *has* to uncompress, doesn't understand tar -z :-(
106 ##   tar -xvf gdcm_05_Mai_2011.tar.gz
107 ##  else
108 ## ##19mai2015  wget http://www.creatis.insa-lyon.fr/software/public/creatools/crea_ThirdParty_Libraries/source/gdcm_05_Mai_2011.tar.gz
109 ## 
110 ## ##VTK-5
111 ## #    wget http://www.creatis.insa-lyon.fr/~davila/creatools_back_site/crea_ThirdParty_Libraries/source/gdcm_05_Mai_2011.tar.gz
112 ## #    tar -xvzf gdcm_05_Mai_2011.tar.gz
113 ## 
114 ## #    wget http://www.creatis.insa-lyon.fr/~davila/creatools_back_site/crea_ThirdParty_Libraries/source/gdcm_10_Mars_2017-vtk7.tar.gz
115 ## #    tar -xvzf gdcm13_2018_05_28_vtk8.tar.gz
116 ##  fi
117
118     wget http://www.creatis.insa-lyon.fr/~davila/creatools_back_site/crea_ThirdParty_Libraries/source/gdcm13_2019_06_17_vtk8.zip
119         unzip gdcm13_2019_06_17_vtk8.zip
120
121 if [ $buildType = "Debug" ]
122 then
123    debug="ON"
124 else
125    debug="OFF"
126 fi
127
128 # the following stupid test is used at debug time; Please don't remove!
129 #if [ true = false ]
130 if [ true = true ]
131 then
132   libname=gdcm13
133   dirInstall=$binDir/$libname-Bin
134   export GDCM_DIR=$installPrefixThird/lib/gdcm/
135   mkdir -p $dirInstall
136   cd $dirInstall
137
138   cmake -G"Unix Makefiles" -H$sourcesDir/$libname -B$dirInstall/
139   ##cmake -G"CodeBlocks - Unix Makefiles" -H$sourcesDir/$libname -B$dirInstall/
140   cmake -D CMAKE_BUILD_TYPE:STRING=$buildType -D CMAKE_INSTALL_PREFIX:PATH=$installPrefixThird CMakeCache.txt
141   cmake -D VTK_DIR:PATH=$VTK_DIR CMakeCache.txt
142   cmake -D GDCM_VTK:BOOL=ON -D GDCM_NAME_SPACE:STRING=gdcm13 CMakeCache.txt
143
144   #EED 2017-03-24
145   source $PWD/scripts/LocalFunctions.sh
146   if [ `getDistrib` == "CentOS" ] && [ `getKernelVersion` < "2.6.34" ]
147   then
148         cmake -D CMAKE_CXX_FLAGS:STRING=-std=c++98 CMakeCache.txt
149   fi
150
151   make -j $corenumber
152   make -j $corenumber install
153   cd ..
154 fi
155
156 #if [ true = false ]
157 if [ true = true ]
158 then
159   cd $sourcesDir
160   cp tth $installPrefixThird/bin
161 fi
162
163
164 # deal with create creatools_third_party_libraries_config.sh
165 # is now done in ThirdParty-install-Finalize.sh
166