Changes between Version 13 and Version 14 of DavesFedoraCmakeBuildNotes


Ignore:
Timestamp:
Nov 19, 2011, 7:46:35 AM (13 years ago)
Author:
dburken
Comment:

--

Legend:

Unmodified
Added
Removed
Modified
  • DavesFedoraCmakeBuildNotes

    v13 v14  
    9292// Get/build libtiff[[BR]]
    9393$ cd /work/osgeo[[BR]]
    94 $ cvs -d :pserver:cvsanon@cvs.maptools.org:/cvs/maptools/cvsroot co libtiff
     94$ cvs -d :pserver:cvsanon@cvs.maptools.org:/cvs/maptools/cvsroot co libtiff[[BR]]
     95$ cd libtiff[[BR]]
     96// Make a configure script[[BR]]
     97$ xemacs mylibtiffconfig.sh [[BR]]
     98// Contents of script:[[BR]]
     99
     100{{{
     101#!/bin/sh
     102
     103# File: mylibtiffconfig.sh
     104prefix=/work/osgeo/local
     105
     106./configure --prefix=${prefix}
     107
     108}}}
     109
     110// Make the script executable:[[BR]]
     111$ chmod 755 mylibtiffconfig.sh
     112
     113// Run the cmake command to set up the build system:[[BR]]
     114$ ./mylibtiffconfig.sh
     115
     116// Make - note the "-j 4" is to use 4 threads.  I have a quad core cpu.[[BR]]
     117$ make -j 4
     118
     119// Install to sandbox:[[BR]]
     120$ make install // Note if your sandbox was on a system slice, i.e. /usr/local you would do: "sudo make install"
     121
     122// End of libtiff
    95123
    96124// Get geotiff:[[BR]]
    97125$ mkdir /work/osgeo/geotiff[[BR]]
    98126$ cd !$[[BR]]
    99 svn co http://svn.osgeo.org/metacrs/geotiff/trunk/libgeotiff libgeotiff
     127svn co http://svn.osgeo.org/metacrs/geotiff/trunk/libgeotiff libgeotiff[[BR]]
     128
    100129
    101130// Get gdal:[[BR]]