summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorobache <obache>2006-10-28 02:04:31 +0000
committerobache <obache>2006-10-28 02:04:31 +0000
commit360aec73a35118093b0401e57a0e8a9ba4ba00f3 (patch)
tree6a86c026041bf5ff20ca08a2aece1838ee8c39b9
parent4eccab21f7f87cc987c7a372e602c4743712d5f5 (diff)
downloadpkgsrc-360aec73a35118093b0401e57a0e8a9ba4ba00f3.tar.gz
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)
-rw-r--r--graphics/ruby-RMagick/options.mk16
1 files changed, 16 insertions, 0 deletions
diff --git a/graphics/ruby-RMagick/options.mk b/graphics/ruby-RMagick/options.mk
new file mode 100644
index 00000000000..7e0a3cd553f
--- /dev/null
+++ b/graphics/ruby-RMagick/options.mk
@@ -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