blob: 0383afc0b2b3ab4096901e0d9bd38e36012f1567 (
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
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
|
# Copyright 1999-2018 Gentoo Foundation
# Distributed under the terms of the GNU General Public License v2
EAPI=6
inherit desktop
DESCRIPTION="Help West Muldune escape from a futuristic mental hospital"
HOMEPAGE="http://members.fortunecity.com/rivalentertainment/iox.html"
# Upstream has download issues.
#SRC_URI="http://members.fortunecity.com/rivalentertainment/io${PV}.tar.gz"
SRC_URI="mirror://gentoo/io${PV}.tar.gz"
LICENSE="GPL-2"
SLOT="0"
KEYWORDS="~amd64 ~x86"
IUSE=""
DEPEND="media-libs/libsdl[sound,video]
media-libs/sdl-mixer
media-libs/sdl-image
"
RDEPEND="${DEPEND}"
S="${WORKDIR}/${PN}"
src_prepare() {
default
cd ${PN}
# Modify data load code and paths to game data
eapply "${FILESDIR}"/${P}-datafiles.patch
eapply "${FILESDIR}"/${P}-gcc6.patch
sed -i \
-e "/lvl/s:^:/usr/share/${PN}/:" \
-e "s:night:/usr/share/${PN}/night:" \
levels.dat || die
sed -i \
-e "s:tiles.dat:/usr/share/${PN}/tiles.dat:" \
-e "s:sprites.dat:/usr/share/${PN}/sprites.dat:" \
-e "s:levels.dat:/usr/share/${PN}/levels.dat:" \
-e "s:IO_T:/usr/share/${PN}/IO_T:" \
-e "s:tiles.att:/usr/share/${PN}/tiles.att:" \
-e "s:shot:/usr/share/${PN}/shot:" \
io.cpp || die
sed -i \
-e 's:\[32:[100:' \
io.h || die
}
src_install() {
cd ${PN}
dobin ${PN}
insinto /usr/share/${PN}
doins *bmp *png *dat *att *lvl *wav *mod *IT
newicon west00r.png ${PN}.png
make_desktop_entry ${PN} "Insane Odyssey"
}
|