[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]
Re: [PATCH] gnu: Add guile-opengl
From: |
David Thompson |
Subject: |
Re: [PATCH] gnu: Add guile-opengl |
Date: |
Wed, 25 Jun 2014 20:04:08 -0400 |
User-agent: |
Notmuch/0.18 (http://notmuchmail.org) Emacs/24.3.1 (x86_64-pc-linux-gnu) |
Ludovic Courtès <address@hidden> writes:
>> + (define (dynamic-link-substitute file lib input)
>> + (substitute* file
>> + (((string-append "dynamic-link \"" lib "\""))
>> + (string-append "dynamic-link \""
>> + (assoc-ref inputs input)
>> + "/lib/" lib "\""))))
>
> Patterns in ‘substitute*’ are supposed to be literals.
>
> Wouldn’t it work to do something like:
>
> (substitute* file
> (("dynamic-link \"lib[a-zA-Z]+\" _ libname)
> (string-append ...)))
>
> ?
>
Yes, that's better. Updated patch attached.
>From 4e63b47f868f5eab5573e8e70c40f23545f3645a Mon Sep 17 00:00:00 2001
From: David Thompson <address@hidden>
Date: Tue, 24 Jun 2014 21:59:47 -0400
Subject: [PATCH] gnu: Add guile-opengl.
* gnu/packages/gl.scm (guile-opengl): New variable.
---
gnu/packages/gl.scm | 44 +++++++++++++++++++++++++++++++++++++++++++-
1 file changed, 43 insertions(+), 1 deletion(-)
diff --git a/gnu/packages/gl.scm b/gnu/packages/gl.scm
index 2741595..36ba0bd 100644
--- a/gnu/packages/gl.scm
+++ b/gnu/packages/gl.scm
@@ -1,6 +1,7 @@
;;; GNU Guix --- Functional package management for GNU
;;; Copyright © 2013 Andreas Enge <address@hidden>
;;; Copyright © 2013 Guy Grant <address@hidden>
+;;; Copyright © 2014 David Thompson <address@hidden>
;;;
;;; This file is part of GNU Guix.
;;;
@@ -30,7 +31,8 @@
#:use-module (gnu packages python)
#:use-module (gnu packages xorg)
#:use-module (gnu packages xml)
- #:use-module (gnu packages fontutils))
+ #:use-module (gnu packages fontutils)
+ #:use-module (gnu packages guile))
(define-public glu
(package
@@ -170,3 +172,43 @@ a system for rendering interactive 3D graphics. A variety
of device drivers
allows Mesa to be used in many different environments ranging from software
emulation to complete hardware acceleration for modern GPUs.")
(license l:x11)))
+
+(define-public guile-opengl
+ (package
+ (name "guile-opengl")
+ (version "0.1.0")
+ (source (origin
+ (method url-fetch)
+ (uri (string-append "mirror://gnu/guile-opengl/guile-opengl-"
+ version ".tar.gz"))
+ (sha256
+ (base32
+ "13qfx4xh8baryxqrv986l848ygd0piqwm6s2s90pxk9c0m9vklim"))))
+ (build-system gnu-build-system)
+ (native-inputs `(("pkg-config" ,pkg-config)))
+ (inputs `(("guile" ,guile-2.0)
+ ("mesa" ,mesa)
+ ("freeglut" ,freeglut)))
+ (arguments
+ '(#:phases (alist-cons-before
+ 'build 'patch-dynamic-link
+ (lambda* (#:key inputs outputs #:allow-other-keys)
+ (define (dynamic-link-substitute file lib input)
+ (substitute* file
+ (("dynamic-link \"lib([a-zA-Z]+)\"" _ lib)
+ (string-append "dynamic-link \""
+ (assoc-ref inputs input)
+ "/lib/lib" lib "\""))))
+ ;; Replace dynamic-link calls for libGL, libGLU, and
+ ;; libglut with absolute paths to the store.
+ (dynamic-link-substitute "glx/runtime.scm" "GL" "mesa")
+ (dynamic-link-substitute "glu/runtime.scm" "GLU" "mesa")
+ (dynamic-link-substitute "glut/runtime.scm" "glut"
+ "freeglut"))
+ %standard-phases)))
+ (home-page "http://gnu.org/s/guile-opengl")
+ (synopsis "OpenGL bindings for Guile")
+ (description
+ "GNU Guile-OpenGL is a library providing access to the OpenGL graphics
+API from GNU Guile.")
+ (license l:lgpl3+)))
--
2.0.0
--
David Thompson
Web Developer - Free Software Foundation - http://fsf.org
GPG Key: 0FF1D807
Support the FSF: https://fsf.org/donate