Gentoo Archives: gentoo-commits

From: "Andreas K. Hüttel" <dilfridge@g.o>
To: gentoo-commits@l.g.o
Subject: [gentoo-commits] repo/gentoo:master commit in: x11-terms/root-tail/
Date: Mon, 28 Jan 2019 19:46:48
Message-Id: 1548633531.495316dea07a17c6b53a0c0981dede6a5e4a7dad.dilfridge@gentoo
1 commit: 495316dea07a17c6b53a0c0981dede6a5e4a7dad
2 Author: Andreas K. Hüttel <dilfridge <AT> gentoo <DOT> org>
3 AuthorDate: Sun Jan 27 23:58:51 2019 +0000
4 Commit: Andreas K. Hüttel <dilfridge <AT> gentoo <DOT> org>
5 CommitDate: Sun Jan 27 23:58:51 2019 +0000
6 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=495316de
7
8 x11-terms/root-tail: EAPI bump
9
10 Package-Manager: Portage-2.3.58, Repoman-2.3.12
11 Signed-off-by: Andreas K. Hüttel <dilfridge <AT> gentoo.org>
12
13 x11-terms/root-tail/root-tail-1.2-r4.ebuild | 46 +++++++++++++++++++++++++++++
14 1 file changed, 46 insertions(+)
15
16 diff --git a/x11-terms/root-tail/root-tail-1.2-r4.ebuild b/x11-terms/root-tail/root-tail-1.2-r4.ebuild
17 new file mode 100644
18 index 00000000000..465304ebd74
19 --- /dev/null
20 +++ b/x11-terms/root-tail/root-tail-1.2-r4.ebuild
21 @@ -0,0 +1,46 @@
22 +# Copyright 1999-2019 Gentoo Authors
23 +# Distributed under the terms of the GNU General Public License v2
24 +
25 +EAPI=7
26 +
27 +inherit flag-o-matic toolchain-funcs
28 +
29 +DESCRIPTION="Terminal to display (multiple) log files on the root window"
30 +HOMEPAGE="http://oldhome.schmorp.de/marc/root-tail.html"
31 +SRC_URI="http://oldhome.schmorp.de/marc/data/${P}.tar.gz"
32 +
33 +LICENSE="GPL-2"
34 +SLOT="0"
35 +KEYWORDS="~amd64 ~ppc ~ppc64 ~x86"
36 +IUSE="kde debug"
37 +
38 +RDEPEND="x11-libs/libXext
39 + x11-libs/libX11"
40 +DEPEND="x11-misc/imake
41 + app-text/rman
42 + x11-base/xorg-proto
43 + x11-libs/libX11
44 + x11-misc/gccmakedep"
45 +
46 +src_prepare() {
47 + use kde && eapply "${FILESDIR}"/${P}-kde.patch
48 + default
49 +}
50 +
51 +src_configure() {
52 + xmkmf -a
53 +}
54 +
55 +src_compile() {
56 + sed -i 's:/usr/X11R6/bin:/usr/bin:' Makefile || die "sed Makefile failed"
57 + use debug && append-flags -DDEBUG
58 + emake \
59 + CC=$(tc-getCC) \
60 + CCOPTIONS="${CFLAGS}" \
61 + EXTRA_LDOPTIONS="${LDFLAGS}"
62 +}
63 +
64 +src_install() {
65 + emake DESTDIR="${D}" install install.man
66 + dodoc Changes README
67 +}