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