blob: 3022c56db0f14b7956263af4f49690c35b4e113d (
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
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
|
# $NetBSD: Makefile,v 1.93 2003/01/26 17:45:28 salo Exp $
DISTNAME= ImageMagick-${IM_MAJOR_VER}-${IM_MINOR_VER}
PKGNAME= ImageMagick-${IM_MAJOR_VER}.${IM_MINOR_VER}
CATEGORIES= graphics
MASTER_SITES= ftp://ftp.nluug.nl/pub/ImageMagick/ \
ftp://ftp.yggdrasil.com/mirrors/site/ftp.simplesystems.org/pub/ImageMagick/ \
ftp://ftp.fu-berlin.de/unix/X11/graphics/ImageMagick/ \
http://imagemagick.sourceforge.net/http/
EXTRACT_SUFX= .tar.bz2
MAINTAINER= tron@netbsd.org
HOMEPAGE= http://www.simplesystems.org/ImageMagick/
COMMENT= Package for display and interactive manipulation of images
DEPENDS+= mpeg2codec-1.2:../../graphics/mpeg2codec
CONFLICTS= geomview-[0-9]* # both have a program named 'animate'
IM_MAJOR_VER= 5.5.3
IM_MINOR_VER= 2
USE_BUILDLINK2= YES
USE_X11= YES
GNU_CONFIGURE= YES
USE_LIBTOOL= YES
LIBTOOL_OVERRIDE= ${WRKSRC}/libtool
WRKSRC= ${WRKDIR}/ImageMagick-${IM_MAJOR_VER}
PLIST_SUBST+= IM_MAJOR_VER=${IM_MAJOR_VER}
.include "../../mk/bsd.prefs.mk"
# c++ broken as of 'gcc version 2.95.3 20010315 (release) (NetBSD nb1)'
NOT_FOR_PLATFORM= NetBSD-*-sparc64
# NetBSD 1.5's gcc is too old to compile this pkg
.include "../../lang/gcc/buildlink2.mk"
GCC_REQD= 2.95.3
# Avoid compiler bug on "mipsel" (cobalt?)
.if (${MACHINE_ARCH} == mipsel)
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-threads \
--without-ttf --without-wmf --without-xml \
--without-lcms
post-install:
${INSTALL_DATA} ${WRKSRC}/Copyright.txt ${WRKSRC}/QuickStart.txt \
${PREFIX}/share/ImageMagick
.include "../../archivers/bzip2/buildlink2.mk"
.include "../../graphics/jasper/buildlink2.mk"
.include "../../graphics/jpeg/buildlink2.mk"
.include "../../graphics/png/buildlink2.mk"
.include "../../graphics/tiff/buildlink2.mk"
.include "../../mk/bsd.pkg.mk"
|