pkgsrc-Changes-HG archive

[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index][Old Index]

[pkgsrc/trunk]: pkgsrc/graphics/ruby-RMagick Update RMagick to 1.14.1.



details:   https://anonhg.NetBSD.org/pkgsrc/rev/13037c554032
branches:  trunk
changeset: 520743:13037c554032
user:      obache <obache%pkgsrc.org@localhost>
date:      Sat Oct 28 02:04:31 2006 +0000

description:
Update RMagick to 1.14.1.

pkgsrc changes:
You can select backend imaging library, GraphicsMagick or ImageMagick,
default is GraphicsMagick now.

Changes:
o Feature request #5015, support CMYK->RGB conversions. Added the
  add_profile and delete_profiles to the Image class. Fixed the profile!,
  iptc_profile, and color_profile methods. Added the
  black_point_compensation attribute. (requested by Niklas Ekman)
o Added adaptive_blur, adaptive_blur_channel, find_similar_region, sketch
  methods to the Image class (available with ImageMagick 6.2.8-6)
o Added adaptive_resize to the Image class (available with
  ImageMagick 6.2.9)
o Added resample method to the Image class (thanks to Ant Peacocke for the
Update RMagick to 1.14.1.

pkgsrc changes:
You can select backend imaging library, GraphicsMagick or ImageMagick,
default is GraphicsMagick now.

Changes:
1.14.1:
o Handle change to the type of the ColorInfo.color field introduced by
  ImageMagick 6.3.0.
1.14.0:
o Feature request #5015, support CMYK->RGB conversions. Added the
  add_profile and delete_profiles to the Image class. Fixed the profile!,
  iptc_profile, and color_profile methods. Added the
  black_point_compensation attribute. (requested by Niklas Ekman)
o Added adaptive_blur, adaptive_blur_channel, find_similar_region, sketch
  methods to the Image class (available with ImageMagick 6.2.8-6)
o Added adaptive_resize to the Image class (available with
  ImageMagick 6.2.9)
o Added resample method to the Image class (thanks to Ant Peacocke for the
  idea)
o Added four new compositing methods to the Image class: blend, displace,
  dissolve, and watermark
o Feature request #5418, add get_iptc_dataset and each_iptc_dataset to the
  Image class (requested by Oliver Andrich)
o Added the bias and mask attributes to the Image class
o Added optional qualifier argument to Image#rotate
o Patch #5742 from Douglas Sellers, adds channel method to the Image::Info
  class.
o Feature request #5418, add get_iptc_dataset and each_iptc_dataset to the
  Image class (requested by Oliver Andrich)
o Added the bias and mask attributes to the Image class
o Added optional qualifier argument to Image#rotate
o Patch #5742 from Douglas Sellers, adds channel method to the Image::Info
  class.
o Added new ChannelType enum values
o Added texture= attribute writer to the Image::Info class
o Added tile= attribute writer to the Draw class
o Added  pixel_interpolation_method attribute, InterpolatePixelMethod enum
  class to the Image class (available with ImageMagick 6.2.9)
o Added "Magick Command Options and Their Equivalent Methods" page to the
  documentation
o Fix bug #5079, Image#quantum_operator method doesn't work (bug report
  from Pedro Martins)
o Fix bug #5080, incorrect RVG images when non-0 values used for the min_x
  or min_y arguments to RVG#viewbox (bug report from Daniel Harple)
o Fix bug #5370, the clip_mask= attribute doesn't work
o Fix bug #5506, wrong argument used to intialize AffineMatrix (bug
  report from Michael Shantzis)

diffstat:

 graphics/ruby-RMagick/options.mk |  16 ++++++++++++++++
 1 files changed, 16 insertions(+), 0 deletions(-)

diffs (20 lines):

diff -r 8a1543460590 -r 13037c554032 graphics/ruby-RMagick/options.mk
--- /dev/null   Thu Jan 01 00:00:00 1970 +0000
+++ b/graphics/ruby-RMagick/options.mk  Sat Oct 28 02:04:31 2006 +0000
@@ -0,0 +1,16 @@
+# $NetBSD: options.mk,v 1.1 2006/10/28 02:04:31 obache Exp $
+
+PKG_OPTIONS_VAR=               PKG_OPTIONS.rmagick
+PKG_OPTIONS_REQUIRED_GROUPS=   backend
+PKG_OPTIONS_GROUP.backend=     graphicsmagick imagemagick
+PKG_SUGGESTED_OPTIONS=         graphicsmagick
+
+.include "../../mk/bsd.options.mk"
+
+.if !empty(PKG_OPTIONS:Mgraphicsmagick)
+.  include "../../graphics/GraphicsMagick/buildlink3.mk"
+CONFIGURE_ARGS+=       --with-graphics-magick
+.elif !empty(PKG_OPTIONS:Mimagemagick)
+.  include "../../graphics/ImageMagick/buildlink3.mk"
+CONFIGURE_ARGS+=       --without-graphics-magick
+.endif



Home | Main Index | Thread Index | Old Index