diff options
author | miwi <miwi@FreeBSD.org> | 2009-01-08 23:59:04 +0800 |
---|---|---|
committer | miwi <miwi@FreeBSD.org> | 2009-01-08 23:59:04 +0800 |
commit | 0e33311107780b2d689d5e9bcc9be1923057c04a (patch) | |
tree | e000da06a8d21042d8da03c7d6d56d9e253d2b2f | |
parent | 02f44f789fce43f1d83f299e9a4e6f835ff4827e (diff) | |
download | freebsd-ports-gnome-0e33311107780b2d689d5e9bcc9be1923057c04a.tar.gz freebsd-ports-gnome-0e33311107780b2d689d5e9bcc9be1923057c04a.tar.zst freebsd-ports-gnome-0e33311107780b2d689d5e9bcc9be1923057c04a.zip |
This is a new sibling port of bogofilter's, using tokyocabinet as database.
PR: ports/127039
Submitted by: Matthias Andree <matthias.andree@gmx.de>
-rw-r--r-- | mail/Makefile | 1 | ||||
-rw-r--r-- | mail/bogofilter-tc/Makefile | 26 |
2 files changed, 27 insertions, 0 deletions
diff --git a/mail/Makefile b/mail/Makefile index c219ef3b5c17..aeeea42078e8 100644 --- a/mail/Makefile +++ b/mail/Makefile @@ -34,6 +34,7 @@ SUBDIR += bogofilter SUBDIR += bogofilter-qdbm SUBDIR += bogofilter-sqlite + SUBDIR += bogofilter-tc SUBDIR += bsfilter SUBDIR += bsmtp SUBDIR += bulk_mailer diff --git a/mail/bogofilter-tc/Makefile b/mail/bogofilter-tc/Makefile new file mode 100644 index 000000000000..c312ef0fcbcf --- /dev/null +++ b/mail/bogofilter-tc/Makefile @@ -0,0 +1,26 @@ +# New ports collection makefile for: bogofilter-tc +# Date created: 2008-08-29 +# Whom: Zach Thompson <hideo@lastamericanempire.com> +# +# $FreeBSD$ +# + +PORTNAME= bogofilter +CATEGORIES= mail +PKGNAMESUFFIX= -tc + +MAINTAINER= matthias.andree@gmx.de +# Blanket approval for changes by Zach Thompson (address above) + +LIB_DEPENDS= tokyocabinet.7:${PORTSDIR}/databases/tokyocabinet + +CONFLICTS= bogofilter-[0-9]* [a-z][a-z]-bogofilter-[1-9]* bogofilter-sqlite-[0-9]* bogofilter-qdbm-[0-9]* + +CONFIGURE_ARGS= --with-database=tokyocabinet +BF_CPPFLAGS= -I${LOCALBASE}/include +BF_LIBS= +DESCR= ${PKGDIR}/pkg-descr + +MASTERDIR= ${.CURDIR}/../bogofilter + +.include "${MASTERDIR}/Makefile" |