blob: a7530fbd19539c6bb46cdf79288818093b3b379f (
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
|
# Copyright 1999-2021 Gentoo Authors
# Distributed under the terms of the GNU General Public License v2
EAPI=8
inherit autotools desktop
DESCRIPTION="2D horizontal scroll shooting game"
HOMEPAGE="http://triring.net/ps2linux/games/kxl/kxlgames.html"
SRC_URI="
mirror://gentoo/${P}.tar.gz
mirror://gentoo/${PN}.png"
LICENSE="GPL-2"
SLOT="0"
KEYWORDS="~amd64 ~x86"
DEPEND="
acct-group/gamestat
dev-games/KXL"
RDEPEND="
${DEPEND}
media-fonts/font-adobe-100dpi
media-fonts/font-bitstream-100dpi"
PATCHES=(
"${FILESDIR}"/${P}-cflags.patch
"${FILESDIR}"/${P}-clang.patch
)
src_prepare() {
default
sed -i "s|DATA_PATH \"/.score\"|\"${EPREFIX}/var/games/${PN}.hs\"|" src/ranking.c || die
eautoreconf
}
src_install() {
emake -C data DESTDIR="${D}" install-dataDATA
default
rm "${ED}"/usr/share/geki3/data/.score
insinto /var/games
newins data/.score ${PN}.hs
fowners :gamestat /var/games/${PN}.hs /usr/bin/geki3
fperms g+s /usr/bin/geki3
fperms 660 /var/games/${PN}.hs
doicon "${DISTDIR}"/${PN}.png
make_desktop_entry geki3 Geki3
}
|