diff options
author | ade <ade@FreeBSD.org> | 2000-08-02 09:52:41 +0800 |
---|---|---|
committer | ade <ade@FreeBSD.org> | 2000-08-02 09:52:41 +0800 |
commit | 29d5a6954acb5d91fa38f1fb23e91bdd97e8c396 (patch) | |
tree | cdf5f7ded8b76023b853f660cece09a5d27a7ede /graphics | |
parent | 822bafcd18c5d12ce62a24306e7c04dac53c7a73 (diff) | |
download | freebsd-ports-gnome-29d5a6954acb5d91fa38f1fb23e91bdd97e8c396.tar.gz freebsd-ports-gnome-29d5a6954acb5d91fa38f1fb23e91bdd97e8c396.tar.zst freebsd-ports-gnome-29d5a6954acb5d91fa38f1fb23e91bdd97e8c396.zip |
Do not try to use XML support since:
(a) ImageMagick needs libxml2, not libxml
(b) libxml2 does not co-exist AT ALL with libxml
(c) libxml is a required component of GNOME
(d) the extra functionality for ImageMagick is minimal
Thus, if you installed GNOME, and then this port, or vice-versa
Really Bad[tm] things will happen.
As and when libxml2 is used by GNOME (and libxml is buried
with partial military honors), then it will be possible to
turn this support back on.
Discovered by: my crashbox going nuts after an install of GNOME
and then ImageMagick. There were no survivors :)
Diffstat (limited to 'graphics')
-rw-r--r-- | graphics/ImageMagick/Makefile | 5 |
1 files changed, 2 insertions, 3 deletions
diff --git a/graphics/ImageMagick/Makefile b/graphics/ImageMagick/Makefile index 77e6b1b27625..cea9efd89ee2 100644 --- a/graphics/ImageMagick/Makefile +++ b/graphics/ImageMagick/Makefile @@ -25,8 +25,7 @@ LIB_DEPENDS= bz2.1:${PORTSDIR}/archivers/bzip2 \ jpeg.9:${PORTSDIR}/graphics/jpeg \ png.4:${PORTSDIR}/graphics/png \ tiff.4:${PORTSDIR}/graphics/tiff \ - ttf.4:${PORTSDIR}/print/freetype \ - xml.5:${PORTSDIR}/textproc/libxml2 + ttf.4:${PORTSDIR}/print/freetype BUILD_DEPENDS= gs:${PORTSDIR}/print/ghostscript55 \ mpeg2decode:${PORTSDIR}/graphics/mpeg2codec \ picttoppm:${PORTSDIR}/graphics/netpbm \ @@ -39,7 +38,7 @@ USE_AUTOCONF= yes CONFIGURE_ENV= CPPFLAGS="-I${LOCALBASE}/include" \ LIBS="-L${LOCALBASE}/lib" CONFIGURE_ARGS= --enable-shared --enable-16bit-pixel --without-modules \ - --with-perl=${PERL5} + --with-perl=${PERL5} --without-xml INSTALLS_SHLIB= yes .if defined(HAVE_UNISYS_LICENSE) |