blob: ccf7f9d86b9cfe757b2f9ed805575b5f1f5ce2db (
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
39
40
41
|
# Created by: ijliao
# $FreeBSD$
PORTNAME= html5lib
PORTVERSION= 0.999
CATEGORIES= www python
MASTER_SITES= GOOGLE_CODE:master \
CHEESESHOP:master \
http://magemana.nl/ports/dist/:test
PKGNAMEPREFIX= ${PYTHON_PKGNAMEPREFIX}
MAINTAINER= rm@FreeBSD.org
COMMENT= Python based HTML parser based on the HTML5 spec
LICENSE= MIT
RUN_DEPENDS= ${PYTHON_PKGNAMEPREFIX}six>0:${PORTSDIR}/devel/py-six
TEST_DEPENDS= ${PYTHON_PKGNAMEPREFIX}nose>0:${PORTSDIR}/devel/py-nose
OPTIONS_DEFINE= TEST
USES= python
USE_PYTHON= distutils autoplist
.include <bsd.port.options.mk>
.if !empty(PORT_OPTIONS:MTEST)
DISTFILES= ${PORTNAME}-${PORTVERSION}${EXTRACT_SUFX}:master \
${PORTNAME}-${PORTVERSION}-testdata${EXTRACT_SUFX}:test
BUILD_DEPENDS+= ${TEST_DEPENDS}
.endif
regression-test: build
@${ECHO_MSG} "===> Testing ${PORTNAME} (patience...)"
@cd ${WRKSRC} && nosetests -q
.if !empty(PORT_OPTIONS:MTEST)
pre-install: regression-test
.endif
.include <bsd.port.mk>
|