[postgis-commits] svn - r3833 - trunk/doc

postgis-commits at postgis.refractions.net postgis-commits at postgis.refractions.net
Tue Mar 10 10:24:26 PDT 2009


Author: mcayland
Date: 2009-03-10 10:24:25 -0700 (Tue, 10 Mar 2009)
New Revision: 3833

Modified:
   trunk/doc/installation.xml
   trunk/doc/postgis.xml
Log:
Some documentation updates; change the instructions for decompressing the tarballs for PROJ and GEOS so that they work for our Solaris friends (as per the instructions for the main PostGIS tarball). Also move version entities for GEOS and PROJ into postgis.xml, so that as newer versions of PROJ/GEOS are released, we only need to update the version number in one location for the change to be reflected throughout the installation documentation.


Modified: trunk/doc/installation.xml
===================================================================
--- trunk/doc/installation.xml	2009-03-10 16:35:00 UTC (rev 3832)
+++ trunk/doc/installation.xml	2009-03-10 17:24:25 UTC (rev 3833)
@@ -163,9 +163,9 @@
 		
 		<listitem>
 			<para>If you are missing proj based on above or running a version below 4.5, then install by following these steps.</para>
-			<programlisting>wget http://download.osgeo.org/proj/proj-4.6.0.tar.gz
-tar xvzf proj-4.6.0.tar.gz
-cd proj-4.6.0
+			<programlisting>wget http://download.osgeo.org/proj/proj-&last_proj_release_version;.tar.gz
+gzip -d -c proj-&last_proj_release_version;.tar.gz | tar xvf -
+cd proj-&last_proj_release_version;
 ./configure &amp;&amp; make clean &amp;&amp; make
 make install
 ldconfig
@@ -174,9 +174,9 @@
 		
 		<listitem>
 			<para>If you are missing geos based on above or running a version below 3.0, then install by following these steps.</para>
-			<programlisting>wget http://download.osgeo.org/geos/geos-3.0.3.tar.bz2
-tar xvjf geos-3.0.3.tar.bz2
-cd geos-3.0.3
+			<programlisting>wget http://download.osgeo.org/geos/geos-&last_geos_release_version;.tar.bz2
+bunzip2 -d -c geos-&last_geos_release_version;.tar.bz2 | tar xvf -
+cd geos-&last_geos_release_version;
 ./configure &amp;&amp; make clean &amp;&amp; make
 make install
 ldconfig

Modified: trunk/doc/postgis.xml
===================================================================
--- trunk/doc/postgis.xml	2009-03-10 16:35:00 UTC (rev 3832)
+++ trunk/doc/postgis.xml	2009-03-10 17:24:25 UTC (rev 3833)
@@ -2,7 +2,13 @@
 <!DOCTYPE book PUBLIC "-//OASIS//DTD DocBook XML V4.3//EN"
 "http://www.oasis-open.org/docbook/xml/4.3/docbookx.dtd" [
 
+<!-- This value is automatically generated by the Makefile -->
 <!ENTITY last_release_version "@@LAST_RELEASE_VERSION@@">
+
+<!-- Change these values to update the version numbers referenced within the documentation -->
+<!ENTITY last_proj_release_version "4.6.1">
+<!ENTITY last_geos_release_version "3.0.3">
+
 <!ENTITY introduction SYSTEM "introduction.xml">
 <!ENTITY installation SYSTEM "installation.xml">
 <!ENTITY faq SYSTEM "faq.xml">



More information about the postgis-commits mailing list