From 7a4a8c369b47bf3594cea4856cb4e27e5d7eb8c3 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Petr=20Van=C4=9Bk?= Date: Thu, 15 May 2025 08:57:37 +0200 Subject: [PATCH] games-arcade/orthorobot: drop 0-r1 MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit Signed-off-by: Petr Vaněk --- .../orthorobot/orthorobot-0-r1.ebuild | 44 ------------------- 1 file changed, 44 deletions(-) delete mode 100644 games-arcade/orthorobot/orthorobot-0-r1.ebuild diff --git a/games-arcade/orthorobot/orthorobot-0-r1.ebuild b/games-arcade/orthorobot/orthorobot-0-r1.ebuild deleted file mode 100644 index 387a153a6b68..000000000000 --- a/games-arcade/orthorobot/orthorobot-0-r1.ebuild +++ /dev/null @@ -1,44 +0,0 @@ -# Copyright 1999-2021 Gentoo Authors -# Distributed under the terms of the GNU General Public License v2 - -EAPI=7 - -inherit desktop wrapper - -DESCRIPTION="Perspective based puzzle game, where you flatten the view to move across gaps" -HOMEPAGE="https://stabyourself.net/orthorobot/" -SRC_URI="https://stabyourself.net/dl.php?file=${PN}/${PN}-source.zip -> ${P}.zip" -S="${WORKDIR}" - -LICENSE="CC-BY-NC-ND-3.0" -SLOT="0" -KEYWORDS="~amd64 ~x86" - -RDEPEND=">=games-engines/love-0.8.0:0" -BDEPEND="app-arch/unzip" - -src_unpack() { - default - - # It is only one .love file (but with crappy name), so we can use asterisk - mv *.love "${P}.zip" || die "mv failed" - unpack "./${P}.zip" - - rm "${P}.zip" || die "rm failed" -} - -src_prepare() { - default - - # Fix error on quit - sed -i -e 's/love.event.push("q")/love.event.push(fadegoal)/' menu.lua || die "sed failed" -} - -src_install() { - local dir=/usr/share/love/${PN} - insinto ${dir} - - doins -r . - make_wrapper "${PN}" "love ${dir}" - make_desktop_entry "${PN}" -}