blob: 2bca212295afd7bd23ee8129be3ca8528ba2ccc4 (
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
|
# Copyright 1999-2004 Gentoo Technologies, Inc.
# Distributed under the terms of the GNU General Public License v2
# $Header: /var/cvsroot/gentoo-x86/games-simulation/stoned/stoned-1.1.5.ebuild,v 1.3 2004/01/06 21:02:49 mr_bones_ Exp $
inherit games
DESCRIPTION="3D curling simulation"
HOMEPAGE="http://stoned.cute-ninjas.com/"
SRC_URI="http://stoned.cute-ninjas.com/download/${P}-i386-linux.tar.gz"
KEYWORDS="-* x86"
LICENSE="as-is"
SLOT="0"
IUSE=""
RDEPEND="virtual/opengl
virtual/glut
media-libs/sdl-net
media-libs/fmod
sys-libs/zlib
media-libs/libpng"
src_install() {
into "${GAMES_PREFIX_OPT}"
dobin stoned || die "dobin failed"
dodoc FAQ README || die "dodoc failed"
prepgamesdirs
}
|