blob: 0c5407640f28ec1fc8528cf8b400532f5980eec6 (
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
|
# Copyright 1999-2024 Gentoo Authors
# Distributed under the terms of the GNU General Public License v2
EAPI=8
MY_PN="ZeldaROTH_US-src-linux"
inherit desktop
DESCRIPTION="The Legend of Zelda - Return of the Hylian"
HOMEPAGE="http://www.zeldaroth.fr/us/zroth.php"
SRC_URI="http://www.zeldaroth.fr/us/files/ROTH/Linux/${MY_PN}.zip"
LICENSE="public-domain"
SLOT="0"
KEYWORDS="~amd64 ~x86"
RDEPEND="
media-libs/libsdl
media-libs/sdl-gfx
media-libs/sdl-image
media-libs/sdl-mixer[midi]
"
S="${WORKDIR}/${MY_PN}/src"
PATCHES=( "${FILESDIR}/${PN}-homedir.patch" )
src_prepare() {
default
sed -i -e "s:ZeldaROTH_US:"${PN}":g" -i Makefile || die
sed -i -e "s:CFLAGS =:#CFLAGS =:g" -i Makefile || die
for i in `find . -name "*.cpp"`; do
sed -i "$i" -e "s:data/:/usr/share/"${PN}"/data/:g" || die;
done
}
src_install() {
dobin ${PN}
insinto "/usr/share/${PN}"
doins -r data || die "data install failed"
newicon data/images/logos/triforce.ico ${PN}.png
make_desktop_entry ${PN}
}
|