diff options
author | woodsb02 <woodsb02@FreeBSD.org> | 2017-06-10 11:16:44 +0800 |
---|---|---|
committer | woodsb02 <woodsb02@FreeBSD.org> | 2017-06-10 11:16:44 +0800 |
commit | cb579c12bced4a0eeb12806dd05f4e3aa9d1680e (patch) | |
tree | ce13aa0b5a77a8eac2415d6ba96d362f4c0670fc /security | |
parent | dfabec23db79ebdbb346ae98f33fc348da695bec (diff) | |
download | freebsd-ports-gnome-cb579c12bced4a0eeb12806dd05f4e3aa9d1680e.tar.gz freebsd-ports-gnome-cb579c12bced4a0eeb12806dd05f4e3aa9d1680e.tar.zst freebsd-ports-gnome-cb579c12bced4a0eeb12806dd05f4e3aa9d1680e.zip |
security/py-cryptography: Fix build with Python 3.3
PR: 219833
Reported by: koobs
Approved by: portmgr blanket
Diffstat (limited to 'security')
-rw-r--r-- | security/py-cryptography/Makefile | 4 |
1 files changed, 3 insertions, 1 deletions
diff --git a/security/py-cryptography/Makefile b/security/py-cryptography/Makefile index 9e93ace7b5bf..860ebb52b63c 100644 --- a/security/py-cryptography/Makefile +++ b/security/py-cryptography/Makefile @@ -33,8 +33,10 @@ LDFLAGS+= -L${OPENSSLLIB} RUN_DEPENDS+= ${PYTHON_PKGNAMEPREFIX}ipaddress>0:net/py-ipaddress .endif -.if ${PYTHON_REL} < 3400 +.if ${PYTHON_REL} < 3300 RUN_DEPENDS+= ${PYTHON_PKGNAMEPREFIX}enum34>0:devel/py-enum34 +.elif ${PYTHON_REL} < 3400 +RUN_DEPENDS+= ${PYTHON_PKGNAMEPREFIX}enum34>0:devel/py3-enum34 .endif post-install: |