source: XIOS/extract_xios @ 1205

Last change on this file since 1205 was 368, checked in by ymipsl, 12 years ago

correction : port extractor on AIX/IBM system

YM

  • Property svn:executable set to *
File size: 4.0 KB
RevLine 
[244]1#!/bin/bash
2
3compil_mode="prod"
4svnbranch="/trunk"
5doc="F"
6extdir="."
7
[246]8interactive=false
9
10has_interactive=false
11has_rev=false
12has_user=false
13has_branch=false
14has_compil_mode=false
15has_arch=false
16has_doc=false
17has_extdir=false
18
19
[304]20echo -e "Installing XIOS library... "
[244]21
22# Traitement de la ligne de commande
23while (($# > 0))
24   do
25      case $1 in
26         "-h")
27            # A modifier
28            exit;;
[246]29         "--interactive") interactive=true    ; has_interactive=true; shift ;;
30         "--rev")         svnrev=$2           ; has_rev="true"; shift; shift ;;
31         "--user")        svnuser=$2          ; has_user="true"; shift; shift ;;
32         "--branch")      svnbranch=$2        ; has_branch="true"; shift; shift ;;
33         "--prod")        compil_mode="prod"  ; has_compil_mode="true"; shift ;;
34         "--dev")         compil_mode="dev"   ; has_compil_mode="true"; shift ;;
35         "--debug")       compil_mode="debug" ; has_compil_mode="true"; shift ;;
36         "--arch")        arch=$2             ; has_arch="true"; shift; shift ;;
37         "--doc")         withdoc="Y"         ; has_doc="true"; shift ;;
38         *)               extdir="$1"           ; has_extdir=true; shift ;;
[244]39      esac
40   done
41
42# Récupération du répertoire local d'installation
[246]43if  [[  $interactive == "true" && $has_extdir == "false"  ]]
44   then
[304]45      read -p "insert directory path to extract XIOS library : "$PWD"/" extdir
[244]46fi
[246]47
[244]48install_dir=$PWD/$extdir
[368]49mkdir -p $install_dir
[244]50
51# Documentation de la distribution
[246]52if  [[ $interactive == "true" && $has_doc == "false" ]]
53   then
[304]54      read -p "Do you want to extract documentation ? [Y/N]: " withdoc
[244]55fi
56
57# Architecture de compilation
[246]58if  [[ $interactive == "true" && $has_arch == "false" ]]
59   then
[304]60      echo -e "\r\n XIOS may be install on different computing architecture, choose witch one...\r\n "
61      echo -e "\tIA64_PLATINE        => Configuration for CCRT supercomputer Platine\r\n"
62      echo -e "\tX86_LOCGNU_FEDORA   => Local configuration for gnu compiler under fedora\r\n"
63      echo -e "\tX86_LOCINTEL_FEDORA => Local configuration for intel compiler under fedora \r\n"
64      echo -e "\tX64_TITANE          => Configuration for CCRT supercomputer Titane \r\n"
[250]65     
[304]66      read -p "On which architecture do you want to work ? (default : none): " arch
[244]67fi
68
69case $arch in
70   IA64_PLATINE)       
[304]71      echo "=> Configuration for CCRT supercomputer Platine" ;;
[244]72   X86_LOCGNU_FEDORA)   
[304]73      echo "=> Local configuration for gnu compiler under fedora" ;;
[244]74   X86_LOCINTEL_FEDORA) 
[304]75      echo "=> Local configuration for intel compiler under fedora" ;;
[250]76   X64_TITANE) 
[304]77      echo "=> Configuration for CCRT supercomputer Titane " ;;
[244]78   *)                   
[304]79      echo "=> no specific architecture choosen"
[244]80      arch=
81esac
82
83# Récupération du login de connexion svn
[246]84if  [[ $interactive == "true" && $has_user  == "false" ]]
85   then
[304]86      echo -e -n "insert your svn login"
87      read -p " forge.ipsl.jussieu.fr (nothing if anonymous) : " svnuser
[244]88fi
89
90# Récupération de la branche svn de travail
[246]91if  [[ $interactive == "true" && $has_branch == "false" ]]
92   then
[304]93      read -p "Which branch do tou want to extract ? (default : /trunk): " svnbranch
[244]94fi
95
96if [[ -z $svnbranch ]]
97   then
98      svnbranch="/trunk"
99fi
100
101if [[ -z $svnuser ]]
102   then
[307]103      connect="http://forge.ipsl.jussieu.fr/ioserver/svn/XIOS"$svnbranch
[244]104   else
[307]105      connect="svn+ssh://"$svnuser"@forge.ipsl.jussieu.fr/ipsl/forge/projets/ioserver/svn/XIOS"$svnbranch
[244]106fi
107
108# Extraction de la distribution
[304]109echo -e "=> Connecting to svn server via \""$connect"\"..."
[244]110
111
[246]112if [[ $withdoc == [Yy]* ]]
[244]113   then
114      installopt=$installopt" --doc"
115fi
116
[246]117svn -q co $connect  $install_dir
[244]118
[304]119echo -e "- uncompress archives ..."
[244]120cd $install_dir
121for tarname in $install_dir/tools/archive/*.tar.gz; do
[368]122   gunzip -f "$tarname"
123   tar -xf ${tarname%.gz}
[244]124done
125
126if [[ !(-z $arch) && -f $install_dir/make_xios ]]
127   then
[304]128      echo -e "Running installation script for architecture \""$arch"\" ..."
[244]129      installopt=$installopt" --"$compil_mode" --arch "$arch
130      cd $install_dir && ./make_xios $installopt
131fi
132
133
Note: See TracBrowser for help on using the repository browser.