public inbox for gentoo-commits@lists.gentoo.org
 help / color / mirror / Atom feed
* [gentoo-commits] repo/gentoo:master commit in: games-action/xbomber/
@ 2015-12-18 10:13 Michael Sterrett
  0 siblings, 0 replies; 3+ messages in thread
From: Michael Sterrett @ 2015-12-18 10:13 UTC (permalink / raw
  To: gentoo-commits

commit:     ce1826ed555b2efa38171fb936a6eae0467bacc5
Author:     Michael Sterrett <mr_bones_ <AT> gentoo <DOT> org>
AuthorDate: Fri Dec 18 10:11:22 2015 +0000
Commit:     Michael Sterrett <mr_bones_ <AT> gentoo <DOT> org>
CommitDate: Fri Dec 18 10:11:22 2015 +0000
URL:        https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=ce1826ed

EAPI=5; minor tidying

Package-Manager: portage-2.2.24

 games-action/xbomber/xbomber-101.ebuild | 13 +++++--------
 1 file changed, 5 insertions(+), 8 deletions(-)

diff --git a/games-action/xbomber/xbomber-101.ebuild b/games-action/xbomber/xbomber-101.ebuild
index a191da6..60d129d 100644
--- a/games-action/xbomber/xbomber-101.ebuild
+++ b/games-action/xbomber/xbomber-101.ebuild
@@ -2,7 +2,7 @@
 # Distributed under the terms of the GNU General Public License v2
 # $Id$
 
-EAPI=4
+EAPI=5
 inherit eutils games
 
 DESCRIPTION="Bomberman clone w/multiplayer support"
@@ -15,21 +15,18 @@ KEYWORDS="amd64 ~ppc x86"
 IUSE=""
 
 DEPEND="x11-libs/libX11"
-RDEPEND="${DEPEND}"
+RDEPEND=${DEPEND}
 
 src_prepare() {
 	sed -i \
 		-e "/^CC/d" \
 		-e 's/gcc/$(CC)/g' \
 		-e "s:X386:X11R6:" \
-		Makefile \
-		|| die "sed failed"
+		Makefile || die
 	sed -i \
-		-e "s:data/%s:${GAMES_DATADIR}/${PN}/%s:" bomber.c \
-		|| die "sed failed"
+		-e "s:data/%s:${GAMES_DATADIR}/${PN}/%s:" bomber.c || die
 	sed -i \
-		-e "s:=\"data\":=\"${GAMES_DATADIR}/${PN}\":" sound.c \
-		|| die "sed failed"
+		-e "s:=\"data\":=\"${GAMES_DATADIR}/${PN}\":" sound.c || die
 	epatch \
 		"${FILESDIR}"/${P}-va_list.patch \
 		"${FILESDIR}"/${P}-gcc4.patch \


^ permalink raw reply related	[flat|nested] 3+ messages in thread

* [gentoo-commits] repo/gentoo:master commit in: games-action/xbomber/
@ 2016-07-28 21:36 Austin English
  0 siblings, 0 replies; 3+ messages in thread
From: Austin English @ 2016-07-28 21:36 UTC (permalink / raw
  To: gentoo-commits

commit:     dcc939b030709edc0352f2909d4ec5406abeedf6
Author:     Austin English <wizardedit <AT> gentoo <DOT> org>
AuthorDate: Thu Jul 28 21:36:16 2016 +0000
Commit:     Austin English <wizardedit <AT> gentoo <DOT> org>
CommitDate: Thu Jul 28 21:36:48 2016 +0000
URL:        https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=dcc939b0

games-action/xbomber: add a blocker for sci-biology/emboss #589918

Gentoo-Bug: https://bugs.gentoo.org/589918

Package-Manager: portage-2.3.0

 games-action/xbomber/xbomber-101-r1.ebuild | 3 ++-
 1 file changed, 2 insertions(+), 1 deletion(-)

diff --git a/games-action/xbomber/xbomber-101-r1.ebuild b/games-action/xbomber/xbomber-101-r1.ebuild
index d8343c2..7a61909 100644
--- a/games-action/xbomber/xbomber-101-r1.ebuild
+++ b/games-action/xbomber/xbomber-101-r1.ebuild
@@ -14,7 +14,8 @@ KEYWORDS="~amd64 ~ppc ~x86"
 IUSE=""
 
 DEPEND="x11-libs/libX11"
-RDEPEND=${DEPEND}
+RDEPEND="!sci-biology/emboss
+	${DEPEND}"
 
 PATCHES=(
 		"${FILESDIR}"/${P}-va_list.patch


^ permalink raw reply related	[flat|nested] 3+ messages in thread

* [gentoo-commits] repo/gentoo:master commit in: games-action/xbomber/
@ 2021-04-21 18:51 Sam James
  0 siblings, 0 replies; 3+ messages in thread
From: Sam James @ 2021-04-21 18:51 UTC (permalink / raw
  To: gentoo-commits

commit:     5085200979d9602e1931d82f87bb75a1edab45cd
Author:     Sam James <sam <AT> gentoo <DOT> org>
AuthorDate: Wed Apr 21 09:05:48 2021 +0000
Commit:     Sam James <sam <AT> gentoo <DOT> org>
CommitDate: Wed Apr 21 18:50:02 2021 +0000
URL:        https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=50852009

games-action/xbomber: update EAPI 6 -> 7, respect CC

Signed-off-by: Sam James <sam <AT> gentoo.org>

 games-action/xbomber/xbomber-101-r1.ebuild | 15 ++++++++++++---
 1 file changed, 12 insertions(+), 3 deletions(-)

diff --git a/games-action/xbomber/xbomber-101-r1.ebuild b/games-action/xbomber/xbomber-101-r1.ebuild
index 2757b322f5d..c6c7c8ab406 100644
--- a/games-action/xbomber/xbomber-101-r1.ebuild
+++ b/games-action/xbomber/xbomber-101-r1.ebuild
@@ -1,7 +1,9 @@
-# Copyright 1999-2016 Gentoo Foundation
+# Copyright 1999-2021 Gentoo Authors
 # Distributed under the terms of the GNU General Public License v2
 
-EAPI=6
+EAPI=7
+
+inherit toolchain-funcs
 
 DESCRIPTION="Bomberman clone w/multiplayer support"
 HOMEPAGE="http://www.xdr.com/dash/bomber.html"
@@ -10,7 +12,6 @@ SRC_URI="http://www.xdr.com/dash/${P}.tgz"
 LICENSE="GPL-2"
 SLOT="0"
 KEYWORDS="~amd64 ~x86"
-IUSE=""
 
 DEPEND="x11-libs/libX11"
 RDEPEND="!sci-biology/emboss
@@ -39,9 +40,17 @@ src_prepare() {
 		-e "s:=\"data\":=\"/usr/share/${PN}\":" sound.c || die
 }
 
+src_compile() {
+	tc-export CC
+
+	emake
+}
+
 src_install() {
 	dobin matcher bomber
+
 	insinto /usr/share/${PN}
 	doins -r data/*
+
 	dodoc README Changelog
 }


^ permalink raw reply related	[flat|nested] 3+ messages in thread

end of thread, other threads:[~2021-04-21 18:51 UTC | newest]

Thread overview: 3+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2021-04-21 18:51 [gentoo-commits] repo/gentoo:master commit in: games-action/xbomber/ Sam James
  -- strict thread matches above, loose matches on Subject: below --
2016-07-28 21:36 Austin English
2015-12-18 10:13 Michael Sterrett

This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox