diff options
author | markd <markd@pkgsrc.org> | 2002-09-09 22:07:21 +0000 |
---|---|---|
committer | markd <markd@pkgsrc.org> | 2002-09-09 22:07:21 +0000 |
commit | 7b12c052122c160238b54106764cd59eb5749204 (patch) | |
tree | 505eee10046f2582b756167c75f721acd7dc2450 /graphics | |
parent | 4b81c06b0a6905de1fffd543d5e07ca1d65571c2 (diff) | |
download | pkgsrc-7b12c052122c160238b54106764cd59eb5749204.tar.gz |
Explicitly disable lcms to stop it being half found on Solaris.
Also Solaris needs the configure script run under bash as well.
Diffstat (limited to 'graphics')
-rw-r--r-- | graphics/ImageMagick/Makefile | 7 |
1 files changed, 4 insertions, 3 deletions
diff --git a/graphics/ImageMagick/Makefile b/graphics/ImageMagick/Makefile index 021e583436c..c86e891b71d 100644 --- a/graphics/ImageMagick/Makefile +++ b/graphics/ImageMagick/Makefile @@ -1,4 +1,4 @@ -# $NetBSD: Makefile,v 1.84 2002/08/25 19:22:44 jlam Exp $ +# $NetBSD: Makefile,v 1.85 2002/09/09 22:07:21 markd Exp $ DISTNAME= ImageMagick-5.4.8-2 PKGNAME= ${DISTNAME:S/-2/.2/} @@ -28,7 +28,7 @@ NOT_FOR_PLATFORM= NetBSD-*-sparc64 .include "../../mk/bsd.prefs.mk" -.if (${OPSYS} == NetBSD) +.if (${OPSYS} == NetBSD || ${OPSYS} == SunOS) BUILD_DEPENDS+= bash>=2.0:../../shells/bash2 CONFIGURE_SCRIPT= ${LOCALBASE}/bin/bash ./configure @@ -45,7 +45,8 @@ CFLAGS= -O # pkg, however). CONFIGURE_ARGS+= --without-perl --without-dps --without-fpx \ --without-hdf --without-jbig --without-threads \ - --without-ttf --without-wmf --without-xml + --without-ttf --without-wmf --without-xml \ + --without-lcms post-install: ${INSTALL_DATA} ${WRKSRC}/Copyright.txt ${WRKSRC}/QuickStart.txt \ |