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