commit:     7b1aa8916856ce46d06bff6af32f03f4529b5fa7
Author:     BetaRays <BetaRays <AT> protonmail <DOT> com>
AuthorDate: Tue Jul 17 18:22:50 2018 +0000
Commit:     Michał Górny <mgorny <AT> gentoo <DOT> org>
CommitDate: Fri Jul 20 21:02:03 2018 +0000
URL:        https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=7b1aa891

games-arcade/orthorobot: Update love dependency

Package-Manager: Portage-2.3.40, Repoman-2.3.9

 games-arcade/orthorobot/orthorobot-0-r2.ebuild | 41 ++++++++++++++++++++++++++
 1 file changed, 41 insertions(+)

diff --git a/games-arcade/orthorobot/orthorobot-0-r2.ebuild 
b/games-arcade/orthorobot/orthorobot-0-r2.ebuild
new file mode 100644
index 00000000000..d8730666312
--- /dev/null
+++ b/games-arcade/orthorobot/orthorobot-0-r2.ebuild
@@ -0,0 +1,41 @@
+# Copyright 1999-2018 Gentoo Foundation
+# Distributed under the terms of the GNU General Public License v2
+
+EAPI=6
+inherit eutils
+
+DESCRIPTION="Perspective based puzzle game, where you flatten the view to move 
across gaps"
+HOMEPAGE="http://stabyourself.net/orthorobot/";
+SRC_URI="http://stabyourself.net/dl.php?file=${PN}/${PN}-source.zip -> 
${P}.zip"
+
+LICENSE="CC-BY-NC-ND-3.0"
+SLOT="0"
+KEYWORDS="~amd64 ~x86"
+
+LVSLOT="0.8"
+RDEPEND="games-engines/love:${LVSLOT}"
+DEPEND="app-arch/unzip"
+
+S="${WORKDIR}"
+
+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-${LVSLOT} ${dir}"
+       make_desktop_entry "${PN}"
+}

Reply via email to