aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorstefan <stefan@FreeBSD.org>2012-02-24 14:58:33 +0800
committerstefan <stefan@FreeBSD.org>2012-02-24 14:58:33 +0800
commitf6c9e20f0307548122e91c1f0f83e2ed21cbbf27 (patch)
tree8c4bbf7d16b4026a1605e727a49beb6094ca00f2
parenta57cb71eaac727766a92e98f2724fe704742d975 (diff)
downloadfreebsd-ports-gnome-f6c9e20f0307548122e91c1f0f83e2ed21cbbf27.tar.gz
freebsd-ports-gnome-f6c9e20f0307548122e91c1f0f83e2ed21cbbf27.tar.zst
freebsd-ports-gnome-f6c9e20f0307548122e91c1f0f83e2ed21cbbf27.zip
Use giflib instead of the now obsolte libungif.
PR: 165374 Submitted by: swills
-rw-r--r--mail/spamprobe/Makefile8
1 files changed, 4 insertions, 4 deletions
diff --git a/mail/spamprobe/Makefile b/mail/spamprobe/Makefile
index 616f42c06e07..56d95f7ab336 100644
--- a/mail/spamprobe/Makefile
+++ b/mail/spamprobe/Makefile
@@ -7,14 +7,14 @@
# Available options for this port:
# WITHOUT_PBL - disable support for PBL database storage
# WITHOUT_BDB - disable support for BDB database storage
-# WITHOUT_UNGIF - disable analysis of image attachments using libungif
+# WITHOUT_GIF - disable analysis of image attachments using giflib
# WITHOUT_PNG - disable analysis of image attachments using libpng
# WITHOUT_JPEG - disable analysis of image attachments using libjpeg
#
PORTNAME= spamprobe
PORTVERSION= 1.4d
-PORTREVISION= 5
+PORTREVISION= 6
CATEGORIES= mail
MASTER_SITES= SF
@@ -43,11 +43,11 @@ CPPFLAGS+= -I${BDB_INCLUDE_DIR} -DUSE_DB=1
LDFLAGS+= -L${LOCALBASE}/lib -l${BDB_LIB_NAME}
.endif
-# libungif support
+# giflib support
.if defined(WITHOUT_UNGIF)
CONFIGURE_ARGS+= --without-gif
.else
-LIB_DEPENDS+= ungif.5:${PORTSDIR}/graphics/libungif
+LIB_DEPENDS+= gif.5:${PORTSDIR}/graphics/giflib
CPPFLAGS+= -I${LOCALBASE}/include
LDFLAGS+= -L${LOCALBASE}/lib
.endif