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-fps/nexuiz/
Date: Sun, 25 Apr 2021 22:01:07
Message-Id: 1619388049.6958d869845a99bc183b642ea88d4ba53fbaa4bb.sam@gentoo
1 commit: 6958d869845a99bc183b642ea88d4ba53fbaa4bb
2 Author: Sam James <sam <AT> gentoo <DOT> org>
3 AuthorDate: Sun Apr 25 21:34:55 2021 +0000
4 Commit: Sam James <sam <AT> gentoo <DOT> org>
5 CommitDate: Sun Apr 25 22:00:49 2021 +0000
6 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=6958d869
7
8 games-fps/nexuiz: avoid stripping files
9
10 Closes: https://bugs.gentoo.org/739294
11 Signed-off-by: Sam James <sam <AT> gentoo.org>
12
13 games-fps/nexuiz/nexuiz-2.5.2-r1.ebuild | 11 +++++++++--
14 1 file changed, 9 insertions(+), 2 deletions(-)
15
16 diff --git a/games-fps/nexuiz/nexuiz-2.5.2-r1.ebuild b/games-fps/nexuiz/nexuiz-2.5.2-r1.ebuild
17 index 68bb3ae1edc..f9054d23eec 100644
18 --- a/games-fps/nexuiz/nexuiz-2.5.2-r1.ebuild
19 +++ b/games-fps/nexuiz/nexuiz-2.5.2-r1.ebuild
20 @@ -1,7 +1,8 @@
21 -# Copyright 1999-2020 Gentoo Authors
22 +# Copyright 1999-2021 Gentoo Authors
23 # Distributed under the terms of the GNU General Public License v2
24
25 -EAPI=6
26 +EAPI=7
27 +
28 inherit desktop toolchain-funcs
29
30 MY_PN=Nexuiz
31 @@ -87,7 +88,13 @@ src_prepare() {
32 }
33
34 src_compile() {
35 + # Unset STRIP because the build system by default will not strip
36 + # If users express a preference, this triggers strip
37 + # bug #739294
38 + unset STRIP
39 +
40 tc-export CC
41 +
42 if use opengl || ! use dedicated ; then
43 emake cl-${PN}
44 if use sdl ; then