public inbox for gentoo-commits@lists.gentoo.org
 help / color / mirror / Atom feed
* [gentoo-commits] repo/gentoo:master commit in: games-puzzle/galaxis/
@ 2015-11-22  3:05 Michael Sterrett
  0 siblings, 0 replies; 5+ messages in thread
From: Michael Sterrett @ 2015-11-22  3:05 UTC (permalink / raw
  To: gentoo-commits

commit:     cfaa73c300106468a37c13bdb0ce16878a32332c
Author:     Michael Sterrett <mr_bones_ <AT> gentoo <DOT> org>
AuthorDate: Sun Nov 22 03:03:58 2015 +0000
Commit:     Michael Sterrett <mr_bones_ <AT> gentoo <DOT> org>
CommitDate: Sun Nov 22 03:03:58 2015 +0000
URL:        https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=cfaa73c3

use epatch to apply patch

Package-Manager: portage-2.2.20.1

 games-puzzle/galaxis/galaxis-1.8.ebuild | 10 ++++++----
 1 file changed, 6 insertions(+), 4 deletions(-)

diff --git a/games-puzzle/galaxis/galaxis-1.8.ebuild b/games-puzzle/galaxis/galaxis-1.8.ebuild
index 9aeb8cd..3b04462 100644
--- a/games-puzzle/galaxis/galaxis-1.8.ebuild
+++ b/games-puzzle/galaxis/galaxis-1.8.ebuild
@@ -3,7 +3,7 @@
 # $Id$
 
 EAPI=5
-inherit games
+inherit eutils games
 
 DESCRIPTION="A UNIX-hosted, curses-based clone of the nifty little Macintosh freeware game Galaxis"
 HOMEPAGE="http://www.catb.org/~esr/galaxis/"
@@ -14,10 +14,12 @@ SLOT="0"
 KEYWORDS="amd64 ~ppc ~ppc64 x86"
 IUSE=""
 
-DEPEND=">=sys-libs/ncurses-5.3"
-RDEPEND="${DEPEND}"
+DEPEND=">=sys-libs/ncurses-5.3:0"
+RDEPEND=${DEPEND}
 
-PATCHES=( "${FILESDIR}"/${P}-gentoo.patch )
+src_prepare() {
+	epatch "${FILESDIR}"/${P}-gentoo.patch
+}
 
 src_install() {
 	dogamesbin galaxis


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

* [gentoo-commits] repo/gentoo:master commit in: games-puzzle/galaxis/
@ 2017-12-01 19:31 David Seifert
  0 siblings, 0 replies; 5+ messages in thread
From: David Seifert @ 2017-12-01 19:31 UTC (permalink / raw
  To: gentoo-commits

commit:     6f17ded6a3d85a331d5880a8354b65387d23b641
Author:     David Seifert <soap <AT> gentoo <DOT> org>
AuthorDate: Fri Dec  1 18:57:28 2017 +0000
Commit:     David Seifert <soap <AT> gentoo <DOT> org>
CommitDate: Fri Dec  1 19:29:54 2017 +0000
URL:        https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=6f17ded6

games-puzzle/galaxis: [QA] Fix DESCRIPTION.toolong

 games-puzzle/galaxis/galaxis-1.8.ebuild | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/games-puzzle/galaxis/galaxis-1.8.ebuild b/games-puzzle/galaxis/galaxis-1.8.ebuild
index 12bd540ec67..1fee81603db 100644
--- a/games-puzzle/galaxis/galaxis-1.8.ebuild
+++ b/games-puzzle/galaxis/galaxis-1.8.ebuild
@@ -4,7 +4,7 @@
 EAPI=5
 inherit eutils games
 
-DESCRIPTION="A UNIX-hosted, curses-based clone of the nifty little Macintosh freeware game Galaxis"
+DESCRIPTION="Curses-based clone of the nifty little Macintosh freeware game Galaxis"
 HOMEPAGE="http://www.catb.org/~esr/galaxis/"
 SRC_URI="http://www.catb.org/~esr/galaxis/${P}.tar.gz"
 


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

* [gentoo-commits] repo/gentoo:master commit in: games-puzzle/galaxis/
@ 2019-07-18 12:47 Lars Wendler
  0 siblings, 0 replies; 5+ messages in thread
From: Lars Wendler @ 2019-07-18 12:47 UTC (permalink / raw
  To: gentoo-commits

commit:     46955a32bc067d9550a3389271963e0a92b628c8
Author:     Lars Wendler <polynomial-c <AT> gentoo <DOT> org>
AuthorDate: Thu Jul 18 12:47:01 2019 +0000
Commit:     Lars Wendler <polynomial-c <AT> gentoo <DOT> org>
CommitDate: Thu Jul 18 12:47:01 2019 +0000
URL:        https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=46955a32

games-puzzle/galaxis: Fixed build with sys-libs/ncurses[tinfo]

Closes: https://bugs.gentoo.org/690080
Package-Manager: Portage-2.3.69, Repoman-2.3.16
Signed-off-by: Lars Wendler <polynomial-c <AT> gentoo.org>

 games-puzzle/galaxis/galaxis-1.8-r1.ebuild | 12 ++++++++++--
 1 file changed, 10 insertions(+), 2 deletions(-)

diff --git a/games-puzzle/galaxis/galaxis-1.8-r1.ebuild b/games-puzzle/galaxis/galaxis-1.8-r1.ebuild
index 73020c4a91e..d646f5a94a2 100644
--- a/games-puzzle/galaxis/galaxis-1.8-r1.ebuild
+++ b/games-puzzle/galaxis/galaxis-1.8-r1.ebuild
@@ -1,7 +1,9 @@
-# Copyright 1999-2018 Gentoo Foundation
+# Copyright 1999-2019 Gentoo Authors
 # Distributed under the terms of the GNU General Public License v2
 
-EAPI=6
+EAPI=7
+
+inherit toolchain-funcs
 
 DESCRIPTION="Curses-based clone of the nifty little Macintosh freeware game Galaxis"
 HOMEPAGE="http://www.catb.org/~esr/galaxis/"
@@ -14,9 +16,15 @@ IUSE=""
 
 DEPEND=">=sys-libs/ncurses-5.3:0="
 RDEPEND="${DEPEND}"
+BDEPEND="virtual/pkgconfig"
 
 PATCHES=( "${FILESDIR}"/${P}-gentoo.patch )
 
+src_compile() {
+	local PKGCONFIG="$(tc-getPKG_CONFIG)"
+	emake TERMLIB="$(${PKGCONFIG} --libs ncurses)"
+}
+
 src_install() {
 	dobin galaxis
 	doman galaxis.6


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

* [gentoo-commits] repo/gentoo:master commit in: games-puzzle/galaxis/
@ 2022-10-15 20:07 Ionen Wolkens
  0 siblings, 0 replies; 5+ messages in thread
From: Ionen Wolkens @ 2022-10-15 20:07 UTC (permalink / raw
  To: gentoo-commits

commit:     29dc6bcc77e10c32afa9b1952af838b5e138837e
Author:     Ionen Wolkens <ionen <AT> gentoo <DOT> org>
AuthorDate: Sat Oct 15 19:15:27 2022 +0000
Commit:     Ionen Wolkens <ionen <AT> gentoo <DOT> org>
CommitDate: Sat Oct 15 20:06:46 2022 +0000
URL:        https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=29dc6bcc

games-puzzle/galaxis: add gitlab uptream metadata

Albeit upstream currently seems dead / unresponsive.

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

 games-puzzle/galaxis/metadata.xml | 11 +++++++----
 1 file changed, 7 insertions(+), 4 deletions(-)

diff --git a/games-puzzle/galaxis/metadata.xml b/games-puzzle/galaxis/metadata.xml
index 1c3ba213c494..1c8dd3a77066 100644
--- a/games-puzzle/galaxis/metadata.xml
+++ b/games-puzzle/galaxis/metadata.xml
@@ -1,8 +1,11 @@
 <?xml version="1.0" encoding="UTF-8"?>
 <!DOCTYPE pkgmetadata SYSTEM "https://www.gentoo.org/dtd/metadata.dtd">
 <pkgmetadata>
-<maintainer type="project">
-	<email>games@gentoo.org</email>
-	<name>Gentoo Games Project</name>
-</maintainer>
+	<maintainer type="project">
+		<email>games@gentoo.org</email>
+		<name>Gentoo Games Project</name>
+	</maintainer>
+	<upstream>
+		<remote-id type="gitlab">esr/galaxis</remote-id>
+	</upstream>
 </pkgmetadata>


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

* [gentoo-commits] repo/gentoo:master commit in: games-puzzle/galaxis/
@ 2023-10-09 20:39 James Le Cuirot
  0 siblings, 0 replies; 5+ messages in thread
From: James Le Cuirot @ 2023-10-09 20:39 UTC (permalink / raw
  To: gentoo-commits

commit:     0a7f24661afbc6a94c7225436be321370a5ce633
Author:     James Le Cuirot <chewi <AT> gentoo <DOT> org>
AuthorDate: Mon Oct  9 20:38:44 2023 +0000
Commit:     James Le Cuirot <chewi <AT> gentoo <DOT> org>
CommitDate: Mon Oct  9 20:38:44 2023 +0000
URL:        https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=0a7f2466

games-puzzle/galaxis: Drop old 1.10

Signed-off-by: James Le Cuirot <chewi <AT> gentoo.org>

 games-puzzle/galaxis/galaxis-1.10.ebuild | 38 --------------------------------
 1 file changed, 38 deletions(-)

diff --git a/games-puzzle/galaxis/galaxis-1.10.ebuild b/games-puzzle/galaxis/galaxis-1.10.ebuild
deleted file mode 100644
index d5baee4147e0..000000000000
--- a/games-puzzle/galaxis/galaxis-1.10.ebuild
+++ /dev/null
@@ -1,38 +0,0 @@
-# Copyright 1999-2022 Gentoo Authors
-# Distributed under the terms of the GNU General Public License v2
-
-EAPI=8
-
-inherit desktop flag-o-matic toolchain-funcs
-
-DESCRIPTION="Curses-based clone of the nifty little Macintosh freeware game Galaxis"
-HOMEPAGE="http://www.catb.org/~esr/galaxis/"
-SRC_URI="http://www.catb.org/~esr/galaxis/${P}.tar.gz"
-
-LICENSE="BSD-2"
-SLOT="0"
-KEYWORDS="~amd64 ~ppc64 ~x86"
-
-DEPEND="sys-libs/ncurses:="
-RDEPEND="${DEPEND}"
-BDEPEND="virtual/pkgconfig"
-
-PATCHES=(
-	"${FILESDIR}"/${P}-c2x.patch
-)
-
-src_compile() {
-	append-cppflags $($(tc-getPKG_CONFIG) --cflags ncurses || die) -DNDEBUG
-	append-libs $($(tc-getPKG_CONFIG) --libs ncurses || die)
-
-	emake CC="$(tc-getCC)" CFLAGS="${CFLAGS} ${CPPFLAGS} ${LDFLAGS}" TERMLIB="${LIBS}"
-}
-
-src_install() {
-	dobin ${PN}
-	doman ${PN}.6
-	einstalldocs
-
-	doicon ${PN}.png
-	domenu ${PN}.desktop
-}


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

end of thread, other threads:[~2023-10-09 20:40 UTC | newest]

Thread overview: 5+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2023-10-09 20:39 [gentoo-commits] repo/gentoo:master commit in: games-puzzle/galaxis/ James Le Cuirot
  -- strict thread matches above, loose matches on Subject: below --
2022-10-15 20:07 Ionen Wolkens
2019-07-18 12:47 Lars Wendler
2017-12-01 19:31 David Seifert
2015-11-22  3:05 Michael Sterrett

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