]> Creatis software - creaToolsTools.git/blob - Linux/scripts/ThirdParty-install-Base-rpm.sh
141db32cc0eb4b81cb138458f402c3d8d7e609cb
[creaToolsTools.git] / Linux / scripts / ThirdParty-install-Base-rpm.sh
1
2 # ---------------------------------------------------------------------
3 #
4 # Copyright (c) CREATIS (Centre de Recherche en Acquisition et Traitement de l'Image 
5 #                        pour la Santé)
6 # Authors : Eduardo Davila, Frederic Cervenansky, Claire Mouton
7 #
8 #  This software is governed by the CeCILL-B license under French law and 
9 #  abiding by the rules of distribution of free software. You can  use, 
10 #  modify and/ or redistribute the software under the terms of the CeCILL-B 
11 #  license as circulated by CEA, CNRS and INRIA at the following URL 
12 #  http://www.cecill.info/licences/Licence_CeCILL-B_V1-en.html 
13 #  or in the file LICENSE.txt.
14 #
15 #  As a counterpart to the access to the source code and  rights to copy,
16 #  modify and redistribute granted by the license, users are provided only
17 #  with a limited warranty  and the software's author,  the holder of the
18 #  economic rights,  and the successive licensors  have only  limited
19 #  liability. 
20 #
21 #  The fact that you are presently reading this means that you have had
22 #  knowledge of the CeCILL-B license and that you accept its terms.
23 # ------------------------------------------------------------------------  
24
25
26 #!/bin/bash
27
28 OperatingSystem=$1
29 echo "OperatingSystem = $OperatingSystem"
30
31 # the following stupid test is used at debug time; Please don't remove!
32 if [ true = true ]
33 #if [ true = false ]
34 then
35   # ///\TODO what about SuSE? Debian? Mandriva? Gentoo?
36   case "$OperatingSystem" in
37   Mandriva)
38      urpmi aria2
39      urpmi cmake                
40      urpmi cmake-qtgui            
41      urpmi doxygen              
42      urpmi graphviz             
43      urpmi texlive              
44      urpmi latex2html           
45      urpmi libwxgtk2.8    
46      urpmi lib64wxgtk2.8    
47      urpmi boost-devel          
48      urpmi sqlite-devel         
49      urpmi qt4-common
50      urpmi libqt4-devel             
51      urpmi lib64qt4-devel             
52      #urpmi mesa-libOSMesa-devel 
53      urpmi lib64mesagl1-devel
54      urpmi libmesagl1-devel
55      urpmi lib64xt-devel
56      urpmi libxt-devel
57      urpmi lib64wxgtk2.8-devel
58      urpmi libwxgtk2.8-devel
59      urpmi gcc-c++
60      urpmi git
61      urpmi rpm-build
62      urpmi patch ### EED It's working ???
63
64      ;;
65   Fedora)
66      yum install aria2                -y
67      yum install wget                 -y
68      yum install unzip                -y
69      yum install cmake                -y
70      yum install cmake-gui            -y
71      yum install doxygen              -y
72      yum install graphviz             -y
73      yum install texlive              -y
74      yum install latex2html           -y
75      yum install wxGTK-devel wxBase   -y
76      yum install boost-devel          -y
77      yum install sqlite-devel         -y
78      yum install qt-devel             -y
79      yum install mesa-libOSMesa-devel -y
80      yum install gcc                  -y
81      yum install gcc-c++              -y
82      yum install xerces-c-devel       -y
83      yum install git                  -y
84      yum install qtwebkit-devel       -y
85      yum install patch                -y
86
87      ;;
88   Ubuntu)
89      apt-get --yes install aria2
90      apt-get --yes install build-essential  # esta linea instala las librerias necesarias para compilar en ubuntu, g++ gcc etc etc etc.
91      apt-get --yes install git
92      apt-get --yes install cmake
93      apt-get --yes install cmake-gui
94      apt-get --yes install cmake-curses-gui
95      apt-get --yes install doxygen
96      apt-get --yes install graphviz
97      apt-get --yes install texlive
98      apt-get --yes install latex2html
99      apt-get --yes install libgtk2.0-dev #GTK
100      apt-get --yes install libwxgtk2.8-dev #Wx GTK
101      apt-get --yes install libwxbase2.8-dev #Wx solito
102      apt-get --yes install wx-common #wxrc
103      apt-get --yes install libboost-dev  #Boost
104      apt-get --yes install libboost-all-dev #Boost
105      apt-get --yes install libqt4-dev #QT4
106      apt-get --yes install libxerces-c-dev
107      apt-get --yes install patch
108      ## CLAIRE - JGRR
109      apt-get --yes install qt4-qmake #QT4 qmake
110      apt-get --yes install libsqlite0-dev
111      apt-get --yes install libsqlite3-dev
112      apt-get --yes install libosmesa6-dev #Mesa6
113      apt-get --yes install uuid-dev # uuid para la instalacion de itk
114      apt-get --yes install libxaw7-dev # X11
115      ;;
116   MacOS)
117      port selfupdate
118      port install cmake                -y
119      port install doxygen              -y
120      port install graphviz             -y
121     # port install tetex               -y   (replaced by texlive) # cf EED : http://www.creatis.insa-lyon.fr/site/fr/CreatoolsInstallInstructionsv2.0.1MacOsv10.5.6-Developpers
122      port install texlive              -y
123      port install latex2html           -y
124      port install wxGTK                -y
125      port install boost                -y
126      ln -s libboost_signals-xgcc40-mt-1_38.dylib    libboost_signals.dylib    /opt/local/lib # cf EED : http://www.creatis.insa-lyon.fr/site
127      ln -s libboost_signals-xgcc40-mt-1_38.dylib    libboost_signals.dylib    /opt/local/lib # cf EED
128      ln -s libboost_filesystem-xgcc40-mt-1_38.dylib libboost_filesystem.dylib /opt/local/lib # cf EE
129      ln -s libboost_system-xgcc40-mt-1_38.dylib     libboost_system.dylib     /opt/local/lib # cf EE 
130      port install sqlite3              -y
131      port install qt4-mac              -y
132      ln -s qmake-mac qmake /opt/local/bin  # cf EED
133      port install mesa                 -y
134      ;;
135   *)
136      echo " '$OperatingSystem' : Unknown (for us...) Operating Sytem "
137      echo " Allowed values are (right now) Fedora, Ubuntu, MacOS "
138      exit 0
139      ;;
140   esac
141 fi