blob: 99eadb12b3c8ab47f058f65e195313b68a6b5bba (
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
|
# Copyright 1999-2004 Gentoo Technologies, Inc.
# 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.2 2004/05/02 01:58:56 mr_bones_ 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="x86 ppc sparc alpha"
IUSE=""
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
}
|