From owner-svn-ports-all@freebsd.org Sat Oct 28 08:04:33 2017 Return-Path: Delivered-To: svn-ports-all@mailman.ysv.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:1900:2254:206a::19:1]) by mailman.ysv.freebsd.org (Postfix) with ESMTP id 4119CE5E7C7; Sat, 28 Oct 2017 08:04:33 +0000 (UTC) (envelope-from thierry@FreeBSD.org) Received: from repo.freebsd.org (repo.freebsd.org [IPv6:2610:1c1:1:6068::e6a:0]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (Client did not present a certificate) by mx1.freebsd.org (Postfix) with ESMTPS id 05FD267439; Sat, 28 Oct 2017 08:04:32 +0000 (UTC) (envelope-from thierry@FreeBSD.org) Received: from repo.freebsd.org ([127.0.1.37]) by repo.freebsd.org (8.15.2/8.15.2) with ESMTP id v9S84Wet038073; Sat, 28 Oct 2017 08:04:32 GMT (envelope-from thierry@FreeBSD.org) Received: (from thierry@localhost) by repo.freebsd.org (8.15.2/8.15.2/Submit) id v9S84VgS038071; Sat, 28 Oct 2017 08:04:31 GMT (envelope-from thierry@FreeBSD.org) Message-Id: <201710280804.v9S84VgS038071@repo.freebsd.org> X-Authentication-Warning: repo.freebsd.org: thierry set sender to thierry@FreeBSD.org using -f From: Thierry Thomas Date: Sat, 28 Oct 2017 08:04:31 +0000 (UTC) To: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org Subject: svn commit: r453048 - in head/graphics/cimg: . files X-SVN-Group: ports-head X-SVN-Commit-Author: thierry X-SVN-Commit-Paths: in head/graphics/cimg: . files X-SVN-Commit-Revision: 453048 X-SVN-Commit-Repository: ports MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit X-BeenThere: svn-ports-all@freebsd.org X-Mailman-Version: 2.1.23 Precedence: list List-Id: SVN commit messages for the ports tree List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Sat, 28 Oct 2017 08:04:33 -0000 Author: thierry Date: Sat Oct 28 08:04:31 2017 New Revision: 453048 URL: https://svnweb.freebsd.org/changeset/ports/453048 Log: Remove OpenEXR support, due to unfixed vulnerabilities. Reported by: mandree Sponsored by: HAMoween'17 Modified: head/graphics/cimg/Makefile head/graphics/cimg/files/patch-examples__Makefile Modified: head/graphics/cimg/Makefile ============================================================================== --- head/graphics/cimg/Makefile Sat Oct 28 07:46:30 2017 (r453047) +++ head/graphics/cimg/Makefile Sat Oct 28 08:04:31 2017 (r453048) @@ -3,6 +3,7 @@ PORTNAME= cimg DISTVERSION= 2.1.3 +PORTREVISION= 1 PORTEPOCH= 3 CATEGORIES= graphics devel @@ -53,7 +54,6 @@ LIB_DEPENDS+= libcurl.so:ftp/curl \ libpng.so:graphics/png \ libtiff.so:graphics/tiff \ libHalf.so:graphics/ilmbase \ - libIlmImf.so:graphics/OpenEXR \ libgimp-2.0.so:graphics/gimp-app \ libfftw3.so:math/fftw3 \ libopencv_legacy.so:graphics/opencv \ Modified: head/graphics/cimg/files/patch-examples__Makefile ============================================================================== --- head/graphics/cimg/files/patch-examples__Makefile Sat Oct 28 07:46:30 2017 (r453047) +++ head/graphics/cimg/files/patch-examples__Makefile Sat Oct 28 08:04:31 2017 (r453048) @@ -1,4 +1,4 @@ ---- examples/Makefile.orig 2017-08-19 21:27:17 UTC +--- examples/Makefile.orig 2017-10-27 09:00:53 UTC +++ examples/Makefile @@ -84,7 +84,7 @@ CIMG_EXTRA_FILES = use_tiff_stream use_j # Set correct variables and paths @@ -60,14 +60,18 @@ # Flags to enable native support for MINC2 image files, using the MINC2 library. # ( http://en.wikibooks.org/wiki/MINC/Reference/MINC2.0_Users_Guide ) -@@ -211,14 +211,14 @@ CIMG_MINC2_LIBS = -lminc_io -lvolume_io2 +@@ -210,15 +210,15 @@ CIMG_MINC2_LIBS = -lminc_io -lvolume_io2 + # Flags to enable native support for EXR image files, using the OpenEXR library. # ( http://www.openexr.com/ ) - CIMG_OPENEXR_DEFINE = -Dcimg_use_openexr +-CIMG_OPENEXR_DEFINE = -Dcimg_use_openexr -CIMG_OPENEXR_INCDIR = -I/usr/include/OpenEXR -+CIMG_OPENEXR_INCDIR = -I$(LOCALBASE)/include/OpenEXR - CIMG_OPENEXR_CFLAGS = $(CIMG_OPENEXR_DEFINE) $(CIMG_OPENEXR_INCDIR) - CIMG_OPENEXR_LIBS = -lIlmImf -lHalf +-CIMG_OPENEXR_CFLAGS = $(CIMG_OPENEXR_DEFINE) $(CIMG_OPENEXR_INCDIR) +-CIMG_OPENEXR_LIBS = -lIlmImf -lHalf ++#CIMG_OPENEXR_DEFINE = -Dcimg_use_openexr ++#CIMG_OPENEXR_INCDIR = -I$(LOCALBASE)/include/OpenEXR ++#CIMG_OPENEXR_CFLAGS = $(CIMG_OPENEXR_DEFINE) $(CIMG_OPENEXR_INCDIR) ++#CIMG_OPENEXR_LIBS = -lIlmImf -lHalf # Flags to enable native support for various video files, using the FFMPEG library. # ( http://www.ffmpeg.org/ )