From: jean-pierre roux Date: Fri, 1 Apr 2011 15:20:22 +0000 (+0000) Subject: Allow quick gdcm compile+install X-Git-Url: https://git.creatis.insa-lyon.fr/pubgit/?a=commitdiff_plain;h=1e9d5e4a5506444a19b4f5b2e5ff864ca4272d63;p=creaToolsTools.git Allow quick gdcm compile+install --- diff --git a/Linux/scripts/ThirdParty-install-gdcm.sh b/Linux/scripts/ThirdParty-install-gdcm.sh new file mode 100644 index 0000000..beabbe6 --- /dev/null +++ b/Linux/scripts/ThirdParty-install-gdcm.sh @@ -0,0 +1,145 @@ +#!/bin/bash + if [ ! -f $PWD/scripts/CreaTools-configure.sh ] + then + echo + echo "..ERROR.." + echo "===================================================" + echo "REMEMBER !" + echo "" + echo "YOU NEED TO RUN 'Configure' (0) First !" + echo "===================================================" + echo + echo + exit 0 +fi + +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 + +if [ ! -e $generationdir ] +then + mkdir $generationdir + chown $loginUserName:$loginGroupName $generationdir +fi +if [ ! -e $sourcesDir ] +then + mkdir $sourcesDir +fi + +if [ ! -e $binDir ] +then + mkdir $binDir +fi + + +# the following stupid test is used at debug time; Please don't remove! +#if [ true = false ] +if [ true = true ] +then + + rm -rf $sourcesDir/gdcm* + + rm -rf $binDir/gdcm* + + cd $sourcesDir + wget http://www.creatis.insa-lyon.fr/software/public/creatools/crea_ThirdParty_Libraries/source/gdcm_08_Dic_2009.tar.gz + + + tar -xvzf gdcm_08_Dic_2009.tar.gz + +fi + + +if [ $buildType = "Debug" ] +then + debug="ON" +else + debug="OFF" +fi + + +# the following stupid test is used at debug time; Please don't remove! +#if [ true = false ] +if [ true = true ] +then + libname=gdcm + dirInstall=$binDir/$libname-Bin + 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 install + cd .. +fi + +#if [ true = false ] +if [ true = true ] +then + cd $sourcesDir + cp tth $installPrefixThird/bin +fi + + +#deal with create creatools_third_party_libraries_config.sh + +if [ -f $installPrefixThird/share/creatools_third_party_library_config.sh ] +then + rm $installPrefixThird/share/creatools_third_party_library_config.sh +fi + +if [ ! -e $installPrefixThird/share ] +then + mkdir $installPrefixThird/share +fi +touch $installPrefixThird/share/creatools_third_party_library_config.sh +chmod 755 $installPrefixThird/share/creatools_third_party_library_config.sh + +echo export PATH='$'PATH:$installPrefixThird/bin >> $installPrefixThird/share/creatools_third_party_library_config.sh +echo export VTK_DIR=$installPrefixThird/lib/vtk-5.6 >> $installPrefixThird/share/creatools_third_party_library_config.sh +echo export ITK_DIR=$installPrefixThird/lib/InsightToolkit >> $installPrefixThird/share/creatools_third_party_library_config.sh +echo export GDCM_DIR=$installPrefixThird/lib/gdcm >> $installPrefixThird/share/creatools_third_party_library_config.sh +echo export TTH=$installPrefixThird/bin/tth >> $installPrefixThird/share/creatools_third_party_library_config.sh +echo export LD_LIBRARY_PATH='$'LD_LIBRARY_PATH:$GDCM_DIR >> $installPrefixThird/share/creatools_third_party_library_config.sh +echo export LD_LIBRARY_PATH='$'LD_LIBRARY_PATH:$ITK_DIR >> $installPrefixThird/share/creatools_third_party_library_config.sh +echo export LD_LIBRARY_PATH='$'LD_LIBRARY_PATH:$VTK_DIR >> $installPrefixThird/share/creatools_third_party_library_config.sh + +export ETC_BASHRC=$HOME/.bashrc + + sed -i -e '/.*installPrefixThird*/ d' $ETC_BASHRC + sed -i -e '/.*creatools_third_party_library_config.*/ d' $ETC_BASHRC + + +# - add line 'bash $installPrefixThird/share/creatools_third_party_library_config.sh' (with accurate value for ???) +echo installPrefixThird=$installPrefixThird >> $ETC_BASHRC +echo '[ -f "$installPrefixThird/share/creatools_third_party_library_config.sh" ] && source $installPrefixThird/share/creatools_third_party_library_config.sh' >> $ETC_BASHRC diff --git a/Linux/scripts/ThirdParty-install.sh b/Linux/scripts/ThirdParty-install.sh index d986ee1..cd5bc06 100644 --- a/Linux/scripts/ThirdParty-install.sh +++ b/Linux/scripts/ThirdParty-install.sh @@ -209,7 +209,8 @@ then ##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 BUILD_EXAMPLES:BOOL=OFF -D BUILD_TESTING:BOOL=OFF -D BUILD_SHARED_LIBS:BOOL=ON -D ITK_USE_REVIEW:BOOL=ON CMakeCache.txt - cmake -D ITK_USE_SYSTEM_GDCM:BOOL=ON CMakeCache.txt + #uncomment following line if you want to use the bleeding edge of GDCM2! + #cmake -D ITK_USE_SYSTEM_GDCM:BOOL=ON CMakeCache.txt cmake CMakeCache.txt make -j 2 make install