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-puzzle/lmarbles/
Date: Thu, 08 Oct 2020 13:15:03
Message-Id: 1602162894.1aac3b8f703c1fbf87320f54f4f9435dbb08f1db.sam@gentoo
1 commit: 1aac3b8f703c1fbf87320f54f4f9435dbb08f1db
2 Author: Sam James <sam <AT> gentoo <DOT> org>
3 AuthorDate: Thu Oct 8 13:13:50 2020 +0000
4 Commit: Sam James <sam <AT> gentoo <DOT> org>
5 CommitDate: Thu Oct 8 13:14:54 2020 +0000
6 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=1aac3b8f
7
8 games-puzzle/lmarbles: QA fixups
9
10 * src_prepare no longer needed b/c of dropped patch
11 in migration away from games.eclass
12
13 * Use correct permissions for preferences file
14 (https://projects.gentoo.org/qa/policy-guide/filesystem.html#pg0205)
15
16 Bug: https://bugs.gentoo.org/731128
17 Package-Manager: Portage-3.0.4, Repoman-3.0.1
18 Signed-off-by: Sam James <sam <AT> gentoo.org>
19
20 games-puzzle/lmarbles/lmarbles-1.0.8-r1.ebuild | 18 +++++++++---------
21 1 file changed, 9 insertions(+), 9 deletions(-)
22
23 diff --git a/games-puzzle/lmarbles/lmarbles-1.0.8-r1.ebuild b/games-puzzle/lmarbles/lmarbles-1.0.8-r1.ebuild
24 index 53b5aa2c7c5..e92811a4437 100644
25 --- a/games-puzzle/lmarbles/lmarbles-1.0.8-r1.ebuild
26 +++ b/games-puzzle/lmarbles/lmarbles-1.0.8-r1.ebuild
27 @@ -2,6 +2,7 @@
28 # Distributed under the terms of the GNU General Public License v2
29
30 EAPI=7
31 +
32 inherit autotools
33
34 DESCRIPTION="puzzle game inspired by Atomix and written in SDL"
35 @@ -12,18 +13,17 @@ LICENSE="GPL-2"
36 SLOT="0"
37 KEYWORDS="~amd64 ~x86"
38
39 -DEPEND="media-libs/libsdl[video]
40 - media-libs/sdl-mixer"
41 +DEPEND="
42 + acct-group/gamestat
43 + media-libs/libsdl[video]
44 + media-libs/sdl-mixer
45 +"
46 RDEPEND="${DEPEND}"
47
48 -src_prepare() {
49 - default
50 - mv configure.{in,ac}
51 - rm *.m4
52 - eautoreconf
53 -}
54 -
55 src_install() {
56 default
57 dodoc src/manual/*
58 +
59 + fperms 660 /var/lib/lmarbles.prfs
60 + fowners root:gamestat /var/lib/lmarbles.prfs
61 }