Gentoo Archives: gentoo-commits

From: "Akinori Hattori (hattya)" <hattya@g.o>
To: gentoo-commits@l.g.o
Subject: [gentoo-commits] gentoo-x86 commit in mail-client/sylpheed: ChangeLog sylpheed-3.1.0.ebuild
Date: Fri, 04 Feb 2011 14:06:11
Message-Id: 20110204140601.9E70020054@flycatcher.gentoo.org
1 hattya 11/02/04 14:06:01
2
3 Modified: ChangeLog
4 Added: sylpheed-3.1.0.ebuild
5 Log:
6 new upstream release. fixes bug #353427.
7
8 (Portage version: 2.1.9.25/cvs/Linux i686)
9
10 Revision Changes Path
11 1.287 mail-client/sylpheed/ChangeLog
12
13 file : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/mail-client/sylpheed/ChangeLog?rev=1.287&view=markup
14 plain: http://sources.gentoo.org/viewvc.cgi/gentoo-x86/mail-client/sylpheed/ChangeLog?rev=1.287&content-type=text/plain
15 diff : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/mail-client/sylpheed/ChangeLog?r1=1.286&r2=1.287
16
17 Index: ChangeLog
18 ===================================================================
19 RCS file: /var/cvsroot/gentoo-x86/mail-client/sylpheed/ChangeLog,v
20 retrieving revision 1.286
21 retrieving revision 1.287
22 diff -u -r1.286 -r1.287
23 --- ChangeLog 31 Jul 2010 07:44:22 -0000 1.286
24 +++ ChangeLog 4 Feb 2011 14:06:01 -0000 1.287
25 @@ -1,6 +1,11 @@
26 # ChangeLog for mail-client/sylpheed
27 -# Copyright 1999-2010 Gentoo Foundation; Distributed under the GPL v2
28 -# $Header: /var/cvsroot/gentoo-x86/mail-client/sylpheed/ChangeLog,v 1.286 2010/07/31 07:44:22 hattya Exp $
29 +# Copyright 1999-2011 Gentoo Foundation; Distributed under the GPL v2
30 +# $Header: /var/cvsroot/gentoo-x86/mail-client/sylpheed/ChangeLog,v 1.287 2011/02/04 14:06:01 hattya Exp $
31 +
32 +*sylpheed-3.1.0 (04 Feb 2011)
33 +
34 + 04 Feb 2011; Akinori Hattori <hattya@g.o> +sylpheed-3.1.0.ebuild:
35 + new upstream release. fixes bug #353427.
36
37 *sylpheed-3.0.3 (31 Jul 2010)
38
39
40
41
42 1.1 mail-client/sylpheed/sylpheed-3.1.0.ebuild
43
44 file : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/mail-client/sylpheed/sylpheed-3.1.0.ebuild?rev=1.1&view=markup
45 plain: http://sources.gentoo.org/viewvc.cgi/gentoo-x86/mail-client/sylpheed/sylpheed-3.1.0.ebuild?rev=1.1&content-type=text/plain
46
47 Index: sylpheed-3.1.0.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/sylpheed/sylpheed-3.1.0.ebuild,v 1.1 2011/02/04 14:06:01 hattya Exp $
52
53 EAPI="2"
54
55 inherit autotools eutils
56
57 IUSE="crypt ipv6 ldap nls pda spell ssl xface"
58
59 DESCRIPTION="A lightweight email client and newsreader"
60 HOMEPAGE="http://sylpheed.sraoss.jp/"
61 SRC_URI="http://sylpheed.sraoss.jp/${PN}/v${PV%.*}/${P}.tar.bz2"
62
63 LICENSE="GPL-2 LGPL-2.1"
64 KEYWORDS="~alpha ~amd64 ~hppa ~ia64 ~ppc ~ppc64 ~sparc ~x86 ~x86-fbsd"
65 SLOT="0"
66
67 COMMON_DEPEND=">=x11-libs/gtk+-2.4
68 nls? ( >=sys-devel/gettext-0.12.1 )
69 crypt? ( >=app-crypt/gpgme-1 )
70 ldap? ( net-nds/openldap )
71 pda? ( app-pda/jpilot )
72 spell? ( app-text/gtkspell )
73 ssl? ( dev-libs/openssl )"
74 DEPEND="${COMMON_DEPEND}
75 dev-util/pkgconfig
76 xface? ( >=media-libs/compface-1.4 )"
77 RDEPEND="${COMMON_DEPEND}
78 app-misc/mime-types
79 net-misc/curl
80 x11-misc/shared-mime-info"
81
82 AT_M4DIR="ac"
83
84 src_prepare() {
85
86 epatch "${FILESDIR}"/${PN}-2.7-*.diff
87 epatch "${FILESDIR}"/${PN}-3.*.diff
88
89 use crypt || cp ac/missing/gpgme.m4 ac
90
91 eautoreconf
92
93 }
94
95 src_configure() {
96
97 local htmldir=/usr/share/doc/${PF}/html
98
99 econf \
100 $(use_enable crypt gpgme) \
101 $(use_enable ipv6) \
102 $(use_enable ldap) \
103 $(use_enable pda jpilot) \
104 $(use_enable spell gtkspell) \
105 $(use_enable ssl) \
106 $(use_enable xface compface) \
107 --with-manualdir=${htmldir}/manual \
108 --with-faqdir=${htmldir}/faq \
109 --disable-updatecheck \
110 || die
111
112 }
113
114 src_install() {
115
116 emake DESTDIR="${D}" install || die
117
118 dodoc AUTHORS ChangeLog* NEWS* README* TODO*
119 doicon *.png
120 domenu *.desktop
121
122 }