6934a3c290
* ReadPALMImage() now produces a proper RGB image * Added the -shadow option to simulate an image shadow * Fix file leak in ImageToBlob() method
47 lines
1.2 KiB
Makefile
47 lines
1.2 KiB
Makefile
# $NetBSD: Makefile,v 1.125 2005/01/05 09:25:18 adam Exp $
|
|
|
|
.include "Makefile.common"
|
|
|
|
PKGNAME= ImageMagick-${DISTVERSION}
|
|
|
|
MAINTAINER= adam@NetBSD.org
|
|
HOMEPAGE= http://www.simplesystems.org/ImageMagick/
|
|
COMMENT= Package for display and interactive manipulation of images
|
|
|
|
CONFLICTS= geomview<1.8.1nb2 # used to have a program named 'animate'
|
|
|
|
PKG_INSTALLATION_TYPES= overwrite pkgviews
|
|
|
|
USE_BUILDLINK3= YES
|
|
GNU_CONFIGURE= YES
|
|
USE_LIBTOOL= YES
|
|
USE_LANGUAGES= c c++
|
|
USE_GNU_TOOLS+= make
|
|
PKGCONFIG_OVERRIDE= Magick++/lib/ImageMagick++.pc.in
|
|
PKGCONFIG_OVERRIDE+= magick/ImageMagick.pc.in
|
|
|
|
GCC_REQD+= 2.95.3
|
|
|
|
PLIST_SUBST+= IM_MAJOR_VER=${IM_MAJOR_VER}
|
|
PLIST_SUBST+= IM_MAJOR_LIB_VER=${IM_MAJOR_LIB_VER}
|
|
|
|
.include "options.mk"
|
|
|
|
.if !empty(MACHINE_PLATFORM:MNetBSD-*-sparc64)
|
|
GCC_REQD+= 3.0
|
|
.endif
|
|
|
|
# Avoid compiler bug on "mipsel" (cobalt?)
|
|
.if ${MACHINE_ARCH} == "mipsel"
|
|
CFLAGS= -O
|
|
.endif
|
|
|
|
# Some configure_args come from Makefile.common
|
|
CONFIGURE_ARGS+= --without-perl
|
|
|
|
.include "../../archivers/bzip2/buildlink3.mk"
|
|
.include "../../graphics/lcms/buildlink3.mk"
|
|
.include "../../graphics/libexif/buildlink3.mk"
|
|
.include "../../graphics/tiff/buildlink3.mk"
|
|
|
|
.include "../../mk/bsd.pkg.mk"
|