blob: b1df215d59d0d8817ecaec298e14a6e5394e1bc5 (
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
|
# Copyright 1999-2018 Gentoo Foundation
# Distributed under the terms of the GNU General Public License v2
EAPI=6
inherit desktop
DESCRIPTION="Hover hockey"
HOMEPAGE="http://home.no.net/munsuun/tuxpuck/"
SRC_URI="http://home.no.net/munsuun/tuxpuck/files/${P}.tar.gz"
LICENSE="GPL-2"
SLOT="0"
KEYWORDS="~alpha ~amd64 ~x86 ~x86-fbsd"
IUSE=""
RDEPEND="
media-libs/libsdl
media-libs/libpng:0=
virtual/jpeg:0
media-libs/libvorbis
"
DEPEND="${RDEPEND}
media-libs/freetype:2
"
src_prepare() {
default
# Bug #376741 - Make unpack call compatible with both
# PMS and <sys-apps/portage-2.1.10.10.
cd man || die
unpack ./${PN}.6.gz
cd .. || die
sed -i \
-e 's/-Werror//' \
-e '/^CC/d' \
Makefile \
utils/Makefile \
data/Makefile \
|| die "sed failed"
eapply "${FILESDIR}"/${P}-ldflags.patch \
"${FILESDIR}"/${P}-png15.patch \
"${FILESDIR}"/${P}-parallel.patch
}
src_compile() {
emake -C utils
emake -C data
emake
}
src_install() {
dobin tuxpuck
doman man/tuxpuck.6
dodoc *.txt
doicon data/icons/${PN}.ico
make_desktop_entry ${PN} "TuxPuck" /usr/share/pixmaps/${PN}.ico
einstalldocs
}
|