diff options
author | Stefan Strogin <steils@gentoo.org> | 2020-02-14 03:59:22 +0200 |
---|---|---|
committer | Stefan Strogin <steils@gentoo.org> | 2020-02-14 04:10:11 +0200 |
commit | 4c0fda88a281ca340ccb3849a166e010552a1b18 (patch) | |
tree | e339e2f56c759eeb11ce96d6daf9c59c522bbc07 /games-puzzle/tod/tod-0-r2.ebuild | |
parent | www-client/firefox-bin: revbump for new apulse logic (diff) | |
download | gentoo-4c0fda88a281ca340ccb3849a166e010552a1b18.tar.gz gentoo-4c0fda88a281ca340ccb3849a166e010552a1b18.tar.bz2 gentoo-4c0fda88a281ca340ccb3849a166e010552a1b18.zip |
games-puzzle/tod: add patch to fix fixed point math functions
Closes: https://bugs.gentoo.org/697090
Package-Manager: Portage-2.3.88, Repoman-2.3.20
Signed-off-by: Stefan Strogin <steils@gentoo.org>
Diffstat (limited to 'games-puzzle/tod/tod-0-r2.ebuild')
-rw-r--r-- | games-puzzle/tod/tod-0-r2.ebuild | 38 |
1 files changed, 38 insertions, 0 deletions
diff --git a/games-puzzle/tod/tod-0-r2.ebuild b/games-puzzle/tod/tod-0-r2.ebuild new file mode 100644 index 000000000000..9de46566b137 --- /dev/null +++ b/games-puzzle/tod/tod-0-r2.ebuild @@ -0,0 +1,38 @@ +# Copyright 1999-2020 Gentoo Authors +# Distributed under the terms of the GNU General Public License v2 + +EAPI=7 + +inherit desktop + +DESCRIPTION="Tetanus On Drugs simulates playing Tetris under the influence of drugs" +HOMEPAGE="http://www.pineight.com/tod/" +SRC_URI="http://www.pineight.com/pc/win${PN}.zip" + +LICENSE="GPL-2" +SLOT="0" +KEYWORDS="~amd64 ~x86" +IUSE="" + +RDEPEND="media-libs/allegro:0[X]" +DEPEND="${RDEPEND} + app-arch/unzip" + +S="${WORKDIR}" + +src_prepare() { + default + eapply "${FILESDIR}"/${P}-makefile.patch + eapply "${FILESDIR}"/${P}-allegro.patch + sed -i \ + -e "s:idltd\.dat:/usr/share/${PN}/idltd.dat:" \ + rec.c || die +} + +src_install() { + newbin tod-debug.exe tod + insinto /usr/share/${PN} + doins idltd.dat + dodoc readme.txt + make_desktop_entry ${PN} "Tetanus On Drugs" +} |