diff options
author | dinoex <dinoex@FreeBSD.org> | 2012-02-18 18:53:48 +0800 |
---|---|---|
committer | dinoex <dinoex@FreeBSD.org> | 2012-02-18 18:53:48 +0800 |
commit | c33b663f745a7696496dac6d61e76a986ea7eac4 (patch) | |
tree | c65371f33e8f23d5557b7baf3a254d164db2feab | |
parent | 0787cfb7b832fd5bb36b2a07416cae315ca5f41a (diff) | |
download | freebsd-ports-gnome-c33b663f745a7696496dac6d61e76a986ea7eac4.tar.gz freebsd-ports-gnome-c33b663f745a7696496dac6d61e76a986ea7eac4.tar.zst freebsd-ports-gnome-c33b663f745a7696496dac6d61e76a986ea7eac4.zip |
- remove libungif, use giflib
- remove option GIFLIB
-rw-r--r-- | graphics/mtpaint/Makefile | 14 |
1 files changed, 3 insertions, 11 deletions
diff --git a/graphics/mtpaint/Makefile b/graphics/mtpaint/Makefile index a0de96e4f46f..f1281c3821aa 100644 --- a/graphics/mtpaint/Makefile +++ b/graphics/mtpaint/Makefile @@ -19,10 +19,10 @@ LICENSE_FILE= ${WRKSRC}/COPYING LIB_DEPENDS= jpeg.11:${PORTSDIR}/graphics/jpeg \ png.6:${PORTSDIR}/graphics/png \ tiff.4:${PORTSDIR}/graphics/tiff \ + gif.5:${PORTSDIR}/graphics/giflib \ freetype.9:${PORTSDIR}/print/freetype2 -OPTIONS= GIFLIB "Enable LZW-compressed GIF support" off \ - LCMS2 "Enable ICC color management support" on \ +OPTIONS= LCMS2 "Enable ICC color management support" on \ OPENJPEG "Enable OpenJPEG support" on \ NLS "Enable Native Language support" on @@ -32,21 +32,13 @@ USE_GMAKE= yes HAS_CONFIGURE= yes CONFIGURE_ARGS= --prefix=${PREFIX} --mandir=${MAN1PREFIX}/man/man1 \ --localedir=${PREFIX}/share/locale \ - gtk2 cflags asneeded ft jpeg tiff man + gtk2 cflags asneeded ft jpeg tiff man GIF MAKE_JOBS_SAFE= yes MAN1= ${PORTNAME}.1 .include <bsd.port.options.mk> -.if defined(WITH_GIFLIB) -LIB_DEPENDS+= gif.5:${PORTSDIR}/graphics/giflib -CONFIGURE_ARGS+=GIF -.else -LIB_DEPENDS+= ungif.5:${PORTSDIR}/graphics/libungif -CONFIGURE_ARGS+=gif -.endif - .if defined(WITHOUT_LCMS2) CONFIGURE_ARGS+=nolcms .else |