1.3.11 (February 21, 2010) ========================== Security Fixes: * Fixed array underflow on systems using signed char which could result in a program crash due to extended characters in filenames or in certain file formats. Bug fixes: * Fixed array underflow on systems using signed char which could result in a program crash due to extended characters in filenames or in certain file formats. New Features: * Added a -thumbnail command to 'convert' and 'mogrify'. This is a faster way to scale down the image when speed is a primary concern. * Added a -extent command to 'convert' and 'mogrify' which composites the image on top of a backing canvas image of solid color. * Added support for -compose to the 'convert' and 'mogrify', which were documented to support it (but did not). Feature improvements: * None Performance Improvements: * Requests for 'Over' and 'Atop' composition are converted to a request for the (faster) 'Copy' composition when both images are opaque. Behavior Changes: * None
46 lines
1.5 KiB
Makefile
46 lines
1.5 KiB
Makefile
# $NetBSD: Makefile,v 1.30 2010/02/22 06:10:32 obache Exp $
|
|
#
|
|
|
|
DISTNAME= GraphicsMagick-1.3.11
|
|
CATEGORIES= graphics
|
|
MASTER_SITES= ${MASTER_SITE_SOURCEFORGE:=graphicsmagick/} \
|
|
ftp://ftp.graphicsmagick.org/pub/GraphicsMagick/1.3/
|
|
|
|
MAINTAINER= obache@NetBSD.org
|
|
HOMEPAGE= http://www.graphicsmagick.org/
|
|
COMMENT= X application for displaying and manipulating images
|
|
|
|
PKG_DESTDIR_SUPPORT= user-destdir
|
|
|
|
USE_LANGUAGES= c c++
|
|
USE_LIBTOOL= yes
|
|
USE_TOOLS+= gmake pkg-config gs
|
|
USE_FEATURES= vsnprintf # optional but recommended for security
|
|
GNU_CONFIGURE= yes
|
|
|
|
PKGCONFIG_OVERRIDE+= magick/GraphicsMagick.pc.in \
|
|
wand/GraphicsMagickWand.pc.in \
|
|
Magick++/lib/GraphicsMagick++.pc.in
|
|
|
|
CONFIGURE_ARGS+= --without-perl
|
|
|
|
TEST_TARGET= check
|
|
|
|
.include "../../archivers/bzip2/buildlink3.mk"
|
|
.include "../../devel/zlib/buildlink3.mk"
|
|
.include "../../graphics/freetype2/buildlink3.mk"
|
|
.include "../../graphics/jpeg/buildlink3.mk"
|
|
.include "../../graphics/lcms/buildlink3.mk"
|
|
.include "../../graphics/libexif/buildlink3.mk"
|
|
.include "../../graphics/libwmf/buildlink3.mk"
|
|
.include "../../graphics/jasper/buildlink3.mk"
|
|
.include "../../graphics/png/buildlink3.mk"
|
|
.include "../../graphics/tiff/buildlink3.mk"
|
|
.include "../../textproc/libxml2/buildlink3.mk"
|
|
.include "../../x11/libSM/buildlink3.mk"
|
|
.include "../../x11/libX11/buildlink3.mk"
|
|
.include "../../x11/libXext/buildlink3.mk"
|
|
.include "../../x11/xextproto/buildlink3.mk"
|
|
.include "../../mk/dlopen.buildlink3.mk"
|
|
.include "../../mk/pthread.buildlink3.mk"
|
|
.include "../../mk/bsd.pkg.mk"
|