[fdo-commits] r2455 - trunk

svn_fdo at osgeo.org svn_fdo at osgeo.org
Fri Feb 9 13:45:19 EST 2007


Author: gregboone
Date: 2007-02-09 13:45:18 -0500 (Fri, 09 Feb 2007)
New Revision: 2455

Modified:
   trunk/checkoutsvn.bat
   trunk/checkoutsvn.sh
Log:
Update FDO 3.3.0 build scripts

Modified: trunk/checkoutsvn.bat
===================================================================
--- trunk/checkoutsvn.bat	2007-02-09 16:36:17 UTC (rev 2454)
+++ trunk/checkoutsvn.bat	2007-02-09 18:45:18 UTC (rev 2455)
@@ -31,6 +31,7 @@
 SET ARCENABLECHK=no
 SET RDBMSENABLECHK=no
 SET GDALENABLECHK=no
+SET KINGENABLECHK=no
 
 if (%FDO_SVN_SOURCEDIR%)==() SET FDO_SVN_SOURCEDIR=trunk
 if (%FDO_SVN_DESTDIR%)==() SET FDO_SVN_DESTDIR=%cd%
@@ -84,6 +85,7 @@
 	SET RDBMSENABLECHK=no
 	SET UTILENABLECHK=no
 	SET GDALENABLECHK=no
+	SET KINGENABLECHK=no
 :stp0_get_with
 if not "%2"=="providers" goto stp1_get_with
 	SET FDOPROVIDERSENABLECHK=yes
@@ -103,6 +105,7 @@
 	SET ARCENABLECHK=no
 	SET RDBMSENABLECHK=no
 	SET GDALENABLECHK=no
+	SET KINGENABLECHK=no
 	goto next_param
 :stp2_get_with
 if not "%2"=="fdocore" goto stp3_get_with
@@ -148,9 +151,13 @@
 	SET RDBMSENABLECHK=yes
     goto next_param
 :stp12_get_with
-if not "%2"=="gdal" goto custom_error
+if not "%2"=="gdal" goto stp13_get_with
 	SET GDALENABLECHK=yes
     goto next_param
+:stp13_get_with
+if not "%2"=="king" goto custom_error
+	SET KINGENABLECHK=yes
+    goto next_param
 
 :get_source
 if (%2)==() goto custom_error
@@ -179,7 +186,8 @@
 if not exist "%FDO_SVN_DESTDIR%" mkdir "%FDO_SVN_DESTDIR%"
 
 :checkout_all
-if "%FDOALLENABLECHK%"=="no" goto checkout_core
+if "%FDOALLENABLECHK%"=="no" goto checkout_core
+echo Checking out https://osgeo.org/svn/fdo/%FDO_SVN_SOURCEDIR%
 svn checkout https://osgeo.org/svn/fdo/%FDO_SVN_SOURCEDIR% "%FDO_SVN_DESTDIR%" --username %FDO_SVN_USERNAME% --password %FDO_SVN_PASSWORD%
 if errorlevel 1 goto error
 
@@ -187,10 +195,13 @@
 
 :checkout_core
 if "%FDOCOREENABLECHK%"=="no" goto checkout_fdo
+echo Checking out https://osgeo.org/svn/fdo/%FDO_SVN_SOURCEDIR%/Fdo
 svn checkout https://osgeo.org/svn/fdo/%FDO_SVN_SOURCEDIR%/Fdo "%FDO_SVN_DESTDIR%\Fdo" --username %FDO_SVN_USERNAME% --password %FDO_SVN_PASSWORD%
 if errorlevel 1 goto error
+echo Checking out https://osgeo.org/svn/fdo/%FDO_SVN_SOURCEDIR%/Utilities
 svn checkout https://osgeo.org/svn/fdo/%FDO_SVN_SOURCEDIR%/Utilities "%FDO_SVN_DESTDIR%\Utilities" --username %FDO_SVN_USERNAME% --password %FDO_SVN_PASSWORD%
 if errorlevel 1 goto error
+echo Checking out https://osgeo.org/svn/fdo/%FDO_SVN_SOURCEDIR%/Thirdparty
 svn checkout https://osgeo.org/svn/fdo/%FDO_SVN_SOURCEDIR%/Thirdparty "%FDO_SVN_DESTDIR%\Thirdparty" --username %FDO_SVN_USERNAME% --password %FDO_SVN_PASSWORD%
 if errorlevel 1 goto error
 
@@ -198,21 +209,25 @@
 
 :checkout_fdo
 if "%FDOENABLECHK%"=="no" goto checkout_thirdparty
+echo Checking out https://osgeo.org/svn/fdo/%FDO_SVN_SOURCEDIR%/Fdo
 svn checkout https://osgeo.org/svn/fdo/%FDO_SVN_SOURCEDIR%/Fdo "%FDO_SVN_DESTDIR%\Fdo" --username %FDO_SVN_USERNAME% --password %FDO_SVN_PASSWORD%
 if errorlevel 1 goto error
 
 :checkout_thirdparty
 if "%THRPENABLECHK%"=="no" goto checkout_utilities
+echo Checking out https://osgeo.org/svn/fdo/%FDO_SVN_SOURCEDIR%/Thirdparty
 svn checkout https://osgeo.org/svn/fdo/%FDO_SVN_SOURCEDIR%/Thirdparty "%FDO_SVN_DESTDIR%\Thirdparty" --username %FDO_SVN_USERNAME% --password %FDO_SVN_PASSWORD%
 if errorlevel 1 goto error
 
 :checkout_utilities
 if "%UTILENABLECHK%"=="no" goto checkout_providers
+echo Checking out https://osgeo.org/svn/fdo/%FDO_SVN_SOURCEDIR%/Utilities
 svn checkout https://osgeo.org/svn/fdo/%FDO_SVN_SOURCEDIR%/Utilities "%FDO_SVN_DESTDIR%\Utilities" --username %FDO_SVN_USERNAME% --password %FDO_SVN_PASSWORD%
 if errorlevel 1 goto error
 
 :checkout_providers
-if "%FDOPROVIDERSENABLECHK%"=="no" goto checkout_shp
+if "%FDOPROVIDERSENABLECHK%"=="no" goto checkout_shp
+echo Checking out https://osgeo.org/svn/fdo/%FDO_SVN_SOURCEDIR%/Providers
 svn checkout https://osgeo.org/svn/fdo/%FDO_SVN_SOURCEDIR%/Providers "%FDO_SVN_DESTDIR%\Providers" --username %FDO_SVN_USERNAME% --password %FDO_SVN_PASSWORD%
 if errorlevel 1 goto error
 
@@ -220,38 +235,51 @@
 
 :checkout_shp
 if "%SHPENABLECHK%"=="no" goto checkout_sdf
+echo Checking out https://osgeo.org/svn/fdo/%FDO_SVN_SOURCEDIR%/Providers/SHP
 svn checkout https://osgeo.org/svn/fdo/%FDO_SVN_SOURCEDIR%/Providers/SHP "%FDO_SVN_DESTDIR%\Providers\SHP" --username %FDO_SVN_USERNAME% --password %FDO_SVN_PASSWORD%
 if errorlevel 1 goto error
 
 :checkout_sdf
 if "%SDFENABLECHK%"=="no" goto checkout_wfs
+echo Checking out https://osgeo.org/svn/fdo/%FDO_SVN_SOURCEDIR%/Providers/SDF
 svn checkout https://osgeo.org/svn/fdo/%FDO_SVN_SOURCEDIR%/Providers/SDF "%FDO_SVN_DESTDIR%\Providers\SDF" --username %FDO_SVN_USERNAME% --password %FDO_SVN_PASSWORD%
 if errorlevel 1 goto error
 
 :checkout_wfs
-if "%WFSENABLECHK%"=="no" goto checkout_wms
+if "%WFSENABLECHK%"=="no" goto checkout_wms
+echo Checking out https://osgeo.org/svn/fdo/%FDO_SVN_SOURCEDIR%/Providers/WFS
 svn checkout https://osgeo.org/svn/fdo/%FDO_SVN_SOURCEDIR%/Providers/WFS "%FDO_SVN_DESTDIR%\Providers\WFS" --username %FDO_SVN_USERNAME% --password %FDO_SVN_PASSWORD%
 if errorlevel 1 goto error
 
 :checkout_wms
-if "%WMSENABLECHK%"=="no" goto checkout_arcsde
+if "%WMSENABLECHK%"=="no" goto checkout_arcsde
+echo Checking out https://osgeo.org/svn/fdo/%FDO_SVN_SOURCEDIR%/Providers/WMS
 svn checkout https://osgeo.org/svn/fdo/%FDO_SVN_SOURCEDIR%/Providers/WMS "%FDO_SVN_DESTDIR%\Providers\WMS" --username %FDO_SVN_USERNAME% --password %FDO_SVN_PASSWORD%
 if errorlevel 1 goto error
 
 :checkout_arcsde
-if "%ARCENABLECHK%"=="no" goto checkout_generic
+if "%ARCENABLECHK%"=="no" goto checkout_generic
+echo Checking out https://osgeo.org/svn/fdo/%FDO_SVN_SOURCEDIR%/Providers/ArcSDE
 svn checkout https://osgeo.org/svn/fdo/%FDO_SVN_SOURCEDIR%/Providers/ArcSDE "%FDO_SVN_DESTDIR%\Providers\ArcSDE" --username %FDO_SVN_USERNAME% --password %FDO_SVN_PASSWORD%
 if errorlevel 1 goto error
 
 :checkout_generic
-if "%RDBMSENABLECHK%"=="no" goto checkout_gdal
+if "%RDBMSENABLECHK%"=="no" goto checkout_gdal
+echo Checking out https://osgeo.org/svn/fdo/%FDO_SVN_SOURCEDIR%/Providers/GenericRdbms
 svn checkout https://osgeo.org/svn/fdo/%FDO_SVN_SOURCEDIR%/Providers/GenericRdbms "%FDO_SVN_DESTDIR%\Providers\GenericRdbms" --username %FDO_SVN_USERNAME% --password %FDO_SVN_PASSWORD%
 if errorlevel 1 goto error
 
 :checkout_gdal
-if "%GDALENABLECHK%"=="no" goto end
+if "%GDALENABLECHK%"=="no" goto checkout_king
+echo Checking out https://osgeo.org/svn/fdo/%FDO_SVN_SOURCEDIR%/Providers/GDAL
 svn checkout https://osgeo.org/svn/fdo/%FDO_SVN_SOURCEDIR%/Providers/GDAL "%FDO_SVN_DESTDIR%\Providers\GDAL" --username %FDO_SVN_USERNAME% --password %FDO_SVN_PASSWORD%
 if errorlevel 1 goto error
+
+:checkout_king
+if "%KINGENABLECHK%"=="no" goto end
+echo Checking out https://osgeo.org/svn/fdo/%FDO_SVN_SOURCEDIR%/Providers/KingOracle
+svn checkout https://osgeo.org/svn/fdo/%FDO_SVN_SOURCEDIR%/Providers/KingOracle "%FDO_SVN_DESTDIR%\Providers\KingOracle" --username %FDO_SVN_USERNAME% --password %FDO_SVN_PASSWORD%
+if errorlevel 1 goto error
 
 :end
 exit /B 0
@@ -288,8 +316,9 @@
 echo                         wms, 
 echo                         arcsde, 
 echo                         rdbms, 
-echo                         gdal
+echo                         gdal,
+echo                         king
 echo User:           -u[ser]=user id
 echo Password:       -p[assword]=user password
 echo **************************************************************
-exit /B 0
\ No newline at end of file
+exit /B 0

Modified: trunk/checkoutsvn.sh
===================================================================
--- trunk/checkoutsvn.sh	2007-02-09 16:36:17 UTC (rev 2454)
+++ trunk/checkoutsvn.sh	2007-02-09 18:45:18 UTC (rev 2455)
@@ -42,22 +42,30 @@
 fi
 
 DEFMODIFYCHK=no
-FDOCOREENABLECHK=yes
+FDOALLENABLECHK=yes
+FDOCOREENABLECHK=no
+FDOPROVIDERSENABLECHK=no
 THRPENABLECHK=no
 FDOENABLECHK=no
 UTILENABLECHK=no
-SHPENABLECHK=yes
-SDFENABLECHK=yes
-WFSENABLECHK=yes
-WMSENABLECHK=yes
-ARCENABLECHK=yes
-RDBMSENABLECHK=yes
-GDALENABLECHK=yes
+SHPENABLECHK=no
+SDFENABLECHK=no
+WFSENABLECHK=no
+WMSENABLECHK=no
+ARCENABLECHK=no
+RDBMSENABLECHK=no
+GDALENABLECHK=no
+KINGENABLECHK=no
 SHOWHELP=no
+
 FDO_SVN_USERNAME=
 FDO_SVN_PASSWORD=
 FDO_SVN_SOURCEDIR=
 
+if test -z "$FDO_SVN_SOURCEDIR"; then
+   FDO_SVN_SOURCEDIR=trunk
+fi
+
 if test -z "$FDO_SVN_DESTDIR"; then
    FDO_SVN_DESTDIR=$PWD
 fi
@@ -110,7 +118,9 @@
   -w | --w | --with)
      if test "$DEFMODIFYCHK" == no; then
         DEFMODIFYCHK=yes
+        FDOALLENABLECHK=no
         FDOCOREENABLECHK=no
+        FDOPROVIDERSENABLECHK=no
         THRPENABLECHK=no
         FDOENABLECHK=no
         SHPENABLECHK=no
@@ -121,30 +131,28 @@
         RDBMSENABLECHK=no
         UTILENABLECHK=no
         GDALENABLECHK=no
+        KINGENABLECHK=no
      fi
      if test -z "$1"; then
         echo "Invalid parameter"
 	    exit 1
      elif test "$1" == providers; then
-        SHPENABLECHK=yes
-        SDFENABLECHK=yes
-        WFSENABLECHK=yes
-        WMSENABLECHK=yes
-        ARCENABLECHK=yes
-        RDBMSENABLECHK=yes
-        GDALENABLECHK=yes
+        FDOPROVIDERSENABLECHK=yes
      elif test "$1" == all; then
-        FDOCOREENABLECHK=yes
+        FDOALLENABLECHK=yes
+        FDOPROVIDERSENABLECHK=no
+        FDOCOREENABLECHK=no
         THRPENABLECHK=no
         FDOENABLECHK=no
         UTILENABLECHK=no
-        SHPENABLECHK=yes
-        SDFENABLECHK=yes
-        WFSENABLECHK=yes
-        WMSENABLECHK=yes
-        ARCENABLECHK=yes
-        RDBMSENABLECHK=yes
-        GDALENABLECHK=yes
+        SHPENABLECHK=no
+        SDFENABLECHK=no
+        WFSENABLECHK=no
+        WMSENABLECHK=no
+        ARCENABLECHK=no
+        RDBMSENABLECHK=no
+        GDALENABLECHK=no
+        KINGENABLECHK=no
      elif test "$1" == fdocore; then
         FDOCOREENABLECHK=yes
         THRPENABLECHK=no
@@ -170,6 +178,8 @@
         RDBMSENABLECHK=yes
      elif test "$1" == gdal; then
         GDALENABLECHK=yes
+     elif test "$1" == king; then
+        KINGENABLECHK=yes
      else
         echo "Invalid parameter"
 	exit 1
@@ -216,6 +226,7 @@
    echo "                           branch location, tag location or trunk"
    echo "OutFolder:      --o[utpath]=destination folder for files"
    echo "WithModule:     --w[ith]=all(default)"
+   echo "                         fdocore"
    echo "                         fdo"
    echo "                         thirdparty"
    echo "                         providers"
@@ -227,6 +238,7 @@
    echo "                         arcsde"
    echo "                         rdbms"
    echo "                         gdal"
+   echo "                         king"
    echo "User:           --u[ser]=user id"
    echo "Password:       --p[assword]=user password"
    echo "**********************************************************"
@@ -237,49 +249,78 @@
    mkdir "$FDO_SVN_DESTDIR"
 fi
 
+# Check out All source files
+if test "$FDOALLENABLECHK" == "yes"; then
+   echo "Checking out https://osgeo.org/svn/fdo/$FDO_SVN_SOURCEDIR"
+   svn checkout https://osgeo.org/svn/fdo/$FDO_SVN_SOURCEDIR "$FDO_SVN_DESTDIR" --username "$FDO_SVN_USERNAME" --password "$FDO_SVN_PASSWORD"
+fi
+# Check out All Provider source files
+if test "$FDOPROVIDERSENABLECHK" == yes; then
+   echo "Checking out https://osgeo.org/svn/fdo/$FDO_SVN_SOURCEDIR/Providers"
+   svn checkout https://osgeo.org/svn/fdo/$FDO_SVN_SOURCEDIR/Providers "$FDO_SVN_DESTDIR/Providers" --username "$FDO_SVN_USERNAME" --password "$FDO_SVN_PASSWORD"
+fi
+# Check out fdocore source files: FDO, Thirdparty, Utilities
+if test "$FDOCOREENABLECHK" == yes; then
+   echo "Checking out https://osgeo.org/svn/fdo/$FDO_SVN_SOURCEDIR/Fdo"
+   svn checkout https://osgeo.org/svn/fdo/$FDO_SVN_SOURCEDIR/Fdo "$FDO_SVN_DESTDIR/Fdo" --username "$FDO_SVN_USERNAME" --password "$FDO_SVN_PASSWORD"
+   echo "Checking out https://osgeo.org/svn/fdo/$FDO_SVN_SOURCEDIR/Thirdparty"
+   svn checkout https://osgeo.org/svn/fdo/$FDO_SVN_SOURCEDIR/Thirdparty "$FDO_SVN_DESTDIR/Thirdparty" --username "$FDO_SVN_USERNAME" --password "$FDO_SVN_PASSWORD"
+   echo "Checking out https://osgeo.org/svn/fdo/$FDO_SVN_SOURCEDIR/Utilities"
+   svn checkout https://osgeo.org/svn/fdo/$FDO_SVN_SOURCEDIR/Utilities "$FDO_SVN_DESTDIR/Utilities" --username "$FDO_SVN_USERNAME" --password "$FDO_SVN_PASSWORD"
+fi
+# Check out Fdo source files
 if test "$FDOCOREENABLECHK" == no && test "$FDOENABLECHK" == yes; then
-   echo "Checking out https://osgeo.org/svn/fdocore/$FDO_SVN_SOURCEDIR/Fdo"
-   svn checkout https://osgeo.org/svn/fdocore/$FDO_SVN_SOURCEDIR/Fdo "$FDO_SVN_DESTDIR/Fdo" --username "$FDO_SVN_USERNAME" --password "$FDO_SVN_PASSWORD"
+   echo "Checking out https://osgeo.org/svn/fdo/$FDO_SVN_SOURCEDIR/Fdo"
+   svn checkout https://osgeo.org/svn/fdo/$FDO_SVN_SOURCEDIR/Fdo "$FDO_SVN_DESTDIR/Fdo" --username "$FDO_SVN_USERNAME" --password "$FDO_SVN_PASSWORD"
 fi
+# Check out Thirdparty source files
 if test "$FDOCOREENABLECHK" == no && test "$THRPENABLECHK" == yes; then
-   echo "Checking out https://osgeo.org/svn/fdocore/$FDO_SVN_SOURCEDIR/Thirdparty"
-   svn checkout https://osgeo.org/svn/fdocore/$FDO_SVN_SOURCEDIR/Thirdparty "$FDO_SVN_DESTDIR/Thirdparty" --username "$FDO_SVN_USERNAME" --password "$FDO_SVN_PASSWORD"
+   echo "Checking out https://osgeo.org/svn/fdo/$FDO_SVN_SOURCEDIR/Thirdparty"
+   svn checkout https://osgeo.org/svn/fdo/$FDO_SVN_SOURCEDIR/Thirdparty "$FDO_SVN_DESTDIR/Thirdparty" --username "$FDO_SVN_USERNAME" --password "$FDO_SVN_PASSWORD"
 fi
+# Check out Utility source files
 if test "$FDOCOREENABLECHK" == no && test "$UTILENABLECHK" == yes; then
-   echo "Checking out https://osgeo.org/svn/fdocore/$FDO_SVN_SOURCEDIR/Utilities"
-   svn checkout https://osgeo.org/svn/fdocore/$FDO_SVN_SOURCEDIR/Utilities "$FDO_SVN_DESTDIR/Utilities" --username "$FDO_SVN_USERNAME" --password "$FDO_SVN_PASSWORD"
+   echo "Checking out https://osgeo.org/svn/fdo/$FDO_SVN_SOURCEDIR/Utilities"
+   svn checkout https://osgeo.org/svn/fdo/$FDO_SVN_SOURCEDIR/Utilities "$FDO_SVN_DESTDIR/Utilities" --username "$FDO_SVN_USERNAME" --password "$FDO_SVN_PASSWORD"
 fi
-if test "$FDOCOREENABLECHK" == yes; then
-   echo "Recursively checking out https://osgeo.org/svn/fdocore/$FDO_SVN_SOURCEDIR"
-   svn checkout https://osgeo.org/svn/fdocore/$FDO_SVN_SOURCEDIR "$FDO_SVN_DESTDIR" --username "$FDO_SVN_USERNAME" --password "$FDO_SVN_PASSWORD"
-fi
+# Check out SHP Provider source files
 if test "$SHPENABLECHK" == yes; then
-   echo "Checking out https://osgeo.org/svn/fdoshp/$FDO_SVN_SOURCEDIR/Providers/SHP"
-   svn checkout https://osgeo.org/svn/fdoshp/$FDO_SVN_SOURCEDIR/Providers/SHP "$FDO_SVN_DESTDIR/Providers/SHP" --username "$FDO_SVN_USERNAME" --password "$FDO_SVN_PASSWORD"
+   echo "Checking out https://osgeo.org/svn/fdo/$FDO_SVN_SOURCEDIR/Providers/SHP"
+   svn checkout https://osgeo.org/svn/fdo/$FDO_SVN_SOURCEDIR/Providers/SHP "$FDO_SVN_DESTDIR/Providers/SHP" --username "$FDO_SVN_USERNAME" --password "$FDO_SVN_PASSWORD"
 fi
+# Check out SDF Provider source files
 if test "$SDFENABLECHK" == yes; then
-   echo "Checking out https://osgeo.org/svn/fdosdf/$FDO_SVN_SOURCEDIR/Providers/SDF"
-   svn checkout https://osgeo.org/svn/fdosdf/$FDO_SVN_SOURCEDIR/Providers/SDF "$FDO_SVN_DESTDIR/Providers/SDF" --username "$FDO_SVN_USERNAME" --password "$FDO_SVN_PASSWORD"
+   echo "Checking out https://osgeo.org/svn/fdo/$FDO_SVN_SOURCEDIR/Providers/SDF"
+   svn checkout https://osgeo.org/svn/fdo/$FDO_SVN_SOURCEDIR/Providers/SDF "$FDO_SVN_DESTDIR/Providers/SDF" --username "$FDO_SVN_USERNAME" --password "$FDO_SVN_PASSWORD"
 fi
+# Check out WFS Provider source files
 if test "$WFSENABLECHK" == yes; then
-   echo "Checking out https://osgeo.org/svn/fdowfs/$FDO_SVN_SOURCEDIR/Providers/WFS"
-   svn checkout https://osgeo.org/svn/fdowfs/$FDO_SVN_SOURCEDIR/Providers/WFS "$FDO_SVN_DESTDIR/Providers/WFS" --username "$FDO_SVN_USERNAME" --password "$FDO_SVN_PASSWORD"
+   echo "Checking out https://osgeo.org/svn/fdo/$FDO_SVN_SOURCEDIR/Providers/WFS"
+   svn checkout https://osgeo.org/svn/fdo/$FDO_SVN_SOURCEDIR/Providers/WFS "$FDO_SVN_DESTDIR/Providers/WFS" --username "$FDO_SVN_USERNAME" --password "$FDO_SVN_PASSWORD"
 fi
+# Check out WMS Provider source files
 if test "$WMSENABLECHK" == yes; then
-   echo "Checking out https://osgeo.org/svn/fdowms/$FDO_SVN_SOURCEDIR/Providers/WMS"
-   svn checkout https://osgeo.org/svn/fdowms/$FDO_SVN_SOURCEDIR/Providers/WMS "$FDO_SVN_DESTDIR/Providers/WMS" --username "$FDO_SVN_USERNAME" --password "$FDO_SVN_PASSWORD"
+   echo "Checking out https://osgeo.org/svn/fdo/$FDO_SVN_SOURCEDIR/Providers/WMS"
+   svn checkout https://osgeo.org/svn/fdo/$FDO_SVN_SOURCEDIR/Providers/WMS "$FDO_SVN_DESTDIR/Providers/WMS" --username "$FDO_SVN_USERNAME" --password "$FDO_SVN_PASSWORD"
 fi
+# Check out ArcSDE Provider source files
 if test "$ARCENABLECHK" == yes; then
-   echo "Checking out https://osgeo.org/svn/fdoarcsde/$FDO_SVN_SOURCEDIR/Providers/ArcSDE"
-   svn checkout https://osgeo.org/svn/fdoarcsde/$FDO_SVN_SOURCEDIR/Providers/ArcSDE "$FDO_SVN_DESTDIR/Providers/ArcSDE" --username "$FDO_SVN_USERNAME" --password "$FDO_SVN_PASSWORD"
+   echo "Checking out https://osgeo.org/svn/fdo/$FDO_SVN_SOURCEDIR/Providers/ArcSDE"
+   svn checkout https://osgeo.org/svn/fdo/$FDO_SVN_SOURCEDIR/Providers/ArcSDE "$FDO_SVN_DESTDIR/Providers/ArcSDE" --username "$FDO_SVN_USERNAME" --password "$FDO_SVN_PASSWORD"
 fi
+# Check out GenericRDBMS Providers source files
 if test "$RDBMSENABLECHK" == yes; then
-   echo "Checking out https://osgeo.org/svn/fdordbms/$FDO_SVN_SOURCEDIR/Providers/GenericRdbms"
-   svn checkout https://osgeo.org/svn/fdordbms/$FDO_SVN_SOURCEDIR/Providers/GenericRdbms "$FDO_SVN_DESTDIR/Providers/GenericRdbms" --username "$FDO_SVN_USERNAME" --password "$FDO_SVN_PASSWORD"
+   echo "Checking out https://osgeo.org/svn/fdo/$FDO_SVN_SOURCEDIR/Providers/GenericRdbms"
+   svn checkout https://osgeo.org/svn/fdo/$FDO_SVN_SOURCEDIR/Providers/GenericRdbms "$FDO_SVN_DESTDIR/Providers/GenericRdbms" --username "$FDO_SVN_USERNAME" --password "$FDO_SVN_PASSWORD"
 fi
+# Check out GDAL Provider source files
 if test "$GDALENABLECHK" == yes; then
-   echo "Checking out https://osgeo.org/svn/fdogdal/$FDO_SVN_SOURCEDIR/Providers/GDAL"
-   svn checkout https://osgeo.org/svn/fdogdal/$FDO_SVN_SOURCEDIR/Providers/GDAL "$FDO_SVN_DESTDIR/Providers/GDAL" --username "$FDO_SVN_USERNAME" --password "$FDO_SVN_PASSWORD"
+   echo "Checking out https://osgeo.org/svn/fdo/$FDO_SVN_SOURCEDIR/Providers/GDAL"
+   svn checkout https://osgeo.org/svn/fdo/$FDO_SVN_SOURCEDIR/Providers/GDAL "$FDO_SVN_DESTDIR/Providers/GDAL" --username "$FDO_SVN_USERNAME" --password "$FDO_SVN_PASSWORD"
 fi
-echo "End checkout" 
+# Check out King Oracle Provider source files
+if test "$KINGENABLECHK" == yes; then
+   echo "Checking out https://osgeo.org/svn/fdo/$FDO_SVN_SOURCEDIR/Providers/KingOracle"
+   svn checkout https://osgeo.org/svn/fdo/$FDO_SVN_SOURCEDIR/Providers/KingOracle "$FDO_SVN_DESTDIR/Providers/KingOracle" --username "$FDO_SVN_USERNAME" --password "$FDO_SVN_PASSWORD"
+fi
 exit 0



More information about the fdo-commits mailing list