blob: 4e3b3d314954ec27aff3d1fce8cc89004b6f984d (
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
|
# Copyright 1999-2006 Gentoo Foundation
# Distributed under the terms of the GNU General Public License v2
# $Header: /var/cvsroot/gentoo-x86/games-board/gnuchess-book/gnuchess-book-1.00.ebuild,v 1.7 2006/05/21 18:37:59 corsair Exp $
inherit games
DESCRIPTION="Opening book for gnuchess"
HOMEPAGE="http://www.gnu.org/software/chess/chess.html"
SRC_URI="mirror://gnu/chess/book_${PV}.pgn.gz"
LICENSE="GPL-2"
SLOT="0"
KEYWORDS="alpha ~amd64 ppc ppc64 sparc x86"
IUSE=""
RESTRICT="userpriv" # bug #112898
DEPEND="games-board/gnuchess"
S=${WORKDIR}
src_compile() {
echo -e "book add book_${PV}.pgn"$'\n'"quit" | "${GAMES_BINDIR}"/gnuchess \
|| die "generation failed"
}
src_install() {
insinto "${GAMES_DATADIR}/gnuchess"
doins book.dat || die "doins failed"
prepgamesdirs
}
|