Gentoo Archives: gentoo-commits

From: Ben Kohler <bkohler@g.o>
To: gentoo-commits@l.g.o
Subject: [gentoo-commits] repo/gentoo:master commit in: x11-misc/bbmail/
Date: Tue, 11 Jan 2022 16:56:01
Message-Id: 1641920150.5d332404f15dafb9f5419fb55474f87b1bb3b4c8.bkohler@gentoo
1 commit: 5d332404f15dafb9f5419fb55474f87b1bb3b4c8
2 Author: Ben Kohler <bkohler <AT> gentoo <DOT> org>
3 AuthorDate: Tue Jan 11 16:31:58 2022 +0000
4 Commit: Ben Kohler <bkohler <AT> gentoo <DOT> org>
5 CommitDate: Tue Jan 11 16:55:50 2022 +0000
6 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=5d332404
7
8 x11-misc/bbmail: EAPI=8 bump
9
10 Package-Manager: Portage-3.0.30, Repoman-3.0.3
11 Signed-off-by: Ben Kohler <bkohler <AT> gentoo.org>
12
13 x11-misc/bbmail/bbmail-0.9.3-r2.ebuild | 39 ++++++++++++++++++++++++++++++++++
14 1 file changed, 39 insertions(+)
15
16 diff --git a/x11-misc/bbmail/bbmail-0.9.3-r2.ebuild b/x11-misc/bbmail/bbmail-0.9.3-r2.ebuild
17 new file mode 100644
18 index 000000000000..5d219aae979b
19 --- /dev/null
20 +++ b/x11-misc/bbmail/bbmail-0.9.3-r2.ebuild
21 @@ -0,0 +1,39 @@
22 +# Copyright 1999-2022 Gentoo Authors
23 +# Distributed under the terms of the GNU General Public License v2
24 +
25 +EAPI=8
26 +
27 +inherit autotools
28 +
29 +DESCRIPTION="blackbox mail notification"
30 +HOMEPAGE="https://sourceforge.net/projects/bbtools"
31 +SRC_URI="mirror://sourceforge/bbtools/${P}.tar.gz"
32 +
33 +SLOT="0"
34 +LICENSE="GPL-2"
35 +KEYWORDS="~amd64 ~ppc ~x86"
36 +IUSE=""
37 +
38 +RDEPEND="
39 + dev-lang/perl
40 + x11-wm/blackbox
41 + x11-libs/libX11
42 + x11-libs/libXext"
43 +DEPEND="${RDEPEND}
44 + x11-base/xorg-proto"
45 +
46 +PATCHES=(
47 + "${FILESDIR}"/${P}-gcc4.3.patch
48 + "${FILESDIR}"/${P}-gcc4.4.patch
49 + "${FILESDIR}"/${P}-shebang.patch
50 +)
51 +
52 +src_prepare() {
53 + default
54 + eautoreconf
55 +}
56 +
57 +src_install() {
58 + default
59 + dobin scripts/bbmailparsefm.pl
60 +}