Gentoo Archives: gentoo-commits

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