public inbox for gentoo-commits@lists.gentoo.org
 help / color / mirror / Atom feed
* [gentoo-commits] repo/gentoo:master commit in: games-action/wordwarvi/
@ 2015-12-18 10:13 Michael Sterrett
  0 siblings, 0 replies; 6+ messages in thread
From: Michael Sterrett @ 2015-12-18 10:13 UTC (permalink / raw
  To: gentoo-commits

commit:     8be6dca8765ce0873373b4ef307e280723c0fcce
Author:     Michael Sterrett <mr_bones_ <AT> gentoo <DOT> org>
AuthorDate: Fri Dec 18 09:23:26 2015 +0000
Commit:     Michael Sterrett <mr_bones_ <AT> gentoo <DOT> org>
CommitDate: Fri Dec 18 09:23:26 2015 +0000
URL:        https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=8be6dca8

EAPI=5; minor tidying

Package-Manager: portage-2.2.24

 games-action/wordwarvi/wordwarvi-1.00.ebuild | 8 +++-----
 1 file changed, 3 insertions(+), 5 deletions(-)

diff --git a/games-action/wordwarvi/wordwarvi-1.00.ebuild b/games-action/wordwarvi/wordwarvi-1.00.ebuild
index 0ef8973..38eae15 100644
--- a/games-action/wordwarvi/wordwarvi-1.00.ebuild
+++ b/games-action/wordwarvi/wordwarvi-1.00.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 retro side-scrolling shoot'em up based on the editor war story"
@@ -24,12 +24,10 @@ src_prepare() {
 	epatch "${FILESDIR}"/${P}-sound.patch
 	sed -i \
 		-e "/^WITHAUDIO/s/yes/$(use portaudio && echo yes || echo no)/" \
-		Makefile \
-		|| die "sed failed"
+		Makefile || die
 	sed -i \
 		-e "s:GENTOO_DATADIR:${GAMES_DATADIR}/${PN}:" \
-		wwviaudio.c \
-		|| die "sed failed"
+		wwviaudio.c || die
 }
 
 src_compile() {


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

* [gentoo-commits] repo/gentoo:master commit in: games-action/wordwarvi/
@ 2017-01-31  0:59 Austin English
  0 siblings, 0 replies; 6+ messages in thread
From: Austin English @ 2017-01-31  0:59 UTC (permalink / raw
  To: gentoo-commits

commit:     c0e216403830d361b699643b6d6f0555c840d23c
Author:     Austin English <wizardedit <AT> gentoo <DOT> org>
AuthorDate: Tue Jan 31 00:22:46 2017 +0000
Commit:     Austin English <wizardedit <AT> gentoo <DOT> org>
CommitDate: Tue Jan 31 00:59:21 2017 +0000
URL:        https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=c0e21640

games-action/wordwarvi: remove deprecated games eclass

Also update to EAPI 6

Gentoo-Bug: https://bugs.gentoo.org/574082

Package-Manager: Portage-2.3.2, Repoman-2.3.1

 games-action/wordwarvi/wordwarvi-1.00-r1.ebuild | 60 +++++++++++++++++++++++++
 1 file changed, 60 insertions(+)

diff --git a/games-action/wordwarvi/wordwarvi-1.00-r1.ebuild b/games-action/wordwarvi/wordwarvi-1.00-r1.ebuild
new file mode 100644
index 00000000..1d6096e
--- /dev/null
+++ b/games-action/wordwarvi/wordwarvi-1.00-r1.ebuild
@@ -0,0 +1,60 @@
+# Copyright 1999-2017 Gentoo Foundation
+# Distributed under the terms of the GNU General Public License v2
+# $Id$
+
+EAPI=6
+inherit eutils
+
+DESCRIPTION="A retro side-scrolling shoot'em up based on the editor war story"
+HOMEPAGE="http://wordwarvi.sourceforge.net"
+SRC_URI="mirror://sourceforge/wordwarvi/${P}.tar.gz"
+
+LICENSE="GPL-2 CC-BY-2.0 CC-BY-SA-3.0"
+SLOT="0"
+KEYWORDS="~amd64 ~x86"
+IUSE="portaudio"
+
+RDEPEND="x11-libs/gtk+:2
+	portaudio? ( media-libs/libvorbis
+		>=media-libs/portaudio-19_pre1 )"
+DEPEND="${RDEPEND}
+	virtual/pkgconfig"
+
+PATCHES=(
+	"${FILESDIR}"/${P}-sound.patch
+)
+
+src_prepare() {
+	default
+
+	sed -i \
+		-e "/^WITHAUDIO/s/yes/$(use portaudio && echo yes || echo no)/" \
+		Makefile || die
+	sed -i \
+		-e "s:GENTOO_DATADIR:/usr/share/${PN}:" \
+		wwviaudio.c || die
+}
+
+src_compile() {
+	emake \
+		PREFIX="/usr" \
+		DATADIR="/usr/share/${PN}" \
+		MANDIR="/usr/share/man"
+}
+
+src_install() {
+	emake \
+		DESTDIR="${D}" \
+		PREFIX="/usr" \
+		DATADIR="/usr/share/${PN}" \
+		MANDIR="/usr/share/man" \
+		install
+
+	if ! use portaudio ; then
+		rm -rf "${D}/usr/share" || die
+	fi
+
+	dodoc README AUTHORS changelog.txt AAA_HOW_TO_MAKE_NEW_LEVELS.txt
+	newicon icons/wordwarvi_icon_128x128.png ${PN}.png
+	make_desktop_entry ${PN} "Word War vi"
+}


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

* [gentoo-commits] repo/gentoo:master commit in: games-action/wordwarvi/
@ 2018-08-15 10:33 Michał Górny
  0 siblings, 0 replies; 6+ messages in thread
From: Michał Górny @ 2018-08-15 10:33 UTC (permalink / raw
  To: gentoo-commits

commit:     9542d023f529c45b8bfe6e30c38519afd4fff210
Author:     Marty E. Plummer <hanetzer <AT> startmail <DOT> com>
AuthorDate: Thu Aug  2 23:35:17 2018 +0000
Commit:     Michał Górny <mgorny <AT> gentoo <DOT> org>
CommitDate: Wed Aug 15 10:33:05 2018 +0000
URL:        https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=9542d023

games-action/wordwarvi: eutils->desktop

Only has eutils for the implicit desktop inheritance for
make_desktop_entry and newicon.

Package-Manager: Portage-2.3.44, Repoman-2.3.10

 games-action/wordwarvi/wordwarvi-1.00-r1.ebuild | 5 +++--
 1 file changed, 3 insertions(+), 2 deletions(-)

diff --git a/games-action/wordwarvi/wordwarvi-1.00-r1.ebuild b/games-action/wordwarvi/wordwarvi-1.00-r1.ebuild
index df7ee9102eb..096c489f0c6 100644
--- a/games-action/wordwarvi/wordwarvi-1.00-r1.ebuild
+++ b/games-action/wordwarvi/wordwarvi-1.00-r1.ebuild
@@ -1,8 +1,9 @@
-# Copyright 1999-2017 Gentoo Foundation
+# Copyright 1999-2018 Gentoo Foundation
 # Distributed under the terms of the GNU General Public License v2
 
 EAPI=6
-inherit eutils
+
+inherit desktop
 
 DESCRIPTION="A retro side-scrolling shoot'em up based on the editor war story"
 HOMEPAGE="http://wordwarvi.sourceforge.net"


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

* [gentoo-commits] repo/gentoo:master commit in: games-action/wordwarvi/
@ 2021-04-19 20:54 Sam James
  0 siblings, 0 replies; 6+ messages in thread
From: Sam James @ 2021-04-19 20:54 UTC (permalink / raw
  To: gentoo-commits

commit:     89c76b15da5d68a9b8c47dc21c73eaf0d5f06a6a
Author:     Sam James <sam <AT> gentoo <DOT> org>
AuthorDate: Mon Apr 19 20:51:52 2021 +0000
Commit:     Sam James <sam <AT> gentoo <DOT> org>
CommitDate: Mon Apr 19 20:54:11 2021 +0000
URL:        https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=89c76b15

games-action/wordwarvi: port to EAPI 7

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

 games-action/wordwarvi/wordwarvi-1.00-r1.ebuild | 16 ++++++++++------
 1 file changed, 10 insertions(+), 6 deletions(-)

diff --git a/games-action/wordwarvi/wordwarvi-1.00-r1.ebuild b/games-action/wordwarvi/wordwarvi-1.00-r1.ebuild
index 1519e3ec8cc..c1a147a7c01 100644
--- a/games-action/wordwarvi/wordwarvi-1.00-r1.ebuild
+++ b/games-action/wordwarvi/wordwarvi-1.00-r1.ebuild
@@ -1,7 +1,7 @@
 # Copyright 1999-2021 Gentoo Authors
 # Distributed under the terms of the GNU General Public License v2
 
-EAPI=6
+EAPI=7
 
 inherit desktop toolchain-funcs
 
@@ -14,11 +14,15 @@ SLOT="0"
 KEYWORDS="~amd64 ~x86"
 IUSE="portaudio"
 
-RDEPEND="x11-libs/gtk+:2
-	portaudio? ( media-libs/libvorbis
-		>=media-libs/portaudio-19_pre1 )"
-DEPEND="${RDEPEND}
-	virtual/pkgconfig"
+RDEPEND="
+	x11-libs/gtk+:2
+	portaudio? (
+		media-libs/libvorbis
+		>=media-libs/portaudio-19_pre1
+	)
+"
+DEPEND="${RDEPEND}"
+BDEPEND="virtual/pkgconfig"
 
 PATCHES=(
 	"${FILESDIR}"/${P}-sound.patch


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

* [gentoo-commits] repo/gentoo:master commit in: games-action/wordwarvi/
@ 2021-04-19 20:54 Sam James
  0 siblings, 0 replies; 6+ messages in thread
From: Sam James @ 2021-04-19 20:54 UTC (permalink / raw
  To: gentoo-commits

commit:     9092ad1846891e8618b20bd6097c05d4a329fffe
Author:     Sam James <sam <AT> gentoo <DOT> org>
AuthorDate: Mon Apr 19 20:48:25 2021 +0000
Commit:     Sam James <sam <AT> gentoo <DOT> org>
CommitDate: Mon Apr 19 20:54:09 2021 +0000
URL:        https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=9092ad18

games-action/wordwarvi: respect CC

Closes: https://bugs.gentoo.org/784227
Signed-off-by: Sam James <sam <AT> gentoo.org>

 games-action/wordwarvi/wordwarvi-1.00-r1.ebuild | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/games-action/wordwarvi/wordwarvi-1.00-r1.ebuild b/games-action/wordwarvi/wordwarvi-1.00-r1.ebuild
index da2395b0216..1519e3ec8cc 100644
--- a/games-action/wordwarvi/wordwarvi-1.00-r1.ebuild
+++ b/games-action/wordwarvi/wordwarvi-1.00-r1.ebuild
@@ -36,7 +36,7 @@ src_prepare() {
 }
 
 src_compile() {
-	tc-export PKG_CONFIG
+	tc-export CC PKG_CONFIG
 
 	emake \
 		PREFIX="/usr" \


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

* [gentoo-commits] repo/gentoo:master commit in: games-action/wordwarvi/
@ 2023-12-31  2:48 Conrad Kostecki
  0 siblings, 0 replies; 6+ messages in thread
From: Conrad Kostecki @ 2023-12-31  2:48 UTC (permalink / raw
  To: gentoo-commits

commit:     4199179f0d5134613838d3f2a746721f50df20ac
Author:     Michael Mair-Keimberger <mmk <AT> levelnine <DOT> at>
AuthorDate: Fri Dec 29 21:17:46 2023 +0000
Commit:     Conrad Kostecki <conikost <AT> gentoo <DOT> org>
CommitDate: Sun Dec 31 02:46:30 2023 +0000
URL:        https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=4199179f

games-action/wordwarvi: EAPI8 bump, fix bug #910281

Signed-off-by: Michael Mair-Keimberger <mmk <AT> levelnine.at>

Closes: https://bugs.gentoo.org/910281
Closes: https://github.com/gentoo/gentoo/pull/34549
Signed-off-by: Conrad Kostecki <conikost <AT> gentoo.org>

 games-action/wordwarvi/wordwarvi-1.00-r1.ebuild | 6 +++---
 1 file changed, 3 insertions(+), 3 deletions(-)

diff --git a/games-action/wordwarvi/wordwarvi-1.00-r1.ebuild b/games-action/wordwarvi/wordwarvi-1.00-r1.ebuild
index 44004a19afbe..675a8a0027f4 100644
--- a/games-action/wordwarvi/wordwarvi-1.00-r1.ebuild
+++ b/games-action/wordwarvi/wordwarvi-1.00-r1.ebuild
@@ -1,11 +1,11 @@
 # Copyright 1999-2023 Gentoo Authors
 # Distributed under the terms of the GNU General Public License v2
 
-EAPI=7
+EAPI=8
 
 inherit desktop toolchain-funcs
 
-DESCRIPTION="retro side-scrolling shoot'em up based on the editor war story"
+DESCRIPTION="Retro side-scrolling shoot'em up based on the editor war story"
 HOMEPAGE="https://wordwarvi.sourceforge.net"
 SRC_URI="mirror://sourceforge/wordwarvi/${P}.tar.gz"
 
@@ -40,7 +40,7 @@ src_prepare() {
 }
 
 src_compile() {
-	tc-export CC PKG_CONFIG
+	tc-export BUILD_CC CC PKG_CONFIG
 
 	emake \
 		PREFIX="/usr" \


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

end of thread, other threads:[~2023-12-31  2:49 UTC | newest]

Thread overview: 6+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2015-12-18 10:13 [gentoo-commits] repo/gentoo:master commit in: games-action/wordwarvi/ Michael Sterrett
  -- strict thread matches above, loose matches on Subject: below --
2017-01-31  0:59 Austin English
2018-08-15 10:33 Michał Górny
2021-04-19 20:54 Sam James
2021-04-19 20:54 Sam James
2023-12-31  2:48 Conrad Kostecki

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