summaryrefslogtreecommitdiff
path: root/games-action
diff options
context:
space:
mode:
authorArthur Zamarin <arthurzam@gentoo.org>2025-04-12 22:06:27 +0300
committerArthur Zamarin <arthurzam@gentoo.org>2025-04-12 22:15:42 +0300
commit6f71fd7ebc85593285fa44b279f2c79aa65df6bf (patch)
tree0b6762f178914e1d398f5ff52155d7e597781c04 /games-action
parent88050688a68258e389a76b15345e080f64dc1f09 (diff)
downloadgentoo-6f71fd7ebc85593285fa44b279f2c79aa65df6bf.tar.gz
gentoo-6f71fd7ebc85593285fa44b279f2c79aa65df6bf.tar.bz2
gentoo-6f71fd7ebc85593285fa44b279f2c79aa65df6bf.zip
games-action/maelstrom: drop 3.0.6-r3, EAPI=7--
Signed-off-by: Arthur Zamarin <arthurzam@gentoo.org>
Diffstat (limited to 'games-action')
-rw-r--r--games-action/maelstrom/maelstrom-3.0.6-r3.ebuild64
1 files changed, 0 insertions, 64 deletions
diff --git a/games-action/maelstrom/maelstrom-3.0.6-r3.ebuild b/games-action/maelstrom/maelstrom-3.0.6-r3.ebuild
deleted file mode 100644
index 876d5e623818..000000000000
--- a/games-action/maelstrom/maelstrom-3.0.6-r3.ebuild
+++ /dev/null
@@ -1,64 +0,0 @@
-# Copyright 1999-2023 Gentoo Authors
-# Distributed under the terms of the GNU General Public License v2
-
-EAPI=7
-
-inherit autotools desktop
-
-DESCRIPTION="An asteroids battle game"
-HOMEPAGE="http://www.libsdl.org/projects/Maelstrom/"
-SRC_URI="http://www.libsdl.org/projects/Maelstrom/src/${P^}.tar.gz"
-
-LICENSE="GPL-2"
-SLOT="0"
-KEYWORDS="~amd64 ~x86"
-
-DEPEND="
- acct-group/gamestat
- media-libs/libsdl[sound,joystick,video]
- media-libs/sdl-net"
-RDEPEND="${DEPEND}"
-
-S="${WORKDIR}/${P^}"
-
-PATCHES=(
- "${FILESDIR}"/${P}-security.patch
- "${FILESDIR}"/${P}-64bits.patch
- "${FILESDIR}"/${P}-gcc34.patch
- "${FILESDIR}"/${P}-warnings.patch
- "${FILESDIR}"/${P}-gcc53.patch
- "${FILESDIR}"/${P}-autotools.patch
-)
-
-src_prepare() {
- default
-
- # Install the high scores file in ${GAMES_STATEDIR}
- sed -i \
- -e "s:path.Path(MAELSTROM_SCORES):\"/var/games/\"MAELSTROM_SCORES:" scores.cpp || die
- mv configure.{in,ac} || die
- rm aclocal.m4 acinclude.m4 || die
- eautoreconf
-}
-
-src_install() {
- default
- dodoc Changelog Docs/{Maelstrom-Announce,*FAQ,MaelstromGPL_press_release,*.Paper,Technical_Notes*}
-
- newicon "${ED}"/usr/share/Maelstrom/icon.xpm maelstrom.xpm
- make_desktop_entry Maelstrom "Maelstrom" maelstrom
-
- # Put the high scores file in the right place
- insinto /var/games
- doins "${ED}"/usr/share/Maelstrom/Maelstrom-Scores
-
- # clean up some cruft
- rm \
- "${ED}"/usr/share/Maelstrom/Maelstrom-Scores \
- "${ED}"/usr/share/Maelstrom/Images/Makefile* || die
-
- # make sure we can update the high scores
- fowners root:gamestat /var/games/Maelstrom-Scores /usr/bin/Maelstrom{,-netd}
- fperms 2755 /usr/bin/Maelstrom{,-netd}
- fperms 660 /var/games/Maelstrom-Scores
-}