Gentoo Archives: gentoo-commits

From: Sam James <sam@g.o>
To: gentoo-commits@l.g.o
Subject: [gentoo-commits] repo/gentoo:master commit in: games-misc/xcruiser/
Date: Fri, 16 Apr 2021 04:47:40
Message-Id: 1618548410.5fcbef1653e3b95f0fe7a39f92ba2fa4fbb5761f.sam@gentoo
1 commit: 5fcbef1653e3b95f0fe7a39f92ba2fa4fbb5761f
2 Author: Ionen Wolkens <sudinave <AT> gmail <DOT> com>
3 AuthorDate: Thu Apr 15 13:17:37 2021 +0000
4 Commit: Sam James <sam <AT> gentoo <DOT> org>
5 CommitDate: Fri Apr 16 04:46:50 2021 +0000
6 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=5fcbef16
7
8 games-misc/xcruiser: EAPI-7 bump, tidy
9
10 Signed-off-by: Ionen Wolkens <sudinave <AT> gmail.com>
11 Signed-off-by: Sam James <sam <AT> gentoo.org>
12
13 games-misc/xcruiser/xcruiser-0.30-r1.ebuild | 16 +++++++++++-----
14 1 file changed, 11 insertions(+), 5 deletions(-)
15
16 diff --git a/games-misc/xcruiser/xcruiser-0.30-r1.ebuild b/games-misc/xcruiser/xcruiser-0.30-r1.ebuild
17 index 154660e8717..0b64f9c5698 100644
18 --- a/games-misc/xcruiser/xcruiser-0.30-r1.ebuild
19 +++ b/games-misc/xcruiser/xcruiser-0.30-r1.ebuild
20 @@ -1,7 +1,8 @@
21 # Copyright 1999-2021 Gentoo Authors
22 # Distributed under the terms of the GNU General Public License v2
23
24 -EAPI=5
25 +EAPI=7
26 +
27 inherit toolchain-funcs
28
29 DESCRIPTION="Fly about 3D-formed file system"
30 @@ -11,11 +12,11 @@ SRC_URI="mirror://sourceforge/${PN}/${P}.tar.gz"
31 LICENSE="GPL-2"
32 SLOT="0"
33 KEYWORDS="~amd64 ~x86"
34 -IUSE=""
35 RESTRICT="test"
36
37 RDEPEND="x11-libs/libXaw"
38 -DEPEND="${RDEPEND}
39 +DEPEND="${RDEPEND}"
40 +BDEPEND="
41 app-text/rman
42 x11-misc/gccmakedep
43 >=x11-misc/imake-1.0.8-r1"
44 @@ -26,11 +27,16 @@ src_configure() {
45 }
46
47 src_compile() {
48 - emake CC="$(tc-getCC)" CDEBUGFLAGS="${CFLAGS}" LOCAL_LDFLAGS="${LDFLAGS}"
49 + local myemakeargs=(
50 + CC="$(tc-getCC)"
51 + CDEBUGFLAGS="${CFLAGS}"
52 + LOCAL_LDFLAGS="${LDFLAGS}"
53 + )
54 + emake "${myemakeargs[@]}"
55 }
56
57 src_install() {
58 dobin xcruiser
59 - dodoc CHANGES README README.jp TODO
60 newman xcruiser.man xcruiser.1
61 + einstalldocs
62 }