blob: ba69111af65c54e61fd712331e5443cb0dcc3587 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
|
# $NetBSD: Makefile,v 1.50 1999/10/07 17:41:53 tron Exp $
DISTNAME= ImageMagick-4.2.9
CATEGORIES= graphics
MASTER_SITES= ${MASTER_SITE_LOCAL}
EXTRACT_SUFX= .tar.bz2
MAINTAINER= packages@netbsd.org
HOMEPAGE= http://www.wizards.dupont.com/cristy/ImageMagick.html
DEPENDS+= jpeg-6b:../../graphics/jpeg
DEPENDS+= mpeg2codec-1.2:../../graphics/mpeg2codec
DEPENDS+= png-1.0.3:../../graphics/png
DEPENDS+= tiff-3.4:../../graphics/tiff
MIRROR_DISTFILE= no
USE_LIBTOOL= yes
USE_X11= yes
GNU_CONFIGURE= yes
# Avoid compiler bug on "arm32"
.if (${MACHINE_ARCH} == arm32)
CFLAGS= -O
.endif
# For things for which we do not specify an explicit dependency above, disable
# so that we don't cause implicit "hidden" dependencies. Users may reenable
# any of these manually as desired (PerlMagick should probably be a separate
# pkg, however).
CONFIGURE_ARGS+= --without-perl --without-dps --without-fpx \
--without-hdf --without-jbig --without-ttf
post-install:
${INSTALL_DATA} ${WRKSRC}/Copyright.txt ${WRKSRC}/QuickStart.txt \
${PREFIX}/share/ImageMagick
.include "../../mk/bsd.pkg.mk"
|