diff options
author | Andrej Kacian <ticho@gentoo.org> | 2004-09-14 14:19:27 +0000 |
---|---|---|
committer | Andrej Kacian <ticho@gentoo.org> | 2004-09-14 14:19:27 +0000 |
commit | be27b01c7328f14cfd8b59eb98d2fb06d9d5f020 (patch) | |
tree | 6fb11c0ed40ee917f90a1bbb87776a8c0c743b36 /mail-filter | |
parent | Stable on sparc wrt #62626 take 2, #63948 (Manifest recommit) (diff) | |
download | gentoo-2-be27b01c7328f14cfd8b59eb98d2fb06d9d5f020.tar.gz gentoo-2-be27b01c7328f14cfd8b59eb98d2fb06d9d5f020.tar.bz2 gentoo-2-be27b01c7328f14cfd8b59eb98d2fb06d9d5f020.zip |
Initial version, closes #19192.
Diffstat (limited to 'mail-filter')
-rw-r--r-- | mail-filter/spamprobe/ChangeLog | 11 | ||||
-rw-r--r-- | mail-filter/spamprobe/Manifest | 2 | ||||
-rw-r--r-- | mail-filter/spamprobe/files/digest-spamprobe-0.9h | 2 | ||||
-rw-r--r-- | mail-filter/spamprobe/metadata.xml | 8 | ||||
-rw-r--r-- | mail-filter/spamprobe/spamprobe-0.9h.ebuild | 37 |
5 files changed, 60 insertions, 0 deletions
diff --git a/mail-filter/spamprobe/ChangeLog b/mail-filter/spamprobe/ChangeLog new file mode 100644 index 000000000000..952eaa8ce9b1 --- /dev/null +++ b/mail-filter/spamprobe/ChangeLog @@ -0,0 +1,11 @@ +# ChangeLog for mail-filter/spamprobe +# Copyright 1999-2004 Gentoo Foundation; Distributed under the GPL v2 +# $Header: /var/cvsroot/gentoo-x86/mail-filter/spamprobe/ChangeLog,v 1.1 2004/09/14 14:19:27 ticho Exp $ + +*spamprobe-0.9h (14 Sep 2004) + + 14 Sep 2004; Andrej Kacian <ticho@gentoo.org> +metadata.xml, + +spamprobe-0.9h.ebuild: + Initial version. Closes #19192, ebuild and patch submitted by Alexander + Schneider <A.Schneider@magicspace.de>. + diff --git a/mail-filter/spamprobe/Manifest b/mail-filter/spamprobe/Manifest new file mode 100644 index 000000000000..b9bb9f7ac048 --- /dev/null +++ b/mail-filter/spamprobe/Manifest @@ -0,0 +1,2 @@ +MD5 ae6afb4e71fff7c1e7138eb929d490cf spamprobe-0.9h.ebuild 853 +MD5 22dc99486764b555295bf2a75914f81b files/digest-spamprobe-0.9h 136 diff --git a/mail-filter/spamprobe/files/digest-spamprobe-0.9h b/mail-filter/spamprobe/files/digest-spamprobe-0.9h new file mode 100644 index 000000000000..5ac6aa118ee6 --- /dev/null +++ b/mail-filter/spamprobe/files/digest-spamprobe-0.9h @@ -0,0 +1,2 @@ +MD5 3d36cd1811c860a64f371d318736e808 spamprobe-0.9h.tar.gz 161164 +MD5 e4e75a78e5f16593a559b3aec3b9c384 spamprobe-0.9h-db4.patch.gz 6666 diff --git a/mail-filter/spamprobe/metadata.xml b/mail-filter/spamprobe/metadata.xml new file mode 100644 index 000000000000..93df6b622623 --- /dev/null +++ b/mail-filter/spamprobe/metadata.xml @@ -0,0 +1,8 @@ +<?xml version="1.0" encoding="UTF-8"?> +<!DOCTYPE pkgmetadata SYSTEM "http://www.gentoo.org/dtd/metadata.dtd"> +<pkgmetadata> +<herd>net-mail</herd> +<maintainer> + <email>ticho@gentoo.org</email> +</maintainer> +</pkgmetadata> diff --git a/mail-filter/spamprobe/spamprobe-0.9h.ebuild b/mail-filter/spamprobe/spamprobe-0.9h.ebuild new file mode 100644 index 000000000000..64b7e2464b46 --- /dev/null +++ b/mail-filter/spamprobe/spamprobe-0.9h.ebuild @@ -0,0 +1,37 @@ +# Copyright 1999-2004 Gentoo Foundation +# Distributed under the terms of the GNU General Public License v2 +# $Header: /var/cvsroot/gentoo-x86/mail-filter/spamprobe/spamprobe-0.9h.ebuild,v 1.1 2004/09/14 14:19:27 ticho Exp $ + +inherit eutils + +DESCRIPTION="Fast, intelligent, automatic spam detector using Paul Graham style Bayesian analysis of word counts in spam and non-spam emails." +HOMEPAGE="http://spamprobe.sourceforge.net/" +SRC_URI="mirror://sourceforge/spamprobe/${P}.tar.gz + http://dev.gentoo.org/~ticho/portage/spamprobe-0.9h-db4.patch.gz" + +LICENSE="QPL" +SLOT="0" +KEYWORDS="~x86" + +IUSE="berkdb" +DEPEND="berkdb? ( >=sys-libs/db-3.2 ) + sys-devel/autoconf" + +src_compile() { + unpack ${A} + cd ${S} + + # patch for db4 detection and their respective versioned symbols + epatch ${WORKDIR}/spamprobe-0.9h-db4.patch + autoconf || die + + econf || die + + emake || die "compile problem" +} + +src_install() { + dodoc README.txt ChangeLog LICENSE.txt + + einstall || die +} |