Gentoo Archives: gentoo-commits

From: Michael Sterrett <mr_bones_@g.o>
To: gentoo-commits@l.g.o
Subject: [gentoo-commits] repo/gentoo:master commit in: games-emulation/mamory/
Date: Thu, 31 Mar 2016 17:25:51
Message-Id: 1459445136.6b41e19d49cc3e0be2f7fbea35b5236ff7d1177f.mr_bones_@gentoo
1 commit: 6b41e19d49cc3e0be2f7fbea35b5236ff7d1177f
2 Author: Michael Sterrett <mr_bones_ <AT> gentoo <DOT> org>
3 AuthorDate: Thu Mar 31 17:25:36 2016 +0000
4 Commit: Michael Sterrett <mr_bones_ <AT> gentoo <DOT> org>
5 CommitDate: Thu Mar 31 17:25:36 2016 +0000
6 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=6b41e19d
7
8 games-emulation/mamory: build with gcc5 (bug #570500)
9
10 Package-Manager: portage-2.2.26
11
12 games-emulation/mamory/mamory-0.2.25.ebuild | 7 ++++---
13 1 file changed, 4 insertions(+), 3 deletions(-)
14
15 diff --git a/games-emulation/mamory/mamory-0.2.25.ebuild b/games-emulation/mamory/mamory-0.2.25.ebuild
16 index e8049a4..3168f82 100644
17 --- a/games-emulation/mamory/mamory-0.2.25.ebuild
18 +++ b/games-emulation/mamory/mamory-0.2.25.ebuild
19 @@ -1,9 +1,9 @@
20 -# Copyright 1999-2015 Gentoo Foundation
21 +# Copyright 1999-2016 Gentoo Foundation
22 # Distributed under the terms of the GNU General Public License v2
23 # $Id$
24
25 EAPI=5
26 -inherit autotools games
27 +inherit autotools flag-o-matic games
28
29 DESCRIPTION="ROM management tools and library"
30 HOMEPAGE="http://mamory.sourceforge.net/"
31 @@ -15,7 +15,7 @@ KEYWORDS="amd64 ppc x86"
32 IUSE=""
33
34 DEPEND="dev-libs/expat"
35 -RDEPEND="${DEPEND}"
36 +RDEPEND=${DEPEND}
37
38 src_prepare() {
39 # Make sure the system expat is used
40 @@ -34,6 +34,7 @@ src_prepare() {
41 common/Makefile.am || die
42
43 AT_M4DIR="config" eautoreconf
44 + append-cflags -std=gnu89 # build with gcc5 (bug #570500)
45 }
46
47 src_configure() {