blob: 84ac201b82b8ad796e0284b6edd51ececf6a995b (
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
|
# ex:ts=8
# Ports collection makefile for: py-twitter
# Date created: Apr 13, 2007
# Whom: ijliao
#
# $FreeBSD$
#
PORTNAME= twitter
PORTVERSION= 0.5
CATEGORIES= net python
MASTER_SITES= ${MASTER_SITE_GOOGLE_CODE}
PKGNAMEPREFIX= ${PYTHON_PKGNAMEPREFIX}
DISTNAME= python-${PORTNAME}-${PORTVERSION}
MAINTAINER= python@FreeBSD.org
COMMENT= A python wrapper around the Twitter API
BUILD_DEPENDS= ${PYTHON_PKGNAMEPREFIX}simplejson>0:${PORTSDIR}/devel/py-simplejson
RUN_DEPENDS= ${BUILD_DEPENDS}
PROJECTHOST= python-twitter
USE_PYTHON= yes
USE_PYDISTUTILS= easy_install
PYDISTUTILS_PKGNAME= python_twitter
.include <bsd.port.pre.mk>
.if ${OSVERSION} < 600000
BROKEN= Leaves egg file behind on deinstall
.endif
.include <bsd.port.post.mk>
|