OpenJUMP is an open source GIS software written in Java. It is based on
JUMP GIS by Vivid Solutions. It's features include:
* It is a Vector GIS that can read rasters as well.
* OpenJUMP is known to work on Windows, Linux and Mac platforms, but
should work on any operating system that runs Java 1.5 or later.
* It is not just another free demo viewer, but you can edit, save,
analyze etc. with JUMP / OpenJUMP.
* It works, even with medium size datasets, and with professional
touch.
* It provides a GIS API with a flexible plugin structure, so that
new features are relatively easy to develope around the sound mapping
platform.
* It utilises standards like GML, WMS and WFS.
* It is already translated in English, Finnish, French, German,
Italian, Portugese and Spanish. The translation in other languages is in
progress.
WWW: http://www.openjump.org/
PR: ports/134403
Submitted by: Wen Heping<wenheping at gmail.com>
2009-05-10 20:22:25 +02:00
|
|
|
# New ports collection makefile for: openjump
|
|
|
|
# Date created: 08 May, 2009
|
|
|
|
# Whom: Wen Heping<wenheping@gmail.com>
|
|
|
|
#
|
|
|
|
# $FreeBSD$
|
|
|
|
#
|
|
|
|
|
|
|
|
PORTNAME= openjump
|
|
|
|
PORTVERSION= 1.3
|
|
|
|
CATEGORIES= graphics java geography
|
2009-08-22 02:23:13 +02:00
|
|
|
MASTER_SITES= SF/jump-pilot/OldFiles
|
OpenJUMP is an open source GIS software written in Java. It is based on
JUMP GIS by Vivid Solutions. It's features include:
* It is a Vector GIS that can read rasters as well.
* OpenJUMP is known to work on Windows, Linux and Mac platforms, but
should work on any operating system that runs Java 1.5 or later.
* It is not just another free demo viewer, but you can edit, save,
analyze etc. with JUMP / OpenJUMP.
* It works, even with medium size datasets, and with professional
touch.
* It provides a GIS API with a flexible plugin structure, so that
new features are relatively easy to develope around the sound mapping
platform.
* It utilises standards like GML, WMS and WFS.
* It is already translated in English, Finnish, French, German,
Italian, Portugese and Spanish. The translation in other languages is in
progress.
WWW: http://www.openjump.org/
PR: ports/134403
Submitted by: Wen Heping<wenheping at gmail.com>
2009-05-10 20:22:25 +02:00
|
|
|
|
|
|
|
MAINTAINER= wenheping@gmail.com
|
|
|
|
COMMENT= An open source GIS software written in Java
|
|
|
|
|
|
|
|
TARGET_DIR= ${PREFIX}/${PORTNAME}
|
|
|
|
USE_JAVA= yes
|
|
|
|
JAVA_VERSION= 1.5+
|
|
|
|
USE_ZIP= yes
|
|
|
|
NO_BUILD= yes
|
|
|
|
PORTDOCS= OJ_improvements_from_v1.2_to_v1.3.txt gpl2_license.txt \
|
|
|
|
Using_MrSIDPlugIn.txt apache_license.txt readme.txt
|
|
|
|
|
|
|
|
.include <bsd.port.pre.mk>
|
|
|
|
|
|
|
|
do-install:
|
|
|
|
@${ECHO_CMD} "---> Installing JAR files"
|
|
|
|
${MKDIR} ${TARGET_DIR}/lib
|
|
|
|
${INSTALL_DATA} ${WRKSRC}/lib/*.jar ${TARGET_DIR}/lib
|
|
|
|
${MKDIR} ${TARGET_DIR}/lib/ext
|
|
|
|
@cd ${WRKSRC}/lib/ext && ${COPYTREE_SHARE} . ${TARGET_DIR}/lib/ext
|
|
|
|
@${ECHO_MSG} "Installing startup script"
|
|
|
|
${MKDIR} ${TARGET_DIR}/bin
|
|
|
|
${INSTALL_SCRIPT} ${WRKSRC}/bin/openjump.sh ${TARGET_DIR}/bin/openjump
|
|
|
|
${INSTALL_DATA} ${WRKSRC}/bin/workbench-properties.xml ${TARGET_DIR}/bin/
|
|
|
|
${INSTALL_DATA} ${WRKSRC}/bin/default-plugins.xml ${TARGET_DIR}/bin/
|
|
|
|
${INSTALL_DATA} ${WRKSRC}/bin/log4j.xml ${TARGET_DIR}/bin/
|
|
|
|
|
|
|
|
.if !defined(NOPORTDOCS)
|
|
|
|
@${ECHO_MSG} "---> Installing documentation"
|
|
|
|
${MKDIR} ${DOCSDIR}
|
|
|
|
.for i in ${PORTDOCS}
|
|
|
|
${INSTALL_DATA} ${WRKSRC}/${i} ${DOCSDIR}
|
|
|
|
.endfor
|
|
|
|
.else
|
|
|
|
@${ECHO_MSG} "---> Skipping documentation"
|
|
|
|
.endif
|
|
|
|
|
|
|
|
.include <bsd.port.post.mk>
|