From mboxrd@z Thu Jan 1 00:00:00 1970 Received: from eggs.gnu.org ([2001:470:142:3::10]:51076) by lists.gnu.org with esmtp (Exim 4.86_2) (envelope-from ) id 1hb61f-0005ke-UF for guix-patches@gnu.org; Wed, 12 Jun 2019 12:23:04 -0400 Received: from Debian-exim by eggs.gnu.org with spam-scanned (Exim 4.71) (envelope-from ) id 1hb61e-0006dM-PQ for guix-patches@gnu.org; Wed, 12 Jun 2019 12:23:03 -0400 Received: from debbugs.gnu.org ([209.51.188.43]:48650) by eggs.gnu.org with esmtps (TLS1.0:RSA_AES_128_CBC_SHA1:16) (Exim 4.71) (envelope-from ) id 1hb61e-0006cq-Lj for guix-patches@gnu.org; Wed, 12 Jun 2019 12:23:02 -0400 Received: from Debian-debbugs by debbugs.gnu.org with local (Exim 4.84_2) (envelope-from ) id 1hb61e-00047R-Dp for guix-patches@gnu.org; Wed, 12 Jun 2019 12:23:02 -0400 Subject: [bug#36182] [PATCH] add freeorion Resent-Message-ID: Received: from eggs.gnu.org ([2001:470:142:3::10]:50933) by lists.gnu.org with esmtp (Exim 4.86_2) (envelope-from ) id 1hb615-0005eu-EY for guix-patches@gnu.org; Wed, 12 Jun 2019 12:22:28 -0400 Received: from Debian-exim by eggs.gnu.org with spam-scanned (Exim 4.71) (envelope-from ) id 1hb613-00064s-Us for guix-patches@gnu.org; Wed, 12 Jun 2019 12:22:27 -0400 Received: from mail-pg1-x532.google.com ([2607:f8b0:4864:20::532]:34762) by eggs.gnu.org with esmtps (TLS1.0:RSA_AES_128_CBC_SHA1:16) (Exim 4.71) (envelope-from ) id 1hb613-000643-NJ for guix-patches@gnu.org; Wed, 12 Jun 2019 12:22:25 -0400 Received: by mail-pg1-x532.google.com with SMTP id p10so3337838pgn.1 for ; Wed, 12 Jun 2019 09:22:25 -0700 (PDT) Received: from localhost ([199.68.53.171]) by smtp.gmail.com with ESMTPSA id e18sm25144pfh.176.2019.06.12.09.22.21 for (version=TLS1_3 cipher=AEAD-AES256-GCM-SHA384 bits=256/256); Wed, 12 Jun 2019 09:22:22 -0700 (PDT) Date: Wed, 12 Jun 2019 10:22:19 -0600 From: Jesse Gibbons Message-ID: <20190612102219.6cc0d25f@gmail.com> MIME-Version: 1.0 Content-Type: multipart/mixed; boundary="MP_/fPQS=Lf+ZkBYXKlK+in.Hjc" 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: 36182@debbugs.gnu.org --MP_/fPQS=Lf+ZkBYXKlK+in.Hjc Content-Type: text/plain; charset=US-ASCII Content-Transfer-Encoding: 7bit Content-Disposition: inline Patch is attached. -Jesse --MP_/fPQS=Lf+ZkBYXKlK+in.Hjc Content-Type: text/x-patch Content-Transfer-Encoding: 7bit Content-Disposition: attachment; filename=0001-add-freeorion.patch >From cca52f508e84ac34e60a3c5167554d7ad2ad6564 Mon Sep 17 00:00:00 2001 From: Jesse Gibbons Date: Wed, 12 Jun 2019 10:07:32 -0600 Subject: [PATCH] add freeorion --- gnu/packages/games.scm | 39 +++++++++++++++++++++++++++++++++++++++ 1 file changed, 39 insertions(+) diff --git a/gnu/packages/games.scm b/gnu/packages/games.scm index 7a433a0bfd..1f7ace8888 100644 --- a/gnu/packages/games.scm +++ b/gnu/packages/games.scm @@ -7385,3 +7385,42 @@ full of enemies that can hurt it, obstacles and food to be eaten. The goal of the game is to stay alive and collect prizes. The robot program conveniently may be written in a plain text file in the Scheme programming language.") (license license:gpl3+))) + +(define-public freeorion + (package + (name "freeorion") + (version "0.4.8") + (source + (origin + (method git-fetch) + (uri (git-reference + (url "https://github.com/freeorion/freeorion.git") + (commit "470d0711537804df3c2ca25532f674ab4bec58af"))) + (sha256 + (base32 + "1wsw632l1cj17px6i88nqjzs0dngp5rsr67n6qkkjlfjfxi69j0f")))) + (arguments + '(#:tests? #f)) + (build-system cmake-build-system) + (inputs `(("boost" ,boost) + ("boost_signals" ,boost-signals2) + ("freetype2" ,freetype) + ("python2" ,python-2.7) + ("openal" ,openal) + ("libogg" ,libogg) + ("libvorbis" ,libvorbis) + ("zlib" ,zlib) + ("libpng" ,libpng) + ("sdl2" ,sdl2) + ("glu" ,glu) + ("glew" ,glew))) + (home-page + "https://www.freeorion.org/index.php/Main_Page") + (synopsis + "Turn-based space empire and galactic conquest computer game") + (description + "FreeOrion is a free, open source, turn-based space empire and galactic +conquest (4X) computer game being designed and built by the FreeOrion project. +FreeOrion is inspired by the tradition of the Master of Orion games, but is not +a clone or remake of that series or any other game.") + (license (list license:gpl2 license:cc-by-sa3.0)))) -- 2.22.0 --MP_/fPQS=Lf+ZkBYXKlK+in.Hjc--