diff options
author | Dmitry Marakasov <amdmi3@FreeBSD.org> | 2016-08-23 09:01:19 +0000 |
---|---|---|
committer | Dmitry Marakasov <amdmi3@FreeBSD.org> | 2016-08-23 09:01:19 +0000 |
commit | 8f79aa02ae6df53bb2ea83cc24f101c2897b203e (patch) | |
tree | 405f5baede952744cd08159aaa914b11b8073a40 /graphics/deegree-wfs | |
parent | 0820537d3bfc1526f9f6875c09f05efdc10ae1af (diff) | |
download | ports-8f79aa02ae6df53bb2ea83cc24f101c2897b203e.tar.gz ports-8f79aa02ae6df53bb2ea83cc24f101c2897b203e.zip |
Notes
Diffstat (limited to 'graphics/deegree-wfs')
-rw-r--r-- | graphics/deegree-wfs/Makefile | 10 |
1 files changed, 7 insertions, 3 deletions
diff --git a/graphics/deegree-wfs/Makefile b/graphics/deegree-wfs/Makefile index a43ce55d6e87..c6aab1384961 100644 --- a/graphics/deegree-wfs/Makefile +++ b/graphics/deegree-wfs/Makefile @@ -12,6 +12,8 @@ DISTNAME= ${PKGNAMEPREFIX}${PORTNAME}_${PORTVERSION} MAINTAINER= ports@FreeBSD.org COMMENT= Deegree Web Feature Service(WFS) +LICENSE= GPL21+ + USES= zip USE_JAVA= 1.6+ @@ -34,14 +36,14 @@ OPTIONS_DEFINE= DOCS .if ${PORT_OPTIONS:MTOMCAT6} TOMCATVER= apache-tomcat-6.0 -TCPORT= 8180 +TCPORT= 8180 BUILD_DEPENDS+= ${APPHOME}/bin/bootstrap.jar:www/tomcat6 RUN_DEPENDS+= ${APPHOME}/bin/bootstrap.jar:www/tomcat6 .endif .if ${PORT_OPTIONS:MTOMCAT7} TOMCATVER= apache-tomcat-7.0 -TCPORT= 8080 +TCPORT= 8080 BUILD_DEPENDS+= ${APPHOME}/bin/bootstrap.jar:www/tomcat7 RUN_DEPENDS+= ${APPHOME}/bin/bootstrap.jar:www/tomcat7 .endif @@ -52,7 +54,9 @@ post-extract: do-install: cd ${WRKDIR}/${PORTDIRNAME} && ${COPYTREE_SHARE} \* ${STAGEDIR}${WEBAPPDIR}/${PORTDIRNAME} - ${MKDIR} ${STAGEDIR}${DOCSDIR} + +do-install-DOCS-on: + @${MKDIR} ${STAGEDIR}${DOCSDIR} ${INSTALL_DATA} ${PORTDOCS:S|^|${WRKDIR}/|} ${STAGEDIR}${DOCSDIR} .include <bsd.port.mk> |