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: Tue, 30 Jul 2019 23:30:56
Message-Id: 1564529406.72e6a7955e3aed98cb90cb20b7e180282b9cc73e.voyageur@gentoo
1 commit: 72e6a7955e3aed98cb90cb20b7e180282b9cc73e
2 Author: Bernard Cafarelli <voyageur <AT> gentoo <DOT> org>
3 AuthorDate: Tue Jul 30 23:28:35 2019 +0000
4 Commit: Bernard Cafarelli <voyageur <AT> gentoo <DOT> org>
5 CommitDate: Tue Jul 30 23:30:06 2019 +0000
6 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=72e6a795
7
8 x11-plugins/wmbiff: 0.4.35 bump
9
10 Package-Manager: Portage-2.3.69, Repoman-2.3.16
11 Signed-off-by: Bernard Cafarelli <voyageur <AT> gentoo.org>
12
13 x11-plugins/wmbiff/Manifest | 1 +
14 x11-plugins/wmbiff/wmbiff-0.4.35.ebuild | 37 +++++++++++++++++++++++++++++++++
15 2 files changed, 38 insertions(+)
16
17 diff --git a/x11-plugins/wmbiff/Manifest b/x11-plugins/wmbiff/Manifest
18 index 4e6a5b024cd..5c7ac52bf68 100644
19 --- a/x11-plugins/wmbiff/Manifest
20 +++ b/x11-plugins/wmbiff/Manifest
21 @@ -1,3 +1,4 @@
22 DIST wmbiff-0.4.28.tar.gz 111398 BLAKE2B 39ba4dbf50639b02c8969ae72b696fa83353ec3dcd46802f8333eb597f068d3d0d209f39a352a8f53830695c19c897b7d6f970c5362c2910128b80b0cdb24d32 SHA512 a17fd4b4c3de09a907b7ffccc50f4560a7fddd5cb4dd01c72460806dc55259ba0b587d75f7505171a2a833f6735ddc4ded0a484d4227bfd552cc7343d79d7720
23 DIST wmbiff-0.4.33.tar.gz 266114 BLAKE2B 06e5e454a2f8e78203dec66cc274d983e8ec1c0dc7bb82db4ec3c42a8671f0f7a399b79fc94f45e595dcd6fe56c87426dce3900f8fc0f12fbc704ad196390dc7 SHA512 9b88b5929e9234d17bfa5022eb95cbca1720c724827e078dbd44c0bcff77f386b7692a6576b3a96bb1f5fab602c274b3335c71543e5ad053c1cc476d114f818c
24 DIST wmbiff-0.4.34.tar.gz 265020 BLAKE2B af4160b983ff46557c78f2f363f8a6b73841050a99d89d953ba4bd493bf016da00457c38bb8130e329f742ad244d62df4b47519b90ee0e8858c88acb0b1184ab SHA512 28a80b635cf6ef03fe688686dd52ed965c2bb17d009aa904967b381f6717ad99014c2c514e9eb973fb2ea83c99a388beb9568f4ac940cbd4631f61c8a13f8cf4
25 +DIST wmbiff-0.4.35.tar.gz 265332 BLAKE2B 049f01dafaf71af614c47379fa1e59593e6d7904ecc7e63721edc06d06a4705141c5a339f773b7352984b288c32cb7d324fcca72c4459890328672b0d0a4b4e8 SHA512 7a276c33545351dd1e3c072b4b702fabb293744c3b26326739ebc278f18eda3fe971eeaa8392445eb49514eeb430677638b100076409ec6216915a1388a491c4
26
27 diff --git a/x11-plugins/wmbiff/wmbiff-0.4.35.ebuild b/x11-plugins/wmbiff/wmbiff-0.4.35.ebuild
28 new file mode 100644
29 index 00000000000..4c3609d5797
30 --- /dev/null
31 +++ b/x11-plugins/wmbiff/wmbiff-0.4.35.ebuild
32 @@ -0,0 +1,37 @@
33 +# Copyright 1999-2019 Gentoo Authors
34 +# Distributed under the terms of the GNU General Public License v2
35 +
36 +EAPI=7
37 +inherit autotools eutils
38 +
39 +DESCRIPTION="WMBiff is a dock applet for WindowMaker which can monitor up to 5 mailboxes"
40 +HOMEPAGE="https://www.dockapps.net/wmbiff"
41 +SRC_URI="https://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 + x11-base/xorg-proto"
57 +BDEPEND="virtual/pkgconfig"
58 +
59 +DOCS="ChangeLog FAQ NEWS README TODO wmbiff/sample.wmbiffrc"
60 +
61 +src_prepare() {
62 + default
63 + eapply "${FILESDIR}"/${PN}-0.4.27-invalid-strncpy.patch
64 + eautoreconf
65 +}
66 +
67 +src_configure() {
68 + econf $(use_enable crypt crypto)
69 +}