blob: 00e0332d395be8ab933018f338fba9b90349d4cf (
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
|
# Copyright 1999-2004 Gentoo Technologies, Inc.
# Distributed under the terms of the GNU General Public License v2
# $Header: /var/cvsroot/gentoo-x86/net-mail/maildrop/maildrop-1.5.3.ebuild,v 1.3 2004/05/15 18:42:56 kugelfang Exp $
IUSE="mysql ldap gdbm berkdb"
inherit flag-o-matic
filter-flags -funroll-loops
filter-flags -fomit-frame-pointer
S=${WORKDIR}/${P}
DESCRIPTION="Mail delivery agent/filter"
HOMEPAGE="http://www.flounder.net/~mrsam/maildrop/index.html"
SRC_URI="mirror://sourceforge/courier/${P}.tar.bz2"
SLOT="0"
LICENSE="GPL-2"
KEYWORDS="x86 ~sparc"
DEPEND="dev-lang/perl
virtual/mta
berkdb? ( >=sys-libs/db-3.2 )
gdbm? ( >=sys-libs/gdbm-1.8.0 )
mysql? ( >=dev-db/mysql-3.23.51 )
ldap? ( >=net-nds/openldap-2.0.23 )"
PROVIDE="virtual/mda"
src_compile() {
local myconf
use mysql \
&& myconf="${myconf} --enable-maildropmysql \
--with-mysqlconfig=/etc/maildrop/maildropmysql.cf" \
|| myconf="${myconf} --disable-maildropmysql"
use ldap \
&& myconf="${myconf} --enable-maildropldap \
--with-ldapconfig=/etc/maildrop/maildropldap.cf" \
|| myconf="${myconf} --disable-maildropldap"
if use berkdb; then
myconf="${myconf} --with-db=db"
elif use gdbm; then
myconf="${myconf} --with-db=gdbm"
fi
econf \
--with-devel \
--enable-userdb \
--disable-tempdir \
--enable-syslog=1 \
--enable-use-flock=1 \
--enable-maildirquota \
--enable-use-dotlock=1 \
--enable-restrict-trusted=1 \
--enable-trusted-users='root mail daemon postmaster qmaild mmdf vmail' \
--with-default-maildrop=./.maildir/ \
--enable-sendmail=/usr/sbin/sendmail \
${myconf} || die
emake || die "compile problem"
}
src_install() {
local i
make DESTDIR=${D} install || die
dodoc AUTHORS COPYING ChangeLog INSTALL NEWS README \
README.postfix UPGRADE maildroptips.txt
mv ${D}/usr/share/maildrop/html ${D}/usr/share/doc/${PF}
dohtml {INSTALL,README,UPGRADE}.html
# this just cleans up /usr/share/maildrop a little bit..
for i in makedat makeuserdb pw2userdb userdb userdbpw vchkpw2userdb
do
rm -f ${D}/usr/bin/$i
mv -f ${D}/usr/share/maildrop/scripts/$i \
${D}/usr/share/maildrop
dosym /usr/share/maildrop/$i /usr/bin/$i
done
rm -rf ${D}/usr/share/maildrop/scripts
insinto /etc
doins ${FILESDIR}/maildroprc
insinto /etc/maildrop
if [ -n "`use mysql`" ]
then
sed -e "s:/var/lib/mysql/mysql.sock:/var/run/mysqld/mysqld.sock:" \
${S}/maildropmysql.config > ${S}/maildropmysql.cf
newins ${S}/maildropmysql.cf maildropmysql.cf
fi
use ldap && newins ${S}/maildropldap.config maildropldap.cf
}
|