public inbox for gentoo-commits@lists.gentoo.org
 help / color / mirror / Atom feed
* [gentoo-commits] repo/gentoo:master commit in: games-arcade/frozen-bubble/
@ 2018-04-16 20:26 Pacho Ramos
  0 siblings, 0 replies; 3+ messages in thread
From: Pacho Ramos @ 2018-04-16 20:26 UTC (permalink / raw
  To: gentoo-commits

commit:     98ac29f3dd50cdffc06fa9c1ab5346c4ec24836c
Author:     Pacho Ramos <pacho <AT> gentoo <DOT> org>
AuthorDate: Mon Apr 16 19:53:23 2018 +0000
Commit:     Pacho Ramos <pacho <AT> gentoo <DOT> org>
CommitDate: Mon Apr 16 20:26:28 2018 +0000
URL:        https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=98ac29f3

games-arcade/frozen-bubble: Drop old

Package-Manager: Portage-2.3.28, Repoman-2.3.9

 .../frozen-bubble/frozen-bubble-2.2.1_beta1.ebuild | 86 ----------------------
 1 file changed, 86 deletions(-)

diff --git a/games-arcade/frozen-bubble/frozen-bubble-2.2.1_beta1.ebuild b/games-arcade/frozen-bubble/frozen-bubble-2.2.1_beta1.ebuild
deleted file mode 100644
index e6a4b39557a..00000000000
--- a/games-arcade/frozen-bubble/frozen-bubble-2.2.1_beta1.ebuild
+++ /dev/null
@@ -1,86 +0,0 @@
-# Copyright 1999-2015 Gentoo Foundation
-# Distributed under the terms of the GNU General Public License v2
-
-EAPI=5
-MY_P=${P/_/-}
-inherit eutils gnome2-utils perl-module toolchain-funcs games
-
-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"
-
-LICENSE="GPL-2"
-SLOT="0"
-KEYWORDS="~amd64 ~x86"
-IUSE=""
-
-RDEPEND=">=dev-lang/perl-5.12
-	>=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}
-	virtual/pkgconfig
-	dev-perl/Locale-Maketext-Lexicon
-	virtual/perl-ExtUtils-CBuilder
-	virtual/perl-ExtUtils-ParseXS
-	dev-perl/Module-Build"
-
-S=${WORKDIR}/${MY_P}
-
-src_prepare() {
-	perl-module_src_prepare
-	epatch "${FILESDIR}"/${P}-Werror.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
-
-	dodir "${GAMES_BINDIR}"
-	mv -vf "${D}"/usr/bin/f* "${D}/${GAMES_BINDIR}" || die
-
-	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
-
-	prepgamesdirs
-}
-
-pkg_preinst() {
-	games_pkg_preinst
-	gnome2_icon_savelist
-}
-
-pkg_postinst() {
-	games_pkg_postinst
-	gnome2_icon_cache_update
-}
-
-pkg_postrm() {
-	gnome2_icon_cache_update
-}


^ permalink raw reply related	[flat|nested] 3+ messages in thread

* [gentoo-commits] repo/gentoo:master commit in: games-arcade/frozen-bubble/
@ 2022-03-20  0:05 Sam James
  0 siblings, 0 replies; 3+ messages in thread
From: Sam James @ 2022-03-20  0:05 UTC (permalink / raw
  To: gentoo-commits

commit:     555ad0b5fda1562db610983fc1b90f63c5f85971
Author:     Sam James <sam <AT> gentoo <DOT> org>
AuthorDate: Sun Mar 20 00:02:46 2022 +0000
Commit:     Sam James <sam <AT> gentoo <DOT> org>
CommitDate: Sun Mar 20 00:02:46 2022 +0000
URL:        https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=555ad0b5

games-arcade/frozen-bubble: [QA] fix tc-get* quoting

This can cause build problems for e.g. 32-bit (gcc -m32 ...)

Signed-off-by: Sam James <sam <AT> gentoo.org>

 games-arcade/frozen-bubble/frozen-bubble-2.2.1_beta1-r1.ebuild | 6 +++---
 1 file changed, 3 insertions(+), 3 deletions(-)

diff --git a/games-arcade/frozen-bubble/frozen-bubble-2.2.1_beta1-r1.ebuild b/games-arcade/frozen-bubble/frozen-bubble-2.2.1_beta1-r1.ebuild
index 9315ab5159ba..dfa261124fcc 100644
--- a/games-arcade/frozen-bubble/frozen-bubble-2.2.1_beta1-r1.ebuild
+++ b/games-arcade/frozen-bubble/frozen-bubble-2.2.1_beta1-r1.ebuild
@@ -1,4 +1,4 @@
-# Copyright 1999-2018 Gentoo Foundation
+# Copyright 1999-2022 Gentoo Authors
 # Distributed under the terms of the GNU General Public License v2
 
 EAPI=6
@@ -50,11 +50,11 @@ src_prepare() {
 }
 
 src_configure() {
-	LD=$(tc-getCC) perl-module_src_configure
+	LD="$(tc-getCC)" perl-module_src_configure
 }
 
 src_compile() {
-	LD=$(tc-getCC) perl-module_src_compile
+	LD="$(tc-getCC)" perl-module_src_compile
 }
 
 src_install() {


^ permalink raw reply related	[flat|nested] 3+ messages in thread

* [gentoo-commits] repo/gentoo:master commit in: games-arcade/frozen-bubble/
@ 2022-07-02 22:19 David Seifert
  0 siblings, 0 replies; 3+ messages in thread
From: David Seifert @ 2022-07-02 22:19 UTC (permalink / raw
  To: gentoo-commits

commit:     6e89d63bd2a508c5a5dfac70c5a7b36641450828
Author:     David Seifert <soap <AT> gentoo <DOT> org>
AuthorDate: Sat Jul  2 22:19:09 2022 +0000
Commit:     David Seifert <soap <AT> gentoo <DOT> org>
CommitDate: Sat Jul  2 22:19:09 2022 +0000
URL:        https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=6e89d63b

games-arcade/frozen-bubble: update EAPI 6 -> 8

Signed-off-by: David Seifert <soap <AT> gentoo.org>

 ....ebuild => frozen-bubble-2.2.1_beta1-r2.ebuild} | 47 ++++++++--------------
 1 file changed, 16 insertions(+), 31 deletions(-)

diff --git a/games-arcade/frozen-bubble/frozen-bubble-2.2.1_beta1-r1.ebuild b/games-arcade/frozen-bubble/frozen-bubble-2.2.1_beta1-r2.ebuild
similarity index 71%
rename from games-arcade/frozen-bubble/frozen-bubble-2.2.1_beta1-r1.ebuild
rename to games-arcade/frozen-bubble/frozen-bubble-2.2.1_beta1-r2.ebuild
index dfa261124fcc..3a75e5deb783 100644
--- a/games-arcade/frozen-bubble/frozen-bubble-2.2.1_beta1-r1.ebuild
+++ b/games-arcade/frozen-bubble/frozen-bubble-2.2.1_beta1-r2.ebuild
@@ -1,22 +1,23 @@
 # Copyright 1999-2022 Gentoo Authors
 # Distributed under the terms of the GNU General Public License v2
 
-EAPI=6
-MY_P="${P/_/-}"
+EAPI=8
+
+inherit desktop perl-module toolchain-funcs xdg
 
-inherit desktop gnome2-utils perl-module toolchain-funcs
+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"
-IUSE=""
 
 RDEPEND="
-	>=dev-lang/perl-5.12
+	dev-lang/perl
 	dev-libs/glib:2
 	>=dev-perl/Alien-SDL-1.413
 	dev-perl/Compress-Bzip2
@@ -31,23 +32,19 @@ RDEPEND="
 	media-libs/sdl-ttf
 	virtual/libiconv
 	virtual/perl-Getopt-Long
-	virtual/perl-IO
-"
-DEPEND="${RDEPEND}
-	virtual/pkgconfig
+	virtual/perl-IO"
+DEPEND="${RDEPEND}"
+BDEPEND="
 	dev-perl/Locale-Maketext-Lexicon
+	dev-perl/Module-Build
 	virtual/perl-ExtUtils-CBuilder
 	virtual/perl-ExtUtils-ParseXS
-	dev-perl/Module-Build
-"
+	virtual/pkgconfig"
 
-S="${WORKDIR}/${MY_P}"
-
-src_prepare() {
-	perl-module_src_prepare
-	eapply "${FILESDIR}"/${P}-Werror.patch
-	eapply "${FILESDIR}"/${P}-fix-buffer-size.patch
-}
+PATCHES=(
+	"${FILESDIR}"/${P}-Werror.patch
+	"${FILESDIR}"/${P}-fix-buffer-size.patch
+)
 
 src_configure() {
 	LD="$(tc-getCC)" perl-module_src_configure
@@ -64,20 +61,8 @@ src_install() {
 
 	local res
 	for res in 16 32 48 64; do
-		newicon -s ${res}  share/icons/frozen-bubble-icon-${res}x${res}.png ${PN}.png
+		newicon -s ${res} share/icons/frozen-bubble-icon-${res}x${res}.png ${PN}.png
 	done
 
 	make_desktop_entry ${PN} Frozen-Bubble
 }
-
-pkg_preinst() {
-	gnome2_icon_savelist
-}
-
-pkg_postinst() {
-	gnome2_icon_cache_update
-}
-
-pkg_postrm() {
-	gnome2_icon_cache_update
-}


^ permalink raw reply related	[flat|nested] 3+ messages in thread

end of thread, other threads:[~2022-07-02 22:19 UTC | newest]

Thread overview: 3+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2022-03-20  0:05 [gentoo-commits] repo/gentoo:master commit in: games-arcade/frozen-bubble/ Sam James
  -- strict thread matches above, loose matches on Subject: below --
2022-07-02 22:19 David Seifert
2018-04-16 20:26 Pacho Ramos

This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox