Index: head/graphics/Makefile =================================================================== --- head/graphics/Makefile +++ head/graphics/Makefile @@ -881,6 +881,7 @@ SUBDIR += py-wand SUBDIR += py-webcolors SUBDIR += py3-cairo + SUBDIR += py3-pillow SUBDIR += pygts SUBDIR += pymorph SUBDIR += pysvg Index: head/graphics/py-pillow/Makefile =================================================================== --- head/graphics/py-pillow/Makefile +++ head/graphics/py-pillow/Makefile @@ -41,8 +41,8 @@ TIFF_VARS_OFF= PYDISTUTILS_BUILDARGS+=--disable-tiff TKINTER_USES= tk -TKINTER_BUILD_DEPENDS= ${PYTHON_PKGNAMEPREFIX}tkinter>0:x11-toolkits/py-tkinter -TKINTER_RUN_DEPENDS= ${PYTHON_PKGNAMEPREFIX}tkinter>0:x11-toolkits/py-tkinter +TKINTER_BUILD_DEPENDS?= ${PYTHON_PKGNAMEPREFIX}tkinter>0:x11-toolkits/py-tkinter +TKINTER_RUN_DEPENDS?= ${PYTHON_PKGNAMEPREFIX}tkinter>0:x11-toolkits/py-tkinter TKINTER_VARS= PYDISTUTILS_BUILDARGS+="--enable-tcl --enable-tk --include-dirs=${TCL_INCLUDEDIR}:${TK_INCLUDEDIR}" TKINTER_VARS_OFF= PYDISTUTILS_BUILDARGS+="--disable-tcl --disable-tk" @@ -50,9 +50,8 @@ WEBP_VARS= PYDISTUTILS_BUILDARGS+=--enable-webp WEBP_VARS_OFF= PYDISTUTILS_BUILDARGS+=--disable-webp -USES= cpe python +USES?= cpe python USE_GITHUB= yes -USES= python USE_PYTHON= autoplist concurrent distutils GH_ACCOUNT= python-${PORTNAME} Index: head/graphics/py3-pillow/Makefile =================================================================== --- head/graphics/py3-pillow/Makefile +++ head/graphics/py3-pillow/Makefile @@ -0,0 +1,11 @@ +# Created by: Ben Woods +# $FreeBSD$ + +MASTERDIR= ${.CURDIR}/../py-pillow + +TKINTER_BUILD_DEPENDS= ${PYTHON_PKGNAMEPREFIX}tkinter>0:x11-toolkits/${PYTHON_PKGNAMEPREFIX}tkinter +TKINTER_RUN_DEPENDS= ${PYTHON_PKGNAMEPREFIX}tkinter>0:x11-toolkits/${PYTHON_PKGNAMEPREFIX}tkinter + +USES= cpe python:3.2+ + +.include "${MASTERDIR}/Makefile"