Ticket #13837: 13837.diff

File 13837.diff, 1.4 KB (added by Horst Gutmann, 14 years ago)

Update to the original patch

  • docs/ref/contrib/gis/install.txt

    diff --git a/docs/ref/contrib/gis/install.txt b/docs/ref/contrib/gis/install.txt
    index 0b79543..c2daa5e 100644
    a b For more details, please see the Debian instructions for :ref:`etch` below.  
    943943
    944944Use the synaptic package manager to install the following packages::
    945945
    946     $ sudo apt-get install binutils libgdal1-1.5.0 postgresql-8.3-postgis postgresql-server-dev-8.3 python-psycopg2 python-setuptools
     946    $ sudo apt-get install binutils libgdal1-1.5.0 postgresql-8.3-postgis \
     947        postgresql-server-dev-8.3 python-psycopg2 python-setuptools
    947948
    948949Afterwards, you may install Django with Python's ``easy_install`` script (the
    949950Ubuntu package ``python-django`` uses an older version missing several
    Optional packages to consider:  
    969970* ``gdal-bin``: for GDAL command line programs like ``ogr2ogr``
    970971* ``python-gdal`` for GDAL's own Python bindings -- includes interfaces for raster manipulation
    971972
     97310.04
     974~~~~~
     975
     976In Ubuntu 10.04 LTS PostgreSQL was upgraded to 8.4, as was GDAL, which is now
     977at version 1.6.0. Because of that, the package installation mentioned above
     978has to be slightly changed::
     979
     980        $ sudo apt-get install binutils libgdal1-1.6.0 postgresql-8.4-postgis \
     981        postgresql-server-dev-8.4 python-psycopg2 python-setuptools
     982
     983
    972984.. note::
    973985   
    974986    The Ubuntu ``proj`` package does not come with the datum shifting files
Back to Top