commit: 7a4a8c369b47bf3594cea4856cb4e27e5d7eb8c3 Author: Petr Vaněk <arkamar <AT> gentoo <DOT> org> AuthorDate: Thu May 15 06:57:37 2025 +0000 Commit: Petr Vaněk <arkamar <AT> gentoo <DOT> org> CommitDate: Thu May 15 07:21:30 2025 +0000 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=7a4a8c36
games-arcade/orthorobot: drop 0-r1 Signed-off-by: Petr Vaněk <arkamar <AT> gentoo.org> games-arcade/orthorobot/orthorobot-0-r1.ebuild | 44 -------------------------- 1 file changed, 44 deletions(-) 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}" -}