summaryrefslogtreecommitdiff
blob: 0ed9a29063f0c7c3a634782e9913c7eb181364eb (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
# Copyright 1999-2018 Gentoo Foundation
# Distributed under the terms of the GNU General Public License v2

EAPI=6
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
	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"
}