summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorsunpoet <sunpoet@FreeBSD.org>2015-11-21 02:09:56 +0000
committersunpoet <sunpoet@FreeBSD.org>2015-11-21 02:09:56 +0000
commit7c2f16a367d2b909728fa2ddb2b559ffb086caac (patch)
treed97b05a3ace1ade7159c3f271a5b1946652dd0b0
parentf0bc26b3a6f7d5f938c003e2994ec4744d5e9b1d (diff)
downloadFreeBSD-ports-7c2f16a367d2b909728fa2ddb2b559ffb086caac.zip
FreeBSD-ports-7c2f16a367d2b909728fa2ddb2b559ffb086caac.tar.gz
- Update to 1.3.23
- Convert to new options helper - Convert to new options dependency helper - Convert to new test framework - Sort LIB_DEPENDS - Sort CONFIGURE_ARGS - Use PORTDATA and PORTDOCS - Remove PORTSCOUT - Cosmetic change - Update pkg-descr - Take maintainership Changes: http://www.graphicsmagick.org/NEWS.html
-rw-r--r--graphics/GraphicsMagick/Makefile130
-rw-r--r--graphics/GraphicsMagick/distinfo4
-rw-r--r--graphics/GraphicsMagick/pkg-descr21
-rw-r--r--graphics/GraphicsMagick/pkg-plist183
4 files changed, 70 insertions, 268 deletions
diff --git a/graphics/GraphicsMagick/Makefile b/graphics/GraphicsMagick/Makefile
index 4d8d61fc..8061468 100644
--- a/graphics/GraphicsMagick/Makefile
+++ b/graphics/GraphicsMagick/Makefile
@@ -2,74 +2,73 @@
# $FreeBSD$
PORTNAME= GraphicsMagick
-PORTVERSION= 1.3.22
+PORTVERSION= 1.3.23
PORTEPOCH= 1
CATEGORIES= graphics
MASTER_SITES= SF \
- ftp://ftp.graphicsmagick.org/pub/GraphicsMagick/1.3/
+ ftp://ftp.graphicsmagick.org/pub/GraphicsMagick/${PORTVERSION:R}/
-MAINTAINER= ports@FreeBSD.org
+MAINTAINER= sunpoet@FreeBSD.org
COMMENT= Fast image processing tools based on ImageMagick
-LIB_DEPENDS= libjbig.so:${PORTSDIR}/graphics/jbigkit \
- libjasper.so:${PORTSDIR}/graphics/jasper \
- liblcms2.so:${PORTSDIR}/graphics/lcms2 \
- libpng.so:${PORTSDIR}/graphics/png \
- libtiff.so:${PORTSDIR}/graphics/tiff \
- libfreetype.so:${PORTSDIR}/print/freetype2
+LIB_DEPENDS= libfreetype.so:${PORTSDIR}/print/freetype2 \
+ libjbig.so:${PORTSDIR}/graphics/jbigkit \
+ libjasper.so:${PORTSDIR}/graphics/jasper \
+ liblcms2.so:${PORTSDIR}/graphics/lcms2 \
+ libpng.so:${PORTSDIR}/graphics/png \
+ libtiff.so:${PORTSDIR}/graphics/tiff
-PORTSCOUT= limit:^1\.3\.
+OPTIONS_DEFINE= DOCS DPS FPX OPENMP Q8BIT SSE TEST WEBP X11
+OPTIONS_DEFAULT=OPENMP WEBP X11
+DPS_DESC= Display Ghostscript support
+Q8BIT_DESC= Use 8-bit pixels (speed) instead of 16-bit (quality)
+TEST_DESC= Run bundled self-tests after build
-USES= ghostscript iconv jpeg libtool tar:bzip2
-USE_GNOME= libxml2
GNU_CONFIGURE= yes
-CONFIGURE_ENV= PTHREAD_LIBS="-lpthread"
-CONFIGURE_ARGS= --without-perl --enable-shared --enable-static \
- --with-quantum-depth="${QD}" \
- --with-windows-font-dir="${WINDOWS_FONT_DIR}"
+CONFIGURE_ARGS= --enable-shared --enable-static \
+ --with-windows-font-dir=${WINDOWS_FONT_DIR} --without-perl
+CONFIGURE_ENV= PTHREAD_LIBS=-lpthread
INSTALL_TARGET= install-strip
+TEST_TARGET= check
+USE_GNOME= libxml2
USE_LDCONFIG= yes
+#USES= ghostscript iconv jpeg libtool localbase tar:bzip2
+USES= ghostscript iconv jpeg libtool tar:bzip2
-PLIST_SUB= Q="${QD}"
+PORTDATA= *
+PORTDOCS= *
-CPPFLAGS+= -I${LOCALBASE}/include
-LDFLAGS+= -L${LOCALBASE}/lib
+# The OPENMP option may select gcc as compiler but on architectures
+# that have switched to libc++ clang should be used for C++ code.
+#CXX= c++
-OPTIONS_DEFINE= DOCS DPS FPX OPENMP Q8BIT SSE TESTS WEBP X11
-OPTIONS_DEFAULT= OPENMP WEBP X11
+# Use fonts installed by x11-fonts/webfonts by default
+WINDOWS_FONT_DIR?= ${LOCALBASE}/share/fonts/webfonts
-DPS_DESC= Display Ghostscript support (must also select X11)
-FPX_LIB_DEPENDS+= libfpx.so.[2-9]:${PORTSDIR}/graphics/libfpx
+DPS_CONFIGURE_WITH= dps
+DPS_IMPLIES= X11
+DPS_LIB_DEPENDS= libdps.so:${PORTSDIR}/x11/dgs
+DPS_USE= XORG=xt
FPX_CONFIGURE_WITH= fpx
-OPENMP_USES= compiler:openmp
-OPENMP_CONFIGURE_ON= --with-threads --enable-openmp --disable-openmp-slow
+FPX_LIB_DEPENDS= libfpx.so:${PORTSDIR}/graphics/libfpx
OPENMP_CONFIGURE_OFF= --without-threads --disable-openmp
-Q8BIT_DESC= Use 8-bit pixels (speed) instead of 16 (quality)
-TESTS_DESC= Run bundled self-tests after build
-TESTS_BUILD_DEPENDS= webfonts>0:${PORTSDIR}/x11-fonts/webfonts
-TESTS_RUN_DEPENDS= webfonts>0:${PORTSDIR}/x11-fonts/webfonts
-WEBP_LIB_DEPENDS= libwebp.so:${PORTSDIR}/graphics/webp
+OPENMP_CONFIGURE_ON= --with-threads --enable-openmp --disable-openmp-slow
+OPENMP_USES= compiler:openmp
+Q8BIT_CONFIGURE_OFF= --with-quantum-depth=16
+Q8BIT_CONFIGURE_ON= --with-quantum-depth=8
+Q8BIT_PLIST_SUB= Q=8
+Q8BIT_PLIST_SUB_OFF= Q=16
+TEST_BUILD_DEPENDS= webfonts>=0:${PORTSDIR}/x11-fonts/webfonts
+TEST_RUN_DEPENDS= webfonts>=0:${PORTSDIR}/x11-fonts/webfonts
WEBP_CONFIGURE_WITH= webp
-X11_LIB_DEPENDS= libwmflite.so:${PORTSDIR}/graphics/${LIBWMF_PORT}
-X11_USE= XORG=xext
+WEBP_LIB_DEPENDS= libwebp.so:${PORTSDIR}/graphics/webp
X11_CONFIGURE_WITH= x
+X11_LIB_DEPENDS= libwmflite.so:${PORTSDIR}/graphics/libwmf
+X11_LIB_DEPENDS_OFF= libwmflite.so:${PORTSDIR}/graphics/libwmf-nox11
+X11_USE= XORG=xext
.include <bsd.port.options.mk>
-.if ${PORT_OPTIONS:MX11} && ${PORT_OPTIONS:MDPS}
-LIB_DEPENDS+= libdps.so:${PORTSDIR}/x11/dgs
-USE_XORG= xt
-CONFIGURE_ARGS+=--with-dps
-.else
-CONFIGURE_ARGS+=--without-dps
-.endif
-
-.if ${PORT_OPTIONS:MQ8BIT}
-QD= 8
-.else
-QD= 16
-.endif
-
.if ${PORT_OPTIONS:MSSE}
.if ${MACHINE_CPU:Msse}
CFLAGS+= -msse
@@ -82,39 +81,10 @@ CFLAGS+= -msse3
.endif
.endif
-.if ${PORT_OPTIONS:MX11}
-LIBWMF_PORT= libwmf
-.else
-LIBWMF_PORT= libwmf-nox11
-.endif
-
-.include <bsd.port.pre.mk>
-
-.if !defined(WINDOWS_FONT_DIR)
-# Use fonts installed by x11-fonts/webfonts by default
-WINDOWS_FONT_DIR=${LOCALBASE}/share/fonts/webfonts
-.endif
-
-.if ${PORT_OPTIONS:MTESTS}
-post-build:: regression-test
-.else
-post-build::
- #
- # You are strongly advised to run ``make test'' now
- # and report any failures to ${MAINTAINER}.
- #
-.endif
+post-install-Q8BIT-off:
+ ${MKDIR} ${STAGEDIR}${PREFIX}/lib/GraphicsMagick/modules-Q16/coders ${STAGEDIR}${PREFIX}/lib/GraphicsMagick/modules-Q16/filters
-post-install:
-.for i in coders filters
- @${MKDIR} ${STAGEDIR}${PREFIX}/lib/GraphicsMagick/modules-Q${QD}/${i}
-.endfor
+post-install-Q8BIT-on:
+ ${MKDIR} ${STAGEDIR}${PREFIX}/lib/GraphicsMagick/modules-Q8/coders ${STAGEDIR}${PREFIX}/lib/GraphicsMagick/modules-Q8/filters
-regression-test: do-build
- (cd ${WRKSRC} && ${SETENV} ${MAKE_ENV} ${MAKE_CMD} ${MAKE_FLAGS} \
- ${MAKEFILE} ${MAKE_ARGS} check)
-
-.include <bsd.port.post.mk>
-# The OPENMP option may select gcc as compiler but on architectures
-# that have switched to libc++ clang should be used for C++ code.
-CXX= c++
+.include <bsd.port.mk>
diff --git a/graphics/GraphicsMagick/distinfo b/graphics/GraphicsMagick/distinfo
index 66b3c00..c99d5d9 100644
--- a/graphics/GraphicsMagick/distinfo
+++ b/graphics/GraphicsMagick/distinfo
@@ -1,2 +1,2 @@
-SHA256 (GraphicsMagick-1.3.22.tar.bz2) = eccde8534de936e23a32466c08ae6ebab559f29ad553262ed648de8012c7b23f
-SIZE (GraphicsMagick-1.3.22.tar.bz2) = 7611948
+SHA256 (GraphicsMagick-1.3.23.tar.bz2) = 6e14a9e9e42ec074239b2de4db37ebebb8268b0361332d5bc86d7c3fbfe5aabf
+SIZE (GraphicsMagick-1.3.23.tar.bz2) = 7620906
diff --git a/graphics/GraphicsMagick/pkg-descr b/graphics/GraphicsMagick/pkg-descr
index b3898f1..a7bfe07d 100644
--- a/graphics/GraphicsMagick/pkg-descr
+++ b/graphics/GraphicsMagick/pkg-descr
@@ -1,10 +1,17 @@
-This is a port of GraphicsMagick(TM), the "swiss army knife" of
-image processing. It provides a robust collection of tools and
-libraries which support reading, writing, and manipulating an image
-in over 88 major formats including formats like DPX, GIF, JPEG,
-JPEG-2000, PNG, PDF, SVG and TIFF.
+GraphicsMagick is the swiss army knife of image processing. Comprised of 267K
+physical lines (according to David A. Wheeler's SLOCCount) of source code in the
+base package (or 1,225K including 3rd party libraries) it provides a robust and
+efficient collection of tools and libraries which support reading, writing, and
+manipulating an image in over 88 major formats including important formats like
+DPX, GIF, JPEG, JPEG-2000, PNG, PDF, PNM, and TIFF.
-The program is the fork of a better-known ImageMagick (5.5.2), which
-emphasizes end-user and API-stabilities.
+GraphicsMagick supports huge images and has been tested with gigapixel-size
+images. GraphicsMagick can create new images on the fly, making it suitable for
+building dynamic Web applications. GraphicsMagick may be used to resize, rotate,
+sharpen, color reduce, or add special effects to an image and save the result in
+the same or different image format. Image processing operations are available
+from the command line, as well as through C, C++, Lua, Perl, PHP, Python, Tcl,
+Ruby, Windows .NET, or Windows COM programming interfaces. With some
+modification, language extensions for ImageMagick may be used.
WWW: http://www.graphicsmagick.org/
diff --git a/graphics/GraphicsMagick/pkg-plist b/graphics/GraphicsMagick/pkg-plist
index c5ce61d..9cfba21 100644
--- a/graphics/GraphicsMagick/pkg-plist
+++ b/graphics/GraphicsMagick/pkg-plist
@@ -92,15 +92,15 @@ lib/GraphicsMagick/config/type.mgk
lib/libGraphicsMagick++.a
lib/libGraphicsMagick++.so
lib/libGraphicsMagick++.so.12
-lib/libGraphicsMagick++.so.12.0.0
+lib/libGraphicsMagick++.so.12.0.1
lib/libGraphicsMagick.a
lib/libGraphicsMagick.so
lib/libGraphicsMagick.so.3
-lib/libGraphicsMagick.so.3.14.0
+lib/libGraphicsMagick.so.3.14.1
lib/libGraphicsMagickWand.a
lib/libGraphicsMagickWand.so
lib/libGraphicsMagickWand.so.2
-lib/libGraphicsMagickWand.so.2.7.2
+lib/libGraphicsMagickWand.so.2.7.3
libdata/pkgconfig/GraphicsMagick++.pc
libdata/pkgconfig/GraphicsMagick.pc
libdata/pkgconfig/GraphicsMagickWand.pc
@@ -110,180 +110,5 @@ man/man1/GraphicsMagickWand-config.1.gz
man/man1/gm.1.gz
man/man4/miff.4.gz
man/man5/quantize.5.gz
-%%DATADIR%%/config/colors.mgk
-%%DATADIR%%/config/log.mgk
-%%DATADIR%%/config/modules.mgk
-%%PORTDOCS%%%%DOCSDIR%%/ChangeLog
-%%PORTDOCS%%%%DOCSDIR%%/ChangeLog.2001
-%%PORTDOCS%%%%DOCSDIR%%/ChangeLog.2002
-%%PORTDOCS%%%%DOCSDIR%%/ChangeLog.2003
-%%PORTDOCS%%%%DOCSDIR%%/ChangeLog.2004
-%%PORTDOCS%%%%DOCSDIR%%/ChangeLog.2005
-%%PORTDOCS%%%%DOCSDIR%%/ChangeLog.2006
-%%PORTDOCS%%%%DOCSDIR%%/ChangeLog.2007
-%%PORTDOCS%%%%DOCSDIR%%/ChangeLog.2008
-%%PORTDOCS%%%%DOCSDIR%%/ChangeLog.2009
-%%PORTDOCS%%%%DOCSDIR%%/ChangeLog.2010
-%%PORTDOCS%%%%DOCSDIR%%/ChangeLog.2011
-%%PORTDOCS%%%%DOCSDIR%%/ChangeLog.2012
-%%PORTDOCS%%%%DOCSDIR%%/ChangeLog.2013
-%%PORTDOCS%%%%DOCSDIR%%/Copyright.txt
-%%PORTDOCS%%%%DOCSDIR%%/NEWS.txt
-%%PORTDOCS%%%%DOCSDIR%%/www/ChangeLog-2001.html
-%%PORTDOCS%%%%DOCSDIR%%/www/ChangeLog-2002.html
-%%PORTDOCS%%%%DOCSDIR%%/www/ChangeLog-2003.html
-%%PORTDOCS%%%%DOCSDIR%%/www/ChangeLog-2004.html
-%%PORTDOCS%%%%DOCSDIR%%/www/ChangeLog-2005.html
-%%PORTDOCS%%%%DOCSDIR%%/www/ChangeLog-2006.html
-%%PORTDOCS%%%%DOCSDIR%%/www/ChangeLog-2007.html
-%%PORTDOCS%%%%DOCSDIR%%/www/ChangeLog-2008.html
-%%PORTDOCS%%%%DOCSDIR%%/www/ChangeLog-2009.html
-%%PORTDOCS%%%%DOCSDIR%%/www/ChangeLog-2010.html
-%%PORTDOCS%%%%DOCSDIR%%/www/ChangeLog-2011.html
-%%PORTDOCS%%%%DOCSDIR%%/www/ChangeLog-2012.html
-%%PORTDOCS%%%%DOCSDIR%%/www/ChangeLog-2013.html
-%%PORTDOCS%%%%DOCSDIR%%/www/ChangeLog-2014.html
-%%PORTDOCS%%%%DOCSDIR%%/www/Changelog.html
-%%PORTDOCS%%%%DOCSDIR%%/www/Changes.html
-%%PORTDOCS%%%%DOCSDIR%%/www/Copyright.html
-%%PORTDOCS%%%%DOCSDIR%%/www/FAQ.html
-%%PORTDOCS%%%%DOCSDIR%%/www/GraphicsMagick.html
-%%PORTDOCS%%%%DOCSDIR%%/www/Hg.html
-%%PORTDOCS%%%%DOCSDIR%%/www/INSTALL-unix.html
-%%PORTDOCS%%%%DOCSDIR%%/www/INSTALL-windows.html
-%%PORTDOCS%%%%DOCSDIR%%/www/ImageMagickObject.html
-%%PORTDOCS%%%%DOCSDIR%%/www/Magick++/Blob.html
-%%PORTDOCS%%%%DOCSDIR%%/www/Magick++/Cache.png
-%%PORTDOCS%%%%DOCSDIR%%/www/Magick++/ChangeLog.html
-%%PORTDOCS%%%%DOCSDIR%%/www/Magick++/CoderInfo.html
-%%PORTDOCS%%%%DOCSDIR%%/www/Magick++/Color.html
-%%PORTDOCS%%%%DOCSDIR%%/www/Magick++/Drawable.html
-%%PORTDOCS%%%%DOCSDIR%%/www/Magick++/Drawable_example_1.png
-%%PORTDOCS%%%%DOCSDIR%%/www/Magick++/Enumerations.html
-%%PORTDOCS%%%%DOCSDIR%%/www/Magick++/Exception.html
-%%PORTDOCS%%%%DOCSDIR%%/www/Magick++/FormatCharacters.html
-%%PORTDOCS%%%%DOCSDIR%%/www/Magick++/Geometry.html
-%%PORTDOCS%%%%DOCSDIR%%/www/Magick++/Image.html
-%%PORTDOCS%%%%DOCSDIR%%/www/Magick++/Image.png
-%%PORTDOCS%%%%DOCSDIR%%/www/Magick++/ImageDesign.html
-%%PORTDOCS%%%%DOCSDIR%%/www/Magick++/Montage.html
-%%PORTDOCS%%%%DOCSDIR%%/www/Magick++/PixelPacket.html
-%%PORTDOCS%%%%DOCSDIR%%/www/Magick++/Pixels.html
-%%PORTDOCS%%%%DOCSDIR%%/www/Magick++/STL.html
-%%PORTDOCS%%%%DOCSDIR%%/www/Magick++/TypeMetric.html
-%%PORTDOCS%%%%DOCSDIR%%/www/Magick++/gm-188x120t.png
-%%PORTDOCS%%%%DOCSDIR%%/www/Magick++/index.html
-%%PORTDOCS%%%%DOCSDIR%%/www/Magick++/montage-sample-framed.jpg
-%%PORTDOCS%%%%DOCSDIR%%/www/Magick++/right_triangle.png
-%%PORTDOCS%%%%DOCSDIR%%/www/Magick++/thumbnail-anatomy-framed.jpg
-%%PORTDOCS%%%%DOCSDIR%%/www/Magick++/thumbnail-anatomy-plain.jpg
-%%PORTDOCS%%%%DOCSDIR%%/www/Magick++/thumbnail-sample-framed.jpg
-%%PORTDOCS%%%%DOCSDIR%%/www/Magick++/thumbnail-sample-plain.jpg
-%%PORTDOCS%%%%DOCSDIR%%/www/NEWS.html
-%%PORTDOCS%%%%DOCSDIR%%/www/OpenMP.html
-%%PORTDOCS%%%%DOCSDIR%%/www/README.html
-%%PORTDOCS%%%%DOCSDIR%%/www/animate.html
-%%PORTDOCS%%%%DOCSDIR%%/www/api/animate.html
-%%PORTDOCS%%%%DOCSDIR%%/www/api/annotate.html
-%%PORTDOCS%%%%DOCSDIR%%/www/api/api.html
-%%PORTDOCS%%%%DOCSDIR%%/www/api/attribute.html
-%%PORTDOCS%%%%DOCSDIR%%/www/api/average.html
-%%PORTDOCS%%%%DOCSDIR%%/www/api/blob.html
-%%PORTDOCS%%%%DOCSDIR%%/www/api/cdl.html
-%%PORTDOCS%%%%DOCSDIR%%/www/api/channel.html
-%%PORTDOCS%%%%DOCSDIR%%/www/api/color.html
-%%PORTDOCS%%%%DOCSDIR%%/www/api/colormap.html
-%%PORTDOCS%%%%DOCSDIR%%/www/api/compare.html
-%%PORTDOCS%%%%DOCSDIR%%/www/api/composite.html
-%%PORTDOCS%%%%DOCSDIR%%/www/api/confirm_access.html
-%%PORTDOCS%%%%DOCSDIR%%/www/api/constitute.html
-%%PORTDOCS%%%%DOCSDIR%%/www/api/decorate.html
-%%PORTDOCS%%%%DOCSDIR%%/www/api/deprecate.html
-%%PORTDOCS%%%%DOCSDIR%%/www/api/describe.html
-%%PORTDOCS%%%%DOCSDIR%%/www/api/display.html
-%%PORTDOCS%%%%DOCSDIR%%/www/api/draw.html
-%%PORTDOCS%%%%DOCSDIR%%/www/api/effect.html
-%%PORTDOCS%%%%DOCSDIR%%/www/api/enhance.html
-%%PORTDOCS%%%%DOCSDIR%%/www/api/error.html
-%%PORTDOCS%%%%DOCSDIR%%/www/api/export.html
-%%PORTDOCS%%%%DOCSDIR%%/www/api/fx.html
-%%PORTDOCS%%%%DOCSDIR%%/www/api/hclut.html
-%%PORTDOCS%%%%DOCSDIR%%/www/api/image.html
-%%PORTDOCS%%%%DOCSDIR%%/www/api/import.html
-%%PORTDOCS%%%%DOCSDIR%%/www/api/list.html
-%%PORTDOCS%%%%DOCSDIR%%/www/api/magick.html
-%%PORTDOCS%%%%DOCSDIR%%/www/api/memory.html
-%%PORTDOCS%%%%DOCSDIR%%/www/api/monitor.html
-%%PORTDOCS%%%%DOCSDIR%%/www/api/montage.html
-%%PORTDOCS%%%%DOCSDIR%%/www/api/operator.html
-%%PORTDOCS%%%%DOCSDIR%%/www/api/paint.html
-%%PORTDOCS%%%%DOCSDIR%%/www/api/pixel_cache.html
-%%PORTDOCS%%%%DOCSDIR%%/www/api/pixel_iterator.html
-%%PORTDOCS%%%%DOCSDIR%%/www/api/plasma.html
-%%PORTDOCS%%%%DOCSDIR%%/www/api/profile.html
-%%PORTDOCS%%%%DOCSDIR%%/www/api/quantize.html
-%%PORTDOCS%%%%DOCSDIR%%/www/api/registry.html
-%%PORTDOCS%%%%DOCSDIR%%/www/api/render.html
-%%PORTDOCS%%%%DOCSDIR%%/www/api/resize.html
-%%PORTDOCS%%%%DOCSDIR%%/www/api/resource.html
-%%PORTDOCS%%%%DOCSDIR%%/www/api/segment.html
-%%PORTDOCS%%%%DOCSDIR%%/www/api/shear.html
-%%PORTDOCS%%%%DOCSDIR%%/www/api/signature.html
-%%PORTDOCS%%%%DOCSDIR%%/www/api/statistics.html
-%%PORTDOCS%%%%DOCSDIR%%/www/api/texture.html
-%%PORTDOCS%%%%DOCSDIR%%/www/api/transform.html
-%%PORTDOCS%%%%DOCSDIR%%/www/api/types.html
-%%PORTDOCS%%%%DOCSDIR%%/www/api/widget.html
-%%PORTDOCS%%%%DOCSDIR%%/www/authors.html
-%%PORTDOCS%%%%DOCSDIR%%/www/batch.html
-%%PORTDOCS%%%%DOCSDIR%%/www/benchmark.html
-%%PORTDOCS%%%%DOCSDIR%%/www/benchmarks.html
-%%PORTDOCS%%%%DOCSDIR%%/www/bugs.html
-%%PORTDOCS%%%%DOCSDIR%%/www/color.html
-%%PORTDOCS%%%%DOCSDIR%%/www/compare.html
-%%PORTDOCS%%%%DOCSDIR%%/www/composite.html
-%%PORTDOCS%%%%DOCSDIR%%/www/configure-target-setup.png
-%%PORTDOCS%%%%DOCSDIR%%/www/conjure.html
-%%PORTDOCS%%%%DOCSDIR%%/www/contribute.html
-%%PORTDOCS%%%%DOCSDIR%%/www/convert.html
-%%PORTDOCS%%%%DOCSDIR%%/www/display.html
-%%PORTDOCS%%%%DOCSDIR%%/www/docutils-api.css
-%%PORTDOCS%%%%DOCSDIR%%/www/docutils-articles.css
-%%PORTDOCS%%%%DOCSDIR%%/www/download.html
-%%PORTDOCS%%%%DOCSDIR%%/www/favicon.ico
-%%PORTDOCS%%%%DOCSDIR%%/www/formats.html
-%%PORTDOCS%%%%DOCSDIR%%/www/gm.html
-%%PORTDOCS%%%%DOCSDIR%%/www/identify.html
-%%PORTDOCS%%%%DOCSDIR%%/www/images/ball.png
-%%PORTDOCS%%%%DOCSDIR%%/www/images/banner_bg.png
-%%PORTDOCS%%%%DOCSDIR%%/www/images/gm-107x76.gif
-%%PORTDOCS%%%%DOCSDIR%%/www/images/gm-107x76.png
-%%PORTDOCS%%%%DOCSDIR%%/www/images/gm-125x80t.png
-%%PORTDOCS%%%%DOCSDIR%%/www/images/right_triangle.png
-%%PORTDOCS%%%%DOCSDIR%%/www/images/right_triangle_option.png
-%%PORTDOCS%%%%DOCSDIR%%/www/import.html
-%%PORTDOCS%%%%DOCSDIR%%/www/index.html
-%%PORTDOCS%%%%DOCSDIR%%/www/links.html
-%%PORTDOCS%%%%DOCSDIR%%/www/magick.css
-%%PORTDOCS%%%%DOCSDIR%%/www/miff.html
-%%PORTDOCS%%%%DOCSDIR%%/www/mission.html
-%%PORTDOCS%%%%DOCSDIR%%/www/mogrify.html
-%%PORTDOCS%%%%DOCSDIR%%/www/montage.html
-%%PORTDOCS%%%%DOCSDIR%%/www/motion-picture.html
-%%PORTDOCS%%%%DOCSDIR%%/www/perl.html
-%%PORTDOCS%%%%DOCSDIR%%/www/process.html
-%%PORTDOCS%%%%DOCSDIR%%/www/programming.html
-%%PORTDOCS%%%%DOCSDIR%%/www/project.html
-%%PORTDOCS%%%%DOCSDIR%%/www/quantize.html
-%%PORTDOCS%%%%DOCSDIR%%/www/reference.html
-%%PORTDOCS%%%%DOCSDIR%%/www/smile.c
-%%PORTDOCS%%%%DOCSDIR%%/www/time.html
-%%PORTDOCS%%%%DOCSDIR%%/www/tools.html
-%%PORTDOCS%%%%DOCSDIR%%/www/utilities.html
-%%PORTDOCS%%%%DOCSDIR%%/www/version.html
-%%PORTDOCS%%%%DOCSDIR%%/www/wand/drawing_wand.html
-%%PORTDOCS%%%%DOCSDIR%%/www/wand/magick_wand.html
-%%PORTDOCS%%%%DOCSDIR%%/www/wand/pixel_wand.html
-%%PORTDOCS%%%%DOCSDIR%%/www/wand/wand.html
-@dir lib/GraphicsMagick/modules-Q%%Q%%/coders
@dir lib/GraphicsMagick/modules-Q%%Q%%/filters
+@dir lib/GraphicsMagick/modules-Q%%Q%%/coders
OpenPOWER on IntegriCloud