blob: c5742e3bc3b89387a6475a373512dce854e24629 (
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
|
# Copyright 1999-2004 Gentoo Technologies, Inc.
# 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.1 2004/05/30 05:27:37 mr_bones_ Exp $
inherit games
DESCRIPTION="8ball, 9ball, snooker and carambol game"
HOMEPAGE="http://foobillard.sunsite.dk/"
SRC_URI="http://foobillard.sunsite.dk/dnl/${P}.tar.gz"
KEYWORDS="x86 ppc amd64"
SLOT="0"
LICENSE="GPL-2"
IUSE="sdl"
DEPEND="virtual/x11
virtual/opengl
>=media-libs/freetype-2.0.9
>=media-libs/libpng-1.2.1
|| (
sdl? ( media-libs/libsdl )
(
virtual/glu
virtual/glut )
)"
src_compile() {
local myconf=""
[ "$(ls /usr/include/GL/gl.h -al | awk '{print $NF}' | cut -d/ -f5)" == "nvidia" ] \
&& myconf="--enable-nvidia" \
|| myconf="--disable-nvidia"
myconf="${myconf} $(use_enable sdl SDL)"
use sdl \
&& myconf="${myconf} --disable-glut" \
|| myconf="${myconf} --enable-glut"
egamesconf \
--enable-sound \
${myconf} \
|| die
emake || die "emake failed"
}
src_install() {
make DESTDIR="${D}" install || die "make install failed"
dodoc AUTHORS ChangeLog README README.FONTS
prepgamesdirs
}
|