blob: 1a8182329aeaf1ed840ec03d21c2c4dabc023818 (
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
|
# Copyright 1999-2002 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.0-r1.ebuild,v 1.2 2002/11/11 12:54:29 nitro Exp $
IUSE="mysql ldap"
S=${WORKDIR}/${P}
DESCRIPTION="Mail delivery agent/filter"
SRC_URI="mirror://sourceforge/courier/${P}.tar.bz2"
HOMEPAGE="http://www.flounder.net/~mrsam/maildrop/index.html"
DEPEND=">=sys-libs/gdbm-1.8.0
sys-devel/perl
virtual/mta
mysql? ( >=dev-db/mysql-3.23.51 )
ldap? ( >=net-nds/openldap-2.0.23 )"
PROVIDE="virtual/mda"
SLOT="0"
LICENSE="GPL-2"
KEYWORDS="~x86 ~sparc ~sparc64"
# FYI: There appears to be a problem with maildrop when compiled with gcc-3.2.
# I've tested (and am using) mysql support. I haven't tested ldap yet.
# - Kyle <nitro@gentoo.org>
src_compile() {
# These next two lines are a MUST! If tries to unroll the loops in
# CFLAGS or CXXFLAGS maildrop will not compile :-( <lamer@gentoo.org>
export CFLAGS="${CFLAGS/-funroll-loops/}"
export CXXFLAGS="${CXXFLAGS/-funroll-loops/}"
use mysql && myconf="--enable-maildropmysql --with-mysqlconfig=/etc/maildrop/maildropmysql.cf"
#use ldap && myconf="--enable-maildropldap --with-ldapconfig=/etc/maildrop/maildropldap.cf"
./configure \
--host=${CHOST} \
--prefix=/usr \
--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' \
--mandir=/usr/share/man \
--with-etcdir=/etc \
--with-default-maildrop=./.maildir/ \
--enable-sendmail=/usr/sbin/sendmail \
${myconf} || die "bad ./configure"
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/maildrop
doins ${FILESDIR}/maildroprc
if [ -n "`use mysql`" ]
then
cp ${S}/maildropmysql.config ${S}/maildropmysql.cf
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
}
|