diff options
-rw-r--r-- | security/Makefile | 1 | ||||
-rw-r--r-- | security/py-openssl/Makefile | 4 | ||||
-rw-r--r-- | security/py3-openssl/Makefile | 11 |
3 files changed, 14 insertions, 2 deletions
diff --git a/security/Makefile b/security/Makefile index cfd639f78147..257ddbe0ee40 100644 --- a/security/Makefile +++ b/security/Makefile @@ -966,6 +966,7 @@ SUBDIR += py3-certifi SUBDIR += py3-cryptography SUBDIR += py3-libnacl + SUBDIR += py3-openssl SUBDIR += py3-pycrypto SUBDIR += qtkeychain-qt4 SUBDIR += qtkeychain-qt5 diff --git a/security/py-openssl/Makefile b/security/py-openssl/Makefile index 7fae0df1b899..6e6eacd036c9 100644 --- a/security/py-openssl/Makefile +++ b/security/py-openssl/Makefile @@ -14,12 +14,12 @@ COMMENT= Python interface to the OpenSSL library LICENSE= APACHE20 LICENSE_FILE= ${WRKSRC}/LICENSE -RUN_DEPENDS= ${PYTHON_PKGNAMEPREFIX}cryptography>=0.2.1:security/py-cryptography \ +RUN_DEPENDS?= ${PYTHON_PKGNAMEPREFIX}cryptography>=0.2.1:security/py-cryptography \ ${PYTHON_PKGNAMEPREFIX}six>=1.5.2:devel/py-six OPTIONS_DEFINE= EXAMPLES -USES= cpe python +USES?= cpe python USE_PYTHON= autoplist concurrent distutils pythonprefix CPE_VENDOR= jean-paul_calderone diff --git a/security/py3-openssl/Makefile b/security/py3-openssl/Makefile new file mode 100644 index 000000000000..872384f85553 --- /dev/null +++ b/security/py3-openssl/Makefile @@ -0,0 +1,11 @@ +# Created by: Ben Woods <woodsb02@FreeBSD.org> +# $FreeBSD$ + +MASTERDIR= ${.CURDIR}/../py-openssl + +RUN_DEPENDS?= ${PYTHON_PKGNAMEPREFIX}cryptography>=0.2.1:security/py3-cryptography \ + ${PYTHON_PKGNAMEPREFIX}six>=1.5.2:devel/py3-six + +USES= cpe python:3.3+ + +.include "${MASTERDIR}/Makefile" |