Gentoo Archives: gentoo-commits

From: "Tim Harder (radhermit)" <radhermit@g.o>
To: gentoo-commits@l.g.o
Subject: [gentoo-commits] gentoo-x86 commit in mail-client/cone: ChangeLog cone-0.85.20110124.ebuild
Date: Mon, 28 Feb 2011 02:38:45
Message-Id: 20110228023834.E979B20057@flycatcher.gentoo.org
1 radhermit 11/02/28 02:38:34
2
3 Modified: ChangeLog
4 Added: cone-0.85.20110124.ebuild
5 Log:
6 Version bump to the latest development release. Update to EAPI 4.
7
8 (Portage version: 2.2.0_alpha25/cvs/Linux x86_64)
9
10 Revision Changes Path
11 1.36 mail-client/cone/ChangeLog
12
13 file : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/mail-client/cone/ChangeLog?rev=1.36&view=markup
14 plain: http://sources.gentoo.org/viewvc.cgi/gentoo-x86/mail-client/cone/ChangeLog?rev=1.36&content-type=text/plain
15 diff : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/mail-client/cone/ChangeLog?r1=1.35&r2=1.36
16
17 Index: ChangeLog
18 ===================================================================
19 RCS file: /var/cvsroot/gentoo-x86/mail-client/cone/ChangeLog,v
20 retrieving revision 1.35
21 retrieving revision 1.36
22 diff -u -r1.35 -r1.36
23 --- ChangeLog 28 Feb 2011 01:24:53 -0000 1.35
24 +++ ChangeLog 28 Feb 2011 02:38:34 -0000 1.36
25 @@ -1,6 +1,12 @@
26 # ChangeLog for mail-client/cone
27 # Copyright 1999-2011 Gentoo Foundation; Distributed under the GPL v2
28 -# $Header: /var/cvsroot/gentoo-x86/mail-client/cone/ChangeLog,v 1.35 2011/02/28 01:24:53 radhermit Exp $
29 +# $Header: /var/cvsroot/gentoo-x86/mail-client/cone/ChangeLog,v 1.36 2011/02/28 02:38:34 radhermit Exp $
30 +
31 +*cone-0.85.20110124 (28 Feb 2011)
32 +
33 + 28 Feb 2011; Tim Harder <radhermit@g.o> +cone-0.85.20110124.ebuild,
34 + +files/cone-0.85.20110124-skip-rfc2045-test.patch:
35 + Version bump to the latest development release. Update to EAPI 4.
36
37 28 Feb 2011; Tim Harder <radhermit@g.o> -cone-0.79.ebuild,
38 -files/cone-0.79-gcc45.patch:
39
40
41
42 1.1 mail-client/cone/cone-0.85.20110124.ebuild
43
44 file : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/mail-client/cone/cone-0.85.20110124.ebuild?rev=1.1&view=markup
45 plain: http://sources.gentoo.org/viewvc.cgi/gentoo-x86/mail-client/cone/cone-0.85.20110124.ebuild?rev=1.1&content-type=text/plain
46
47 Index: cone-0.85.20110124.ebuild
48 ===================================================================
49 # Copyright 1999-2011 Gentoo Foundation
50 # Distributed under the terms of the GNU General Public License v2
51 # $Header: /var/cvsroot/gentoo-x86/mail-client/cone/cone-0.85.20110124.ebuild,v 1.1 2011/02/28 02:38:34 radhermit Exp $
52
53 EAPI=4
54
55 inherit eutils autotools
56
57 DESCRIPTION="CONE: COnsole News reader and Emailer"
58 HOMEPAGE="http://www.courier-mta.org/cone/"
59 SRC_URI="mirror://sourceforge/courier/${P}.tar.bz2"
60
61 LICENSE="GPL-3"
62 SLOT="0"
63 KEYWORDS="~amd64 ~ppc ~sparc ~x86"
64 IUSE="crypt fam gnutls idn ipv6 ldap spell"
65
66 RDEPEND=">=dev-libs/openssl-0.9.6
67 dev-libs/libxml2
68 sys-libs/ncurses
69 crypt? ( >=app-crypt/gnupg-1.0.4 )
70 fam? ( virtual/fam )
71 gnutls? ( net-libs/gnutls )
72 idn? ( net-dns/libidn )
73 ipv6? ( net-dns/libidn )
74 ldap? ( net-nds/openldap )
75 spell? ( virtual/aspell-dict )"
76 DEPEND="${RDEPEND}
77 dev-lang/perl"
78
79 src_prepare() {
80 epatch "${FILESDIR}"/${PN}-0.84.20100819-aspell-automagic.patch
81 epatch "${FILESDIR}"/${P}-skip-rfc2045-test.patch
82
83 cd "${S}"/cone
84 LIBTOOLIZE="true" eautoreconf
85
86 cd "${S}"/rfc2045
87 eautomake
88 }
89
90 src_configure() {
91 local myconf
92 if use spell ; then
93 myconf="--with-spellcheck=aspell"
94 else
95 myconf="--with-spellcheck=none"
96 fi
97
98 econf \
99 ${myconf} \
100 $(use_with ldap ldapaddressbook) \
101 $(use_with gnutls) \
102 $(use_with idn libidn) \
103 $(use_with ipv6)
104 }
105
106 src_install() {
107 default_src_install
108 emake DESTDIR="${D}" install-configure
109 }