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-puzzle/ltris/
Date: Wed, 30 Mar 2016 16:11:28
Message-Id: 1459354270.1c63ac11dab43ee8b57fefdc442327288a638ca2.mr_bones_@gentoo
1 commit: 1c63ac11dab43ee8b57fefdc442327288a638ca2
2 Author: Michael Sterrett <mr_bones_ <AT> gentoo <DOT> org>
3 AuthorDate: Wed Mar 30 15:44:49 2016 +0000
4 Commit: Michael Sterrett <mr_bones_ <AT> gentoo <DOT> org>
5 CommitDate: Wed Mar 30 16:11:10 2016 +0000
6 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=1c63ac11
7
8 games-puzzle/ltris: build with gcc5 (bug #570966)
9
10 Package-Manager: portage-2.2.26
11
12 games-puzzle/ltris/ltris-1.0.19.ebuild | 7 ++++---
13 1 file changed, 4 insertions(+), 3 deletions(-)
14
15 diff --git a/games-puzzle/ltris/ltris-1.0.19.ebuild b/games-puzzle/ltris/ltris-1.0.19.ebuild
16 index 8cf203d..8636646 100644
17 --- a/games-puzzle/ltris/ltris-1.0.19.ebuild
18 +++ b/games-puzzle/ltris/ltris-1.0.19.ebuild
19 @@ -1,15 +1,15 @@
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 eutils games
27 +inherit autotools flag-o-matic eutils games
28
29 DESCRIPTION="very polished Tetris clone"
30 HOMEPAGE="http://lgames.sourceforge.net/index.php?project=LTris"
31 SRC_URI="mirror://sourceforge/lgames/${P}.tar.gz"
32
33 -LICENSE="GPL-2"
34 +LICENSE="GPL-2+"
35 SLOT="0"
36 KEYWORDS="amd64 ppc x86"
37 IUSE="nls"
38 @@ -24,6 +24,7 @@ src_prepare() {
39 epatch "${FILESDIR}"/${P}-gentoo.patch
40 mv configure.in configure.ac || die
41 AT_M4DIR=m4 eautoreconf
42 + append-cflags -std=gnu89 # build with gcc5 (bug #570966)
43 }
44
45 src_configure() {