blob: bc53f1f0abd5d46672ac6a49ffff91f6e3199975 (
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-2014 Gentoo Foundation
# Distributed under the terms of the GNU General Public License v2
# $Header: /var/cvsroot/gentoo-x86/games-simulation/stoned-bin/stoned-bin-1.1.6.ebuild,v 1.7 2014/04/25 15:51:44 ulm Exp $
inherit games
DESCRIPTION="3D curling simulation"
HOMEPAGE="http://stoned.cute-ninjas.com/"
SRC_URI="http://stoned.cute-ninjas.com/download/${P/-bin}-i386-linux.tar.gz"
LICENSE="public-domain no-source-code"
SLOT="0"
KEYWORDS="-* x86"
IUSE=""
RESTRICT="strip"
RDEPEND="virtual/opengl
media-libs/freeglut
media-libs/sdl-net
=media-libs/fmod-3*
sys-libs/zlib
media-libs/libpng"
S=${WORKDIR}/${P/-bin}-i386-linux
src_install() {
into "${GAMES_PREFIX_OPT}"
dobin stoned || die "dobin failed"
dodoc FAQ README
prepgamesdirs
}
|