summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
Diffstat (limited to 'mail-filter/ask/ask-2.4.1.ebuild')
-rw-r--r--mail-filter/ask/ask-2.4.1.ebuild58
1 files changed, 0 insertions, 58 deletions
diff --git a/mail-filter/ask/ask-2.4.1.ebuild b/mail-filter/ask/ask-2.4.1.ebuild
deleted file mode 100644
index bf734aa08f02..000000000000
--- a/mail-filter/ask/ask-2.4.1.ebuild
+++ /dev/null
@@ -1,58 +0,0 @@
-# Copyright 1999-2018 Gentoo Foundation
-# Distributed under the terms of the GNU General Public License v2
-
-EAPI=0
-
-DESCRIPTION="Active Spam Killer: A program to filter spam"
-HOMEPAGE="http://www.paganini.net/ask/index.html"
-SRC_URI="mirror://sourceforge/a-s-k/${P}.tar.gz"
-
-LICENSE="GPL-2"
-SLOT="0"
-KEYWORDS="ppc x86"
-
-IUSE="procmail"
-RDEPEND=">=dev-lang/python-2.2
- virtual/mta
- procmail? ( >=mail-filter/procmail-3.22 )"
-
-src_install() {
- into /
- dobin ask.py asksetup.py askversion.py utils/asksenders.py
-
- insinto /usr/lib/ask
- doins askconfig.py asklock.py asklog.py askmail.py askmain.py \
- askmessage.py askremote.py
-
- insinto /usr/share/ask/samples
- doins samples/*
-
- insinto /usr/share/ask/templates
- doins templates/*
-
- insinto /usr/share/ask/utils
- doins utils/*
-
- doman docs/*.1
-
- dodoc ChangeLog TODO docs/ask_doc*
-}
-
-pkg_postinst() {
- elog
- elog "You MUST run the asksetup.py file to configure ASK!"
- elog
- if use procmail; then
- elog "To use ASK's procmail support these should be your first two procmail rules:"
- elog
- elog ":0 fW"
- elog "|/path_to_ask/ask.py --procmail --loglevel=5 --logfile=/your_home/ask.log"
- elog
- elog ":0 e"
- elog "/dev/null"
- elog
- elog "The second rule above instructs procmail to deliver the message to /dev/null"
- elog "if ASK returns a fail code. If you're truly paranoid, you can save those"
- elog "messages to a file instead for later inspection."
- fi
-}