Gentoo Archives: gentoo-commits

From: Gilles Dartiguelongue <eva@g.o>
To: gentoo-commits@l.g.o
Subject: [gentoo-commits] repo/gentoo:master commit in: mail-client/balsa/
Date: Sat, 02 Sep 2017 18:00:55
Message-Id: 1504375247.b21dd8002315c5ae7304c201dcf60c11a3722cf6.eva@gentoo
1 commit: b21dd8002315c5ae7304c201dcf60c11a3722cf6
2 Author: Gilles Dartiguelongue <eva <AT> gentoo <DOT> org>
3 AuthorDate: Sat Sep 2 17:06:41 2017 +0000
4 Commit: Gilles Dartiguelongue <eva <AT> gentoo <DOT> org>
5 CommitDate: Sat Sep 2 18:00:47 2017 +0000
6 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=b21dd800
7
8 mail-client/balsa: spell checking is not actually optional, bug #617410
9
10 Package-Manager: Portage-2.3.8, Repoman-2.3.3
11
12 mail-client/balsa/balsa-2.5.3-r1.ebuild | 76 +++++++++++++++++++++++++++++++++
13 1 file changed, 76 insertions(+)
14
15 diff --git a/mail-client/balsa/balsa-2.5.3-r1.ebuild b/mail-client/balsa/balsa-2.5.3-r1.ebuild
16 new file mode 100644
17 index 00000000000..287a1557324
18 --- /dev/null
19 +++ b/mail-client/balsa/balsa-2.5.3-r1.ebuild
20 @@ -0,0 +1,76 @@
21 +# Copyright 1999-2017 Gentoo Foundation
22 +# Distributed under the terms of the GNU General Public License v2
23 +
24 +EAPI=6
25 +inherit gnome2
26 +
27 +DESCRIPTION="Email client for GNOME"
28 +HOMEPAGE="http://pawsa.fedorapeople.org/balsa/"
29 +SRC_URI="http://pawsa.fedorapeople.org/${PN}/${P}.tar.bz2"
30 +
31 +LICENSE="GPL-2"
32 +SLOT="0"
33 +KEYWORDS="~amd64 ~ppc ~x86"
34 +
35 +IUSE="crypt gnome gnome-keyring kerberos ldap libnotify libressl rubrica sqlite webkit xface"
36 +
37 +# TODO: esmtp can be optional, do we want it?
38 +RDEPEND="
39 + >=app-text/gspell-1.2:0=
40 + >=dev-libs/glib-2.40.0:2
41 + >=x11-libs/gtk+-3.10.0:3
42 + dev-libs/gmime:2.6
43 + >=net-libs/libesmtp-1.0.3:=
44 + net-mail/mailbase
45 + media-libs/libcanberra:=[gtk3]
46 + x11-themes/hicolor-icon-theme
47 + x11-themes/adwaita-icon-theme
48 + crypt? ( >=app-crypt/gpgme-1.2.0:= )
49 + gnome? ( >=x11-libs/gtksourceview-3.2.0:3.0 )
50 + gnome-keyring? ( app-crypt/libsecret )
51 + sqlite? ( >=dev-db/sqlite-2.8:= )
52 + libnotify? ( >=x11-libs/libnotify-0.7:= )
53 + !libressl? ( dev-libs/openssl:0= )
54 + libressl? ( dev-libs/libressl:0= )
55 + kerberos? ( app-crypt/mit-krb5 )
56 + ldap? ( net-nds/openldap )
57 + rubrica? ( dev-libs/libxml2:2 )
58 + webkit? ( net-libs/webkit-gtk:4 )
59 + xface? ( >=media-libs/compface-1.5.1:= )
60 +"
61 +DEPEND="${RDEPEND}
62 + app-text/yelp-tools
63 + dev-python/html2text
64 + dev-util/intltool
65 + virtual/pkgconfig
66 + sys-devel/gettext
67 +"
68 +
69 +src_prepare() {
70 + DOCS="AUTHORS ChangeLog HACKING NEWS README TODO docs/*"
71 +
72 + # https://bugzilla.gnome.org/show_bug.cgi?id=750516
73 + sed -i -e 's/@TOOLKIT_CATEGORIES@//' balsa-mailto-handler.desktop.in.in || die
74 +
75 + # https://bugzilla.gnome.org/show_bug.cgi?id=750515
76 + echo "src/balsa-print-object.c" >> po/POTFILES.in || die
77 +
78 + gnome2_src_prepare
79 +}
80 +
81 +src_configure() {
82 + gnome2_src_configure \
83 + --with-canberra \
84 + --with-spell-checker=gspell \
85 + $(usex crypt --with-gpgme=gpgme-config --without-gpgme) \
86 + $(use_with gnome) \
87 + $(use_with gnome gtksourceview) \
88 + $(use_with gnome-keyring libsecret) \
89 + $(use_with kerberos gss) \
90 + $(use_with ldap) \
91 + $(use_with libnotify) \
92 + $(use_with rubrica) \
93 + $(use_with sqlite) \
94 + $(use_with xface compface) \
95 + $(usex webkit --with-html-widget=webkit2 --with-html-widget=no)
96 +}