]> Creatis software - creaToolsTools.git/blobdiff - Linux/installscript
conflict gdcm and vtk version
[creaToolsTools.git] / Linux / installscript
index c65468e096a536de700c59c0c3497714ba6d2bb8..4823c0227badd9a1d5e2d5d58eb9f5605343cb04 100755 (executable)
@@ -23,6 +23,8 @@
 
 #!/bin/bash -e
 
+scriptDirName=$(dirname $(readlink -f $0) )
+
 #########################################################################
 ############     Local Functions  #######################################
 #########################################################################
@@ -169,10 +171,11 @@ function usage {
     echo "" 
     echo "" 
     echo "    command:" 
-    echo "         all               : configure / compile / install
-    echo "         "                 
+    echo "" 
+    echo "    as a normal user:" 
     echo "         config            : set the configuration parameters only" 
     echo "         "                 
+    echo "    as root:" 
     echo "         3rd               : Get, Compile, Install all 3rd party library "
     echo "         3rd-base          : Install basic tools (cmake, doxygen...)"
     echo "         3rd-vtk           : Get, Compile, Install vtk"
@@ -180,6 +183,7 @@ function usage {
     echo "         3rd-gdcm          : Get, Compile, Install gdcm"
     echo "         3rd-wx            : Get, Compile, Install wx widget (for Mac Users)"
     echo "   "
+    echo "    as a normal user:" 
     echo "         creatools         : Get Compile and Install the CreaTools"
     echo "         creatools-get     : Get the CreaTools"
     echo "         creatools-cmp     : Compile the CreaTools"
@@ -190,6 +194,9 @@ function usage {
     echo "         printconfig       : print the configuration" 
     echo "         help              : print help"
     echo "         env               : print some environnement variables"
+    echo "" 
+    echo "         all               : configure / compile / install" 
+    echo "         "                 
     echo "   "
     echo "   "
     echo "   "
@@ -201,6 +208,7 @@ function usage {
     echo "        -instprefix <dir>     : creatools install prefix" 
     echo "        -instprefix3 <dir>    : 3rd party library install prefix" 
     echo "        -git                  : get creatools from git (CREATIS user only)"
+    echo "        -git-read-only        : get creatools from git (anonymously, no write access)"
     echo "        -build                : build type Release, RelWithDebug or Debug (default RelWithDebug)"
     echo ""
     echo "     experimental configure options (use at your own risk!!):"
@@ -222,6 +230,8 @@ while [ $# -ge 1 ] ; do
         -instprefix3)       installPrefixThird=$2;                     shift 2;;
         -doc)               docgeneration=ON;                          shift 1;;
         -git)               sourcesFrom=GIT;                           shift 1;;
+        -git-read-only)     sourcesFrom=GIT-READ-ONLY;
+shift 1;;
         -gdcm2)             gdcmVersion=GDCM2;                         shift 1;;
         -itk4)              ITKVersion=ITK4;                           shift 1;;
         -build)             buildType=$2;                              shift 2;;
@@ -339,16 +349,19 @@ if [ `checkVal $command all 3rd 3rd-base` == true ] ; then
 fi
 
 
+
 # vtk
 if [ `checkVal $command all 3rd 3rd-vtk` == true ] ; then
     bigDisplay "INSTALL VTK"
-    bash scripts/ThirdParty-install-VTK.sh
+    source scripts/ThirdParty-install-VTK.sh
+    cd $scriptDirName
 fi
 
 # gdcm
 if [ `checkVal $command all 3rd 3rd-gdcm` == true ] ; then
     bigDisplay "INSTALL $gdcmVersion"
-    bash scripts/ThirdParty-install-gdcm.sh
+    source scripts/ThirdParty-install-gdcm.sh
+    cd $scriptDirName
 fi
 
 # itk