summaryrefslogtreecommitdiff
path: root/games-puzzle/xbomb/xbomb-2.2b-r1.ebuild
blob: d717dc1dcef8c803d2d71449875d369e0c7582c7 (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
# Copyright 1999-2021 Gentoo Authors
# Distributed under the terms of the GNU General Public License v2

EAPI=7

inherit desktop toolchain-funcs

DESCRIPTION="Minesweeper clone with hexagonal, rectangular and triangular grid"
HOMEPAGE="http://www.gedanken.org.uk/software/xbomb/"
SRC_URI="http://www.gedanken.org.uk/software/xbomb/download/${P}.tgz"

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

DEPEND="x11-libs/libXaw"
RDEPEND="
	${DEPEND}
	acct-group/gamestat
"

PATCHES=(
	"${FILESDIR}"/${P}-DESTDIR.patch
	"${FILESDIR}"/${P}-ldflags.patch
)

src_prepare() {
	default

	sed -i \
		-e '/strip/d' \
		-e '/^CC=/d' \
		-e "/^CFLAGS/ { s:=.*:=${CFLAGS}: }" \
		Makefile || die
	sed -i \
		-e "s:/var/tmp:/var/lib/${PN}:g" \
		hiscore.c || die
}

src_configure() {
	tc-export CC
}

src_install() {
	default

	dodir /var/lib/${PN}
	touch "${ED}"/var/lib/${PN}/${PN}{3,4,6}.hi || die "touch failed"
	fperms 660 /var/lib/${PN}/${PN}{3,4,6}.hi

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

	make_desktop_entry xbomb XBomb
}