Gentoo Archives: gentoo-commits

From: Mart Raudsepp <leio@g.o>
To: gentoo-commits@l.g.o
Subject: [gentoo-commits] repo/gentoo:master commit in: net-nntp/pan/
Date: Mon, 16 Jul 2018 10:15:12
Message-Id: 1531735869.5394dea763d6ba6ea142d90018fa158237e60657.leio@gentoo
1 commit: 5394dea763d6ba6ea142d90018fa158237e60657
2 Author: Mart Raudsepp <leio <AT> gentoo <DOT> org>
3 AuthorDate: Mon Jul 16 09:59:24 2018 +0000
4 Commit: Mart Raudsepp <leio <AT> gentoo <DOT> org>
5 CommitDate: Mon Jul 16 10:11:09 2018 +0000
6 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=5394dea7
7
8 net-nntp/pan: bump to 0.145
9
10 Closes: https://bugs.gentoo.org/648976
11 Package-Manager: Portage-2.3.40, Repoman-2.3.9
12
13 net-nntp/pan/Manifest | 1 +
14 net-nntp/pan/pan-0.145.ebuild | 48 +++++++++++++++++++++++++++++++++++++++++++
15 2 files changed, 49 insertions(+)
16
17 diff --git a/net-nntp/pan/Manifest b/net-nntp/pan/Manifest
18 index c649cd73c05..430d29f860a 100644
19 --- a/net-nntp/pan/Manifest
20 +++ b/net-nntp/pan/Manifest
21 @@ -1 +1,2 @@
22 DIST pan-0.142.tar.bz2 2302780 BLAKE2B 5360b24dc3939bd440ed72e0d7e95d005a8155c784e7fc003369750d13bf5971b5549b76ab9b558bc8d3ebe6f946b6986854e1224ee41e0feb3cdf8bc840f591 SHA512 285e140c2d24297bbe14d6bcd995fa0e736c21ae541348a726988d4d42cd92e563671eb607aefb54d12b2afdba311b9b55f88d5a7c61e782503ab894f85fd06a
23 +DIST pan-0.145.tar.bz2 2307162 BLAKE2B 09535013d8c2fb511b8c79ef185880b69a3f948d0e168b4fb8acc4d3d07d94fb756df171d003b12e1baef3201e2b8be22d583bb9ff551a5ae22f464feaa6f077 SHA512 3dc92d519158ddd480fc43250bf7a3ec67a877e58b0877c02b99f1dfd968bf18c9a20c3d8c4b6acab4132da89b6b91dd2992616ddf46c1c3f9aa0de8f8ee1949
24
25 diff --git a/net-nntp/pan/pan-0.145.ebuild b/net-nntp/pan/pan-0.145.ebuild
26 new file mode 100644
27 index 00000000000..4dbc935e14a
28 --- /dev/null
29 +++ b/net-nntp/pan/pan-0.145.ebuild
30 @@ -0,0 +1,48 @@
31 +# Copyright 1999-2018 Gentoo Foundation
32 +# Distributed under the terms of the GNU General Public License v2
33 +
34 +EAPI=6
35 +inherit gnome2
36 +
37 +DESCRIPTION="A newsreader for GNOME"
38 +HOMEPAGE="http://pan.rebelbase.com/"
39 +SRC_URI="http://pan.rebelbase.com/download/releases/${PV}/source/${P}.tar.bz2"
40 +
41 +LICENSE="GPL-2"
42 +SLOT="0"
43 +KEYWORDS="~alpha ~amd64 ~hppa ~ppc ~ppc64 ~sparc ~x86 ~x86-fbsd"
44 +IUSE="dbus gnome-keyring libnotify spell ssl"
45 +
46 +RDEPEND="
47 + >=dev-libs/glib-2.26:2
48 + dev-libs/gmime:2.6
49 + >=sys-libs/zlib-1.2.0
50 + >=x11-libs/gtk+-2.16:2
51 + gnome-keyring? ( >=gnome-base/libgnome-keyring-3.2 )
52 + libnotify? ( >=x11-libs/libnotify-0.4.1:0= )
53 + spell? (
54 + >=app-text/enchant-1.6
55 + >=app-text/gtkspell-2.0.7:2 )
56 + ssl? ( >=net-libs/gnutls-3:0= )
57 +"
58 +DEPEND="${RDEPEND}
59 + app-text/yelp-tools
60 + >=sys-devel/gettext-0.19.7
61 + virtual/pkgconfig
62 +"
63 +
64 +src_configure() {
65 + # Wait for webkitgtk4 support
66 + # gtk3 support is still not ready (follow what Fedora does)
67 + # gmime:3.0 support claimed to be experimental still in 0.145, waiting with it until it's not experimental anymore or we work towards removing :2.6
68 + gnome2_src_configure \
69 + --with-yelp-tools \
70 + --without-gtk3 \
71 + --without-gmime30 \
72 + --without-webkit \
73 + $(use_with dbus) \
74 + $(use_enable gnome-keyring gkr) \
75 + $(use_with spell gtkspell) \
76 + $(use_enable libnotify) \
77 + $(use_with ssl gnutls)
78 +}