* [gentoo-commits] repo/gentoo:master commit in: games-action/xblast/
@ 2015-12-18 10:13 Michael Sterrett
0 siblings, 0 replies; 5+ messages in thread
From: Michael Sterrett @ 2015-12-18 10:13 UTC (permalink / raw
To: gentoo-commits
commit: 7f3cdd3e02edd1ecf3b9411da3be4a8a0b215ea9
Author: Michael Sterrett <mr_bones_ <AT> gentoo <DOT> org>
AuthorDate: Fri Dec 18 09:24:15 2015 +0000
Commit: Michael Sterrett <mr_bones_ <AT> gentoo <DOT> org>
CommitDate: Fri Dec 18 09:24:15 2015 +0000
URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=7f3cdd3e
EAPI=5; minor tidying
Package-Manager: portage-2.2.24
games-action/xblast/xblast-2.10.4.ebuild | 5 ++---
1 file changed, 2 insertions(+), 3 deletions(-)
diff --git a/games-action/xblast/xblast-2.10.4.ebuild b/games-action/xblast/xblast-2.10.4.ebuild
index bf8cfbc..cc730a3 100644
--- a/games-action/xblast/xblast-2.10.4.ebuild
+++ b/games-action/xblast/xblast-2.10.4.ebuild
@@ -2,7 +2,7 @@
# Distributed under the terms of the GNU General Public License v2
# $Id$
-EAPI=4
+EAPI=5
inherit autotools games
# Change these as releases changes
@@ -49,8 +49,7 @@ src_install() {
# Images
dodir "${IMAGE_INSTALL_DIR}"
- cp -pPR "${WORKDIR}/${IMAGES}"/* "${D}/${IMAGE_INSTALL_DIR}" \
- || die "cp failed"
+ cp -pPR "${WORKDIR}/${IMAGES}"/* "${D}/${IMAGE_INSTALL_DIR}" || die
# Levels
insinto "${GAMES_DATADIR}/xblast/level"
^ permalink raw reply related [flat|nested] 5+ messages in thread
* [gentoo-commits] repo/gentoo:master commit in: games-action/xblast/
@ 2015-12-18 10:13 Michael Sterrett
0 siblings, 0 replies; 5+ messages in thread
From: Michael Sterrett @ 2015-12-18 10:13 UTC (permalink / raw
To: gentoo-commits
commit: 6cdade11ff83493f5675f17aef3b749c7d30a42f
Author: Michael Sterrett <mr_bones_ <AT> gentoo <DOT> org>
AuthorDate: Fri Dec 18 09:24:54 2015 +0000
Commit: Michael Sterrett <mr_bones_ <AT> gentoo <DOT> org>
CommitDate: Fri Dec 18 09:24:54 2015 +0000
URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=6cdade11
add slot dep for media-libs/libpng
Package-Manager: portage-2.2.24
games-action/xblast/xblast-2.10.4.ebuild | 2 +-
1 file changed, 1 insertion(+), 1 deletion(-)
diff --git a/games-action/xblast/xblast-2.10.4.ebuild b/games-action/xblast/xblast-2.10.4.ebuild
index cc730a3..20dd166 100644
--- a/games-action/xblast/xblast-2.10.4.ebuild
+++ b/games-action/xblast/xblast-2.10.4.ebuild
@@ -28,7 +28,7 @@ IUSE=""
RDEPEND="x11-libs/libICE
x11-libs/libX11
- media-libs/libpng"
+ media-libs/libpng:0"
DEPEND="${RDEPEND}
x11-libs/libXt"
^ permalink raw reply related [flat|nested] 5+ messages in thread
* [gentoo-commits] repo/gentoo:master commit in: games-action/xblast/
@ 2017-01-31 0:59 Austin English
0 siblings, 0 replies; 5+ messages in thread
From: Austin English @ 2017-01-31 0:59 UTC (permalink / raw
To: gentoo-commits
commit: 3e08015ce5098d652cbaeb6755a9633a68071859
Author: Austin English <wizardedit <AT> gentoo <DOT> org>
AuthorDate: Tue Jan 31 00:33:28 2017 +0000
Commit: Austin English <wizardedit <AT> gentoo <DOT> org>
CommitDate: Tue Jan 31 00:59:22 2017 +0000
URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=3e08015c
games-action/xblast: remove deprecated games eclass
Also update to EAPI 6
Gentoo-Bug: https://bugs.gentoo.org/574082
Package-Manager: Portage-2.3.2, Repoman-2.3.1
games-action/xblast/xblast-2.10.4-r1.ebuild | 71 +++++++++++++++++++++++++++++
1 file changed, 71 insertions(+)
diff --git a/games-action/xblast/xblast-2.10.4-r1.ebuild b/games-action/xblast/xblast-2.10.4-r1.ebuild
new file mode 100644
index 00000000..488b6a7
--- /dev/null
+++ b/games-action/xblast/xblast-2.10.4-r1.ebuild
@@ -0,0 +1,71 @@
+# Copyright 1999-2017 Gentoo Foundation
+# Distributed under the terms of the GNU General Public License v2
+# $Id$
+
+EAPI=6
+inherit autotools
+
+# Change these as releases changes
+IMAGES="images-2005-01-06"
+LEVELS="levels-2005-01-06"
+MODELS="models-2005-01-06"
+MUSICS="musics-2005-01-06"
+SOUNDS="sounds"
+
+DESCRIPTION="Bomberman clone w/network support for up to 6 players"
+HOMEPAGE="http://xblast.sourceforge.net/"
+SRC_URI="mirror://sourceforge/xblast/${P}.tar.gz
+ mirror://sourceforge/xblast/${IMAGES}.tar.gz
+ mirror://sourceforge/xblast/${LEVELS}.tar.gz
+ mirror://sourceforge/xblast/${MODELS}.tar.gz
+ mirror://sourceforge/xblast/${MUSICS}.tar.gz
+ mirror://sourceforge/xblast/${SOUNDS}.tar.gz"
+
+LICENSE="GPL-2"
+SLOT="0"
+KEYWORDS="~amd64 ~ppc ~x86"
+IUSE=""
+
+RDEPEND="
+ media-libs/libpng:0
+ x11-libs/libICE
+ x11-libs/libX11"
+DEPEND="${RDEPEND}
+ x11-libs/libXt"
+
+src_prepare() {
+ default
+
+ eautoreconf #255857
+}
+
+src_configure() {
+ econf \
+ --with-otherdatadir=/usr/share/${PN} \
+ --enable-sound
+}
+
+src_install() {
+ local IMAGE_INSTALL_DIR="/usr/share/${PN}/image"
+
+ default
+
+ # Images
+ dodir "${IMAGE_INSTALL_DIR}"
+ cp -pPR "${WORKDIR}/${IMAGES}"/* "${D}/${IMAGE_INSTALL_DIR}" || die
+
+ # Levels
+ insinto "$/usr/share/${PN}/level"
+ doins "${WORKDIR}/${LEVELS}"/*
+
+ # Models
+ insinto "/usr/share/${PN}/image/sprite"
+ doins "${WORKDIR}/${MODELS}"/*
+
+ # Music and sound
+ insinto "/usr/share/${PN}/sounds"
+ doins "${WORKDIR}/${MUSICS}"/* "${WORKDIR}/${SOUNDS}"/*
+
+ # Cleanup
+ find "${D}" -name Imakefile -exec rm \{\} \;
+}
^ permalink raw reply related [flat|nested] 5+ messages in thread
* [gentoo-commits] repo/gentoo:master commit in: games-action/xblast/
@ 2017-11-23 20:53 Jonas Stein
0 siblings, 0 replies; 5+ messages in thread
From: Jonas Stein @ 2017-11-23 20:53 UTC (permalink / raw
To: gentoo-commits
commit: b1c7bf9f16da2859a7c1856f1a6b03ff58f1cf43
Author: Jonas Stein <jstein <AT> gentoo <DOT> org>
AuthorDate: Thu Nov 23 20:52:30 2017 +0000
Commit: Jonas Stein <jstein <AT> gentoo <DOT> org>
CommitDate: Thu Nov 23 20:52:42 2017 +0000
URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=b1c7bf9f
games-action/xblast: Fix broken installation folder
Simple fix of
insinto "$/usr/share/${PN}/level"
Acked-by: James Le Cuirot <chewi <AT> gentoo.org>
Closes: https://bugs.gentoo.org/638614
Package-Manager: Portage-2.3.16, Repoman-2.3.5
games-action/xblast/xblast-2.10.4-r1.ebuild | 2 +-
1 file changed, 1 insertion(+), 1 deletion(-)
diff --git a/games-action/xblast/xblast-2.10.4-r1.ebuild b/games-action/xblast/xblast-2.10.4-r1.ebuild
index eb24fa6b649..72666813a3c 100644
--- a/games-action/xblast/xblast-2.10.4-r1.ebuild
+++ b/games-action/xblast/xblast-2.10.4-r1.ebuild
@@ -54,7 +54,7 @@ src_install() {
cp -pPR "${WORKDIR}/${IMAGES}"/* "${D}/${IMAGE_INSTALL_DIR}" || die
# Levels
- insinto "$/usr/share/${PN}/level"
+ insinto "/usr/share/${PN}/level"
doins "${WORKDIR}/${LEVELS}"/*
# Models
^ permalink raw reply related [flat|nested] 5+ messages in thread
* [gentoo-commits] repo/gentoo:master commit in: games-action/xblast/
@ 2021-09-16 23:15 Ionen Wolkens
0 siblings, 0 replies; 5+ messages in thread
From: Ionen Wolkens @ 2021-09-16 23:15 UTC (permalink / raw
To: gentoo-commits
commit: e3fcf31b76bf18de67dcb4cc1eb7670e3ca627cc
Author: Ionen Wolkens <ionen <AT> gentoo <DOT> org>
AuthorDate: Thu Sep 16 21:51:11 2021 +0000
Commit: Ionen Wolkens <ionen <AT> gentoo <DOT> org>
CommitDate: Thu Sep 16 23:14:35 2021 +0000
URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=e3fcf31b
games-action/xblast: EAPI6->8, fix filename, add font dep
Game crashes immediately if font is missing.
Also add a basic .desktop entry.
Closes: https://bugs.gentoo.org/750077
Signed-off-by: Ionen Wolkens <ionen <AT> gentoo.org>
games-action/xblast/xblast-2.10.4-r1.ebuild | 74 -----------------------------
games-action/xblast/xblast-2.10.4-r2.ebuild | 65 +++++++++++++++++++++++++
2 files changed, 65 insertions(+), 74 deletions(-)
diff --git a/games-action/xblast/xblast-2.10.4-r1.ebuild b/games-action/xblast/xblast-2.10.4-r1.ebuild
deleted file mode 100644
index 3da27dd600a..00000000000
--- a/games-action/xblast/xblast-2.10.4-r1.ebuild
+++ /dev/null
@@ -1,74 +0,0 @@
-# Copyright 1999-2020 Gentoo Authors
-# Distributed under the terms of the GNU General Public License v2
-
-EAPI=6
-inherit autotools
-
-# Change these as releases changes
-IMAGES="images-2005-01-06"
-LEVELS="levels-2005-01-06"
-MODELS="models-2005-01-06"
-MUSICS="musics-2005-01-06"
-SOUNDS="sounds"
-
-DESCRIPTION="Bomberman clone w/network support for up to 6 players"
-HOMEPAGE="http://xblast.sourceforge.net/"
-SRC_URI="mirror://sourceforge/xblast/${P}.tar.gz
- mirror://sourceforge/xblast/${IMAGES}.tar.gz
- mirror://sourceforge/xblast/${LEVELS}.tar.gz
- mirror://sourceforge/xblast/${MODELS}.tar.gz
- mirror://sourceforge/xblast/${MUSICS}.tar.gz
- mirror://sourceforge/xblast/${SOUNDS}.tar.gz"
-
-LICENSE="GPL-2"
-SLOT="0"
-KEYWORDS="~amd64 ~x86"
-IUSE=""
-
-RDEPEND="
- media-libs/libpng:0
- x11-libs/libICE
- x11-libs/libX11"
-DEPEND="${RDEPEND}
- x11-libs/libXt"
-
-PATCHES=(
- "${FILESDIR}"/${P}-gcc-10.patch
-)
-
-src_prepare() {
- default
-
- eautoreconf #255857
-}
-
-src_configure() {
- econf \
- --with-otherdatadir=/usr/share/${PN} \
- --enable-sound
-}
-
-src_install() {
- local IMAGE_INSTALL_DIR="/usr/share/${PN}/image"
-
- default
-
- # Images
- dodir "${IMAGE_INSTALL_DIR}"
- cp -pPR "${WORKDIR}/${IMAGES}"/* "${D}/${IMAGE_INSTALL_DIR}" || die
-
- # Levels
- insinto "/usr/share/${PN}/level"
- doins "${WORKDIR}/${LEVELS}"/*
-
- # Models
- insinto "/usr/share/${PN}/image/sprite"
- doins "${WORKDIR}/${MODELS}"/*
-
- # Music and sound
- insinto "/usr/share/${PN}/sounds"
- doins "${WORKDIR}/${MUSICS}"/* "${WORKDIR}/${SOUNDS}"/*
-
- # Cleanup
- find "${D}" -name Imakefile -exec rm \{\} \;
-}
diff --git a/games-action/xblast/xblast-2.10.4-r2.ebuild b/games-action/xblast/xblast-2.10.4-r2.ebuild
new file mode 100644
index 00000000000..0f7e212495e
--- /dev/null
+++ b/games-action/xblast/xblast-2.10.4-r2.ebuild
@@ -0,0 +1,65 @@
+# Copyright 1999-2021 Gentoo Authors
+# Distributed under the terms of the GNU General Public License v2
+
+EAPI=8
+
+inherit autotools desktop
+
+MY_GAMEDATA=(
+ images-2005-01-06:image
+ levels-2005-01-06:level
+ models-2005-01-06:image/sprite
+ musics-2005-01-06:sounds
+ sounds
+)
+
+DESCRIPTION="Bomberman clone with network support for up to 6 players"
+HOMEPAGE="http://xblast.sourceforge.net/"
+SRC_URI="
+ mirror://sourceforge/xblast/${P}.tar.gz
+ $(printf 'mirror://sourceforge/xblast/%s.tar.gz ' "${MY_GAMEDATA[@]%:*}")"
+
+LICENSE="GPL-2+"
+SLOT="0"
+KEYWORDS="~amd64 ~x86"
+
+RDEPEND="
+ x11-libs/libX11
+ media-fonts/font-adobe-100dpi"
+DEPEND="
+ x11-base/xorg-proto
+ x11-libs/libX11
+ x11-libs/libXt"
+
+PATCHES=(
+ "${FILESDIR}"/${P}-gcc-10.patch
+)
+
+src_prepare() {
+ default
+
+ find "${WORKDIR}" -name Imakefile -exec rm {} + || die
+
+ # badly non-utf8 named file that doesn't match xblast.wxs runtime #750077
+ mv "${WORKDIR}"/levels-2005-01-06/reconstruct{?,i}on2.xal || die
+
+ eautoreconf #255857
+}
+
+src_configure() {
+ econf \
+ --enable-sound \
+ --with-otherdatadir="${EPREFIX}"/usr/share/${PN}
+}
+
+src_install() {
+ default
+
+ local data
+ for data in "${MY_GAMEDATA[@]}"; do
+ insinto /usr/share/${PN}/${data#*:}
+ doins -r "${WORKDIR}"/${data%:*}/.
+ done
+
+ make_desktop_entry ${PN} XBlast applications-games
+}
^ permalink raw reply related [flat|nested] 5+ messages in thread
end of thread, other threads:[~2021-09-16 23:15 UTC | newest]
Thread overview: 5+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2017-01-31 0:59 [gentoo-commits] repo/gentoo:master commit in: games-action/xblast/ Austin English
-- strict thread matches above, loose matches on Subject: below --
2021-09-16 23:15 Ionen Wolkens
2017-11-23 20:53 Jonas Stein
2015-12-18 10:13 Michael Sterrett
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