blob: fa603d3bf2ebf86a66b039a5c9b3515759081640 (
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
|
# Copyright 1999-2004 Gentoo Foundation
# Distributed under the terms of the GNU General Public License v2
# $Header: /var/cvsroot/gentoo-x86/games-simulation/planets/planets-0.1.10.ebuild,v 1.8 2004/12/16 15:57:35 josejx Exp $
inherit games
DESCRIPTION="a simple interactive planetary system simulator"
SRC_URI="http://planets.homedns.org/dist/${P}.tgz"
HOMEPAGE="http://planets.homedns.org/"
LICENSE="GPL-2"
SLOT="0"
KEYWORDS="x86 ppc ~sparc"
IUSE=""
RDEPEND="dev-lang/tcl
dev-lang/tk"
DEPEND="${RDEPEND}
dev-lang/ocaml"
src_compile() {
make clean
make planets || die
}
src_install() {
dogamesbin planets || die "dogamesbin failed"
doman planets.1
dodoc CREDITS CHANGES TODO KEYBINDINGS.txt README
prepgamesdirs
}
|