summaryrefslogtreecommitdiff
path: root/games-action/bomberclone
diff options
context:
space:
mode:
authorroot <root@alpha.trunkmasters.com>2026-06-12 11:50:53 -0500
committerroot <root@alpha.trunkmasters.com>2026-06-12 11:50:53 -0500
commit290aebdea65a02557706eaeda477fef0437b6a48 (patch)
treef87a939169a508a2e943570501b64cc16b411cda /games-action/bomberclone
parent6783ddcd4b73d9ce586a71770caed352bec93b16 (diff)
downloadbaldeagleos-repo-290aebdea65a02557706eaeda477fef0437b6a48.tar.gz
baldeagleos-repo-290aebdea65a02557706eaeda477fef0437b6a48.tar.xz
baldeagleos-repo-290aebdea65a02557706eaeda477fef0437b6a48.zip
Adding metadata
Diffstat (limited to 'games-action/bomberclone')
-rw-r--r--games-action/bomberclone/Manifest1
-rw-r--r--games-action/bomberclone/bomberclone-0.11.9-r1.ebuild55
-rw-r--r--games-action/bomberclone/files/bomberclone-0.11.8-gcc52.patch11
-rw-r--r--games-action/bomberclone/files/bomberclone-0.11.9-C23.patch15
-rw-r--r--games-action/bomberclone/metadata.xml9
5 files changed, 0 insertions, 91 deletions
diff --git a/games-action/bomberclone/Manifest b/games-action/bomberclone/Manifest
deleted file mode 100644
index d20cb44dcb5a..000000000000
--- a/games-action/bomberclone/Manifest
+++ /dev/null
@@ -1 +0,0 @@
-DIST bomberclone-0.11.9.tar.gz 8109837 BLAKE2B b5ec7cc80b2fe4f7517302029e5e943dd673ce910148f5985a9063f19e67c5fbdb21634f8fead60728b900383f24b67b1fc2b27d1a36c07ab1cfae8f228a4fb7 SHA512 80b3db728d7c54bc421a783c7e3753289e1ecb8500e9c8457d92ce226ebe60f47c2b04fd684c1aae57b1c5968ea3d1fce53c9c269a1fc9e685589fdd0513a439
diff --git a/games-action/bomberclone/bomberclone-0.11.9-r1.ebuild b/games-action/bomberclone/bomberclone-0.11.9-r1.ebuild
deleted file mode 100644
index 555c5227edea..000000000000
--- a/games-action/bomberclone/bomberclone-0.11.9-r1.ebuild
+++ /dev/null
@@ -1,55 +0,0 @@
-# Copyright 1999-2026 Gentoo Authors
-# Distributed under the terms of the GNU General Public License v2
-
-EAPI=8
-
-inherit autotools desktop xdg-utils
-
-DESCRIPTION="Bomberman clone with network game support"
-HOMEPAGE="https://www.bomberclone.de/"
-SRC_URI="https://downloads.sourceforge.net/${PN}/${P}.tar.gz"
-LICENSE="GPL-2"
-SLOT="0"
-KEYWORDS="~amd64 ~mips ~ppc64 ~x86"
-
-DEPEND=">=media-libs/libsdl-1.1.0[video]
- media-libs/sdl-image[png]
- media-libs/sdl-mixer[mod]"
-
-RDEPEND="${DEPEND}"
-
-PATCHES=(
- "${FILESDIR}"/"${PN}"-0.11.8-gcc52.patch
- "${FILESDIR}"/"${PN}"-0.11.9-C23.patch
-)
-
-src_prepare() {
- default
-
- mv -v configure.{in,ac} || die
- sed -i 's/configure\.in/configure.ac/g' configure.ac || die
- eautoreconf
-}
-
-src_configure() {
- LIBS="-lm" \
- econf \
- --disable-werror \
- --without-x
-}
-
-src_install() {
- emake \
- DESTDIR="${D}" \
- bomberclonedocdir=\${prefix}/share/doc/${PF} \
- install
-
- doicon -s 64 data/pixmaps/${PN}.png
- make_desktop_entry ${PN} Bomberclone
-
- # Delete useless documentation.
- rm -v "${ED}"/usr/share/doc/${PF}/{COPYING,INSTALL,*.nsi} || die
-}
-
-pkg_postinst() { xdg_icon_cache_update; }
-pkg_postrm() { xdg_icon_cache_update; }
diff --git a/games-action/bomberclone/files/bomberclone-0.11.8-gcc52.patch b/games-action/bomberclone/files/bomberclone-0.11.8-gcc52.patch
deleted file mode 100644
index fd77e1b7b1d6..000000000000
--- a/games-action/bomberclone/files/bomberclone-0.11.8-gcc52.patch
+++ /dev/null
@@ -1,11 +0,0 @@
---- a/src/single.c 2015-09-17 09:21:57.826930680 +0200
-+++ b/src/single.c 2015-09-17 09:22:04.315824372 +0200
-@@ -476,7 +476,7 @@
- };
-
-
--inline int
-+static inline int
- ai_checknewpos (_point pos, int d)
- {
- _point m;
diff --git a/games-action/bomberclone/files/bomberclone-0.11.9-C23.patch b/games-action/bomberclone/files/bomberclone-0.11.9-C23.patch
deleted file mode 100644
index 1ff7442a0819..000000000000
--- a/games-action/bomberclone/files/bomberclone-0.11.9-C23.patch
+++ /dev/null
@@ -1,15 +0,0 @@
-https://bugs.gentoo.org/966498
-Fixes compilation with C23 compilers
---- a/include/bomberclone.h
-+++ b/include/bomberclone.h
-@@ -123,8 +123,8 @@
- extern void game_start();
- extern void game_showresult ();
- extern int game_check_endgame ();
--extern void game_showresultnormal ();
--extern void game_showresultteam ();
-+extern void game_showresultnormal (int pos_x, int pos_y, int pos_w, int pos_h);
-+extern void game_showresultteam (int pos_x, int pos_y, int pos_w, int pos_h);
- extern void game_menu_create ();
- extern void game_menu_loop (SDL_Event *event, int eventstate);
- extern void game_resetdata ();
diff --git a/games-action/bomberclone/metadata.xml b/games-action/bomberclone/metadata.xml
deleted file mode 100644
index 183ecc5ceeeb..000000000000
--- a/games-action/bomberclone/metadata.xml
+++ /dev/null
@@ -1,9 +0,0 @@
-<?xml version="1.0" encoding="UTF-8"?>
-<!DOCTYPE pkgmetadata SYSTEM "https://docs.baldeagleos.com/dtd/metadata.dtd">
-<pkgmetadata>
- <maintainer type="project">
- <email>games@gentoo.org</email>
- <name>Gentoo Games Project</name>
- </maintainer>
- <origin>baldeagleos-repo</origin>
-</pkgmetadata>