public inbox for gentoo-commits@lists.gentoo.org
 help / color / mirror / Atom feed
* [gentoo-commits] repo/proj/guru:dev commit in: games-fps/gzdoom/
@ 2019-05-11  1:06 William Breathitt Gray
  0 siblings, 0 replies; 11+ messages in thread
From: William Breathitt Gray @ 2019-05-11  1:06 UTC (permalink / raw
  To: gentoo-commits

commit:     5ad016ab948bcf49f443c2f4182f185e6e357782
Author:     William Breathitt Gray <vilhelm.gray <AT> gmail <DOT> com>
AuthorDate: Thu May  2 13:00:54 2019 +0000
Commit:     William Breathitt Gray <vilhelm.gray <AT> gmail <DOT> com>
CommitDate: Fri May 10 11:06:57 2019 +0000
URL:        https://gitweb.gentoo.org/repo/proj/guru.git/commit/?id=5ad016ab

games-fps/gzdoom: New package

Package-Manager: Portage-2.3.65, Repoman-2.3.12
Signed-off-by: William Breathitt Gray <vilhelm.gray <AT> gmail.com>

 games-fps/gzdoom/Manifest            |  1 +
 games-fps/gzdoom/gzdoom-4.1.1.ebuild | 69 ++++++++++++++++++++++++++++++++++++
 games-fps/gzdoom/metadata.xml        | 19 ++++++++++
 3 files changed, 89 insertions(+)

diff --git a/games-fps/gzdoom/Manifest b/games-fps/gzdoom/Manifest
new file mode 100644
index 0000000..21c3976
--- /dev/null
+++ b/games-fps/gzdoom/Manifest
@@ -0,0 +1 @@
+DIST gzdoom-4.1.1.tar.gz 13008847 BLAKE2B ac2bddbcc618148ed9de15dfe9105d1f3b9f319496b995d2af06834eb1349415ab3ee48beaa3e1acac04c81152e32bc89b71ac53576cf7789c1471a29a0a5339 SHA512 649e8bbf7f7f669d1bda13f1ab654428b69fa3e03a97eefb2ff1e996dbf62c66df72dddee9b8c139664ce5374ffbcdd8a10d1c4e3d0e6e65848ed5660b547d34

diff --git a/games-fps/gzdoom/gzdoom-4.1.1.ebuild b/games-fps/gzdoom/gzdoom-4.1.1.ebuild
new file mode 100644
index 0000000..2ebc1c2
--- /dev/null
+++ b/games-fps/gzdoom/gzdoom-4.1.1.ebuild
@@ -0,0 +1,69 @@
+# Copyright 1999-2019 Gentoo Authors
+# Distributed under the terms of the GNU General Public License v2
+
+EAPI=7
+
+inherit cmake-utils desktop xdg
+
+DESCRIPTION="GZDoom - a modder-friendly OpenGL source port based on the DOOM engine"
+HOMEPAGE="https://zdoom.org"
+SRC_URI="https://github.com/coelckers/${PN}/archive/g${PV}.tar.gz -> ${P}.tar.gz"
+
+LICENSE="BSD BZIP2 DUMB-0.9.2 GPL-3 LGPL-3 MIT"
+SLOT="0"
+KEYWORDS="~amd64 ~x86"
+IUSE="gtk openal openmp midi"
+
+DEPEND="
+	app-arch/bzip2
+	dev-util/glslang
+	media-libs/libsdl2[opengl]
+	sys-libs/zlib
+	virtual/jpeg:0
+	gtk? ( x11-libs/gtk+:* )
+	midi? ( media-sound/wildmidi )
+	openal? (
+		media-libs/libsndfile
+		media-libs/openal
+		media-sound/mpg123
+	)"
+RDEPEND="
+	${DEPEND}
+	midi? (
+		media-sound/fluidsynth
+		media-sound/timidity++
+	)"
+
+S="${WORKDIR}/${PN}-g${PV}"
+
+src_prepare() {
+	cmake-utils_src_prepare
+}
+
+src_configure() {
+	local mycmakeargs=(
+		-DINSTALL_DOCS_PATH="${EPREFIX}/usr/share/doc/${P}/docs"
+		-DNO_GTK="$(usex !gtk)"
+		-DNO_OPENAL="$(usex !openal)"
+		-DNO_OPENMP="$(usex !openmp)"
+	)
+	cmake-utils_src_configure
+}
+
+src_install() {
+	newicon src/posix/zdoom.xpm "${PN}.xpm"
+	make_desktop_entry "${PN}" "GZDoom" "${PN}" "Game;ActionGame"
+	cmake-utils_src_install
+}
+
+pkg_preinst() {
+	xdg_pkg_preinst
+}
+
+pkg_postinst() {
+	xdg_pkg_postinst
+}
+
+pkg_postrm() {
+	xdg_pkg_postrm
+}

diff --git a/games-fps/gzdoom/metadata.xml b/games-fps/gzdoom/metadata.xml
new file mode 100644
index 0000000..6a4872a
--- /dev/null
+++ b/games-fps/gzdoom/metadata.xml
@@ -0,0 +1,19 @@
+<?xml version="1.0" encoding="UTF-8"?>
+<!DOCTYPE pkgmetadata SYSTEM "http://www.gentoo.org/dtd/metadata.dtd">
+<pkgmetadata>
+	<longdescription lang="en">
+		GZDoom is a modder-friendly OpenGL source port based on the DOOM engine
+	</longdescription>
+	<maintainer type="person">
+		<email>vilhelm.gray@gmail.com</email>
+		<name>William Breathitt Gray</name>
+	</maintainer>
+	<use>
+		<flag name="midi">Enables MIDI support</flag>
+	</use>
+	<upstream>
+		<bugs-to>https://forum.zdoom.org/viewforum.php?f=2</bugs-to>
+		<doc lang="en">https://zdoom.org</doc>
+		<remote-id type="github">coelckers/gzdoom</remote-id>
+	</upstream>
+</pkgmetadata>


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

* [gentoo-commits] repo/proj/guru:dev commit in: games-fps/gzdoom/
@ 2019-05-12  3:25 William Breathitt Gray
  0 siblings, 0 replies; 11+ messages in thread
From: William Breathitt Gray @ 2019-05-12  3:25 UTC (permalink / raw
  To: gentoo-commits

commit:     907b35da57f2d3739b36fcaddcb141010239fe83
Author:     William Breathitt Gray <vilhelm.gray <AT> gmail <DOT> com>
AuthorDate: Sun May 12 03:23:09 2019 +0000
Commit:     William Breathitt Gray <vilhelm.gray <AT> gmail <DOT> com>
CommitDate: Sun May 12 03:23:09 2019 +0000
URL:        https://gitweb.gentoo.org/repo/proj/guru.git/commit/?id=907b35da

games-fps/gzdoom: timidity and wildmidi are internal

Package-Manager: Portage-2.3.66, Repoman-2.3.12
Signed-off-by: William Breathitt Gray <vilhelm.gray <AT> gmail.com>

 games-fps/gzdoom/gzdoom-4.1.1.ebuild | 8 ++------
 games-fps/gzdoom/metadata.xml        | 2 +-
 2 files changed, 3 insertions(+), 7 deletions(-)

diff --git a/games-fps/gzdoom/gzdoom-4.1.1.ebuild b/games-fps/gzdoom/gzdoom-4.1.1.ebuild
index 2ebc1c2..fc2c4be 100644
--- a/games-fps/gzdoom/gzdoom-4.1.1.ebuild
+++ b/games-fps/gzdoom/gzdoom-4.1.1.ebuild
@@ -12,7 +12,7 @@ SRC_URI="https://github.com/coelckers/${PN}/archive/g${PV}.tar.gz -> ${P}.tar.gz
 LICENSE="BSD BZIP2 DUMB-0.9.2 GPL-3 LGPL-3 MIT"
 SLOT="0"
 KEYWORDS="~amd64 ~x86"
-IUSE="gtk openal openmp midi"
+IUSE="fluidsynth gtk openal openmp"
 
 DEPEND="
 	app-arch/bzip2
@@ -21,7 +21,6 @@ DEPEND="
 	sys-libs/zlib
 	virtual/jpeg:0
 	gtk? ( x11-libs/gtk+:* )
-	midi? ( media-sound/wildmidi )
 	openal? (
 		media-libs/libsndfile
 		media-libs/openal
@@ -29,10 +28,7 @@ DEPEND="
 	)"
 RDEPEND="
 	${DEPEND}
-	midi? (
-		media-sound/fluidsynth
-		media-sound/timidity++
-	)"
+	fluidsynth? ( media-sound/fluidsynth )"
 
 S="${WORKDIR}/${PN}-g${PV}"
 

diff --git a/games-fps/gzdoom/metadata.xml b/games-fps/gzdoom/metadata.xml
index 6a4872a..53026d9 100644
--- a/games-fps/gzdoom/metadata.xml
+++ b/games-fps/gzdoom/metadata.xml
@@ -9,7 +9,7 @@
 		<name>William Breathitt Gray</name>
 	</maintainer>
 	<use>
-		<flag name="midi">Enables MIDI support</flag>
+		<flag name="fluidsynth">Use <pkg>media-sound/fluidsynth</pkg> for MIDI support</flag>
 	</use>
 	<upstream>
 		<bugs-to>https://forum.zdoom.org/viewforum.php?f=2</bugs-to>


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

* [gentoo-commits] repo/proj/guru:dev commit in: games-fps/gzdoom/
@ 2019-05-12  3:39 William Breathitt Gray
  0 siblings, 0 replies; 11+ messages in thread
From: William Breathitt Gray @ 2019-05-12  3:39 UTC (permalink / raw
  To: gentoo-commits

commit:     8228a66ceb61a750e4e57850fe1002af67df6de8
Author:     William Breathitt Gray <vilhelm.gray <AT> gmail <DOT> com>
AuthorDate: Sun May 12 03:38:46 2019 +0000
Commit:     William Breathitt Gray <vilhelm.gray <AT> gmail <DOT> com>
CommitDate: Sun May 12 03:38:46 2019 +0000
URL:        https://gitweb.gentoo.org/repo/proj/guru.git/commit/?id=8228a66c

games-fps/gzdoom: Add phonehome USE flag

Package-Manager: Portage-2.3.66, Repoman-2.3.12
Signed-off-by: William Breathitt Gray <vilhelm.gray <AT> gmail.com>

 games-fps/gzdoom/gzdoom-4.1.1.ebuild | 3 ++-
 games-fps/gzdoom/metadata.xml        | 1 +
 2 files changed, 3 insertions(+), 1 deletion(-)

diff --git a/games-fps/gzdoom/gzdoom-4.1.1.ebuild b/games-fps/gzdoom/gzdoom-4.1.1.ebuild
index fc2c4be..c37e38a 100644
--- a/games-fps/gzdoom/gzdoom-4.1.1.ebuild
+++ b/games-fps/gzdoom/gzdoom-4.1.1.ebuild
@@ -12,7 +12,7 @@ SRC_URI="https://github.com/coelckers/${PN}/archive/g${PV}.tar.gz -> ${P}.tar.gz
 LICENSE="BSD BZIP2 DUMB-0.9.2 GPL-3 LGPL-3 MIT"
 SLOT="0"
 KEYWORDS="~amd64 ~x86"
-IUSE="fluidsynth gtk openal openmp"
+IUSE="fluidsynth gtk openal openmp phonehome"
 
 DEPEND="
 	app-arch/bzip2
@@ -42,6 +42,7 @@ src_configure() {
 		-DNO_GTK="$(usex !gtk)"
 		-DNO_OPENAL="$(usex !openal)"
 		-DNO_OPENMP="$(usex !openmp)"
+		-DSEND_ANON_STATS="$(usex phonehome)"
 	)
 	cmake-utils_src_configure
 }

diff --git a/games-fps/gzdoom/metadata.xml b/games-fps/gzdoom/metadata.xml
index 53026d9..4d5eb5b 100644
--- a/games-fps/gzdoom/metadata.xml
+++ b/games-fps/gzdoom/metadata.xml
@@ -10,6 +10,7 @@
 	</maintainer>
 	<use>
 		<flag name="fluidsynth">Use <pkg>media-sound/fluidsynth</pkg> for MIDI support</flag>
+		<flag name="phonehome">Enable sending of anonymous hardware statistics</flag>
 	</use>
 	<upstream>
 		<bugs-to>https://forum.zdoom.org/viewforum.php?f=2</bugs-to>


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

* [gentoo-commits] repo/proj/guru:dev commit in: games-fps/gzdoom/
@ 2019-05-12  4:01 William Breathitt Gray
  0 siblings, 0 replies; 11+ messages in thread
From: William Breathitt Gray @ 2019-05-12  4:01 UTC (permalink / raw
  To: gentoo-commits

commit:     ed9bb3facc97e85b54cfa3100ab093e2df494f18
Author:     William Breathitt Gray <vilhelm.gray <AT> gmail <DOT> com>
AuthorDate: Sun May 12 04:00:19 2019 +0000
Commit:     William Breathitt Gray <vilhelm.gray <AT> gmail <DOT> com>
CommitDate: Sun May 12 04:00:19 2019 +0000
URL:        https://gitweb.gentoo.org/repo/proj/guru.git/commit/?id=ed9bb3fa

games-fps/gzdoom: gtk and openal are runtime dependencies

Package-Manager: Portage-2.3.66, Repoman-2.3.12
Signed-off-by: William Breathitt Gray <vilhelm.gray <AT> gmail.com>

 games-fps/gzdoom/gzdoom-4.1.1.ebuild | 8 ++++----
 1 file changed, 4 insertions(+), 4 deletions(-)

diff --git a/games-fps/gzdoom/gzdoom-4.1.1.ebuild b/games-fps/gzdoom/gzdoom-4.1.1.ebuild
index c37e38a..02d1423 100644
--- a/games-fps/gzdoom/gzdoom-4.1.1.ebuild
+++ b/games-fps/gzdoom/gzdoom-4.1.1.ebuild
@@ -19,16 +19,16 @@ DEPEND="
 	dev-util/glslang
 	media-libs/libsdl2[opengl]
 	sys-libs/zlib
-	virtual/jpeg:0
+	virtual/jpeg:0"
+RDEPEND="
+	${DEPEND}
+	fluidsynth? ( media-sound/fluidsynth )
 	gtk? ( x11-libs/gtk+:* )
 	openal? (
 		media-libs/libsndfile
 		media-libs/openal
 		media-sound/mpg123
 	)"
-RDEPEND="
-	${DEPEND}
-	fluidsynth? ( media-sound/fluidsynth )"
 
 S="${WORKDIR}/${PN}-g${PV}"
 


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

* [gentoo-commits] repo/proj/guru:dev commit in: games-fps/gzdoom/
@ 2019-05-12  6:21 William Breathitt Gray
  0 siblings, 0 replies; 11+ messages in thread
From: William Breathitt Gray @ 2019-05-12  6:21 UTC (permalink / raw
  To: gentoo-commits

commit:     5ffd10106df16f7bca99339ccc3e6a597a90fe10
Author:     William Breathitt Gray <vilhelm.gray <AT> gmail <DOT> com>
AuthorDate: Sun May 12 06:18:25 2019 +0000
Commit:     William Breathitt Gray <vilhelm.gray <AT> gmail <DOT> com>
CommitDate: Sun May 12 06:20:58 2019 +0000
URL:        https://gitweb.gentoo.org/repo/proj/guru.git/commit/?id=5ffd1010

Revert "games-fps/gzdoom: Add phonehome USE flag"

This reverts commit 8228a66ceb61a750e4e57850fe1002af67df6de8. The
phonehome functionality is not supported in the GZDoom 4.1.1 release.

Signed-off-by: William Breathitt Gray <vilhelm.gray <AT> gmail.com>

 games-fps/gzdoom/gzdoom-4.1.1.ebuild | 3 +--
 games-fps/gzdoom/metadata.xml        | 1 -
 2 files changed, 1 insertion(+), 3 deletions(-)

diff --git a/games-fps/gzdoom/gzdoom-4.1.1.ebuild b/games-fps/gzdoom/gzdoom-4.1.1.ebuild
index 02d1423..81898f6 100644
--- a/games-fps/gzdoom/gzdoom-4.1.1.ebuild
+++ b/games-fps/gzdoom/gzdoom-4.1.1.ebuild
@@ -12,7 +12,7 @@ SRC_URI="https://github.com/coelckers/${PN}/archive/g${PV}.tar.gz -> ${P}.tar.gz
 LICENSE="BSD BZIP2 DUMB-0.9.2 GPL-3 LGPL-3 MIT"
 SLOT="0"
 KEYWORDS="~amd64 ~x86"
-IUSE="fluidsynth gtk openal openmp phonehome"
+IUSE="fluidsynth gtk openal openmp"
 
 DEPEND="
 	app-arch/bzip2
@@ -42,7 +42,6 @@ src_configure() {
 		-DNO_GTK="$(usex !gtk)"
 		-DNO_OPENAL="$(usex !openal)"
 		-DNO_OPENMP="$(usex !openmp)"
-		-DSEND_ANON_STATS="$(usex phonehome)"
 	)
 	cmake-utils_src_configure
 }

diff --git a/games-fps/gzdoom/metadata.xml b/games-fps/gzdoom/metadata.xml
index 4d5eb5b..53026d9 100644
--- a/games-fps/gzdoom/metadata.xml
+++ b/games-fps/gzdoom/metadata.xml
@@ -10,7 +10,6 @@
 	</maintainer>
 	<use>
 		<flag name="fluidsynth">Use <pkg>media-sound/fluidsynth</pkg> for MIDI support</flag>
-		<flag name="phonehome">Enable sending of anonymous hardware statistics</flag>
 	</use>
 	<upstream>
 		<bugs-to>https://forum.zdoom.org/viewforum.php?f=2</bugs-to>


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

* [gentoo-commits] repo/proj/guru:dev commit in: games-fps/gzdoom/
@ 2019-05-14  0:31 William Breathitt Gray
  0 siblings, 0 replies; 11+ messages in thread
From: William Breathitt Gray @ 2019-05-14  0:31 UTC (permalink / raw
  To: gentoo-commits

commit:     05b2e3c77eaec3a662748a5cfd453947ea4cd5be
Author:     William Breathitt Gray <vilhelm.gray <AT> gmail <DOT> com>
AuthorDate: Tue May 14 00:11:51 2019 +0000
Commit:     William Breathitt Gray <vilhelm.gray <AT> gmail <DOT> com>
CommitDate: Tue May 14 00:11:51 2019 +0000
URL:        https://gitweb.gentoo.org/repo/proj/guru.git/commit/?id=05b2e3c7

games-fps/gzdoom: restrict glslang to dynamic library ebuilds

See also: https://bugs.gentoo.org/685514

Package-Manager: Portage-2.3.66, Repoman-2.3.12
Signed-off-by: William Breathitt Gray <vilhelm.gray <AT> gmail.com>

 games-fps/gzdoom/gzdoom-4.1.1.ebuild | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/games-fps/gzdoom/gzdoom-4.1.1.ebuild b/games-fps/gzdoom/gzdoom-4.1.1.ebuild
index 81898f6..03a3dce 100644
--- a/games-fps/gzdoom/gzdoom-4.1.1.ebuild
+++ b/games-fps/gzdoom/gzdoom-4.1.1.ebuild
@@ -16,7 +16,7 @@ IUSE="fluidsynth gtk openal openmp"
 
 DEPEND="
 	app-arch/bzip2
-	dev-util/glslang
+	>=dev-util/glslang-7.11.3114_pre20190415-r1
 	media-libs/libsdl2[opengl]
 	sys-libs/zlib
 	virtual/jpeg:0"


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

* [gentoo-commits] repo/proj/guru:dev commit in: games-fps/gzdoom/
@ 2019-05-14  0:31 William Breathitt Gray
  0 siblings, 0 replies; 11+ messages in thread
From: William Breathitt Gray @ 2019-05-14  0:31 UTC (permalink / raw
  To: gentoo-commits

commit:     0108c377e4397d5772bd81a4f458ef44ba496266
Author:     William Breathitt Gray <vilhelm.gray <AT> gmail <DOT> com>
AuthorDate: Tue May 14 00:29:29 2019 +0000
Commit:     William Breathitt Gray <vilhelm.gray <AT> gmail <DOT> com>
CommitDate: Tue May 14 00:29:29 2019 +0000
URL:        https://gitweb.gentoo.org/repo/proj/guru.git/commit/?id=0108c377

games-fps/gzdoom: restrict gtk+ to slot 2 and 3

Package-Manager: Portage-2.3.66, Repoman-2.3.12
Signed-off-by: William Breathitt Gray <vilhelm.gray <AT> gmail.com>

 games-fps/gzdoom/gzdoom-4.1.1.ebuild | 7 ++++++-
 1 file changed, 6 insertions(+), 1 deletion(-)

diff --git a/games-fps/gzdoom/gzdoom-4.1.1.ebuild b/games-fps/gzdoom/gzdoom-4.1.1.ebuild
index 03a3dce..e292fa4 100644
--- a/games-fps/gzdoom/gzdoom-4.1.1.ebuild
+++ b/games-fps/gzdoom/gzdoom-4.1.1.ebuild
@@ -23,7 +23,12 @@ DEPEND="
 RDEPEND="
 	${DEPEND}
 	fluidsynth? ( media-sound/fluidsynth )
-	gtk? ( x11-libs/gtk+:* )
+	gtk? (
+		|| (
+			x11-libs/gtk+:2
+			x11-libs/gtk+:3
+		)
+	)
 	openal? (
 		media-libs/libsndfile
 		media-libs/openal


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

* [gentoo-commits] repo/proj/guru:dev commit in: games-fps/gzdoom/
@ 2019-05-14  3:11 William Breathitt Gray
  0 siblings, 0 replies; 11+ messages in thread
From: William Breathitt Gray @ 2019-05-14  3:11 UTC (permalink / raw
  To: gentoo-commits

commit:     1f945bc22fa13f81115985d4182d8b2623bb61de
Author:     William Breathitt Gray <vilhelm.gray <AT> gmail <DOT> com>
AuthorDate: Tue May 14 03:09:12 2019 +0000
Commit:     William Breathitt Gray <vilhelm.gray <AT> gmail <DOT> com>
CommitDate: Tue May 14 03:09:57 2019 +0000
URL:        https://gitweb.gentoo.org/repo/proj/guru.git/commit/?id=1f945bc2

games-fps/gzdoom: rebuild on gtk+ slot updates

The gtk+ dependency is moved to DEPEND since it is a build dependency.

Package-Manager: Portage-2.3.66, Repoman-2.3.12
Signed-off-by: William Breathitt Gray <vilhelm.gray <AT> gmail.com>

 games-fps/gzdoom/gzdoom-4.1.1.ebuild | 9 ++-------
 1 file changed, 2 insertions(+), 7 deletions(-)

diff --git a/games-fps/gzdoom/gzdoom-4.1.1.ebuild b/games-fps/gzdoom/gzdoom-4.1.1.ebuild
index e292fa4..6f635ed 100644
--- a/games-fps/gzdoom/gzdoom-4.1.1.ebuild
+++ b/games-fps/gzdoom/gzdoom-4.1.1.ebuild
@@ -19,16 +19,11 @@ DEPEND="
 	>=dev-util/glslang-7.11.3114_pre20190415-r1
 	media-libs/libsdl2[opengl]
 	sys-libs/zlib
-	virtual/jpeg:0"
+	virtual/jpeg:0
+	gtk? ( <x11-libs/gtk+-4:= )"
 RDEPEND="
 	${DEPEND}
 	fluidsynth? ( media-sound/fluidsynth )
-	gtk? (
-		|| (
-			x11-libs/gtk+:2
-			x11-libs/gtk+:3
-		)
-	)
 	openal? (
 		media-libs/libsndfile
 		media-libs/openal


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

* [gentoo-commits] repo/proj/guru:dev commit in: games-fps/gzdoom/
@ 2019-05-14 11:56 William Breathitt Gray
  0 siblings, 0 replies; 11+ messages in thread
From: William Breathitt Gray @ 2019-05-14 11:56 UTC (permalink / raw
  To: gentoo-commits

commit:     faa6f6e669cc8176ac52c93fe1598573964b6576
Author:     William Breathitt Gray <vilhelm.gray <AT> gmail <DOT> com>
AuthorDate: Tue May 14 11:55:51 2019 +0000
Commit:     William Breathitt Gray <vilhelm.gray <AT> gmail <DOT> com>
CommitDate: Tue May 14 11:55:51 2019 +0000
URL:        https://gitweb.gentoo.org/repo/proj/guru.git/commit/?id=faa6f6e6

games-fps/gzdoom: bzip2 is a base system package

Package-Manager: Portage-2.3.66, Repoman-2.3.12
Signed-off-by: William Breathitt Gray <vilhelm.gray <AT> gmail.com>

 games-fps/gzdoom/gzdoom-4.1.1.ebuild | 1 -
 1 file changed, 1 deletion(-)

diff --git a/games-fps/gzdoom/gzdoom-4.1.1.ebuild b/games-fps/gzdoom/gzdoom-4.1.1.ebuild
index 6f635ed..26483ce 100644
--- a/games-fps/gzdoom/gzdoom-4.1.1.ebuild
+++ b/games-fps/gzdoom/gzdoom-4.1.1.ebuild
@@ -15,7 +15,6 @@ KEYWORDS="~amd64 ~x86"
 IUSE="fluidsynth gtk openal openmp"
 
 DEPEND="
-	app-arch/bzip2
 	>=dev-util/glslang-7.11.3114_pre20190415-r1
 	media-libs/libsdl2[opengl]
 	sys-libs/zlib


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

* [gentoo-commits] repo/proj/guru:dev commit in: games-fps/gzdoom/
@ 2019-05-14 11:59 William Breathitt Gray
  0 siblings, 0 replies; 11+ messages in thread
From: William Breathitt Gray @ 2019-05-14 11:59 UTC (permalink / raw
  To: gentoo-commits

commit:     b8f9ea037a42efaea53fd9d5faf88e4317af11da
Author:     William Breathitt Gray <vilhelm.gray <AT> gmail <DOT> com>
AuthorDate: Tue May 14 11:58:54 2019 +0000
Commit:     William Breathitt Gray <vilhelm.gray <AT> gmail <DOT> com>
CommitDate: Tue May 14 11:58:54 2019 +0000
URL:        https://gitweb.gentoo.org/repo/proj/guru.git/commit/?id=b8f9ea03

games-fps/gzdoom: DESCRIPTION should not contain the package name

Package-Manager: Portage-2.3.66, Repoman-2.3.12
Signed-off-by: William Breathitt Gray <vilhelm.gray <AT> gmail.com>

 games-fps/gzdoom/gzdoom-4.1.1.ebuild | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/games-fps/gzdoom/gzdoom-4.1.1.ebuild b/games-fps/gzdoom/gzdoom-4.1.1.ebuild
index 26483ce..7860625 100644
--- a/games-fps/gzdoom/gzdoom-4.1.1.ebuild
+++ b/games-fps/gzdoom/gzdoom-4.1.1.ebuild
@@ -5,7 +5,7 @@ EAPI=7
 
 inherit cmake-utils desktop xdg
 
-DESCRIPTION="GZDoom - a modder-friendly OpenGL source port based on the DOOM engine"
+DESCRIPTION="A modder-friendly OpenGL source port based on the DOOM engine"
 HOMEPAGE="https://zdoom.org"
 SRC_URI="https://github.com/coelckers/${PN}/archive/g${PV}.tar.gz -> ${P}.tar.gz"
 


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

* [gentoo-commits] repo/proj/guru:dev commit in: games-fps/gzdoom/
@ 2019-05-17  8:54 William Breathitt Gray
  0 siblings, 0 replies; 11+ messages in thread
From: William Breathitt Gray @ 2019-05-17  8:54 UTC (permalink / raw
  To: gentoo-commits

commit:     14649a97ea233699ddbc71f2c27a26af508eecb1
Author:     William Breathitt Gray <vilhelm.gray <AT> gmail <DOT> com>
AuthorDate: Fri May 17 08:47:02 2019 +0000
Commit:     William Breathitt Gray <vilhelm.gray <AT> gmail <DOT> com>
CommitDate: Fri May 17 08:48:04 2019 +0000
URL:        https://gitweb.gentoo.org/repo/proj/guru.git/commit/?id=14649a97

games-fps/gzdoom: version bump to 4.1.2

Package-Manager: Portage-2.3.66, Repoman-2.3.12
Signed-off-by: William Breathitt Gray <vilhelm.gray <AT> gmail.com>

 games-fps/gzdoom/Manifest            |  1 +
 games-fps/gzdoom/gzdoom-4.1.2.ebuild | 64 ++++++++++++++++++++++++++++++++++++
 2 files changed, 65 insertions(+)

diff --git a/games-fps/gzdoom/Manifest b/games-fps/gzdoom/Manifest
index 21c3976..829f134 100644
--- a/games-fps/gzdoom/Manifest
+++ b/games-fps/gzdoom/Manifest
@@ -1 +1,2 @@
 DIST gzdoom-4.1.1.tar.gz 13008847 BLAKE2B ac2bddbcc618148ed9de15dfe9105d1f3b9f319496b995d2af06834eb1349415ab3ee48beaa3e1acac04c81152e32bc89b71ac53576cf7789c1471a29a0a5339 SHA512 649e8bbf7f7f669d1bda13f1ab654428b69fa3e03a97eefb2ff1e996dbf62c66df72dddee9b8c139664ce5374ffbcdd8a10d1c4e3d0e6e65848ed5660b547d34
+DIST gzdoom-4.1.2.tar.gz 13045742 BLAKE2B 38c70eb82ba266e5b41bf62f28f4cee77ba17c0cc1e4186bf11be9021386511346c111874b695ef56a4ed3c93668bb64a71ba4169183646e49d0ab60a1c0793a SHA512 915029e676b17dd330aeee17fa8a9e07bb8e7a16e8ebce9fcdcd24e5b2f0cc48fd8f6914314029b332112ad4215a0f0d45d8e448e9025ac3c2a708a5e0bbd399

diff --git a/games-fps/gzdoom/gzdoom-4.1.2.ebuild b/games-fps/gzdoom/gzdoom-4.1.2.ebuild
new file mode 100644
index 0000000..cde070a
--- /dev/null
+++ b/games-fps/gzdoom/gzdoom-4.1.2.ebuild
@@ -0,0 +1,64 @@
+# Copyright 1999-2019 Gentoo Authors
+# Distributed under the terms of the GNU General Public License v2
+
+EAPI=7
+
+inherit cmake-utils desktop xdg
+
+DESCRIPTION="A modder-friendly OpenGL source port based on the DOOM engine"
+HOMEPAGE="https://zdoom.org"
+SRC_URI="https://github.com/coelckers/${PN}/archive/g${PV}.tar.gz -> ${P}.tar.gz"
+
+LICENSE="BSD BZIP2 DUMB-0.9.2 GPL-3 LGPL-3 MIT"
+SLOT="0"
+KEYWORDS="~amd64 ~x86"
+IUSE="fluidsynth gtk openal openmp"
+
+DEPEND="
+	media-libs/libsdl2[opengl]
+	sys-libs/zlib
+	virtual/jpeg:0
+	gtk? ( <x11-libs/gtk+-4:= )"
+RDEPEND="
+	${DEPEND}
+	fluidsynth? ( media-sound/fluidsynth )
+	openal? (
+		media-libs/libsndfile
+		media-libs/openal
+		media-sound/mpg123
+	)"
+
+S="${WORKDIR}/${PN}-g${PV}"
+
+src_prepare() {
+	cmake-utils_src_prepare
+}
+
+src_configure() {
+	local mycmakeargs=(
+		-DBUILD_SHARED_LIBS=OFF
+		-DINSTALL_DOCS_PATH="${EPREFIX}/usr/share/doc/${P}/docs"
+		-DNO_GTK="$(usex !gtk)"
+		-DNO_OPENAL="$(usex !openal)"
+		-DNO_OPENMP="$(usex !openmp)"
+	)
+	cmake-utils_src_configure
+}
+
+src_install() {
+	newicon src/posix/zdoom.xpm "${PN}.xpm"
+	make_desktop_entry "${PN}" "GZDoom" "${PN}" "Game;ActionGame"
+	cmake-utils_src_install
+}
+
+pkg_preinst() {
+	xdg_pkg_preinst
+}
+
+pkg_postinst() {
+	xdg_pkg_postinst
+}
+
+pkg_postrm() {
+	xdg_pkg_postrm
+}


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

end of thread, other threads:[~2019-05-17  8:54 UTC | newest]

Thread overview: 11+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2019-05-12  3:25 [gentoo-commits] repo/proj/guru:dev commit in: games-fps/gzdoom/ William Breathitt Gray
  -- strict thread matches above, loose matches on Subject: below --
2019-05-17  8:54 William Breathitt Gray
2019-05-14 11:59 William Breathitt Gray
2019-05-14 11:56 William Breathitt Gray
2019-05-14  3:11 William Breathitt Gray
2019-05-14  0:31 William Breathitt Gray
2019-05-14  0:31 William Breathitt Gray
2019-05-12  6:21 William Breathitt Gray
2019-05-12  4:01 William Breathitt Gray
2019-05-12  3:39 William Breathitt Gray
2019-05-11  1:06 William Breathitt Gray

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