#!/bin/bash
+ echo "in ThirdParty-install-ITK.sh, source " $PWD/scripts/CreaTools-configure.sh
if [ ! -f $PWD/scripts/CreaTools-configure.sh ]
then
echo
source $PWD/scripts/CreaTools-configure.sh
+ echo "------"
+ echo $PWD/scripts/CreaTools-configure.sh
+ echo --generationdir--
+ echo $generationdir
+ echo --docgeneration--
+ echo $docgeneration
+ echo --installPrefix--
+ echo $installPrefix
+ echo --installPrefixThird--
+ echo $installPrefixThird
+ echo --buildType--
+ echo $buildType
+ echo --gdcmVersion--
+ echo $gdcmVersion
+# echo --sourcesFrom--
+# echo $sourcesFrom
+# echo --scriptDir--
+# echo $scriptDir
+# echo --start_point--
+# echo $start_point
+ echo "------"
+
+
scriptDir=$PWD
sourcesDir=$generationdir/thirdparty_sources
binDir=$generationdir/thirdparty_bin
echo "we remove old stuff"
rm -rf $sourcesDir/InsightToolkit*
+ rm -rf $binDir/InsightToolkit*
- cd $sourcesDir
+ cd $sourcesDir
+ echo "we download new stuff"
if [ $OperatingSystem = "MacOS" ]
- then
- curl -O http://www.creatis.insa-lyon.fr/software/public/creatools/crea_ThirdParty_Libraries/source/InsightToolkit-3.20.0.tar.gz # MacOS, clever enough to understand it *has* to uncompress, doesn't understand tar -z :-(
- tar -xvf InsightToolkit-3.20.0.tar.gz
- else
- wget http://www.creatis.insa-lyon.fr/software/public/creatools/crea_ThirdParty_Libraries/source/InsightToolkit-3.20.0.tar.gz
- tar -xzvf InsightToolkit-3.20.0.tar.gz
+ then
+ curl -O http://www.creatis.insa-lyon.fr/software/public/creatools/crea_ThirdParty_Libraries/source/InsightToolkit-3.20.0.tar.gz
+ # MacOS, clever enough to understand it *has* to uncompress, doesn't understand tar -z :-(
+ tar -xvf InsightToolkit-3.20.0.tar.gz
+ else
+ wget http://www.creatis.insa-lyon.fr/software/public/creatools/crea_ThirdParty_Libraries/source/InsightToolkit-3.20.0.tar.gz
+ tar -xzvf InsightToolkit-3.20.0.tar.gz
fi
if [ $buildType = "Debug" ]
export ITK_DIR=$installPrefixThird/lib/InsightToolkit/
mkdir $dirInstall
cd $dirInstall
+
cmake -G"Unix Makefiles" -H$sourcesDir/$libname -B$dirInstall/
##cmake -G"CodeBlocks - Unix Makefiles" -H$sourcesDir/$libname -B$dirInstall/
cmake -D USE_DEBUG_LIB:BOOL=$buildType -D CMAKE_INSTALL_PREFIX:PATH=$installPrefixThird CMakeCache.txt
make install
cd ..
fi
-
#!/bin/bash
-echo "in ThirdParty-onstall-VTK.sh, source " $PWD/scripts/CreaTools-configure.sh
+ echo "in ThirdParty-install-VTK.sh, source " $PWD/scripts/CreaTools-configure.sh
if [ ! -f $PWD/scripts/CreaTools-configure.sh ]
then
echo
source $PWD/scripts/CreaTools-configure.sh
+ echo "------"
+ echo $PWD/scripts/CreaTools-configure.sh
+ echo --generationdir--
+ echo $generationdir
+ echo --docgeneration--
+ echo $docgeneration
+ echo --installPrefix--
+ echo $installPrefix
+ echo --installPrefixThird--
+ echo $installPrefixThird
+ echo --buildType--
+ echo $buildType
+ echo --gdcmVersion--
+ echo $gdcmVersion
+# echo --sourcesFrom--
+# echo $sourcesFrom
+# echo --scriptDir--
+# echo $scriptDir
+# echo --start_point--
+# echo $start_point
+ echo "------"
+
+
scriptDir=$PWD
sourcesDir=$generationdir/thirdparty_sources
binDir=$generationdir/thirdparty_bin
echo "we remove old stuff"
rm -rf $sourcesDir/VTK*
rm -rf $sourcesDir/vtk*
- rm -rf $binDir/VTK*
-
- cd $sourcesDir
+ rm -rf $binDir/VTK*
+
+ cd $sourcesDir
- echo "we download new stuff"
+ echo "we download new stuff"
if [ $OperatingSystem = "MacOS" ]
- then
- curl -O http://www.creatis.insa-lyon.fr/software/public/creatools/crea_ThirdParty_Libraries/source/VTK-5.6.1.patchCreatis.tar.gz
- # MacOS, clever enough to understand it *has* to uncompress, doesn't understand tar -z :-(
- tar -xvf VTK-5.6.1.patchCreatis.tar.gz
- else
- wget http://www.creatis.insa-lyon.fr/software/public/creatools/crea_ThirdParty_Libraries/source/VTK-5.6.1.patchCreatis.tar.gz
- tar -xzvf VTK-5.6.1.patchCreatis.tar.gz
+ then
+ curl -O http://www.creatis.insa-lyon.fr/software/public/creatools/crea_ThirdParty_Libraries/source/VTK-5.6.1.patchCreatis.tar.gz
+ # MacOS, clever enough to understand it *has* to uncompress, doesn't understand tar -z :-(
+ tar -xvf VTK-5.6.1.patchCreatis.tar.gz
+ else
+ wget http://www.creatis.insa-lyon.fr/software/public/creatools/crea_ThirdParty_Libraries/source/VTK-5.6.1.patchCreatis.tar.gz
+ tar -xzvf VTK-5.6.1.patchCreatis.tar.gz
fi
-
+
if [ $buildType = "Debug" ]
then
debug="ON"
# the following stupid test is used at debug time; Please don't remove!
#if [ true = false ]
if [ true = true ]
-then
-
+then
libname=VTK
dirInstall=$binDir/$libname-Bin
- dirInstallVTK=$dirInstall
export VTK_DIR=$installPrefixThird/lib/vtk-5.6/
mkdir $dirInstall
- echo "we prepare directories dirInstallVTK " $dirInstallVTK " VTK_DIR " $installPrefixThird/lib/vtk-5.6/
+ echo "we prepare directories dirInstall " $dirInstall " VTK_DIR " $installPrefixThird/lib/vtk-5.6/
cd $dirInstall
-
+
+# See EED why we have to do this
+ if [ $OperatingSystem = "MacOS" ]
+ then
+ cmake -D CMAKE_CXX_COMPILER:FILE=/usr/bin/g++
+ fi
cmake -G"Unix Makefiles" -H$sourcesDir/$libname -B$dirInstall/
##cmake -G"CodeBlocks - Unix Makefiles" -H$sourcesDir/$libname -B$dirInstall/
- cmake -D USE_DEBUG_LIB:BOOL=$buildType -D CMAKE_INSTALL_PREFIX:PATH=$installPrefixThird CMakeCache.txt
-
+ cmake -D USE_DEBUG_LIB:BOOL=$buildType -D CMAKE_INSTALL_PREFIX:PATH=$installPrefixThird CMakeCache.txt
+
if [ $OperatingSystem = "MacOS" ]
then
- cmake -D BUILD_SHARE_LIBS:BOOL=ON -D VTK_USE_CARBON:BOOL=ON -D VTK_USE_COCOA:BOOL=OFF CMakeCache.txt
- cmake -D VTK_USE_TCL:BOOL=OFF CMakeCache.txt
- cmake -D CMAKE_CXX_COMPILER:FILE=/usr/bin/g++ CMakeCache.txt
- fi
+ cmake -D BUILD_SHARE_LIBS:BOOL=ON -D VTK_USE_CARBON:BOOL=ON -D VTK_USE_COCOA:BOOL=OFF CMakeCache.txt
+ cmake -D VTK_USE_TCL:BOOL=OFF CMakeCache.txt
+ CMakeCache.txt
+ fi
+
cmake -D BUILD_EXAMPLES:BOOL=OFF -D BUILD_TESTING:BOOL=OFF -D BUILD_SHARED_LIBS:BOOL=ON -D VTK_USE_QT:BOOL=ON CMakeCache.txt
make -j $corenumber
make install
cd ..
fi
-
chgrp $loginGroupName $binDir
fi
-# the following stupid test is used at debug time; Please don't remove!
-#if [ true = false ]
-if [ true = true ]
-then
-
+ echo "we remove old stuff"
rm -rf $sourcesDir/gdcm*
-
rm -rf $binDir/gdcm*
cd $sourcesDir
+ echo "we download new stuff"
if [ $OperatingSystem = "MacOS" ]
then
- curl http://www.creatis.insa-lyon.fr/software/public/creatools/crea_ThirdParty_Libraries/source/gdcm_05_Mai_2011.tar.gz
- tar -xvf gdcm_05_Mai_2011.tar.gz
+ curl -O http://www.creatis.insa-lyon.fr/software/public/creatools/crea_ThirdParty_Libraries/source/gdcm_05_Mai_2011.tar.gz
+ # MacOS, clever enough to understand it *has* to uncompress, doesn't understand tar -z :-(
+ tar -xvf gdcm_05_Mai_2011.tar.gz
else
- wget http://www.creatis.insa-lyon.fr/software/public/creatools/crea_ThirdParty_Libraries/source/gdcm_05_Mai_2011.tar.gz
+ wget http://www.creatis.insa-lyon.fr/software/public/creatools/crea_ThirdParty_Libraries/source/gdcm_05_Mai_2011.tar.gz
tar -xvzf gdcm_05_Mai_2011.tar.gz
fi
-fi
-
if [ $buildType = "Debug" ]
then
debug="ON"
export GDCM_DIR=$installPrefixThird/lib/gdcm/
mkdir $dirInstall
cd $dirInstall
+
cmake -G"Unix Makefiles" -H$sourcesDir/$libname -B$dirInstall/
##cmake -G"CodeBlocks - Unix Makefiles" -H$sourcesDir/$libname -B$dirInstall/
cmake -D USE_DEBUG_LIB:BOOL=$buildType -D CMAKE_INSTALL_PREFIX:PATH=$installPrefixThird CMakeCache.txt
cmake -D VTK_DIR:PATH=$dirInstallVTK CMakeCache.txt
cmake -D GDCM_VTK:BOOL=ON -D GDCM_NAME_SPACE:STRING=gdcm13 CMakeCache.txt
- make -j 2
+ make -j $corenumber
make install
cd ..
fi