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