diff options
author | krion <krion@FreeBSD.org> | 2003-08-18 23:15:00 +0800 |
---|---|---|
committer | krion <krion@FreeBSD.org> | 2003-08-18 23:15:00 +0800 |
commit | e545b1c81386b9184a97f80a6216c286d90b36b7 (patch) | |
tree | deee236fc7469eeb59f4075560d7876eb07a0780 /mail | |
parent | c32956ae64f5eb5d50f162f33313966200bbfb31 (diff) | |
download | freebsd-ports-gnome-e545b1c81386b9184a97f80a6216c286d90b36b7.tar.gz freebsd-ports-gnome-e545b1c81386b9184a97f80a6216c286d90b36b7.tar.zst freebsd-ports-gnome-e545b1c81386b9184a97f80a6216c286d90b36b7.zip |
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>
Diffstat (limited to 'mail')
-rw-r--r-- | mail/Makefile | 1 | ||||
-rw-r--r-- | mail/bogofilter-tdb/Makefile | 21 |
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" |