[Midnightbsd-cvs] mports [20193] trunk/graphics/GraphicsMagick/pkg-plist: graphics magick 1.3.20

laffer1 at midnightbsd.org laffer1 at midnightbsd.org
Fri Sep 11 22:10:09 EDT 2015


Revision: 20193
          http://svnweb.midnightbsd.org/mports/?rev=20193
Author:   laffer1
Date:     2015-09-11 22:10:08 -0400 (Fri, 11 Sep 2015)
Log Message:
-----------
graphics magick 1.3.20

Modified Paths:
--------------
    trunk/graphics/GraphicsMagick/Makefile
    trunk/graphics/GraphicsMagick/distinfo
    trunk/graphics/GraphicsMagick/files/patch-configure
    trunk/graphics/GraphicsMagick/pkg-descr
    trunk/graphics/GraphicsMagick/pkg-plist

Removed Paths:
-------------
    trunk/graphics/GraphicsMagick/files/extra-patch-Makefile.in
    trunk/graphics/GraphicsMagick/files/patch-Magick++__lib__Makefile.in
    trunk/graphics/GraphicsMagick/files/patch-coders__Makefile.in
    trunk/graphics/GraphicsMagick/files/patch-coders__fpx.c
    trunk/graphics/GraphicsMagick/files/patch-coders__png.c
    trunk/graphics/GraphicsMagick/files/patch-filters__Makefile.in
    trunk/graphics/GraphicsMagick/files/patch-magick__Makefile.in
    trunk/graphics/GraphicsMagick/files/patch-magick__locale_c.h
    trunk/graphics/GraphicsMagick/files/patch-magick__symbols.h
    trunk/graphics/GraphicsMagick/files/patch-wand__Makefile.in

Property Changed:
----------------
    trunk/graphics/GraphicsMagick/files/patch-configure
    trunk/graphics/GraphicsMagick/pkg-descr

Modified: trunk/graphics/GraphicsMagick/Makefile
===================================================================
--- trunk/graphics/GraphicsMagick/Makefile	2015-09-09 02:01:10 UTC (rev 20192)
+++ trunk/graphics/GraphicsMagick/Makefile	2015-09-12 02:10:08 UTC (rev 20193)
@@ -1,97 +1,107 @@
 # $MidnightBSD$
 
 PORTNAME=	GraphicsMagick
-PORTVERSION=	1.1.15
-PORTREVISION=	4
+PORTVERSION=	1.3.20
 PORTEPOCH=	1
 CATEGORIES=	graphics
 MASTER_SITES=	SF \
-		ftp://ftp.graphicsmagick.org/pub/GraphicsMagick/1.1/
+		ftp://ftp.graphicsmagick.org/pub/GraphicsMagick/1.3/
 
 MAINTAINER=	ports at MidnightBSD.org
 COMMENT=	Fast image processing tools based on ImageMagick
 
-LICENSE=	bsd2
+LICENSE=	mit
 
-CONFLICTS=	GraphicsMagick-1.[23].*
-
-LIB_DEPENDS=	libfreetype.so:${PORTSDIR}/print/freetype2	\
-		libfpx.so:${PORTSDIR}/graphics/libfpx	\
-		libjbig.so:${PORTSDIR}/graphics/jbigkit	\
+LIB_DEPENDS=	libjbig.so:${PORTSDIR}/graphics/jbigkit		\
+		libjasper.so:${PORTSDIR}/graphics/jasper	\
+		liblcms2.so:${PORTSDIR}/graphics/lcms2		\
 		libpng.so:${PORTSDIR}/graphics/png		\
-		libxml2.so:${PORTSDIR}/textproc/libxml2
-OTHERGRAPHICS=	jasper jpeg lcms tiff
-LIB_DEPENDS+=	${OTHERGRAPHICS:C|(.+)|\1:${PORTSDIR}/graphics/\1|}
+		libtiff.so:${PORTSDIR}/graphics/tiff		\
+		libfreetype.so:${PORTSDIR}/print/freetype2
 
-OPTIONS_DEFINE=	Q8BIT TESTS X11 DOCS
-
-Q8BIT_DESC=	Use 8-bit pixels (speed) instead of 16 (quality)
-TESTS_DESC=	Run bundled self-tests after build
-
-OPTIONS_DEFAULT=X11 TESTS DOCS
-
-USES=		iconv libtool tar:bzip2
-USE_GHOSTSCRIPT=yes
+USES=		iconv jpeg libtool tar:bzip2
+USE_GHOSTSCRIPT=	yes
+USE_GNOME=	libxml2
 GNU_CONFIGURE=	yes
-
-.ifndef WINDOWS_FONT_DIR
-# Use fonts installed by x11-fonts/webfonts by default
-WINDOWS_FONT_DIR=${LOCALBASE}/lib/X11/fonts/webfonts
-.endif
-
+CONFIGURE_ENV=	PTHREAD_LIBS="-lpthread"
 CONFIGURE_ARGS=	--without-perl --enable-shared --enable-static \
-		--without-threads --program-prefix=""
-CONFIGURE_TARGET=--build=${ARCH}-portbld-freebsd6.1 \
-		 --host=${ARCH}-portbld-freebsd6.1 \
-		 --target=${ARCH}-portbld-freebsd6.1
+		--with-quantum-depth="${QD}" \
+		--with-windows-font-dir="${WINDOWS_FONT_DIR}"
+INSTALL_TARGET=	install-strip
 USE_LDCONFIG=	yes
 
-ALL_TARGET=	-j`${SYSCTL} -n hw.ncpu`
+PLIST_SUB=	Q="${QD}"
 
-CFLAGS+=	-DPNG_DEPSTRUCT=
-CPPFLAGS+=	-I${LOCALBASE}/include -I${LOCALBASE}/include/libpng15
 CPPFLAGS+=	-I${LOCALBASE}/include
 LDFLAGS+=	-L${LOCALBASE}/lib
 
-test check:
-	cd ${WRKSRC} && ${SETENV} ${MAKE_ENV} ${MAKE} check
+OPTIONS_DEFINE=		DOCS DPS FPX OPENMP Q8BIT SSE TESTS WEBP X11
+OPTIONS_DEFAULT=	OPENMP WEBP X11
 
+DPS_DESC=		Display Ghostscript support (must also select X11)
+FPX_LIB_DEPENDS+=	libfpx.so.[2-9]:${PORTSDIR}/graphics/libfpx
+FPX_CONFIGURE_WITH=	fpx
+OPENMP_USES=		compiler:openmp
+OPENMP_CONFIGURE_ON=	--with-threads --enable-openmp --disable-openmp-slow
+OPENMP_CONFIGURE_OFF=	--without-threads --disable-openmp
+Q8BIT_DESC=		Use 8-bit pixels (speed) instead of 16 (quality)
+WEBP_LIB_DEPENDS=	libwebp.so:${PORTSDIR}/graphics/webp
+WEBP_CONFIGURE_WITH=	webp
+X11_LIB_DEPENDS=	libwmflite.so:${PORTSDIR}/graphics/${LIBWMF_PORT}
+X11_USE=		XORG=xext
+X11_CONFIGURE_WITH=	x
+
 .include <bsd.mport.options.mk>
 
-.if ${PORT_OPTIONS:MDOCS} == ""
-# Get rid of the Makefile targets that install the documentation
-# and HTML files into DOCSDIR
-EXTRA_PATCHES+=	${FILESDIR}/extra-patch-Makefile.in
+.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 defined(WITH_WINDOWS_FONT_DIR)
-CONFIGURE_ARGS+=	--with-windows-font-dir="${WINDOWS_FONT_DIR}"
+.if ${PORT_OPTIONS:MQ8BIT}
+QD=		8
+.else
+QD=		16
 .endif
 
-.if ${PORT_OPTIONS:MX11} == ""
-PKGNAMESUFFIX+=	-nox11
-CONFIGURE_ARGS+=--without-x
-LIB_DEPENDS+=	wmflite:${PORTSDIR}/graphics/libwmf-nox11
-.else
-LIB_DEPENDS+=	wmflite:${PORTSDIR}/graphics/libwmf
+.if ${PORT_OPTIONS:MSSE}
+.if ${MACHINE_CPU:Msse}
+CFLAGS+=	-msse
 .endif
+.if ${MACHINE_CPU:Msse2}
+CFLAGS+=	-msse2
+.endif
+.if ${MACHINE_CPU:Msse3}
+CFLAGS+=	-msse3
+.endif
+.endif
 
-.if ${PORT_OPTIONS:MQ8BIT}
-CONFIGURE_ARGS+=	--with-quantum-depth=8
-PLIST_SUB+=		Q=8
+.if ${PORT_OPTIONS:MX11}
+LIBWMF_PORT=	libwmf
 .else
-CONFIGURE_ARGS+=	--with-quantum-depth=16
-PLIST_SUB+=		Q=16
+LIBWMF_PORT=	libwmf-nox11
 .endif
 
-.if ${PORT_OPTIONS:MTESTS}
-post-build::	test
-.else
-post-build::
-	#
-	# You are strongly advised to run ``make test'' now
-	# and report any failures to ${MAINTAINER}.
-	#
+.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
 
-.include <bsd.port.mk>
+post-install:
+.for i in coders filters
+	@${MKDIR} ${PREFIX}/lib/GraphicsMagick/modules-Q${QD}/${i}
+.endfor
+
+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++

Modified: trunk/graphics/GraphicsMagick/distinfo
===================================================================
--- trunk/graphics/GraphicsMagick/distinfo	2015-09-09 02:01:10 UTC (rev 20192)
+++ trunk/graphics/GraphicsMagick/distinfo	2015-09-12 02:10:08 UTC (rev 20193)
@@ -1,2 +1,2 @@
-SHA256 (GraphicsMagick-1.1.15.tar.bz2) = a6707ea1358e3cc93242baad79c352fc93d6eeef1027a781d4bb58ddb027611e
-SIZE (GraphicsMagick-1.1.15.tar.bz2) = 4973158
+SHA256 (GraphicsMagick-1.3.20.tar.bz2) = 7caf27691ec21682de1f0259c9243725db7cdeca699c40958c28aece99e4f1dc
+SIZE (GraphicsMagick-1.3.20.tar.bz2) = 7371945

Deleted: trunk/graphics/GraphicsMagick/files/extra-patch-Makefile.in
===================================================================
--- trunk/graphics/GraphicsMagick/files/extra-patch-Makefile.in	2015-09-09 02:01:10 UTC (rev 20192)
+++ trunk/graphics/GraphicsMagick/files/extra-patch-Makefile.in	2015-09-12 02:10:08 UTC (rev 20193)
@@ -1,20 +0,0 @@
---- Makefile.in.orig	2008-05-12 12:42:50.000000000 -0400
-+++ Makefile.in	2008-11-19 18:44:40.000000000 -0500
-@@ -848,7 +848,7 @@
- 
- info-am:
- 
--install-data-am: install-data-local install-docDATA
-+install-data-am: install-data-local
- 
- install-dvi: install-dvi-recursive
- 
-@@ -1029,7 +1029,7 @@
- install-exec-local: install-exec-perl
- 
- # Install arch-independent package data
--install-data-local: install-data-html
-+install-data-local:
- 
- # Uninstall arch-independent package data
- uninstall-local: uninstall-data-html uninstall-exec-perl

Deleted: trunk/graphics/GraphicsMagick/files/patch-Magick++__lib__Makefile.in
===================================================================
--- trunk/graphics/GraphicsMagick/files/patch-Magick++__lib__Makefile.in	2015-09-09 02:01:10 UTC (rev 20192)
+++ trunk/graphics/GraphicsMagick/files/patch-Magick++__lib__Makefile.in	2015-09-12 02:10:08 UTC (rev 20193)
@@ -1,11 +0,0 @@
---- ./Magick++/lib/Makefile.in.orig	2008-04-10 11:16:21.000000000 -0400
-+++ ./Magick++/lib/Makefile.in	2008-09-02 08:05:28.000000000 -0400
-@@ -400,7 +400,7 @@
- AM_LDFLAGS = @LDFLAGS@ $(LIBSTDCLDFLAGS)
- 
- # Pkgconfig directory
--pkgconfigdir = $(libdir)/pkgconfig
-+pkgconfigdir = $(prefix)/libdata/pkgconfig
- 
- # Files to install in Pkgconfig directory
- pkgconfig_DATA = GraphicsMagick++.pc

Deleted: trunk/graphics/GraphicsMagick/files/patch-coders__Makefile.in
===================================================================
--- trunk/graphics/GraphicsMagick/files/patch-coders__Makefile.in	2015-09-09 02:01:10 UTC (rev 20192)
+++ trunk/graphics/GraphicsMagick/files/patch-coders__Makefile.in	2015-09-12 02:10:08 UTC (rev 20193)
@@ -1,29 +0,0 @@
---- ./coders/Makefile.in.orig	2008-04-10 11:16:23.000000000 -0400
-+++ ./coders/Makefile.in	2008-09-02 08:05:28.000000000 -0400
-@@ -1696,7 +1696,7 @@
- 	done
- install-pkgLTLIBRARIES: $(pkg_LTLIBRARIES)
- 	@$(NORMAL_INSTALL)
--	test -z "$(pkgdir)" || $(MKDIR_P) "$(DESTDIR)$(pkgdir)"
-+	test -z "$(pkgdir)" -o -z "$(pkg_LTLIBRARIES)" || $(MKDIR_P) "$(DESTDIR)$(pkgdir)"
- 	@list='$(pkg_LTLIBRARIES)'; for p in $$list; do \
- 	  if test -f $$p; then \
- 	    f=$(am__strip_dir) \
-@@ -2038,7 +2038,7 @@
- 	-rm -rf .libs _libs
- install-pkgDATA: $(pkg_DATA)
- 	@$(NORMAL_INSTALL)
--	test -z "$(pkgdir)" || $(MKDIR_P) "$(DESTDIR)$(pkgdir)"
-+	test -z "$(pkgdir)" -o -z '$(pkg_DATA)' || $(MKDIR_P) "$(DESTDIR)$(pkgdir)"
- 	@list='$(pkg_DATA)'; for p in $$list; do \
- 	  if test -f "$$p"; then d=; else d="$(srcdir)/"; fi; \
- 	  f=$(am__strip_dir) \
-@@ -2055,7 +2055,7 @@
- 	done
- install-pkgdataDATA: $(pkgdata_DATA)
- 	@$(NORMAL_INSTALL)
--	test -z "$(pkgdatadir)" || $(MKDIR_P) "$(DESTDIR)$(pkgdatadir)"
-+	test -z "$(pkgdatadir)" -o -z '$(pkgdata_DATA)' || $(MKDIR_P) "$(DESTDIR)$(pkgdatadir)"
- 	@list='$(pkgdata_DATA)'; for p in $$list; do \
- 	  if test -f "$$p"; then d=; else d="$(srcdir)/"; fi; \
- 	  f=$(am__strip_dir) \

Deleted: trunk/graphics/GraphicsMagick/files/patch-coders__fpx.c
===================================================================
--- trunk/graphics/GraphicsMagick/files/patch-coders__fpx.c	2015-09-09 02:01:10 UTC (rev 20192)
+++ trunk/graphics/GraphicsMagick/files/patch-coders__fpx.c	2015-09-12 02:10:08 UTC (rev 20193)
@@ -1,22 +0,0 @@
---- ./coders/fpx.c.orig	2007-11-05 22:03:47.000000000 -0500
-+++ ./coders/fpx.c	2008-09-02 08:05:29.000000000 -0400
-@@ -181,15 +181,15 @@
- 
-   unsigned int
-     status,
--    subimage;
--
--  unsigned long
-+    subimage,
-     height,
--    memory_limit,
-     tile_width,
-     tile_height,
-     width;
- 
-+  size_t
-+    memory_limit;
-+
-   /*
-     Open image.
-   */

Deleted: trunk/graphics/GraphicsMagick/files/patch-coders__png.c
===================================================================
--- trunk/graphics/GraphicsMagick/files/patch-coders__png.c	2015-09-09 02:01:10 UTC (rev 20192)
+++ trunk/graphics/GraphicsMagick/files/patch-coders__png.c	2015-09-12 02:10:08 UTC (rev 20193)
@@ -1,241 +0,0 @@
---- coders/png.c.orig	2008-01-18 00:34:17.000000000 +0100
-+++ coders/png.c	2012-04-29 07:23:05.000000000 +0200
-@@ -73,6 +73,7 @@
- #if defined(HasPNG)
- #include "png.h"
- #include "zlib.h"
-+#include "pngpriv.h"
- 

- #if PNG_LIBPNG_VER > 95
- /*
-@@ -1365,7 +1366,7 @@
-       "  libpng-%.1024s error: %.1024s", PNG_LIBPNG_VER_STRING,
-       message);
-   (void) ThrowException2(&image->exception,CoderError,message,image->filename);
--  longjmp(ping->jmpbuf,1);
-+  longjmp(png_jmpbuf(ping),1);
- }
- 
- static void PNGWarningHandler(png_struct *ping,png_const_charp message)
-@@ -1660,7 +1661,7 @@
-       ThrowReaderException(ResourceLimitError,MemoryAllocationFailed,image)
-     }
-   png_pixels=(unsigned char *) NULL;
--  if (setjmp(ping->jmpbuf))
-+  if (setjmp(png_jmpbuf(ping)))
-     {
-       /*
-         PNG image is corrupt.
-@@ -2038,10 +2039,10 @@
-       /*
-         Image has a transparent background.
-       */
--      transparent_color.red=(int) (ping_info->trans_values.red*scale);
--      transparent_color.green=(int) (ping_info->trans_values.green*scale);
--      transparent_color.blue=(int) (ping_info->trans_values.blue*scale);
--      transparent_color.opacity=(int) (ping_info->trans_values.gray*scale);
-+      transparent_color.red=(int) (ping_info->trans_color.red*scale);
-+      transparent_color.green=(int) (ping_info->trans_color.green*scale);
-+      transparent_color.blue=(int) (ping_info->trans_color.blue*scale);
-+      transparent_color.opacity=(int) (ping_info->trans_color.gray*scale);
-       if (ping_info->color_type == PNG_COLOR_TYPE_GRAY)
-         {
-           transparent_color.red=transparent_color.opacity;
-@@ -2547,7 +2548,7 @@
-                 index=indexes[x];
-                 if (index < ping_info->num_trans)
-                   q->opacity=
--                    ScaleCharToQuantum(255-ping_info->trans[index]);
-+                    ScaleCharToQuantum(255-ping_info->trans_alpha[index]);
-                 q++;
-               }
-             else if (ping_info->color_type == PNG_COLOR_TYPE_GRAY)
-@@ -6030,7 +6031,7 @@
-   png_set_write_fn(ping,image,png_put_data,png_flush_data);
-   png_pixels=(unsigned char *) NULL;
- 
--  if (setjmp(ping->jmpbuf))
-+  if (setjmp(png_jmpbuf(ping)))
-     {
-       /*
-         PNG write failed.
-@@ -6229,12 +6230,12 @@
-           /*
-             Identify which colormap entry is transparent.
-           */
--          ping_info->trans=MagickAllocateMemory(unsigned char *,number_colors);
--          if (ping_info->trans == (unsigned char *) NULL)
-+          ping_info->trans_alpha=MagickAllocateMemory(unsigned char *,number_colors);
-+          if (ping_info->trans_alpha == (unsigned char *) NULL)
-             ThrowWriterException(ResourceLimitError,MemoryAllocationFailed,image);
-           assert(number_colors <= 256);
-           for (i=0; i < (long) number_colors; i++)
--             ping_info->trans[i]=255;
-+             ping_info->trans_alpha[i]=255;
-           for (y=0; y < (long) image->rows; y++)
-           {
-             register const PixelPacket
-@@ -6254,7 +6255,7 @@
- 
-                   index=indexes[x];
-                   assert((unsigned long) index < number_colors);
--                  ping_info->trans[index]=(png_byte) (255-
-+                  ping_info->trans_alpha[index]=(png_byte) (255-
-                     ScaleQuantumToChar(p->opacity));
-                 }
-               p++;
-@@ -6262,14 +6263,14 @@
-           }
-           ping_info->num_trans=0;
-           for (i=0; i < (long) number_colors; i++)
--            if (ping_info->trans[i] != 255)
-+            if (ping_info->trans_alpha[i] != 255)
-               ping_info->num_trans=(unsigned short) (i+1);
-           if (ping_info->num_trans == 0)
-             ping_info->valid&=(~PNG_INFO_tRNS);
-           if (!(ping_info->valid & PNG_INFO_tRNS))
-             ping_info->num_trans=0;
-           if (ping_info->num_trans == 0)
--            MagickFreeMemory(ping_info->trans);
-+            MagickFreeMemory(ping_info->trans_alpha);
-           /*
-             Identify which colormap entry is the background color.
-           */
-@@ -6388,12 +6389,12 @@
-               if (ping_info->bit_depth == 1)
-                  mask=0x0001;
-               ping_info->valid|=PNG_INFO_tRNS;
--              ping_info->trans_values.red=ScaleQuantumToShort(p->red)&mask;
--              ping_info->trans_values.green=ScaleQuantumToShort(p->green)&mask;
--              ping_info->trans_values.blue=ScaleQuantumToShort(p->blue)&mask;
--              ping_info->trans_values.gray=
-+              ping_info->trans_color.red=ScaleQuantumToShort(p->red)&mask;
-+              ping_info->trans_color.green=ScaleQuantumToShort(p->green)&mask;
-+              ping_info->trans_color.blue=ScaleQuantumToShort(p->blue)&mask;
-+              ping_info->trans_color.gray=
-                  (png_uint_16) ScaleQuantumToShort(PixelIntensity(p))&mask;
--              ping_info->trans_values.index=(unsigned char)
-+              ping_info->trans_color.index=(unsigned char)
-                  (ScaleQuantumToChar(MaxRGB-p->opacity));
-             }
-           if (ping_info->valid & PNG_INFO_tRNS)
-@@ -6413,7 +6414,7 @@
-                 {
-                   if (p->opacity != OpaqueOpacity)
-                     {
--                      if (!RGBColorMatchExact(ping_info->trans_values,*p))
-+                      if (!RGBColorMatchExact(ping_info->trans_color,*p))
-                       {
-                          break;  /* Can't use RGB + tRNS for multiple
-                                     transparent colors.  */
-@@ -6426,7 +6427,7 @@
-                     }
-                    else
-                     {
--                      if (RGBColorMatchExact(ping_info->trans_values,*p))
-+                      if (RGBColorMatchExact(ping_info->trans_color,*p))
-                           break; /* Can't use RGB + tRNS when another pixel
-                                     having the same RGB samples is
-                                     transparent. */
-@@ -6444,10 +6445,10 @@
-               ping_info->color_type &= 0x03;  /* changes 4 or 6 to 0 or 2 */
-               if (image->depth == 8)
-                 {
--                  ping_info->trans_values.red&=0xff;
--                  ping_info->trans_values.green&=0xff;
--                  ping_info->trans_values.blue&=0xff;
--                  ping_info->trans_values.gray&=0xff;
-+                  ping_info->trans_color.red&=0xff;
-+                  ping_info->trans_color.green&=0xff;
-+                  ping_info->trans_color.blue&=0xff;
-+                  ping_info->trans_color.gray&=0xff;
-                 }
-             }
-         }
-@@ -6463,7 +6464,7 @@
-           {
-             ping_info->color_type=PNG_COLOR_TYPE_GRAY;
-             if (save_image_depth == 16 && image->depth == 8)
--              ping_info->trans_values.gray*=0x0101;
-+              ping_info->trans_color.gray*=0x0101;
-           }
-         if (image->depth > QuantumDepth)
-           image->depth=QuantumDepth;
-@@ -6577,14 +6578,14 @@
-               /*
-                 Identify which colormap entry is transparent.
-               */
--              ping_info->trans=MagickAllocateMemory(unsigned char *,
-+              ping_info->trans_alpha=MagickAllocateMemory(unsigned char *,
-                   number_colors);
--              if (ping_info->trans == (unsigned char *) NULL)
-+              if (ping_info->trans_alpha == (unsigned char *) NULL)
-                 ThrowWriterException(ResourceLimitError,
-                     MemoryAllocationFailed,image);
-               assert(number_colors <= 256);
-               for (i=0; i < (long) number_colors; i++)
--                 ping_info->trans[i]=255;
-+                 ping_info->trans_alpha[i]=255;
-               for (y=0; y < (long) image->rows; y++)
-               {
-                 register const PixelPacket
-@@ -6604,21 +6605,21 @@
- 
-                       index=indexes[x];
-                       assert((unsigned long) index < number_colors);
--                      ping_info->trans[index]=(png_byte) (255-
-+                      ping_info->trans_alpha[index]=(png_byte) (255-
-                         ScaleQuantumToChar(p->opacity));
-                     }
-                   p++;
-                 }
-               }
-               for (i=0; i < (long) number_colors; i++)
--                if (ping_info->trans[i] != 255)
-+                if (ping_info->trans_alpha[i] != 255)
-                   ping_info->num_trans=(unsigned short) (i+1);
-               if (ping_info->num_trans == 0)
-                 ping_info->valid&=(~PNG_INFO_tRNS);
-               if (!(ping_info->valid & PNG_INFO_tRNS))
-                 ping_info->num_trans=0;
-               if (ping_info->num_trans == 0)
--                MagickFreeMemory(ping_info->trans);
-+                MagickFreeMemory(ping_info->trans_alpha);
-             }
- 
-             /*
-@@ -6636,10 +6637,10 @@
-           image->depth=8;
-         if ((save_image_depth == 16) && (image->depth == 8))
-           {
--            ping_info->trans_values.red*=0x0101;
--            ping_info->trans_values.green*=0x0101;
--            ping_info->trans_values.blue*=0x0101;
--            ping_info->trans_values.gray*=0x0101;
-+            ping_info->trans_color.red*=0x0101;
-+            ping_info->trans_color.green*=0x0101;
-+            ping_info->trans_color.blue*=0x0101;
-+            ping_info->trans_color.gray*=0x0101;
-           }
-       }
- 
-@@ -6666,8 +6667,8 @@
-                "  Setting up bKGD chunk");
-          png_set_bKGD(ping,ping_info,&background);
- 
--         ping_info->trans_values.gray=(png_uint_16)(maxval*
--           ping_info->trans_values.gray/MaxRGB);
-+         ping_info->trans_color.gray=(png_uint_16)(maxval*
-+           ping_info->trans_color.gray/MaxRGB);
-       }
-     }
-   if (logging)
-@@ -7174,7 +7175,7 @@
- #endif
-   if (ping_info->valid & PNG_INFO_tRNS)
-     {
--      MagickFreeMemory(ping_info->trans);
-+      MagickFreeMemory(ping_info->trans_alpha);
-       ping_info->valid&=(~PNG_INFO_tRNS);
-     }
-   png_destroy_write_struct(&ping,&ping_info);

Modified: trunk/graphics/GraphicsMagick/files/patch-configure
===================================================================
--- trunk/graphics/GraphicsMagick/files/patch-configure	2015-09-09 02:01:10 UTC (rev 20192)
+++ trunk/graphics/GraphicsMagick/files/patch-configure	2015-09-12 02:10:08 UTC (rev 20193)
@@ -1,29 +1,108 @@
---- ./configure.orig	2008-04-10 11:16:29.000000000 -0400
-+++ ./configure	2008-09-02 08:05:29.000000000 -0400
-@@ -34040,7 +34040,7 @@
- #define MagickLibConfigSubDir "$MagickLibConfigSubDir"
- _ACEOF
+--- configure.orig	2013-12-31 20:58:17.000000000 +0100
++++ configure	2014-04-26 15:53:04.000000000 +0200
+@@ -12919,7 +12919,6 @@
+     # FreeBSD 3 and greater uses gcc -shared to do shared libraries.
+     freebsd* | dragonfly*)
+       archive_cmds='$CC -shared $pic_flag -o $lib $libobjs $deplibs $compiler_flags'
+-      hardcode_libdir_flag_spec='-R$libdir'
+       hardcode_direct=yes
+       hardcode_shlibpath_var=no
+       ;;
+@@ -23889,60 +23888,6 @@
+     X_CFLAGS="$X_CFLAGS -I$x_includes"
+   fi
  
--MagickLibConfigPath="${LIB_DIR}/${MagickLibConfigSubDir}"
-+MagickLibConfigPath="${DATA_DIR}/GraphicsMagick/config"
- MagickLibConfigPathDefine="${MagickLibConfigPath}/"
- if test "$native_win32_build" = 'yes'
- then
-@@ -34098,7 +34098,7 @@
+-  # It would also be nice to do this for all -L options, not just this one.
+-  if test -n "$x_libraries"; then
+-    X_LIBS="$X_LIBS -L$x_libraries"
+-    # For Solaris; some versions of Sun CC require a space after -R and
+-    # others require no space.  Words are not sufficient . . . .
+-    { $as_echo "$as_me:${as_lineno-$LINENO}: checking whether -R must be followed by a space" >&5
+-$as_echo_n "checking whether -R must be followed by a space... " >&6; }
+-    ac_xsave_LIBS=$LIBS; LIBS="$LIBS -R$x_libraries"
+-    ac_xsave_c_werror_flag=$ac_c_werror_flag
+-    ac_c_werror_flag=yes
+-    cat confdefs.h - <<_ACEOF >conftest.$ac_ext
+-/* end confdefs.h.  */
+-
+-int
+-main ()
+-{
+-
+-  ;
+-  return 0;
+-}
+-_ACEOF
+-if ac_fn_c_try_link "$LINENO"; then :
+-  { $as_echo "$as_me:${as_lineno-$LINENO}: result: no" >&5
+-$as_echo "no" >&6; }
+-       X_LIBS="$X_LIBS -R$x_libraries"
+-else
+-  LIBS="$ac_xsave_LIBS -R $x_libraries"
+-       cat confdefs.h - <<_ACEOF >conftest.$ac_ext
+-/* end confdefs.h.  */
+-
+-int
+-main ()
+-{
+-
+-  ;
+-  return 0;
+-}
+-_ACEOF
+-if ac_fn_c_try_link "$LINENO"; then :
+-  { $as_echo "$as_me:${as_lineno-$LINENO}: result: yes" >&5
+-$as_echo "yes" >&6; }
+-	  X_LIBS="$X_LIBS -R $x_libraries"
+-else
+-  { $as_echo "$as_me:${as_lineno-$LINENO}: result: neither works" >&5
+-$as_echo "neither works" >&6; }
+-fi
+-rm -f core conftest.err conftest.$ac_objext \
+-    conftest$ac_exeext conftest.$ac_ext
+-fi
+-rm -f core conftest.err conftest.$ac_objext \
+-    conftest$ac_exeext conftest.$ac_ext
+-    ac_c_werror_flag=$ac_xsave_c_werror_flag
+-    LIBS=$ac_xsave_LIBS
+-  fi
+ 
+   # Check for system-dependent libraries X programs must link with.
+   # Do this before checking for the system-independent R6 libraries
+@@ -24637,15 +24582,16 @@
+     # Cygwin doesn't deliver -lXt as a DLL, which prevents a DLL build.
+     # Adobe DPS (as delivered on Solaris) doesn't require -lXt.
+     # GraphicsMagick itself doesn't use -lXt.
++    # in FreeBSD < 10, libXt is added by the linker, bot on >= 10
+     have_libdps='no'
+-    LIBDPS_XT=''
++    LIBDPS_XT='-lXt'
+     { $as_echo "$as_me:${as_lineno-$LINENO}: checking for DPSInitialize in -ldps" >&5
+ $as_echo_n "checking for DPSInitialize in -ldps... " >&6; }
+ if ${ac_cv_lib_dps_DPSInitialize+:} false; then :
+   $as_echo_n "(cached) " >&6
+ else
+   ac_check_lib_save_LIBS=$LIBS
+-LIBS="-ldps  $LIBS"
++LIBS="-ldps $LIBDPS_XT $LIBS"
+ cat confdefs.h - <<_ACEOF >conftest.$ac_ext
+ /* end confdefs.h.  */
+ 
+@@ -27095,7 +27041,7 @@
  #
+ 
+ # Subdirectory under lib to place GraphicsMagick lib files
+-MagickLibSubdir="${PACKAGE_NAME}-${PACKAGE_VERSION}"
++MagickLibSubdir="${PACKAGE_NAME}"
+ 
+ cat >>confdefs.h <<_ACEOF
+ #define MagickLibSubdir "$MagickLibSubdir"
+@@ -27199,7 +27145,7 @@
+ 
+ #
  # Path to GraphicsMagick share files
- MagickShareSubdir="${PACKAGE_NAME}-${PACKAGE_VERSION}"
--MagickSharePath="${DATA_DIR}/${MagickShareSubdir}"
-+MagickSharePath="${DATA_DIR}/GraphicsMagick/"
+-MagickShareSubdir="${PACKAGE_NAME}-${PACKAGE_VERSION}"
++MagickShareSubdir="${PACKAGE_NAME}"
+ MagickSharePath="${DATA_DIR}/${MagickShareSubdir}"
  MagickSharePathDefine="${MagickSharePath}/"
- if test "$native_win32_build" = 'yes'
- then
-@@ -34118,7 +34118,7 @@
- #define MagickShareConfigSubDir "$MagickShareConfigSubDir"
- _ACEOF
- 
--MagickShareConfigPath="${DATA_DIR}/${MagickShareConfigSubDir}"
-+MagickShareConfigPath="${MagickLibConfigPath}"
- MagickShareConfigPathDefine="${MagickShareConfigPath}/"
- if test "$native_win32_build" = 'yes'
- then
+ case "${build_os}" in


Property changes on: trunk/graphics/GraphicsMagick/files/patch-configure
___________________________________________________________________
Deleted: cvs2svn:cvs-rev
## -1 +0,0 ##
-1.2
\ No newline at end of property
Deleted: trunk/graphics/GraphicsMagick/files/patch-filters__Makefile.in
===================================================================
--- trunk/graphics/GraphicsMagick/files/patch-filters__Makefile.in	2015-09-09 02:01:10 UTC (rev 20192)
+++ trunk/graphics/GraphicsMagick/files/patch-filters__Makefile.in	2015-09-12 02:10:08 UTC (rev 20193)
@@ -1,20 +0,0 @@
---- ./filters/Makefile.in.orig	2008-04-10 11:16:24.000000000 -0400
-+++ ./filters/Makefile.in	2008-09-02 08:05:29.000000000 -0400
-@@ -464,7 +464,7 @@
- 	done
- install-pkgLTLIBRARIES: $(pkg_LTLIBRARIES)
- 	@$(NORMAL_INSTALL)
--	test -z "$(pkgdir)" || $(MKDIR_P) "$(DESTDIR)$(pkgdir)"
-+	test -z "$(pkgdir)"  -o -z '$(pkg_LTLIBRARIES)' || $(MKDIR_P) "$(DESTDIR)$(pkgdir)"
- 	@list='$(pkg_LTLIBRARIES)'; for p in $$list; do \
- 	  if test -f $$p; then \
- 	    f=$(am__strip_dir) \
-@@ -530,7 +530,7 @@
- 	-rm -rf .libs _libs
- install-pkgDATA: $(pkg_DATA)
- 	@$(NORMAL_INSTALL)
--	test -z "$(pkgdir)" || $(MKDIR_P) "$(DESTDIR)$(pkgdir)"
-+	test -z "$(pkgdir)" -o -z '$(pkg_DATA)' || $(MKDIR_P) "$(DESTDIR)$(pkgdir)"
- 	@list='$(pkg_DATA)'; for p in $$list; do \
- 	  if test -f "$$p"; then d=; else d="$(srcdir)/"; fi; \
- 	  f=$(am__strip_dir) \

Deleted: trunk/graphics/GraphicsMagick/files/patch-magick__Makefile.in
===================================================================
--- trunk/graphics/GraphicsMagick/files/patch-magick__Makefile.in	2015-09-09 02:01:10 UTC (rev 20192)
+++ trunk/graphics/GraphicsMagick/files/patch-magick__Makefile.in	2015-09-12 02:10:08 UTC (rev 20193)
@@ -1,20 +0,0 @@
---- ./magick/Makefile.in.orig	2008-04-10 11:16:24.000000000 -0400
-+++ ./magick/Makefile.in	2008-09-02 08:05:29.000000000 -0400
-@@ -612,7 +612,7 @@
- pkgdata_DATA = 
- 
- # Pkgconfig directory
--pkgconfigdir = $(libdir)/pkgconfig
-+pkgconfigdir = $(prefix)/libdata/pkgconfig
- 
- # Files to install in Pkgconfig directory
- pkgconfig_DATA = GraphicsMagick.pc
-@@ -876,7 +876,7 @@
- 	done
- install-pkgDATA: $(pkg_DATA)
- 	@$(NORMAL_INSTALL)
--	test -z "$(pkgdir)" || $(MKDIR_P) "$(DESTDIR)$(pkgdir)"
-+	test -z "$(pkgdir)" -o -z '$(pkg_DATA)' || $(MKDIR_P) "$(DESTDIR)$(pkgdir)"
- 	@list='$(pkg_DATA)'; for p in $$list; do \
- 	  if test -f "$$p"; then d=; else d="$(srcdir)/"; fi; \
- 	  f=$(am__strip_dir) \

Deleted: trunk/graphics/GraphicsMagick/files/patch-magick__locale_c.h
===================================================================
--- trunk/graphics/GraphicsMagick/files/patch-magick__locale_c.h	2015-09-09 02:01:10 UTC (rev 20192)
+++ trunk/graphics/GraphicsMagick/files/patch-magick__locale_c.h	2015-09-12 02:10:08 UTC (rev 20193)
@@ -1,11 +0,0 @@
---- magick/locale_c.h.orig	2004-07-06 02:06:31.000000000 +0200
-+++ magick/locale_c.h	2010-03-28 20:13:08.000000000 +0200
-@@ -251,7 +251,7 @@
- #define MGK_OptionErrorStereoImageRequired 244
- #define MGK_OptionErrorSubimageSpecificationReturnsNoImages 245
- #define MGK_OptionErrorUnableToAddOrRemoveProfile 246
--#define MGK_OptionErrorUnableToAllocateICCProfile 247
-+#define MGK_ResourceLimitErrorUnableToAllocateICCProfile 247
- #define MGK_OptionErrorUnableToAverageImageSequence 248
- #define MGK_OptionErrorUnableToBlurImage 249
- #define MGK_OptionErrorUnableToChopImage 250

Deleted: trunk/graphics/GraphicsMagick/files/patch-magick__symbols.h
===================================================================
--- trunk/graphics/GraphicsMagick/files/patch-magick__symbols.h	2015-09-09 02:01:10 UTC (rev 20192)
+++ trunk/graphics/GraphicsMagick/files/patch-magick__symbols.h	2015-09-12 02:10:08 UTC (rev 20193)
@@ -1,19 +0,0 @@
---- ./magick/symbols.h.orig	2004-04-14 18:45:07.000000000 -0400
-+++ ./magick/symbols.h	2008-09-02 08:05:29.000000000 -0400
-@@ -17,6 +17,8 @@
- #if !defined(_MAGICK_SYMBOLS_H)
- #define _MAGICK_SYMBOLS_H
- 
-+#define GetToken GmGetToken
-+
- #if defined(PREFIX_MAGICK_SYMBOLS)
- #define AccessDefinition GmAccessDefinition
- #define AcquireCacheNexus GmAcquireCacheNexus
-@@ -386,7 +388,6 @@
- #define GetQuantizeInfo GmGetQuantizeInfo
- #define GetSignatureInfo GmGetSignatureInfo
- #define GetTimerInfo GmGetTimerInfo
--#define GetToken GmGetToken
- #define GetTypeInfo GmGetTypeInfo
- #define GetTypeInfoByFamily GmGetTypeInfoByFamily
- #define GetTypeList GmGetTypeList

Deleted: trunk/graphics/GraphicsMagick/files/patch-wand__Makefile.in
===================================================================
--- trunk/graphics/GraphicsMagick/files/patch-wand__Makefile.in	2015-09-09 02:01:10 UTC (rev 20192)
+++ trunk/graphics/GraphicsMagick/files/patch-wand__Makefile.in	2015-09-12 02:10:08 UTC (rev 20193)
@@ -1,11 +0,0 @@
---- ./wand/Makefile.in.orig	2008-04-10 11:16:25.000000000 -0400
-+++ ./wand/Makefile.in	2008-09-02 08:05:29.000000000 -0400
-@@ -427,7 +427,7 @@
- noinst_HEADERS = magick_compat.h
- 
- # Pkgconfig directory
--pkgconfigdir = $(libdir)/pkgconfig
-+pkgconfigdir = $(prefix)/libdata/pkgconfig
- 
- # Files to install in Pkgconfig directory
- pkgconfig_DATA = GraphicsMagickWand.pc

Modified: trunk/graphics/GraphicsMagick/pkg-descr
===================================================================
--- trunk/graphics/GraphicsMagick/pkg-descr	2015-09-09 02:01:10 UTC (rev 20192)
+++ trunk/graphics/GraphicsMagick/pkg-descr	2015-09-12 02:10:08 UTC (rev 20193)
@@ -7,4 +7,4 @@
 The program is the fork of a better-known ImageMagick (5.5.2), which
 emphasizes end-user and API-stabilities.
 
-WWW:    http://www.graphicsmagick.org/
+WWW: http://www.graphicsmagick.org/


Property changes on: trunk/graphics/GraphicsMagick/pkg-descr
___________________________________________________________________
Deleted: cvs2svn:cvs-rev
## -1 +0,0 ##
-1.2
\ No newline at end of property
Modified: trunk/graphics/GraphicsMagick/pkg-plist
===================================================================
--- trunk/graphics/GraphicsMagick/pkg-plist	2015-09-09 02:01:10 UTC (rev 20192)
+++ trunk/graphics/GraphicsMagick/pkg-plist	2015-09-12 02:10:08 UTC (rev 20193)
@@ -15,26 +15,37 @@
 include/GraphicsMagick/Magick++/Pixels.h
 include/GraphicsMagick/Magick++/STL.h
 include/GraphicsMagick/Magick++/TypeMetric.h
-include/GraphicsMagick/magick/PreRvIcccm.h
+include/GraphicsMagick/magick/analyze.h
 include/GraphicsMagick/magick/api.h
 include/GraphicsMagick/magick/attribute.h
+include/GraphicsMagick/magick/average.h
 include/GraphicsMagick/magick/blob.h
-include/GraphicsMagick/magick/cache.h
-include/GraphicsMagick/magick/cache_view.h
+include/GraphicsMagick/magick/cdl.h
+include/GraphicsMagick/magick/channel.h
 include/GraphicsMagick/magick/color.h
+include/GraphicsMagick/magick/color_lookup.h
+include/GraphicsMagick/magick/colormap.h
+include/GraphicsMagick/magick/colorspace.h
 include/GraphicsMagick/magick/command.h
+include/GraphicsMagick/magick/common.h
+include/GraphicsMagick/magick/compare.h
 include/GraphicsMagick/magick/composite.h
 include/GraphicsMagick/magick/compress.h
+include/GraphicsMagick/magick/confirm_access.h
 include/GraphicsMagick/magick/constitute.h
 include/GraphicsMagick/magick/decorate.h
 include/GraphicsMagick/magick/delegate.h
 include/GraphicsMagick/magick/deprecate.h
+include/GraphicsMagick/magick/describe.h
 include/GraphicsMagick/magick/draw.h
 include/GraphicsMagick/magick/effect.h
 include/GraphicsMagick/magick/enhance.h
 include/GraphicsMagick/magick/error.h
+include/GraphicsMagick/magick/forward.h
 include/GraphicsMagick/magick/fx.h
 include/GraphicsMagick/magick/gem.h
+include/GraphicsMagick/magick/gradient.h
+include/GraphicsMagick/magick/hclut.h
 include/GraphicsMagick/magick/image.h
 include/GraphicsMagick/magick/list.h
 include/GraphicsMagick/magick/log.h
@@ -42,12 +53,18 @@
 include/GraphicsMagick/magick/magick.h
 include/GraphicsMagick/magick/magick_config.h
 include/GraphicsMagick/magick/magick_types.h
+include/GraphicsMagick/magick/memory.h
 include/GraphicsMagick/magick/module.h
 include/GraphicsMagick/magick/monitor.h
 include/GraphicsMagick/magick/montage.h
+include/GraphicsMagick/magick/operator.h
 include/GraphicsMagick/magick/paint.h
+include/GraphicsMagick/magick/pixel_cache.h
+include/GraphicsMagick/magick/pixel_iterator.h
+include/GraphicsMagick/magick/plasma.h
 include/GraphicsMagick/magick/profile.h
 include/GraphicsMagick/magick/quantize.h
+include/GraphicsMagick/magick/random.h
 include/GraphicsMagick/magick/registry.h
 include/GraphicsMagick/magick/render.h
 include/GraphicsMagick/magick/resize.h
@@ -54,91 +71,103 @@
 include/GraphicsMagick/magick/resource.h
 include/GraphicsMagick/magick/shear.h
 include/GraphicsMagick/magick/signature.h
-include/GraphicsMagick/magick/stream.h
+include/GraphicsMagick/magick/statistics.h
 include/GraphicsMagick/magick/symbols.h
+include/GraphicsMagick/magick/texture.h
 include/GraphicsMagick/magick/timer.h
 include/GraphicsMagick/magick/transform.h
+include/GraphicsMagick/magick/type.h
 include/GraphicsMagick/magick/utility.h
 include/GraphicsMagick/magick/version.h
-include/GraphicsMagick/magick/widget.h
-include/GraphicsMagick/magick/xwindow.h
 include/GraphicsMagick/wand/drawing_wand.h
 include/GraphicsMagick/wand/magick_wand.h
 include/GraphicsMagick/wand/pixel_wand.h
 include/GraphicsMagick/wand/wand_api.h
+include/GraphicsMagick/wand/wand_symbols.h
+lib/GraphicsMagick/config/delegates.mgk
+lib/GraphicsMagick/config/type-ghostscript.mgk
+lib/GraphicsMagick/config/type-solaris.mgk
+lib/GraphicsMagick/config/type-windows.mgk
+lib/GraphicsMagick/config/type.mgk
 lib/libGraphicsMagick++.a
-lib/libGraphicsMagick++.la
 lib/libGraphicsMagick++.so
-lib/libGraphicsMagick++.so.1
+lib/libGraphicsMagick++.so.3
+lib/libGraphicsMagick++.so.3.7.0
 lib/libGraphicsMagick.a
-lib/libGraphicsMagick.la
 lib/libGraphicsMagick.so
-lib/libGraphicsMagick.so.1
+lib/libGraphicsMagick.so.3
+lib/libGraphicsMagick.so.3.12.0
 lib/libGraphicsMagickWand.a
-lib/libGraphicsMagickWand.la
 lib/libGraphicsMagickWand.so
-lib/libGraphicsMagickWand.so.0
+lib/libGraphicsMagickWand.so.2
+lib/libGraphicsMagickWand.so.2.7.0
 libdata/pkgconfig/GraphicsMagick++.pc
 libdata/pkgconfig/GraphicsMagick.pc
 libdata/pkgconfig/GraphicsMagickWand.pc
+man/man1/GraphicsMagick++-config.1.gz
+man/man1/GraphicsMagick-config.1.gz
+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/delegates.mgk
 %%DATADIR%%/config/log.mgk
-%%DATADIR%%/config/magic.mgk
 %%DATADIR%%/config/modules.mgk
-%%DATADIR%%/config/type-ghostscript.mgk
-%%DATADIR%%/config/type-solaris.mgk
-%%DATADIR%%/config/type-windows.mgk
-%%DATADIR%%/config/type.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%%/images/ball.png
-%%PORTDOCS%%%%DOCSDIR%%/images/corbis.png
-%%PORTDOCS%%%%DOCSDIR%%/images/examples.jpg
-%%PORTDOCS%%%%DOCSDIR%%/images/gm-125x80t.png
-%%PORTDOCS%%%%DOCSDIR%%/images/gm-188x120t.png
-%%PORTDOCS%%%%DOCSDIR%%/images/gm-282x180t.png
-%%PORTDOCS%%%%DOCSDIR%%/images/home.png
-%%PORTDOCS%%%%DOCSDIR%%/images/mail.png
-%%PORTDOCS%%%%DOCSDIR%%/images/pdfsages.png
-%%PORTDOCS%%%%DOCSDIR%%/images/pngnow.png
-%%PORTDOCS%%%%DOCSDIR%%/images/right_triangle.png
-%%PORTDOCS%%%%DOCSDIR%%/images/right_triangle_option.png
-%%PORTDOCS%%%%DOCSDIR%%/index.html
-%%PORTDOCS%%%%DOCSDIR%%/www/AUTHORS.html
+%%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.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.fig
 %%PORTDOCS%%%%DOCSDIR%%/www/Magick++/Cache.png
-%%PORTDOCS%%%%DOCSDIR%%/www/Magick++/Cache.svg
 %%PORTDOCS%%%%DOCSDIR%%/www/Magick++/ChangeLog.html
 %%PORTDOCS%%%%DOCSDIR%%/www/Magick++/CoderInfo.html
 %%PORTDOCS%%%%DOCSDIR%%/www/Magick++/Color.html
-%%PORTDOCS%%%%DOCSDIR%%/www/Magick++/Documentation.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++/Future.html
 %%PORTDOCS%%%%DOCSDIR%%/www/Magick++/Geometry.html
-%%PORTDOCS%%%%DOCSDIR%%/www/Magick++/Image.fig
 %%PORTDOCS%%%%DOCSDIR%%/www/Magick++/Image.html
 %%PORTDOCS%%%%DOCSDIR%%/www/Magick++/Image.png
 %%PORTDOCS%%%%DOCSDIR%%/www/Magick++/ImageDesign.html
-%%PORTDOCS%%%%DOCSDIR%%/www/Magick++/ImageMagick.png
-%%PORTDOCS%%%%DOCSDIR%%/www/Magick++/Install.html
-%%PORTDOCS%%%%DOCSDIR%%/www/Magick++/Magick++.png
 %%PORTDOCS%%%%DOCSDIR%%/www/Magick++/Montage.html
-%%PORTDOCS%%%%DOCSDIR%%/www/Magick++/NEWS.html
 %%PORTDOCS%%%%DOCSDIR%%/www/Magick++/PixelPacket.html
 %%PORTDOCS%%%%DOCSDIR%%/www/Magick++/Pixels.html
-%%PORTDOCS%%%%DOCSDIR%%/www/Magick++/README.txt
 %%PORTDOCS%%%%DOCSDIR%%/www/Magick++/STL.html
 %%PORTDOCS%%%%DOCSDIR%%/www/Magick++/TypeMetric.html
 %%PORTDOCS%%%%DOCSDIR%%/www/Magick++/gm-188x120t.png
@@ -145,40 +174,51 @@
 %%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.fig
 %%PORTDOCS%%%%DOCSDIR%%/www/Magick++/thumbnail-anatomy-framed.jpg
-%%PORTDOCS%%%%DOCSDIR%%/www/Magick++/thumbnail-anatomy-plain.fig
 %%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.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/cache.html
-%%PORTDOCS%%%%DOCSDIR%%/www/api/cache_view.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
@@ -188,28 +228,40 @@
 %%PORTDOCS%%%%DOCSDIR%%/www/api/segment.html
 %%PORTDOCS%%%%DOCSDIR%%/www/api/shear.html
 %%PORTDOCS%%%%DOCSDIR%%/www/api/signature.html
-%%PORTDOCS%%%%DOCSDIR%%/www/api/stream.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/body.html
-%%PORTDOCS%%%%DOCSDIR%%/www/books.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/cvs.html
-%%PORTDOCS%%%%DOCSDIR%%/www/development.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/header.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/install.html
 %%PORTDOCS%%%%DOCSDIR%%/www/links.html
 %%PORTDOCS%%%%DOCSDIR%%/www/magick.css
 %%PORTDOCS%%%%DOCSDIR%%/www/miff.html
@@ -216,21 +268,21 @@
 %%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/windows.html
-%%PORTDOCS%%@dirrm %%DOCSDIR%%/www/api
-%%PORTDOCS%%@dirrm %%DOCSDIR%%/www/Magick++
-%%PORTDOCS%%@dirrm %%DOCSDIR%%/www
-%%PORTDOCS%%@dirrm %%DOCSDIR%%/images
-%%PORTDOCS%%@dirrm %%DOCSDIR%%
- at dirrm %%DATADIR%%/config
- at dirrm %%DATADIR%%
- at dirrm include/GraphicsMagick/wand
- at dirrm include/GraphicsMagick/magick
- at dirrm include/GraphicsMagick/Magick++
- at dirrm include/GraphicsMagick
+%%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
+ at dir lib/GraphicsMagick/modules-Q%%Q%%/filters
+ at dir lib/GraphicsMagick/modules-Q%%Q%%/coders



More information about the Midnightbsd-cvs mailing list