forked from gentoo/gentoo
-
Notifications
You must be signed in to change notification settings - Fork 0
/
cyrus-imap-dev-2.4.16.ebuild
70 lines (58 loc) · 1.5 KB
/
cyrus-imap-dev-2.4.16.ebuild
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
# Copyright 1999-2014 Gentoo Foundation
# Distributed under the terms of the GNU General Public License v2
# $Id$
EAPI=4
inherit eutils db-use multilib
MY_PV="${PV/_/}"
DESCRIPTION="Developer support for the Cyrus IMAP Server"
HOMEPAGE="http://www.cyrusimap.org/"
SRC_URI="ftp://ftp.cyrusimap.org/cyrus-imapd/cyrus-imapd-${MY_PV}.tar.gz"
LICENSE="BSD-with-attribution"
SLOT="0"
KEYWORDS="amd64 ppc ppc64 x86"
IUSE="afs berkdb kerberos snmp ssl tcpd"
RDEPEND=">=dev-libs/cyrus-sasl-2.1.13
afs? ( net-fs/openafs )
berkdb? ( >=sys-libs/db-3.2 )
kerberos? ( virtual/krb5 )
snmp? ( net-analyzer/net-snmp )
ssl? ( >=dev-libs/openssl-0.9.6 )
tcpd? ( >=sys-apps/tcp-wrappers-7.6 )
!net-mail/cyrus-imapd"
DEPEND="${RDEPEND}"
S="${WORKDIR}/cyrus-imapd-${MY_PV}"
src_configure() {
local myconf
if use afs ; then
myconf=" --with-afs-libdir=/usr/$(get_libdir)"
myconf+=" --with-afs-incdir=/usr/include/afs"
fi
if use berkdb ; then
myconf+="--with-bdb-incdir=$(db_includedir)"
fi
econf \
--enable-murder \
--enable-netscapehack \
--enable-idled \
--with-cyrus-group=mail \
--with-com_err=yes \
--without-perl \
--without-krb \
--without-krbdes \
$(use_enable afs) \
$(use_enable afs krb5afspts) \
$(use_with berkdb bdb) \
$(use_with ssl openssl) \
$(use_with snmp) \
$(use_with tcpd libwrap) \
$(use_enable kerberos gssapi) \
${myconf}
}
src_compile() {
emake -C "${S}/lib" all
}
src_install() {
dodir /usr/include/cyrus
emake -C "${S}/lib" DESTDIR="${D}" install
dodoc README*
}