blob: f896606a14e0bf5fa28d906c684852011d5e0eb3 (
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
|
# Copyright 1999-2004 Gentoo Foundation
# Distributed under the terms of the GNU General Public License v2
# $Header: /var/cvsroot/gentoo-x86/net-mail/cyrus-imap-admin/cyrus-imap-admin-2.2.8.ebuild,v 1.3 2004/10/13 21:28:14 langthang Exp $
inherit perl-module eutils gnuconfig
DESCRIPTION="Utilities and Perl modules to administer a Cyrus IMAP server."
HOMEPAGE="http://asg.web.cmu.edu/cyrus/imapd/"
SRC_URI="ftp://ftp.andrew.cmu.edu/pub/cyrus-mail/cyrus-imapd-${PV}.tar.gz"
LICENSE="as-is"
SLOT="0"
KEYWORDS="x86 ~amd64 ~sparc ~ppc"
IUSE="ssl kerberos"
RDEPEND=">=sys-libs/db-3.2
>=dev-lang/perl-5.6.1
>=dev-libs/cyrus-sasl-2.1.13
dev-perl/Term-ReadLine-Perl
dev-perl/TermReadKey
ssl? ( >=dev-libs/openssl-0.9.6 )
kerberos? ( virtual/krb5 )"
DEPEND="$RDEPEND
sys-devel/libtool
>=sys-devel/autoconf-2.58
sys-devel/automake
>=sys-apps/sed-4"
S="${WORKDIR}/cyrus-imapd-${PV}"
src_unpack() {
unpack ${A} && cd "${S}"
# DB4 detection and versioned symbols.
epatch "${FILESDIR}/cyrus-imapd-${PV}-db4.patch"
# Recreate configure.
export WANT_AUTOCONF="2.5"
gnuconfig_update || die "gnuconfig_update failed."
ebegin "Recreating configure"
rm -rf configure config.h.in autom4te.cache
sh SMakefile &>/dev/null || die "SMakefile failed"
eend $?
# When linking with rpm, you need to link with more libraries.
sed -e "s:lrpm:lrpm -lrpmio -lrpmdb:" -i configure || die "sed failed"
epatch ${FILESDIR}/${P}-fPIC.patch
}
src_compile() {
# gnuconfig_update
local myconf
myconf="${myconf} `use_with ssl openssl`"
myconf="${myconf} `use_with kerberos gssapi`"
econf \
--disable-server \
--enable-murder \
--enable-listext \
--enable-netscapehack \
--with-cyrus-group=mail \
--with-com_err=yes \
--with-auth=unix \
--with-perl=/usr/bin/perl \
--enable-cyradm \
${myconf} || die "econf failed"
emake -C "${S}/lib" all || die "compile problem"
emake -C "${S}/perl" all || die "compile problem"
}
src_install () {
make -C "${S}/perl" DESTDIR="${D}" install || die "install problem"
}
|