summaryrefslogtreecommitdiff
path: root/mail
diff options
context:
space:
mode:
authorKirill Ponomarev <krion@FreeBSD.org>2003-08-18 15:15:00 +0000
committerKirill Ponomarev <krion@FreeBSD.org>2003-08-18 15:15:00 +0000
commitc2dc557db10935a184c072c28ed5a7590b7b1d78 (patch)
tree55791366d5d421af142bbbdefe5b4f0f68bbf153 /mail
parent* TDB is now supported (will be filed as a separate (diff)
New bogofilter-tdb port, which is essentially the same as
bogofilter, but linked against TDB (Trivial Database) rather than BerkeleyDB. PR: 55662 Submitted by: Matthias Andree <matthias.andree@web.de>
Notes
Notes: svn path=/head/; revision=87206
Diffstat (limited to 'mail')
-rw-r--r--mail/Makefile1
-rw-r--r--mail/bogofilter-tdb/Makefile21
2 files changed, 22 insertions, 0 deletions
diff --git a/mail/Makefile b/mail/Makefile
index c1a1c87fd7d3..993a20714d72 100644
--- a/mail/Makefile
+++ b/mail/Makefile
@@ -21,6 +21,7 @@
SUBDIR += bincimap
SUBDIR += bmf
SUBDIR += bogofilter
+ SUBDIR += bogofilter-tdb
SUBDIR += bsmtp
SUBDIR += bulk_mailer
SUBDIR += cclient
diff --git a/mail/bogofilter-tdb/Makefile b/mail/bogofilter-tdb/Makefile
new file mode 100644
index 000000000000..4387f4e75625
--- /dev/null
+++ b/mail/bogofilter-tdb/Makefile
@@ -0,0 +1,21 @@
+# New ports collection makefile for: bogofilter-tdb
+# Date created: 17.08.2003
+# Whom: Matthias Andree <matthias.andree@web.de>
+#
+# $FreeBSD$
+#
+
+PORTNAME= bogofilter
+PORTREVISION= 0
+CATEGORIES= mail
+PKGNAMESUFFIX= -tdb
+
+MASTERDIR= ${.CURDIR}/../bogofilter
+LIB_DEPENDS= tdb.1:${PORTSDIR}/databases/tdb
+
+CONFIGURE_ARGS= --with-tdb
+CONFIGURE_ENV= CPPFLAGS="-I${LOCALBASE}/include" \
+ LDFLAGS="-L${LOCALBASE}/lib"
+DESCR= ${PKGDIR}/pkg-descr
+
+.include "${MASTERDIR}/Makefile"