source: issm/oecreview/Archive/13393-13976/ISSM-13850-13851.diff@ 16557

Last change on this file since 16557 was 13980, checked in by Mathieu Morlighem, 12 years ago

preparing oecreview for 13393-13976'

File size: 8.0 KB
  • ../trunk-jpl/externalpackages/gdal/install.sh

     
    1 #!/bin/bash
    2 set -eu
    3 
    4 #Some cleanup
    5 rm -rf src
    6 rm -rf install
    7 rm -rf gdal-1.6.0
    8 mkdir src install
    9 
    10 #Download from ISSM server
    11 $ISSM_DIR/scripts/DownloadExternalPackage.py 'http://issm.jpl.nasa.gov/files/externalpackages/gdal-1.6.0.tar.gz' 'gdal-1.6.0.tar.gz'
    12 
    13 #Untar
    14 tar -zxvf  gdal-1.6.0.tar.gz
    15 
    16 #Move gdal into src directory
    17 mv gdal-1.6.0/* src
    18 rm -rf gdal-1.6.0
    19 
    20 #Configure gdal
    21 cd src
    22 ./configure \
    23         --prefix="$ISSM_DIR/externalpackages/gdal/install" \
    24         --without-python \
    25         --without-png \
    26         --with-netcdf=no \
    27         --with-jasper=no \
    28         --without-ld-shared \
    29         --with-unix-stdio-64=no \
    30         --with-expat-lib=/usr/lib64/libexpat.so
    31 
    32 #Patch GDALmake.opt
    33 patch GDALmake.opt ../GDALmake.opt.patch
    34 
    35 #Compile and install gdal
    36 if [ $# -eq 0 ]; then
    37         make
    38 else
    39         make -j $1
    40 fi
    41 make install
  • ../trunk-jpl/externalpackages/gdal/install-murdo.sh

     
    1 #!/bin/bash
    2 set -eu
    3 
    4 #Some cleanup
    5 rm -rf src
    6 rm -rf install
    7 rm -rf gdal-1.6.0
    8 mkdir src install
    9 
    10 #Download from ISSM server
    11 $ISSM_DIR/scripts/DownloadExternalPackage.py 'http://issm.jpl.nasa.gov/files/externalpackages/gdal-1.6.0.tar.gz' 'gdal-1.6.0.tar.gz'
    12 
    13 #Untar
    14 tar -zxvf  gdal-1.6.0.tar.gz
    15 
    16 #Move gdal into src directory
    17 mv gdal-1.6.0/* src
    18 rm -rf gdal-1.6.0
    19 
    20 #Configure gdal
    21 cd src
    22 ./configure --prefix="$ISSM_DIR/externalpackages/gdal/install" \
    23         --without-python \
    24         --without-png \
    25         --with-netcdf=no \
    26         --with-jasper=no \
    27         --without-ld-shared \
    28         --with-unix-stdio-64=no
    29 
    30 #Patch GDALmake.opt
    31 patch GDALmake.opt ../GDALmake.opt.patch
    32 
    33 #Compile and install gdal
    34 if [ $# -eq 0 ]; then
    35         make
    36 else
    37         make -j $1
    38 fi
    39 make install
  • ../trunk-jpl/externalpackages/gdal/install_astrid.sh

     
    1 #!/bin/bash
    2 set -eu
    3 
    4 #Some cleanup
    5 rm -rf src
    6 rm -rf install
    7 rm -rf gdal-1.6.0
    8 mkdir src install
    9 
    10 #Download from ISSM server
    11 $ISSM_DIR/scripts/DownloadExternalPackage.py 'http://issm.jpl.nasa.gov/files/externalpackages/gdal-1.6.0.tar.gz' 'gdal-1.6.0.tar.gz'
    12 
    13 #Untar
    14 tar -zxvf  gdal-1.6.0.tar.gz
    15 
    16 #Move gdal into src directory
    17 mv gdal-1.6.0/* src
    18 rm -rf gdal-1.6.0
    19 
    20 #Configure gdal
    21 cd src
    22 ./configure \
    23         --prefix="$ISSM_DIR/externalpackages/gdal/install" \
    24         --without-python \
    25         --without-png \
    26         --with-netcdf=no \
    27         --with-jasper=no \
    28         --without-ld-shared \
    29         --with-unix-stdio-64=no \
    30         --with-expat-lib=/usr/lib64/libexpat.so
    31 
    32 #Patch GDALmake.opt
    33 patch GDALmake.opt ../GDALmake.opt.patch.astrid
    34 
    35 #Compile and install gdal
    36 if [ $# -eq 0 ]; then
    37         make
    38 else
    39         make -j $1
    40 fi
    41 make install
  • ../trunk-jpl/externalpackages/gdal/install_macosx.sh

     
    1 #!/bin/bash
    2 set -eu
    3 
    4 #Some cleanup
    5 rm -rf src
    6 rm -rf install
    7 rm -rf gdal-1.6.0
    8 mkdir src install
    9 
    10 #Download from ISSM server
    11 $ISSM_DIR/scripts/DownloadExternalPackage.py 'http://issm.jpl.nasa.gov/files/externalpackages/gdal-1.6.0.tar.gz' 'gdal-1.6.0.tar.gz'
    12 
    13 #Untar
    14 tar -zxvf  gdal-1.6.0.tar.gz
    15 
    16 #Move gdal into src directory
    17 mv gdal-1.6.0/* src
    18 rm -rf gdal-1.6.0
    19 
    20 #Configure gdal
    21 cd src
    22 ./configure \
    23         --prefix="$ISSM_DIR/externalpackages/gdal/install" \
    24         --without-python \
    25         --without-png \
    26         --with-netcdf=no \
    27         --with-jasper=no \
    28         --without-ld-shared \
    29         --with-unix-stdio-64=no \
    30         --with-expat-lib=/usr/lib64/libexpat.so
    31 
    32 #Patch GDALmake.opt
    33 #patch GDALmake.opt ../GDALmake.opt.patch
    34 
    35 #Compile and install gdal
    36 if [ $# -eq 0 ]; then
    37         make
    38 else
    39         make -j $1
    40 fi
    41 make install
  • ../trunk-jpl/externalpackages/gdal/install-macosx64.sh

     
     1#!/bin/bash
     2set -eu
     3
     4#Some cleanup
     5rm -rf src
     6rm -rf install
     7rm -rf gdal-1.6.0
     8mkdir src install
     9
     10#Download from ISSM server
     11$ISSM_DIR/scripts/DownloadExternalPackage.py 'http://issm.jpl.nasa.gov/files/externalpackages/gdal-1.6.0.tar.gz' 'gdal-1.6.0.tar.gz'
     12
     13#Untar
     14tar -zxvf  gdal-1.6.0.tar.gz
     15
     16#Move gdal into src directory
     17mv gdal-1.6.0/* src
     18rm -rf gdal-1.6.0
     19
     20#Configure gdal
     21cd src
     22./configure \
     23        --prefix="$ISSM_DIR/externalpackages/gdal/install" \
     24        --without-python \
     25        --without-png \
     26        --with-netcdf=no \
     27        --with-jasper=no \
     28        --without-ld-shared \
     29        --with-unix-stdio-64=no \
     30        --with-expat-lib=/usr/lib64/libexpat.so
     31
     32#Compile and install gdal
     33if [ $# -eq 0 ]; then
     34        make
     35else
     36        make -j $1
     37fi
     38make install
  • ../trunk-jpl/externalpackages/gdal/install-linux64-astrid.sh

    Property changes on: ../trunk-jpl/externalpackages/gdal/install-macosx64.sh
    ___________________________________________________________________
    Added: svn:executable
    ## -0,0 +1 ##
    +*
     
     1#!/bin/bash
     2set -eu
     3
     4#Some cleanup
     5rm -rf src
     6rm -rf install
     7rm -rf gdal-1.6.0
     8mkdir src install
     9
     10#Download from ISSM server
     11$ISSM_DIR/scripts/DownloadExternalPackage.py 'http://issm.jpl.nasa.gov/files/externalpackages/gdal-1.6.0.tar.gz' 'gdal-1.6.0.tar.gz'
     12
     13#Untar
     14tar -zxvf  gdal-1.6.0.tar.gz
     15
     16#Move gdal into src directory
     17mv gdal-1.6.0/* src
     18rm -rf gdal-1.6.0
     19
     20#Configure gdal
     21cd src
     22./configure \
     23        --prefix="$ISSM_DIR/externalpackages/gdal/install" \
     24        --without-python \
     25        --without-png \
     26        --with-netcdf=no \
     27        --with-jasper=no \
     28        --without-ld-shared \
     29        --with-unix-stdio-64=no \
     30        --with-expat-lib=/usr/lib64/libexpat.so
     31
     32#Patch GDALmake.opt
     33patch GDALmake.opt ../GDALmake.opt.patch.astrid
     34
     35#Compile and install gdal
     36if [ $# -eq 0 ]; then
     37        make
     38else
     39        make -j $1
     40fi
     41make install
  • ../trunk-jpl/externalpackages/gdal/install-linux64-murdo.sh

    Property changes on: ../trunk-jpl/externalpackages/gdal/install-linux64-astrid.sh
    ___________________________________________________________________
    Added: svn:executable
    ## -0,0 +1 ##
    +*
     
     1#!/bin/bash
     2set -eu
     3
     4#Some cleanup
     5rm -rf src
     6rm -rf install
     7rm -rf gdal-1.6.0
     8mkdir src install
     9
     10#Download from ISSM server
     11$ISSM_DIR/scripts/DownloadExternalPackage.py 'http://issm.jpl.nasa.gov/files/externalpackages/gdal-1.6.0.tar.gz' 'gdal-1.6.0.tar.gz'
     12
     13#Untar
     14tar -zxvf  gdal-1.6.0.tar.gz
     15
     16#Move gdal into src directory
     17mv gdal-1.6.0/* src
     18rm -rf gdal-1.6.0
     19
     20#Configure gdal
     21cd src
     22./configure --prefix="$ISSM_DIR/externalpackages/gdal/install" \
     23        --without-python \
     24        --without-png \
     25        --with-netcdf=no \
     26        --with-jasper=no \
     27        --without-ld-shared \
     28        --with-unix-stdio-64=no
     29
     30#Patch GDALmake.opt
     31patch GDALmake.opt ../GDALmake.opt.patch
     32
     33#Compile and install gdal
     34if [ $# -eq 0 ]; then
     35        make
     36else
     37        make -j $1
     38fi
     39make install
Note: See TracBrowser for help on using the repository browser.