unofficial mirror of guix-devel@gnu.org 
 help / color / mirror / code / Atom feed
* [PATCH] gnu: Add quesoglc.
@ 2016-06-15 18:55 Kei Kebreau
  2016-06-15 21:41 ` Leo Famulari
  0 siblings, 1 reply; 5+ messages in thread
From: Kei Kebreau @ 2016-06-15 18:55 UTC (permalink / raw)
  To: guix-devel


[-- Attachment #1.1: Type: text/plain, Size: 123 bytes --]


This is an OpenGL tool that some free software games use.
Builds fine on my machine, so a second test would be nice. :-)


[-- Attachment #1.2: patch --]
[-- Type: text/plain, Size: 2084 bytes --]

From cd3052af0c0ef0d9df13584070bd4d48138e0439 Mon Sep 17 00:00:00 2001
From: Kei Kebreau <kei@openmailbox.org>
Date: Wed, 15 Jun 2016 14:40:38 -0400
Subject: [PATCH] gnu: Add quesoglc.

* gnu/packages/game-development.scm (quesoglc): New variable.
---
 gnu/packages/game-development.scm | 27 +++++++++++++++++++++++++++
 1 file changed, 27 insertions(+)

diff --git a/gnu/packages/game-development.scm b/gnu/packages/game-development.scm
index 56617bb..5d749da 100644
--- a/gnu/packages/game-development.scm
+++ b/gnu/packages/game-development.scm
@@ -34,6 +34,8 @@
   #:use-module (gnu packages curl)
   #:use-module (gnu packages databases)
   #:use-module (gnu packages documentation)
+  #:use-module (gnu packages fontutils)
+  #:use-module (gnu packages fribidi)
   #:use-module (gnu packages glib)
   #:use-module (gnu packages gnunet)
   #:use-module (gnu packages guile)
@@ -432,3 +434,28 @@ It offers the following features:
   import into a database.
 @end enumerate")
     (license license:gpl2+)))
+
+(define-public quesoglc
+  (package
+    (name "quesoglc")
+    (version "0.7.2")
+    (source (origin
+              (method url-fetch)
+              (uri (string-append "mirror://sourceforge/" name "/" version "/"
+                                  name "-" version "-free.tar.bz2"))
+              (sha256
+               (base32
+                "08ddhywdy2qg17m592ng3yr0p1ih96irg8wg729g75hsxxq9ipks"))))
+    (build-system gnu-build-system)
+    (native-inputs `(("pkg-config" ,pkg-config)))
+    (inputs `(("fontconfig" ,fontconfig)
+              ("freeglute" ,freeglut)
+              ("fribidi" ,fribidi)
+              ("glew" ,glew)))
+    (home-page "http://quesoglc.sourceforge.net")
+    (synopsis "Free implementation of the OpenGL Character Renderer (GLC)")
+    (description
+     "The OpenGL Character Renderer (GLC) is a state machine that provides
+OpenGL programs with character rendering services via an application programming
+interface (API).")
+    (license license:lgpl2.1+)))
-- 
2.8.3


[-- Attachment #1.3: Type: text/plain, Size: 46 bytes --]


-- 
Kei (GPG Key: 4096R/E6A5EE3C19467A0D)

[-- Attachment #2: signature.asc --]
[-- Type: application/pgp-signature, Size: 818 bytes --]

^ permalink raw reply related	[flat|nested] 5+ messages in thread

* Re: [PATCH] gnu: Add quesoglc.
  2016-06-15 18:55 [PATCH] gnu: Add quesoglc Kei Kebreau
@ 2016-06-15 21:41 ` Leo Famulari
  2016-06-15 23:41   ` Kei Kebreau
  0 siblings, 1 reply; 5+ messages in thread
From: Leo Famulari @ 2016-06-15 21:41 UTC (permalink / raw)
  To: Kei Kebreau; +Cc: guix-devel

On Wed, Jun 15, 2016 at 02:55:33PM -0400, Kei Kebreau wrote:
> 
> This is an OpenGL tool that some free software games use.
> Builds fine on my machine, so a second test would be nice. :-)

It builds for me on x86_64 :)

> +    (synopsis "Free implementation of the OpenGL Character Renderer (GLC)")

Everything we package is free software, so we don't mention it as a
special quality in synopses and descriptions.

> +    (license license:lgpl2.1+)))

Part of include/glc.h is Expat licensed.

^ permalink raw reply	[flat|nested] 5+ messages in thread

* Re: [PATCH] gnu: Add quesoglc.
  2016-06-15 21:41 ` Leo Famulari
@ 2016-06-15 23:41   ` Kei Kebreau
  2016-06-17 18:18     ` Leo Famulari
  0 siblings, 1 reply; 5+ messages in thread
From: Kei Kebreau @ 2016-06-15 23:41 UTC (permalink / raw)
  To: Leo Famulari; +Cc: guix-devel


[-- Attachment #1.1: Type: text/plain, Size: 713 bytes --]

Leo Famulari <leo@famulari.name> writes:

> On Wed, Jun 15, 2016 at 02:55:33PM -0400, Kei Kebreau wrote:
>> 
>> This is an OpenGL tool that some free software games use.
>> Builds fine on my machine, so a second test would be nice. :-)
>
> It builds for me on x86_64 :)
>
>> +    (synopsis "Free implementation of the OpenGL Character Renderer (GLC)")
>
> Everything we package is free software, so we don't mention it as a
> special quality in synopses and descriptions.
>

Putting this one on a sticky note now. This isn't my first time
forgetting this. :P

>> +    (license license:lgpl2.1+)))
>
> Part of include/glc.h is Expat licensed.

Indeed it is. A corrected patch is attached!


[-- Attachment #1.2: corrected patch --]
[-- Type: text/plain, Size: 2100 bytes --]

From bb107770e060ad055a453cd7b5d005ab2cb5e6ab Mon Sep 17 00:00:00 2001
From: Kei Kebreau <kei@openmailbox.org>
Date: Wed, 15 Jun 2016 19:37:03 -0400
Subject: [PATCH] gnu: Add quesoglc.

* gnu/packages/game-development.scm (quesoglc): New variable.
---
 gnu/packages/game-development.scm | 27 +++++++++++++++++++++++++++
 1 file changed, 27 insertions(+)

diff --git a/gnu/packages/game-development.scm b/gnu/packages/game-development.scm
index 56617bb..b11285a 100644
--- a/gnu/packages/game-development.scm
+++ b/gnu/packages/game-development.scm
@@ -34,6 +34,8 @@
   #:use-module (gnu packages curl)
   #:use-module (gnu packages databases)
   #:use-module (gnu packages documentation)
+  #:use-module (gnu packages fontutils)
+  #:use-module (gnu packages fribidi)
   #:use-module (gnu packages glib)
   #:use-module (gnu packages gnunet)
   #:use-module (gnu packages guile)
@@ -432,3 +434,28 @@ It offers the following features:
   import into a database.
 @end enumerate")
     (license license:gpl2+)))
+
+(define-public quesoglc
+  (package
+    (name "quesoglc")
+    (version "0.7.2")
+    (source (origin
+              (method url-fetch)
+              (uri (string-append "mirror://sourceforge/" name "/" version "/"
+                                  name "-" version "-free.tar.bz2"))
+              (sha256
+               (base32
+                "08ddhywdy2qg17m592ng3yr0p1ih96irg8wg729g75hsxxq9ipks"))))
+    (build-system gnu-build-system)
+    (native-inputs `(("pkg-config" ,pkg-config)))
+    (inputs `(("fontconfig" ,fontconfig)
+              ("freeglute" ,freeglut)
+              ("fribidi" ,fribidi)
+              ("glew" ,glew)))
+    (home-page "http://quesoglc.sourceforge.net")
+    (synopsis "Implementation of the OpenGL Character Renderer (GLC)")
+    (description
+     "The OpenGL Character Renderer (GLC) is a state machine that provides
+OpenGL programs with character rendering services via an application programming
+interface (API).")
+    (license (list license:expat license:lgpl2.1+))))
-- 
2.8.3


[-- Attachment #1.3: Type: text/plain, Size: 44 bytes --]

-- 
Kei (GPG Key: 4096R/E6A5EE3C19467A0D)

[-- Attachment #2: signature.asc --]
[-- Type: application/pgp-signature, Size: 818 bytes --]

^ permalink raw reply related	[flat|nested] 5+ messages in thread

* Re: [PATCH] gnu: Add quesoglc.
  2016-06-15 23:41   ` Kei Kebreau
@ 2016-06-17 18:18     ` Leo Famulari
  2016-06-18 15:48       ` Kei Kebreau
  0 siblings, 1 reply; 5+ messages in thread
From: Leo Famulari @ 2016-06-17 18:18 UTC (permalink / raw)
  To: Kei Kebreau; +Cc: guix-devel

On Wed, Jun 15, 2016 at 07:41:39PM -0400, Kei Kebreau wrote:
> Indeed it is. A corrected patch is attached!

Thanks, looks good!

^ permalink raw reply	[flat|nested] 5+ messages in thread

* Re: [PATCH] gnu: Add quesoglc.
  2016-06-17 18:18     ` Leo Famulari
@ 2016-06-18 15:48       ` Kei Kebreau
  0 siblings, 0 replies; 5+ messages in thread
From: Kei Kebreau @ 2016-06-18 15:48 UTC (permalink / raw)
  To: Leo Famulari; +Cc: guix-devel

[-- Attachment #1: Type: text/plain, Size: 262 bytes --]

Leo Famulari <leo@famulari.name> writes:

> On Wed, Jun 15, 2016 at 07:41:39PM -0400, Kei Kebreau wrote:
>> Indeed it is. A corrected patch is attached!
>
> Thanks, looks good!

Alright then! Pushing it now.

-- 
Kei (GPG Key: 4096R/E6A5EE3C19467A0D)

[-- Attachment #2: signature.asc --]
[-- Type: application/pgp-signature, Size: 818 bytes --]

^ permalink raw reply	[flat|nested] 5+ messages in thread

end of thread, other threads:[~2016-06-18 15:48 UTC | newest]

Thread overview: 5+ messages (download: mbox.gz / follow: Atom feed)
-- links below jump to the message on this page --
2016-06-15 18:55 [PATCH] gnu: Add quesoglc Kei Kebreau
2016-06-15 21:41 ` Leo Famulari
2016-06-15 23:41   ` Kei Kebreau
2016-06-17 18:18     ` Leo Famulari
2016-06-18 15:48       ` Kei Kebreau

Code repositories for project(s) associated with this public inbox

	https://git.savannah.gnu.org/cgit/guix.git

This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox;
as well as URLs for read-only IMAP folder(s) and NNTP newsgroup(s).