2011-06-11 21:21:14 +02:00
|
|
|
# New ports collection makefile for: py-beanstalkc
|
|
|
|
# Date created: 2011-03-18
|
|
|
|
# Whom: Li-Wen Hsu <lwhsu@FreeBSD.org>
|
|
|
|
#
|
|
|
|
# $FreeBSD$
|
|
|
|
#
|
|
|
|
|
|
|
|
PORTNAME= beanstalkc
|
2012-09-10 21:23:38 +02:00
|
|
|
PORTVERSION= 0.3.0
|
2011-06-11 21:21:14 +02:00
|
|
|
CATEGORIES= net python
|
|
|
|
MASTER_SITES= CHEESESHOP
|
|
|
|
PKGNAMEPREFIX= ${PYTHON_PKGNAMEPREFIX}
|
|
|
|
|
2012-05-30 14:08:24 +02:00
|
|
|
MAINTAINER= koobs.freebsd@gmail.com
|
|
|
|
COMMENT= A simple beanstalkd client library for Python
|
|
|
|
|
|
|
|
LICENSE= AL2
|
2011-06-11 21:21:14 +02:00
|
|
|
|
|
|
|
USE_PYTHON= yes
|
|
|
|
USE_PYDISTUTILS= easy_install
|
|
|
|
|
2012-07-22 13:57:35 +02:00
|
|
|
OPTIONS_DEFINE= YAML
|
|
|
|
OPTIONS_DEFAULT= YAML
|
2012-09-10 21:23:38 +02:00
|
|
|
YAML_DESC= Support parsing YAML responses
|
2011-06-11 21:21:14 +02:00
|
|
|
|
|
|
|
# bypass infrastructure bug
|
|
|
|
OPTIONSFILE= ${PORT_DBDIR}/py-${PORTNAME}/options
|
|
|
|
|
|
|
|
.include <bsd.port.options.mk>
|
|
|
|
|
2012-07-22 13:57:35 +02:00
|
|
|
.if ${PORT_OPTIONS:MYAML}
|
2011-06-11 21:21:14 +02:00
|
|
|
RUN_DEPENDS+= ${PYTHON_PKGNAMEPREFIX}yaml>0:${PORTSDIR}/devel/py-yaml
|
|
|
|
.endif
|
|
|
|
|
|
|
|
.include <bsd.port.mk>
|