From: David Thompson <dthompson2@worcester.edu>
To: guix-devel@gnu.org
Subject: Re: [PATCH 2/2] gnu: Add guile-sdl.
Date: Sat, 08 Nov 2014 21:12:06 -0500 [thread overview]
Message-ID: <87k335nmvd.fsf@izanagi.i-did-not-set--mail-host-address--so-tickle-me> (raw)
In-Reply-To: <8738a1wmmp.fsf@izanagi.i-did-not-set--mail-host-address--so-tickle-me>
[-- Attachment #1: Type: text/plain, Size: 12 bytes --]
New patch!
[-- Warning: decoded text below may be mangled, UTF-8 assumed --]
[-- Attachment #2: 0002-gnu-Add-guile-sdl.patch --]
[-- Type: text/x-diff, Size: 3072 bytes --]
From 215bd5af729055196da818518c816f7fd08e6a06 Mon Sep 17 00:00:00 2001
From: David Thompson <dthompson2@worcester.edu>
Date: Sun, 2 Nov 2014 11:55:21 -0500
Subject: [PATCH 2/2] gnu: Add guile-sdl.
* gnu/packages/sdl.scm (guile-sdl): New variable.
---
gnu/packages/sdl.scm | 52 ++++++++++++++++++++++++++++++++++++++++++++++++++++
1 file changed, 52 insertions(+)
diff --git a/gnu/packages/sdl.scm b/gnu/packages/sdl.scm
index 609088b..e94a83c 100644
--- a/gnu/packages/sdl.scm
+++ b/gnu/packages/sdl.scm
@@ -24,6 +24,7 @@
#:use-module (guix build-system gnu)
#:use-module (guix build-system trivial)
#:use-module ((gnu packages fontutils) #:prefix font:)
+ #:use-module (gnu packages guile)
#:use-module (gnu packages image)
#:use-module (gnu packages linux)
#:use-module (gnu packages mp3)
@@ -269,3 +270,54 @@ sdl-config assumes that all of the headers and libraries are in the same
directory.")
(home-page (package-home-page sdl))
(license (package-license sdl))))
+
+(define-public guile-sdl
+ (package
+ (name "guile-sdl")
+ (version "0.5.1")
+ (source (origin
+ (method url-fetch)
+ (uri
+ (string-append "mirror://gnu/guile-sdl/guile-sdl-"
+ version ".tar.xz"))
+ (sha256
+ (base32
+ "126n4rd0ydh6i2s11ari5k85iivradlf12zq13b34shf9k1wn5am"))))
+ (build-system gnu-build-system)
+ (native-inputs
+ `(("pkg-config" ,pkg-config)
+ ;; Required by test suite.
+ ("xorg-server" ,xorg-server)
+ ("libjpeg" ,libjpeg)))
+ (inputs
+ `(("guile" ,guile-2.0)
+ ("sdl-union" ,sdl-union)))
+ (arguments
+ '(#:configure-flags
+ (list (string-append "--with-sdl-prefix="
+ (assoc-ref %build-inputs "sdl-union")))
+ #:parallel-build? #f ; parallel build fails
+ #:phases
+ (alist-cons-before
+ 'configure 'fix-env-and-patch
+ (lambda* (#:key inputs #:allow-other-keys)
+ (setenv "GUILE_AUTO_COMPILE" "0")
+ ;; SDL_image needs to dlopen libjpeg in the test suite.
+ (setenv "LD_LIBRARY_PATH"
+ (string-append (assoc-ref inputs "libjpeg") "/lib"))
+ ;; Change the site directory /site/2.0 like Guile expects.
+ (substitute* "build-aux/guile-baux/re-prefixed-site-dirs"
+ (("\"/site\"") "\"/site/2.0\"")))
+ (alist-cons-before
+ 'check 'start-xorg-server
+ (lambda* (#:key inputs #:allow-other-keys)
+ ;; The test suite requires a running X server.
+ (system (format #f "~a/bin/Xvfb :1 &"
+ (assoc-ref inputs "xorg-server")))
+ (setenv "DISPLAY" ":1"))
+ %standard-phases))))
+ (synopsis "SDL bindings for GNU Guile.")
+ (description "Guile-SDL is a set of modules that provide bindings for SDL
+to enable Guile programmers to do all the nice things you can do with SDL.")
+ (home-page "http://gnu.org/s/guile-sdl")
+ (license gpl3+)))
--
2.1.1
[-- Attachment #3: Type: text/plain, Size: 136 bytes --]
--
David Thompson
Web Developer - Free Software Foundation - http://fsf.org
GPG Key: 0FF1D807
Support the FSF: https://fsf.org/donate
next prev parent reply other threads:[~2014-11-09 2:12 UTC|newest]
Thread overview: 11+ messages / expand[flat|nested] mbox.gz Atom feed top
2014-11-02 17:12 [PATCH 0/2] gnu: Add sdl-union and guile-sdl David Thompson
2014-11-02 17:13 ` [PATCH 1/2] gnu: Add sdl-union David Thompson
2014-11-02 17:14 ` [PATCH 2/2] gnu: Add guile-sdl David Thompson
2014-11-09 2:12 ` David Thompson [this message]
2014-11-09 17:39 ` Ludovic Courtès
2014-11-10 0:24 ` David Thompson
2014-11-09 2:11 ` [PATCH 1/2] gnu: Add sdl-union David Thompson
2014-11-09 17:36 ` Ludovic Courtès
2014-11-10 0:25 ` David Thompson
2014-11-03 8:51 ` [PATCH 0/2] gnu: Add sdl-union and guile-sdl Ludovic Courtès
2014-11-09 2:08 ` David Thompson
Reply instructions:
You may reply publicly to this message via plain-text email
using any one of the following methods:
* Save the following mbox file, import it into your mail client,
and reply-to-all from there: mbox
Avoid top-posting and favor interleaved quoting:
https://en.wikipedia.org/wiki/Posting_style#Interleaved_style
* Reply using the --to, --cc, and --in-reply-to
switches of git-send-email(1):
git send-email \
--in-reply-to=87k335nmvd.fsf@izanagi.i-did-not-set--mail-host-address--so-tickle-me \
--to=dthompson2@worcester.edu \
--cc=guix-devel@gnu.org \
/path/to/YOUR_REPLY
https://kernel.org/pub/software/scm/git/docs/git-send-email.html
* If your mail client supports setting the In-Reply-To header
via mailto: links, try the mailto: link
Be sure your reply has a Subject: header at the top and a blank line
before the message body.
Code repositories for project(s) associated with this external index
https://git.savannah.gnu.org/cgit/guix.git
This is an external index of several public inboxes,
see mirroring instructions on how to clone and mirror
all data and code used by this external index.