summaryrefslogtreecommitdiff
path: root/graphics/ImageMagick
diff options
context:
space:
mode:
authorShaun Amott <shaun@FreeBSD.org>2007-03-16 13:32:26 +0000
committerShaun Amott <shaun@FreeBSD.org>2007-03-16 13:32:26 +0000
commit8688d2d04603453b577f891b85697a0254db85bd (patch)
tree449b149c3320f2d66086634cf492d851d7556f2f /graphics/ImageMagick
parentDon't install the qmake manual - devel/qmake already install it. (diff)
Switch off PDF support by default, to avoid requiring ghostscript-afpl.
This will be reviewed again if/after -afpl is made the default ghostscript.
Notes
Notes: svn path=/head/; revision=187522
Diffstat (limited to 'graphics/ImageMagick')
-rw-r--r--graphics/ImageMagick/Makefile4
1 files changed, 2 insertions, 2 deletions
diff --git a/graphics/ImageMagick/Makefile b/graphics/ImageMagick/Makefile
index 14b1ecac243e..7b36956b272b 100644
--- a/graphics/ImageMagick/Makefile
+++ b/graphics/ImageMagick/Makefile
@@ -64,7 +64,7 @@ OPTIONS= X11 "X11 support" on \
IMAGEMAGICK_DOT "GraphViz dot graphs support" off \
IMAGEMAGICK_WMF "WMF format support" off \
IMAGEMAGICK_SVG "SVG format support" off \
- IMAGEMAGICK_PDF "PDF format support" on \
+ IMAGEMAGICK_PDF "PDF format support" off \
IMAGEMAGICK_MPEG2 "MPEG2 format support" on \
IMAGEMAGICK_GSLIB "libgs (Postscript SHLIB) support" off
@@ -248,7 +248,7 @@ CONFIGURE_ARGS+= --without-rsvg
.endif
# PDF (Adobe Portable Document Format) support
-.if !defined(WITHOUT_IMAGEMAGICK_PDF)
+.if defined(WITH_IMAGEMAGICK_PDF)
USE_GHOSTSCRIPT= yes
WITH_GHOSTSCRIPT_AFPL= yes
.endif