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