Well, that was anticlimactic. Here's the update to jpeg 9. For some reason I was expecting significant API changes, but this merely adds support for a reversible color transform to improve compression of RGB images.
Major bump because of a struct change and error code renumbering. Yes, the upstream version has gone backwards. libtool is hard. I don't see anything that would warrant a bulk build. OK? Index: Makefile =================================================================== RCS file: /cvs/ports/graphics/jpeg/Makefile,v retrieving revision 1.47 diff -u -p -r1.47 Makefile --- Makefile 18 Apr 2013 12:21:31 -0000 1.47 +++ Makefile 19 Apr 2013 14:02:58 -0000 @@ -2,9 +2,9 @@ COMMENT= IJG's JPEG compression utilities#' -V= 8d +V= 9 DISTNAME= jpeg-$V -SHARED_LIBS= jpeg 65.0 # 12.0 +SHARED_LIBS= jpeg 66.0 # 9.0 CATEGORIES= graphics DPB_PROPERTIES= parallel HOMEPAGE= http://www.ijg.org/ Index: distinfo =================================================================== RCS file: /cvs/ports/graphics/jpeg/distinfo,v retrieving revision 1.7 diff -u -p -r1.7 distinfo --- distinfo 18 Apr 2013 12:21:31 -0000 1.7 +++ distinfo 19 Apr 2013 14:02:58 -0000 @@ -1,2 +1,2 @@ -SHA256 (jpegsrc.v8d.tar.gz) = AAKbFHPw8Opy+8oyMOjLJXl/uyfliuLka7i/WoBv4LM= -SIZE (jpegsrc.v8d.tar.gz) = 991456 +SHA256 (jpegsrc.v9.tar.gz) = xOKek3Wq9gtLeduHpYsGP7W4T5I77peogoCz0Vnn5TU= +SIZE (jpegsrc.v9.tar.gz) = 987900 Index: patches/patch-jerror_c =================================================================== RCS file: /cvs/ports/graphics/jpeg/patches/patch-jerror_c,v retrieving revision 1.2 diff -u -p -r1.2 patch-jerror_c --- patches/patch-jerror_c 14 Oct 2009 13:03:44 -0000 1.2 +++ patches/patch-jerror_c 19 Apr 2013 14:02:58 -0000 @@ -4,9 +4,9 @@ This one is slightly problematic. If an room for its error buffer than the recommended JMSG_LENGTH_MAX, the error message buffer will still overflow. ---- jerror.c.orig Sat Oct 10 12:43:21 2009 -+++ jerror.c Sat Oct 10 12:43:52 2009 -@@ -190,9 +190,9 @@ format_message (j_common_ptr cinfo, char * buffer) +--- jerror.c.orig Wed Aug 8 14:49:02 2012 ++++ jerror.c Thu Apr 18 21:33:54 2013 +@@ -191,9 +191,9 @@ format_message (j_common_ptr cinfo, char * buffer) /* Format the message into the passed buffer */ if (isstring) -- Christian "naddy" Weisgerber [email protected]
