From 5b37dd910ee4758cc907ac1ea86fa7e851d5bb26 Mon Sep 17 00:00:00 2001 From: jgh Date: Tue, 30 Oct 2012 22:08:14 +0000 Subject: - add additional support for tomcat7 and adjust pkg-message accordingly PR: 173126 Submitted by: nemysis@gmx.ch Patch by: jgh Approved by: maintainer, wen Feature safe: yes --- graphics/deegree-wfs/Makefile | 35 ++++++++++++++++++++++--------- graphics/deegree-wfs/files/pkg-message.in | 10 +++++++++ graphics/deegree-wfs/pkg-message | 10 --------- 3 files changed, 35 insertions(+), 20 deletions(-) create mode 100644 graphics/deegree-wfs/files/pkg-message.in delete mode 100644 graphics/deegree-wfs/pkg-message (limited to 'graphics/deegree-wfs') diff --git a/graphics/deegree-wfs/Makefile b/graphics/deegree-wfs/Makefile index 82b66087b9a0..3ed772324277 100644 --- a/graphics/deegree-wfs/Makefile +++ b/graphics/deegree-wfs/Makefile @@ -13,25 +13,43 @@ DISTNAME= ${PKGNAMEPREFIX}${PORTNAME}_${PORTVERSION} MAINTAINER= wenheping@gmail.com COMMENT= Deegree Web Feature Service(WFS) -RUN_DEPENDS= ${LOCALBASE}/${TOMCATVER}/bin/bootstrap.jar:${PORTSDIR}/www/tomcat6 - USE_ZIP= yes USE_JAVA= 1.5+ NO_BUILD= yes -TOMCATVER= apache-tomcat-6.0 TOMCATDIR= ${PREFIX}/${TOMCATVER} +APPHOME= ${LOCALBASE}/${TOMCATVER} WEBAPPDIR= ${TOMCATDIR}/webapps -PORTDOCS= * +PORTDOCS= README.txt deegree_wfs_documentation_en.pdf DOCSDIR= ${PREFIX}/share/doc/deegree-wfs PLIST_SUB= TOMCATDIR=${TOMCATDIR:S|^${PREFIX}/||} +SUB_FILES= pkg-message +SUB_LIST= TCPORT=${TCPORT} + +OPTIONS_SINGLE= AS +OPTIONS_SINGLE_AS= TOMCAT6 TOMCAT7 +OPTIONS_DEFAULT= TOMCAT6 + +.include + +.if ${PORT_OPTIONS:MTOMCAT6} +TOMCATVER= apache-tomcat-6.0 +TCPORT= 8180 +BUILD_DEPENDS+= ${APPHOME}/bin/bootstrap.jar:${PORTSDIR}/www/tomcat6 +RUN_DEPENDS+= ${APPHOME}/bin/bootstrap.jar:${PORTSDIR}/www/tomcat6 +.endif + +.if ${PORT_OPTIONS:MTOMCAT7} +TOMCATVER= apache-tomcat-7.0 +TCPORT= 8080 +BUILD_DEPENDS+= ${APPHOME}/bin/bootstrap.jar:${PORTSDIR}/www/tomcat7 +RUN_DEPENDS+= ${APPHOME}/bin/bootstrap.jar:${PORTSDIR}/www/tomcat7 +.endif post-extract: @${MKDIR} ${WRKDIR}/${PORTDIRNAME} @${TAR} xf ${WRKDIR}/deegree-wfs.war -C ${WRKDIR}/${PORTDIRNAME} -.include - do-install: cd ${WRKDIR} && \ ${INSTALL} -d -o ${WWWOWN} -g ${WWWGRP} ${TOMCATDIR}/webapps/${PORTDIRNAME} @@ -39,11 +57,8 @@ do-install: .if ${PORT_OPTIONS:MDOCS} ${MKDIR} ${DOCSDIR} - ${INSTALL_DATA} ${WRKDIR}/README.txt ${DOCSDIR} - ${INSTALL_DATA} ${WRKDIR}/deegree_wfs_documentation_en.pdf ${DOCSDIR} + ${INSTALL_DATA} ${PORTDOCS:S|^|${WRKDIR}/|} ${DOCSDIR} .endif - -post-install: @${CAT} ${PKGMESSAGE} .include diff --git a/graphics/deegree-wfs/files/pkg-message.in b/graphics/deegree-wfs/files/pkg-message.in new file mode 100644 index 000000000000..e322d5843ff5 --- /dev/null +++ b/graphics/deegree-wfs/files/pkg-message.in @@ -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:%%TCPORT%%/deegree-wfs + +Enjoy it ! +========================================================================== diff --git a/graphics/deegree-wfs/pkg-message b/graphics/deegree-wfs/pkg-message deleted file mode 100644 index 66fb4805bfe1..000000000000 --- a/graphics/deegree-wfs/pkg-message +++ /dev/null @@ -1,10 +0,0 @@ -========================================================================== -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-wfs - -Enjoy it ! -========================================================================== -- cgit