59c28c9a41
2019-06-08 7.0.8-49 Cristy <quetzlzacatenango@image...> * Release ImageMagick version 7.0.8-49, GIT revision 15708:6d7e1db:20190608 2019-06-03 7.0.8-49 Cristy <quetzlzacatenango@image...> * Add support for RGB565 image format (reference https://imagemagick.org/discourse-server/viewtopic.php?f=2&t=36078). * Use user defined allocator instead of `malloc` (reference https://github.com/ImageMagick/ImageMagick6/pull/49/). * Add static decorator to accelerator kernels (reference https://github.com/ImageMagick/ImageMagick/issues/1366). 2019-06-01 7.0.8-48 Cristy <quetzlzacatenango@image...> * Release ImageMagick version 7.0.8-48, GIT revision 15689:061a3bb82:20190601 2019-06-01 7.0.8-48 Cristy <quetzlzacatenango@image...> * Fix transient convolution bug (reference https://imagemagick.org/discourse-server/viewtopic.php?f=3&t=36119). 2019-05-26 7.0.8-47 Cristy <quetzlzacatenango@image...> * Release ImageMagick version 7.0.8-47, GIT revision 15681:5cffc6cbb:20190526 2019-05-19 7.0.8-47 Cristy <quetzlzacatenango@image...> * Support 16 and 32 bit tiled float TIFF images. * Convolve morphology alpha channel fix (reference https://imagemagick.org/discourse-server/viewtopic.php?f=3&t=36086). * Text improvements to the internal SVG renderer.
48 lines
1.4 KiB
Text
48 lines
1.4 KiB
Text
# $NetBSD: Makefile.common,v 1.190 2019/06/11 13:23:35 wiz Exp $
|
|
#
|
|
# When updating this package, please upload the distfile
|
|
# since they disappear immediately when new releases happen,
|
|
# which is quite often.
|
|
#
|
|
# used by graphics/p5-PerlMagick/Makefile
|
|
|
|
IM_MAJOR_VER= 7.0.8
|
|
IM_MINOR_VER= 49
|
|
IM_MAJOR_LIB_VER= 7
|
|
|
|
.if (${IM_MINOR_VER} != NONE)
|
|
DISTSUFFIX= ${IM_MAJOR_VER}-${IM_MINOR_VER}
|
|
.else
|
|
DISTSUFFIX= ${IM_MAJOR_VER}
|
|
.endif
|
|
|
|
DISTNAME= ImageMagick-${DISTSUFFIX}
|
|
DISTVERSION= ${DISTSUFFIX:S/-/./}
|
|
|
|
#
|
|
# Please always run `upload-distfiles' after every update!
|
|
# (upstream usually get rid of old version and only the latest stable versions
|
|
# are available in the mirrors)
|
|
#
|
|
CATEGORIES= graphics
|
|
MASTER_SITES= ftp://ftp.imagemagick.org/pub/ImageMagick/
|
|
MASTER_SITES+= ftp://ftp.nluug.nl/pub/ImageMagick/
|
|
MASTER_SITES+= https://www.imagemagick.org/download/
|
|
EXTRACT_SUFX= .tar.xz
|
|
|
|
HOMEPAGE= https://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
|
|
CONFIGURE_ARGS+= --disable-opencl
|