Mon Feb 22 13:21:41 2010 UTC ()
Pullup ticket #3017 - requested by obache
GraphicsMagick: security update

Revisions pulled up:
- graphics/GraphicsMagick/Makefile		1.28-1.29-1.30
- graphics/GraphicsMagick/PLIST			1.14
- graphics/GraphicsMagick/distinfo		1.22-1.24
---
Module Name:	pkgsrc
Committed By:	obache
Date:		Fri Feb  5 05:09:07 UTC 2010

Modified Files:
	pkgsrc/graphics/GraphicsMagick: Makefile PLIST distinfo

Log Message:
Update GraphicsMagick to 1.3.9.

1.3.9 (February 4, 2010)
========================

Security Fixes:

   * None

Bug fixes:

   * Fix "double free" error when using gm import -frame.

   * XPM does not support RGBA color syntax, so return RGB instead.

   * The display '-update' option was only working in conjunction with
     the '-delay' option with a delay setting of 2 or greater.

   * For formats which support multiple frames, output with +adjoing to
     filenames containing a scene specification (e.g. foo%02d.tiff) was
     resulting in wrong output file names.

   * -convolve was crashing rather than reporting an error.

   * Fixed crash if the number of OpenMP threads was reduced from the
     original value via '-limit threads' or omp_set_num_threads().

   * -blur was not blurring the opacity channel for solid-color images.

   * When installing HTML documentation, many files were included which
     are not part of the formatted documentation.

   * Several deleted global string constants are restored with
     deprecated status in order to assure that symbols are not removed
     from the ABI.

New Features:

   * None

Feature improvements:

   * None

Performance Improvements:

   * None

Behavior Changes:

   * There is no longer an implicit 'adjoin' if an output filename
     contains an apparent scene specification (e.g. foo%02d.tiff) and
     multiple files are not needed to save the image..  It is necessary
     to use +adjoin.  For example ``gm convert foo.pdf +adjoin
     %02d.tiff``.

   * -flatten now applies the image background color under the first
     image in the list if it is not already opaque.
---
Module Name:	pkgsrc
Committed By:	obache
Date:		Thu Feb 11 06:43:55 UTC 2010

Modified Files:
	pkgsrc/graphics/GraphicsMagick: Makefile distinfo

Log Message:
Update GraphicsMagick to 1.3.10.

1.3.10 (February 10, 2010)
==========================

Security Fixes:

   * None

Bug fixes:

   * +adjoin was not working correctly for the case when only one image
     frame is present.  With +adjoin and writing one frame to
     "foo%d.jpg" it was outputting "foo%d.jpg" rather than "foo0.jpg".

   * When drawing paths, memory allocation for the points was much
     larger than it needed to be (patch by Vladimir Lukianov).

New Features:

   * None

Feature improvements:

   * None

Performance Improvements:

   * None

Behavior Changes:

   * To reiterate the change which first appeared in 1.3.9, there is no
     longer an implicit +adjoin if the output file name happens to
     contain a %d sequence, or there are multiple frames and the output
     file format only supports storing one frame.  Specify +adjoin if
     scene number substition is desired in the output file names.
---
Module Name:	pkgsrc
Committed By:	obache
Date:		Mon Feb 22 06:10:32 UTC 2010

Modified Files:
	pkgsrc/graphics/GraphicsMagick: Makefile distinfo

Log Message:
Update GraphicsMagick to 1.3.11.

1.3.11 (February 21, 2010)
==========================

Security Fixes:

   * Fixed array underflow on systems using signed char which could
     result in a program crash due to extended characters in filenames
     or in certain file formats.

Bug fixes:

   * Fixed array underflow on systems using signed char which could
     result in a program crash due to extended characters in filenames
     or in certain file formats.

New Features:

   * Added a -thumbnail command to 'convert' and 'mogrify'.  This is a
     faster way to scale down the image when speed is a primary
     concern.

   * Added a -extent command to 'convert' and 'mogrify' which
     composites the image on top of a backing canvas image of solid
     color.

   * Added support for -compose to the 'convert' and 'mogrify', which
     were documented to support it (but did not).

Feature improvements:

   * None

Performance Improvements:

   * Requests for 'Over' and 'Atop' composition are converted to a
     request for the (faster) 'Copy' composition when both images are
     opaque.

Behavior Changes:

   * None


(tron)
diff -r1.25.4.1 -r1.25.4.2 pkgsrc/graphics/GraphicsMagick/Makefile
diff -r1.12.4.1 -r1.12.4.2 pkgsrc/graphics/GraphicsMagick/PLIST
diff -r1.20.4.1 -r1.20.4.2 pkgsrc/graphics/GraphicsMagick/distinfo

cvs diff -r1.25.4.1 -r1.25.4.2 pkgsrc/graphics/GraphicsMagick/Makefile (expand / switch to unified diff)

--- pkgsrc/graphics/GraphicsMagick/Makefile 2010/01/24 11:16:19 1.25.4.1
+++ pkgsrc/graphics/GraphicsMagick/Makefile 2010/02/22 13:21:41 1.25.4.2
@@ -1,17 +1,17 @@ @@ -1,17 +1,17 @@
1# $NetBSD: Makefile,v 1.25.4.1 2010/01/24 11:16:19 tron Exp $ 1# $NetBSD: Makefile,v 1.25.4.2 2010/02/22 13:21:41 tron Exp $
2# 2#
3 3
4DISTNAME= GraphicsMagick-1.3.8 4DISTNAME= GraphicsMagick-1.3.11
5CATEGORIES= graphics 5CATEGORIES= graphics
6MASTER_SITES= ${MASTER_SITE_SOURCEFORGE:=graphicsmagick/} \ 6MASTER_SITES= ${MASTER_SITE_SOURCEFORGE:=graphicsmagick/} \
7 ftp://ftp.graphicsmagick.org/pub/GraphicsMagick/1.3/ 7 ftp://ftp.graphicsmagick.org/pub/GraphicsMagick/1.3/
8 8
9MAINTAINER= obache@NetBSD.org 9MAINTAINER= obache@NetBSD.org
10HOMEPAGE= http://www.graphicsmagick.org/ 10HOMEPAGE= http://www.graphicsmagick.org/
11COMMENT= X application for displaying and manipulating images 11COMMENT= X application for displaying and manipulating images
12 12
13PKG_DESTDIR_SUPPORT= user-destdir 13PKG_DESTDIR_SUPPORT= user-destdir
14 14
15USE_LANGUAGES= c c++ 15USE_LANGUAGES= c c++
16USE_LIBTOOL= yes 16USE_LIBTOOL= yes
17USE_TOOLS+= gmake pkg-config gs 17USE_TOOLS+= gmake pkg-config gs

cvs diff -r1.12.4.1 -r1.12.4.2 pkgsrc/graphics/GraphicsMagick/PLIST (expand / switch to unified diff)

--- pkgsrc/graphics/GraphicsMagick/PLIST 2010/01/24 11:16:19 1.12.4.1
+++ pkgsrc/graphics/GraphicsMagick/PLIST 2010/02/22 13:21:41 1.12.4.2
@@ -1,14 +1,14 @@ @@ -1,14 +1,14 @@
1@comment $NetBSD: PLIST,v 1.12.4.1 2010/01/24 11:16:19 tron Exp $ 1@comment $NetBSD: PLIST,v 1.12.4.2 2010/02/22 13:21:41 tron Exp $
2bin/GraphicsMagick++-config 2bin/GraphicsMagick++-config
3bin/GraphicsMagick-config 3bin/GraphicsMagick-config
4bin/GraphicsMagickWand-config 4bin/GraphicsMagickWand-config
5bin/gm 5bin/gm
6include/GraphicsMagick/Magick++.h 6include/GraphicsMagick/Magick++.h
7include/GraphicsMagick/Magick++/Blob.h 7include/GraphicsMagick/Magick++/Blob.h
8include/GraphicsMagick/Magick++/CoderInfo.h 8include/GraphicsMagick/Magick++/CoderInfo.h
9include/GraphicsMagick/Magick++/Color.h 9include/GraphicsMagick/Magick++/Color.h
10include/GraphicsMagick/Magick++/Drawable.h 10include/GraphicsMagick/Magick++/Drawable.h
11include/GraphicsMagick/Magick++/Exception.h 11include/GraphicsMagick/Magick++/Exception.h
12include/GraphicsMagick/Magick++/Geometry.h 12include/GraphicsMagick/Magick++/Geometry.h
13include/GraphicsMagick/Magick++/Image.h 13include/GraphicsMagick/Magick++/Image.h
14include/GraphicsMagick/Magick++/Include.h 14include/GraphicsMagick/Magick++/Include.h
@@ -107,99 +107,79 @@ share/${PKGNAME}/config/modules.mgk @@ -107,99 +107,79 @@ share/${PKGNAME}/config/modules.mgk
107share/doc/GraphicsMagick/ChangeLog 107share/doc/GraphicsMagick/ChangeLog
108share/doc/GraphicsMagick/ChangeLog.2001 108share/doc/GraphicsMagick/ChangeLog.2001
109share/doc/GraphicsMagick/ChangeLog.2002 109share/doc/GraphicsMagick/ChangeLog.2002
110share/doc/GraphicsMagick/ChangeLog.2003 110share/doc/GraphicsMagick/ChangeLog.2003
111share/doc/GraphicsMagick/ChangeLog.2004 111share/doc/GraphicsMagick/ChangeLog.2004
112share/doc/GraphicsMagick/ChangeLog.2005 112share/doc/GraphicsMagick/ChangeLog.2005
113share/doc/GraphicsMagick/ChangeLog.2006 113share/doc/GraphicsMagick/ChangeLog.2006
114share/doc/GraphicsMagick/ChangeLog.2007 114share/doc/GraphicsMagick/ChangeLog.2007
115share/doc/GraphicsMagick/ChangeLog.2008 115share/doc/GraphicsMagick/ChangeLog.2008
116share/doc/GraphicsMagick/ChangeLog.2009 116share/doc/GraphicsMagick/ChangeLog.2009
117share/doc/GraphicsMagick/Copyright.txt 117share/doc/GraphicsMagick/Copyright.txt
118share/doc/GraphicsMagick/NEWS.txt 118share/doc/GraphicsMagick/NEWS.txt
119share/doc/GraphicsMagick/www/CVS.html 119share/doc/GraphicsMagick/www/CVS.html
120share/doc/GraphicsMagick/www/CVS.rst 
121share/doc/GraphicsMagick/www/ChangeLog-2001.html 120share/doc/GraphicsMagick/www/ChangeLog-2001.html
122share/doc/GraphicsMagick/www/ChangeLog-2002.html 121share/doc/GraphicsMagick/www/ChangeLog-2002.html
123share/doc/GraphicsMagick/www/ChangeLog-2003.html 122share/doc/GraphicsMagick/www/ChangeLog-2003.html
124share/doc/GraphicsMagick/www/ChangeLog-2004.html 123share/doc/GraphicsMagick/www/ChangeLog-2004.html
125share/doc/GraphicsMagick/www/ChangeLog-2005.html 124share/doc/GraphicsMagick/www/ChangeLog-2005.html
126share/doc/GraphicsMagick/www/ChangeLog-2006.html 125share/doc/GraphicsMagick/www/ChangeLog-2006.html
127share/doc/GraphicsMagick/www/ChangeLog-2007.html 126share/doc/GraphicsMagick/www/ChangeLog-2007.html
128share/doc/GraphicsMagick/www/ChangeLog-2008.html 127share/doc/GraphicsMagick/www/ChangeLog-2008.html
129share/doc/GraphicsMagick/www/ChangeLog-2009.html 128share/doc/GraphicsMagick/www/ChangeLog-2009.html
130share/doc/GraphicsMagick/www/Changelog.html 129share/doc/GraphicsMagick/www/Changelog.html
131share/doc/GraphicsMagick/www/Copyright.html 130share/doc/GraphicsMagick/www/Copyright.html
132share/doc/GraphicsMagick/www/FAQ.html 131share/doc/GraphicsMagick/www/FAQ.html
133share/doc/GraphicsMagick/www/FAQ.rst 
134share/doc/GraphicsMagick/www/GraphicsMagick.html 132share/doc/GraphicsMagick/www/GraphicsMagick.html
135share/doc/GraphicsMagick/www/INSTALL-unix.html 133share/doc/GraphicsMagick/www/INSTALL-unix.html
136share/doc/GraphicsMagick/www/INSTALL-windows.html 134share/doc/GraphicsMagick/www/INSTALL-windows.html
137share/doc/GraphicsMagick/www/ImageMagickObject.html 135share/doc/GraphicsMagick/www/ImageMagickObject.html
138share/doc/GraphicsMagick/www/ImageMagickObject.rst 
139share/doc/GraphicsMagick/www/Magick++/Blob.html 136share/doc/GraphicsMagick/www/Magick++/Blob.html
140share/doc/GraphicsMagick/www/Magick++/Cache.fig 
141share/doc/GraphicsMagick/www/Magick++/Cache.png 137share/doc/GraphicsMagick/www/Magick++/Cache.png
142share/doc/GraphicsMagick/www/Magick++/Cache.svg 
143share/doc/GraphicsMagick/www/Magick++/ChangeLog.html 138share/doc/GraphicsMagick/www/Magick++/ChangeLog.html
144share/doc/GraphicsMagick/www/Magick++/CoderInfo.html 139share/doc/GraphicsMagick/www/Magick++/CoderInfo.html
145share/doc/GraphicsMagick/www/Magick++/Color.html 140share/doc/GraphicsMagick/www/Magick++/Color.html
146share/doc/GraphicsMagick/www/Magick++/Documentation.html 141share/doc/GraphicsMagick/www/Magick++/Documentation.html
147share/doc/GraphicsMagick/www/Magick++/Documentation.rst 
148share/doc/GraphicsMagick/www/Magick++/Drawable.html 142share/doc/GraphicsMagick/www/Magick++/Drawable.html
149share/doc/GraphicsMagick/www/Magick++/Drawable_example_1.png 143share/doc/GraphicsMagick/www/Magick++/Drawable_example_1.png
150share/doc/GraphicsMagick/www/Magick++/Enumerations.html 144share/doc/GraphicsMagick/www/Magick++/Enumerations.html
151share/doc/GraphicsMagick/www/Magick++/Exception.html 145share/doc/GraphicsMagick/www/Magick++/Exception.html
152share/doc/GraphicsMagick/www/Magick++/FormatCharacters.html 146share/doc/GraphicsMagick/www/Magick++/FormatCharacters.html
153share/doc/GraphicsMagick/www/Magick++/Future.html 147share/doc/GraphicsMagick/www/Magick++/Future.html
154share/doc/GraphicsMagick/www/Magick++/Geometry.html 148share/doc/GraphicsMagick/www/Magick++/Geometry.html
155share/doc/GraphicsMagick/www/Magick++/Image.fig 
156share/doc/GraphicsMagick/www/Magick++/Image.html 149share/doc/GraphicsMagick/www/Magick++/Image.html
157share/doc/GraphicsMagick/www/Magick++/Image.png 150share/doc/GraphicsMagick/www/Magick++/Image.png
158share/doc/GraphicsMagick/www/Magick++/Image.rst 
159share/doc/GraphicsMagick/www/Magick++/ImageDesign.html 151share/doc/GraphicsMagick/www/Magick++/ImageDesign.html
160share/doc/GraphicsMagick/www/Magick++/ImageMagick.png 
161share/doc/GraphicsMagick/www/Magick++/Install.html 152share/doc/GraphicsMagick/www/Magick++/Install.html
162share/doc/GraphicsMagick/www/Magick++/Magick++.png 
163share/doc/GraphicsMagick/www/Magick++/Montage.html 153share/doc/GraphicsMagick/www/Magick++/Montage.html
164share/doc/GraphicsMagick/www/Magick++/NEWS.html 
165share/doc/GraphicsMagick/www/Magick++/PixelPacket.html 154share/doc/GraphicsMagick/www/Magick++/PixelPacket.html
166share/doc/GraphicsMagick/www/Magick++/Pixels.html 155share/doc/GraphicsMagick/www/Magick++/Pixels.html
167share/doc/GraphicsMagick/www/Magick++/README.txt 
168share/doc/GraphicsMagick/www/Magick++/STL.html 156share/doc/GraphicsMagick/www/Magick++/STL.html
169share/doc/GraphicsMagick/www/Magick++/TypeMetric.html 157share/doc/GraphicsMagick/www/Magick++/TypeMetric.html
170share/doc/GraphicsMagick/www/Magick++/gm-188x120t.png 158share/doc/GraphicsMagick/www/Magick++/gm-188x120t.png
171share/doc/GraphicsMagick/www/Magick++/index.html 159share/doc/GraphicsMagick/www/Magick++/index.html
172share/doc/GraphicsMagick/www/Magick++/index.rst 
173share/doc/GraphicsMagick/www/Magick++/montage-sample-framed.jpg 160share/doc/GraphicsMagick/www/Magick++/montage-sample-framed.jpg
174share/doc/GraphicsMagick/www/Magick++/right_triangle.png 161share/doc/GraphicsMagick/www/Magick++/right_triangle.png
175share/doc/GraphicsMagick/www/Magick++/thumbnail-anatomy-framed.fig 
176share/doc/GraphicsMagick/www/Magick++/thumbnail-anatomy-framed.jpg 162share/doc/GraphicsMagick/www/Magick++/thumbnail-anatomy-framed.jpg
177share/doc/GraphicsMagick/www/Magick++/thumbnail-anatomy-plain.fig 
178share/doc/GraphicsMagick/www/Magick++/thumbnail-anatomy-plain.jpg 163share/doc/GraphicsMagick/www/Magick++/thumbnail-anatomy-plain.jpg
179share/doc/GraphicsMagick/www/Magick++/thumbnail-sample-framed.jpg 164share/doc/GraphicsMagick/www/Magick++/thumbnail-sample-framed.jpg
180share/doc/GraphicsMagick/www/Magick++/thumbnail-sample-plain.jpg 165share/doc/GraphicsMagick/www/Magick++/thumbnail-sample-plain.jpg
181share/doc/GraphicsMagick/www/Makefile.am 
182share/doc/GraphicsMagick/www/NEWS.html 166share/doc/GraphicsMagick/www/NEWS.html
183share/doc/GraphicsMagick/www/OpenMP.html 167share/doc/GraphicsMagick/www/OpenMP.html
184share/doc/GraphicsMagick/www/OpenMP.rst 
185share/doc/GraphicsMagick/www/README.html 168share/doc/GraphicsMagick/www/README.html
186share/doc/GraphicsMagick/www/animate.html 169share/doc/GraphicsMagick/www/animate.html
187share/doc/GraphicsMagick/www/api/Makefile.am 
188share/doc/GraphicsMagick/www/api/animate.html 170share/doc/GraphicsMagick/www/api/animate.html
189share/doc/GraphicsMagick/www/api/annotate.html 171share/doc/GraphicsMagick/www/api/annotate.html
190share/doc/GraphicsMagick/www/api/api.html 172share/doc/GraphicsMagick/www/api/api.html
191share/doc/GraphicsMagick/www/api/api.rst 
192share/doc/GraphicsMagick/www/api/api_hyperlinks.rst 
193share/doc/GraphicsMagick/www/api/attribute.html 173share/doc/GraphicsMagick/www/api/attribute.html
194share/doc/GraphicsMagick/www/api/average.html 174share/doc/GraphicsMagick/www/api/average.html
195share/doc/GraphicsMagick/www/api/blob.html 175share/doc/GraphicsMagick/www/api/blob.html
196share/doc/GraphicsMagick/www/api/cdl.html 176share/doc/GraphicsMagick/www/api/cdl.html
197share/doc/GraphicsMagick/www/api/channel.html 177share/doc/GraphicsMagick/www/api/channel.html
198share/doc/GraphicsMagick/www/api/color.html 178share/doc/GraphicsMagick/www/api/color.html
199share/doc/GraphicsMagick/www/api/colormap.html 179share/doc/GraphicsMagick/www/api/colormap.html
200share/doc/GraphicsMagick/www/api/compare.html 180share/doc/GraphicsMagick/www/api/compare.html
201share/doc/GraphicsMagick/www/api/composite.html 181share/doc/GraphicsMagick/www/api/composite.html
202share/doc/GraphicsMagick/www/api/confirm_access.html 182share/doc/GraphicsMagick/www/api/confirm_access.html
203share/doc/GraphicsMagick/www/api/constitute.html 183share/doc/GraphicsMagick/www/api/constitute.html
204share/doc/GraphicsMagick/www/api/decorate.html 184share/doc/GraphicsMagick/www/api/decorate.html
205share/doc/GraphicsMagick/www/api/deprecate.html 185share/doc/GraphicsMagick/www/api/deprecate.html
@@ -225,76 +205,61 @@ share/doc/GraphicsMagick/www/api/plasma. @@ -225,76 +205,61 @@ share/doc/GraphicsMagick/www/api/plasma.
225share/doc/GraphicsMagick/www/api/profile.html 205share/doc/GraphicsMagick/www/api/profile.html
226share/doc/GraphicsMagick/www/api/quantize.html 206share/doc/GraphicsMagick/www/api/quantize.html
227share/doc/GraphicsMagick/www/api/registry.html 207share/doc/GraphicsMagick/www/api/registry.html
228share/doc/GraphicsMagick/www/api/render.html 208share/doc/GraphicsMagick/www/api/render.html
229share/doc/GraphicsMagick/www/api/resize.html 209share/doc/GraphicsMagick/www/api/resize.html
230share/doc/GraphicsMagick/www/api/resource.html 210share/doc/GraphicsMagick/www/api/resource.html
231share/doc/GraphicsMagick/www/api/segment.html 211share/doc/GraphicsMagick/www/api/segment.html
232share/doc/GraphicsMagick/www/api/shear.html 212share/doc/GraphicsMagick/www/api/shear.html
233share/doc/GraphicsMagick/www/api/signature.html 213share/doc/GraphicsMagick/www/api/signature.html
234share/doc/GraphicsMagick/www/api/statistics.html 214share/doc/GraphicsMagick/www/api/statistics.html
235share/doc/GraphicsMagick/www/api/texture.html 215share/doc/GraphicsMagick/www/api/texture.html
236share/doc/GraphicsMagick/www/api/transform.html 216share/doc/GraphicsMagick/www/api/transform.html
237share/doc/GraphicsMagick/www/api/types.html 217share/doc/GraphicsMagick/www/api/types.html
238share/doc/GraphicsMagick/www/api/types.rst 
239share/doc/GraphicsMagick/www/api/widget.html 218share/doc/GraphicsMagick/www/api/widget.html
240share/doc/GraphicsMagick/www/authors.html 219share/doc/GraphicsMagick/www/authors.html
241share/doc/GraphicsMagick/www/authors.rst 
242share/doc/GraphicsMagick/www/benchmarks.html 220share/doc/GraphicsMagick/www/benchmarks.html
243share/doc/GraphicsMagick/www/benchmarks.rst 
244share/doc/GraphicsMagick/www/bugs.html 221share/doc/GraphicsMagick/www/bugs.html
245share/doc/GraphicsMagick/www/bugs.rst 
246share/doc/GraphicsMagick/www/color.html 222share/doc/GraphicsMagick/www/color.html
247share/doc/GraphicsMagick/www/compare.html 223share/doc/GraphicsMagick/www/compare.html
248share/doc/GraphicsMagick/www/composite.html 224share/doc/GraphicsMagick/www/composite.html
249share/doc/GraphicsMagick/www/conjure.html 225share/doc/GraphicsMagick/www/conjure.html
250share/doc/GraphicsMagick/www/contribute.html 226share/doc/GraphicsMagick/www/contribute.html
251share/doc/GraphicsMagick/www/contribute.rst 
252share/doc/GraphicsMagick/www/convert.html 227share/doc/GraphicsMagick/www/convert.html
253share/doc/GraphicsMagick/www/display.html 228share/doc/GraphicsMagick/www/display.html
254share/doc/GraphicsMagick/www/docutils-api.css 229share/doc/GraphicsMagick/www/docutils-api.css
255share/doc/GraphicsMagick/www/docutils-articles.css 230share/doc/GraphicsMagick/www/docutils-articles.css
256share/doc/GraphicsMagick/www/download.html 231share/doc/GraphicsMagick/www/download.html
257share/doc/GraphicsMagick/www/download.rst 
258share/doc/GraphicsMagick/www/favicon.ico 232share/doc/GraphicsMagick/www/favicon.ico
259share/doc/GraphicsMagick/www/formats.html 233share/doc/GraphicsMagick/www/formats.html
260share/doc/GraphicsMagick/www/formats.rst 
261share/doc/GraphicsMagick/www/gm.html 234share/doc/GraphicsMagick/www/gm.html
262share/doc/GraphicsMagick/www/identify.html 235share/doc/GraphicsMagick/www/identify.html
263share/doc/GraphicsMagick/www/images/ball.png 236share/doc/GraphicsMagick/www/images/ball.png
264share/doc/GraphicsMagick/www/images/banner_bg.png 237share/doc/GraphicsMagick/www/images/banner_bg.png
265share/doc/GraphicsMagick/www/images/examples.jpg 238share/doc/GraphicsMagick/www/images/examples.jpg
266share/doc/GraphicsMagick/www/images/gm-107x76.png 239share/doc/GraphicsMagick/www/images/gm-107x76.png
267share/doc/GraphicsMagick/www/images/gm-125x80t.png 240share/doc/GraphicsMagick/www/images/gm-125x80t.png
268share/doc/GraphicsMagick/www/images/right_triangle.png 241share/doc/GraphicsMagick/www/images/right_triangle.png
269share/doc/GraphicsMagick/www/images/right_triangle_option.png 242share/doc/GraphicsMagick/www/images/right_triangle_option.png
270share/doc/GraphicsMagick/www/import.html 243share/doc/GraphicsMagick/www/import.html
271share/doc/GraphicsMagick/www/index.html 244share/doc/GraphicsMagick/www/index.html
272share/doc/GraphicsMagick/www/index.rst 
273share/doc/GraphicsMagick/www/links.html 245share/doc/GraphicsMagick/www/links.html
274share/doc/GraphicsMagick/www/links.rst 
275share/doc/GraphicsMagick/www/magick.css 246share/doc/GraphicsMagick/www/magick.css
276share/doc/GraphicsMagick/www/miff.html 247share/doc/GraphicsMagick/www/miff.html
277share/doc/GraphicsMagick/www/miff.rst 
278share/doc/GraphicsMagick/www/mission.html 248share/doc/GraphicsMagick/www/mission.html
279share/doc/GraphicsMagick/www/mission.rst 
280share/doc/GraphicsMagick/www/mogrify.html 249share/doc/GraphicsMagick/www/mogrify.html
281share/doc/GraphicsMagick/www/montage.html 250share/doc/GraphicsMagick/www/montage.html
282share/doc/GraphicsMagick/www/motion-picture.html 251share/doc/GraphicsMagick/www/motion-picture.html
283share/doc/GraphicsMagick/www/motion-picture.rst 
284share/doc/GraphicsMagick/www/perl.html 252share/doc/GraphicsMagick/www/perl.html
285share/doc/GraphicsMagick/www/perl.rst 
286share/doc/GraphicsMagick/www/platforms.html 253share/doc/GraphicsMagick/www/platforms.html
287share/doc/GraphicsMagick/www/platforms.rst 
288share/doc/GraphicsMagick/www/process.html 254share/doc/GraphicsMagick/www/process.html
289share/doc/GraphicsMagick/www/process.rst 
290share/doc/GraphicsMagick/www/programming.html 255share/doc/GraphicsMagick/www/programming.html
291share/doc/GraphicsMagick/www/programming.rst 
292share/doc/GraphicsMagick/www/quantize.html 256share/doc/GraphicsMagick/www/quantize.html
293share/doc/GraphicsMagick/www/quantize.rst 
294share/doc/GraphicsMagick/www/smile.c 257share/doc/GraphicsMagick/www/smile.c
295share/doc/GraphicsMagick/www/tools.html 258share/doc/GraphicsMagick/www/tools.html
296share/doc/GraphicsMagick/www/tools.rst 
297share/doc/GraphicsMagick/www/utilities.html 259share/doc/GraphicsMagick/www/utilities.html
298share/doc/GraphicsMagick/www/utilities.rst 260share/doc/GraphicsMagick/www/wand/drawing_wand.html
 261share/doc/GraphicsMagick/www/wand/magick_wand.html
 262share/doc/GraphicsMagick/www/wand/pixel_wand.html
 263share/doc/GraphicsMagick/www/wand/wand.html
299@pkgdir lib/${PKGNAME}/modules-Q8/filters 264@pkgdir lib/${PKGNAME}/modules-Q8/filters
300@pkgdir lib/${PKGNAME}/modules-Q8/coders 265@pkgdir lib/${PKGNAME}/modules-Q8/coders

cvs diff -r1.20.4.1 -r1.20.4.2 pkgsrc/graphics/GraphicsMagick/distinfo (expand / switch to unified diff)

--- pkgsrc/graphics/GraphicsMagick/distinfo 2010/01/24 11:16:19 1.20.4.1
+++ pkgsrc/graphics/GraphicsMagick/distinfo 2010/02/22 13:21:41 1.20.4.2
@@ -1,5 +1,5 @@ @@ -1,5 +1,5 @@
1$NetBSD: distinfo,v 1.20.4.1 2010/01/24 11:16:19 tron Exp $ 1$NetBSD: distinfo,v 1.20.4.2 2010/02/22 13:21:41 tron Exp $
2 2
3SHA1 (GraphicsMagick-1.3.8.tar.gz) = d88c533002fbfeb5822d68eb3f14ee07c347a4ea 3SHA1 (GraphicsMagick-1.3.11.tar.gz) = 83c6e0299a0e9c36f035a3245cda91575de327a5
4RMD160 (GraphicsMagick-1.3.8.tar.gz) = 92f139dfc66f64c443b8ce005790083169636c5b 4RMD160 (GraphicsMagick-1.3.11.tar.gz) = e030002c876c78fe0c2eb5784a92478f896e79c6
5Size (GraphicsMagick-1.3.8.tar.gz) = 7972244 bytes 5Size (GraphicsMagick-1.3.11.tar.gz) = 7978002 bytes