5f4673d7e2
our last version was 0.84). * Update documentation. * Move Bayes stuff into its own file. * Fix NaN exception: if list is empty, use zero for probability. * Make extrema array (keepers) variable size. Needs more work. * Add SYSLIBS to the makefile. * Fix gcc-ism in dbg.c (ptr arithmetic on void*). * Fix off-by-one in html tag check. * Fix unaligned access in libdb. * Fix bug in -d handling for text and libdb. * Autodetect mailbox type and deprecate the -m option. * Ditch the builtin libdb locks, use fcntl instead. * Fix memory leak in dbtext. * Fix some trivial issues with the lexer: - Be more strict about recognizing IP addresses. - Do case-insensitive header name comparisons. * Fix multiple database closure with mbox format. * Fix a bogus assert in passthrough. * Add heap checking in debug mode. * Fix bug in -N mode which made it act the same as -S. * Support maildir style folders. * Fix bug in multiple message registration. * Improve error reporting and clarify some messages. * Package preformatted manpage instead of XML. * Remove single message per invocation restriction.
17 lines
431 B
Makefile
17 lines
431 B
Makefile
# $NetBSD: Makefile,v 1.3 2002/10/25 14:18:13 mjl Exp $
|
|
#
|
|
|
|
DISTNAME= bmf-0.9.4
|
|
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
|
|
|
|
.include "../../mk/bsd.pkg.mk"
|