]> Creatis software - creaToolsTools.git/blob - Linux/scripts/ThirdParty-install-Base-Stuff.sh
Added the installation of wget for Fedora.
[creaToolsTools.git] / Linux / scripts / ThirdParty-install-Base-Stuff.sh
1 #!/bin/bash
2
3  if [ ! -f $PWD/scripts/CreaTools-configure.sh ]
4  then 
5    echo
6    echo "..ERROR.."
7    echo "==================================================="
8    echo "REMEMBER !"
9    echo ""
10    echo "YOU NEED TO RUN 'Configure' (0) First !"
11    echo "==================================================="
12    echo
13    echo
14    exit 0
15 fi
16
17 source $PWD/scripts/CreaTools-configure.sh
18
19 scriptDir=$PWD
20 sourcesDir=$generationdir/thirdparty_sources
21 binDir=$generationdir/thirdparty_bin
22
23 if [ ! -e $generationdir ]
24 then
25    mkdir $generationdir
26    chown $loginUserName  $generationdir
27    chgrp $loginGroupName $generationdir
28 fi
29
30 if [ ! -e $sourcesDir ]
31 then
32    mkdir $sourcesDir
33    #was : (pb on MacOS?)
34    #chown $loginUserName:$loginGroupName $sourcesDir
35    chown $loginUserName  $sourcesDir
36    chgrp $loginGroupName $sourcesDir
37 fi
38
39 if [ ! -e $binDir ]
40 then
41    mkdir $binDir
42    chown $loginUserName  $binDir
43    chgrp $loginGroupName $binDir
44 fi
45
46 # the following stupid test is used at debug time; Please don't remove!
47 if [ true = true ]
48 #if [ true = false ]
49 then
50   # ///\TODO what about SuSE? Debian? Mandriva? Gentoo?
51   case "$OperatingSystem" in
52   Fedora)
53      yum install wget                 -y
54      yum install cmake                -y
55      yum install cmake-gui            -y
56      yum install doxygen              -y
57      yum install graphviz             -y
58      yum install texlive              -y
59      yum install latex2html           -y
60      yum install wxGTK-devel wxBase   -y
61      yum install boost-devel          -y
62      yum install sqlite-devel         -y
63      yum install qt-devel             -y
64      yum install mesa-libOSMesa-devel -y
65      yum install gcc                  -y
66      yum install gcc-c++              -y
67      yum install xerces-c-devel       -y
68      yum install cvs                  -y
69      yum install qtwebkit-devel       -y
70
71      ;;
72   Ubuntu)
73      apt-get --yes install build-essential  # esta linea instala las librerias necesarias para compilar en ubuntu, g++ gcc etc etc etc.
74      apt-get --yes install cmake
75      apt-get --yes install cmake-gui
76      apt-get --yes install cmake-curses-gui
77      apt-get --yes install doxygen
78      apt-get --yes install graphviz
79      apt-get --yes install texlive
80      apt-get --yes install latex2html
81      apt-get --yes install libgtk2.0-dev #GTK
82      apt-get --yes install libwxgtk2.8-dev #Wx GTK
83      apt-get --yes install libwxbase2.8-dev #Wx solito
84      apt-get --yes install wx-common #wxrc
85      apt-get --yes install libboost-dev  #Boost
86      apt-get --yes install libboost-all-dev #Boost
87      apt-get --yes install libqt4-dev #QT4
88      ## CLAIRE - JGRR
89      apt-get --yes install qt4-qmake #QT4 qmake
90      apt-get --yes install libsqlite0-dev
91      apt-get --yes install libsqlite3-dev
92      apt-get --yes install libosmesa6-dev #Mesa6
93      apt-get --yes install uuid-dev # uuid para la instalacion de itk
94      apt-get --yes install libxaw7-dev # X11
95      ;;
96   MacOS)
97      port selfupdate
98      port install cmake                -y
99      port install doxygen              -y
100      port install graphviz             -y
101     # port install tetex               -y   (replaced by texlive) # cf EED : http://www.creatis.insa-lyon.fr/site/fr/CreatoolsInstallInstructionsv2.0.1MacOsv10.5.6-Developpers
102      port install texlive              -y
103      port install latex2html           -y
104      port install wxGTK                -y
105      port install boost                -y
106      ln -s libboost_signals-xgcc40-mt-1_38.dylib    libboost_signals.dylib    /opt/local/lib # cf EED : http://www.creatis.insa-lyon.fr/site
107      ln -s libboost_signals-xgcc40-mt-1_38.dylib    libboost_signals.dylib    /opt/local/lib # cf EED
108      ln -s libboost_filesystem-xgcc40-mt-1_38.dylib libboost_filesystem.dylib /opt/local/lib # cf EE
109      ln -s libboost_system-xgcc40-mt-1_38.dylib     libboost_system.dylib     /opt/local/lib # cf EE 
110      port install sqlite3              -y
111      port install qt4-mac              -y
112      ln -s qmake-mac qmake /opt/local/bin  # cf EED
113      port install mesa                 -y
114      ;;
115   *)
116      echo " '$OperatingSystem' : Unknown (for us...) Operating Sytem "
117      echo " Allowed values are (right now) Fedora, Ubuntu, MacOS "
118      exit 0
119      ;;
120   esac
121 fi