--- /dev/null
+# ChangeLog for net-mail/spambayes
+# Copyright 2002-2004 Gentoo Technologies, Inc.; Distributed under the GPL v2
+# $Header: /var/cvsroot/gentoo-x86/mail-filter/spambayes/ChangeLog,v 1.1 2004/06/03 07:31:37 seemant Exp $
+
+*spambayes-1.0_beta1 (03 Jun 2004)
+
+ 03 Jun 2004; Seemant Kulleen <seemant@gentoo.org> +metadata.xml,
+ +spambayes-1.0_alpha9.ebuild, +spambayes-1.0_beta1.ebuild:
+ Moved from net-mail/spambayes to mail-filter/spambayes.
+
+*spambayes-1.0_beta1 (09 May 2004)
+
+ 09 May 2004; Thomas Raschbacher <lordvan@gentoo.org>
+ spambayes-1.0_beta1.ebuild:
+
+ New spambayes package release. More standard documentation included when
+ installed. Fixes Bug #48083; Thanks to Harry Jensen <harry.mj@mail.dk>
+
+*spambayes-1.0_alpha9 (17 Feb 2004)
+
+ 17 Feb 2004; Thomas Raschbacher <lordvan@gentoo.org>
+ spambayes-1.0-alpha9.ebuild:
+
+ initial release
--- /dev/null
+MD5 4e4aecd7de40b112ed2e28271c61e090 spambayes-1.0_beta1.ebuild 1258
+MD5 8c9525ba4494fb72ea69e05947775580 spambayes-1.0_alpha9.ebuild 587
+MD5 061e09dbedd30e65a3b0ce7eb44b4e35 ChangeLog 629
+MD5 19df39ef54fc4a8677998f19bb6046ac metadata.xml 218
+MD5 3c91b3be373a22e3af5205120586c3ac files/digest-spambayes-1.0_beta1 69
+MD5 bb0d1706a516be043cf42592fab906bb files/digest-spambayes-1.0_alpha9 67
--- /dev/null
+MD5 90a6c190c9696d8be86eb027a778ebf7 spambayes-1.0a9.tar.gz 673170
--- /dev/null
+MD5 4fe3f103a071ac8691b880b7152b2b02 spambayes-1.0b1.1.tar.gz 684107
--- /dev/null
+<?xml version="1.0" encoding="UTF-8"?>
+<!DOCTYPE pkgmetadata SYSTEM "http://www.gentoo.org/dtd/metadata.dtd">
+<pkgmetadata>
+<herd>python</herd>
+<maintainer><email>lordvan@gentoo.org</email></maintainer>
+</pkgmetadata>
--- /dev/null
+# Copyright 1999-2004 Gentoo Technologies, Inc.
+# Distributed under the terms of the GNU General Public License v2
+# $Header: /var/cvsroot/gentoo-x86/mail-filter/spambayes/spambayes-1.0_alpha9.ebuild,v 1.1 2004/06/03 07:31:37 seemant Exp $
+
+inherit distutils
+
+#MY_PN="Quotient"
+MY_PV=${PV/_alpha/a}
+MY_P="${PN}-${MY_PV}"
+DESCRIPTION="An anti-spam filter using on Bayesian filtering"
+HOMEPAGE="http://spambayes.sourceforge.net"
+SRC_URI="mirror://sourceforge/${PN}/${MY_P}.tar.gz"
+
+LICENSE="LGPL-2.1"
+SLOT="0"
+KEYWORDS="~x86"
+IUSE=""
+
+DEPEND=">=dev-lang/python-2.2.2"
+
+S=${WORKDIR}/${MY_P}
+
--- /dev/null
+# Copyright 1999-2004 Gentoo Technologies, Inc.
+# Distributed under the terms of the GNU General Public License v2
+# $Header: /var/cvsroot/gentoo-x86/mail-filter/spambayes/spambayes-1.0_beta1.ebuild,v 1.1 2004/06/03 07:31:37 seemant Exp $
+
+inherit distutils
+
+# Very obscure source package naming, spambayes-1.0b1.1.tar.gz
+# replacing _beta with "b1." so file fetching will be correct.
+MY_PV=${PV/_beta/b1.}
+MY_P="${PN}-${MY_PV}"
+DESCRIPTION="An anti-spam filter using on Bayesian filtering"
+HOMEPAGE="http://spambayes.sourceforge.net"
+SRC_URI="mirror://sourceforge/${PN}/${MY_P}.tar.gz"
+
+RESTRICT="nomirror"
+
+LICENSE="PSF-2.2"
+SLOT="0"
+KEYWORDS="~x86"
+IUSE=""
+
+DEPEND=">=dev-lang/python-2.2.2"
+
+# removing ".1" from the work directory name
+S=${WORKDIR}/${MY_P/.1}
+
+src_install() {
+ distutils_src_install
+ dodoc *.txt || die "doc *.txt files failed"
+ # someone might have benefits of the other documetation too,
+ # therefore added.
+ docinto contrib || die "doc directory, contrib, fail"
+ dodoc contrib/* || die "doc contrib/* failed"
+ docinto utilities || die "doc directory, utilities, failed"
+ dodoc utilities/* || die "doc utilities/* failed"
+ docinto testtools || die "doc directory, testtools, failed"
+ dodoc testtools/* || die "doc testtools/* failed"
+}
+