* [gentoo-commits] repo/gentoo:master commit in: games-misc/gtklife/
@ 2015-12-18 8:17 Michael Sterrett
0 siblings, 0 replies; 3+ messages in thread
From: Michael Sterrett @ 2015-12-18 8:17 UTC (permalink / raw
To: gentoo-commits
commit: 3d395e2475596b23cb3e5abde3ee6244c8979620
Author: Michael Sterrett <mr_bones_ <AT> gentoo <DOT> org>
AuthorDate: Fri Dec 18 01:22:25 2015 +0000
Commit: Michael Sterrett <mr_bones_ <AT> gentoo <DOT> org>
CommitDate: Fri Dec 18 08:17:25 2015 +0000
URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=3d395e24
EAPI=5
Package-Manager: portage-2.2.24
games-misc/gtklife/gtklife-5.1.ebuild | 2 +-
1 file changed, 1 insertion(+), 1 deletion(-)
diff --git a/games-misc/gtklife/gtklife-5.1.ebuild b/games-misc/gtklife/gtklife-5.1.ebuild
index 08cdc43..6d1fd9c 100644
--- a/games-misc/gtklife/gtklife-5.1.ebuild
+++ b/games-misc/gtklife/gtklife-5.1.ebuild
@@ -2,7 +2,7 @@
# Distributed under the terms of the GNU General Public License v2
# $Id$
-EAPI=4
+EAPI=5
inherit eutils games
DESCRIPTION="A Conway's Life simulator for Unix"
^ permalink raw reply related [flat|nested] 3+ messages in thread
* [gentoo-commits] repo/gentoo:master commit in: games-misc/gtklife/
@ 2024-10-10 20:29 Conrad Kostecki
0 siblings, 0 replies; 3+ messages in thread
From: Conrad Kostecki @ 2024-10-10 20:29 UTC (permalink / raw
To: gentoo-commits
commit: d418302f5aefc67ecb09aa6b8022e046d1ea4e27
Author: Michael Mair-Keimberger <mmk <AT> levelnine <DOT> at>
AuthorDate: Tue Aug 6 16:55:55 2024 +0000
Commit: Conrad Kostecki <conikost <AT> gentoo <DOT> org>
CommitDate: Thu Oct 10 20:22:33 2024 +0000
URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=d418302f
games-misc/gtklife: add 5.3
Closes: https://bugs.gentoo.org/898982
Signed-off-by: Michael Mair-Keimberger <mmk <AT> levelnine.at>
Closes: https://github.com/gentoo/gentoo/pull/37997
Signed-off-by: Conrad Kostecki <conikost <AT> gentoo.org>
games-misc/gtklife/Manifest | 1 +
games-misc/gtklife/gtklife-5.3.ebuild | 47 +++++++++++++++++++++++++++++++++++
2 files changed, 48 insertions(+)
diff --git a/games-misc/gtklife/Manifest b/games-misc/gtklife/Manifest
index d6db74553db0..63604814da0d 100644
--- a/games-misc/gtklife/Manifest
+++ b/games-misc/gtklife/Manifest
@@ -1 +1,2 @@
DIST gtklife-5.2.tar.gz 808937 BLAKE2B c6eb8e8fac94db2872a83060ed1b5fc96bb097dc2e43e90b0b82acdc65e36774e9e655a4cd523693cbe6f0d8bf8646b3fbd3fa7ea4fc01e9d60b5173d1199be9 SHA512 3c40368fbfbf3092c5f8976ed797858a50d67044c5ef029ff52aab911d04899e3f09f564c883905fa23ee5b3c313ef129094affe533e6fc795071f5a18bca3e5
+DIST gtklife-5.3.tar.gz 808938 BLAKE2B d9e52486f86e4ea169b04877e7e4e9cdcbb770114c2d555d77829f396f627404aad95cbbbb70d58b4fee887749d490023952bd4770fd70785de6319d96c932ea SHA512 7007a322edc5ecbbe115258d933d07d2ab4ed9e288a25efe0103078d6ac5fe26485777d9922d958a4ff86d2e9b811ea1c0e576110548936edc2c89a3a1ee12a9
diff --git a/games-misc/gtklife/gtklife-5.3.ebuild b/games-misc/gtklife/gtklife-5.3.ebuild
new file mode 100644
index 000000000000..cfe71dab0c3f
--- /dev/null
+++ b/games-misc/gtklife/gtklife-5.3.ebuild
@@ -0,0 +1,47 @@
+# Copyright 1999-2024 Gentoo Authors
+# Distributed under the terms of the GNU General Public License v2
+
+EAPI=8
+
+inherit autotools desktop xdg
+
+DESCRIPTION="Conway's Life simulator for Unix"
+HOMEPAGE="https://homeforaday.org/gtklife/"
+SRC_URI="https://homeforaday.org/${PN}/${P}.tar.gz"
+
+LICENSE="GPL-2"
+SLOT="0"
+KEYWORDS="~amd64 ~hppa ~x86"
+
+RDEPEND="
+ dev-libs/glib:2
+ x11-libs/gtk+:2
+ x11-libs/libX11"
+DEPEND="${RDEPEND}"
+BDEPEND="virtual/pkgconfig"
+
+src_prepare(){
+ default
+ eautoreconf
+}
+
+src_configure() {
+ local myeconfargs=(
+ --with-gtk2
+ --with-docdir=/usr/share/doc/${PF}/html
+ )
+ econf "${myeconfargs[@]}"
+}
+
+src_install() {
+ dobin ${PN}
+
+ insinto /usr/share/${PN}
+ doins -r graphics patterns
+
+ newicon -s 48 icon_48x48.png ${PN}.png
+ make_desktop_entry ${PN} GtkLife
+
+ dodoc -r doc/*
+ dodoc AUTHORS README NEWS
+}
^ permalink raw reply related [flat|nested] 3+ messages in thread
* [gentoo-commits] repo/gentoo:master commit in: games-misc/gtklife/
@ 2024-10-13 9:40 James Le Cuirot
0 siblings, 0 replies; 3+ messages in thread
From: James Le Cuirot @ 2024-10-13 9:40 UTC (permalink / raw
To: gentoo-commits
commit: eee05d077d7aba204d6c3ef642a9161a217817e2
Author: Michael Mair-Keimberger <mmk <AT> levelnine <DOT> at>
AuthorDate: Sun Oct 13 08:26:41 2024 +0000
Commit: James Le Cuirot <chewi <AT> gentoo <DOT> org>
CommitDate: Sun Oct 13 09:39:46 2024 +0000
URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=eee05d07
games-misc/gtklife: fix source Manifest
Comparing the original source and the new source showed that the only
change was an updated mail address in the AUTHORS file.
Signed-off-by: Michael Mair-Keimberger <mmk <AT> levelnine.at>
Closes: https://bugs.gentoo.org/941263
Closes: https://github.com/gentoo/gentoo/pull/38972
Signed-off-by: James Le Cuirot <chewi <AT> gentoo.org>
games-misc/gtklife/Manifest | 2 +-
1 file changed, 1 insertion(+), 1 deletion(-)
diff --git a/games-misc/gtklife/Manifest b/games-misc/gtklife/Manifest
index 63604814da0d..60ec66296077 100644
--- a/games-misc/gtklife/Manifest
+++ b/games-misc/gtklife/Manifest
@@ -1,2 +1,2 @@
DIST gtklife-5.2.tar.gz 808937 BLAKE2B c6eb8e8fac94db2872a83060ed1b5fc96bb097dc2e43e90b0b82acdc65e36774e9e655a4cd523693cbe6f0d8bf8646b3fbd3fa7ea4fc01e9d60b5173d1199be9 SHA512 3c40368fbfbf3092c5f8976ed797858a50d67044c5ef029ff52aab911d04899e3f09f564c883905fa23ee5b3c313ef129094affe533e6fc795071f5a18bca3e5
-DIST gtklife-5.3.tar.gz 808938 BLAKE2B d9e52486f86e4ea169b04877e7e4e9cdcbb770114c2d555d77829f396f627404aad95cbbbb70d58b4fee887749d490023952bd4770fd70785de6319d96c932ea SHA512 7007a322edc5ecbbe115258d933d07d2ab4ed9e288a25efe0103078d6ac5fe26485777d9922d958a4ff86d2e9b811ea1c0e576110548936edc2c89a3a1ee12a9
+DIST gtklife-5.3.tar.gz 808940 BLAKE2B 01f36d34263ce8d3cca2ad32f2e16807d3dcc32419444a14d7bbd6affc0d95c506378e1ea258388e1c65cac52736804c1a800be48b6f25f4488a679b42cf117c SHA512 e9dbebb6af230ac4eb1e67d5ea493ee809d251bcac87f3d28b23445e0eeec8684acc6b378ec9289c7658f1e26660480b257a2f82862182cae020d9cdf71ec24f
^ permalink raw reply related [flat|nested] 3+ messages in thread
end of thread, other threads:[~2024-10-13 9:40 UTC | newest]
Thread overview: 3+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2024-10-10 20:29 [gentoo-commits] repo/gentoo:master commit in: games-misc/gtklife/ Conrad Kostecki
-- strict thread matches above, loose matches on Subject: below --
2024-10-13 9:40 James Le Cuirot
2015-12-18 8:17 Michael Sterrett
This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox