summaryrefslogtreecommitdiff
path: root/games-board/phalanx/phalanx-22-r1.ebuild
blob: 4d2f1f020ea5277a9d2d524744b98384bfac4103 (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
# Copyright 1999-2021 Gentoo Authors
# Distributed under the terms of the GNU General Public License v2

EAPI=8

inherit toolchain-funcs

MY_P="${PN^}-XXII"

DESCRIPTION="Chess engine suitable for beginner and intermediate players"
HOMEPAGE="http://phalanx.sourceforge.net/"
SRC_URI="mirror://sourceforge/phalanx/${MY_P}.tar.gz"
S="${WORKDIR}/${MY_P}"

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

src_compile() {
	local defines=(
		-DGNUFUN
		-D{PBOOK,SBOOK,LEARN}_DIR="'\"${EPREFIX}/usr/share/${PN}\"'"
	)

	local emakeargs=(
		DEFINES="${defines[*]}"
		CC="$(tc-getCC)"
		CFLAGS="${CFLAGS}"
		LDFLAGS="${LDFLAGS}"
	)

	emake "${emakeargs[@]}"
}

src_install() {
	dobin phalanx

	insinto /usr/share/${PN}
	doins {pbook,sbook,learn}.phalanx

	einstalldocs
}