blob: 41b4a12bcb4c584f4c986e4565e320113b9968d5 (
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
|
# Copyright 1999-2007 Gentoo Foundation
# Distributed under the terms of the GNU General Public License v2
# $Header: /var/cvsroot/gentoo-x86/net-mail/cyrus-imspd/cyrus-imspd-1.8.ebuild,v 1.2 2007/01/05 07:11:30 flameeyes Exp $
inherit eutils ssl-cert
DESCRIPTION="Internet Message Support Protocol (IMSP) server."
HOMEPAGE="http://asg.web.cmu.edu/cyrus/"
SRC_URI="ftp://ftp.andrew.cmu.edu/pub/cyrus-mail/${PN}-v${PV}.tar.gz"
LICENSE="as-is"
SLOT="0"
KEYWORDS="~x86"
IUSE="kerberos ldap ssl"
RDEPEND=">=sys-libs/db-3.2
>=dev-libs/cyrus-sasl-2.1.3
>=dev-libs/cyrus-imap-dev-2.1.14
kerberos? ( virtual/krb5 )
ldap? ( >=net-nds/openldap-2.0 )
ssl? ( >=net-misc/stunnel-4 )"
DEPEND="${RDEPEND}
>=sys-devel/autoconf-2.58
sys-devel/automake
sys-devel/libtool"
S="${WORKDIR}/${PN}-v${PV}"
src_unpack() {
unpack ${A} && cd "${S}"
epatch "${FILESDIR}/${P}-gentoo.patch"
# Cyrus 2.2.x has an extra library.
if [ "`best_version '=dev-libs/cyrus-imap-dev-2.2*'`" ] ; then
sed -i -e "s:-lcyrus:-lcyrus -lcyrus_min:" \
"${S}/imsp/Makefile.in" \
"${S}/cmulocal/libcyrus.m4" || die "sed failed"
fi
}
src_compile() {
econf \
$(use_with ldap) \
$(use_enable kerberos gssapi) \
--without-krb \
--with-auth=unix || \
die "econf failed"
# Fix some malloc definitions
sed -i -e \
's~extern char \*malloc()~extern void *malloc()~g' imsp/*.c
emake || die "compile problem"
}
src_install() {
newsbin imsp/cyrus-imspd imspd
newinitd "${FILESDIR}/imspd.rc6" imspd
newconfd "${FILESDIR}/imspd.conf" imspd
keepdir /var/imsp{,/user}
if use ssl ; then
insinto /etc/stunnel
newins "${FILESDIR}/stunnel.conf" imspd.conf
dosed "s:#IMSPD_USE_SSL:IMSPD_USE_SSL:" /etc/conf.d/imspd
SSL_ORGANIZATION="${SSL_ORGANIZATION:-Cyrus IMSP Server}"
insinto /etc/ssl/imspd
docert server
fi
dodoc README imsp/options.sample notes/*
}
|