diff options
author | jgh <jgh@FreeBSD.org> | 2012-10-31 06:08:53 +0800 |
---|---|---|
committer | jgh <jgh@FreeBSD.org> | 2012-10-31 06:08:53 +0800 |
commit | 0599c535b4b39caab5a93e5a903eed641471aed5 (patch) | |
tree | 077dddfd3252badb167d86d10c889bf9eb33acce /graphics | |
parent | 5b37dd910ee4758cc907ac1ea86fa7e851d5bb26 (diff) | |
download | freebsd-ports-gnome-0599c535b4b39caab5a93e5a903eed641471aed5.tar.gz freebsd-ports-gnome-0599c535b4b39caab5a93e5a903eed641471aed5.tar.zst freebsd-ports-gnome-0599c535b4b39caab5a93e5a903eed641471aed5.zip |
- add additional support for tomcat7 and adjust pkg-message accordingly
PR: 173094
Submitted by: nemysis@gmx.ch
Patch by: jgh
Approved by: maintainer, wen
Feature safe: yes
Diffstat (limited to 'graphics')
-rw-r--r-- | graphics/deegree-wms/Makefile | 35 | ||||
-rw-r--r-- | graphics/deegree-wms/files/pkg-message.in (renamed from graphics/deegree-wms/pkg-message) | 2 |
2 files changed, 26 insertions, 11 deletions
diff --git a/graphics/deegree-wms/Makefile b/graphics/deegree-wms/Makefile index 5bd2ea940df3..f768ba6cc9de 100644 --- a/graphics/deegree-wms/Makefile +++ b/graphics/deegree-wms/Makefile @@ -13,36 +13,51 @@ DISTNAME= ${PKGNAMEPREFIX}${PORTNAME}_${PORTVERSION} MAINTAINER= wenheping@gmail.com COMMENT= Deegree Web Map Service(WMS) -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_charts_documentation_en.pdf deegree_wms_documentation_en.pdf DOCSDIR= ${PREFIX}/share/doc/deegree-wms 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 <bsd.port.options.mk> + +.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-wms.war -C ${WRKDIR}/${PORTDIRNAME} -.include <bsd.port.options.mk> - do-install: ${INSTALL} -d -o ${WWWOWN} -g ${WWWGRP} ${TOMCATDIR}/webapps/${PORTDIRNAME} @cd ${WRKDIR}/${PORTDIRNAME} && ${COPYTREE_SHARE} \* ${WEBAPPDIR}/${PORTDIRNAME} .if ${PORT_OPTIONS:MDOCS} ${MKDIR} ${DOCSDIR} - ${INSTALL_DATA} ${WRKDIR}/README.txt ${DOCSDIR} - ${INSTALL_DATA} ${WRKDIR}/deegree_wms_documentation_en.pdf ${DOCSDIR} + ${INSTALL_DATA} ${PORTDOCS:S|^|${WRKDIR}/|} ${DOCSDIR} .endif - -post-install: @${CAT} ${PKGMESSAGE} .include <bsd.port.mk> diff --git a/graphics/deegree-wms/pkg-message b/graphics/deegree-wms/files/pkg-message.in index 1ecba9b637f4..767b60b31330 100644 --- a/graphics/deegree-wms/pkg-message +++ b/graphics/deegree-wms/files/pkg-message.in @@ -4,7 +4,7 @@ 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-wms + http://your-server:%%TCPORT%%/deegree-wms Enjoy it ! ========================================================================== |