blob: 3a75e5deb7832484a303f6bdbbc09ede1f693d7a (
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-2022 Gentoo Authors
# Distributed under the terms of the GNU General Public License v2
EAPI=8
inherit desktop perl-module toolchain-funcs xdg
MY_P="${P/_/-}"
DESCRIPTION="A Puzzle Bubble clone written in perl (now with network support)"
HOMEPAGE="http://www.frozen-bubble.org/"
SRC_URI="http://www.frozen-bubble.org/data/${MY_P}.tar.bz2"
S="${WORKDIR}/${MY_P}"
LICENSE="GPL-2"
SLOT="0"
KEYWORDS="~amd64 ~x86"
RDEPEND="
dev-lang/perl
dev-libs/glib:2
>=dev-perl/Alien-SDL-1.413
dev-perl/Compress-Bzip2
dev-perl/File-ShareDir
dev-perl/File-Slurp
dev-perl/File-Which
dev-perl/IPC-System-Simple
>=dev-perl/SDL-2.511
media-libs/sdl-image[gif,png]
media-libs/sdl-mixer[vorbis]
media-libs/sdl-pango
media-libs/sdl-ttf
virtual/libiconv
virtual/perl-Getopt-Long
virtual/perl-IO"
DEPEND="${RDEPEND}"
BDEPEND="
dev-perl/Locale-Maketext-Lexicon
dev-perl/Module-Build
virtual/perl-ExtUtils-CBuilder
virtual/perl-ExtUtils-ParseXS
virtual/pkgconfig"
PATCHES=(
"${FILESDIR}"/${P}-Werror.patch
"${FILESDIR}"/${P}-fix-buffer-size.patch
)
src_configure() {
LD="$(tc-getCC)" perl-module_src_configure
}
src_compile() {
LD="$(tc-getCC)" perl-module_src_compile
}
src_install() {
mydoc="AUTHORS Changes HISTORY README" perl-module_src_install
newdoc server/README README.server
newdoc server/init/README README.server.init
local res
for res in 16 32 48 64; do
newicon -s ${res} share/icons/frozen-bubble-icon-${res}x${res}.png ${PN}.png
done
make_desktop_entry ${PN} Frozen-Bubble
}
|