summaryrefslogtreecommitdiff
blob: 36c39e67014c5985a3694a8328df9c7aa1f702c6 (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
61
62
63
64
65
66
67
68
69
70
71
72
# Copyright 1999-2021 Gentoo Authors
# Distributed under the terms of the GNU General Public License v2

EAPI=7

inherit toolchain-funcs prefix

DESCRIPTION="2.5D tetris like game"
HOMEPAGE="http://xnc.jinr.ru/xwelltris/"
SRC_URI="http://xnc.jinr.ru/xwelltris/src/${P}.src.tar.gz"

LICENSE="GPL-2"
SLOT="0"
KEYWORDS="~amd64 ~x86"

DEPEND="
	media-libs/libsdl[video]
	media-libs/sdl-image[gif]
"
RDEPEND="
	${DEPEND}
	acct-group/gamestat
"

PATCHES=(
	# Look in ${EPREFIX}/var/lib/xwelltris for score file
	"${FILESDIR}"/${PN}-1.0.1-scorefile-dir.patch
)

src_prepare() {
	default

	sed -i \
		-e '/INSTALL_PROGRAM/s/-s //' \
		src/Make.common.in || die

	sed -i \
		-e "/GLOBAL_SEARCH/s:\".*\":\"/usr/share/${PN}\":" \
		src/include/globals.h.in || die

	# Ensure we look in ${EPREFIX}/var/lib/${PN} for score file
	eprefixify src/commonfuncs.cxx
}

src_configure() {
	tc-export CC CXX

	# configure/build process is pretty messed up
	econf --with-sdl
}

src_compile() {
	emake -C src
}

src_install() {
	dodir /usr/bin /usr/share/${PN} /var/lib/${PN} /usr/share/man

	emake install \
		INSTDIR="${D}/usr/bin" \
		INSTLIB="${D}/usr/share/${PN}" \
		INSTMAN=/usr/share/man

	dodoc AUTHORS Changelog README*

	# Move score file to our location
	mv "${ED}"/usr/share/${PN}/welltris.scores "${ED}"/var/lib/${PN}/welltris.scores || die

	fowners root:gamestat /var/lib/${PN}/welltris.scores
	fperms 660 /var/lib/${PN}/welltris.scores
	fperms g+s /usr/bin/${PN}
}