Prune devel/py-EnthoughtBase
[dports.git] / devel / py-jsonrpclib / Makefile
1 # Created by: Attila Nagy <bra@fsn.hu>
2 # $FreeBSD$
3
4 PORTNAME=       jsonrpclib
5 PORTVERSION=    0.1.3
6 PORTREVISION=   2
7 CATEGORIES=     devel python
8 MASTER_SITES=   CHEESESHOP
9 PKGNAMEPREFIX=  ${PYTHON_PKGNAMEPREFIX}
10
11 MAINTAINER=     bra@fsn.hu
12 COMMENT=        Implements the JSON-RPC 2.0 proposed specification in pure Python
13
14 LICENSE=        APACHE20
15
16 USES=           python:2
17 USE_PYTHON=     distutils autoplist
18
19 OPTIONS_DEFINE= CJSON
20 CJSON_DESC=     Use cjson instead of json or simplejson
21
22 .include <bsd.port.options.mk>
23
24 .if ${PORT_OPTIONS:MCJSON}
25 RUN_DEPENDS+=   ${PYTHON_PKGNAMEPREFIX}cjson>0:${PORTSDIR}/devel/py-cjson
26 .endif
27
28 .include <bsd.port.mk>