[JPP-Devel] SVN: [6582] core/trunk/scripts/oj_linux.sh

2020-10-06 Thread jump-pilot-svn--- via Jump-pilot-devel
Revision: 6582
  http://sourceforge.net/p/jump-pilot/code/6582
Author:   edso
Date: 2020-10-06 19:59:37 + (Tue, 06 Oct 2020)
Log Message:
---
setup gdal support for debian/ubuntu, installing libgdal-java should suffice 
now to have gdal image loaders up and running
working on osx support when gdal is installed via homebrew

Modified Paths:
--
core/trunk/scripts/oj_linux.sh

Modified: core/trunk/scripts/oj_linux.sh
===
--- core/trunk/scripts/oj_linux.sh  2020-10-05 19:55:24 UTC (rev 6581)
+++ core/trunk/scripts/oj_linux.sh  2020-10-06 19:59:37 UTC (rev 6582)
@@ -266,19 +266,28 @@
 # allow jre to find executable binaries located under the native folder
 export PATH="$JUMP_NATIVE_DIR:$PATH"
 
-# generate gdal settings
-export GDAL_DATA="$JUMP_NATIVE_DIR/gdal-linux-data"
-GDALPATH="$JUMP_NATIVE_DIR/gdal-linux-$JAVA_ARCH"
-NATIVE_PATH="$GDALPATH:$GDALPATH/lib:$GDALPATH/java:$NATIVE_PATH"
-CLASSPATH="$GDALPATH/java/gdal.jar:$CLASSPATH"
-
 # export (DY)LD_LIBRARY_PATH depending on platform
 if [ "$(basename "$0")" = "oj_macosx.command" ]; then
-  ## Export environment variables for C-coded functions.
+  ## add lib/native/[arch/] to lib path
   export DYLD_LIBRARY_PATH="$NATIVE_PATH:$DYLD_LIBRARY_PATH"
   echo ---DYLD_LIBRARY_PATH---
   echo $DYLD_LIBRARY_PATH
 else
+  ## generate gdal & other native libs settings
+  GDALPATH="$JUMP_NATIVE_DIR/gdal-linux-$JAVA_ARCH"
+  # debian/ubuntu need package libgdal-java
+  # it keeps java bindings in /usr/share/java
+  # and jni libs in /usr/lib/jni, gdal-data in /usr/share/gdal
+  # let's add those locations for convenience sake but prefer lib/native
+  [ -e "$JUMP_NATIVE_DIR/gdal-linux-data" ] && \
+  export GDAL_DATA="$JUMP_NATIVE_DIR/gdal-linux-data" || \
+  export GDAL_DATA="/usr/share/gdal/"
+  echo ---GDAL_DATA---
+  echo $GDAL_DATA
+
+  
NATIVE_PATH="$GDALPATH:$GDALPATH/lib:$GDALPATH/java:$NATIVE_PATH:/usr/lib/jni"
+  CLASSPATH="$GDALPATH/java/gdal.jar:/usr/share/java/gdal.jar:$CLASSPATH"
+
   export LD_LIBRARY_PATH="$NATIVE_PATH:$LD_LIBRARY_PATH"
   echo ---LD_LIBRARY_PATH---
   echo $LD_LIBRARY_PATH



___
Jump-pilot-devel mailing list
Jump-pilot-devel@lists.sourceforge.net
https://lists.sourceforge.net/lists/listinfo/jump-pilot-devel


[JPP-Devel] SVN: [6583] core/trunk/etc/izpack/oj_installer.xml

2020-10-06 Thread jump-pilot-svn--- via Jump-pilot-devel
Revision: 6583
  http://sourceforge.net/p/jump-pilot/code/6583
Author:   edso
Date: 2020-10-06 20:10:23 + (Tue, 06 Oct 2020)
Log Message:
---
disable shortcut creation on linux, not working properly anymore
enable run-privileged for all windows versions 

Modified Paths:
--
core/trunk/etc/izpack/oj_installer.xml

Modified: core/trunk/etc/izpack/oj_installer.xml
===
--- core/trunk/etc/izpack/oj_installer.xml  2020-10-06 19:59:37 UTC (rev 
6582)
+++ core/trunk/etc/izpack/oj_installer.xml  2020-10-06 20:10:23 UTC (rev 
6583)
@@ -14,7 +14,7 @@
 
 1.5
 
+  condition="izpack.windowsinstall.xp|izpack.windowsinstall" />
 
   $INSTALL_PATH/uninstall/InstallSummary.htm
 
@@ -88,7 +88,7 @@
 
 
 
-
+
 
 
 
@@ -116,7 +116,7 @@
 
 
 
-
+
 
 
 



___
Jump-pilot-devel mailing list
Jump-pilot-devel@lists.sourceforge.net
https://lists.sourceforge.net/lists/listinfo/jump-pilot-devel


[JPP-Devel] SVN: [6584] core/trunk/ChangeLog

2020-10-06 Thread jump-pilot-svn--- via Jump-pilot-devel
Revision: 6584
  http://sourceforge.net/p/jump-pilot/code/6584
Author:   edso
Date: 2020-10-06 21:04:17 + (Tue, 06 Oct 2020)
Log Message:
---
amend latest commits

Modified Paths:
--
core/trunk/ChangeLog

Modified: core/trunk/ChangeLog
===
--- core/trunk/ChangeLog2020-10-06 20:10:23 UTC (rev 6583)
+++ core/trunk/ChangeLog2020-10-06 21:04:17 UTC (rev 6584)
@@ -2,12 +2,35 @@
 # 1. for display continuity sake please indent by 2 spaces instead of tabs
 # 2. make sure that lines break at 80 chars for constricted display situations
 # 3. be concise but convey the change in a way that ordinary users understand
-#< 80 chars 
-->#
+#< 80 chars -->
 
+2020-10-06 ede
+  * added gdal support for debian/ubuntu, installing package libgdal-java
+suffices now to have gdal image loaders up and running, tested on Ubuntu 20
+  * tested spatialite DB Datastore support on Ubuntu 20, works with package
+libsqlite3-mod-spatialite installed
+
+2020-10-05 ede
+  * make toolbar panel wrap properly and align it left
+  * add multiple extension dirs support, needed eg. in eclipse where lib/ext/
+and lib/plus/ are separate folders, use by giving multiple 
+-plug-in-directory params as OJ parameters eg.
+  -plug-in-directory "lib\plus" -plug-in-directory "lib\ext"
+
 2020-10-03 mmichaud
   * Update GraphToolBox extension to 0.8.0 : improve strahler order
 calculation and add shreve, horton and hack orders
 
+20-09-27 ede
+  SpatialDBDSDriver
+  * fix sqlite not loading mod_spatialite anymore because connection properties
+were not delegated properly
+  * keep one caching Dateparser instance assuming that one DateConverter is
+instantiated per result dataset to speed up date parsing by magnitudes
+
+2020-09-26 ede
+  * added a FinishPanel to installer as requested in featreq #270
+
 2020-09-26 Giuseppe Aruta
   * Added RasterizePlugIn. A plugin to rasterize vector layer according to
   an attribute value and cell size (plugin located under Tools>Generate)



___
Jump-pilot-devel mailing list
Jump-pilot-devel@lists.sourceforge.net
https://lists.sourceforge.net/lists/listinfo/jump-pilot-devel