--- /dev/null
+# ChangeLog for net-mail/popfile
+# Copyright 2000-2004 Gentoo Technologies, Inc.; Distributed under the GPL v2
+# $Header: /var/cvsroot/gentoo-x86/mail-filter/popfile/ChangeLog,v 1.1 2004/06/03 07:22:04 seemant Exp $
+
+*popfile-0.20.1 (03 Jun 2004)
+
+ 03 Jun 2004; Seemant Kulleen <seemant@gentoo.org> +metadata.xml,
+ +popfile-0.20.1.ebuild, +popfile-0.21.1.ebuild:
+ Moved from net-mail/popfile to mail-filter/popfile.
+
+*popfile-0.20.1 (17 Apr 2004)
+
+ 17 Apr 2004; Stuart Herbert <stuart@gentoo.org> popfile-0.20.1.ebuild,
+ popfile-0.21.1.ebuild:
+ Added popfile-0.20.1.ebuild, to provide the correct fix for bug #45883.
+
+ Added missing dependency DBD:SQLite to popfile-0.21.1.ebuild, and marked it as
+ unstable for testing. Fixes bug #48031.
+
+ 27 Mar 2004; Seemant Kulleen <seemant@gentoo.org> popfile-0.21.1.ebuild:
+ fetch the CORRECT sources, for crying out loud. Use the portage variables for
+ this stuff NOT the hardcoded version info! Thanks to: Dale K Dicks
+ <dale_d@telusplanet.net> in bug #45883
+
+ 17 Mar 2004; Stuart Herbert <stuart@gentoo.org> popfile-0.21.1.ebuild:
+ Added missing HTML-Tagset dependency, and tightended up security permissions.
+ Fixes for bugs #44394 and #44397
+
+*popfile-0.21.1 (25 Dec 2003)
+
+ 25 Dec 2003; Stuart Herbert <stuart@gentoo.org> metadata.xml,
+ popfile-0.21.1.ebuild:
+ Initial import
+
--- /dev/null
+MD5 070a2ba7f4c271577491fd8c197ff44f popfile-0.21.1.ebuild 1133
+MD5 0529d671c126bf6c039b64c65f773a7c ChangeLog 1137
+MD5 7ffa9bf1b757cbd93afb8c746fcd24e6 metadata.xml 293
+MD5 9a3f7e3fdc55e083c653dd2974752a40 popfile-0.20.1.ebuild 1098
+MD5 d9d12773e8397a1960eab275e3bcc8c4 files/digest-popfile-0.21.1 64
+MD5 b97d4969666f64a2d8b7c050253dc29b files/digest-popfile-0.20.1 64
--- /dev/null
+MD5 f37bbd25aa81e98f3846389b26390062 popfile-0.20.1.zip 1912427
--- /dev/null
+MD5 c723b0bb3eddb866fe0bce47e05b38cb popfile-0.21.1.zip 1504449
--- /dev/null
+<?xml version="1.0" encoding="UTF-8"?>
+<!DOCTYPE pkgmetadata SYSTEM "http://www.gentoo.org/dtd/metadata.dtd">
+<pkgmetadata>
+<herd>no-herd</herd>
+<maintainer>
+ <email>stuart@gentoo.org</email>
+ <name>Stuart Herbert</name>
+ <description>Maintainer</description>
+</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/popfile/popfile-0.20.1.ebuild,v 1.1 2004/06/03 07:22:04 seemant Exp $
+
+IUSE=""
+
+S=${WORKDIR}
+DESCRIPTION="Anti-spam filter"
+HOMEPAGE="http://foo.bar.com/"
+SRC_URI="mirror://sourceforge/popfile/${P}.zip"
+
+SLOT="0"
+LICENSE="GPL-2"
+KEYWORDS="x86"
+
+DEPEND=">=dev-lang/perl-5.8
+ >=dev-perl/BerkeleyDB-0.25
+ dev-perl/Text-Kakasi
+ dev-perl/MIME-Base64
+ dev-perl/HTML-Tagset"
+
+
+src_compile() {
+ # do nothing
+ echo > /dev/null
+}
+
+src_install() {
+ # yes, this is crude, but it's a start
+
+ dodir /usr/share/popfile
+ find . -type f -print | xargs chmod 600
+ find . -type d -print | xargs chmod 700
+ tar -cf - * | ( cd ${D}/usr/share/popfile && tar -xf - )
+
+ fperms 0755 usr/share/popfile/popfile.pl
+ dodir /usr/share/popfile/corpus
+ dodir /usr/share/popfile/messages
+}
+
+pkg_postinst () {
+ einfo "To start popfile, run /usr/share/popfile/popfile.pl"
+ einfo
+ einfo "A /etc/init.d script will be added once popfile can support"
+ einfo "multiple users"
+}
--- /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/popfile/popfile-0.21.1.ebuild,v 1.1 2004/06/03 07:22:04 seemant Exp $
+
+IUSE=""
+
+S=${WORKDIR}
+DESCRIPTION="Anti-spam bayesian filter"
+HOMEPAGE="http://popfile.sourceforge.net/"
+SRC_URI="mirror://sourceforge/popfile/${P}.zip"
+
+SLOT="0"
+LICENSE="GPL-2"
+KEYWORDS="~x86"
+
+DEPEND=">=dev-lang/perl-5.8
+ dev-perl/Digest-MD5
+ dev-perl/Text-Kakasi
+ dev-perl/MIME-Base64
+ dev-perl/HTML-Tagset
+ dev-perl/DBD-SQLite"
+
+src_compile() {
+ # do nothing
+ echo > /dev/null
+}
+
+src_install() {
+ # yes, this is crude, but it's a start
+
+ dodir /usr/share/popfile
+ find . -type f -print | xargs chmod 600
+ find . -type d -print | xargs chmod 700
+ tar -cf - * | ( cd ${D}/usr/share/popfile && tar -xf - )
+
+ fperms 0755 usr/share/popfile/popfile.pl
+ dodir /usr/share/popfile/corpus
+ dodir /usr/share/popfile/messages
+}
+
+pkg_postinst () {
+ einfo "To start popfile, run /usr/share/popfile/popfile.pl"
+ einfo
+ einfo "A /etc/init.d script will be added once popfile can support"
+ einfo "multiple users"
+}