Gentoo Archives: gentoo-commits

From: David Seifert <soap@g.o>
To: gentoo-commits@l.g.o
Subject: [gentoo-commits] repo/gentoo:master commit in: games-action/bzflag/
Date: Sat, 24 Apr 2021 22:03:28
Message-Id: 1619301741.7b9baefe3b5c89dcb9563b9236787ffdceeae844.soap@gentoo
1 commit: 7b9baefe3b5c89dcb9563b9236787ffdceeae844
2 Author: Michael Mair-Keimberger <mmk <AT> levelnine <DOT> at>
3 AuthorDate: Sat Apr 24 22:02:21 2021 +0000
4 Commit: David Seifert <soap <AT> gentoo <DOT> org>
5 CommitDate: Sat Apr 24 22:02:21 2021 +0000
6 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=7b9baefe
7
8 games-action/bzflag: remove unused eclass, minor improvements
9
10 Package-Manager: Portage-3.0.18, Repoman-3.0.3
11 Signed-off-by: Michael Mair-Keimberger <mmk <AT> levelnine.at>
12 Signed-off-by: David Seifert <soap <AT> gentoo.org>
13
14 games-action/bzflag/bzflag-2.4.20.ebuild | 7 ++++---
15 games-action/bzflag/bzflag-2.4.22.ebuild | 5 +++--
16 2 files changed, 7 insertions(+), 5 deletions(-)
17
18 diff --git a/games-action/bzflag/bzflag-2.4.20.ebuild b/games-action/bzflag/bzflag-2.4.20.ebuild
19 index c9e550882ec..f33c9b955d3 100644
20 --- a/games-action/bzflag/bzflag-2.4.20.ebuild
21 +++ b/games-action/bzflag/bzflag-2.4.20.ebuild
22 @@ -1,8 +1,9 @@
23 -# Copyright 1999-2020 Gentoo Authors
24 +# Copyright 1999-2021 Gentoo Authors
25 # Distributed under the terms of the GNU General Public License v2
26
27 EAPI=7
28 -inherit autotools desktop flag-o-matic
29 +
30 +inherit autotools desktop
31
32 DESCRIPTION="3D tank combat simulator game"
33 HOMEPAGE="https://www.bzflag.org/"
34 @@ -67,5 +68,5 @@ src_install() {
35 make_desktop_entry ${PN} "BZFlag"
36 fi
37
38 - find "${D}"/ -name \*.la -delete
39 + find "${ED}" -name '*.la' -delete || die
40 }
41
42 diff --git a/games-action/bzflag/bzflag-2.4.22.ebuild b/games-action/bzflag/bzflag-2.4.22.ebuild
43 index fd77e44f349..f33c9b955d3 100644
44 --- a/games-action/bzflag/bzflag-2.4.22.ebuild
45 +++ b/games-action/bzflag/bzflag-2.4.22.ebuild
46 @@ -2,7 +2,8 @@
47 # Distributed under the terms of the GNU General Public License v2
48
49 EAPI=7
50 -inherit autotools desktop flag-o-matic
51 +
52 +inherit autotools desktop
53
54 DESCRIPTION="3D tank combat simulator game"
55 HOMEPAGE="https://www.bzflag.org/"
56 @@ -67,5 +68,5 @@ src_install() {
57 make_desktop_entry ${PN} "BZFlag"
58 fi
59
60 - find "${D}"/ -name \*.la -delete
61 + find "${ED}" -name '*.la' -delete || die
62 }