aboutsummaryrefslogtreecommitdiffstats
path: root/www/py-tornado4/Makefile
blob: ab75ec1f5f7d6c59451c16f720d4e248c5ad8cee (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
# Created by: Guixing Bai <khsing.cn@gmail.com>
# $FreeBSD$

PORTNAME=   tornado
PORTVERSION=    4.5.3
CATEGORIES= www python
MASTER_SITES=   CHEESESHOP
PKGNAMEPREFIX=  ${PYTHON_PKGNAMEPREFIX}
PKGNAMESUFFIX=  4

MAINTAINER= sunpoet@FreeBSD.org
COMMENT=    Python Web Server from FriendFeed

LICENSE=    APACHE20

CONFLICTS=  py[0-9]*-tornado-* py[0-9]*-tornado6-*

USES=       python
USE_PYTHON= autoplist concurrent distutils

.include <bsd.port.pre.mk>

.if ${PYTHON_REL} < 3400
RUN_DEPENDS+=   ${PYTHON_PKGNAMEPREFIX}singledispatch>0:devel/py-singledispatch@${PY_FLAVOR} \
        ${PYTHON_PKGNAMEPREFIX}certifi>0:security/py-certifi@${PY_FLAVOR}
.endif

.if ${PYTHON_REL} < 3500
RUN_DEPENDS+=   ${PYTHON_PKGNAMEPREFIX}backports_abc>=0.4:devel/py-backports_abc@${PY_FLAVOR}
.endif

post-build:
    @${FIND} ${WRKSRC}/build -name speedups.so -exec ${STRIP_CMD} {} \;

regression-test: build
    @cd ${WRKSRC} && ${PYTHON_CMD} -m tornado.test.runtests

.include <bsd.port.post.mk>