Gentoo Archives: gentoo-commits

From: "Tobias Scherbaum (dertobi123)" <dertobi123@g.o>
To: gentoo-commits@l.g.o
Subject: [gentoo-commits] gentoo-x86 commit in net-mail/cyrus-imap-admin: ChangeLog cyrus-imap-admin-2.3.11.ebuild cyrus-imap-admin-2.2.12-r1.ebuild
Date: Wed, 02 Jan 2008 18:43:15
Message-Id: E1JA8YV-0007jA-VH@stork.gentoo.org
1 dertobi123 08/01/02 18:43:07
2
3 Modified: ChangeLog
4 Added: cyrus-imap-admin-2.3.11.ebuild
5 Removed: cyrus-imap-admin-2.2.12-r1.ebuild
6 Log:
7 Version bump, bug #201952
8 (Portage version: 2.1.4_rc14)
9
10 Revision Changes Path
11 1.62 net-mail/cyrus-imap-admin/ChangeLog
12
13 file : http://sources.gentoo.org/viewcvs.py/gentoo-x86/net-mail/cyrus-imap-admin/ChangeLog?rev=1.62&view=markup
14 plain: http://sources.gentoo.org/viewcvs.py/gentoo-x86/net-mail/cyrus-imap-admin/ChangeLog?rev=1.62&content-type=text/plain
15 diff : http://sources.gentoo.org/viewcvs.py/gentoo-x86/net-mail/cyrus-imap-admin/ChangeLog?r1=1.61&r2=1.62
16
17 Index: ChangeLog
18 ===================================================================
19 RCS file: /var/cvsroot/gentoo-x86/net-mail/cyrus-imap-admin/ChangeLog,v
20 retrieving revision 1.61
21 retrieving revision 1.62
22 diff -u -r1.61 -r1.62
23 --- ChangeLog 1 Oct 2007 19:01:36 -0000 1.61
24 +++ ChangeLog 2 Jan 2008 18:43:07 -0000 1.62
25 @@ -1,6 +1,12 @@
26 # ChangeLog for net-mail/cyrus-imap-admin
27 -# Copyright 2002-2007 Gentoo Foundation; Distributed under the GPL v2
28 -# $Header: /var/cvsroot/gentoo-x86/net-mail/cyrus-imap-admin/ChangeLog,v 1.61 2007/10/01 19:01:36 philantrop Exp $
29 +# Copyright 2002-2008 Gentoo Foundation; Distributed under the GPL v2
30 +# $Header: /var/cvsroot/gentoo-x86/net-mail/cyrus-imap-admin/ChangeLog,v 1.62 2008/01/02 18:43:07 dertobi123 Exp $
31 +
32 +*cyrus-imap-admin-2.3.11 (02 Jan 2008)
33 +
34 + 02 Jan 2008; Tobias Scherbaum <dertobi123@g.o>
35 + -cyrus-imap-admin-2.2.12-r1.ebuild, +cyrus-imap-admin-2.3.11.ebuild:
36 + Version bump, bug #201952
37
38 01 Oct 2007; Wulf C. Krueger <philantrop@g.o>
39 cyrus-imap-admin-2.2.13.ebuild:
40
41
42
43 1.1 net-mail/cyrus-imap-admin/cyrus-imap-admin-2.3.11.ebuild
44
45 file : http://sources.gentoo.org/viewcvs.py/gentoo-x86/net-mail/cyrus-imap-admin/cyrus-imap-admin-2.3.11.ebuild?rev=1.1&view=markup
46 plain: http://sources.gentoo.org/viewcvs.py/gentoo-x86/net-mail/cyrus-imap-admin/cyrus-imap-admin-2.3.11.ebuild?rev=1.1&content-type=text/plain
47
48 Index: cyrus-imap-admin-2.3.11.ebuild
49 ===================================================================
50 # Copyright 1999-2008 Gentoo Foundation
51 # Distributed under the terms of the GNU General Public License v2
52 # $Header: /var/cvsroot/gentoo-x86/net-mail/cyrus-imap-admin/cyrus-imap-admin-2.3.11.ebuild,v 1.1 2008/01/02 18:43:07 dertobi123 Exp $
53
54 inherit autotools perl-app eutils
55
56 PIC_PATCH_VER="2.2"
57 DESCRIPTION="Utilities and Perl modules to administer a 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-${PV}.tar.gz"
60
61 LICENSE="as-is"
62 SLOT="0"
63 KEYWORDS="~x86 ~amd64 ~sparc ~ppc ~hppa ~ppc64"
64 IUSE="ssl kerberos"
65
66 RDEPEND=">=sys-libs/db-3.2
67 >=dev-lang/perl-5.6.1
68 >=dev-libs/cyrus-sasl-2.1.13
69 dev-perl/Term-ReadLine-Perl
70 dev-perl/TermReadKey
71 ssl? ( >=dev-libs/openssl-0.9.6 )
72 kerberos? ( virtual/krb5 )"
73
74 DEPEND="$RDEPEND
75 sys-devel/libtool
76 >=sys-devel/autoconf-2.58
77 sys-devel/automake
78 >=sys-apps/sed-4"
79
80 S="${WORKDIR}/cyrus-imapd-${PV}"
81
82 src_unpack() {
83 unpack ${A} && cd "${S}"
84
85 # Versioned symbols.
86 epatch "${FILESDIR}/${PN}-${PIC_PATCH_VER}-fPIC.patch"
87
88 # Recreate configure.
89 WANT_AUTOCONF="2.5"
90 eautoreconf
91
92 # When linking with rpm, you need to link with more libraries.
93 sed -e "s:lrpm:lrpm -lrpmio -lrpmdb:" -i configure || die "sed failed"
94
95 }
96
97 src_compile() {
98
99 local myconf
100 myconf="${myconf} `use_with ssl openssl`"
101 myconf="${myconf} `use_with kerberos gssapi`"
102
103 econf \
104 --disable-server \
105 --enable-murder \
106 --enable-listext \
107 --enable-netscapehack \
108 --with-cyrus-group=mail \
109 --with-com_err=yes \
110 --with-auth=unix \
111 --with-perl=/usr/bin/perl \
112 --enable-cyradm \
113 ${myconf} || die "econf failed"
114
115 emake -C "${S}/lib" all || die "compile problem"
116 emake -C "${S}/perl" all || die "compile problem"
117 }
118
119 src_install () {
120 make -C "${S}/perl" DESTDIR="${D}" install || die "install problem"
121 fixlocalpod # bug #98122
122 }
123
124
125
126 --
127 gentoo-commits@g.o mailing list