From mboxrd@z Thu Jan 1 00:00:00 1970 Received: from eggs.gnu.org ([2001:4830:134:3::10]:42769) by lists.gnu.org with esmtp (Exim 4.71) (envelope-from ) id 1e3NhZ-0002Mc-1x for guix-patches@gnu.org; Sat, 14 Oct 2017 10:46:10 -0400 Received: from Debian-exim by eggs.gnu.org with spam-scanned (Exim 4.71) (envelope-from ) id 1e3NhT-0004WC-1E for guix-patches@gnu.org; Sat, 14 Oct 2017 10:46:06 -0400 Received: from debbugs.gnu.org ([208.118.235.43]:59882) by eggs.gnu.org with esmtps (TLS1.0:RSA_AES_128_CBC_SHA1:16) (Exim 4.71) (envelope-from ) id 1e3NhS-0004W1-T5 for guix-patches@gnu.org; Sat, 14 Oct 2017 10:46:02 -0400 Received: from Debian-debbugs by debbugs.gnu.org with local (Exim 4.84_2) (envelope-from ) id 1e3NhS-0007TH-JJ for guix-patches@gnu.org; Sat, 14 Oct 2017 10:46:02 -0400 Subject: bug#28794: [PATCH] gnu: games: Add openrct2. Resent-To: guix-patches@gnu.org Resent-Message-ID: From: ludo@gnu.org (Ludovic =?UTF-8?Q?Court=C3=A8s?=) References: <87d15rqvna.fsf@gnu.org> Date: Sat, 14 Oct 2017 16:45:40 +0200 In-Reply-To: (Rutger Helling's message of "Fri, 13 Oct 2017 10:16:09 +0000") Message-ID: <8760bhyei3.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: Rutger Helling Cc: 28794-done@debbugs.gnu.org --=-=-= Content-Type: text/plain; charset=utf-8 Content-Transfer-Encoding: quoted-printable Hi Rutger, Rutger Helling skribis: > I think it makes sense to add it, but have it be the responsibility of > the user to provide the assets, since these files can never be bundled > in Guix. Maybe it should explicitly mention that. [...] > Personally I think it makes sense to provide libre engine replacements > for games, to motivate users to use those instead of running proprietary > code. The FSF directory even explicitly mentions OpenMW for example: > https://directory.fsf.org/wiki/OpenMW.=20 [...] > By the way Ludo, Parabola has packaged OpenMW too. OpenRCT2 is also > mentioned in a list of games by them (second link).=20 > > https://www.parabola.nu/packages/libre/x86_64/openmw/ > https://wiki.parabola.nu/List_of_Applications/Games=20 That makes sense to me. I hope the free project will manage to come up with free artwork longer-term, but in the meantime, this is probably better than nothing. I=E2=80=99ve committed with the changes below (the license if GPL v3-or-lat= er, as stated in source file headers.) Thanks, Ludo=E2=80=99. --=-=-= Content-Type: text/x-patch Content-Disposition: inline diff --git a/gnu/packages/games.scm b/gnu/packages/games.scm index 83d175d16..04b7b78d3 100644 --- a/gnu/packages/games.scm +++ b/gnu/packages/games.scm @@ -2669,10 +2669,15 @@ Transport Tycoon Deluxe.") `(("pkg-config", pkg-config))) (home-page "https://github.com/OpenRCT2/OpenRCT2") (synopsis "Free software re-implementation of RollerCoaster Tycoon 2") - (description "OpenRCT2 is an free software re-implementation of + (description "OpenRCT2 is a free software re-implementation of RollerCoaster Tycoon 2 (RCT2). The gameplay revolves around building and -maintaining an amusement park containing attractions, shops and facilities.") - (license license:gpl3))) +maintaining an amusement park containing attractions, shops and facilities. + +Note that this package does @emph{not} provide the game assets (sounds, +images, etc.)") + ;; See + ;; regarding assets. + (license license:gpl3+))) (define-public pinball (package --=-=-=--