X-Git-Url: https://git.creatis.insa-lyon.fr/pubgit/?a=blobdiff_plain;f=Linux%2Fmenu.sh;h=83b7584eb3e4e986c4afe43be3f0d0dd0b93275b;hb=05abe3279dd77f37c98a79f508cd2ba9b66ff395;hp=618c70222a3c28c300cc1c3425391c1bc7037027;hpb=c376e01926059fa74eb138b817768e103c48ab13;p=creaToolsTools.git diff --git a/Linux/menu.sh b/Linux/menu.sh index 618c702..83b7584 100644 --- a/Linux/menu.sh +++ b/Linux/menu.sh @@ -1,48 +1,36 @@ -#!/bin/sh +#!/bin/bash -e -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 -else - i=999 -while [ $i != 9 ] +i=999 +while [ "$i" != 9 ] do + clear + echo + echo + echo + echo " MENU" + 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 " + echo " Install the CreaTools :............4 (as root)" + echo " Uninstall the CreaTools :............5 (as root)" + echo + echo " Exit :...............................9" + echo + echo + echo -echo -echo -echo -echo " MENU" -echo -echo " Choose what you want to do :" -echo -echo " Configure : 0" -echo " Install Third Party Libraries : 1" -echo " Compile the CreaTools : 2" -echo " Install the CreaTools : 3" -echo " Uninstall the CreaTools : 4" -echo -echo " Exit : 9" -echo -echo -echo - -echo "Type in your choice :" -read i + echo "Type in your choice :" + read i case $i in 0) suitable=XXX - ls -l scripts/CreaTools-configure.sh + #ls -l scripts/CreaTools-configure.sh if [ -f scripts/CreaTools-configure.sh ] then while [[ "$suitable" != "YES" && \ @@ -52,223 +40,252 @@ read i echo "------------------------" more scripts/CreaTools-configure.sh echo "------------------------" - echo "Are the following values suitable for you : YES/NO (default is YES)?" + echo "Are the following values suitable for you : YES/NO? (default is YES)" read suitable if [ "$suitable" = "" ] then - $suitable="YES" + suitable="YES" fi done else - $suitable="NO" + suitable="NO" fi - - if [ "$suitable" = "NO" ] + if [ "$suitable" = "YES" ] then -echo -echo - confirm="NO" - while [ "$confirm" != "YES" ] - do - OperatingSystem="XXX" - while [[ "$OperatingSystem" != "Fedora" && \ - "$OperatingSystem" != "Ubuntu" && \ - "$OperatingSystem" != "MacOS" ]] - do - echo "Operating System : Fedora/Ubuntu/MacOS (mandatory!)" - read OperatingSystem - done - echo "you said : [" $OperatingSystem "]" -echo -echo - # ------------------ - - - # ------------------ - echo "Name of the Generation Directory (default is /tmp/myGenerationDir)" - read generationdir - if [ "$generationdir" = "" ] - then - generationdir="/tmp/myGenerationDir" + source scripts/CreaTools-configure.sh fi - echo "you said : [" $generationdir "]"su -echo -echo - # ------------------ - - installPrefix="XXX" - echo "Install Prefix : '$generationdir/creatools_install' / '/usr/local' (default is '$generationdir/creatools_install')" - read installPrefix - if [ "$installPrefix" = "" ] + if [ "$suitable" = "NO" ] then - installPrefix="$generationdir/creatools_install" - fi - echo "you said : [" $installPrefix "]" -echo -echo - # ------------------ + echo + echo + confirm="NO" + while [ "$confirm" != "YES" ] + do + OperatingSystem="XXX" + while [[ "$OperatingSystem" != "Fedora" && \ + "$OperatingSystem" != "Ubuntu" && \ + "$OperatingSystem" != "MacOS" ]] + do + echo "Operating System : Fedora/Ubuntu/MacOS (default :Fedora!)" + read OperatingSystem + done + echo "you said : [" $OperatingSystem "]" + echo + echo - docgeneration="XXX" - while [[ "$docgeneration" != "YES" && "$docgeneration" != "NO" ]] - do - echo "Boolean For Doc Generation : YES/NO (default is NO)" - read docgeneration - if [ "$docgeneration" = "" ] - then - docgeneration="NO" - fi - echo "you said : [" $docgeneration "]" - done -echo -echo - # ------------------ + # ------------------ + echo "Name of the Generation Directory (default is /tmp/myGenerationDir)" + read generationdir + if [ "$generationdir" = "" ] + then + generationdir="/tmp/myGenerationDir" + fi + echo "you said : [" $generationdir "]" - sourcesFrom="XXX" - while [[ "$sourcesFrom" != "CVS" && "$sourcesFrom" != "HTML" ]] - do - echo "Where do you want to get source files from : CVS/HTML (default is HTML)" - read sourcesFrom - if [ "$sourcesFrom" = "" ] - then - sourcesFrom="HTML" - fi - echo "you said : [" $sourcesFrom "]" - done -echo -echo - # ------------------ - - cvsUserName="" - if [ "$sourcesFrom" = "CVS" ] - then - while [ "$cvsUserName" == "" ] - do - echo "CVS User Name (mandatory!)" - read cvsUserName - done - echo "you said : [" $cvsUserName "]" - else - cvsUserName="ForgetThisOne" - fi -echo -echo - # ------------------ + echo + echo + # ------------------ + installPrefixThird="___" + echo "Install Prefix For Third Party Library : '$generationdir/thirdparty_install' / '/usr/local' (default is '$generationdir/thirdparty_install')" + read installPrefixThird + if [ "$installPrefixThird" = "" ] + then + installPrefixThird="$generationdir/thirdparty_install" + fi + echo "you said : [" $installPrefixThird "]" + echo + echo + # ------------------ - linuxUserName="" - while [ "$linuxUserName" == "" ] - do - echo "Have a look at the following line to know 'Login User Name'/'Login Group Name'" - ls -l .bashrc - echo "Login User Name (mandatory!)" - read linuxUserName - echo "you said : [" $linuxUserName "]" - done -echo -echo - linuxGroupName="" - while [ "$linuxGroupName" == "" ] - do - echo "Have a look at the following line to know 'Login User Name'/'Login Group Name'" - echo "Login Group Name (mandatory!)" - read linuxGroupName - echo "you said : [" $linuxGroupName "]" - done -echo -echo - # ------------------ - - buildType="XXX" - while [[ "$buildType" != "Release" && "$Debug " != "HTML" ]] - do - echo "Build type : Release/Debug (default is Release)" - read buildType - if [ "$buildType" = "" ] - then - buildType="Release" - fi - echo "you said : [" $buildType "]" - done -echo -echo - # ------------------ - - gdcmVersion="XXX" - while [[ "$gdcmVersion" != "GDCM1" && "$gdcmVersion " != "GDCM2" ]] - do - echo "Gdcm version : GDCM1/GDCM2 (default is GDCM1)" - read gdcmVersion - if [ "$gdcmVersion" = "" ] - then - gdcmVersion="GDCM1" - fi - echo "you said : [" $gdcmVersion "]" - done -echo -echo -echo -echo -echo "You said :" -echo " Operating System : $OperatingSystem" -echo " Name of the Generation Directory : $generationdir" -echo " Install Prefix : $installPrefix" -echo " Boolean For Doc Generation : $docgeneration" -echo " Where do you want to get source files from : $sourcesFrom" -if [ $sourcesFrom = CVS ] -then -echo " CVS User Name : $cvsUserName" -fi -echo " Login User Name : $linuxUserName" -echo " Login Group Name : $linuxGroupName" -echo " Build type : $buildType" -echo " Gdcm version : $gdcmVersion" -echo -echo -echo "Do you confirm your choices : YES/NO ? (default is NO)" -read confirm -done + installPrefix="___" + echo "Install Prefix for CreaTools : '$generationdir/creatools_install' / '/usr/local' (default is '$generationdir/creatools_install')" + read installPrefix + if [ "$installPrefix" = "" ] + then + installPrefix="$generationdir/creatools_install" + fi + echo "you said : [" $installPrefix "]" + echo + echo + # ------------------ + + docgeneration="___" + while [[ "$docgeneration" != "YES" && "$docgeneration" != "NO" ]] + do + echo "Boolean For Doc Generation : YES/NO (default is NO)" + read docgeneration + if [ "$docgeneration" = "" ] + then + docgeneration="NO" + fi + echo "you said : [" $docgeneration "]" + done + echo + echo + # ------------------ + + sourcesFrom="___" + while [[ "$sourcesFrom" != "CVS" && "$sourcesFrom" != "HTML" ]] + do + echo "Where do you want to get source files from : CVS/HTML (default is HTML)" + read sourcesFrom + if [ "$sourcesFrom" = "" ] + then + sourcesFrom="HTML" + fi + echo "you said : [" $sourcesFrom "]" + done + echo + echo + # ------------------ + + cvsUserName="" + if [ "$sourcesFrom" = "CVS" ] + then + while [ "$cvsUserName" == "" ] + do + echo "CVS User Name (mandatory!)" + read cvsUserName + done + echo "you said : [" $cvsUserName "]" + else + cvsUserName="ForgetThisOne" + fi + echo + echo + # ------------------ + + loginUserName="" + 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 + echo - # GROS SOUCIS : Ou creer le fichier CreaTools-configure.sh? + 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!)" + read loginGroupName + echo "you said : [" $loginGroupName "]" + done + echo + echo + # ------------------ + + buildType="___" + while [[ "$buildType" != "Release" && "$Debug " != "HTML" ]] + do + echo "Build type : Release/Debug (default is Release)" + read buildType + if [ "$buildType" = "" ] + then + buildType="Release" + fi + echo "you said : [" $buildType "]" + done + echo + echo + # ------------------ + + gdcmVersion="___" + while [[ "$gdcmVersion" != "GDCM1" && "$gdcmVersion " != "GDCM2" ]] + do + echo "Gdcm version : GDCM1/GDCM2 (default is GDCM1)" + read gdcmVersion + if [ "$gdcmVersion" = "" ] + then + gdcmVersion="GDCM1" + fi + echo "you said : [" $gdcmVersion "]" + done + echo + echo + echo + echo + echo "You said :" + echo " Operating System : $OperatingSystem" + echo " Name of the Generation Directory : $generationdir" + echo " Install Prefix for Third Party Libraries : $installPrefixThird" + echo " Install Prefix for CreaTools : $installPrefix" + echo " Boolean for Doc Generation : $docgeneration" + echo " Where do you want to get source files from : $sourcesFrom" + if [ $sourcesFrom = CVS ] + then + echo " CVS User Name : $cvsUserName" + fi + echo " Login User Name : $loginUserName" + echo " Login Group Name : $loginGroupName" + echo " Build type : $buildType" + echo " Gdcm version : $gdcmVersion" + echo + echo + echo "Do you confirm your choices : YES/NO ? (default is NO)" + read confirm + done + + # GROS SOUCIS : Ou generer le fichier CreaTools-configure.sh? # dans $generationdir/creatools_bin ? # -> il n'est pas encore cree ! # dans ./Linux/scripts? # -> ? -configureFile="scripts/CreaTools-configure.sh" -touch $configureFile -echo "#!/bin/sh" > $configureFile -echo >> $configureFile -echo "#File generated by 'menu.sh'" >> $configureFile -echo "#DO NOT edit !" >> $configureFile -echo "#(except if you *know* what you do)">> $configureFile -echo >> $configureFile -echo "OperatingSystem=$OperatingSystem" >> $configureFile -echo "generationdir=$generationdir" >> $configureFile -echo "installPrefix=$installPrefix" >> $configureFile -echo "docgeneration=$docgeneration" >> $configureFile -echo "sourcesFrom=$sourcesFrom" >> $configureFile -echo "cvsUserName=$cvsUserName" >> $configureFile -echo "loginUserName=$linuxUserName" >> $configureFile -echo "loginGroupName=$linuxGroupName" >> $configureFile -echo "buildType=$buildType" >> $configureFile -echo "gdcmVersion=$gdcmVersion" >> $configureFile + configureFile="scripts/CreaTools-configure.sh" + touch $configureFile + echo "#!/bin/sh" > $configureFile + echo >> $configureFile + echo "#File generated by 'menu.sh'" >> $configureFile + echo "#DO NOT edit !" >> $configureFile + echo "#(except if you *know* what you do)" >> $configureFile + echo >> $configureFile + echo "OperatingSystem=$OperatingSystem" >> $configureFile + echo "generationdir=$generationdir" >> $configureFile + echo "installPrefix=$installPrefix" >> $configureFile + echo "installPrefixThird=$installPrefixThird" >> $configureFile + echo "docgeneration=$docgeneration" >> $configureFile + echo "sourcesFrom=$sourcesFrom" >> $configureFile + echo "cvsUserName=$cvsUserName" >> $configureFile + echo "loginUserName=$loginUserName" >> $configureFile + echo "loginGroupName=$loginGroupName" >> $configureFile + echo "buildType=$buildType" >> $configureFile + echo "gdcmVersion=$gdcmVersion" >> $configureFile - # ------------------ -# endif 'suitable' -fi + # endif 'suitable' + fi ;; 1) - echo "========================== $i " + echo "========================== 1 " +#EED_missing_this_file source scripts/Check-if-root.sh + sh scripts/ThirdParty-install.sh vtkdirVariable="" while [ "$vtkdirVariable" = "" ] do - echo " Set VTK_DIR environment variable" - read vtkdirVariable + while [ ! -e "$vtkdirVariable" ] + do + echo + echo " --------------------------------" + echo " Set VTK_DIR environment variable" + echo " --------------------------------" + echo + read vtkdirVariable + if [ ! -e "$vtkdirVariable" ] + then + echo $vtkdirVariable is NOT a valid directory + fi + done done echo "you said [" $vtkdirVariable "]" @@ -283,8 +300,19 @@ fi latexCompilerVariable="" while [ "$latexCompilerVariable" = "" ] do - echo " Set LATEX_COMPILER environment variable" - read latexCompilerVariable + while [ ! -f "$latexCompilerVariable" ] + do + echo + echo " ---------------------------------------" + echo " Set LATEX_COMPILER environment variable" + echo " ---------------------------------------" + echo + read latexCompilerVariable + if [ ! -e "$latexCompilerVariable" ] + then + echo $latexCompilerVariable is NOT a valid file + fi + done done echo "you said [" $latexCompilerVariable "]" @@ -292,33 +320,68 @@ fi sed -i -e '/.*LATEX_COMPILER*/ d' /etc/bashrc echo "export VTK_DIR=$vtkdirVariable" >> /etc/bashrc echo "export LATEX_COMPILER=$latexCompilerVariable" >> /etc/bashrc + + if [ $sourcesFrom = CVS ] + then + echo "----------------------------------------------------------------------" + echo OK + echo "To go on, run again 'sh menu.sh' as '$loginUserName', in a new window" + echo "---------------------------------------------------------------------" + exit 0 + else + echo "----------------------------------------------------------------------" + echo OK + echo "To go on, run again 'sh menu.sh' in a new window" + echo "---------------------------------------------------------------------" + exit 0 + fi - echo "------------------------------------" + echo "---------------------------------------------------------" echo OK echo "To go on, run again 'sh menu.sh' as root, in a new window" - echo "------------------------------------" + echo "---------------------------------------------------------" exit 0 ;; - + 2) - echo "========================== $i" + echo "========================== 2" + sh scripts/CreaTools-load.sh + ;; + + 3) + echo "========================== 3" + source scripts/CreaTools-configure.sh sh scripts/CreaTools-compile.sh - # To allow (very aware) user to patch code - chown -R $generationdir/creatools_source $linuxUserName - chgrp -R $generationdir/creatools_source $linuxGroupName + # To allow (*very* aware) user to patch code, later + + chown -R $loginUserName $generationdir/creatools_source + chgrp -R $loginGroupName $generationdir/creatools_source # Too much time consuming - #chown -R $generationdir/creatools_source $linuxUserName - #chgrp -R $generationdir/creatools_source $linuxGroupName + #chown -R $loginUserName $generationdir/creatools_source + #chgrp -R $loginGroupName $generationdir/creatools_source ;; - 3) - echo "========================= $i" + 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 + echo "========================= 4" sh scripts/CreaTools-install.sh ;; - 4) - echo "========================= $i" + 5) + echo "========================= 5" sh scripts/CreaTools-uninstall.sh ;; @@ -327,9 +390,9 @@ fi ;; *) - echo "Your answer must be in {0, 1, 2, 3, 4, 9} (was $i)" + echo "Your answer must be in {0, 1, 2, 3, 4, 5, 9} (was [ $i ])" ;; esac done -fi +