mirror of
https://anongit.gentoo.org/git/repo/gentoo.git
synced 2025-06-07 21:55:04 +02:00
Closes: https://bugs.gentoo.org/934245 Thanks-to: Torsten Kaiser Signed-off-by: Sam James <sam@gentoo.org>
69 lines
1.5 KiB
Bash
69 lines
1.5 KiB
Bash
# Copyright 1999-2024 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
|
|
"${FILESDIR}"/${P}-perl-5.40.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
|
|
}
|