public inbox for gentoo-commits@lists.gentoo.org
 help / color / mirror / Atom feed
From: "William Breathitt Gray" <vilhelm.gray@gmail.com>
To: gentoo-commits@lists.gentoo.org
Subject: [gentoo-commits] repo/proj/guru:dev commit in: games-fps/crispy-doom/
Date: Sun,  2 Apr 2023 13:35:54 +0000 (UTC)	[thread overview]
Message-ID: <1680442522.302a5890e74472f7ff667e14d20ff2e7267e1928.vilhelm.gray@gentoo> (raw)

commit:     302a5890e74472f7ff667e14d20ff2e7267e1928
Author:     William Breathitt Gray <william.gray <AT> linaro <DOT> org>
AuthorDate: Sun Apr  2 13:33:02 2023 +0000
Commit:     William Breathitt Gray <vilhelm.gray <AT> gmail <DOT> com>
CommitDate: Sun Apr  2 13:35:22 2023 +0000
URL:        https://gitweb.gentoo.org/repo/proj/guru.git/commit/?id=302a5890

games-fps/crispy-doom: add 6.0

Signed-off-by: William Breathitt Gray <william.gray <AT> linaro.org>

 games-fps/crispy-doom/Manifest               |  1 +
 games-fps/crispy-doom/crispy-doom-6.0.ebuild | 77 ++++++++++++++++++++++++++++
 games-fps/crispy-doom/metadata.xml           |  2 +
 3 files changed, 80 insertions(+)

diff --git a/games-fps/crispy-doom/Manifest b/games-fps/crispy-doom/Manifest
index 31f927be7..4af287abb 100644
--- a/games-fps/crispy-doom/Manifest
+++ b/games-fps/crispy-doom/Manifest
@@ -1 +1,2 @@
 DIST crispy-doom-5.12.0.tar.gz 2425206 BLAKE2B 18c0bd66dcec7b30404e32aa045d5666b89d68f2b9efb6f83455ab007d78816f72218591e5ddcf6ea68a02588f19e98057545dc27219407e450bf4ce600e3c1f SHA512 eb7b4da44c9b261712da4da1935de747928488571ba2be9f0fa43cedd2a0bab3e0f4e0ce1cec247f44ab1b61fc2aa1f545bb0ef50f5f8ac1d3c564342d992a11
+DIST crispy-doom-6.0.tar.gz 2499918 BLAKE2B fc864ae55100db0d074d14eae795bd603b355fba8eaa783b564b167cf1bf65ff1e97f4640d2b0d56f8c4ec076125fd0f0e2a95bc5eac7251997e9f7757f4d295 SHA512 44ab9ffea1febe7eaab0c28d5dd178df821c200354aa9aeecd0b84dbe98419a037416f8d8e6176611dbd1a2dba8ec050d9e7267c61dcf8640c08c422765b270f

diff --git a/games-fps/crispy-doom/crispy-doom-6.0.ebuild b/games-fps/crispy-doom/crispy-doom-6.0.ebuild
new file mode 100644
index 000000000..b530cfe12
--- /dev/null
+++ b/games-fps/crispy-doom/crispy-doom-6.0.ebuild
@@ -0,0 +1,77 @@
+# Copyright 1999-2022 Gentoo Authors
+# Distributed under the terms of the GNU General Public License v2
+
+EAPI=8
+
+PYTHON_COMPAT=( python3_{9..11} )
+
+inherit autotools prefix python-any-r1 xdg
+
+DESCRIPTION="A limit-removing enhanced-resolution Doom source port based on Chocolate Doom"
+HOMEPAGE="https://github.com/fabiangreffrath/crispy-doom"
+SRC_URI="https://github.com/fabiangreffrath/${PN}/archive/${P}.tar.gz"
+
+LICENSE="BSD GPL-2+"
+SLOT="0"
+KEYWORDS="~amd64 ~x86"
+IUSE="doc fluidsynth libsamplerate +midi png truecolor vorbis zlib"
+REQUIRE_USE="fluidsynth? ( midi )"
+
+DEPEND="
+	media-libs/libsdl2[video]
+	media-libs/sdl2-mixer[fluidsynth?,midi?,vorbis?]
+	media-libs/sdl2-net
+	libsamplerate? ( media-libs/libsamplerate )
+	png? ( media-libs/libpng:= )
+	zlib? ( sys-libs/zlib )"
+RDEPEND="${DEPEND}"
+# ${PYTHON_DEPS} for bash-completion
+BDEPEND="
+	${PYTHON_DEPS}
+	doc? ( ${PYTHON_DEPS} )"
+
+S="${WORKDIR}"/${PN}-${P}
+
+DOCS=(
+	"AUTHORS"
+	"ChangeLog"
+	"NEWS.md"
+	"NOT-BUGS.md"
+	"PHILOSOPHY.md"
+	"README.md"
+	"README.Music.md"
+	"README.Strife.md"
+)
+
+src_prepare() {
+	default
+
+	hprefixify src/d_iwad.c
+
+	eautoreconf
+}
+
+src_configure() {
+	econf \
+		--enable-bash-completion \
+		$(use_enable doc) \
+		--disable-fonts \
+		--disable-icons \
+		$(use_with libsamplerate) \
+		$(use_with png libpng) \
+		--enable-sdl2mixer \
+		--enable-sdl2net \
+		$(use_with fluidsynth) \
+		$(use_enable truecolor) \
+		$(use_with zlib) \
+		--disable-zpool
+}
+
+src_install() {
+	emake DESTDIR="${D}" install
+
+	# Remove redundant documentation files
+	rm -r "${ED}/usr/share/doc/"* || die
+
+	einstalldocs
+}

diff --git a/games-fps/crispy-doom/metadata.xml b/games-fps/crispy-doom/metadata.xml
index 5a1acd247..06a101872 100644
--- a/games-fps/crispy-doom/metadata.xml
+++ b/games-fps/crispy-doom/metadata.xml
@@ -9,6 +9,8 @@
 		<name>William Breathitt Gray</name>
 	</maintainer>
 	<use>
+		<flag name="fluidsynth">Use <pkg>media-sound/fluidsynth</pkg>
+			for MIDI support</flag>
 		<flag name="midi">Basic support for MIDI files</flag>
 		<flag name="truecolor">Enable true-color rendering (experimental)</flag>
 	</use>


             reply	other threads:[~2023-04-02 13:35 UTC|newest]

Thread overview: 24+ messages / expand[flat|nested]  mbox.gz  Atom feed  top
2023-04-02 13:35 William Breathitt Gray [this message]
  -- strict thread matches above, loose matches on Subject: below --
2024-05-15 12:45 [gentoo-commits] repo/proj/guru:master commit in: games-fps/crispy-doom/ Julien Roy
2024-05-15 12:41 ` [gentoo-commits] repo/proj/guru:dev " Julien Roy
2024-05-15  0:45 Julien Roy
2023-02-26 18:05 William Breathitt Gray
2022-09-08 16:17 William Breathitt Gray
2022-02-12  8:56 William Breathitt Gray
2021-08-17 22:52 William Breathitt Gray
2021-08-11  0:04 William Breathitt Gray
2021-08-10 12:26 William Breathitt Gray
2021-05-25  8:10 Anna Vyalkova
2021-03-24 23:49 William Breathitt Gray
2021-01-12 10:01 William Breathitt Gray
2020-09-22 12:42 William Breathitt Gray
2020-09-04 12:52 William Breathitt Gray
2020-08-19 12:37 William Breathitt Gray
2020-05-12 14:08 William Breathitt Gray
2020-04-12 16:16 Andrew Ammerlaan
2020-03-13 14:34 Andrew Ammerlaan
2019-06-11 10:08 William Breathitt Gray
2019-05-21  2:21 William Breathitt Gray
2019-05-18  9:16 William Breathitt Gray
2019-05-18  8:55 William Breathitt Gray
2019-05-17  7:54 William Breathitt Gray
2019-05-16  2:31 William Breathitt Gray

Reply instructions:

You may reply publicly to this message via plain-text email
using any one of the following methods:

* Save the following mbox file, import it into your mail client,
  and reply-to-all from there: mbox

  Avoid top-posting and favor interleaved quoting:
  https://en.wikipedia.org/wiki/Posting_style#Interleaved_style

* Reply using the --to, --cc, and --in-reply-to
  switches of git-send-email(1):

  git send-email \
    --in-reply-to=1680442522.302a5890e74472f7ff667e14d20ff2e7267e1928.vilhelm.gray@gentoo \
    --to=vilhelm.gray@gmail.com \
    --cc=gentoo-commits@lists.gentoo.org \
    --cc=gentoo-dev@lists.gentoo.org \
    /path/to/YOUR_REPLY

  https://kernel.org/pub/software/scm/git/docs/git-send-email.html

* If your mail client supports setting the In-Reply-To header
  via mailto: links, try the mailto: link
Be sure your reply has a Subject: header at the top and a blank line before the message body.
This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox