blob: 3cb4c991c6c5a0b1f66d734eae51a3407fc7eb4e (
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
58
59
60
61
62
63
64
65
66
67
68
|
# Copyright 1999-2024 Gentoo Authors
# Distributed under the terms of the GNU General Public License v2
EAPI=7
inherit autotools desktop flag-o-matic toolchain-funcs
DESCRIPTION="8ball, 9ball, snooker and carambol game"
HOMEPAGE="https://foobillard.sourceforge.net/"
SRC_URI="mirror://gentoo/${P}.tar.gz"
LICENSE="GPL-2"
SLOT="0"
KEYWORDS="~amd64 ~x86"
IUSE="sdl video_cards_nvidia"
RDEPEND="x11-libs/libXaw
x11-libs/libXi
virtual/opengl
virtual/glu
>=media-libs/freetype-2.0.9:2
media-libs/libpng:0=
sdl? ( media-libs/libsdl[video] )
!sdl? ( media-libs/freeglut )
"
DEPEND="${RDEPEND}"
BDEPEND="virtual/pkgconfig"
PATCHES=(
"${FILESDIR}"/${P}-no_nvidia.patch
"${FILESDIR}"/${P}-freetype_pkgconfig.patch
"${FILESDIR}"/${P}-fbsd.patch
"${FILESDIR}"/${P}-as-needed.patch
"${FILESDIR}"/${P}-gl-clamp.patch
)
src_prepare() {
default
mv configure.{in,ac} || die
rm aclocal.m4
tc-export PKG_CONFIG
eautoreconf
}
src_configure() {
# -Werror=lto-type-mismatch
# https://bugs.gentoo.org/859235
#
# Upstream is sourceforge, and dead since 2010. Not reported upstream.
filter-lto
use video_cards_nvidia && append-ldflags -L/usr/$(get_libdir)/opengl/nvidia/lib
econf \
--enable-sound \
$(use_enable sdl SDL) \
$(use_enable !sdl glut) \
$(use_enable video_cards_nvidia nvidia)
}
src_install() {
default
doman foobillard.6
newicon data/full_symbol.png foobillard.png
make_desktop_entry foobillard Foobillard
}
|