svn commit: r420652 - head/graphics/deegree-wfs

Dmitry Marakasov amdmi3 at FreeBSD.org
Tue Aug 23 09:01:20 UTC 2016


Author: amdmi3
Date: Tue Aug 23 09:01:19 2016
New Revision: 420652
URL: https://svnweb.freebsd.org/changeset/ports/420652

Log:
  - Add LICENSE
  - Switch to options helpers
  - Cosmetic fixes

Modified:
  head/graphics/deegree-wfs/Makefile

Modified: head/graphics/deegree-wfs/Makefile
==============================================================================
--- head/graphics/deegree-wfs/Makefile	Tue Aug 23 08:49:41 2016	(r420651)
+++ head/graphics/deegree-wfs/Makefile	Tue Aug 23 09:01:19 2016	(r420652)
@@ -12,6 +12,8 @@ DISTNAME=	${PKGNAMEPREFIX}${PORTNAME}_${
 MAINTAINER=	ports at 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>


More information about the svn-ports-all mailing list