diff options
author | mi <mi@FreeBSD.org> | 2007-09-28 10:23:16 +0800 |
---|---|---|
committer | mi <mi@FreeBSD.org> | 2007-09-28 10:23:16 +0800 |
commit | 58f267846b1bad4c1263c8aed7bbc9082ac7dfb5 (patch) | |
tree | 5531461193a122e2c3d48bdb69665598dc80859c | |
parent | bb70607b2a7ce9cd36a1975e5bd117a5bc37eb27 (diff) | |
download | freebsd-ports-gnome-58f267846b1bad4c1263c8aed7bbc9082ac7dfb5.tar.gz freebsd-ports-gnome-58f267846b1bad4c1263c8aed7bbc9082ac7dfb5.tar.zst freebsd-ports-gnome-58f267846b1bad4c1263c8aed7bbc9082ac7dfb5.zip |
Remove FPX from the default configuration. The unmaintained library is
too buggy for general use :(
Initiate the lists of options whose presence (or absence) break
self-tests, and set IGNORE, if any such conflict is found.
Reported by: numerous
-rw-r--r-- | graphics/ImageMagick/Makefile | 12 |
1 files changed, 11 insertions, 1 deletions
diff --git a/graphics/ImageMagick/Makefile b/graphics/ImageMagick/Makefile index d9b7bec2ed50..246587133348 100644 --- a/graphics/ImageMagick/Makefile +++ b/graphics/ImageMagick/Makefile @@ -61,7 +61,7 @@ OPTIONS= X11 "X11 support" on \ IMAGEMAGICK_JPEG "JPG format support" on \ IMAGEMAGICK_PNG "PNG format support" on \ IMAGEMAGICK_TIFF "TIFF format support" on \ - IMAGEMAGICK_FPX "FPX format support" on \ + IMAGEMAGICK_FPX "FPX format support" off \ IMAGEMAGICK_JBIG "JBIG format support" on \ IMAGEMAGICK_JPEG2000 "JPEG2000 format support" on \ IMAGEMAGICK_DOT "GraphViz dot graphs support" off \ @@ -322,6 +322,16 @@ test check: cd ${WRKSRC} && ${SETENV} ${MAKE_ENV} ${MAKE} check .if !defined(WITHOUT_IMAGEMAGICK_TESTS) +. for m in TTF +. if defined(WITHOUT_IMAGEMAGICK_$m) +IGNORE+= Absence of $m breaks self-tests. Enable $m or disable automatic tests. +. endif +. endfor +. for m in FPX +. if defined(WITH_IMAGEMAGICK_$m) +IGNORE+= Presence of $m breaks self-tests. Disable $m or disable automatic tests. +. endif +. endfor post-build: test .endif |