]> Creatis software - creaToolsTools.git/blob - Linux/scripts/ThirdParty-install-gdcm.sh
b3aa011fc3f5a6ba3f08fe2226a249d3d5b99791
[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 #EED 2017-03-24
43   source $PWD/scripts/LocalFunctions.sh
44   if [ `getDistrib` == "CentOS" ] && [ `getKernelVersion` < "2.6.34" ]
45   then
46         stdCompiler=c++98
47   else
48         stdCompiler=c++03
49   fi
50
51
52    echo "------"
53    echo $PWD/scripts/CreaTools-configure.sh
54    echo --generationdir--
55    echo $generationdir
56    echo --docgeneration--
57    echo $docgeneration
58    echo --installPrefix--
59    echo $installPrefix
60    echo --installPrefixThird--
61    echo $installPrefixThird
62    echo --buildType--
63    echo $buildType
64    echo --gdcmVersion--
65    echo $gdcmVersion
66 #   echo --sourcesFrom--
67 #   echo $sourcesFrom
68 #   echo --scriptDir--
69 #   echo $scriptDir
70 #   echo --start_point--
71 #   echo $start_point
72    echo "------"
73
74
75 scriptDir=$PWD
76 sourcesDir=$generationdir/thirdparty_sources
77 binDir=$generationdir/thirdparty_bin
78
79 if [ ! -e $generationdir ]
80 then
81    mkdir -p $generationdir
82    chown -R $loginUserName  $generationdir
83    chgrp -R $loginGroupName $generationdir
84
85 fi
86 if [ ! -e $sourcesDir ]
87 then
88    mkdir -p $sourcesDir
89    #was : (pb on MacOS?)
90    #chown -R $loginUserName:$loginGroupName $sourcesDir
91    chown -R $loginUserName  $sourcesDir
92    chgrp -R $loginGroupName $sourcesDir
93 fi
94
95 if [ ! -e $binDir ]
96 then
97    mkdir -p $binDir
98    chown -R $loginUserName  $binDir
99    chgrp -R $loginGroupName $binDir
100 fi
101
102   echo "we remove old stuff"
103   rm -rf $sourcesDir/gdcm*
104   rm -rf $binDir/gdcm*
105
106   cd $sourcesDir
107
108   echo "we download new stuff"
109  if [ $OperatingSystem = "MacOS" ]
110  then
111   curl -O http://www.creatis.insa-lyon.fr/software/public/creatools/crea_ThirdParty_Libraries/source/gdcm_05_Mai_2011.tar.gz
112   # MacOS, clever enough to understand it *has* to uncompress, doesn't understand tar -z :-(
113   tar -xvf gdcm_05_Mai_2011.tar.gz
114  else
115 ##19mai2015  wget http://www.creatis.insa-lyon.fr/software/public/creatools/crea_ThirdParty_Libraries/source/gdcm_05_Mai_2011.tar.gz
116      wget http://www.creatis.insa-lyon.fr/~davila/creatools_back_site/crea_ThirdParty_Libraries/source/gdcm_05_Mai_2011.tar.gz
117   tar -xvzf gdcm_05_Mai_2011.tar.gz
118  fi
119
120 if [ $buildType = "Debug" ]
121 then
122    debug="ON"
123 else
124    debug="OFF"
125 fi
126
127 # the following stupid test is used at debug time; Please don't remove!
128 #if [ true = false ]
129 if [ true = true ]
130 then
131   libname=gdcm
132   dirInstall=$binDir/$libname-Bin
133   export GDCM_DIR=$installPrefixThird/lib/gdcm/
134   mkdir -p $dirInstall
135   cd $dirInstall
136
137   cmake -G"Unix Makefiles" -H$sourcesDir/$libname -B$dirInstall/
138   ##cmake -G"CodeBlocks - Unix Makefiles" -H$sourcesDir/$libname -B$dirInstall/
139   cmake -D CMAKE_BUILD_TYPE:STRING=$buildType -D CMAKE_INSTALL_PREFIX:PATH=$installPrefixThird CMakeCache.txt
140   cmake -D VTK_DIR:PATH=$VTK_DIR CMakeCache.txt
141   cmake -D GDCM_VTK:BOOL=ON -D GDCM_NAME_SPACE:STRING=gdcm13 CMakeCache.txt
142   cmake -D CMAKE_CXX_FLAGS:STRING=-std=${stdCompiler} CMakeCache.txt
143   make -j $corenumber
144   make -j $corenumber install
145   cd ..
146 fi
147
148 #if [ true = false ]
149 if [ true = true ]
150 then
151   cd $sourcesDir
152   cp tth $installPrefixThird/bin
153 fi
154
155
156 # deal with create creatools_third_party_libraries_config.sh
157 # is now done in ThirdParty-install-Finalize.sh
158