blob: a3f652498ec7c745f615b43c4233fe73803bd0a9 (
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
|
# Copyright 1999-2017 Gentoo Foundation
# Distributed under the terms of the GNU General Public License v2
EAPI=5
DESCRIPTION="Opening book for gnuchess"
HOMEPAGE="https://www.gnu.org/software/chess/chess.html"
SRC_URI="mirror://gnu/chess/book_${PV}.pgn.gz"
LICENSE="GPL-2"
SLOT="0"
KEYWORDS="amd64 ppc64 x86"
IUSE=""
RESTRICT="userpriv" # bug #112898
DEPEND=">=games-board/gnuchess-6.2.3"
RDEPEND=${DEPEND}
S=${WORKDIR}
src_compile() {
gnuchess --addbook=book_${PV}.pgn || die
}
src_install() {
insinto /usr/share/gnuchess
doins book.bin
}
|