deegree's Web Coverage Service (WCS) is able to read coverages from

different storage formats and deliver it to any client that is able to
perform an according HTTP GET or POST request. At the moment supported
formats are limited to several raster data formats; but in general a
coverage has not to be a raster dataset at all.

WWW: http://www.deegree.org/

PR:		ports/133805
Submitted by:	wenheping at gmail.com
This commit is contained in:
Martin Wilke 2009-04-23 09:19:43 +00:00
parent 48777d6973
commit 9780f18e7f
Notes: svn2git 2021-03-31 03:12:20 +00:00
svn path=/head/; revision=232565
5 changed files with 67 additions and 0 deletions

View file

@ -92,6 +92,7 @@
SUBDIR += dcraw
SUBDIR += deegree-csw
SUBDIR += deegree-igeoportal
SUBDIR += deegree-wcs
SUBDIR += demeter
SUBDIR += devil
SUBDIR += dia

View file

@ -0,0 +1,46 @@
# New ports collection makefile for: deegree-wcs
# Date created: 17 April, 2009
# Whom: wenheping@gmail.com
#
# $FreeBSD$
#
PORTNAME= wcs
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 Coverage Service(WCS)
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-wcs
PLIST_FILES= ${TOMCATVER}/webapps/deegree-wcs.war
do-install:
cd ${WRKDIR} && \
${INSTALL} -g ${TOMCATGRP} -o ${TOMCATOWN} -m 444 deegree-wcs.war ${WEBAPPDIR};
.if !defined(NOPORTDOCS)
${MKDIR} ${DOCSDIR}
${INSTALL_DATA} ${WRKDIR}/README_WCS.txt ${DOCSDIR}
${INSTALL_DATA} ${WRKDIR}/deegree_wcs_documentation_en.pdf ${DOCSDIR}
.endif
post-install:
@${CAT} ${PKGMESSAGE}
.include <bsd.port.mk>

View file

@ -0,0 +1,3 @@
MD5 (deegree-wcs_v2_2.zip) = 05663c70180b86a81b7f8f5f2bf218da
SHA256 (deegree-wcs_v2_2.zip) = e5fafb3da71b65b63b9e7b44947d3c216fd49cf2fe8f2ee37bed172949ee1b97
SIZE (deegree-wcs_v2_2.zip) = 121416846

View file

@ -0,0 +1,7 @@
deegree's Web Coverage Service (WCS) is able to read coverages from
different storage formats and deliver it to any client that is able to
perform an according HTTP GET or POST request. At the moment supported
formats are limited to several raster data formats; but in general a
coverage has not to be a raster dataset at all.
WWW: http://www.deegree.org/

View file

@ -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 !
==========================================================================