blob: 7accc6404816216f3bda90b75c159eab5b1b7e85 (
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
|
# Copyright 1999-2009 Gentoo Foundation
# Distributed under the terms of the GNU General Public License v2
# $Header: /var/cvsroot/gentoo-x86/games-misc/gnurobots/gnurobots-1.2.0.ebuild,v 1.5 2009/05/22 22:40:31 nyhm Exp $
EAPI=2
inherit games
DESCRIPTION="construct a program for a little robot then set him loose
and watch him explore a world on his own"
HOMEPAGE="http://www.gnu.org/directory/games/gnurobots.html"
SRC_URI="mirror://gnu/${PN}/${P}.tar.gz"
LICENSE="GPL-3"
SLOT="0"
KEYWORDS="~amd64 ppc x86"
IUSE=""
RESTRICT="test"
DEPEND="x11-libs/vte
dev-scheme/guile"
src_prepare() {
sed -i \
-e 's/-pedantic-errors -Werror//' \
configure \
|| die "sed failed"
}
src_install() {
dodoc AUTHORS \
ChangeLog \
NEWS \
README \
THANKS \
TODO \
doc/Robots-HOWTO \
doc/contrib
emake DESTDIR="${D}" install || die "emake install failed"
prepgamesdirs
}
|