diff options
author | hubertf <hubertf@pkgsrc.org> | 2006-01-07 10:27:51 +0000 |
---|---|---|
committer | hubertf <hubertf@pkgsrc.org> | 2006-01-07 10:27:51 +0000 |
commit | 7c494d79eded8c52d47f0b68bffd73ffb95ec023 (patch) | |
tree | 66e71459c99cc5e287c2141126812d0078a6a517 | |
parent | b975e3aee4552ea822dab10ede43e37a97408d84 (diff) | |
download | pkgsrc-7c494d79eded8c52d47f0b68bffd73ffb95ec023.tar.gz |
Update spamprobe to version 1.4.
Submitted by Ossi 'ohub' Herrala <oherrala@ee.oulu.fi> in private mail
as discussed on IRCnet #NetBSD.
Changes to software:
* Spamprobe has a config file!
* Added comprehensive command line option help.
* Added support for maildir directories to all file based commands.
* Added support for auto-purge (-P command line option).
* Commands create-db and create-config to greate database and config
file.
* Added gif parser support using libungif to analyzes image
attachments and derive useful information from them.
Changes to package:
* bdb is not in SUGGESTED_OPTIONS anymore.
* added depency to graphics/libungif and gif is in SUGGESTED_OPTIONS.
-rw-r--r-- | doc/CHANGES | 3 | ||||
-rw-r--r-- | mail/spamprobe/DESCR | 18 | ||||
-rw-r--r-- | mail/spamprobe/Makefile | 5 | ||||
-rw-r--r-- | mail/spamprobe/distinfo | 8 | ||||
-rw-r--r-- | mail/spamprobe/options.mk | 9 |
5 files changed, 28 insertions, 15 deletions
diff --git a/doc/CHANGES b/doc/CHANGES index 3f71947b297..f06ffa99a7d 100644 --- a/doc/CHANGES +++ b/doc/CHANGES @@ -1,4 +1,4 @@ -$NetBSD: CHANGES,v 1.12396 2006/01/07 06:47:54 schmonz Exp $ +$NetBSD: CHANGES,v 1.12397 2006/01/07 10:27:59 hubertf Exp $ Changes to the packages collection and infrastructure in 2006: @@ -144,3 +144,4 @@ Changes to the packages collection and infrastructure in 2006: Updated www/cgic to 2.05 [adam 2006-01-06] Updated pkgtools/pkg_comp to 1.25 [seb 2006-01-06] Added databases/tinycdb version 0.75 [schmonz 2006-01-07] + Updated mail/spamprobe to 1.4 [hubertf 2006-01-07] diff --git a/mail/spamprobe/DESCR b/mail/spamprobe/DESCR index b75139bba3b..db823d9ebb1 100644 --- a/mail/spamprobe/DESCR +++ b/mail/spamprobe/DESCR @@ -1,4 +1,14 @@ -Spamprobe is a fast, intelligent, automatic spam detector using Bayesian -analysis of terms contained in emails. Works with procmail, maildrop or a -similar tool to produce a complete server or client side spam filtering -system. +Spamprobe is a fast, intelligent, automatic spam detector using +Bayesian analysis of terms contained in emails. Works with procmail, +maildrop or a similar tool to produce a complete server or client side +spam filtering system. + +Features: + * Spam detection using Bayesian analysis of terms contained in each + email. + * Automatically learns from incoming mails as they are + classified. Incorporates user's feedback to tailor classification to + each user's personal tastes. + * Analyzes image attachments to derive useful information from them. + * Natively supports mbox, MBX, and Maildir mail box formats. + * And many more.. diff --git a/mail/spamprobe/Makefile b/mail/spamprobe/Makefile index 48c6d1d32c3..91184b12402 100644 --- a/mail/spamprobe/Makefile +++ b/mail/spamprobe/Makefile @@ -1,7 +1,6 @@ -# $NetBSD: Makefile,v 1.15 2006/01/06 15:10:05 wiz Exp $ +# $NetBSD: Makefile,v 1.16 2006/01/07 10:27:51 hubertf Exp $ -DISTNAME= spamprobe-1.2a -PKGREVISION= 1 +DISTNAME= spamprobe-1.4 CATEGORIES= mail MASTER_SITES= ${MASTER_SITE_SOURCEFORGE:=spamprobe/} diff --git a/mail/spamprobe/distinfo b/mail/spamprobe/distinfo index ffd77fbea51..e2567f55bd0 100644 --- a/mail/spamprobe/distinfo +++ b/mail/spamprobe/distinfo @@ -1,5 +1,5 @@ -$NetBSD: distinfo,v 1.8 2005/06/29 00:06:58 hubertf Exp $ +$NetBSD: distinfo,v 1.9 2006/01/07 10:27:51 hubertf Exp $ -SHA1 (spamprobe-1.2a.tar.gz) = 63470a74339faeb78c61a2d8a60e6d215bec47f2 -RMD160 (spamprobe-1.2a.tar.gz) = 036b78c096cb49598a2c68c72a7753d72baf5704 -Size (spamprobe-1.2a.tar.gz) = 189240 bytes +SHA1 (spamprobe-1.4.tar.gz) = 723f026a07c659f6a76be572fa29cfe7f21dc0ba +RMD160 (spamprobe-1.4.tar.gz) = f8067319af1d53f6d7469e275d043974e9dad34d +Size (spamprobe-1.4.tar.gz) = 251798 bytes diff --git a/mail/spamprobe/options.mk b/mail/spamprobe/options.mk index 5d863c13cf9..b954d5b44e3 100644 --- a/mail/spamprobe/options.mk +++ b/mail/spamprobe/options.mk @@ -1,8 +1,8 @@ -# $NetBSD: options.mk,v 1.2 2005/12/05 23:55:11 rillig Exp $ +# $NetBSD: options.mk,v 1.3 2006/01/07 10:27:51 hubertf Exp $ PKG_OPTIONS_VAR= PKG_OPTIONS.spamprobe -PKG_SUPPORTED_OPTIONS= bdb -PKG_SUGGESTED_OPTIONS= bdb +PKG_SUPPORTED_OPTIONS= bdb gif +PKG_SUGGESTED_OPTIONS= gif .include "../../mk/bsd.options.mk" @@ -12,3 +12,6 @@ BDB_ACCEPTED= db4 # db3 db2 (not tested) CONFIGURE_ARGS+= --with-db=${BDBBASE:Q} .endif +.if !empty(PKG_OPTIONS:Mgif) +.include "../../graphics/libungif/buildlink3.mk" +.endif |