summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorNick Hadaway <raker@gentoo.org>2003-07-01 19:14:50 +0000
committerNick Hadaway <raker@gentoo.org>2003-07-01 19:14:50 +0000
commit52baea69683c94dbed69e58869549ea14564b51c (patch)
tree8109747a64e03243fa88de4326a5e34a926a5af9 /net-mail
parentModified character code of man/ja/man1/nkf.1 (diff)
downloadhistorical-52baea69683c94dbed69e58869549ea14564b51c.tar.gz
historical-52baea69683c94dbed69e58869549ea14564b51c.tar.bz2
historical-52baea69683c94dbed69e58869549ea14564b51c.zip
Version bump.
Diffstat (limited to 'net-mail')
-rw-r--r--net-mail/bogofilter/ChangeLog7
-rw-r--r--net-mail/bogofilter/Manifest4
-rw-r--r--net-mail/bogofilter/bogofilter-0.13.6.2.ebuild60
-rw-r--r--net-mail/bogofilter/files/digest-bogofilter-0.13.6.21
4 files changed, 70 insertions, 2 deletions
diff --git a/net-mail/bogofilter/ChangeLog b/net-mail/bogofilter/ChangeLog
index bbe39a66f5e4..d0881eebeca4 100644
--- a/net-mail/bogofilter/ChangeLog
+++ b/net-mail/bogofilter/ChangeLog
@@ -1,6 +1,11 @@
# ChangeLog for net-mail/bogofilter
# Copyright 2002-2003 Gentoo Technologies, Inc.; Distributed under the GPL v2
-# $Header: /var/cvsroot/gentoo-x86/net-mail/bogofilter/ChangeLog,v 1.11 2003/06/02 22:53:39 joker Exp $
+# $Header: /var/cvsroot/gentoo-x86/net-mail/bogofilter/ChangeLog,v 1.12 2003/07/01 19:14:50 raker Exp $
+
+*bogofilter-0.13.6.2 (01 Jul 2003)
+
+ 01 Jul 2003; Nick Hadaway <raker@gentoo.org> bogofilter-0.13.6.2.ebuild:
+ Version bump. Minor ebuild changes. See bug #22562.
03 Jun 2003; Christian Birchinger <joker@gentoo.org>
bogofilter-0.11.2.ebuild:
diff --git a/net-mail/bogofilter/Manifest b/net-mail/bogofilter/Manifest
index dca8e0db2573..64aa0a1678af 100644
--- a/net-mail/bogofilter/Manifest
+++ b/net-mail/bogofilter/Manifest
@@ -1,5 +1,7 @@
-MD5 3de71e394710ec279969861575b7b1d9 ChangeLog 1824
MD5 3c2992749377c1bf1beb439f43b55c03 bogofilter-0.11.2.ebuild 1296
MD5 371da997112e483904086125258937e3 bogofilter-0.13.3.ebuild 1885
+MD5 ca2f2b874af8732e35db4b63687f2afe bogofilter-0.13.6.2.ebuild 1803
+MD5 3de71e394710ec279969861575b7b1d9 ChangeLog 1824
+MD5 99b78224a48cb1a8c062dc29d40f00ce files/digest-bogofilter-0.13.6.2 71
MD5 c32343db7444ec70462f26b49fdee65f files/digest-bogofilter-0.11.2 69
MD5 1ec9835c10fd7a1f02715652f1bac91e files/digest-bogofilter-0.13.3 69
diff --git a/net-mail/bogofilter/bogofilter-0.13.6.2.ebuild b/net-mail/bogofilter/bogofilter-0.13.6.2.ebuild
new file mode 100644
index 000000000000..c06c5e04ee52
--- /dev/null
+++ b/net-mail/bogofilter/bogofilter-0.13.6.2.ebuild
@@ -0,0 +1,60 @@
+# Copyright 1999-2003 Gentoo Technologies, Inc.
+# Distributed under the terms of the GNU General Public License v2
+# $Header:
+
+DESCRIPTION="Bayesian spam filter designed with fast algorithms, and tuned for speed."
+HOMEPAGE="http://bogofilter.sourceforge.net/"
+SRC_URI="mirror://sourceforge/bogofilter/${P}.tar.gz"
+
+LICENSE="GPL-2"
+SLOT="0"
+
+KEYWORDS="~ppc ~x86 ~sparc"
+IUSE=""
+
+DEPEND="virtual/glibc
+ >=sys-libs/db-3"
+
+S=${WORKDIR}/${P}
+
+src_compile() {
+ econf
+ emake || die
+}
+
+src_install() {
+ make DESTDIR=${D} install || die
+
+ exeinto /usr/lib/${PN}/tuning
+ doexe tuning/bogolex.sh tuning/distrib tuning/mkdb tuning/sizes tuning/tuning.R tuning/tuning.sh
+ insinto /usr/lib/${PN}/tuning
+ doins tuning/README tuning/setR
+
+ exeinto /usr/lib/${PN}/contrib
+ doexe contrib/bogofilter-qfe contrib/bogogrep contrib/mime.get.rfc822 contrib/parmtest.sh
+ doexe contrib/printmaildir.pl contrib/randomtrain contrib/scramble
+ insinto /usr/lib/${PN}/contrib
+ doins contrib/README.randomtrain contrib/bogo.R contrib/trainbogo.sh
+
+ dodoc AUTHORS INSTALL COPYING METHODS NEWS README README.cvs TODO UPGRADE
+ dodoc RELEASE.NOTES-0.1* CHANGES-0.1* doc/integrating-with-* doc/*.HOWTO
+ dodoc contrib/mailfilter.example contrib/procmailrc.example
+
+ dodir /usr/share/doc/${P}/samples
+ mv ${D}/etc/* ${D}/usr/share/doc/${PF}/samples/
+ rmdir ${D}/etc
+
+ dohtml doc/*.html
+ docinto programmer ; dodoc doc/programmer/*
+}
+
+pkg_postinst() {
+
+ einfo "With version 0.11 the options of bogofilter have changed."
+ einfo "If you update from an older version, you eventually must change"
+ einfo "your configuration."
+ einfo ""
+ einfo "Read bogofilter's manual 'man bogofilter' and have a look at"
+ einfo "the examples in the doc directory for tips on how"
+ einfo "to integrate bogofilter with procmail, maildrop, postfix or qmail."
+}
diff --git a/net-mail/bogofilter/files/digest-bogofilter-0.13.6.2 b/net-mail/bogofilter/files/digest-bogofilter-0.13.6.2
new file mode 100644
index 000000000000..bcf5ccfff6e8
--- /dev/null
+++ b/net-mail/bogofilter/files/digest-bogofilter-0.13.6.2
@@ -0,0 +1 @@
+MD5 6ecb1cb07296c6a6fdf2810b7dcee4ee bogofilter-0.13.6.2.tar.gz 541984