svn commit: r504993 - head/graphics/py-pillow

Kai Knoblich kai at FreeBSD.org
Sun Jun 23 21:19:55 UTC 2019


Author: kai
Date: Sun Jun 23 21:19:54 2019
New Revision: 504993
URL: https://svnweb.freebsd.org/changeset/ports/504993

Log:
  graphics/py-pillow: Enable default support for TIFF images
  
  Add the TIFF knob, which installs graphics/tiff and enables the bindings for
  TIFF image support, to the default options.
  
  The library libtiff.so from graphics/tiff is already installed implicitly
  through graphics/openjpeg using the default option JPEG2000 but Pillow's own
  main library, _imaging.so, is not linked against it.
  
  Thus convert the TIFF option into a default one to gain real use of the
  libtiff.so that has been already there.
  
  Approved by:	koobs (maintainer)

Modified:
  head/graphics/py-pillow/Makefile

Modified: head/graphics/py-pillow/Makefile
==============================================================================
--- head/graphics/py-pillow/Makefile	Sun Jun 23 20:51:48 2019	(r504992)
+++ head/graphics/py-pillow/Makefile	Sun Jun 23 21:19:54 2019	(r504993)
@@ -3,6 +3,7 @@
 
 PORTNAME=	pillow
 PORTVERSION=	6.0.0
+PORTREVISION=	1
 CATEGORIES=	graphics python
 PKGNAMEPREFIX=	${PYTHON_PKGNAMEPREFIX}
 
@@ -26,7 +27,7 @@ GH_ACCOUNT=	python-${PORTNAME}
 GH_PROJECT=	${PORTNAME:C/p/P/}
 
 OPTIONS_DEFINE=		FREETYPE JPEG JPEG2000 LCMS OLE PNG TIFF TKINTER WEBP
-OPTIONS_DEFAULT=	FREETYPE JPEG JPEG2000 OLE PNG TKINTER WEBP
+OPTIONS_DEFAULT=	FREETYPE JPEG JPEG2000 OLE PNG TIFF TKINTER WEBP
 
 LCMS_DESC=		Little Color Management System
 OLE_DESC=		Microsoft OLE2 file format support


More information about the svn-ports-all mailing list