Skip site navigation (1)Skip section navigation (2)
Date:      Thu, 14 Mar 2019 21:10:23 +0000 (UTC)
From:      Thierry Thomas <thierry@FreeBSD.org>
To:        ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org
Subject:   svn commit: r495737 - in head/graphics/cimg: . files
Message-ID:  <201903142110.x2ELANpx018624@repo.freebsd.org>

next in thread | raw e-mail | index | archive | help
Author: thierry
Date: Thu Mar 14 21:10:22 2019
New Revision: 495737
URL: https://svnweb.freebsd.org/changeset/ports/495737

Log:
  Upgrade to v.2.5.0.
  
  Note: support of Eigen3 is not yet enabled for the examples.

Added:
  head/graphics/cimg/files/patch-CImg.h   (contents, props changed)
Modified:
  head/graphics/cimg/Makefile
  head/graphics/cimg/distinfo
  head/graphics/cimg/files/patch-examples__Makefile

Modified: head/graphics/cimg/Makefile
==============================================================================
--- head/graphics/cimg/Makefile	Thu Mar 14 20:53:31 2019	(r495736)
+++ head/graphics/cimg/Makefile	Thu Mar 14 21:10:22 2019	(r495737)
@@ -3,7 +3,7 @@
 
 PORTNAME=	cimg
 DISTVERSIONPREFIX=	v.
-DISTVERSION=	2.4.5
+DISTVERSION=	2.5.0
 PORTEPOCH=	3
 CATEGORIES=	graphics devel
 

Modified: head/graphics/cimg/distinfo
==============================================================================
--- head/graphics/cimg/distinfo	Thu Mar 14 20:53:31 2019	(r495736)
+++ head/graphics/cimg/distinfo	Thu Mar 14 21:10:22 2019	(r495737)
@@ -1,3 +1,3 @@
-TIMESTAMP = 1547381767
-SHA256 (dtschump-CImg-v.2.4.5_GH0.tar.gz) = 4c2e506fdd3ff9a1e741b3d321c68491b5f2e9282d8093cefbc4174ca8987d53
-SIZE (dtschump-CImg-v.2.4.5_GH0.tar.gz) = 11075045
+TIMESTAMP = 1552596120
+SHA256 (dtschump-CImg-v.2.5.0_GH0.tar.gz) = 4616b51d8657d66625fdc04e8bdb49e60b3c943ac6c2512abff566eae46b5cde
+SIZE (dtschump-CImg-v.2.5.0_GH0.tar.gz) = 11075897

Added: head/graphics/cimg/files/patch-CImg.h
==============================================================================
--- /dev/null	00:00:00 1970	(empty, because file is newly added)
+++ head/graphics/cimg/files/patch-CImg.h	Thu Mar 14 21:10:22 2019	(r495737)
@@ -0,0 +1,10 @@
+--- CImg.h.orig	2019-03-10 13:46:23 UTC
++++ CImg.h
+@@ -26529,7 +26529,6 @@ namespace cimg_library_suffixed {
+           cimg_forXY(vec,k,l) vec(k,l) = (T)(lapA[(N - 1 - k)*N + l]);
+         } else { val.fill(0); vec.fill(0); }
+         delete[] lapA; delete[] lapW; delete[] WORK;
+-        sort_eigenvalues = false;
+ #else
+ 
+ 	val.assign(1,_width);

Modified: head/graphics/cimg/files/patch-examples__Makefile
==============================================================================
--- head/graphics/cimg/files/patch-examples__Makefile	Thu Mar 14 20:53:31 2019	(r495736)
+++ head/graphics/cimg/files/patch-examples__Makefile	Thu Mar 14 21:10:22 2019	(r495737)
@@ -1,4 +1,4 @@
---- examples/Makefile.orig	2019-01-07 12:08:23 UTC
+--- examples/Makefile.orig	2019-03-10 13:46:23 UTC
 +++ examples/Makefile
 @@ -89,7 +89,7 @@ VERSION2 = $(shell grep 'cimg_version\ ' ../CImg.h | t
  VERSION3 = $(shell grep 'cimg_version\ ' ../CImg.h | tail -c2 | head -c1)
@@ -30,7 +30,7 @@
  endif
  ifdef IS_ICPC
  OPT_CFLAGS = -fast
-@@ -217,7 +217,7 @@ JPEG_LIBS = -ljpeg
+@@ -222,7 +222,7 @@ JPEG_LIBS = -ljpeg
  TIFF_DEFINE = -Dcimg_use_tiff
  TIFF_INCDIR =
  TIFF_CFLAGS = $(TIFF_DEFINE) $(TIFF_INCDIR)
@@ -39,7 +39,7 @@
  
  # Flags to enable native support for MINC2 image files, using the MINC2 library.
  # ( http://en.wikibooks.org/wiki/MINC/Reference/MINC2.0_Users_Guide )
-@@ -229,16 +229,16 @@ MINC2_LIBS = -lminc_io -lvolume_io2 -lminc2 -lnetcdf -
+@@ -234,16 +234,16 @@ MINC2_LIBS = -lminc_io -lvolume_io2 -lminc2 -lnetcdf -
  # Flags to enable native support for EXR image files, using the OpenEXR library.
  # ( http://www.openexr.com/ )
  OPENEXR_DEFINE = -Dcimg_use_openexr
@@ -61,7 +61,7 @@
  
  # Flags to enable native support for compressed .cimgz files, using the Zlib library.
  # ( http://www.zlib.net/ )
-@@ -274,15 +274,15 @@ endif
+@@ -279,15 +279,15 @@ endif
  
  # Flags to enable the use of LAPACK routines for matrix computation
  # ( http://www.netlib.org/lapack/ )
@@ -81,7 +81,7 @@
  BOARD_CFLAGS = $(BOARD_DEFINE) $(BOARD_INCDIR)
  BOARD_LIBS = -lboard
  
-@@ -361,6 +361,7 @@ $(X11_LIBS) \
+@@ -366,6 +366,7 @@ $(X11_LIBS) \
  $(TIFF_LIBS) \
  $(LAPACK_LIBS) \
  $(XSHM_LIBS)" \
@@ -89,7 +89,7 @@
  all $(EXTRA_FILES)
  
  # Linux/BSD/Mac OSX targets, with X11 display.
-@@ -453,8 +454,11 @@ $(ZLIB_CFLAGS) \
+@@ -458,8 +459,11 @@ $(ZLIB_CFLAGS) \
  $(CURL_CFLAGS) \
  $(OPENCV_CFLAGS) \
  $(MAGICK_CFLAGS) \
@@ -101,7 +101,7 @@
  $(X11_LIBS) \
  $(XSHM_LIBS) \
  $(XRANDR_LIBS) \
-@@ -466,6 +470,8 @@ $(ZLIB_LIBS) \
+@@ -471,6 +475,8 @@ $(ZLIB_LIBS) \
  $(CURL_LIBS) \
  $(OPENCV_LIBS) \
  $(MAGICK_LIBS) \



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