From mboxrd@z Thu Jan 1 00:00:00 1970 Return-Path: <gentoo-commits+bounces-1313958-garchives=archives.gentoo.org@lists.gentoo.org> Received: from lists.gentoo.org (pigeon.gentoo.org [208.92.234.80]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (No client certificate requested) by finch.gentoo.org (Postfix) with ESMTPS id 76915158CB7 for <garchives@archives.gentoo.org>; Thu, 19 Aug 2021 00:39:37 +0000 (UTC) Received: from pigeon.gentoo.org (localhost [127.0.0.1]) by pigeon.gentoo.org (Postfix) with SMTP id 2177EE0828; Thu, 19 Aug 2021 00:39:36 +0000 (UTC) Received: from smtp.gentoo.org (smtp.gentoo.org [140.211.166.183]) (using TLSv1.2 with cipher ECDHE-RSA-AES128-GCM-SHA256 (128/128 bits)) (No client certificate requested) by pigeon.gentoo.org (Postfix) with ESMTPS id 0592AE0826 for <gentoo-commits@lists.gentoo.org>; Thu, 19 Aug 2021 00:39:35 +0000 (UTC) Received: from oystercatcher.gentoo.org (oystercatcher.gentoo.org [148.251.78.52]) (using TLSv1.2 with cipher ECDHE-RSA-AES128-GCM-SHA256 (128/128 bits)) (No client certificate requested) by smtp.gentoo.org (Postfix) with ESMTPS id 819EF340FD7 for <gentoo-commits@lists.gentoo.org>; Thu, 19 Aug 2021 00:39:34 +0000 (UTC) Received: from localhost.localdomain (localhost [IPv6:::1]) by oystercatcher.gentoo.org (Postfix) with ESMTP id C182A8BB for <gentoo-commits@lists.gentoo.org>; Thu, 19 Aug 2021 00:39:32 +0000 (UTC) From: "Sam James" <sam@gentoo.org> To: gentoo-commits@lists.gentoo.org Content-Transfer-Encoding: 8bit Content-type: text/plain; charset=UTF-8 Reply-To: gentoo-dev@lists.gentoo.org, "Sam James" <sam@gentoo.org> Message-ID: <1629333537.d08acb0d948dde3f99699dbca733ca4d49b3012a.sam@gentoo> Subject: [gentoo-commits] repo/gentoo:master commit in: games-arcade/fishsupper/ X-VCS-Repository: repo/gentoo X-VCS-Files: games-arcade/fishsupper/fishsupper-0.1.6-r1.ebuild X-VCS-Directories: games-arcade/fishsupper/ X-VCS-Committer: sam X-VCS-Committer-Name: Sam James X-VCS-Revision: d08acb0d948dde3f99699dbca733ca4d49b3012a X-VCS-Branch: master Date: Thu, 19 Aug 2021 00:39:32 +0000 (UTC) Precedence: bulk List-Post: <mailto:gentoo-commits@lists.gentoo.org> List-Help: <mailto:gentoo-commits+help@lists.gentoo.org> List-Unsubscribe: <mailto:gentoo-commits+unsubscribe@lists.gentoo.org> List-Subscribe: <mailto:gentoo-commits+subscribe@lists.gentoo.org> List-Id: Gentoo Linux mail <gentoo-commits.gentoo.org> X-BeenThere: gentoo-commits@lists.gentoo.org X-Auto-Response-Suppress: DR, RN, NRN, OOF, AutoReply X-Archives-Salt: 55bae5fe-fd17-4501-8199-f3744ab70094 X-Archives-Hash: 0f9c99f0127482e0eeb18bfaefbe5ede commit: d08acb0d948dde3f99699dbca733ca4d49b3012a Author: Sam James <sam <AT> gentoo <DOT> org> AuthorDate: Thu Aug 19 00:10:43 2021 +0000 Commit: Sam James <sam <AT> gentoo <DOT> org> CommitDate: Thu Aug 19 00:38:57 2021 +0000 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=d08acb0d games-arcade/fishsupper: update EAPI 6 -> 7, add missing libsdl2[joystick] Closes: https://bugs.gentoo.org/740436 Signed-off-by: Sam James <sam <AT> gentoo.org> games-arcade/fishsupper/fishsupper-0.1.6-r1.ebuild | 18 +++++++++++------- 1 file changed, 11 insertions(+), 7 deletions(-) diff --git a/games-arcade/fishsupper/fishsupper-0.1.6-r1.ebuild b/games-arcade/fishsupper/fishsupper-0.1.6-r1.ebuild index e73b4a0b1d7..1ffdfa94712 100644 --- a/games-arcade/fishsupper/fishsupper-0.1.6-r1.ebuild +++ b/games-arcade/fishsupper/fishsupper-0.1.6-r1.ebuild @@ -1,7 +1,8 @@ -# Copyright 1999-2018 Gentoo Foundation +# Copyright 1999-2021 Gentoo Authors # Distributed under the terms of the GNU General Public License v2 -EAPI=6 +EAPI=7 + inherit autotools desktop DESCRIPTION="A simple arcade/puzzle game, loosely based on the retro classic Frogger" @@ -11,10 +12,9 @@ SRC_URI="mirror://sourceforge/${PN}/${P}.tar.gz" LICENSE="CC-BY-SA-2.5 GPL-3" SLOT="0" KEYWORDS="~amd64 ~x86" -IUSE="" RDEPEND=" - media-libs/libsdl[sound,video,opengl,X] + media-libs/libsdl[joystick,sound,video,opengl,X] media-libs/sdl-image[png] media-libs/sdl-mixer[wav] virtual/opengl @@ -23,16 +23,20 @@ DEPEND="${RDEPEND} dev-libs/boost " +PATCHES=( + "${FILESDIR}"/${P}-ovflfix.patch + "${FILESDIR}"/${P}-asneeded.patch + "${FILESDIR}"/${P}-gcc6.patch +) + src_prepare() { default - eapply "${FILESDIR}"/${P}-ovflfix.patch \ - "${FILESDIR}"/${P}-asneeded.patch \ - "${FILESDIR}"/${P}-gcc6.patch eautoreconf } src_install() { default + newicon data/images/fs_sprite_042.png ${PN}.png make_desktop_entry ${PN} "Fish Supper" }