From mboxrd@z Thu Jan 1 00:00:00 1970 Received: from eggs.gnu.org ([2001:470:142:3::10]:56414) by lists.gnu.org with esmtp (Exim 4.86_2) (envelope-from ) id 1hZbS1-000145-F1 for guix-patches@gnu.org; Sat, 08 Jun 2019 09:32:07 -0400 Received: from Debian-exim by eggs.gnu.org with spam-scanned (Exim 4.71) (envelope-from ) id 1hZbRz-0004Ve-K4 for guix-patches@gnu.org; Sat, 08 Jun 2019 09:32:05 -0400 Received: from debbugs.gnu.org ([209.51.188.43]:39487) by eggs.gnu.org with esmtps (TLS1.0:RSA_AES_128_CBC_SHA1:16) (Exim 4.71) (envelope-from ) id 1hZbRy-0004V2-Sc for guix-patches@gnu.org; Sat, 08 Jun 2019 09:32:03 -0400 Received: from Debian-debbugs by debbugs.gnu.org with local (Exim 4.84_2) (envelope-from ) id 1hZbRy-0000Sz-MT for guix-patches@gnu.org; Sat, 08 Jun 2019 09:32:02 -0400 Subject: [bug#36138] [PATCH] gnu: Add crispy-doom. Resent-Message-ID: Received: from eggs.gnu.org ([2001:470:142:3::10]:56228) by lists.gnu.org with esmtp (Exim 4.86_2) (envelope-from ) id 1hZbQy-0000lS-4Q for guix-patches@gnu.org; Sat, 08 Jun 2019 09:31:01 -0400 Received: from Debian-exim by eggs.gnu.org with spam-scanned (Exim 4.71) (envelope-from ) id 1hZbQx-0003n2-2s for guix-patches@gnu.org; Sat, 08 Jun 2019 09:31:00 -0400 Received: from smtp1.science.ru.nl ([131.174.16.143]:43228) by eggs.gnu.org with esmtps (TLS1.0:DHE_RSA_AES_256_CBC_SHA1:32) (Exim 4.71) (envelope-from ) id 1hZbQw-0003fl-QI for guix-patches@gnu.org; Sat, 08 Jun 2019 09:30:59 -0400 From: Dan Frumin Date: Sat, 8 Jun 2019 15:30:33 +0200 Message-Id: <20190608133033.21069-1-dfrumin@cs.ru.nl> List-Id: List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , Errors-To: guix-patches-bounces+kyle=kyleam.com@gnu.org Sender: "Guix-patches" To: 36138@debbugs.gnu.org Cc: Dan Frumin --- gnu/packages/games.scm | 34 ++++++++++++++++++++++++++++++++++ 1 file changed, 34 insertions(+) diff --git a/gnu/packages/games.scm b/gnu/packages/games.scm index 7a433a0bfd..32ce2c6050 100644 --- a/gnu/packages/games.scm +++ b/gnu/packages/games.scm @@ -5596,6 +5596,40 @@ affect gameplay).") (home-page "https://www.chocolate-doom.org/wiki/index.php/Chocolate_Doom") (license license:gpl2))) +(define-public crispy-doom + (package + (inherit chocolate-doom) + (name "crispy-doom") + (version "5.5.2") + (source (origin + (method git-fetch) + (uri (git-reference + (url "https://github.com/fabiangreffrath/crispy-doom.git") + (commit (string-append "crispy-doom-" version)))) + (file-name (git-file-name name version)) + (sha256 + (base32 "1a60ns0blhvml6gzj9qx18c18pbf02rq7vypaajd6nqy5h4fz3cn")))) + (native-inputs + (append + (package-native-inputs chocolate-doom) + `(("automake" ,automake) + ("autoreconf" ,autoconf)))) + (arguments + `(#:phases + (modify-phases %standard-phases + (replace 'bootstrap + ;; the autogen.sh script in the source tree doesn't work + (lambda _ (invoke "autoreconf" "-vif")))))) + (synopsis "Limit-removing enhanced-resolution Doom source port based on +Chocolate Doom") + (description + "Crispy Doom is a friendly fork of Chocolate Doom that provides a higher +display resolution, removes the static limits of the Doom engine and offers +further optional visual, tactical and physical enhancements while remaining +entirely config file, savegame, netplay and demo compatible with the +original.") + (home-page "https://www.chocolate-doom.org/wiki/index.php/Crispy_Doom"))) + (define-public fortune-mod (package (name "fortune-mod") -- 2.17.1