diff options
author | mjl <mjl@pkgsrc.org> | 2002-10-10 11:05:31 +0000 |
---|---|---|
committer | mjl <mjl@pkgsrc.org> | 2002-10-10 11:05:31 +0000 |
commit | 6a167ff289e44cbb95ec6fe04f9e33defde03b20 (patch) | |
tree | 3dccd029ff054523918e1a496bce7e3a77a1b520 /mail/bmf/Makefile | |
parent | 414d39e46b2d2cafaf82c746d4fcfbea9995794f (diff) | |
download | pkgsrc-6a167ff289e44cbb95ec6fe04f9e33defde03b20.tar.gz |
Initial import of bmf-0.84
This is a mail filter which uses the Bayes algorithm as explained in Paul
Graham's article "A Plan for Spam". It aims to be faster, smaller, and more
versatile than similar applicatios.
Diffstat (limited to 'mail/bmf/Makefile')
-rw-r--r-- | mail/bmf/Makefile | 26 |
1 files changed, 26 insertions, 0 deletions
diff --git a/mail/bmf/Makefile b/mail/bmf/Makefile new file mode 100644 index 00000000000..1ea54c6d0d7 --- /dev/null +++ b/mail/bmf/Makefile @@ -0,0 +1,26 @@ +# $NetBSD: Makefile,v 1.1.1.1 2002/10/10 11:05:31 mjl Exp $ +# + +DISTNAME= bmf-0.84 +CATEGORIES= mail +MASTER_SITES= $(MASTER_SITE_SOURCEFORGE:=bmf/) + +MAINTAINER= packages@netbsd.org +HOMEPAGE= http://sourceforge.net/projects/bmf/ +COMMENT= self contained and extremely efficient Bayesian mail filter + +HAS_CONFIGURE= YES + +CONFIGURE_ARGS+= --without-mysql +MAKE_ENV+= DESTDIR=${PREFIX} BINDIR=/bin MANDIR=/man + +ALL_TARGET= apps + +# Note: Until we figure out how to build the docs (it needs some +# xml files I cannot figure out where they can be found), we just +# ship pre-build man pages (snarfed from the Debian package). + +post-build: + ${CP} files/* ${WRKSRC} + +.include "../../mk/bsd.pkg.mk" |