From 74df2d8f8c858de1fcbdfe51cf4c8cf33bbe9d79 Mon Sep 17 00:00:00 2001 From: araujo Date: Fri, 24 Mar 2017 18:30:47 +0000 Subject: Make cython and cython3 co-exist. Reported by: jbeich@ Differential Revision: https://reviews.freebsd.org/D5845 (based on) --- lang/cython/Makefile | 2 +- lang/cython3/Makefile | 4 ++++ 2 files changed, 5 insertions(+), 1 deletion(-) (limited to 'lang') diff --git a/lang/cython/Makefile b/lang/cython/Makefile index 0ee5f675d2f3..c5cec1927350 100644 --- a/lang/cython/Makefile +++ b/lang/cython/Makefile @@ -15,7 +15,7 @@ LICENSE= APACHE20 LICENSE_FILE= ${WRKSRC}/LICENSE.txt USES?= python -USE_PYTHON= autoplist distutils +USE_PYTHON+= autoplist distutils post-install: ${FIND} ${STAGEDIR}${PYTHONPREFIX_SITELIBDIR}/Cython \ diff --git a/lang/cython3/Makefile b/lang/cython3/Makefile index be5425fb76c8..426919c58514 100644 --- a/lang/cython3/Makefile +++ b/lang/cython3/Makefile @@ -1,6 +1,10 @@ MASTERDIR= ${.CURDIR}/../cython PKGNAMESUFFIX= 3 +PKGNAMESUFFIX= 3 + USES= python:3.3+ +USE_PYTHON= concurrent +UNIQUE_SUFFIX= ${PKGNAMESUFFIX} .include "${MASTERDIR}/Makefile" -- cgit