From mboxrd@z Thu Jan 1 00:00:00 1970 Return-Path: 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 189E113835A for ; Sun, 4 Apr 2021 07:22:09 +0000 (UTC) Received: from pigeon.gentoo.org (localhost [127.0.0.1]) by pigeon.gentoo.org (Postfix) with SMTP id 36938E0855; Sun, 4 Apr 2021 07:22:08 +0000 (UTC) Received: from smtp.gentoo.org (dev.gentoo.org [IPv6:2001:470:ea4a:1:5054:ff:fec7:86e4]) (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 1E1A3E0855 for ; Sun, 4 Apr 2021 07:22:08 +0000 (UTC) Received: from oystercatcher.gentoo.org (unknown [IPv6:2a01:4f8:202:4333:225:90ff:fed9:fc84]) (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 49859340B46 for ; Sun, 4 Apr 2021 07:22:07 +0000 (UTC) Received: from localhost.localdomain (localhost [IPv6:::1]) by oystercatcher.gentoo.org (Postfix) with ESMTP id 6691A644 for ; Sun, 4 Apr 2021 07:22:04 +0000 (UTC) From: "Sam James" 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" Message-ID: <1617520908.8a89e673b5c370baf2c726265812d77a8e1ba316.sam@gentoo> Subject: [gentoo-commits] repo/gentoo:master commit in: games-arcade/batrachians/ X-VCS-Repository: repo/gentoo X-VCS-Files: games-arcade/batrachians/batrachians-0.1.6-r1.ebuild X-VCS-Directories: games-arcade/batrachians/ X-VCS-Committer: sam X-VCS-Committer-Name: Sam James X-VCS-Revision: 8a89e673b5c370baf2c726265812d77a8e1ba316 X-VCS-Branch: master Date: Sun, 4 Apr 2021 07:22:04 +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-Auto-Response-Suppress: DR, RN, NRN, OOF, AutoReply X-Archives-Salt: 2859c731-bb58-4f7f-a016-f5d9855f27b5 X-Archives-Hash: 8180515ddb91834d92a441c6943bf656 commit: 8a89e673b5c370baf2c726265812d77a8e1ba316 Author: Sam James gentoo org> AuthorDate: Sun Apr 4 07:18:48 2021 +0000 Commit: Sam James gentoo org> CommitDate: Sun Apr 4 07:21:48 2021 +0000 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=8a89e673 games-arcade/batrachians: EAPI 7, autotools--, missing deps Signed-off-by: Sam James gentoo.org> games-arcade/batrachians/batrachians-0.1.6-r1.ebuild | 19 +++++++++++-------- 1 file changed, 11 insertions(+), 8 deletions(-) diff --git a/games-arcade/batrachians/batrachians-0.1.6-r1.ebuild b/games-arcade/batrachians/batrachians-0.1.6-r1.ebuild index c3da891efd8..3f26d0405bf 100644 --- a/games-arcade/batrachians/batrachians-0.1.6-r1.ebuild +++ b/games-arcade/batrachians/batrachians-0.1.6-r1.ebuild @@ -1,10 +1,10 @@ -# Copyright 1999-2019 Gentoo Authors +# Copyright 1999-2021 Gentoo Authors # Distributed under the terms of the GNU General Public License v2 -EAPI=6 -GNOME2_EAUTORECONF="yes" +EAPI=7 -inherit autotools gnome2 +GNOME2_EAUTORECONF="yes" +inherit gnome2 DESCRIPTION="A fly-eating frog video game" HOMEPAGE="https://perso.b2b2c.ca/~sarrazip/dev/batrachians.html" @@ -13,12 +13,15 @@ SRC_URI="https://perso.b2b2c.ca/~sarrazip/dev/${P}.tar.gz" LICENSE="GPL-2" SLOT="0" KEYWORDS="~amd64 ~x86" -IUSE="" -RDEPEND=">=dev-games/flatzebra-0.1.5" -DEPEND="${RDEPEND} - virtual/pkgconfig +RDEPEND=" + >=dev-games/flatzebra-0.1.5 + media-libs/libsdl + media-libs/sdl-image + media-libs/sdl-mixer " +DEPEND="${RDEPEND}" +BDEPEND="virtual/pkgconfig" PATCHES=( "${FILESDIR}"/${P}-makefile.patch )