public inbox for gentoo-commits@lists.gentoo.org
 help / color / mirror / Atom feed
* [gentoo-commits] repo/gentoo:master commit in: games-arcade/lbreakout/
@ 2017-10-03 21:54 Patrice Clement
  0 siblings, 0 replies; 6+ messages in thread
From: Patrice Clement @ 2017-10-03 21:54 UTC (permalink / raw
  To: gentoo-commits

commit:     a8ea294e1ee5a8032087b10d4ff05d0e4b102199
Author:     Francesco Turco <fturco <AT> fastmail <DOT> fm>
AuthorDate: Fri Sep 29 19:36:42 2017 +0000
Commit:     Patrice Clement <monsieurp <AT> gentoo <DOT> org>
CommitDate: Tue Oct  3 21:53:45 2017 +0000
URL:        https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=a8ea294e

games-arcade/lbreakout: update HOMEPAGE.

Closes: https://github.com/gentoo/gentoo/pull/5823

 games-arcade/lbreakout/lbreakout-010315.ebuild | 5 +++--
 1 file changed, 3 insertions(+), 2 deletions(-)

diff --git a/games-arcade/lbreakout/lbreakout-010315.ebuild b/games-arcade/lbreakout/lbreakout-010315.ebuild
index 5a197c35a00..536e479de6a 100644
--- a/games-arcade/lbreakout/lbreakout-010315.ebuild
+++ b/games-arcade/lbreakout/lbreakout-010315.ebuild
@@ -1,10 +1,11 @@
-# Copyright 1999-2015 Gentoo Foundation
+# Copyright 1999-2017 Gentoo Foundation
 # Distributed under the terms of the GNU General Public License v2
+
 EAPI=5
 inherit games
 
 DESCRIPTION="Breakout clone written with the SDL library"
-HOMEPAGE="http://lgames.sourceforge.net/"
+HOMEPAGE="http://lgames.sourceforge.net/LBreakout/"
 SRC_URI="mirror://sourceforge/lgames/${P}.tar.gz"
 
 LICENSE="GPL-2"


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

* [gentoo-commits] repo/gentoo:master commit in: games-arcade/lbreakout/
@ 2018-04-22  9:22 Pacho Ramos
  0 siblings, 0 replies; 6+ messages in thread
From: Pacho Ramos @ 2018-04-22  9:22 UTC (permalink / raw
  To: gentoo-commits

commit:     0bb75edcb56e4fe87bac5059fe0e7004883c021a
Author:     Pacho Ramos <pacho <AT> gentoo <DOT> org>
AuthorDate: Sun Apr 22 09:19:39 2018 +0000
Commit:     Pacho Ramos <pacho <AT> gentoo <DOT> org>
CommitDate: Sun Apr 22 09:19:39 2018 +0000
URL:        https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=0bb75edc

games-arcade/lbreakout: Stop using games.eclass

Package-Manager: Portage-2.3.31, Repoman-2.3.9

 games-arcade/lbreakout/lbreakout-010315-r1.ebuild | 30 +++++++++++++++++++++++
 1 file changed, 30 insertions(+)

diff --git a/games-arcade/lbreakout/lbreakout-010315-r1.ebuild b/games-arcade/lbreakout/lbreakout-010315-r1.ebuild
new file mode 100644
index 00000000000..4a465d929cf
--- /dev/null
+++ b/games-arcade/lbreakout/lbreakout-010315-r1.ebuild
@@ -0,0 +1,30 @@
+# Copyright 1999-2018 Gentoo Foundation
+# Distributed under the terms of the GNU General Public License v2
+
+EAPI=6
+
+DESCRIPTION="Breakout clone written with the SDL library"
+HOMEPAGE="http://lgames.sourceforge.net/LBreakout/"
+SRC_URI="mirror://sourceforge/lgames/${P}.tar.gz"
+
+LICENSE="GPL-2"
+SLOT="0"
+KEYWORDS="~amd64 ~x86"
+IUSE=""
+
+DEPEND=">=media-libs/libsdl-1.1.5"
+RDEPEND="${DEPEND}"
+
+src_prepare() {
+	default
+	sed -i \
+		-e '/^sdir=/s:$datadir/games:$datadir:' \
+		-e '/^hdir=/s:/var/lib/games:$localstatedir:' \
+		configure \
+		|| die "sed failed"
+}
+
+src_install() {
+	HTML_DOCS="lbreakout/manual/*"
+	default
+}


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

* [gentoo-commits] repo/gentoo:master commit in: games-arcade/lbreakout/
@ 2018-04-22  9:22 Pacho Ramos
  0 siblings, 0 replies; 6+ messages in thread
From: Pacho Ramos @ 2018-04-22  9:22 UTC (permalink / raw
  To: gentoo-commits

commit:     4a6a37803cf999a6d843875037df3a16d75599bb
Author:     Pacho Ramos <pacho <AT> gentoo <DOT> org>
AuthorDate: Sun Apr 22 09:20:47 2018 +0000
Commit:     Pacho Ramos <pacho <AT> gentoo <DOT> org>
CommitDate: Sun Apr 22 09:20:47 2018 +0000
URL:        https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=4a6a3780

games-arcade/lbreakout: Drop old

Package-Manager: Portage-2.3.31, Repoman-2.3.9

 games-arcade/lbreakout/lbreakout-010315.ebuild | 32 --------------------------
 1 file changed, 32 deletions(-)

diff --git a/games-arcade/lbreakout/lbreakout-010315.ebuild b/games-arcade/lbreakout/lbreakout-010315.ebuild
deleted file mode 100644
index fe1d2fbcc2c..00000000000
--- a/games-arcade/lbreakout/lbreakout-010315.ebuild
+++ /dev/null
@@ -1,32 +0,0 @@
-# Copyright 1999-2017 Gentoo Foundation
-# Distributed under the terms of the GNU General Public License v2
-
-EAPI=5
-inherit games
-
-DESCRIPTION="Breakout clone written with the SDL library"
-HOMEPAGE="http://lgames.sourceforge.net/LBreakout/"
-SRC_URI="mirror://sourceforge/lgames/${P}.tar.gz"
-
-LICENSE="GPL-2"
-SLOT="0"
-KEYWORDS="~amd64 ~x86"
-IUSE=""
-
-DEPEND=">=media-libs/libsdl-1.1.5"
-RDEPEND="${DEPEND}"
-
-src_prepare() {
-	sed -i \
-		-e '/^sdir=/s:$datadir/games:$datadir:' \
-		-e '/^hdir=/s:/var/lib/games:$localstatedir:' \
-		configure \
-		|| die "sed failed"
-}
-
-src_install() {
-	dodir "${GAMES_STATEDIR}"
-	default
-	dohtml lbreakout/manual/*
-	prepgamesdirs
-}


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

* [gentoo-commits] repo/gentoo:master commit in: games-arcade/lbreakout/
@ 2021-06-28 16:49 Ionen Wolkens
  0 siblings, 0 replies; 6+ messages in thread
From: Ionen Wolkens @ 2021-06-28 16:49 UTC (permalink / raw
  To: gentoo-commits

commit:     ede1b94b6962267f7397c729ca7f34aa60957b5f
Author:     Ionen Wolkens <ionen <AT> gentoo <DOT> org>
AuthorDate: Mon Jun 28 00:55:54 2021 +0000
Commit:     Ionen Wolkens <ionen <AT> gentoo <DOT> org>
CommitDate: Mon Jun 28 16:42:37 2021 +0000
URL:        https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=ede1b94b

games-arcade/lbreakout: fix install, EAPI 6->8, tidy

Broken since games.eclass migration in 2018 (bug #655000) due
to the removal of the "dodir" line.

Also prevent direct cc/c++ call, use gamestat, add .desktop file,
and tighten sdl dep (notably won't start without sound support).

No revbump given this never worked.

Fixes: 0bb75edcb56e4fe87bac5059fe0e7004883c021a
Closes: https://bugs.gentoo.org/655000
Signed-off-by: Ionen Wolkens <ionen <AT> gentoo.org>

 games-arcade/lbreakout/lbreakout-010315-r1.ebuild | 38 ++++++++++++++++-------
 1 file changed, 26 insertions(+), 12 deletions(-)

diff --git a/games-arcade/lbreakout/lbreakout-010315-r1.ebuild b/games-arcade/lbreakout/lbreakout-010315-r1.ebuild
index 4a465d929cf..a00036389b1 100644
--- a/games-arcade/lbreakout/lbreakout-010315-r1.ebuild
+++ b/games-arcade/lbreakout/lbreakout-010315-r1.ebuild
@@ -1,30 +1,44 @@
-# Copyright 1999-2018 Gentoo Foundation
+# Copyright 1999-2021 Gentoo Authors
 # Distributed under the terms of the GNU General Public License v2
 
-EAPI=6
+EAPI=8
+
+inherit desktop toolchain-funcs
 
 DESCRIPTION="Breakout clone written with the SDL library"
 HOMEPAGE="http://lgames.sourceforge.net/LBreakout/"
 SRC_URI="mirror://sourceforge/lgames/${P}.tar.gz"
 
-LICENSE="GPL-2"
+LICENSE="GPL-2+"
 SLOT="0"
 KEYWORDS="~amd64 ~x86"
-IUSE=""
 
-DEPEND=">=media-libs/libsdl-1.1.5"
-RDEPEND="${DEPEND}"
+RDEPEND="
+	acct-group/gamestat
+	media-libs/libsdl[sound,video]"
+DEPEND="${RDEPEND}"
+
+HTML_DOCS=( lbreakout/manual/. )
 
 src_prepare() {
 	default
-	sed -i \
-		-e '/^sdir=/s:$datadir/games:$datadir:' \
-		-e '/^hdir=/s:/var/lib/games:$localstatedir:' \
-		configure \
-		|| die "sed failed"
+
+	# remove /games from datadir, and use /var/games for highscore file
+	sed -e '/^sdir=/s|/games.*||;' \
+		-e "/^hdir=/s|=.*|=${EPREFIX}/var/games|" \
+		-i configure || die
+
+	tc-export CC CXX
 }
 
 src_install() {
-	HTML_DOCS="lbreakout/manual/*"
+	dodir /var/games #655000
+
 	default
+
+	fowners :gamestat /usr/bin/${PN} /var/games/${PN}.hscr
+	fperms g+s /usr/bin/${PN}
+	fperms 660 /var/games/${PN}.hscr
+
+	make_desktop_entry ${PN} LBreakout applications-games
 }


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

* [gentoo-commits] repo/gentoo:master commit in: games-arcade/lbreakout/
@ 2021-06-29 20:55 Ionen Wolkens
  0 siblings, 0 replies; 6+ messages in thread
From: Ionen Wolkens @ 2021-06-29 20:55 UTC (permalink / raw
  To: gentoo-commits

commit:     47bef428efbdd9be9ed8b379337a970fb14a5574
Author:     Ionen Wolkens <ionen <AT> gentoo <DOT> org>
AuthorDate: Tue Jun 29 20:05:56 2021 +0000
Commit:     Ionen Wolkens <ionen <AT> gentoo <DOT> org>
CommitDate: Tue Jun 29 20:53:12 2021 +0000
URL:        https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=47bef428

games-arcade/lbreakout: add .desktop icon

Signed-off-by: Ionen Wolkens <ionen <AT> gentoo.org>

 games-arcade/lbreakout/Manifest                   | 1 +
 games-arcade/lbreakout/lbreakout-010315-r1.ebuild | 7 +++++--
 2 files changed, 6 insertions(+), 2 deletions(-)

diff --git a/games-arcade/lbreakout/Manifest b/games-arcade/lbreakout/Manifest
index 74aaeb4169e..7cf5ad73153 100644
--- a/games-arcade/lbreakout/Manifest
+++ b/games-arcade/lbreakout/Manifest
@@ -1 +1,2 @@
 DIST lbreakout-010315.tar.gz 655418 BLAKE2B f8d893c16de045f172e2ece3158420a880fff4775e81f714d390cc92cfbc6296cc968442388097d6be7fd23e19be614d872fe4b9e730284dcb7044d06bf9d72f SHA512 92421ceb4e643df2123d084b0d2c5edfd311e39dd8da85c01da5cfd872f787a6969e514efab2c5f110979434e773fce211e755e4c45438c4469ab9095cb595b7
+DIST lbreakout.png 8673 BLAKE2B ce4f7e35617729063ad80507f8d85127195d217e82dcadbdb409dcb1710fd297f19619e038881ed769778265caef19db39879a45cb28ddc7c1242744b2858c2e SHA512 47eb104ebb9bb103a370986af7a4663f0b9b24afc013c4f78eb7f023a64d51c7dc353e2f2a2729bdeb80ca5894bf1acf2fb5f4257cd67a93f9088c692bdcaf72

diff --git a/games-arcade/lbreakout/lbreakout-010315-r1.ebuild b/games-arcade/lbreakout/lbreakout-010315-r1.ebuild
index a00036389b1..cd7d50cc9b4 100644
--- a/games-arcade/lbreakout/lbreakout-010315-r1.ebuild
+++ b/games-arcade/lbreakout/lbreakout-010315-r1.ebuild
@@ -7,7 +7,9 @@ inherit desktop toolchain-funcs
 
 DESCRIPTION="Breakout clone written with the SDL library"
 HOMEPAGE="http://lgames.sourceforge.net/LBreakout/"
-SRC_URI="mirror://sourceforge/lgames/${P}.tar.gz"
+SRC_URI="
+	mirror://sourceforge/lgames/${P}.tar.gz
+	https://dev.gentoo.org/~ionen/distfiles/${PN}.png"
 
 LICENSE="GPL-2+"
 SLOT="0"
@@ -40,5 +42,6 @@ src_install() {
 	fperms g+s /usr/bin/${PN}
 	fperms 660 /var/games/${PN}.hscr
 
-	make_desktop_entry ${PN} LBreakout applications-games
+	doicon "${DISTDIR}"/${PN}.png
+	make_desktop_entry ${PN} LBreakout
 }


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

* [gentoo-commits] repo/gentoo:master commit in: games-arcade/lbreakout/
@ 2022-01-19 22:11 Ionen Wolkens
  0 siblings, 0 replies; 6+ messages in thread
From: Ionen Wolkens @ 2022-01-19 22:11 UTC (permalink / raw
  To: gentoo-commits

commit:     02537605a36e29c3cde0cc21061adf11f189d2f7
Author:     Michael Mair-Keimberger <mmk <AT> levelnine <DOT> at>
AuthorDate: Wed Jan 19 19:04:48 2022 +0000
Commit:     Ionen Wolkens <ionen <AT> gentoo <DOT> org>
CommitDate: Wed Jan 19 21:56:38 2022 +0000
URL:        https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=02537605

games-arcade/lbreakout: use https

Package-Manager: Portage-3.0.30, Repoman-3.0.3
Signed-off-by: Michael Mair-Keimberger <mmk <AT> levelnine.at>
Closes: https://github.com/gentoo/gentoo/pull/23874
Signed-off-by: Ionen Wolkens <ionen <AT> gentoo.org>

 games-arcade/lbreakout/lbreakout-010315-r1.ebuild | 4 ++--
 1 file changed, 2 insertions(+), 2 deletions(-)

diff --git a/games-arcade/lbreakout/lbreakout-010315-r1.ebuild b/games-arcade/lbreakout/lbreakout-010315-r1.ebuild
index cd7d50cc9b40..c9c02681cb30 100644
--- a/games-arcade/lbreakout/lbreakout-010315-r1.ebuild
+++ b/games-arcade/lbreakout/lbreakout-010315-r1.ebuild
@@ -1,4 +1,4 @@
-# Copyright 1999-2021 Gentoo Authors
+# Copyright 1999-2022 Gentoo Authors
 # Distributed under the terms of the GNU General Public License v2
 
 EAPI=8
@@ -6,7 +6,7 @@ EAPI=8
 inherit desktop toolchain-funcs
 
 DESCRIPTION="Breakout clone written with the SDL library"
-HOMEPAGE="http://lgames.sourceforge.net/LBreakout/"
+HOMEPAGE="https://lgames.sourceforge.io/LBreakout/"
 SRC_URI="
 	mirror://sourceforge/lgames/${P}.tar.gz
 	https://dev.gentoo.org/~ionen/distfiles/${PN}.png"


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

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

Thread overview: 6+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2018-04-22  9:22 [gentoo-commits] repo/gentoo:master commit in: games-arcade/lbreakout/ Pacho Ramos
  -- strict thread matches above, loose matches on Subject: below --
2022-01-19 22:11 Ionen Wolkens
2021-06-29 20:55 Ionen Wolkens
2021-06-28 16:49 Ionen Wolkens
2018-04-22  9:22 Pacho Ramos
2017-10-03 21:54 Patrice Clement

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