From mboxrd@z Thu Jan 1 00:00:00 1970 Return-Path: Received: from lists.gentoo.org (pigeon.gentoo.org [208.92.234.80]) by finch.gentoo.org (Postfix) with ESMTP id 9F5A358973 for ; Tue, 19 Jan 2016 06:24:30 +0000 (UTC) Received: from pigeon.gentoo.org (localhost [127.0.0.1]) by pigeon.gentoo.org (Postfix) with SMTP id E70E721C10D; Tue, 19 Jan 2016 06:24:29 +0000 (UTC) Received: from smtp.gentoo.org (smtp.gentoo.org [140.211.166.183]) (using TLSv1.2 with cipher AECDH-AES256-SHA (256/256 bits)) (No client certificate requested) by pigeon.gentoo.org (Postfix) with ESMTPS id 8F1B821C10D for ; Tue, 19 Jan 2016 06:24:29 +0000 (UTC) Received: from oystercatcher.gentoo.org (oystercatcher.gentoo.org [148.251.78.52]) (using TLSv1.2 with cipher AECDH-AES256-SHA (256/256 bits)) (No client certificate requested) by smtp.gentoo.org (Postfix) with ESMTPS id 3D2B53409A4 for ; Tue, 19 Jan 2016 06:24:28 +0000 (UTC) Received: from localhost.localdomain (localhost [127.0.0.1]) by oystercatcher.gentoo.org (Postfix) with ESMTP id 01880CB3 for ; Tue, 19 Jan 2016 06:24:26 +0000 (UTC) From: "Michael Sterrett" To: gentoo-commits@lists.gentoo.org Content-Transfer-Encoding: 8bit Content-type: text/plain; charset=UTF-8 Reply-To: gentoo-dev@lists.gentoo.org, "Michael Sterrett" Message-ID: <1453184596.27c66358f39141764a3e8bafb03c1d27cd79e5c2.mr_bones_@gentoo> Subject: [gentoo-commits] repo/gentoo:master commit in: games-puzzle/scramble/ X-VCS-Repository: repo/gentoo X-VCS-Files: games-puzzle/scramble/scramble-0.9.5.ebuild X-VCS-Directories: games-puzzle/scramble/ X-VCS-Committer: mr_bones_ X-VCS-Committer-Name: Michael Sterrett X-VCS-Revision: 27c66358f39141764a3e8bafb03c1d27cd79e5c2 X-VCS-Branch: master Date: Tue, 19 Jan 2016 06:24:26 +0000 (UTC) Precedence: bulk List-Post: List-Help: List-Unsubscribe: List-Subscribe: List-Id: Gentoo Linux mail X-BeenThere: gentoo-commits@lists.gentoo.org X-Archives-Salt: 49c9911e-3c80-46d1-b665-9d8599c82a13 X-Archives-Hash: 5e25e1d8a742e7e4e6bbf9919e7dda2c commit: 27c66358f39141764a3e8bafb03c1d27cd79e5c2 Author: Michael Sterrett gentoo org> AuthorDate: Tue Jan 19 06:23:00 2016 +0000 Commit: Michael Sterrett gentoo org> CommitDate: Tue Jan 19 06:23:16 2016 +0000 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=27c66358 games-puzzle/scramble: fix building with gcc-5 (bug #571460) Package-Manager: portage-2.2.26 games-puzzle/scramble/scramble-0.9.5.ebuild | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) diff --git a/games-puzzle/scramble/scramble-0.9.5.ebuild b/games-puzzle/scramble/scramble-0.9.5.ebuild index 3b88d00..6ed5978 100644 --- a/games-puzzle/scramble/scramble-0.9.5.ebuild +++ b/games-puzzle/scramble/scramble-0.9.5.ebuild @@ -9,7 +9,7 @@ DESCRIPTION="Create as many words as you can before the time runs out" HOMEPAGE="http://www.shiftygames.com/scramble/scramble.html" SRC_URI="http://www.shiftygames.com/scramble/${P}.tar.gz" -LICENSE="GPL-2" +LICENSE="GPL-2+" SLOT="0" KEYWORDS="amd64 ~ppc x86" IUSE="" @@ -23,6 +23,8 @@ RDEPEND="${DEPEND} src_prepare() { append-cflags $(sdl-config --cflags) + sed -i -e 's/inline //' src/scramble.c || die + mv configure.{in,ac} || die eautoreconf }