]> Creatis software - creaToolsTools.git/blob - Linux/scripts/ThirdParty-install-Base-Stuff.sh
DFCH: sudo apt-get install wx-common //ubuntu wxrc
[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 cmake                -y
54      yum install cmake-gui            -y
55      yum install doxygen              -y
56      yum install graphviz             -y
57      yum install texlive              -y
58      yum install latex2html           -y
59      yum install wxGTK-devel wxBase   -y
60      yum install boost-devel          -y
61      yum install sqlite-devel         -y
62      yum install qt-devel             -y
63      yum install mesa-libOSMesa-devel -y
64      ;;
65   Ubuntu)
66      apt-get --yes install build-essential  # esta linea instala las librerias necesarias para compilar en ubuntu, g++ gcc etc etc etc.
67      apt-get --yes install cmake
68      apt-get --yes install cmake-gui
69      apt-get --yes install cmake-curses-gui
70      apt-get --yes install doxygen
71      apt-get --yes install graphviz
72      apt-get --yes install texlive
73      apt-get --yes install latex2html
74      apt-get --yes install libgtk2.0-dev #GTK
75      apt-get --yes install libwxgtk2.8-dev #Wx GTK
76      apt-get --yes install libwxbase2.8-dev #Wx solito
77      apt-get --yes install wx-common #wxrc
78      apt-get --yes install libboost-dev  #Boost
79      apt-get --yes install libboost-all-dev #Boost
80      apt-get --yes install libqt4-dev #QT4
81      apt-get --yes install libsqlite0-dev
82      apt-get --yes install libsqlite3-dev
83      apt-get --yes install libosmesa6-dev #Mesa6
84      apt-get --yes install uuid-dev # uuid para la instalacion de itk
85      apt-get --yes install libxaw7-dev # X11
86      ;;
87   MacOS)
88      port selfupdate
89      port install cmake                -y
90      port install doxygen              -y
91      port install graphviz             -y
92     # port install tetex               -y   (replaced by texlive) # cf EED : http://www.creatis.insa-lyon.fr/site/fr/CreatoolsInstallInstructionsv2.0.1MacOsv10.5.6-Developpers
93      port install texlive              -y
94      port install latex2html           -y
95      port install wxGTK                -y
96      port install boost                -y
97      ln -s libboost_signals-xgcc40-mt-1_38.dylib    libboost_signals.dylib    /opt/local/lib # cf EED : http://www.creatis.insa-lyon.fr/site
98      ln -s libboost_signals-xgcc40-mt-1_38.dylib    libboost_signals.dylib    /opt/local/lib # cf EED
99      ln -s libboost_filesystem-xgcc40-mt-1_38.dylib libboost_filesystem.dylib /opt/local/lib # cf EE
100      ln -s libboost_system-xgcc40-mt-1_38.dylib     libboost_system.dylib     /opt/local/lib # cf EE 
101      port install sqlite3              -y
102      port install qt4-mac              -y
103      ln -s qmake-mac qmake /opt/local/bin  # cf EED
104      port install mesa                 -y
105      ;;
106   *)
107      echo " '$OperatingSystem' : Unknown (for us...) Operating Sytem "
108      echo " Allowed values are (right now) Fedora, Ubuntu, MacOS "
109      exit 0
110      ;;
111   esac
112 fi