Skip site navigation (1)Skip section navigation (2)
Date:      Sun, 23 Jun 2019 21:19:54 +0000 (UTC)
From:      Kai Knoblich <kai@FreeBSD.org>
To:        ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org
Subject:   svn commit: r504993 - head/graphics/py-pillow
Message-ID:  <201906232119.x5NLJsZt025716@repo.freebsd.org>

next in thread | raw e-mail | index | archive | help
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



Want to link to this message? Use this URL: <https://mail-archive.FreeBSD.org/cgi/mid.cgi?201906232119.x5NLJsZt025716>