blob: bf57835b473c4afe9e99a2daf49ef3707ec24162 (
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
56
57
|
# Copyright 1999-2010 Gentoo Foundation
# Distributed under the terms of the GNU General Public License v2
# $Header: /var/cvsroot/gentoo-x86/games-sports/foobillard/foobillard-3.0a.ebuild,v 1.14 2010/09/16 17:02:08 scarabeus Exp $
EAPI=2
inherit eutils autotools games
DESCRIPTION="8ball, 9ball, snooker and carambol game"
HOMEPAGE="http://foobillard.sourceforge.net/"
SRC_URI="mirror://gentoo/${P}.tar.gz"
LICENSE="GPL-2"
SLOT="0"
KEYWORDS="amd64 ppc x86 ~x86-fbsd"
IUSE="sdl"
RDEPEND="x11-libs/libXaw
x11-libs/libXi
virtual/opengl
virtual/glu
>=media-libs/freetype-2.0.9
media-libs/libpng
sdl? ( media-libs/libsdl )
!sdl? ( media-libs/freeglut )"
DEPEND="${RDEPEND}
app-admin/eselect-opengl"
src_prepare() {
epatch \
"${FILESDIR}"/${P}-no_nvidia.patch \
"${FILESDIR}"/${P}-fbsd.patch \
"${FILESDIR}"/${P}-as-needed.patch
eautoreconf
}
src_configure() {
local myconf
[[ "$(eselect opengl show)" == 'nvidia' ]] \
&& myconf='--enable-nvidia=yes' \
|| myconf='--enable-nvidia=no'
egamesconf \
--enable-sound \
$(use_enable sdl SDL) \
$(use_enable !sdl glut) \
${myconf}
}
src_install() {
emake DESTDIR="${D}" install || die "emake install failed"
dodoc AUTHORS ChangeLog README README.FONTS
doman foobillard.6
newicon data/full_symbol.png foobillard.png
make_desktop_entry foobillard Foobillard
prepgamesdirs
}
|