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 98A661382C5 for ; Sun, 4 Apr 2021 06:33:10 +0000 (UTC) Received: from pigeon.gentoo.org (localhost [127.0.0.1]) by pigeon.gentoo.org (Postfix) with SMTP id 5FED5E0871; Sun, 4 Apr 2021 06:33:09 +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 3671DE0871 for ; Sun, 4 Apr 2021 06:33:09 +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 24492340C96 for ; Sun, 4 Apr 2021 06:33:07 +0000 (UTC) Received: from localhost.localdomain (localhost [IPv6:::1]) by oystercatcher.gentoo.org (Postfix) with ESMTP id 2EB9264C for ; Sun, 4 Apr 2021 06:33:03 +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: <1617517960.265cc5e33337fe455180b07b9982160d6b222a19.sam@gentoo> Subject: [gentoo-commits] repo/gentoo:master commit in: games-arcade/burgerspace/ X-VCS-Repository: repo/gentoo X-VCS-Files: games-arcade/burgerspace/burgerspace-1.9.2-r1.ebuild games-arcade/burgerspace/burgerspace-1.9.2.ebuild X-VCS-Directories: games-arcade/burgerspace/ X-VCS-Committer: sam X-VCS-Committer-Name: Sam James X-VCS-Revision: 265cc5e33337fe455180b07b9982160d6b222a19 X-VCS-Branch: master Date: Sun, 4 Apr 2021 06:33:03 +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: f7928100-caf4-4dd6-bd9e-4ed4c47ad7c2 X-Archives-Hash: e9381e439f9de2dbdcd489e2c338b081 commit: 265cc5e33337fe455180b07b9982160d6b222a19 Author: Sam James gentoo org> AuthorDate: Sun Apr 4 02:59:22 2021 +0000 Commit: Sam James gentoo org> CommitDate: Sun Apr 4 06:32:40 2021 +0000 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=265cc5e3 ames-arcade/burgerspace: port to EAPI 7, games.eclass-- Signed-off-by: Sam James gentoo.org> ...ace-1.9.2.ebuild => burgerspace-1.9.2-r1.ebuild} | 21 +++++++++++++-------- 1 file changed, 13 insertions(+), 8 deletions(-) diff --git a/games-arcade/burgerspace/burgerspace-1.9.2.ebuild b/games-arcade/burgerspace/burgerspace-1.9.2-r1.ebuild similarity index 82% rename from games-arcade/burgerspace/burgerspace-1.9.2.ebuild rename to games-arcade/burgerspace/burgerspace-1.9.2-r1.ebuild index 2dea3767701..11de206aa18 100644 --- a/games-arcade/burgerspace/burgerspace-1.9.2.ebuild +++ b/games-arcade/burgerspace/burgerspace-1.9.2-r1.ebuild @@ -1,8 +1,9 @@ -# Copyright 1999-2019 Gentoo Authors +# Copyright 1999-2021 Gentoo Authors # Distributed under the terms of the GNU General Public License v2 -EAPI=5 -inherit autotools games +EAPI=7 + +inherit autotools DESCRIPTION="Clone of the 1982 BurgerTime video game by Data East" HOMEPAGE="https://perso.b2b2c.ca/~sarrazip/dev/burgerspace.html" @@ -12,36 +13,40 @@ LICENSE="GPL-2" SLOT="0" KEYWORDS="~amd64 ~x86" IUSE="network" -RESTRICT="test" # doesn't really test anything +RESTRICT="test" # doesn't really test anything RDEPEND=">=dev-games/flatzebra-0.1.6" -DEPEND="${RDEPEND} - virtual/pkgconfig" +DEPEND="${RDEPEND}" +BDEPEND="virtual/pkgconfig" src_prepare() { + default + sed -i \ -e "/^pkgsounddir/ s:sounds.*:\$(PACKAGE)/sounds:" \ -e "/^desktopentrydir/ s:=.*:=/usr/share/applications:" \ -e "/^pixmapdir/ s:=.*:=/usr/share/pixmaps:" \ src/Makefile.am \ || die + sed -i \ -e "/Categories/s:Application;::" \ -e "/Icon/s:\..*::" \ -e "/Terminal/s:0:false:" \ src/burgerspace.desktop.in \ || die + eautoreconf } src_configure() { - egamesconf \ + econf \ $(use_with network) } src_install() { emake -C src DESTDIR="${D}" install + doman doc/${PN}.6 dodoc AUTHORS NEWS README THANKS - prepgamesdirs }