summaryrefslogtreecommitdiff
blob: 1c35e419b7c70519e8a8208044d64c8b2f1503b7 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
# Copyright 1999-2005 Gentoo Foundation
# Distributed under the terms of the GNU General Public License v2
# $Header: /var/cvsroot/gentoo-x86/mail-filter/disspam/disspam-0.12-r1.ebuild,v 1.4 2005/12/30 12:00:52 mcummings Exp $

inherit eutils versionator

S=${WORKDIR}/${PN}
DESCRIPTION="A Perl script that removes spam from POP3 mailboxes based on RBLs."
HOMEPAGE="http://www.topfx.com/"
SRC_URI="http://www.topfx.com/dist/${P}.tar.gz"

SLOT="0"
LICENSE="Artistic"
KEYWORDS="x86 ~ppc ~sparc ~hppa ~alpha ~mips"
IUSE=""

DEPEND=">=dev-lang/perl-5.6.1
	>=perl-core/libnet-1.11
	>=sys-apps/sed-4
	>=dev-perl/Net-DNS-0.12"

src_unpack() {
	unpack ${A}
	cd ${S}

	SA_VERSION=`echo \`best_version mail-filter/spamassassin\` | cut -d - -f 3`
	if version_is_at_least 3.0.2 ${SA_VERSION}; then
		epatch ${FILESDIR}/${PV}-sa302fix.patch || die "epatch failed"
	fi

	#This doesnt look neat but makes it work
	sed -i \
		-e 's/\/usr\/local\/bin\/perl/\/usr\/bin\/perl/' disspam.pl || \
			die "sed disspam.pl failed"
}

src_install() {
	dobin disspam.pl
	dodoc changes.txt configuration.txt readme.txt sample.conf
}