blob: 411bf162b68b3f15b63409a9e4c29e6ba5f97eaf (
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
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
|
# Copyright 1999-2009 Gentoo Foundation
# Distributed under the terms of the GNU General Public License v2
# $Header: /var/cvsroot/gentoo-x86/games-action/chromium/chromium-0.9.13.3.ebuild,v 1.7 2009/03/22 20:51:44 darkside Exp $
EAPI=2
inherit eutils games
DESCRIPTION="Chromium B.S.U. - an arcade game"
HOMEPAGE="http://chromium-bsu.sourceforge.net/"
SRC_URI="mirror://sourceforge/chromium-bsu/${P}.tar.gz"
LICENSE="Artistic"
SLOT="0"
KEYWORDS="amd64 ~ppc x86"
IUSE="mixer sdl"
DEPEND="media-fonts/dejavu
>=media-libs/ftgl-2.1.3_rc5
media-libs/glpng
virtual/opengl
virtual/glu
x11-libs/libXmu
mixer? ( media-libs/sdl-mixer )
!mixer? ( media-libs/freealut
media-libs/openal )
sdl? ( media-libs/libsdl )
!sdl? ( virtual/glut )"
src_configure() {
egamesconf \
--disable-dependency-tracking \
--with-font-path="/usr/share/fonts/dejavu/DejaVuSerif-Bold.ttf" \
$(use_enable mixer sdlmixer) \
$(use_enable !mixer openal) \
$(use_enable sdl) \
$(use_enable !sdl glut)
}
src_install() {
emake DESTDIR="${D}" install || die "emake install failed"
# remove installed /usr/games/share stuff
rm -rf "${D}"/"${GAMES_PREFIX}"/share/
doicon misc/${PN}.png || die "doicon failed"
make_desktop_entry chromium "Chromium B.S.U"
# install documentation
dodoc AUTHORS README NEWS || die "dodoc failed"
dohtml "${S}"/data/doc/*.htm || die "dohtml failed"
cd "${S}"/data/doc/images
insinto /usr/share/doc/${PF}/html/images
doins *.jpg || die "doins failed"
prepgamesdirs
}
|