svn commit: r422181 - head/graphics/deegree-wps

Dmitry Marakasov amdmi3 at FreeBSD.org
Thu Sep 15 09:01:38 UTC 2016


Author: amdmi3
Date: Thu Sep 15 09:01:37 2016
New Revision: 422181
URL: https://svnweb.freebsd.org/changeset/ports/422181

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

Modified:
  head/graphics/deegree-wps/Makefile

Modified: head/graphics/deegree-wps/Makefile
==============================================================================
--- head/graphics/deegree-wps/Makefile	Thu Sep 15 07:46:55 2016	(r422180)
+++ head/graphics/deegree-wps/Makefile	Thu Sep 15 09:01:37 2016	(r422181)
@@ -34,14 +34,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
@@ -51,8 +51,10 @@ post-extract:
 	@${TAR} xf ${WRKDIR}/deegree-wps.war -C ${WRKDIR}/${PORTDIRNAME}
 
 do-install:
-	${INSTALL} -d ${STAGEDIR}${WEBAPPDIR}/${PORTDIRNAME}
+	@${MKDIR} ${STAGEDIR}${WEBAPPDIR}/${PORTDIRNAME}
 	@cd ${WRKDIR}/${PORTDIRNAME} && ${COPYTREE_SHARE} \* ${STAGEDIR}${WEBAPPDIR}/${PORTDIRNAME}
+
+do-install-DOCS-on:
 	@${MKDIR} ${STAGEDIR}${DOCSDIR}
 	${INSTALL_DATA} ${PORTDOCS:S|^|${WRKDIR}/|} ${STAGEDIR}${DOCSDIR}
 


More information about the svn-ports-all mailing list