From c82eb93939df6cbe01e27a602e5d32013308f207 Mon Sep 17 00:00:00 2001 From: miwi Date: Thu, 23 Apr 2009 09:22:47 +0000 Subject: Deegree's WPS is able to process Feature Collections based on arbitrary processes. OGC's WPS (Schut & Whiteside 2005) specification describes WPS as follows: "WPS defines a standardized interface that facilitates the publishing of geospatial processes, and the discovery of and binding to those processes by clients. "Processes" include any algorithm, calculation or model that operates on spatially referenced data. "Publishing" means making available machine-readable binding information as well as human-readable metadata that allows service discovery and use." WWW: http://www.deegree.org/ PR: ports/133810 Submitted by: wenheping at gmail.com --- graphics/Makefile | 1 + graphics/deegree-wps/Makefile | 46 ++++++++++++++++++++++++++++++++++++++++ graphics/deegree-wps/distinfo | 3 +++ graphics/deegree-wps/pkg-descr | 11 ++++++++++ graphics/deegree-wps/pkg-message | 10 +++++++++ 5 files changed, 71 insertions(+) create mode 100644 graphics/deegree-wps/Makefile create mode 100644 graphics/deegree-wps/distinfo create mode 100644 graphics/deegree-wps/pkg-descr create mode 100644 graphics/deegree-wps/pkg-message (limited to 'graphics') diff --git a/graphics/Makefile b/graphics/Makefile index 7656cea63d53..9d5f6f12a92c 100644 --- a/graphics/Makefile +++ b/graphics/Makefile @@ -95,6 +95,7 @@ SUBDIR += deegree-wcs SUBDIR += deegree-wfs SUBDIR += deegree-wms + SUBDIR += deegree-wps SUBDIR += demeter SUBDIR += devil SUBDIR += dia diff --git a/graphics/deegree-wps/Makefile b/graphics/deegree-wps/Makefile new file mode 100644 index 000000000000..7b95f7fc2554 --- /dev/null +++ b/graphics/deegree-wps/Makefile @@ -0,0 +1,46 @@ +# New ports collection makefile for: deegree-wps +# Date created: 17 April, 2009 +# Whom: wenheping@gmail.com +# +# $FreeBSD$ +# + +PORTNAME= wps +PORTVERSION= 2.2 +CATEGORIES= graphics java +MASTER_SITES= http://download.deegree.org/deegree${PORTVERSION}/ +PKGNAMEPREFIX= deegree- +DISTNAME= ${PKGNAMEPREFIX}${PORTNAME}_v${PORTVERSION:S/./_/} + +MAINTAINER= wenheping@gmail.com +COMMENT= Deegree Web Processing Service(WPS) + +RUN_DEPENDS= ${TOMCATDIR}:${PORTSDIR}/www/tomcat55 + +USE_ZIP= yes +USE_JAVA= 1.5+ + +NO_BUILD= yes +TOMCATVER= tomcat5.5 +TOMCATDIR= ${PREFIX}/${TOMCATVER} +TOMCATOWN= www +TOMCATGRP= www +WEBAPPDIR= ${TOMCATDIR}/webapps +PORTDOCS= * +DOCSDIR= ${PREFIX}/share/doc/deegree-wps +PLIST_FILES= ${TOMCATVER}/webapps/deegree-wps.war + +do-install: + cd ${WRKDIR} && \ + ${INSTALL} -g ${TOMCATGRP} -o ${TOMCATOWN} -m 444 deegree-wps.war ${WEBAPPDIR}; + +.if !defined(NOPORTDOCS) + ${MKDIR} ${DOCSDIR} + ${INSTALL_DATA} ${WRKDIR}/README_WPS.txt ${DOCSDIR} + ${INSTALL_DATA} ${WRKDIR}/deegree_wps_documentation_en.pdf ${DOCSDIR} +.endif + +post-install: + @${CAT} ${PKGMESSAGE} + +.include diff --git a/graphics/deegree-wps/distinfo b/graphics/deegree-wps/distinfo new file mode 100644 index 000000000000..1469e13b21e5 --- /dev/null +++ b/graphics/deegree-wps/distinfo @@ -0,0 +1,3 @@ +MD5 (deegree-wps_v2_2.zip) = fc741793889206afbdfcd0bb236cd654 +SHA256 (deegree-wps_v2_2.zip) = 835824925db50e7617683c84d08d1678b923731c116e69fa574443a8d299dbaf +SIZE (deegree-wps_v2_2.zip) = 8132883 diff --git a/graphics/deegree-wps/pkg-descr b/graphics/deegree-wps/pkg-descr new file mode 100644 index 000000000000..03a93f423a10 --- /dev/null +++ b/graphics/deegree-wps/pkg-descr @@ -0,0 +1,11 @@ +Deegree's WPS is able to process Feature Collections based on arbitrary +processes. OGC's WPS (Schut & Whiteside 2005) specification describes +WPS as follows: "WPS defines a standardized interface that facilitates +the publishing of geospatial processes, and the discovery of and binding +to those processes by clients. "Processes" include any algorithm, +calculation or model that operates on spatially referenced data. +"Publishing" means making available machine-readable binding +information as well as human-readable metadata that allows service +discovery and use." + +WWW: http://www.deegree.org/ diff --git a/graphics/deegree-wps/pkg-message b/graphics/deegree-wps/pkg-message new file mode 100644 index 000000000000..13df82f03621 --- /dev/null +++ b/graphics/deegree-wps/pkg-message @@ -0,0 +1,10 @@ +========================================================================== +To start DeeGree correctly, please set the variable JAVA_OPTS with: + +setenv JAVA_OPTS "-server -Xms256m -Xmx512m" + +Now you should start your Tomcat server and browse with: + http://your-server:8180/deegree-wcs + +Enjoy it ! +========================================================================== -- cgit