Gentoo Archives: gentoo-commits

From: Jeroen Roovers <jer@g.o>
To: gentoo-commits@l.g.o
Subject: [gentoo-commits] repo/gentoo:master commit in: x11-terms/yeahconsole/
Date: Mon, 26 Feb 2018 18:36:39
Message-Id: 1519670193.92cbb16cde6a3ed26a571d001fa2772bdf326194.jer@gentoo
1 commit: 92cbb16cde6a3ed26a571d001fa2772bdf326194
2 Author: Jeroen Roovers <jer <AT> gentoo <DOT> org>
3 AuthorDate: Mon Feb 26 18:36:13 2018 +0000
4 Commit: Jeroen Roovers <jer <AT> gentoo <DOT> org>
5 CommitDate: Mon Feb 26 18:36:33 2018 +0000
6 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=92cbb16c
7
8 x11-terms/yeahconsole: EAPI=6 (bug #648884).
9
10 Package-Manager: Portage-2.3.24, Repoman-2.3.6
11
12 x11-terms/yeahconsole/yeahconsole-0.3.4-r1.ebuild | 30 +++++++++++------------
13 1 file changed, 15 insertions(+), 15 deletions(-)
14
15 diff --git a/x11-terms/yeahconsole/yeahconsole-0.3.4-r1.ebuild b/x11-terms/yeahconsole/yeahconsole-0.3.4-r1.ebuild
16 index 08c40f4f0d4..5cbb5121559 100644
17 --- a/x11-terms/yeahconsole/yeahconsole-0.3.4-r1.ebuild
18 +++ b/x11-terms/yeahconsole/yeahconsole-0.3.4-r1.ebuild
19 @@ -1,9 +1,8 @@
20 -# Copyright 1999-2011 Gentoo Foundation
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 toolchain-funcs
27 +EAPI=6
28 +inherit toolchain-funcs
29
30 DESCRIPTION="yeahconsole turns an xterm or rxvt-unicode into a game-like console"
31 HOMEPAGE="http://phrat.de/yeahtools.html"
32 @@ -12,24 +11,25 @@ SRC_URI="http://phrat.de/${P}.tar.gz"
33 LICENSE="GPL-2"
34 SLOT="0"
35 KEYWORDS="amd64 hppa x86"
36 -
37 -IUSE=""
38 -RDEPEND="x11-libs/libX11"
39 -DEPEND="${RDEPEND}
40 - x11-proto/xproto"
41 -
42 -src_prepare() {
43 - epatch "${FILESDIR}"/${P}-make.patch
44 -}
45 +RDEPEND="
46 + x11-libs/libX11
47 +"
48 +DEPEND="
49 + ${RDEPEND}
50 + x11-proto/xproto
51 +"
52 +PATCHES=(
53 + "${FILESDIR}"/${P}-make.patch
54 +)
55
56 src_compile() {
57 tc-export CC
58 - emake || die "make failed"
59 + emake
60 }
61
62 src_install() {
63 dodir /usr/bin
64 - emake PREFIX="${D}"/usr install || die "emake install failed"
65 + emake PREFIX="${D}"/usr install
66 dodoc README
67 }