blob: 39fd6435c77fb2df90b22b56b4edc820da932845 (
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
|
# Copyright 1999-2025 Gentoo Authors
# Distributed under the terms of the GNU General Public License v2
EAPI=8
inherit autotools desktop toolchain-funcs
DESCRIPTION="3d tron, just like the movie"
HOMEPAGE="https://gltron.sourceforge.net/"
SRC_URI="https://downloads.sourceforge.net/${PN}/${P}-source.tar.gz
mirror://gentoo/${PN}.png"
LICENSE="GPL-2"
SLOT="0"
KEYWORDS="~amd64 ~arm64 ~x86"
DEPEND="
media-libs/libmikmod
media-libs/libpng:=
media-libs/libsdl[opengl,sound,video]
media-libs/sdl-mixer[vorbis]
media-libs/sdl-sound[vorbis,mikmod]
media-libs/smpeg
sys-libs/zlib
virtual/opengl
virtual/glu"
RDEPEND="${DEPEND}"
PATCHES=(
"${FILESDIR}"/${P}-configure.patch
"${FILESDIR}"/${P}-debian.patch
"${FILESDIR}"/${P}-gcc49.patch
"${FILESDIR}"/${P}-prototypes.patch
"${FILESDIR}"/${P}-gcc14.patch
"${FILESDIR}"/${P}-automake.patch
)
src_prepare() {
default
sed -i \
-e '/^gltron_LINK/s/$/ $(LDFLAGS)/' \
Makefile.in || die
eautoreconf
}
src_configure() {
# warn/debug/profile just modify CFLAGS, they aren't
# real options, so don't utilize USE flags here
econf \
--disable-warn \
--disable-debug \
--disable-profile
}
src_compile() {
emake AR=$(tc-getAR)
}
src_install() {
default
doicon "${DISTDIR}"/${PN}.png
make_desktop_entry ${PN} GLtron
}
|