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/bbtime/
Date: Tue, 11 Jan 2022 16:56:01
Message-Id: 1641920151.7fcd6635cc8a031c38cef386a9455eb7c9a852a5.bkohler@gentoo
1 commit: 7fcd6635cc8a031c38cef386a9455eb7c9a852a5
2 Author: Ben Kohler <bkohler <AT> gentoo <DOT> org>
3 AuthorDate: Tue Jan 11 16:34:24 2022 +0000
4 Commit: Ben Kohler <bkohler <AT> gentoo <DOT> org>
5 CommitDate: Tue Jan 11 16:55:51 2022 +0000
6 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=7fcd6635
7
8 x11-misc/bbtime: 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/bbtime/bbtime-0.1.5-r2.ebuild | 36 ++++++++++++++++++++++++++++++++++
14 1 file changed, 36 insertions(+)
15
16 diff --git a/x11-misc/bbtime/bbtime-0.1.5-r2.ebuild b/x11-misc/bbtime/bbtime-0.1.5-r2.ebuild
17 new file mode 100644
18 index 000000000000..41b5aca4de1c
19 --- /dev/null
20 +++ b/x11-misc/bbtime/bbtime-0.1.5-r2.ebuild
21 @@ -0,0 +1,36 @@
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 time watcher"
30 +HOMEPAGE="https://sourceforge.net/projects/bbtools/"
31 +SRC_URI="mirror://sourceforge/bbtools/${P}.tar.gz"
32 +
33 +LICENSE="GPL-2"
34 +SLOT="0"
35 +KEYWORDS="~amd64 ~ppc ~x86"
36 +IUSE=""
37 +
38 +RDEPEND="x11-libs/libX11"
39 +DEPEND="${RDEPEND}"
40 +
41 +DOCS=( README AUTHORS BUGS ChangeLog NEWS TODO data/README.bbtime )
42 +PATCHES=( "${FILESDIR}"/${P}-asneeded.patch )
43 +
44 +src_prepare() {
45 + default
46 + mv configure.{in,ac} || die
47 + eautoreconf
48 +}
49 +
50 +src_install() {
51 + default
52 + rm "${ED}"/usr/share/bbtools/README.bbtime || die
53 + # since multiple bbtools packages provide this file, install
54 + # it in /usr/share/doc/${PF}
55 + mv "${ED}/usr/share/bbtools/bbtoolsrc.in" \
56 + "${ED}/usr/share/doc/${PF}/bbtoolsrc.example" || die
57 +}