svn commit: r306722 - in head/graphics/deegree-wcs: . files
Jason Helfman
jgh at FreeBSD.org
Tue Oct 30 22:07:31 UTC 2012
Author: jgh
Date: Tue Oct 30 22:07:30 2012
New Revision: 306722
URL: http://svn.freebsd.org/changeset/ports/306722
Log:
- add additional support for tomcat7 and adjust pkg-message accordingly
PR: 173092
Submitted by: nemysis at gmx.ch
Patch by: jgh
Approved by: maintainer, wen
Feature safe: yes
Added:
head/graphics/deegree-wcs/files/
head/graphics/deegree-wcs/files/pkg-message.in
- copied, changed from r306590, head/graphics/deegree-wcs/pkg-message
Deleted:
head/graphics/deegree-wcs/pkg-message
Modified:
head/graphics/deegree-wcs/Makefile
Modified: head/graphics/deegree-wcs/Makefile
==============================================================================
--- head/graphics/deegree-wcs/Makefile Tue Oct 30 22:06:40 2012 (r306721)
+++ head/graphics/deegree-wcs/Makefile Tue Oct 30 22:07:30 2012 (r306722)
@@ -13,25 +13,43 @@ DISTNAME= ${PKGNAMEPREFIX}${PORTNAME}_${
MAINTAINER= wenheping at gmail.com
COMMENT= Deegree Web Coverage Service(WCS)
-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_wcs_documentation_en.pdf
DOCSDIR= ${PREFIX}/share/doc/deegree-wcs
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-wcs.war -C ${WRKDIR}/${PORTDIRNAME}
-.include <bsd.port.options.mk>
-
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_wcs_documentation_en.pdf ${DOCSDIR}
+ ${INSTALL_DATA} ${PORTDOCS:S|^|${WRKDIR}/|} ${DOCSDIR}
.endif
-
-post-install:
@${CAT} ${PKGMESSAGE}
.include <bsd.port.mk>
Copied and modified: head/graphics/deegree-wcs/files/pkg-message.in (from r306590, head/graphics/deegree-wcs/pkg-message)
==============================================================================
--- head/graphics/deegree-wcs/pkg-message Mon Oct 29 04:56:14 2012 (r306590, copy source)
+++ head/graphics/deegree-wcs/files/pkg-message.in Tue Oct 30 22:07:30 2012 (r306722)
@@ -4,7 +4,7 @@ To start DeeGree correctly, please set t
setenv JAVA_OPTS "-server -Xms256m -Xmx512m"
Now you should start your Tomcat server and browse with:
- http://your-server:8180/deegree-wcs
+ http://your-server:%%TCPORT%%/deegree-wcs
Enjoy it !
==========================================================================
More information about the svn-ports-head
mailing list