blob: 35c42fac95198feb42acb57ae62be54c2e84e8ef (
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
|
# Copyright 1999-2009 Gentoo Foundation
# Distributed under the terms of the GNU General Public License v2
# $Header: /var/cvsroot/gentoo-x86/games-arcade/excido/excido-0.1.5c-r2.ebuild,v 1.1 2009/02/04 17:00:50 nyhm Exp $
EAPI=2
inherit games
DESCRIPTION="A fast paced action game"
HOMEPAGE="http://icculus.org/excido/"
SRC_URI="http://icculus.org/excido/${P}-src.tar.bz2"
LICENSE="GPL-2"
SLOT="0"
KEYWORDS="~alpha ~amd64 ~ppc ~x86"
IUSE=""
DEPEND="dev-games/physfs
media-libs/libsdl[opengl]
media-libs/sdl-mixer
media-libs/sdl-ttf
media-libs/sdl-image[png]
media-libs/openal
media-libs/freealut"
PATCHES=( "${FILESDIR}"/${P}-freealut.patch "${FILESDIR}"/${P}-build.patch )
src_compile() {
emake DATADIR="${GAMES_DATADIR}"/${PN}/ || die "emake failed"
}
src_install() {
dogamesbin ${PN} || die "dogamesbin failed"
insinto "${GAMES_DATADIR}"/${PN}
doins data/* || die "doins failed"
dodoc BUGS CHANGELOG HACKING README TODO \
keyguide.txt data/CREDITS data/*.txt
prepgamesdirs
}
|