From mboxrd@z Thu Jan 1 00:00:00 1970 Received: from eggs.gnu.org ([2001:4830:134:3::10]:41762) by lists.gnu.org with esmtp (Exim 4.71) (envelope-from ) id 1dNPGr-00047A-5F for guix-patches@gnu.org; Tue, 20 Jun 2017 15:57:06 -0400 Received: from Debian-exim by eggs.gnu.org with spam-scanned (Exim 4.71) (envelope-from ) id 1dNPGo-0003c1-29 for guix-patches@gnu.org; Tue, 20 Jun 2017 15:57:05 -0400 Received: from debbugs.gnu.org ([208.118.235.43]:55770) by eggs.gnu.org with esmtps (TLS1.0:RSA_AES_128_CBC_SHA1:16) (Exim 4.71) (envelope-from ) id 1dNPGn-0003bt-VC for guix-patches@gnu.org; Tue, 20 Jun 2017 15:57:01 -0400 Received: from Debian-debbugs by debbugs.gnu.org with local (Exim 4.84_2) (envelope-from ) id 1dNPGn-00013H-P8 for guix-patches@gnu.org; Tue, 20 Jun 2017 15:57:01 -0400 Subject: [bug#27432] [PATCH] gnu: Add armagetronad. Resent-Message-ID: Received: from eggs.gnu.org ([2001:4830:134:3::10]:41475) by lists.gnu.org with esmtp (Exim 4.71) (envelope-from ) id 1dNPFp-0003u1-U2 for guix-patches@gnu.org; Tue, 20 Jun 2017 15:56:03 -0400 Received: from Debian-exim by eggs.gnu.org with spam-scanned (Exim 4.71) (envelope-from ) id 1dNPFm-0003IY-R7 for guix-patches@gnu.org; Tue, 20 Jun 2017 15:56:01 -0400 Received: from fencepost.gnu.org ([2001:4830:134:3::e]:44533) by eggs.gnu.org with esmtp (Exim 4.71) (envelope-from ) id 1dNPFm-0003IU-NE for guix-patches@gnu.org; Tue, 20 Jun 2017 15:55:58 -0400 Received: from ip112-245-209-87.adsl2.static.versatel.nl ([87.209.245.112]:58251 helo=antelope) by fencepost.gnu.org with esmtpsa (TLS1.2:RSA_AES_256_CBC_SHA1:256) (Exim 4.82) (envelope-from ) id 1dNPFm-0001Ci-4Y for guix-patches@gnu.org; Tue, 20 Jun 2017 15:55:58 -0400 From: Roel Janssen Date: Tue, 20 Jun 2017 21:55:48 +0200 Message-ID: <87o9titovv.fsf@gnu.org> MIME-Version: 1.0 Content-Type: multipart/mixed; boundary="=-=-=" 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: 27432@debbugs.gnu.org --=-=-= Content-Type: text/x-patch Content-Disposition: attachment; filename=0001-gnu-Add-armagetronad.patch >From 9d52bab40f1e8c5ee3426608910136495493753b Mon Sep 17 00:00:00 2001 From: Roel Janssen Date: Tue, 20 Jun 2017 21:50:02 +0200 Subject: [PATCH] gnu: Add armagetronad. * gnu/packages/games.scm (armagetronad): New variable. --- gnu/packages/games.scm | 29 +++++++++++++++++++++++++++++ 1 file changed, 29 insertions(+) diff --git a/gnu/packages/games.scm b/gnu/packages/games.scm index b706b5793..608b6dd28 100644 --- a/gnu/packages/games.scm +++ b/gnu/packages/games.scm @@ -135,6 +135,35 @@ #:use-module (guix build-system cmake) #:use-module (guix build-system trivial)) +(define-public armagetronad + (package + (name "armagetronad") + (version "0.2.8.3.4") + (source (origin + (method url-fetch) + (uri (string-append "mirror://sourceforge/" name "/stable/" + version "/" name "-" version ".src.tar.gz")) + (sha256 + (base32 + "1pgy0r80z702qdv94aw3ywdn4ynnr4cdi86ml558pljfc5ygasj4")))) + (build-system gnu-build-system) + (inputs + `(("libxml2" ,libxml2) + ("sdl" ,sdl) + ("sdl-image" ,sdl-image) + ("freeglut" ,freeglut) + ("libpng" ,libpng) + ("libjpeg-turbo" ,libjpeg-turbo))) + (home-page "http://www.armagetronad.org") + (synopsis "Tron clone in 3D") + (description "Armagetron is a multiplayer game in 3d that attempts to +emulate and expand on the lightcycle sequence from the movie Tron. It's +an old school arcade game slung into the 21st century. Highlights include +a customizable playing arena, HUD, unique graphics, and AI bots. For the +more advanced player there are new game modes and a wide variety of physics +settings to tweak as well.") + (license license:gpl2+))) + (define-public cataclysm-dda (package (name "cataclysm-dda") -- 2.13.1 --=-=-= Content-Type: text/plain Hi Guix! Here's a patch for ArmagetronAD -- a Tron clone in 3 dimensions! I think it is named "armagetron", but the source tarballs and the website are called "armagetronad", so I chose to minimize the complexity of the patch and call the package "armagetronad". Kind regards, Roel Janssen --=-=-=--