blob: f32b2bfb452355c911861cea7d461a8be27f1e7f (
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
|
# Copyright 1999-2003 Gentoo Technologies, Inc.
# Distributed under the terms of the GNU General Public License v2
# $Header: /var/cvsroot/gentoo-x86/games-board/gnuchess/gnuchess-5.05.ebuild,v 1.1 2003/09/10 17:46:27 vapier Exp $
inherit games
S=${WORKDIR}/chess
DESCRIPTION="Console based chess interface"
SRC_URI="mirror://gnu/chess/${P}.tar.gz"
HOMEPAGE="http://www.gnu.org/software/chess/chess.html"
KEYWORDS="x86 ppc"
SLOT="0"
LICENSE="GPL-2"
src_compile() {
egamesconf
emake || die
}
src_install () {
egamesinstall
dodoc AUTHORS ChangeLog COPYING README INSTALL NEWS TODO
prepgamesdirs
}
|