From mboxrd@z Thu Jan 1 00:00:00 1970 From: ng0 Subject: [PATCH 3/3] gnu: Add 0ad. Date: Fri, 30 Dec 2016 18:04:50 +0000 Message-ID: <20161230180450.23500-4-ng0@libertad.pw> References: <20161230180450.23500-1-ng0@libertad.pw> Mime-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit Return-path: Received: from eggs.gnu.org ([2001:4830:134:3::10]:44207) by lists.gnu.org with esmtp (Exim 4.71) (envelope-from ) id 1cN1Xw-0006Tx-3G for guix-devel@gnu.org; Fri, 30 Dec 2016 13:04:53 -0500 Received: from Debian-exim by eggs.gnu.org with spam-scanned (Exim 4.71) (envelope-from ) id 1cN1Xu-0005Rd-Cb for guix-devel@gnu.org; Fri, 30 Dec 2016 13:04:52 -0500 Received: from aibo.runbox.com ([91.220.196.211]:46862) by eggs.gnu.org with esmtps (TLS1.0:RSA_AES_256_CBC_SHA1:32) (Exim 4.71) (envelope-from ) id 1cN1Xu-0005RX-15 for guix-devel@gnu.org; Fri, 30 Dec 2016 13:04:50 -0500 Received: from [10.9.9.212] (helo=mailfront12.runbox.com) by bars.runbox.com with esmtp (Exim 4.71) (envelope-from ) id 1cN1Xs-0008A8-RR for guix-devel@gnu.org; Fri, 30 Dec 2016 19:04:48 +0100 In-Reply-To: <20161230180450.23500-1-ng0@libertad.pw> List-Id: "Development of GNU Guix and the GNU System distribution." List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , Errors-To: guix-devel-bounces+gcggd-guix-devel=m.gmane.org@gnu.org Sender: "Guix-devel" To: guix-devel@gnu.org Cc: ng0 From: ng0 * gnu/packages/games.scm (0ad): New variable. --- gnu/packages/games.scm | 147 ++++++++++++++++++++++++++++++++++++++++++++++++- 1 file changed, 146 insertions(+), 1 deletion(-) diff --git a/gnu/packages/games.scm b/gnu/packages/games.scm index 69c72a55f..dba021619 100644 --- a/gnu/packages/games.scm +++ b/gnu/packages/games.scm @@ -17,7 +17,7 @@ ;;; Copyright © 2015 Taylan Ulrich Bayırlı/Kammer ;;; Copyright © 2016 Rodger Fox ;;; Copyright © 2016 Manolis Fragkiskos Ragkousis -;;; Copyright © 2016 ng0 +;;; Copyright © 2016, 2017 ng0 ;;; Copyright © 2016 Albin Söderqvist ;;; Copyright © 2016 Kei Kebreau ;;; Copyright © 2016 Alex Griffin @@ -57,6 +57,7 @@ #:use-module (gnu packages audio) #:use-module (gnu packages avahi) #:use-module (gnu packages boost) + #:use-module (gnu packages cmake) #:use-module (gnu packages fltk) #:use-module (gnu packages fribidi) #:use-module (gnu packages game-development) @@ -65,6 +66,7 @@ #:use-module (gnu packages gl) #:use-module (gnu packages glib) #:use-module (gnu packages gnome) + #:use-module (gnu packages gnuzilla) #:use-module (gnu packages gperf) #:use-module (gnu packages gtk) #:use-module (gnu packages guile) @@ -74,8 +76,10 @@ #:use-module (gnu packages mp3) #:use-module (gnu packages icu4c) #:use-module (gnu packages image) + #:use-module (gnu packages messaging) #:use-module (gnu packages ncurses) #:use-module (gnu packages netpbm) + #:use-module (gnu packages networking) #:use-module (gnu packages ocaml) #:use-module (gnu packages python) #:use-module (gnu packages readline) @@ -98,12 +102,15 @@ #:use-module (gnu packages xiph) #:use-module (gnu packages curl) #:use-module (gnu packages lua) + #:use-module (gnu packages upnp) + #:use-module (gnu packages wxwidgets) #:use-module (gnu packages video) #:use-module (gnu packages xml) #:use-module (gnu packages tcl) #:use-module (gnu packages xdisorg) #:use-module (gnu packages tls) #:use-module (gnu packages pcre) + #:use-module (gnu packages ruby) #:use-module (guix build-system gnu) #:use-module (guix build-system haskell) #:use-module (guix build-system python) @@ -3114,3 +3121,141 @@ for Un*x systems with X11.") ;; license:lppl1.3c TODO: ADD. ;; license:bitstream-vera TODO: ADD. license:cc-by-sa3.0)))) + +(define-public 0ad + (package + (name "0ad") + (version "0.0.21-alpha") + (source + (origin + (method url-fetch) + (uri (string-append + "http://releases.wildfiregames.com/0ad-" + version "-unix-build.tar.xz")) + (file-name (string-append name "-" version ".tar.xz")) + (sha256 + (base32 + "1kw3hqnr737ipx4f03khz3hvsh3ha7r8iy9njppk2faa53j27gln")))) + (inputs + `(("0ad-data" ,0ad-data) + ("curl" ,curl) + ("enet" ,enet) + ("perl" ,perl) + ("icu4c" ,icu4c) + ("libxml2" ,libxml2) + ("nspr" ,nspr) + ("libpng" ,libpng) + ("sdl2" ,sdl2) + ("miniupnpc" ,miniupnpc) + ("zlib" ,zlib) + ("openjpeg" ,openjpeg) + ("mesa" ,mesa) + ("libx11" ,libx11) + ("libxcursor" ,libxcursor) + ("wxwidgets" ,wxwidgets) + ("gloox" ,gloox) ; lobby + ("mozjs-38" ,mozjs-38) + ;; TODO: ("nvidia-texture-tools" ,nvidia-texture-tools) + ("libvorbis" ,libvorbis) + ("openal" ,openal))) + (native-inputs + `(("cmake" ,cmake) + ("pkg-config" ,pkg-config) + ("boost" ,boost) + ("mesa" ,mesa) + ("zip" ,zip) + ("python-2" ,python-2) + ("python" ,python) + ("ruby" ,ruby) + ("bash" ,bash) + ("libsm" ,libsm))) + (build-system gnu-build-system) + ;; NOTE: + ;; FIX MOZJS build: + ;; lrwxrwxrwx 2 root root 79 Jan 1 1970 /gnu/store/xzq971blmjazq7bc267wcgna3bjw15js-mozjs-38.2.1.rc0/include/mozjs-/js/RequiredDefines.h -> /tmp/guix-build-mozjs-38.2.1.rc0.drv-0/mozjs-38.0.0/js/public/RequiredDefines.h + (arguments + `(#:phases + (modify-phases %standard-phases + (add-after 'unpack 'create-/bin/sh-symlink + (lambda _ + ;; The build system creates files during build which expect + ;; /bin/sh to exist (shebang). + (let ((bash (string-append (assoc-ref %build-inputs "bash") + "/bin/sh"))) + ;;(symlink bash (string-append (assoc-ref %outputs "out") + ;; "/bin/sh")) + (substitute* "build/premake/premake4/src/actions/xcode/xcode_common.lua" + (("/bin/sh") bash)) + (substitute* "build/premake/premake4/src/host/scripts.c" + (("/bin/sh") bash)) + (substitute* "build/premake/premake4/tests/actions/xcode/test_xcode_project.lua" + (("/bin/sh") bash))))) + ;; (add-after 'unpack 'add-mozjs-to-pkgpath + ;; (lambda _ + ;; (setenv "PKG_CONFIG_PATH" + ;; (string-append (getenv "PKG_CONFIG_PATH") ":" + ;; (assoc-ref %build-inputs "mozjs-38") + ;; "/lib/pkgconfig")))) + (add-after 'unpack 'use-mozjs + (lambda _ + (substitute* "build/premake/extern_libs4.lua" + (("mozjs-38") "js")))) + (add-after 'unpack 'delete-bundles + (lambda _ + (delete-file-recursively "libraries/source/spidermonkey"))) + (add-after 'unpack 'reset-defaults + (lambda _ + (substitute* "build/premake/premake4/build/gmake.unix/Premake4.make" + (("-Wall -Os") "-Wall") + (("CFLAGS += $(CPPFLAGS) -Wall") + "CFLAGS += $(CFLAGS) $(CPPFLAGS) -Wall") + (("CXXFLAGS += $(CPPFLAGS) -Wall -g") + "CXXFLAGS += $(CXXFLAGS) $(CPPFLAGS) -Wall")))) + ;; We need to use the included premake4. + (add-before 'configure 'build-premake4 + (lambda _ + (setenv "CC" "gcc") + (zero? (system* "make" "-C" + "build/premake/premake4/build/gmake.unix")))) + (replace 'configure + (lambda* _ + (with-directory-excursion "build/premake" + (zero? (system* "premake4/bin/release/premake4" + "--file=premake4.lua" + "--outpath=../workspaces/gcc/" + "--platform=x64" + "--os=linux" + "--with-system-miniupnpc" + "--with-system-mozjs38" + "--minimal-flags" + ;; TODO: "--without-nvtt" + "--with-pch" "--with-tests" "--with-audio" + ;;"--enable-atlas" + "--atlas" + "--with-lobby" "--enable-collada" + ;; TODO: "--with-system-nvtt" + "gmake"))))) + ;; XXX: 0ad bundles spidermonkey, it requires exactly + ;; the bundled version with the applied patches or something + ;; similar, see README. + (add-before 'build 'build-bundled-fcollada + (lambda _ + (zero? (system* "make" "-C" "libraries/source/fcollada/src")))) + (replace 'build + (lambda _ + (zero? (system* "make" "-C" "build/workspaces/gcc" "verbose=1")))) + (replace 'check + (lambda* _ + (with-directory-excursion "binaries/system" + (zero? (system* "./test" "-libdir" "binaries/system")))))))) + (home-page "http://play0ad.com") + (synopsis "Real-time strategy game with single- and multi-player modes") + (description + "0 A.D. is a real-time strategy game. It is a historical war and +economy game focusing on the years between 500 B.C. and 1 B.C. for the +first part, and a planned second part for the years 1 A.D. to 500 A.D.") + (license (list license:expat + license:cc-by-sa3.0 + license:zlib + license:lgpl2.1 + license:gpl2)))) -- 2.11.0