diff options
author | Akinori MUSHA <knu@FreeBSD.org> | 2003-09-13 10:58:45 +0000 |
---|---|---|
committer | Akinori MUSHA <knu@FreeBSD.org> | 2003-09-13 10:58:45 +0000 |
commit | a681d83b8e5e550278eddf9a4835519092b7265d (patch) | |
tree | 60f4afbcc91f2c5680f03694492df846651f0b85 /graphics | |
parent | Update checksum after the author regenerated the zip-file with (diff) |
Change `LIB_DEPENDS=' in the middle of optional dependency lines to
`LIB_DEPENDS+=', to prevent this port from getting built without tiff
support, which wasn't intended. (Luckily jpeg and png were enabled via
other indirect dependencies)
This should fix some dependent ports such as ruby-rmagick.
Diffstat (limited to 'graphics')
-rw-r--r-- | graphics/ImageMagick/Makefile | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/graphics/ImageMagick/Makefile b/graphics/ImageMagick/Makefile index 7ed009949cb3..492d139c0681 100644 --- a/graphics/ImageMagick/Makefile +++ b/graphics/ImageMagick/Makefile @@ -112,7 +112,7 @@ CONFIGURE_ARGS+= --without-bzlib # HDF (Hierarchical Data Format) images .if !defined(WITHOUT_IMAGEMAGICK_HDF) -LIB_DEPENDS= df.1:${PORTSDIR}/graphics/hdf +LIB_DEPENDS+= df.1:${PORTSDIR}/graphics/hdf CONFIGURE_ARGS+= --with-hdf .endif |