]> Creatis software - creaToolsTools.git/blobdiff - Linux/menu.sh
*** empty log message ***
[creaToolsTools.git] / Linux / menu.sh
index fba2b716483def2a04f6f55dac24636e889669df..3be1b00a10aba6ac78eaef9493114df253ca1a27 100644 (file)
@@ -140,13 +140,25 @@ do
         echo "you said : [" $OperatingSystem "]"
         echo
         echo
+       
+        # ------------------
+        echo "How many cores on your computer 2 (default is 2)"
+        read corenumber
+        if [ "$corenumber" = "" ]
+        then
+           corenumber="2"
+        fi
+        echo "you said : [" $corenumber "]"
+
+        echo
+        echo   
 
         # ------------------
-        echo "Name of the Generation Directory (default is /tmp/myGenerationDir)"
+        echo "Name of the Generation Directory (default is ~/creaToolsGenerationDir)"
         read generationdir
         if [ "$generationdir" = "" ]
         then
-           generationdir="/tmp/myGenerationDir"
+           generationdir="~/creaToolsGenerationDir"
         fi
         echo "you said : [" $generationdir "]"
 
@@ -177,6 +189,8 @@ do
         echo 
         # ------------------
 
+if [ false ]
+then
         docgeneration="___"
         while [[ "$docgeneration" != "ON"  && "$docgeneration" != "OFF" ]]
         do
@@ -190,12 +204,15 @@ do
         done
         echo
         echo
+fi
+docgeneration="OFF"
+
         # ------------------
 
         sourcesFrom="___"
         while [[ "$sourcesFrom" != "CVS"  && "$sourcesFrom" != "HTML" ]]
         do
-           echo "Where do you want to get source files from : CVS/HTML (default is CVS)"
+           echo "Where do you want to get source files from : CVS/HTML ( CVS : for registered CREATIS users only! )"
            read sourcesFrom
            if [ "$sourcesFrom" = "" ]
            then
@@ -212,7 +229,7 @@ do
         then
            while [ "$cvsUserName" == "" ]
            do
-              echo "CVS User Name (mandatory!)"
+              echo "CVS User Name ( registered CREATIS user : mandatory!)"
               read cvsUserName
            done
            echo "you said : [" $cvsUserName "]"
@@ -281,6 +298,7 @@ do
         echo
         echo "You said :"
         echo "  Operating System                           : $OperatingSystem"
+        echo "  Number of Cores                            : $corenumber"      
         echo "  Name of the Generation Directory           : $generationdir"
         echo "  Install Prefix for Third Party Libraries   : $installPrefixThird"      
         echo "  Install Prefix for CreaTools               : $installPrefix"
@@ -318,9 +336,10 @@ do
    echo                                          >> $configureFile
    echo "#File generated by 'menu.sh'"           >> $configureFile
    echo "#DO NOT edit !"                         >> $configureFile
-   echo "#(except if you *know* what you do)"    >> $configureFile
+   echo "#(except if you *do* know what you do)" >> $configureFile
    echo                                          >> $configureFile
    echo "OperatingSystem=$OperatingSystem"       >> $configureFile
+   echo "corenumber=$corenumber"                 >> $configureFile   
    echo "generationdir=$generationdir"           >> $configureFile
    echo "installPrefix=$installPrefix"           >> $configureFile
    echo "installPrefixThird=$installPrefixThird" >> $configureFile
@@ -500,7 +519,7 @@ do
             
      if [ -f $installPrefixThird/share/creatools_third_party_library_config.sh ]
      then
-        echo  $installPrefixThird/share/creatools_third_party_library_config.sh
+        echo  "Third party config file : " $installPrefixThird/share/creatools_third_party_library_config.sh
        echo  ------
        more $installPrefixThird/share/creatools_third_party_library_config.sh
        echo  ------
@@ -510,7 +529,7 @@ do
      
      if [ -f $installPrefix/share/creatools_base_library_config.sh ]
      then
-        echo  $installPrefix/share/creatools_base_library_config.sh
+        echo  "Creatools base library config file : " $installPrefix/share/creatools_base_library_config.sh
        echo  ------ 
        more $installPrefix/share/creatools_base_library_config.sh
        echo  ------ 
@@ -518,11 +537,12 @@ do
         echo "installPrefix ... " $installPrefix
      fi 
      echo  ------
-        echo "VTK_DIR  : " $VTK_DIR
-        echo "ITK_DIR  : " $ITK_DIR
-        echo "GDCM_DIR : " $GDCM_DIR
+        echo "VTK_DIR  :                 " $VTK_DIR
+        echo "ITK_DIR  :                 " $ITK_DIR
+        echo "GDCM_DIR :                 " $GDCM_DIR
+       echo
         echo "crea_DIR :                 " $crea_DIR
-        echo "bbtk_DIR :                 " $bbtk_DIR
+        echo "BBTK_DIR :                 " $BBTK_DIR
         echo "creaMaracasVisu_DIR :      " $creaMaracasVisu_DIR
         echo "creaEnvironment_DIR :      " $creaEnvironment_DIR
         echo "creaBruker_DIR :           " $creaBruker_DIR
@@ -531,7 +551,7 @@ do
         echo "creaRigidRegistration_DIR :" $creaRigidRegistration_DIR
         echo "bbtkGEditor_DIR :          " $bbtkGEditor_DIR
         echo "creaTools_DIR :            " $creaTools_DIR
-                                   
+        echo "creaMiniTools_DIR :        " $creaMiniTools_DIR                              
         echo "==================================="
         echo
         echo "Press any key to continue"
@@ -544,6 +564,7 @@ do
     ;;
 
   10)
+  # Hiden option, usefull at debug time
     bash scripts/ThirdParty-install_no_compile.sh  
     ;;