blob: 8415f2ff725f9a2c4c2b9c41967d91fa7314007e (
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
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
|
# Copyright 1999-2002 Gentoo Technologies, Inc.
# Distributed under the terms of the GNU General Public License v2
# $Header: /var/cvsroot/gentoo-x86/net-mail/amavis/amavis-0.3.12_pre8.ebuild,v 1.5 2002/11/29 19:52:25 raker Exp $
DESCRIPTION="A perl module which integrates virus scanning software with your MTA"
HOMEPAGE="http://www.amavis.org"
SRC_URI="mirror://sourceforge/amavis/${P/_/}.tar.gz"
LICENSE="GPL-2"
SLOT="0"
KEYWORDS="x86"
IUSE=""
DEPEND="sys-devel/perl
sys-apps/file
app-arch/arc
sys-apps/bzip2
app-arch/lha
app-arch/unarj
sys-apps/sharutils
app-arch/unrar
app-arch/zoo
dev-perl/IO-stringy
dev-perl/Unix-Syslog
dev-perl/MailTools
dev-perl/MIME-Base64
>=dev-perl/MIME-tools-5.313
>dev-perl/Convert-UUlib-0.2
>=dev-perl/Convert-TNEF-0.06
>=dev-perl/Compress-Zlib-1.14
dev-perl/Archive-Tar
>=dev-perl/Archive-Zip-1.0
dev-perl/libnet
virtual/mta
virtual/mda"
S="${WORKDIR}/${P/_/}"
pkg_setup() {
if ! grep -q ^amavis: /etc/group ; then
groupadd -g 10025 amavis \
|| die "problem adding the amavis group"
grpconv || die "failed running grpconv"
fi
if ! grep -q ^amavis: /etc/passwd ; then
useradd -u 10025 -g amavis amavis \
|| die "problem adding the amavis user"
pwconv || die "failed running pwconv"
fi
if ! grep -a ^virusalert: /etc/mail/aliases ; then
cp /etc/mail/aliases /etc/mail/aliases.orig
echo >> /etc/mail/aliases
echo "# user that virus messages are forwarded to" \
>> /etc/mail/aliases
echo "virusalert: root" >> /etc/mail/aliases
newaliases || die "check your /etc/mail/aliases for problems"
fi
}
mymta=`grep "^virtual/mta net-mail\/\(exim\|postfix\|qmail\)" /var/cache/edb/virtuals | awk -F/ '{print $3}'`
src_unpack() {
unpack ${A}
cd ${S}
if [ "$mymta" == "postfix" ]; then
patch -p1 < ${FILESDIR}/0.3.12-postfix.diff || die "patch failed"
fi
}
src_compile() {
local myconf
if [ "$mymta" == "postfix" ]; then
myconf="--enable-postfix"
elif [ "$mymta" == "qmail" ]; then
myconf="--enable-qmail"
elif [ "$mymta" == "exim" ]; then
myconf="--enable-exim"
elif [ "$mymta" == "sendmail" ]; then
myconf="--enable-sendmail"
fi
# The quarantine directory for infected emails
myconf="${myconf} --with-virusdir=/var/amavis/quarantine"
econf ${myconf} || die "configure failed"
make || die "make failed"
}
src_install() {
dodir /var/amavis/quarantine
if [ "$mymta" == "qmail" ]; then
chown -R qmailq:qmail ${D}/var/amavis
else
chown -R amavis:amavis ${D}/var/amavis
fi
chmod -R 770 ${D}/var/amavis
keepdir /var/amavis /var/amavis/quarantine
einstall \
logdir=${D}/var/amavis \
runtime_dir=${D}/var/amavis \
virusdir=${D}/var/amavis/quarantine \
|| die "make install failed"
dodoc AUTHORS BUGS ChangeLog FAQ HINTS INSTALL NEWS README* TODO
}
pkg_postinst() {
einfo ""
einfo "For amavis to work properly with your $mymta installation"
einfo "there are some configuration changes required"
einfo ""
einfo "less /usr/share/doc/amavis-0.3.12_pre8/README.$mymta.gz"
einfo ""
}
|