diff options
author | rm <rm@FreeBSD.org> | 2013-09-20 16:41:09 +0800 |
---|---|---|
committer | rm <rm@FreeBSD.org> | 2013-09-20 16:41:09 +0800 |
commit | cb39fb39fdc60c2239e19c37fe3052737bfe68e4 (patch) | |
tree | 24a8e316023cae65627da503490c6c2238461801 /devel | |
parent | c66a85c940c36390c5ec1d02332fc66228232fac (diff) | |
download | freebsd-ports-gnome-cb39fb39fdc60c2239e19c37fe3052737bfe68e4.tar.gz freebsd-ports-gnome-cb39fb39fdc60c2239e19c37fe3052737bfe68e4.tar.zst freebsd-ports-gnome-cb39fb39fdc60c2239e19c37fe3052737bfe68e4.zip |
- fix packing list with python3
Diffstat (limited to 'devel')
-rw-r--r-- | devel/py-six/Makefile | 9 |
1 files changed, 8 insertions, 1 deletions
diff --git a/devel/py-six/Makefile b/devel/py-six/Makefile index 5ac9f180af67..803359dc4d1b 100644 --- a/devel/py-six/Makefile +++ b/devel/py-six/Makefile @@ -19,4 +19,11 @@ PLIST_FILES= %%PYTHON_SITELIBDIR%%/six.py \ %%PYTHON_SITELIBDIR%%/six.pyc \ %%PYTHON_SITELIBDIR%%/six.pyo -.include <bsd.port.mk> +.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> |