diff options
author | krion <krion@FreeBSD.org> | 2004-01-02 12:33:34 +0000 |
---|---|---|
committer | krion <krion@FreeBSD.org> | 2004-01-02 12:33:34 +0000 |
commit | 5eb02214fbdcb254b2334b963c85eeac2ad8a707 (patch) | |
tree | d6ab09e6908ee2d81a2aa5fc15728b85a4ed1e01 /mail | |
parent | 62e38f6d0114d77d43451ee0e28803d6307449f6 (diff) | |
download | FreeBSD-ports-5eb02214fbdcb254b2334b963c85eeac2ad8a707.zip FreeBSD-ports-5eb02214fbdcb254b2334b963c85eeac2ad8a707.tar.gz |
Add a new bogofilter slave port that uses the QDBM data base
manager.
PR: 60814
Submitted by: Matthias Andree <matthias.andree@gmx.de>
Diffstat (limited to 'mail')
-rw-r--r-- | mail/Makefile | 1 | ||||
-rw-r--r-- | mail/bogofilter-qdbm/Makefile | 24 |
2 files changed, 25 insertions, 0 deletions
diff --git a/mail/Makefile b/mail/Makefile index d44f2b3..ef12727 100644 --- a/mail/Makefile +++ b/mail/Makefile @@ -25,6 +25,7 @@ SUBDIR += bincimap SUBDIR += bmf SUBDIR += bogofilter + SUBDIR += bogofilter-qdbm SUBDIR += bogofilter-tdb SUBDIR += bsmtp SUBDIR += bulk_mailer diff --git a/mail/bogofilter-qdbm/Makefile b/mail/bogofilter-qdbm/Makefile new file mode 100644 index 0000000..09625b7 --- /dev/null +++ b/mail/bogofilter-qdbm/Makefile @@ -0,0 +1,24 @@ +# New ports collection makefile for: bogofilter-qdbm +# Date created: 2004-01-02 +# Whom: Matthias Andree <matthias.andree@gmx.de> +# +# $FreeBSD$ +# + +PORTNAME= bogofilter +PORTREVISION= 0 +CATEGORIES= mail +PKGNAMESUFFIX= -qdbm + +MASTERDIR= ${.CURDIR}/../bogofilter + +LIB_DEPENDS= qdbm.1:${PORTSDIR}/databases/qdbm + +CONFLICTS= bogofilter-0* bogofilter-tdb* + +CONFIGURE_ARGS= --with-database=qdbm +CONFIGURE_ENV= CPPFLAGS="-I${LOCALBASE}/include" \ + LDFLAGS="-L${LOCALBASE}/lib" +DESCR= ${PKGDIR}/pkg-descr + +.include "${MASTERDIR}/Makefile" |