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

Kai Knoblich kai at FreeBSD.org
Sat Aug 3 21:08:53 UTC 2019


Author: kai
Date: Sat Aug  3 21:08:52 2019
New Revision: 508031
URL: https://svnweb.freebsd.org/changeset/ports/508031

Log:
  graphics/py-pillow: Enable default support for LCMS
  
  Convert the LCMS option, which installs graphics/lcms2 and enables the
  bindings for LCMS (= Little Color Management System), into a default one.
  
  The library liblcms2.so from graphics/lcms2 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 do the same as in r504993 by making the LCMS option as default to get
  real use out of liblcms2.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	Sat Aug  3 20:57:59 2019	(r508030)
+++ head/graphics/py-pillow/Makefile	Sat Aug  3 21:08:52 2019	(r508031)
@@ -3,7 +3,7 @@
 
 PORTNAME=	pillow
 PORTVERSION=	6.0.0
-PORTREVISION=	1
+PORTREVISION=	2
 CATEGORIES=	graphics python
 PKGNAMEPREFIX=	${PYTHON_PKGNAMEPREFIX}
 
@@ -27,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 TIFF TKINTER WEBP
+OPTIONS_DEFAULT=	FREETYPE JPEG JPEG2000 LCMS 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