blob: eda59409c26395c947e08d3091e06eeded07d534 (
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
|
# Copyright 1999-2004 Gentoo Foundation
# Distributed under the terms of the GNU General Public License v2
# $Header: /var/cvsroot/gentoo-x86/dev-libs/cyrus-imap-dev/cyrus-imap-dev-2.1.14.ebuild,v 1.10 2004/06/24 23:04:02 agriffis Exp $
inherit eutils
IPV6_P="cyrus-imapd-2.1.14-ipv6-20030703"
IUSE="afs snmp ssl kerberos ipv6"
DESCRIPTION="Developer support for the Cyrus IMAP Server"
HOMEPAGE="http://asg.web.cmu.edu/cyrus/imapd/"
SRC_URI="ftp://ftp.andrew.cmu.edu/pub/cyrus-mail/OLD-VERSIONS/imap/cyrus-imapd-${PV}.tar.gz
ipv6? ( http://www.imasy.or.jp/~ume/ipv6/${IPV6_P}.diff.gz )"
LICENSE="as-is"
SLOT="0"
KEYWORDS="x86 -ppc -sparc"
DEPEND="virtual/glibc
afs? ( >=net-fs/openafs-1.2.2 )
snmp? ( >=net-analyzer/ucd-snmp-4.2.3 )
ssl? ( >=dev-libs/openssl-0.9.6 )
kerberos? ( >=app-crypt/mit-krb5-1.2.6 )
>=sys-libs/db-3.2
>=sys-libs/pam-0.75
>=dev-libs/cyrus-sasl-2.1.12
>=sys-apps/tcp-wrappers-7.6"
S=${WORKDIR}/cyrus-imapd-${PV}
src_unpack() {
unpack ${A}
cd ${S}
# patch for db4 detection and their respective versioned symbols
epatch ${FILESDIR}/2.1.14-db4.patch
# add libwrap defines as we don't have a dynamicly linked library.
epatch ${FILESDIR}/cyrus-imap-dev-2.1.12-libwrap.patch
# Does running autoconf squash any of this?
use ipv6 && epatch ${WORKDIR}/${IPV6_P}.diff
libtoolize --copy --force
aclocal -I cmulocal || die
autoheader || die
autoconf || die
# remove spurious -I/usr/includes which make configure tests fail
epatch ${FILESDIR}/cyrus-imapd-2.1.12-includepath.patch
# when linking with rpm, you need to link with more libraries.
cp configure configure.orig
sed -e "s:lrpm:lrpm -lrpmio -lrpmdb:" \
< configure.orig > configure
}
src_compile() {
local myconf
use afs && myconf="--with-afs" \
|| myconf="--without-afs"
use snmp && myconf="${myconf} --with-ucdsnmp=/usr" \
|| myconf="${myconf} --without-ucdsnmp"
use ssl && myconf="${myconf} --with-openssl=/usr" \
|| myconf="${myconf} --without-openssl"
# Kerberos IV is not working in cyrus-sasl so it's not enabled here. Only Kerberos V.
#use kerberos && myconf="${myconf} --with-krb=/usr/athena --with-auth=krb --enable-gssapi" \
# || myconf="${myconf} --without-krb --with-auth=unix --disable-gssapi"
use kerberos && myconf="${myconf} --with-auth=krb --enable-gssapi" \
|| myconf="${myconf} --without-krb --with-auth=unix --disable-gssapi"
econf \
--enable-listext \
--with-cyrus-group=mail \
--enable-netscapehack \
--with-com_err=yes \
--without-perl \
--disable-cyradm \
--with-libwrap=/usr \
${myconf} || die "econf failed"
# make depends break with -f... in CFLAGS
make depend CFLAGS="" || die "make depend problem"
cd ${S}/lib
make || die "compile problem"
cd ${S}/acap
make || die "compile problem"
}
src_install() {
dodoc COPYRIGHT README*
cd ${S}/lib
dodir /usr/include/cyrus
emake DESTDIR=${D} install || die "compile problem"
cd ${S}/acap
emake DESTDIR=${D} install || die "compile problem"
}
|