Gentoo Archives: gentoo-commits

From: Pacho Ramos <pacho@g.o>
To: gentoo-commits@l.g.o
Subject: [gentoo-commits] repo/gentoo:master commit in: net-nntp/pan/
Date: Sun, 29 May 2016 12:42:59
Message-Id: 1464525713.b3d351a40857524024e508410a3b64a92d7a342a.pacho@gentoo
1 commit: b3d351a40857524024e508410a3b64a92d7a342a
2 Author: Pacho Ramos <pacho <AT> gentoo <DOT> org>
3 AuthorDate: Sun May 29 12:35:12 2016 +0000
4 Commit: Pacho Ramos <pacho <AT> gentoo <DOT> org>
5 CommitDate: Sun May 29 12:41:53 2016 +0000
6 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=b3d351a4
7
8 net-nntp/pan: Version bump
9
10 Package-Manager: portage-2.3.0_rc1
11
12 net-nntp/pan/Manifest | 1 +
13 net-nntp/pan/pan-0.140.ebuild | 47 +++++++++++++++++++++++++++++++++++++++++++
14 2 files changed, 48 insertions(+)
15
16 diff --git a/net-nntp/pan/Manifest b/net-nntp/pan/Manifest
17 index ac377db..e72e22c 100644
18 --- a/net-nntp/pan/Manifest
19 +++ b/net-nntp/pan/Manifest
20 @@ -1 +1,2 @@
21 DIST pan-0.139.tar.bz2 1523907 SHA256 bf5f320f997f582d7ac823e3e854393307161a92e7014d2135e6e2674d144bb9 SHA512 7c6c5f3f54de475e0b5778cc33b6c46f18cb1100d89eab6ea2a6279492cb95a85226ccd6dba1abb43092b78f7cb100cea3215edb21c7813d624e84104b119a81 WHIRLPOOL b8c05cdabff893895370128dad53e19e29a348f3921c394af1a26210ebd9b89e4772dfb926685a549fc9d667c6cdc39fdf32b043a8761488f9f3a77d52aa52df
22 +DIST pan-0.140.tar.bz2 1563454 SHA256 ba1c65ee75b9eca1f15f6249ea762492309731446edc8b09085b63ad34351c71 SHA512 25936862ec566aa697ce99455320be7e28a341fa9c1ffe3b156d69f242e54e4cf5c454286f59b703aab9aebb0938f3923363a44b36228b4e99fe16e0a0724c9e WHIRLPOOL 3ade64d51148b6adac0c882424ad0b168bed79bcfb38fe2ab51fc9a3c238ac4f2acb2f23ccf64a462566652d7aa71715eb08d85eae11e2685fafb9a48a91e949
23
24 diff --git a/net-nntp/pan/pan-0.140.ebuild b/net-nntp/pan/pan-0.140.ebuild
25 new file mode 100644
26 index 0000000..4cc36ed
27 --- /dev/null
28 +++ b/net-nntp/pan/pan-0.140.ebuild
29 @@ -0,0 +1,47 @@
30 +# Copyright 1999-2016 Gentoo Foundation
31 +# Distributed under the terms of the GNU General Public License v2
32 +# $Id$
33 +
34 +EAPI=6
35 +inherit eutils 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/gnome-doc-utils
60 + >=dev-util/intltool-0.35.5
61 + sys-devel/gettext
62 + virtual/pkgconfig
63 +"
64 +
65 +src_configure() {
66 + # Wait for webkitgtk4 support
67 + # gtk3 support is still not ready (follow what Fedora does)
68 + gnome2_src_configure \
69 + --without-gtk3 \
70 + --without-webkit \
71 + $(use_with dbus) \
72 + $(use_enable gnome-keyring gkr) \
73 + $(use_with spell gtkspell) \
74 + $(use_enable libnotify) \
75 + $(use_with ssl gnutls)
76 +}