Skip site navigation (1)Skip section navigation (2)
Date:      Thu, 7 Jan 2016 14:07:17 +0000 (UTC)
From:      Dmitry Marakasov <amdmi3@FreeBSD.org>
To:        ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org
Subject:   svn commit: r405438 - head/www/py-ws4py
Message-ID:  <201601071407.u07E7Hmb012595@repo.freebsd.org>

next in thread | raw e-mail | index | archive | help
Author: amdmi3
Date: Thu Jan  7 14:07:16 2016
New Revision: 405438
URL: https://svnweb.freebsd.org/changeset/ports/405438

Log:
  - Switch to options helpers

Modified:
  head/www/py-ws4py/Makefile

Modified: head/www/py-ws4py/Makefile
==============================================================================
--- head/www/py-ws4py/Makefile	Thu Jan  7 14:06:08 2016	(r405437)
+++ head/www/py-ws4py/Makefile	Thu Jan  7 14:07:16 2016	(r405438)
@@ -18,33 +18,29 @@ USE_PYTHON=	distutils autoplist
 NO_ARCH=	yes
 
 OPTIONS_DEFINE=	CHERRYPY GEVENT TORNADO
-OPTIONS_DEFAULT=	CHERRYPY GEVENT
+OPTIONS_DEFAULT=CHERRYPY GEVENT
 CHERRYPY_DESC=	CherryPy server support
 GEVENT_DESC=	gevent-based client/server support
 TORNADO_DESC=	Tornado client support
 
-CHERRYPY_RUN_DEPENDS+=	${PYTHON_PKGNAMEPREFIX}cherrypy>=3.2.2:${PORTSDIR}/www/py-cherrypy
-GEVENT_RUN_DEPENDS+=	${PYTHON_PKGNAMEPREFIX}gevent>=0.13.8:${PORTSDIR}/devel/py-gevent
-TORNADO_RUN_DEPENDS+=	${PYTHON_PKGNAMEPREFIX}tornado>=3.1:${PORTSDIR}/www/py-tornado
-
-.include <bsd.port.options.mk>
+CHERRYPY_RUN_DEPENDS=	${PYTHON_PKGNAMEPREFIX}cherrypy>=3.2.2:${PORTSDIR}/www/py-cherrypy
+GEVENT_RUN_DEPENDS=	${PYTHON_PKGNAMEPREFIX}gevent>=0.13.8:${PORTSDIR}/devel/py-gevent
+TORNADO_RUN_DEPENDS=	${PYTHON_PKGNAMEPREFIX}tornado>=3.1:${PORTSDIR}/www/py-tornado
 
 # Do not install files which will not work
-post-patch:
-.if ! ${PORT_OPTIONS:MCHERRYPY}
+post-patch-CHERRYPY-off:
 .for f in test/test_cherrypy.py ws4py/server/cherrypyserver.py
-	${RM} ${WRKSRC}/${f}
+	@${RM} ${WRKSRC}/${f}
 .endfor
-.endif
-.if ! ${PORT_OPTIONS:MGEVENT}
+
+post-patch-GEVENT-off:
 .for f in ws4py/client/geventclient.py ws4py/server/geventserver.py
-	${RM} ${WRKSRC}/${f}
+	@${RM} ${WRKSRC}/${f}
 .endfor
-.endif
-.if ! ${PORT_OPTIONS:MTORNADO}
+
+post-patch-TORNADO-off:
 .for f in ws4py/client/tornadoclient.py
-	${RM} ${WRKSRC}/${f}
+	@${RM} ${WRKSRC}/${f}
 .endfor
-.endif
 
 .include <bsd.port.mk>



Want to link to this message? Use this URL: <https://mail-archive.FreeBSD.org/cgi/mid.cgi?201601071407.u07E7Hmb012595>