freebsd-ports/mail/spamprobe/Makefile
Tobias Kortkamp 9e4075b7be mail/spamprobe: Fix build with Clang/libc++
In file included from FrequencyDBImpl_cache.cc:34:
In file included from ./FrequencyDBImpl_cache.h:34:
In file included from ../../src/includes/LRUCache.h:34:
/usr/include/c++/v1/map:476:17: error: no matching function for call to object of type 'const LRUCache<std::__1::basic_string<char>, Ref<FrequencyDBImpl_cache::CacheEntry> >::LRUCacheNodeKeyCompare'
        {return static_cast<const _Compare&>(*this)(__x.__cc.first, __y);}
                ^~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
2018-08-14 08:56:57 +00:00

59 lines
1.2 KiB
Makefile

# Created by: Matthew N. Dodd <mdodd@FreeBSD.org>
# $FreeBSD$
PORTNAME= spamprobe
PORTVERSION= 1.4d
PORTREVISION= 19
CATEGORIES= mail
MASTER_SITES= SF
MAINTAINER= ports@FreeBSD.org
COMMENT= Spam detector using Bayesian analysis of word counts
GNU_CONFIGURE= yes
CONFIGURE_ARGS= --enable-default-8bit
PLIST_FILES= bin/spamprobe man/man1/spamprobe.1.gz
OPTIONS_DEFINE= GIF JPEG PNG
OPTIONS_MULTI= DATABASE
OPTIONS_MULTI_DATABASE= PBL BDB
OPTIONS_DEFAULT=PBL GIF JPEG PNG
PBL_DESC= PBL database support (author's recommended data store)
CPPFLAGS+= -I${LOCALBASE}/include
LDFLAGS+= -L${LOCALBASE}/lib
# PBL support
PBL_BUILD_DEPENDS= ${LOCALBASE}/lib/libpbl.a:databases/libpbl
PBL_RUN_DEPENDS+= ${PBL_BUILD_DEPENDS}
PBL_CONFIGURE_WITH= pbl
PBL_LDFLAGS= -lpbl
# BerkleyDB support
BDB_CONFIGURE_ENABLE= cdb
BDB_CONFIGURE_WITH= db
BDB_CPPFLAGS= -DUSE_DB=1
# giflib support
GIF_CONFIGURE_WITH= gif
GIF_LIB_DEPENDS= libgif.so:graphics/giflib
# PNG support
PNG_CONFIGURE_WITH= png
PNG_LIB_DEPENDS= libpng.so:graphics/png
# JPEG support
JPEG_CONFIGURE_WITH=jpeg
JPEG_USES= jpeg
.include <bsd.port.options.mk>
.if ${PORT_OPTIONS:MBDB}
USES+= bdb
CPPFLAGS+= -I${BDB_INCLUDE_DIR}
LDFLAGS+= -l${BDB_LIB_NAME}
.endif
.include <bsd.port.mk>