>From 0261d4b0a587f402f76d83ccddf97b2cf70a03e0 Mon Sep 17 00:00:00 2001 From: Andreas Enge Date: Sat, 27 Feb 2016 17:21:04 +0100 Subject: [PATCH] gnu: Add einstein. * gnu/packages/games.scm (einstein): New variable. * gnu/packages/patches/einstein-install.patch: New file. * gnu-system.am (dist_patch_DATA): Register patch. --- gnu-system.am | 1 + gnu/packages/games.scm | 68 ++++++++++++++++++++++++++++- gnu/packages/patches/einstein-install.patch | 21 +++++++++ 3 files changed, 89 insertions(+), 1 deletion(-) create mode 100644 gnu/packages/patches/einstein-install.patch diff --git a/gnu-system.am b/gnu-system.am index 6ccca12..5fff3e8 100644 --- a/gnu-system.am +++ b/gnu-system.am @@ -454,6 +454,7 @@ dist_patch_DATA = \ gnu/packages/patches/doxygen-test.patch \ gnu/packages/patches/duplicity-piped-password.patch \ gnu/packages/patches/duplicity-test_selection-tmp.patch \ + gnu/packages/patches/einstein-install.patch \ gnu/packages/patches/elfutils-tests-ptrace.patch \ gnu/packages/patches/emacs-constants-lisp-like.patch \ gnu/packages/patches/emacs-exec-path.patch \ diff --git a/gnu/packages/games.scm b/gnu/packages/games.scm index 991fa24..0fe669d 100644 --- a/gnu/packages/games.scm +++ b/gnu/packages/games.scm @@ -7,7 +7,7 @@ ;;; Copyright © 2014, 2015 Ludovic Courtès ;;; Copyright © 2014, 2015 Sou Bunnbu ;;; Copyright © 2014, 2015 Mark H Weaver -;;; Copyright © 2015 Andreas Enge +;;; Copyright © 2015, 2016 Andreas Enge ;;; Copyright © 2015 David Hashe ;;; Copyright © 2015 Christopher Allan Webber ;;; Copyright © 2015 Ricardo Wurmus @@ -47,6 +47,7 @@ #:use-module (gnu packages audio) #:use-module (gnu packages avahi) #:use-module (gnu packages boost) + #:use-module (gnu packages fonts) #:use-module (gnu packages fribidi) #:use-module (gnu packages game-development) #:use-module (gnu packages gettext) @@ -1917,3 +1918,68 @@ Catan. It can be played on a local network, on the internet, and with AI players.") (home-page "http://pio.sourceforge.net/") (license license:gpl2+))) + +(define-public einstein + (package + (name "einstein") + (version "2.0") + (source (origin + (method url-fetch) + (uri (string-append "http://http.debian.net/debian/pool/main/e/" + "einstein/einstein_2.0.dfsg.2.orig.tar.gz")) + (sha256 + (base32 + "1hxrlv6n8py48j487i6wbb4n4vd55w0na69r7ccmmr9vmrsw5mlk")) + (patches (list (search-patch "einstein-install.patch"))))) + (build-system gnu-build-system) + (inputs + `(("freetype" ,freetype) + ("sdl" ,sdl) + ("sdl-mixer" ,sdl-mixer) + ("sdl-ttf" ,sdl-ttf) + ("zlib" ,zlib))) + (native-inputs + `(("font-dejavu" ,font-dejavu))) + (arguments + `(#:tests? #f ; no check target + #:phases + (modify-phases %standard-phases + (replace 'configure + (lambda* (#:key outputs inputs #:allow-other-keys) + (let ((out (assoc-ref outputs "out")) + (dejavu (string-append (assoc-ref inputs "font-dejavu") + "/share/fonts/truetype/DejaVuSans.ttf"))) + (substitute* "Makefile" + (("PREFIX=/usr/local") (string-append "PREFIX=" out))) + ;; Replace proprietary fonts by free one. + ;; The font is copied during the compile phase into a resources + ;; file, so we need to make the ttf file available. + (symlink dejavu "res/DejaVuSans.ttf") + (substitute* (find-files "." "\\.(cpp|descr)$") + (("laudcn2.ttf") "DejaVuSans.ttf") + (("luximb.ttf") "DejaVuSans.ttf") + (("nova.ttf") "DejaVuSans.ttf")) + ;; Fix compilation with current gcc. + (substitute* (find-files "." "\\.(cpp|h)$") + (("SDL_mixer.h") "SDL/SDL_mixer.h") + (("SDL_ttf.h") "SDL/SDL_ttf.h")) + (substitute* + '("convert.h" "mkres/convert.h") + (("iostream") "iostream>\n#include /dev/null + -- 2.6.3