* Always unlock the semaphore before returning from the png codec, either by a "return" or png_error(); changed all Magick*Exception() calls after setjmp() to png_error() to ensure proper cleanup (reference http://www.imagemagick.org/discourse-server/viewtopic.php?f=3&t=16883). * Fixed log known alpha*kernel normalization bug in morphology convolve. * Pixel allocation for Pango is stride*rows not stride*columns. * Set the image resolution for Postscript files with an embedded Photoshop profile. More...
42 lines
1.2 KiB
Text
42 lines
1.2 KiB
Text
# $NetBSD: Makefile.common,v 1.95 2012/04/20 15:22:37 adam Exp $
|
|
#
|
|
# used by graphics/p5-PerlMagick/Makefile
|
|
|
|
IM_MAJOR_VER= 6.7.6
|
|
IM_MINOR_VER= 6
|
|
IM_MAJOR_LIB_VER= ${IM_MAJOR_VER}
|
|
|
|
.if (${IM_MINOR_VER} != NONE)
|
|
DISTSUFFIX= ${IM_MAJOR_VER}-${IM_MINOR_VER}
|
|
.else
|
|
DISTSUFFIX= ${IM_MAJOR_VER}
|
|
.endif
|
|
|
|
DISTNAME= ImageMagick-${DISTSUFFIX}
|
|
DISTVERSION= ${DISTSUFFIX:S/-/./}
|
|
|
|
CATEGORIES= graphics
|
|
MASTER_SITES= ftp://ftp.imagemagick.org/pub/ImageMagick/ \
|
|
ftp://ftp.nluug.nl/pub/ImageMagick/ \
|
|
http://image_magick.veidrodis.com/image_magick/ \
|
|
ftp://ftp.sunet.se/pub/multimedia/graphics/ImageMagick/ \
|
|
http://mirror.is.co.za/pub/imagemagick/ \
|
|
ftp://ftp.kddlabs.co.jp/graphics/ImageMagick/ \
|
|
http://www.imagemagick.org/download/
|
|
EXTRACT_SUFX= .tar.bz2
|
|
|
|
HOMEPAGE= http://www.imagemagick.org/
|
|
LICENSE= gnu-gpl-v3
|
|
|
|
WRKSRC= ${WRKDIR}/ImageMagick-${DISTSUFFIX}
|
|
|
|
USE_LIBTOOL= yes
|
|
GNU_CONFIGURE= yes
|
|
# For things for which we do not specify an explicit dependency above, disable
|
|
# so that we don't cause implicit "hidden" dependencies.
|
|
CONFIGURE_ARGS+= --without-dps
|
|
CONFIGURE_ARGS+= --without-fpx
|
|
CONFIGURE_ARGS+= --without-gvc
|
|
CONFIGURE_ARGS+= --without-jbig
|
|
CONFIGURE_ARGS+= --without-lqr
|
|
CONFIGURE_ARGS+= --without-modules
|