X-Git-Url: https://git.creatis.insa-lyon.fr/pubgit/?a=blobdiff_plain;f=Linux%2Fmenu.sh;h=69090bb3804a0d67c5eafc12297cb278f8fb3055;hb=9f43cd159e6f7dd21ec18f33cc9d962db3b1a8e5;hp=486e887451f6a013803b6a402bef68cd08915221;hpb=a5fce6cfe871e7dee66e6e7c064ef9e632a5c192;p=creaToolsTools.git diff --git a/Linux/menu.sh b/Linux/menu.sh index 486e887..69090bb 100644 --- a/Linux/menu.sh +++ b/Linux/menu.sh @@ -5,6 +5,7 @@ source scripts/CreaTools-configure.sh fi +expanded="NO" i=999 while [ "$i" != 9 ] do @@ -16,14 +17,38 @@ do echo echo " Choose what you want to do :" echo - echo " Configure :........................0 " - echo " Install Third Party Libraries :....1 (as root)" - echo " Get the 'CreaTools' source files :.2 (CVS : as user!)" - echo " Compile the CreaTools :..........3 " -# Install creatools as user (no longer as root) // JPR 2/5/2011 - echo " Install the CreaTools :..........4 " - echo " Uninstall the CreaTools :..........5 " + echo " Configure :........................0" + + if [ $expanded = "YES" ] + then + echo " Install all base stuff :..........1.0" + echo " (cmake, doxygen, graphviz, ...)" + echo " Get, Compile, Install vtk .......1.1" + echo " Get, Compile, Install gdcm :.. . .1.2" + echo " Get, Compile, Install itk :.......1.3" + echo " Get, Compile, Install Wx (for Mac Users) :…....1.4" + + else + echo " Install Third Party Libraries :....1 (as root)" + fi + + if [ $expanded = "YES" ] + then + echo " Get the 'CreaTools' source files :.2.1 (CVS : as user!)" + echo " Compile the CreaTools :..........2.2" + # Install creatools as user (no longer as root) // JPR 2/5/2011 + echo " Install the CreaTools :..........2.3" + else + echo " Get and Install the 'CreaTools':...2" + fi echo + if [ $expanded = "NO" ] + then + echo " Use Expanded menu :................5 " + else + echo " Use compact menu :.................5 " + fi + echo " Uninstall the CreaTools :..........6 " echo " Help ..............................7 Help about this menu" echo " Show some Environment Variables ...8" echo " Exit :.............................9" @@ -36,6 +61,22 @@ do case $i in 0) + + # Do it, while we are under user, not under root! # JPR + if [ -f $HOME/.bashrc ] + then + export ETC_BASHRC=$HOME/.bashrc + else + if [ -f $HOME/.profile ] + then + export ETC_BASHRC=$HOME/.profile + else + echo "======================== BIG TROUBLE : neither $HOME/.bashrc nor $HOME/.profile file found" + echo "======================== You'd better to abort the program and (try to) fix the issue" + read a # just to let the user time enough to read the message... + fi + fi + clear suitable=XXX #ls -l scripts/CreaTools-configure.sh @@ -48,35 +89,24 @@ do "$suitable" != "NO" && \ "$suitable" != "no" ]] do - echo "'Configure' already done : " + echo "'Configure' already done; Content of scripts/CreaTools-configure.sh :" echo "------------------------" more scripts/CreaTools-configure.sh echo "------------------------" - # WARNING : $installPrefixThird is taken from CreaTools-configure.sh - # if user configured without installing third party library, - # Last third party library is still in use! JPR - + # WARNING : $installPrefixThird is taken from CreaTools-configure.sh + # If user configured without installing third party library, + # last third party library is still in use! JPR if [ ! -f $installPrefixThird/share/creatools_third_party_library_config.sh ] then - echo WARNING - echo -# Install creatools as user (no longer as root) // JPR 2/5/2011 - #if [ ! -f /etc/bashrc ] - #then - # export ETC_BASHRC="/etc/bash.bashrc" - #else - # export ETC_BASHRC="/etc/bashrc" - #fi - export ETC_BASHRC=$HOME/.bashrc - echo "the curently used Third Party libraries are NOT in $installPrefixThird but in :" - - grep "installPrefixThird=" $ETC_BASHRC - echo "VTK_DIR :...." $VTK_DIR - echo "ITK_DIR :...." $ITK_DIR - echo "GDCM_DIR :..." $GDCM_DIR - echo "(Have a look at $ETC_BASHRC=, edit it or run again Install Third Party Libraries if you disagree)" + echo WARNING + echo "the curently used Third Party libraries are NOT in $installPrefixThird but ... in :" + grep "installPrefixThird=" $ETC_BASHRC + echo "VTK_DIR : " $VTK_DIR + echo "ITK_DIR : " $ITK_DIR + echo "GDCM_DIR : " $GDCM_DIR + echo "(Have a look at $ETC_BASHRC=, edit it or run again Install Third Party Libraries if you disagree)" fi echo echo "Are these values suitable for you : YES/NO? (default is YES)" @@ -89,7 +119,7 @@ do else suitable="NO" fi - + if [[ "$suitable" = "YES" || "$suitable" = "Y" || "$suitable" = "yes" || "$suitable" = "y" ]] then source scripts/CreaTools-configure.sh @@ -103,7 +133,7 @@ do confirm="NO" while [ "$confirm" != "YES" ] do - + # ///\TODO what about SuSE? Debian? Mandriva? Gentoo? OperatingSystem="XXX" while [[ "$OperatingSystem" != "Fedora" && \ "$OperatingSystem" != "Ubuntu" && \ @@ -119,13 +149,26 @@ 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 + + racine=$HOME/myDefaultCreatoolsGenerationDir # ------------------ - echo "Name of the Generation Directory (default is /tmp/myGenerationDir)" + echo "Name of the Generation Directory (default is $racine)" read generationdir if [ "$generationdir" = "" ] then - generationdir="/tmp/myGenerationDir" + generationdir=$racine fi echo "you said : [" $generationdir "]" @@ -156,25 +199,31 @@ do echo # ------------------ +if [ false ] +then docgeneration="___" while [[ "$docgeneration" != "ON" && "$docgeneration" != "OFF" ]] do echo "Boolean For Doc Generation : ON/OFF (default is OFF)" read docgeneration - if [ "$docgeneration" = "" ] - then - docgeneration="OFF" - fi - echo "you said : [" $docgeneration "]" + if [ "$docgeneration" = "" ] + then + docgeneration="OFF" + fi + echo "you said : [" $docgeneration "]" 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 @@ -191,7 +240,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 "]" @@ -203,24 +252,24 @@ do # ------------------ - loginUserName="" - while [ "$loginUserName" == "" ] - do + #loginUserName="" + loginUserName=$USER + #while [ "$loginUserName" == "" ] + #do echo "Have a look at the following line to know 'Login User Name'/'Login Group Name'" ls -l menu.sh - echo "Login User Name (mandatory!)" - read loginUserName - echo "you said : [" $loginUserName "]" - done + # echo "Login User Name (mandatory!)" + # read loginUserName + # echo "you said : [" $loginUserName "]" + #done echo echo loginGroupName="" while [ "$loginGroupName" == "" ] do - #echo "Have a look at the following line to know 'Login User Name'/'Login Group Name'" - #echo "Login Group Name (mandatory!)" - echo "Login Group Name (mandatory!)" + echo "Have a look at the following line to know 'Login User Name'/'Login Group Name'" + echo "Login Group Name (mandatory!)" read loginGroupName echo "you said : [" $loginGroupName "]" done @@ -244,7 +293,7 @@ do # ------------------ gdcmVersion="___" - while [[ "$gdcmVersion" != "GDCM1" && "$gdcmVersion " != "GDCM2" ]] + while [[ "$gdcmVersion" != "GDCM1" && "$gdcmVersion" != "GDCM2" ]] do echo "Gdcm version : GDCM1/GDCM2 (default is GDCM1)" read gdcmVersion @@ -254,12 +303,27 @@ do fi echo "you said : [" $gdcmVersion "]" done + +# NOT YET CHECKED ! JPR + ITKVersion="___" + while [[ "$ITKVersion" != "ITK3" && "$ITKVersion" != "ITK4" ]] + do + echo "ITK version : ITK3/ITK4 (default is ITK3)" + read ITKVersion + if [ "$ITKVersion" = "" ] + then + ITKVersion="ITK3" + fi + echo "you said : [" $ITKVersion "]" + done + echo echo echo 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" @@ -273,6 +337,7 @@ do echo " Login Group Name : $loginGroupName" echo " Build type : $buildType" echo " Gdcm version : $gdcmVersion" + echo " ITK version : $ITKVersion" echo echo @@ -284,11 +349,7 @@ do fi done - # GROS SOUCIS : Ou generer le fichier CreaTools-configure.sh? - # dans $generationdir/creatools_bin ? - # -> il n'est pas encore cree ! - # dans ./Linux/scripts? - # ==> On le genere chez l'utilisateur (no choice!)... + # ==> On genere le fichier CreaTools-configure.sh genere chez l'utilisateur (no choice!)... # configureFile="scripts/CreaTools-configure.sh" @@ -297,9 +358,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 @@ -310,7 +372,9 @@ do echo "loginGroupName=$loginGroupName" >> $configureFile echo "buildType=$buildType" >> $configureFile echo "gdcmVersion=$gdcmVersion" >> $configureFile - + echo "ITKVersion=$ITKVersion" >> $configureFile + echo "ETC_BASHRC=$ETC_BASHRC" >> $configureFile + # ------------------ # endif 'suitable' fi @@ -319,33 +383,91 @@ do 1) echo "========================== 1 " source scripts/Check-if-root.sh + bash scripts/ThirdParty-install-Base-Stuff.sh + bash scripts/ThirdParty-install-VTK.sh + bash scripts/ThirdParty-install-gdcm.sh + bash scripts/ThirdParty-install-ITK.sh bash scripts/ThirdParty-install.sh + bash scripts/ThirdParty-install-Finalize.sh if [ "$sourcesFrom" = "CVS" ] then echo "----------------------------------------------------------------------" echo OK echo "To go on, run again 'bash menu.sh' as '$loginUserName', in a new window" - echo "---------------------------------------------------------------------" + echo "----------------------------------------------------------------------" else echo "----------------------------------------------------------------------" echo OK echo "To go on, run again 'bash menu.sh' in a new window" - echo "---------------------------------------------------------------------" + echo "----------------------------------------------------------------------" fi echo - echo "==> Hit any key to exit close current window" + echo "==>" + echo "==> You HAVE to leave current window to continue!" + echo "==>" + source $ETC_BASHRC + read a + ;; + + 1.0) + echo "========================== 1.0 " + source scripts/Check-if-root.sh + bash scripts/ThirdParty-install-Base-Stuff.sh + bash scripts/ThirdParty-install-Finalize.sh + ;; + + 1.1) + echo "========================== 1.1 " + #source scripts/Check-if-root.sh + bash scripts/ThirdParty-install-VTK.sh + bash scripts/ThirdParty-install-Finalize.sh + ;; + + 1.2) + echo "========================== 1.2 " + #source scripts/Check-if-root.sh + bash scripts/ThirdParty-install-gdcm.sh + bash scripts/ThirdParty-install-Finalize.sh + ;; + + 1.3) + echo "========================== 1.3 " + #source scripts/Check-if-root.sh + bash scripts/ThirdParty-install-ITK.sh + bash scripts/ThirdParty-install-Finalize.sh + ;; + 1.4) + echo "========================== 1.4 " + #source scripts/Check-if-root.sh + bash scripts/ThirdParty-install-WX.sh + bash scripts/ThirdParty-install-Finalize.sh read a - kill $PPID ;; 2) - echo "========================== 2" + #2.1 + bash scripts/CreaTools-load.sh + #2.2 + source scripts/CreaTools-configure.sh + bash scripts/CreaTools-compile.sh + #2.3 + bash scripts/CreaTools-install.sh + echo "==>" + echo "==> You HAVE to leave current window to continue!" + echo "==>" + source $ETC_BASHRC + read a + kill -9 $PPID + ;; + + 2.1) + echo "========================== 2.1" bash scripts/CreaTools-load.sh ;; - 3) - echo "========================== 3" + 2.2) + echo "========================== 2.2" source scripts/CreaTools-configure.sh bash scripts/CreaTools-compile.sh @@ -362,32 +484,14 @@ do else chown -R $loginUserName $generationdir/creatools_source chgrp -R $loginGroupName $generationdir/creatools_source - # Too much time consuming - #chown -R $loginUserName $generationdir/creatools_source - #chgrp -R $loginGroupName $generationdir/creatools_source fi ;; - - 4) -# if [ $UID != 0 ] -# then -# echo -# echo "..ERROR.." -# echo "===================================================" -# echo "REMEMBER !" -# echo "" -# echo "YOU NEED TO RUN THIS ONE AS root" -# echo "===================================================" -# echo -# echo -# exit 0 -# fi + 2.3) echo "========================= 4" bash scripts/CreaTools-install.sh - # if [ $UID != 0 ] # then @@ -395,14 +499,19 @@ do # else # echo "==> Hit any key to close current window" # fi - - - echo "You HAVE to leave current window to continue!" - read a - kill $PPID + source $ETC_BASHRC ;; - + 5) + if [ $expanded = "NO" ] + then + expanded="YES" + else + expanded="NO" + fi + ;; + + 6) echo "========================= 5" bash scripts/CreaTools-uninstall.sh echo @@ -424,8 +533,8 @@ do echo "===================================" # WARNING : $installPrefixThird is taken from CreaTools-configure.sh - # if user configured without installing third party library, - # Last third party library is still in use! JPR + # If user configured without installing third party library, + # last third party library is still in use! JPR if [ ! -f $installPrefixThird/share/creatools_third_party_library_config.sh ] @@ -433,63 +542,77 @@ do echo WARNING echo echo "the curently used Third Party libraries are NOT in $installPrefixThird but in :" - grep "installPrefixThird=" /etc/bashrc - echo "VTK_DIR :...." $VTK_DIR - echo "ITK_DIR :...." $ITK_DIR - echo "GDCM_DIR :..." $GDCM_DIR + grep "installPrefixThird=" $ETC_BASHRC + echo "VTK_DIR : " $VTK_DIR + echo "ITK_DIR : " $ITK_DIR + echo "GDCM_DIR : " $GDCM_DIR echo echo "installPrefixThird ... " $installPrefixThird fi if [ -f $installPrefixThird/share/creatools_third_party_library_config.sh ] then - echo $installPrefixThird/share/creatools_third_party_library_config.sh - echo ------ - more $installPrefixThird/share/creatools_third_party_library_config.sh - echo ------ + echo "Third party config file : " $installPrefixThird/share/creatools_third_party_library_config.sh + echo ------ + more $installPrefixThird/share/creatools_third_party_library_config.sh + echo ------ fi echo if [ -f $installPrefix/share/creatools_base_library_config.sh ] then - echo $installPrefix/share/creatools_base_library_config.sh - echo ------ - more $installPrefix/share/creatools_base_library_config.sh - echo ------ - echo + echo "Creatools base library config file : " $installPrefix/share/creatools_base_library_config.sh + echo ------ + more $installPrefix/share/creatools_base_library_config.sh + echo ------ + echo echo "installPrefix ... " $installPrefix - fi + fi echo ------ - echo "VTK_DIR :...." $VTK_DIR - echo "ITK_DIR :...." $ITK_DIR - echo "GDCM_DIR :..." $GDCM_DIR - echo "CREA_DIR :...................." $CREA_DIR - echo "BBTK_DIR :...................." $BBTK_DIR - echo "CREAMARACASVISU_DIR :........." $CREAMARACASVISU_DIR - echo "CREAENVIRONMENT_DIR :........." $CREAENVIRONMENT_DIR - echo "CREABRUKER_DIR :.............." $CREABRUKER_DIR - echo "CREAIMAGEIO_DIR :............." $CREAIMAGEIO_DIR - echo "CREACONTOUR_DIR :............." $CREACONTOUR_DIR - echo "CREARIGIDREGISTRATION_DIR :..." $CREAIGIDREGISTRATION_DIR - echo "CREABTKGEDITOR_DIR :.........." $CREABTKGEDITOR_DIR - echo "CREATOOLS_DIR :..............." $CREATOOLS_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 "creaMaracasVisu_DIR : " $creaMaracasVisu_DIR + echo "creaEnvironment_DIR : " $creaEnvironment_DIR + echo "creaBruker_DIR : " $creaBruker_DIR + echo "creaImageIO_DIR : " $creaImageIO_DIR + echo "creaContours_DIR : " $creaContours_DIR + echo "creaRigidRegistration_DIR :" $creaRigidRegistration_DIR + echo "bbtkGEditor_DIR : " $bbtkGEditor_DIR + echo "creaTools_DIR : " $creaTools_DIR + echo "creaMiniTools_DIR : " $creaMiniTools_DIR + echo "Ido_DIR : " $Ido_DIR echo "===================================" echo echo "Press any key to continue" read a ;; - + 9) - echo - exit 0 - ;; - + echo + exit 0 + ;; + + 10) + # Hiden option, usefull at debug time + bash scripts/ThirdParty-install_no_compile.sh + ;; + *) - echo "Your answer must be in {0, 1, 2, 3, 4, 5, 7, 8, 9} (was [ $i ])" + + if [ expanded="NO" ] + then + echo "Your answer must be in {0, 1, 2, 5, 6, 7, 8, 9} (was [ $i ])" + else + echo "Your answer must be in {0, 1, 2.1, 2.2, 2.3, 5, 6, 7, 8, 9} (was [ $i ])" + fi ;; esac done +