svn commit: r380910 - in head: graphics/ImageMagick graphics/ImageMagick/files graphics/converseen graphics/fpc-imagemagick graphics/gimp-gmic-plugin graphics/inkscape graphics/pstoedit graphics/zb...

Koop Mast kwm at FreeBSD.org
Tue Mar 10 12:36:02 UTC 2015


Author: kwm
Date: Tue Mar 10 12:35:58 2015
New Revision: 380910
URL: https://svnweb.freebsd.org/changeset/ports/380910
QAT: https://qat.redports.org/buildarchive/r380910/

Log:
  Update ImageMagick to 6.9.0-10.
  
  - USES=pkgconfig:both since the *-config scripts are wrappers around pkg-config.
  - Don't require ghostscript for the freetype2 option.
  - Actualy remove the pkg-help file with is obsolete since r377347 when the
    library names where normalized.
  
  Due to libMagick++-6.so bump, chase depend ports.

Deleted:
  head/graphics/ImageMagick/files/
  head/graphics/ImageMagick/pkg-help
Modified:
  head/graphics/ImageMagick/Makefile
  head/graphics/ImageMagick/distinfo
  head/graphics/ImageMagick/pkg-plist
  head/graphics/converseen/Makefile
  head/graphics/fpc-imagemagick/Makefile
  head/graphics/gimp-gmic-plugin/Makefile
  head/graphics/inkscape/Makefile
  head/graphics/pstoedit/Makefile
  head/graphics/zbar/Makefile
  head/multimedia/dvdauthor/Makefile

Modified: head/graphics/ImageMagick/Makefile
==============================================================================
--- head/graphics/ImageMagick/Makefile	Tue Mar 10 11:48:38 2015	(r380909)
+++ head/graphics/ImageMagick/Makefile	Tue Mar 10 12:35:58 2015	(r380910)
@@ -1,7 +1,7 @@
 # $FreeBSD$
 
 PORTNAME=	ImageMagick
-DISTVERSION=	6.9.0-4
+DISTVERSION=	6.9.0-10
 PORTEPOCH=	1
 CATEGORIES=	graphics perl5
 MASTER_SITES=	http://www.imagemagick.org/download/ \
@@ -39,7 +39,7 @@ LIB_DEPENDS=	libltdl.so:${PORTSDIR}/deve
 CONFLICTS_INSTALL=	execline-[0-9]* # bin/import
 
 # This port uses .la files, keep libtool:keepla! (magick/module.c)
-USES=		gmake libtool:keepla pathfix perl5 pkgconfig shebangfix tar:xz
+USES=		gmake libtool:keepla pathfix perl5 pkgconfig:both shebangfix tar:xz
 SHEBANG_FILES=	www/source/examples.pl
 GNU_CONFIGURE=	yes
 CONFIGURE_ENV=	MAKE=${MAKE_CMD}
@@ -294,7 +294,6 @@ CONFIGURE_ARGS+=	--without-lcms2
 # Freetype (TrueType Font) support
 .if ${PORT_OPTIONS:MFREETYPE}
 LIB_DEPENDS+=		libfreetype.so:${PORTSDIR}/print/freetype2
-USE_GHOSTSCRIPT=	yes
 CONFIGURE_ARGS+=	--with-freetype
 .else
 CONFIGURE_ARGS+=	--without-freetype
@@ -329,7 +328,6 @@ LIB_DEPENDS+=		libwmf.so:${PORTSDIR}/gra
 LIB_DEPENDS+=		libwmf.so:${PORTSDIR}/graphics/libwmf-nox11
 . endif
 CONFIGURE_ARGS+=	--with-wmf=yes
-CFLAGS+=		-I${LOCALBASE}/include/freetype2
 PLIST_SUB+=		WMF=""
 .else
 CONFIGURE_ARGS+=	--without-wmf

Modified: head/graphics/ImageMagick/distinfo
==============================================================================
--- head/graphics/ImageMagick/distinfo	Tue Mar 10 11:48:38 2015	(r380909)
+++ head/graphics/ImageMagick/distinfo	Tue Mar 10 12:35:58 2015	(r380910)
@@ -1,2 +1,2 @@
-SHA256 (ImageMagick-6.9.0-4.tar.xz) = 996aa8081dced3f3bbf23d90fca861b30332f734329f89367c6fc35173a74957
-SIZE (ImageMagick-6.9.0-4.tar.xz) = 7901680
+SHA256 (ImageMagick-6.9.0-10.tar.xz) = d1f5dcd32a93130feb9e980a8a97517d3a2c814a8b608d139d4756516548748c
+SIZE (ImageMagick-6.9.0-10.tar.xz) = 7906216

Modified: head/graphics/ImageMagick/pkg-plist
==============================================================================
--- head/graphics/ImageMagick/pkg-plist	Tue Mar 10 11:48:38 2015	(r380909)
+++ head/graphics/ImageMagick/pkg-plist	Tue Mar 10 12:35:58 2015	(r380910)
@@ -402,6 +402,8 @@ lib/ImageMagick-%%PORTVERSION%%/config/c
 %%MODULES%%lib/ImageMagick-%%PORTVERSION%%/modules-%%QBIT%%%%HDRI%%/coders/xpm.so
 %%MODULES%%lib/ImageMagick-%%PORTVERSION%%/modules-%%QBIT%%%%HDRI%%/coders/xps.la
 %%MODULES%%lib/ImageMagick-%%PORTVERSION%%/modules-%%QBIT%%%%HDRI%%/coders/xps.so
+%%MODULES%%lib/ImageMagick-%%PORTVERSION%%/modules-%%QBIT%%%%HDRI%%/coders/xtrn.la
+%%MODULES%%lib/ImageMagick-%%PORTVERSION%%/modules-%%QBIT%%%%HDRI%%/coders/xtrn.so
 %%X11%%%%MODULES%%lib/ImageMagick-%%PORTVERSION%%/modules-%%QBIT%%%%HDRI%%/coders/xwd.la
 %%X11%%%%MODULES%%lib/ImageMagick-%%PORTVERSION%%/modules-%%QBIT%%%%HDRI%%/coders/xwd.so
 %%MODULES%%lib/ImageMagick-%%PORTVERSION%%/modules-%%QBIT%%%%HDRI%%/coders/ycbcr.la
@@ -413,8 +415,8 @@ lib/ImageMagick-%%PORTVERSION%%/config/c
 lib/libMagick++-6.a
 lib/libMagick++-6.la
 lib/libMagick++-6.so
-lib/libMagick++-6.so.5
-lib/libMagick++-6.so.5.0.0
+lib/libMagick++-6.so.6
+lib/libMagick++-6.so.6.0.0
 lib/libMagickCore-6.a
 lib/libMagickCore-6.la
 lib/libMagickCore-6.so

Modified: head/graphics/converseen/Makefile
==============================================================================
--- head/graphics/converseen/Makefile	Tue Mar 10 11:48:38 2015	(r380909)
+++ head/graphics/converseen/Makefile	Tue Mar 10 12:35:58 2015	(r380910)
@@ -3,6 +3,7 @@
 
 PORTNAME=	converseen
 PORTVERSION=	0.9.1
+PORTREVISION=	1
 CATEGORIES=	graphics
 MASTER_SITES=	SF/${PORTNAME}/Converseen/Converseen%200.9/
 

Modified: head/graphics/fpc-imagemagick/Makefile
==============================================================================
--- head/graphics/fpc-imagemagick/Makefile	Tue Mar 10 11:48:38 2015	(r380909)
+++ head/graphics/fpc-imagemagick/Makefile	Tue Mar 10 12:35:58 2015	(r380910)
@@ -1,7 +1,7 @@
 # Created by: Alonso Cardenas Marquez <acm at FreeBSD.org>
 # $FreeBSD$
 
-PORTREVISION=	3
+PORTREVISION=	4
 CATEGORIES=	graphics lang
 PKGNAMESUFFIX=	-imagemagick
 

Modified: head/graphics/gimp-gmic-plugin/Makefile
==============================================================================
--- head/graphics/gimp-gmic-plugin/Makefile	Tue Mar 10 11:48:38 2015	(r380909)
+++ head/graphics/gimp-gmic-plugin/Makefile	Tue Mar 10 12:35:58 2015	(r380910)
@@ -2,7 +2,7 @@
 
 PORTNAME=	gmic
 PORTVERSION=	1.6.0.0
-PORTREVISION=	1
+PORTREVISION=	2
 CATEGORIES=	graphics
 MASTER_SITES=	SF/${PORTNAME}/older_versions/ \
 		SF/${PORTNAME}/

Modified: head/graphics/inkscape/Makefile
==============================================================================
--- head/graphics/inkscape/Makefile	Tue Mar 10 11:48:38 2015	(r380909)
+++ head/graphics/inkscape/Makefile	Tue Mar 10 12:35:58 2015	(r380910)
@@ -3,6 +3,7 @@
 
 PORTNAME=	inkscape
 PORTVERSION=	0.91
+PORTREVISION=	1
 CATEGORIES=	graphics gnome
 MASTER_SITES=	https://inkscape.global.ssl.fastly.net/media/resources/file/ \
 		LOCAL/kwm

Modified: head/graphics/pstoedit/Makefile
==============================================================================
--- head/graphics/pstoedit/Makefile	Tue Mar 10 11:48:38 2015	(r380909)
+++ head/graphics/pstoedit/Makefile	Tue Mar 10 12:35:58 2015	(r380910)
@@ -3,6 +3,7 @@
 
 PORTNAME=	pstoedit
 PORTVERSION=	3.70
+PORTREVISION=	1
 CATEGORIES=	graphics print
 MASTER_SITES=	SF
 

Modified: head/graphics/zbar/Makefile
==============================================================================
--- head/graphics/zbar/Makefile	Tue Mar 10 11:48:38 2015	(r380909)
+++ head/graphics/zbar/Makefile	Tue Mar 10 12:35:58 2015	(r380910)
@@ -3,7 +3,7 @@
 
 PORTNAME=	zbar
 PORTVERSION=	0.10
-PORTREVISION=	7
+PORTREVISION=	8
 CATEGORIES=	graphics
 MASTER_SITES=	SF
 

Modified: head/multimedia/dvdauthor/Makefile
==============================================================================
--- head/multimedia/dvdauthor/Makefile	Tue Mar 10 11:48:38 2015	(r380909)
+++ head/multimedia/dvdauthor/Makefile	Tue Mar 10 12:35:58 2015	(r380910)
@@ -3,7 +3,7 @@
 
 PORTNAME=	dvdauthor
 PORTVERSION=	0.7.1
-PORTREVISION=	9
+PORTREVISION=	10
 CATEGORIES=	multimedia
 MASTER_SITES=	SF
 


More information about the svn-ports-head mailing list