]> Creatis software - creaToolsTools.git/blob - Linux/scripts/ThirdParty-install.sh
Fix comment;
[creaToolsTools.git] / Linux / scripts / ThirdParty-install.sh
1 #!/bin/bash
2
3  if [ ! -f $PWD/scripts/CreaTools-configure.sh ]
4  then 
5    echo
6    echo "..ERROR.."
7    echo "==================================================="
8    echo "REMEMBER !"
9    echo ""
10    echo "YOU NEED TO RUN 'Configure' (0) First !"
11    echo "==================================================="
12    echo
13    echo
14    exit 0
15 fi
16 echo $loginGroupName
17
18 source $PWD/scripts/CreaTools-configure.sh
19
20    echo "------"
21    echo $PWD/scripts/CreaTools-configure.sh
22    echo --generationdir--
23    echo $generationdir
24    echo --corenumber--
25    echo $corenumber
26    echo --docgeneration--
27    echo $docgeneration
28    echo --installPrefix--
29    echo $installPrefix
30    echo --installPrefixThird--
31    echo $installPrefixThird
32    echo --buildType--
33    echo $buildType
34    echo --gdcmVersion--
35    echo $gdcmVersion
36    echo "--ETC_BASHRC--"
37    echo $ETC_BASHRC  
38 #   echo --sourcesFrom--
39 #   echo $sourcesFrom
40 #   echo --scriptDir--
41 #   echo $scriptDir
42 #   echo --start_point--
43 #   echo $start_point
44    echo "------"
45
46 scriptDir=$PWD
47 sourcesDir=$generationdir/thirdparty_sources
48 binDir=$generationdir/thirdparty_bin
49
50 if [ ! -e $generationdir ]
51 then
52    mkdir $generationdir
53    chown $loginUserName  $generationdir
54    chgrp $loginGroupName $generationdir
55 fi
56 if [ ! -e $sourcesDir ]
57 then
58    mkdir $sourcesDir
59    #was : (pb on MacOS?)
60    #chown $loginUserName:$loginGroupName $sourcesDir
61    chown $loginUserName  $sourcesDir
62    chgrp $loginGroupName $sourcesDir
63 fi
64
65 if [ ! -e $binDir ]
66 then
67    mkdir $binDir
68    chown $loginUserName  $binDir
69    chgrp $loginGroupName $binDir
70 fi
71
72
73 # Third Party base stuff is now installed by ThirdParty-install-Base-Stuff.sh   JPR
74
75
76 # the following stupid test is used at debug time; Please don't remove!
77 #if [ true = false ]
78 if [ true = true ]
79 then
80   rm -rf $sourcesDir/tth*
81
82   cd $sourcesDir
83
84   if [ $OperatingSystem = "MacOS" ]
85   then    
86     # curl -O http://www.creatis.insa-lyon.fr/software/public/creatools/crea_ThirdParty_Libraries/source/VTK-5.6.1.patchCreatis.tar.gz
87     # curl -O http://www.creatis.insa-lyon.fr/software/public/creatools/crea_ThirdParty_Libraries/source/gdcm_05_Mai_2011.tar.gz
88     # curl -O http://www.creatis.insa-lyon.fr/software/public/creatools/crea_ThirdParty_Libraries/source/InsightToolkit-3.20.0.tar.gz
89     curl -O http://www.creatis.insa-lyon.fr/software/public/creatools/crea_Developer_Tools/All_Versions/tth/tth_linux/tth
90     # MacOS, clever enough to understand it *has* to uncompress, doesn't understand tar -z :-(
91     # tar -xvf VTK-5.6.1.patchCreatis.tar.gz
92     # tar -xvf gdcm_05_Mai_2011.tar.gz
93     # tar -xvf InsightToolkit-3.20.0.tar.gz
94   else
95     # wget http://www.creatis.insa-lyon.fr/software/public/creatools/crea_ThirdParty_Libraries/source/VTK-5.6.1.patchCreatis.tar.gz
96     # wget http://www.creatis.insa-lyon.fr/software/public/creatools/crea_ThirdParty_Libraries/source/gdcm_05_Mai_2011.tar.gz
97     # wget http://www.creatis.insa-lyon.fr/software/public/creatools/crea_ThirdParty_Libraries/source/InsightToolkit-3.20.0.tar.gz
98     wget http://www.creatis.insa-lyon.fr/software/public/creatools/crea_Developer_Tools/All_Versions/tth/tth_linux/tth
99   
100     # tar -xvzf VTK-5.6.1.patchCreatis.tar.gz
101     #tar -xvzf gdcm_05_Mai_2011.tar.gz
102     #tar -xvzf InsightToolkit-3.20.0.tar.gz
103   fi
104
105 fi
106
107
108 if [ $buildType = "Debug" ]
109 then
110    debug="ON"
111 else
112    debug="OFF"
113 fi
114
115 #if [ true = false ]
116 if [ true = true ]
117 then
118   cd $sourcesDir
119  # pourquoi ne copie-t-on plus? JPR
120  cp tth $installPrefixThird/bin
121 fi