Gentoo Archives: gentoo-commits

From: "Tobias Scherbaum (dertobi123)" <dertobi123@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.3.11.ebuild cyrus-imap-dev-2.2.12.ebuild cyrus-imap-dev-2.2.10.ebuild
Date: Wed, 02 Jan 2008 18:48:39
Message-Id: E1JA8dG-0007ot-W5@stork.gentoo.org
1 dertobi123 08/01/02 18:48:02
2
3 Modified: ChangeLog
4 Added: cyrus-imap-dev-2.3.11.ebuild
5 Removed: cyrus-imap-dev-2.2.12.ebuild
6 cyrus-imap-dev-2.2.10.ebuild
7 Log:
8 Version bump, bug #201952
9 (Portage version: 2.1.4_rc14)
10
11 Revision Changes Path
12 1.42 dev-libs/cyrus-imap-dev/ChangeLog
13
14 file : http://sources.gentoo.org/viewcvs.py/gentoo-x86/dev-libs/cyrus-imap-dev/ChangeLog?rev=1.42&view=markup
15 plain: http://sources.gentoo.org/viewcvs.py/gentoo-x86/dev-libs/cyrus-imap-dev/ChangeLog?rev=1.42&content-type=text/plain
16 diff : http://sources.gentoo.org/viewcvs.py/gentoo-x86/dev-libs/cyrus-imap-dev/ChangeLog?r1=1.41&r2=1.42
17
18 Index: ChangeLog
19 ===================================================================
20 RCS file: /var/cvsroot/gentoo-x86/dev-libs/cyrus-imap-dev/ChangeLog,v
21 retrieving revision 1.41
22 retrieving revision 1.42
23 diff -u -r1.41 -r1.42
24 --- ChangeLog 16 Nov 2007 15:17:59 -0000 1.41
25 +++ ChangeLog 2 Jan 2008 18:48:02 -0000 1.42
26 @@ -1,6 +1,13 @@
27 # ChangeLog for dev-libs/cyrus-imap-dev
28 -# Copyright 2002-2007 Gentoo Foundation; Distributed under the GPL v2
29 -# $Header: /var/cvsroot/gentoo-x86/dev-libs/cyrus-imap-dev/ChangeLog,v 1.41 2007/11/16 15:17:59 beandog Exp $
30 +# Copyright 2002-2008 Gentoo Foundation; Distributed under the GPL v2
31 +# $Header: /var/cvsroot/gentoo-x86/dev-libs/cyrus-imap-dev/ChangeLog,v 1.42 2008/01/02 18:48:02 dertobi123 Exp $
32 +
33 +*cyrus-imap-dev-2.3.11 (02 Jan 2008)
34 +
35 + 02 Jan 2008; Tobias Scherbaum <dertobi123@g.o>
36 + -files/2.2.10-imapopts.h.patch, -cyrus-imap-dev-2.2.10.ebuild,
37 + -cyrus-imap-dev-2.2.12.ebuild, +cyrus-imap-dev-2.3.11.ebuild:
38 + Version bump, bug #201952
39
40 16 Nov 2007; Steve Dibb <beandog@g.o> cyrus-imap-dev-2.2.13.ebuild:
41 amd64 stable, bug 194797
42
43
44
45 1.1 dev-libs/cyrus-imap-dev/cyrus-imap-dev-2.3.11.ebuild
46
47 file : http://sources.gentoo.org/viewcvs.py/gentoo-x86/dev-libs/cyrus-imap-dev/cyrus-imap-dev-2.3.11.ebuild?rev=1.1&view=markup
48 plain: http://sources.gentoo.org/viewcvs.py/gentoo-x86/dev-libs/cyrus-imap-dev/cyrus-imap-dev-2.3.11.ebuild?rev=1.1&content-type=text/plain
49
50 Index: cyrus-imap-dev-2.3.11.ebuild
51 ===================================================================
52 # Copyright 1999-2008 Gentoo Foundation
53 # Distributed under the terms of the GNU General Public License v2
54 # $Header: /var/cvsroot/gentoo-x86/dev-libs/cyrus-imap-dev/cyrus-imap-dev-2.3.11.ebuild,v 1.1 2008/01/02 18:48:02 dertobi123 Exp $
55
56 inherit eutils autotools
57
58 DESCRIPTION="Developer support for the Cyrus IMAP Server."
59 HOMEPAGE="http://asg.web.cmu.edu/cyrus/imapd/"
60 SRC_URI="ftp://ftp.andrew.cmu.edu/pub/cyrus-mail/cyrus-imapd-${PV}.tar.gz"
61
62 LICENSE="as-is"
63 SLOT="0"
64 KEYWORDS="~x86 ~amd64 ~ppc ~sparc ~ppc64"
65 IUSE="afs kerberos snmp ssl tcpd"
66
67 RDEPEND="virtual/libc
68 >=sys-libs/db-3.2
69 >=dev-libs/cyrus-sasl-2.1.12
70 afs? ( >=net-fs/openafs-1.2.2 )
71 kerberos? ( >=app-crypt/mit-krb5-1.2.6 )
72 snmp? ( net-analyzer/net-snmp )
73 ssl? ( >=dev-libs/openssl-0.9.6 )
74 tcpd? ( >=sys-apps/tcp-wrappers-7.6 )"
75
76 DEPEND="${RDEPEND}
77 sys-devel/libtool
78 >=sys-devel/autoconf-2.58
79 sys-devel/automake
80 >=sys-apps/sed-4"
81
82 S="${WORKDIR}/cyrus-imapd-${PV}"
83
84 src_unpack() {
85 unpack ${A} && cd "${S}"
86
87 # Add libwrap defines as we don't have a dynamicly linked library.
88 if use tcpd ; then
89 epatch "${FILESDIR}/cyrus-imapd-libwrap.patch" || die "patch failed"
90 fi
91
92 # DB4 detection and versioned symbols.
93 #epatch "${FILESDIR}/cyrus-imapd-${PV}-db4.patch" || die "patch failed."
94
95 # Recreate configure.
96 export WANT_AUTOCONF="2.5"
97 eautoreconf
98
99 # When linking with rpm, you need to link with more libraries.
100 sed -e "s:lrpm:lrpm -lrpmio -lrpmdb:" -i configure || die "sed failed"
101 }
102
103 src_compile() {
104 local myconf
105 myconf="${myconf} `use_with afs`"
106 myconf="${myconf} `use_with ssl openssl`"
107 myconf="${myconf} `use_with snmp ucdsnmp`"
108 myconf="${myconf} `use_with tcpd libwrap`"
109 myconf="${myconf} `use_enable kerberos gssapi`"
110
111 econf \
112 --enable-murder \
113 --enable-listext \
114 --enable-netscapehack \
115 --with-cyrus-group=mail \
116 --with-com_err=yes \
117 --with-auth=unix \
118 --without-perl \
119 --disable-cyradm \
120 ${myconf} || die "econf failed"
121
122 emake -C "${S}/lib" all || die "compile problem"
123 }
124
125 src_install() {
126 dodir /usr/include/cyrus
127
128 make -C "${S}/lib" DESTDIR="${D}" install || die "make install failed"
129 dodoc COPYRIGHT README*
130 }
131
132
133
134 --
135 gentoo-commits@g.o mailing list