1
0
mirror of https://git.FreeBSD.org/ports.git synced 2024-11-24 00:45:52 +00:00
freebsd-ports/mail/spamprobe/Makefile
2012-06-01 05:26:28 +00:00

74 lines
1.8 KiB
Makefile

# New ports collection makefile for: spamprobe
# Whom: Matthew N. Dodd <mdodd@FreeBSD.org>
# Date created: 05 September 2002
#
# $FreeBSD$
#
# Available options for this port:
# WITHOUT_PBL - disable support for PBL database storage
# WITHOUT_BDB - disable support for BDB database storage
# 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= 7
CATEGORIES= mail
MASTER_SITES= SF
MAINTAINER= stefan@FreeBSD.org
COMMENT= Spam detector using Bayesian analysis of word counts
GNU_CONFIGURE= yes
CONFIGURE_ARGS= --enable-default-8bit
MAN1= spamprobe.1
PLIST_FILES= bin/spamprobe
# PBL support
.if !defined(WITHOUT_PBL)
BUILD_DEPENDS+= ${LOCALBASE}/include/pbl.h:${PORTSDIR}/databases/libpbl
CONFIGURE_ARGS+= --with-pbl=${LOCALBASE}
CPPFLAGS+= -I${LOCALBASE}/include
LDFLAGS+= -L${LOCALBASE}/lib -lpbl
.endif
# BerkleyDB support
.if !defined(WITHOUT_BDB)
USE_BDB= 40+
CONFIGURE_ARGS+= --enable-cdb
CPPFLAGS+= -I${BDB_INCLUDE_DIR} -DUSE_DB=1
LDFLAGS+= -L${LOCALBASE}/lib -l${BDB_LIB_NAME}
.endif
# giflib support
.if defined(WITHOUT_UNGIF)
CONFIGURE_ARGS+= --without-gif
.else
LIB_DEPENDS+= gif.5:${PORTSDIR}/graphics/giflib
CPPFLAGS+= -I${LOCALBASE}/include
LDFLAGS+= -L${LOCALBASE}/lib
.endif
# PNG support
.if defined(WITHOUT_PNG)
CONFIGURE_ARGS+= --without-png
.else
LIB_DEPENDS+= png15:${PORTSDIR}/graphics/png
CPPFLAGS+= -I${LOCALBASE}/include
LDFLAGS+= -L${LOCALBASE}/lib
.endif
# JPEG support
.if defined(WITHOUT_JPEG)
CONFIGURE_ARGS+= --without-jpeg
.else
LIB_DEPENDS+= jpeg.11:${PORTSDIR}/graphics/jpeg
CPPFLAGS+= -I${LOCALBASE}/include
LDFLAGS+= -L${LOCALBASE}/lib
.endif
.include <bsd.port.mk>