blob: 992443c385ea904da2bf180687c2b2f87c5047d5 (
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
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
|
# Copyright 1999-2004 Gentoo Technologies, Inc.
# Distributed under the terms of the GNU General Public License v2
# $Header: /var/cvsroot/gentoo-x86/dev-perl/Mail-SpamAssassin/Mail-SpamAssassin-2.60-r2.ebuild,v 1.2 2004/01/18 10:47:36 esammer Exp $
inherit perl-module
S=${WORKDIR}/${P}
DESCRIPTION="Perl Mail::SpamAssassin - A program to filter spam"
SRC_URI="http://spamassassin.org/released/${P}.tar.bz2"
HOMEPAGE="http://spamassassin.org"
IUSE="berkdb ssl"
SLOT="0"
LICENSE="GPL-2 | Artistic"
KEYWORDS="~x86 ~amd64 ~ppc ~sparc ~alpha"
newdepend ">=dev-perl/ExtUtils-MakeMaker-6.11-r1
dev-perl/Time-Local
dev-perl/Getopt-Long
>=dev-perl/File-Spec-0.8
>=dev-perl/PodParser-1.22
>=dev-perl/HTML-Parser-3.24
dev-perl/Net-DNS
dev-perl/Digest-SHA1
ssl? ( dev-perl/IO-Socket-SSL )
berkdb? ( dev-perl/DB_File )"
myconf="CONTACT_ADDRESS=root@localhost RUN_NET_TESTS=0"
# If ssl is enabled, spamc can be built with ssl support
if use ssl; then
myconf="${myconf} ENABLE_SSL=yes"
fi
# if you are going to enable taint mode, make sure that the bug where
# spamd doesn't start when the PATH contains . is addressed, and make
# sure you deal with versions of razor <2.36-r1 not being taint-safe.
# <http://bugzilla.spamassassin.org/show_bug.cgi?id=2511> and
# <http://spamassassin.org/released/Razor2.patch>.
myconf="${myconf} PERL_TAINT=no"
# No settings needed for 'make all'.
mymake=""
# Neither for 'make install'.
myinst=""
# Some more files to be installed (README* and Changes are already
# included per default)
mydoc="License
COPYRIGHT
TRADEMARK
CONTRIB_CERT
BUGS
USAGE
procmailrc.example
sample-nonspam.txt
sample-spam.txt "
src_compile() {
perl-module_src_compile
}
src_install () {
perl-module_src_install
# Add the init and config scripts.
dodir /etc/init.d /etc/conf.d
insinto /etc/init.d
newins ${FILESDIR}/spamd.init spamd
fperms 755 /etc/init.d/spamd
insinto /etc/conf.d
newins ${FILESDIR}/spamd.conf spamd
}
pkg_postinst() {
perl-module_pkg_postinst
if [ -z "`best_version dev-perl/DB_File`" ]; then
einfo "The Bayes backend requires the Berkeley DB to store its data. You"
einfo "need to emerge dev-perl/DB_File to make it available."
fi
}
|