summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorJames Le Cuirot <chewi@gentoo.org>2024-08-02 23:05:42 +0100
committerJames Le Cuirot <chewi@gentoo.org>2024-08-02 23:05:42 +0100
commitfcbaea8f4a4ecc1516e7fac43de1d54155b27393 (patch)
tree1180f9ffc56aa459546d0466320ddcca60907c72 /games-action
parentgames-action/armagetronad: add 0.2.9.2.3 (diff)
downloadgentoo-fcbaea8f4a4ecc1516e7fac43de1d54155b27393.tar.gz
gentoo-fcbaea8f4a4ecc1516e7fac43de1d54155b27393.tar.bz2
gentoo-fcbaea8f4a4ecc1516e7fac43de1d54155b27393.zip
games-action/armagetronad: Drop old 0.2.9.1.0
Signed-off-by: James Le Cuirot <chewi@gentoo.org>
Diffstat (limited to 'games-action')
-rw-r--r--games-action/armagetronad/Manifest1
-rw-r--r--games-action/armagetronad/armagetronad-0.2.9.1.0.ebuild64
2 files changed, 0 insertions, 65 deletions
diff --git a/games-action/armagetronad/Manifest b/games-action/armagetronad/Manifest
index 9aa1fc7dcad3..bf493c1b8248 100644
--- a/games-action/armagetronad/Manifest
+++ b/games-action/armagetronad/Manifest
@@ -1,2 +1 @@
-DIST armagetronad-0.2.9.1.0.tbz 1943758 BLAKE2B ed4ecef19125d69faf402829b88288124dd364eafc836be3848727c2bfbd87ca29e18b48448dc868fb995947b2daae150c3b9f5dcf048d0d90d442f5bcf425f0 SHA512 8c2b9cba7d480dec6d7d60984327a5d45c8c87b968fb81a1e192973e6826ddb66c8d41ca82bb04d80da5c6fa2152d19dd890957dabc6cc5ce2d4dffbc45d1f65
DIST armagetronad-0.2.9.2.3.tbz 1834233 BLAKE2B 9b7d09ca7952ffe67a50be01c44adef81640e8cf222158477f66487ea89c7b25e1675bb9308ba71023ce045a4ea739891ce2273d5aa017cef2fa81128c71774c SHA512 813911a75fa1b3a90d99d62c0c38e9b325166623280c0d6a8217f8ca905b4a4617401db12bda898d82aa086a1bd673b31741b95b60b0f1247e6a5677a48c98eb
diff --git a/games-action/armagetronad/armagetronad-0.2.9.1.0.ebuild b/games-action/armagetronad/armagetronad-0.2.9.1.0.ebuild
deleted file mode 100644
index 93180672cd3d..000000000000
--- a/games-action/armagetronad/armagetronad-0.2.9.1.0.ebuild
+++ /dev/null
@@ -1,64 +0,0 @@
-# Copyright 1999-2021 Gentoo Authors
-# Distributed under the terms of the GNU General Public License v2
-
-EAPI=7
-
-inherit autotools desktop
-
-DESCRIPTION="Fast-paced 3D lightcycle game based on Tron"
-HOMEPAGE="http://armagetronad.org/"
-SRC_URI="https://launchpad.net/armagetronad/$(ver_cut 1-3)/${PV}/+download/armagetronad-${PV}.tbz"
-
-LICENSE="GPL-2+"
-SLOT="0"
-KEYWORDS="~amd64 ~x86"
-IUSE="dedicated sound"
-
-RDEPEND="
- dev-libs/libxml2
- !dedicated? (
- media-libs/libpng:0=
- media-libs/libsdl[X,opengl,video,sound?]
- media-libs/sdl-image[jpeg,png]
- virtual/glu
- virtual/opengl
- sound? ( media-libs/sdl-mixer )
- )"
-DEPEND="${RDEPEND}"
-
-PATCHES=(
- "${FILESDIR}"/${P}-AR.patch
-)
-
-src_prepare() {
- default
-
- eautoreconf
-}
-
-src_configure() {
- local econfargs=(
- $(use_enable dedicated)
- $(use_enable sound music)
- # following options only mess with paths and users
- --disable-games
- --disable-sysinstall
- --disable-uninstall
- --disable-useradd
- )
- econf ${econfargs[@]}
-}
-
-src_install() {
- # long history of being broken without -j1 (bug #330705,698020)
- # do not remove (again) without a proper fix or extensive tests
- emake -j1 DESTDIR="${D}" install
- einstalldocs
-
- # handle misplaced .desktop / icons
- if ! use dedicated; then
- rm -r "${ED}"/usr/share/${PN}/desktop || die
- doicon desktop/icons/48x48/armagetronad.png
- make_desktop_entry ${PN}
- fi
-}