Gentoo Archives: gentoo-commits

From: Bernard Cafarelli <voyageur@g.o>
To: gentoo-commits@l.g.o
Subject: [gentoo-commits] repo/gentoo:master commit in: x11-plugins/wmbiff/
Date: Fri, 02 Dec 2016 11:06:27
Message-Id: 1480676695.c9833991643bab2a33e7a2e0271e32dd476aeaff.voyageur@gentoo
1 commit: c9833991643bab2a33e7a2e0271e32dd476aeaff
2 Author: Bernard Cafarelli <voyageur <AT> gentoo <DOT> org>
3 AuthorDate: Fri Dec 2 09:45:10 2016 +0000
4 Commit: Bernard Cafarelli <voyageur <AT> gentoo <DOT> org>
5 CommitDate: Fri Dec 2 11:04:55 2016 +0000
6 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=c9833991
7
8 x11-plugins/wmbiff: version bump to 0.4.30
9
10 EAPI bump, update for new dockapps.net homepage
11
12 Package-Manager: portage-2.3.2
13
14 x11-plugins/wmbiff/Manifest | 1 +
15 x11-plugins/wmbiff/wmbiff-0.4.30.ebuild | 39 +++++++++++++++++++++++++++++++++
16 2 files changed, 40 insertions(+)
17
18 diff --git a/x11-plugins/wmbiff/Manifest b/x11-plugins/wmbiff/Manifest
19 index b4cadf8..8cabb83 100644
20 --- a/x11-plugins/wmbiff/Manifest
21 +++ b/x11-plugins/wmbiff/Manifest
22 @@ -1 +1,2 @@
23 DIST wmbiff-0.4.28.tar.gz 111398 SHA256 6e2acd3268dad93c596e4eae6ccf4407667f07226cf61dd7cfa312ae5e42dbc1 SHA512 a17fd4b4c3de09a907b7ffccc50f4560a7fddd5cb4dd01c72460806dc55259ba0b587d75f7505171a2a833f6735ddc4ded0a484d4227bfd552cc7343d79d7720 WHIRLPOOL c4a0c54f41a3ae33785364ea3bca808bc5b0c801a87ea33bd569f8fac9bb7632155af5d666bc7b3dbfe10fbebb8b2202fccb49266ded3fd299f2e0ac2749785c
24 +DIST wmbiff-0.4.30.tar.gz 269315 SHA256 0dae00ebe377ffc0f37565cf6fdc84a4fc9896a2421826909b0ab5abd5fa4f2a SHA512 10b5a6673763a48694cb9cd87f5972c09b0fc50acedde7658133830a06dea8c98ffb9943591cbef802330862d7ccf7a7322d7e9e25ee82209b5a0e40a22353b4 WHIRLPOOL 37e1b34f21daf2d51c2960151f7601056316dcba71b0ec850edc0ea3fe3925ca669fe846b44307a2c304f5c92dec12845ca33a8a3c64a49455844bc6cc7626b6
25
26 diff --git a/x11-plugins/wmbiff/wmbiff-0.4.30.ebuild b/x11-plugins/wmbiff/wmbiff-0.4.30.ebuild
27 new file mode 100644
28 index 00000000..181a5af
29 --- /dev/null
30 +++ b/x11-plugins/wmbiff/wmbiff-0.4.30.ebuild
31 @@ -0,0 +1,39 @@
32 +# Copyright 1999-2016 Gentoo Foundation
33 +# Distributed under the terms of the GNU General Public License v2
34 +# $Id$
35 +
36 +EAPI=6
37 +inherit autotools eutils
38 +
39 +DESCRIPTION="WMBiff is a dock applet for WindowMaker which can monitor up to 5 mailboxes"
40 +HOMEPAGE="http://www.dockapps.net/wmbiff"
41 +SRC_URI="http://www.dockapps.net/download/${P}.tar.gz"
42 +
43 +LICENSE="GPL-2"
44 +SLOT="0"
45 +KEYWORDS="~amd64 ~ppc ~x86"
46 +IUSE="crypt"
47 +
48 +RDEPEND="x11-libs/libX11
49 + x11-libs/libXext
50 + x11-libs/libXpm
51 + crypt? (
52 + >=dev-libs/libgcrypt-1.2.1:0
53 + >=net-libs/gnutls-2.2.0
54 + )"
55 +DEPEND="${RDEPEND}
56 + virtual/pkgconfig
57 + x11-proto/xextproto
58 + x11-proto/xproto"
59 +
60 +DOCS="ChangeLog FAQ NEWS README TODO wmbiff/sample.wmbiffrc"
61 +
62 +src_prepare() {
63 + default
64 + eapply "${FILESDIR}"/${PN}-0.4.27-invalid-strncpy.patch
65 + eautoreconf
66 +}
67 +
68 +src_configure() {
69 + econf $(use_enable crypt crypto)
70 +}