blob: 803359dc4d1b9d30121fe3a94b11919cca7bcd84 (
plain)
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
|
# Created by: Cheng-Lung Sung <clsung@FreeBSD.org>
# $FreeBSD$
PORTNAME= six
PORTVERSION= 1.4.1
CATEGORIES= devel python
MASTER_SITES= CHEESESHOP
PKGNAMEPREFIX= ${PYTHON_PKGNAMEPREFIX}
MAINTAINER= zope@FreeBSD.org
COMMENT= Python 2 and 3 compatibility utilities
LICENSE= MIT
USE_PYTHON= yes
USE_PYDISTUTILS= yes
PLIST_FILES= %%PYTHON_SITELIBDIR%%/six.py \
%%PYTHON_SITELIBDIR%%/six.pyc \
%%PYTHON_SITELIBDIR%%/six.pyo
.include <bsd.port.pre.mk>
post-install:
.if ${PYTHON_REL} >= 320
.include "${PORTSDIR}/devel/py-virtualenv/files/py3k-fix-pkg-plist.inc"
.endif
.include <bsd.port.post.mk>
|