Gentoo Archives: gentoo-commits

From: Akinori Hattori <hattya@g.o>
To: gentoo-commits@l.g.o
Subject: [gentoo-commits] repo/gentoo:master commit in: mail-client/sylpheed/
Date: Sat, 27 Feb 2016 03:50:40
Message-Id: 1456544963.76655b0deba4e94f8c31bbf215d3da5b17296552.hattya@gentoo
1 commit: 76655b0deba4e94f8c31bbf215d3da5b17296552
2 Author: Akinori Hattori <hattya <AT> gentoo <DOT> org>
3 AuthorDate: Sat Feb 27 03:49:23 2016 +0000
4 Commit: Akinori Hattori <hattya <AT> gentoo <DOT> org>
5 CommitDate: Sat Feb 27 03:49:23 2016 +0000
6 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=76655b0d
7
8 mail-client/sylpheed: new upstream release
9
10 Package-Manager: portage-2.2.26
11
12 mail-client/sylpheed/Manifest | 1 +
13 mail-client/sylpheed/sylpheed-3.5.0.ebuild | 64 ++++++++++++++++++++++++++++++
14 2 files changed, 65 insertions(+)
15
16 diff --git a/mail-client/sylpheed/Manifest b/mail-client/sylpheed/Manifest
17 index 3fbd7e7..792858b 100644
18 --- a/mail-client/sylpheed/Manifest
19 +++ b/mail-client/sylpheed/Manifest
20 @@ -1,2 +1,3 @@
21 DIST sylpheed-3.4.2.tar.bz2 3474176 SHA256 198de08d01a5c150adae6b6612da80674bbc7ed59b58bbd7508124b869322ba3 SHA512 1bfaf5636facb6ca55173e914904be7f9fb9ca98eb440f5b548fbbbe03f5dfb5428801e878f3275d3683e715d0b4bd33f63f69f5f98578ce1a25cef695406b5e WHIRLPOOL a7dda342adb598027765c5ab6d14ae3e850bf39ff63d90a79927fa2aec1bf539454357cb6dea8664d21f68deeccf78fada264d04b0a14ff311ff5827717c4aa8
22 DIST sylpheed-3.4.3.tar.bz2 3474313 SHA256 09fae954c775073b43ce2f660a6bed1087237659eade1c68913cb86add1fb905 SHA512 cadae6a6855fae8c2df249d83cfd2d7b214062e3e49c74f6d64b3c2f97a9eb2586f14e2b766715e07fa1b229e4462cd39eee69bd02c26053b1ed93a497c3836b WHIRLPOOL 4d76ba80a60c3f0513b80af8854292712a74e5a9b5d2e53b82de0edee4fea7b76316b807af396bcda918a0e5c9e66b05e4201d89992a443cc3bb582574653431
23 +DIST sylpheed-3.5.0.tar.bz2 3519735 SHA256 4a0b62d17bca6f1a96ab951ef55a9a67813d87bc1dc3ee55d8ec2c045366a05c SHA512 fa2803c41a935089989d93cd78ef0dd04d5c0117283f37b82f3d5e76eb753d38960ce3cc122936883cb3057e834acaa03b1a565cd31202331527d07a24e8d5b0 WHIRLPOOL 6f7b6df00a75cab868fdaae0856d7a7080d45ee361cd1f41c5f356199f3ac630926b1b22e549e5e0ce6d78b8a4553c440460f2882fa28e5bbdb2af9dfb8df6a5
24
25 diff --git a/mail-client/sylpheed/sylpheed-3.5.0.ebuild b/mail-client/sylpheed/sylpheed-3.5.0.ebuild
26 new file mode 100644
27 index 0000000..b0b1451
28 --- /dev/null
29 +++ b/mail-client/sylpheed/sylpheed-3.5.0.ebuild
30 @@ -0,0 +1,64 @@
31 +# Copyright 1999-2016 Gentoo Foundation
32 +# Distributed under the terms of the GNU General Public License v2
33 +# $Id$
34 +
35 +EAPI="6"
36 +
37 +inherit eutils
38 +
39 +DESCRIPTION="A lightweight email client and newsreader"
40 +HOMEPAGE="http://sylpheed.sraoss.jp/"
41 +SRC_URI="http://${PN}.sraoss.jp/${PN}/v${PV%.*}/${P}.tar.bz2"
42 +
43 +LICENSE="GPL-2 LGPL-2.1"
44 +SLOT="0"
45 +KEYWORDS="~alpha ~amd64 ~hppa ~ia64 ~ppc ~ppc64 ~sparc ~x86 ~x86-fbsd"
46 +IUSE="crypt ipv6 ldap libressl nls oniguruma pda spell ssl xface"
47 +
48 +CDEPEND="x11-libs/gtk+:2
49 + crypt? ( app-crypt/gpgme )
50 + ldap? ( net-nds/openldap )
51 + nls? ( sys-devel/gettext )
52 + oniguruma? ( dev-libs/oniguruma )
53 + pda? ( app-pda/jpilot )
54 + spell? ( app-text/gtkspell:2 )
55 + ssl? (
56 + !libressl? ( dev-libs/openssl:0 )
57 + libressl? ( dev-libs/libressl )
58 + )"
59 +RDEPEND="${CDEPEND}
60 + app-misc/mime-types
61 + net-misc/curl"
62 +DEPEND="${CDEPEND}
63 + virtual/pkgconfig
64 + xface? ( media-libs/compface )"
65 +
66 +src_configure() {
67 + local htmldir=/usr/share/doc/${PF}/html
68 + econf \
69 + $(use_enable crypt gpgme) \
70 + $(use_enable ipv6) \
71 + $(use_enable ldap) \
72 + $(use_enable oniguruma) \
73 + $(use_enable pda jpilot) \
74 + $(use_enable spell gtkspell) \
75 + $(use_enable ssl) \
76 + $(use_enable xface compface) \
77 + --with-plugindir=/usr/$(get_libdir)/${PN}/plugins \
78 + --with-manualdir=${htmldir}/manual \
79 + --with-faqdir=${htmldir}/faq \
80 + --disable-updatecheck
81 +}
82 +
83 +src_install() {
84 + emake DESTDIR="${D}" install
85 + dodoc AUTHORS ChangeLog* NEWS* PLUGIN* README* TODO*
86 +
87 + doicon *.png
88 + domenu *.desktop
89 +
90 + cd plugin/attachment_tool
91 + emake DESTDIR="${D}" install-plugin
92 + docinto plugin/attachment_tool
93 + dodoc README
94 +}