[mapguide-commits] r4932 - trunk/Installer/scripts

svn_mapguide at osgeo.org svn_mapguide at osgeo.org
Thu May 27 18:44:11 EDT 2010


Author: trevorwekel
Date: 2010-05-27 18:44:10 -0400 (Thu, 27 May 2010)
New Revision: 4932

Modified:
   trunk/Installer/scripts/mginstallubuntu.sh
Log:
Ticket #1295 Improve build scripts for 2.2 release cycle
- Additional fixes for Ubuntu install script to account for Apache upgrade


Modified: trunk/Installer/scripts/mginstallubuntu.sh
===================================================================
--- trunk/Installer/scripts/mginstallubuntu.sh	2010-05-27 20:32:19 UTC (rev 4931)
+++ trunk/Installer/scripts/mginstallubuntu.sh	2010-05-27 22:44:10 UTC (rev 4932)
@@ -1,15 +1,15 @@
 #!/bin/bash
 TEMPDIR=/tmp/build_mapguide
-URL="http://download.osgeo.org/mapguide/testing"
-FDOVER=3.5.0-5343_i386
-MGVER=2.2.0-4724_i386
+URL="http://download.osgeo.org/mapguide/releases/2.2.0"
+FDOVER=3.5.0-5460_i386
+MGVER=2.2.0-4898_i386
 MAESTROVER=2.0.0-4650_i386
 # Create temporary download directory
 mkdir -p ${TEMPDIR}
 pushd ${TEMPDIR}
 
 # Install required packages 
-apt-get -y install libexpat1 libssl0.9.8 odbcinst1debian1 unixodbc libcurl3
+apt-get -y install libexpat1 libssl0.9.8 odbcinst1debian1 unixodbc libcurl3 libxslt1.1
 apt-get -y install mono-runtime libmono-winforms2.0-cil
 apt-get -y install libmysqlclient15off
 
@@ -26,6 +26,15 @@
   ln -s /lib/libexpat.so.1.5.2 /lib/libexpat.so.0
 fi
 
+if [ ! -e /usr/lib/libldap-2.3.so.0 ]; then
+  ln -s /usr/lib/libldap-2.4.so.2 /usr/lib/libldap-2.3.so.0
+fi
+
+if [ ! -e /usr/lib/liblber-2.3.so.0 ]; then
+  ln -s /usr/lib/liblber-2.4.so.2 /usr/lib/liblber-2.3.so.0
+fi
+
+
 # Download Ubuntu packages for FDO
 for file in core gdal kingoracle ogr postgis rdbms sdf shp sqlite wfs wms
 do



More information about the mapguide-commits mailing list