Gentoo Archives: gentoo-commits

From: "Eray Aslan (eras)" <eras@g.o>
To: gentoo-commits@l.g.o
Subject: [gentoo-commits] gentoo-x86 commit in dev-libs/cyrus-imap-dev: ChangeLog cyrus-imap-dev-2.4.13.ebuild
Date: Wed, 04 Jan 2012 08:29:23
Message-Id: 20120104082913.8ECFB2004B@flycatcher.gentoo.org
1 eras 12/01/04 08:29:13
2
3 Modified: ChangeLog
4 Added: cyrus-imap-dev-2.4.13.ebuild
5 Log:
6 version bump
7
8 (Portage version: 2.1.10.44/cvs/Linux x86_64)
9
10 Revision Changes Path
11 1.75 dev-libs/cyrus-imap-dev/ChangeLog
12
13 file : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-libs/cyrus-imap-dev/ChangeLog?rev=1.75&view=markup
14 plain: http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-libs/cyrus-imap-dev/ChangeLog?rev=1.75&content-type=text/plain
15 diff : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-libs/cyrus-imap-dev/ChangeLog?r1=1.74&r2=1.75
16
17 Index: ChangeLog
18 ===================================================================
19 RCS file: /var/cvsroot/gentoo-x86/dev-libs/cyrus-imap-dev/ChangeLog,v
20 retrieving revision 1.74
21 retrieving revision 1.75
22 diff -u -r1.74 -r1.75
23 --- ChangeLog 18 Dec 2011 18:00:50 -0000 1.74
24 +++ ChangeLog 4 Jan 2012 08:29:13 -0000 1.75
25 @@ -1,6 +1,11 @@
26 # ChangeLog for dev-libs/cyrus-imap-dev
27 -# Copyright 1999-2011 Gentoo Foundation; Distributed under the GPL v2
28 -# $Header: /var/cvsroot/gentoo-x86/dev-libs/cyrus-imap-dev/ChangeLog,v 1.74 2011/12/18 18:00:50 armin76 Exp $
29 +# Copyright 1999-2012 Gentoo Foundation; Distributed under the GPL v2
30 +# $Header: /var/cvsroot/gentoo-x86/dev-libs/cyrus-imap-dev/ChangeLog,v 1.75 2012/01/04 08:29:13 eras Exp $
31 +
32 +*cyrus-imap-dev-2.4.13 (04 Jan 2012)
33 +
34 + 04 Jan 2012; Eray Aslan <eras@g.o> +cyrus-imap-dev-2.4.13.ebuild:
35 + version bump
36
37 18 Dec 2011; Raúl Porcel <armin76@g.o> cyrus-imap-dev-2.4.12.ebuild:
38 sparc stable wrt #388341
39
40
41
42 1.1 dev-libs/cyrus-imap-dev/cyrus-imap-dev-2.4.13.ebuild
43
44 file : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-libs/cyrus-imap-dev/cyrus-imap-dev-2.4.13.ebuild?rev=1.1&view=markup
45 plain: http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-libs/cyrus-imap-dev/cyrus-imap-dev-2.4.13.ebuild?rev=1.1&content-type=text/plain
46
47 Index: cyrus-imap-dev-2.4.13.ebuild
48 ===================================================================
49 # Copyright 1999-2012 Gentoo Foundation
50 # Distributed under the terms of the GNU General Public License v2
51 # $Header: /var/cvsroot/gentoo-x86/dev-libs/cyrus-imap-dev/cyrus-imap-dev-2.4.13.ebuild,v 1.1 2012/01/04 08:29:13 eras Exp $
52
53 EAPI=4
54 inherit eutils db-use multilib
55
56 MY_PV="${PV/_/}"
57
58 DESCRIPTION="Developer support for the Cyrus IMAP Server."
59 HOMEPAGE="http://www.cyrusimap.org/"
60 SRC_URI="ftp://ftp.cyrusimap.org/cyrus-imapd/cyrus-imapd-${MY_PV}.tar.gz"
61
62 LICENSE="as-is"
63 SLOT="0"
64 KEYWORDS="~amd64 ~ppc ~ppc64 ~sparc ~x86"
65 IUSE="afs berkdb kerberos snmp ssl tcpd"
66
67 RDEPEND=">=dev-libs/cyrus-sasl-2.1.13
68 afs? ( net-fs/openafs )
69 berkdb? ( >=sys-libs/db-3.2 )
70 kerberos? ( virtual/krb5 )
71 snmp? ( net-analyzer/net-snmp )
72 ssl? ( >=dev-libs/openssl-0.9.6 )
73 tcpd? ( >=sys-apps/tcp-wrappers-7.6 )
74 !net-mail/cyrus-imapd"
75
76 DEPEND="${RDEPEND}"
77
78 S="${WORKDIR}/cyrus-imapd-${MY_PV}"
79
80 src_configure() {
81 local myconf
82 if use afs ; then
83 myconf=" --with-afs-libdir=/usr/$(get_libdir)"
84 myconf+=" --with-afs-incdir=/usr/include/afs"
85 fi
86 if use berkdb ; then
87 myconf+="--with-bdb-incdir=$(db_includedir)"
88 fi
89
90 econf \
91 --enable-murder \
92 --enable-netscapehack \
93 --enable-idled \
94 --with-cyrus-group=mail \
95 --with-com_err=yes \
96 --without-perl \
97 --without-krb \
98 --without-krbdes \
99 $(use_enable afs) \
100 $(use_enable afs krb5afspts) \
101 $(use_with berkdb bdb) \
102 $(use_with ssl openssl) \
103 $(use_with snmp) \
104 $(use_with tcpd libwrap) \
105 $(use_enable kerberos gssapi) \
106 ${myconf}
107 }
108
109 src_compile() {
110 emake -C "${S}/lib" all
111 }
112
113 src_install() {
114 dodir /usr/include/cyrus
115
116 emake -C "${S}/lib" DESTDIR="${D}" install
117 dodoc README*
118 }