all messages for Guix-related lists mirrored at yhetil.org
 help / color / mirror / code / Atom feed
* bug#26350: Build octave with gl2ps support
@ 2017-04-03 15:42 Arun Isaac
  2017-04-03 15:46 ` bug#26350: [PATCH 1/2] gnu: Add gl2ps Arun Isaac
  0 siblings, 1 reply; 5+ messages in thread
From: Arun Isaac @ 2017-04-03 15:42 UTC (permalink / raw)
  To: 26350


GNU Octave needs gl2ps to export plots to EPS format. Sending patches
for this now...

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

* bug#26350: [PATCH 1/2] gnu: Add gl2ps.
  2017-04-03 15:42 bug#26350: Build octave with gl2ps support Arun Isaac
@ 2017-04-03 15:46 ` Arun Isaac
  2017-04-08 13:24   ` Ludovic Courtès
  0 siblings, 1 reply; 5+ messages in thread
From: Arun Isaac @ 2017-04-03 15:46 UTC (permalink / raw)
  To: 26350

* gnu/packages/gl.scm (gl2ps): New variable.
---
 gnu/packages/gl.scm | 34 ++++++++++++++++++++++++++++++++++
 1 file changed, 34 insertions(+)

diff --git a/gnu/packages/gl.scm b/gnu/packages/gl.scm
index 37a1bd909..e18965866 100644
--- a/gnu/packages/gl.scm
+++ b/gnu/packages/gl.scm
@@ -7,6 +7,7 @@
 ;;; Copyright © 2016, 2017 Ricardo Wurmus <rekado@elephly.net>
 ;;; Copyright © 2016 David Thompson <davet@gnu.org>
 ;;; Copyright © 2017 Efraim Flashner <efraim@flashner.co.il>
+;;; Copyright © 2017 Arun Isaac <arunisaac@systemreboot.net>
 ;;;
 ;;; This file is part of GNU Guix.
 ;;;
@@ -27,12 +28,14 @@
   #:use-module (gnu packages)
   #:use-module (gnu packages autotools)
   #:use-module (gnu packages bison)
+  #:use-module (gnu packages compression)
   #:use-module (gnu packages documentation)
   #:use-module (gnu packages flex)
   #:use-module (gnu packages fontutils)
   #:use-module (gnu packages freedesktop)
   #:use-module (gnu packages gettext)
   #:use-module (gnu packages guile)
+  #:use-module (gnu packages image)
   #:use-module (gnu packages linux)
   #:use-module (gnu packages llvm)
   #:use-module (gnu packages pkg-config)
@@ -612,3 +615,34 @@ library for OpenGL.  It has lean API modeled after HTML5 canvas API.  It is
 aimed to be a practical and fun toolset for building scalable user interfaces
 and visualizations.")
     (license license:zlib)))
+
+(define-public gl2ps
+  (package
+    (name "gl2ps")
+    (version "1.3.9")
+    (source
+     (origin
+       (method url-fetch)
+       (uri (string-append
+             "http://geuz.org/gl2ps/src/gl2ps-"
+             version ".tgz"))
+       (sha256
+        (base32
+         "0h1nrhmkc4qjw2ninwpj2zbgwhc0qg6pdhpsibbvry0d2bzhns4a"))))
+    (build-system cmake-build-system)
+    (inputs
+     `(("libpng" ,libpng)
+       ("mesa" ,mesa)
+       ("zlib" ,zlib)))
+    (arguments
+     `(#:tests? #f))  ;; no tests
+    (home-page "http://www.geuz.org/gl2ps/")
+    (synopsis "OpenGL to PostScript printing library")
+    (description "GL2PS is a C library providing high quality vector
+output for any OpenGL application.  GL2PS uses sorting algorithms
+capable of handling intersecting and stretched polygons, as well as
+non-manifold objects.  GL2PS provides many features including advanced
+smooth shading and text rendering, culling of invisible primitives and
+mixed vector/bitmap output.")
+    (license (list license:lgpl2.0+
+                   (license:non-copyleft "http://www.geuz.org/gl2ps/COPYING.GL2PS")))))
-- 
2.11.0

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

* bug#26350: [PATCH 1/2] gnu: Add gl2ps.
       [not found] <20170403154655.30277-1-arunisaac@systemreboot.net>
@ 2017-04-03 15:50 ` Arun Isaac
  2017-04-08 13:19   ` Ludovic Courtès
  0 siblings, 1 reply; 5+ messages in thread
From: Arun Isaac @ 2017-04-03 15:50 UTC (permalink / raw)
  To: 26350


> +                   (license:non-copyleft "http://www.geuz.org/gl2ps/COPYING.GL2PS")))))

I'm not sure I got this license right. Could someone please check before
pushing?

Thanks.


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

* bug#26350: [PATCH 1/2] gnu: Add gl2ps.
  2017-04-03 15:50 ` Arun Isaac
@ 2017-04-08 13:19   ` Ludovic Courtès
  0 siblings, 0 replies; 5+ messages in thread
From: Ludovic Courtès @ 2017-04-08 13:19 UTC (permalink / raw)
  To: Arun Isaac; +Cc: 26350

Arun Isaac <arunisaac@systemreboot.net> skribis:

>> +                   (license:non-copyleft "http://www.geuz.org/gl2ps/COPYING.GL2PS")))))
>
> I'm not sure I got this license right. Could someone please check before
> pushing?

This looks like a copyleft license incompatible with the GPL.

However gl2ps.h has an explicit LGPL-compatibility clause, which makes
it usable in Octave:

  https://searchcode.com/file/9513121/tags/R2008-04-29/extra/jhandles/src/gl2ps.h

Ludo’.

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

* bug#26350: [PATCH 1/2] gnu: Add gl2ps.
  2017-04-03 15:46 ` bug#26350: [PATCH 1/2] gnu: Add gl2ps Arun Isaac
@ 2017-04-08 13:24   ` Ludovic Courtès
  0 siblings, 0 replies; 5+ messages in thread
From: Ludovic Courtès @ 2017-04-08 13:24 UTC (permalink / raw)
  To: Arun Isaac; +Cc: 26350

Arun Isaac <arunisaac@systemreboot.net> skribis:

> * gnu/packages/gl.scm (gl2ps): New variable.

Applied.

> +    (license (list license:lgpl2.0+
> +                   (license:non-copyleft "http://www.geuz.org/gl2ps/COPYING.GL2PS")))))

I changed ‘non-copyleft’ to ‘fsf-free’ with a note saying this is a
copyleft license.

Thanks!

Ludo’.

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

end of thread, other threads:[~2017-04-08 13:25 UTC | newest]

Thread overview: 5+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2017-04-03 15:42 bug#26350: Build octave with gl2ps support Arun Isaac
2017-04-03 15:46 ` bug#26350: [PATCH 1/2] gnu: Add gl2ps Arun Isaac
2017-04-08 13:24   ` Ludovic Courtès
     [not found] <20170403154655.30277-1-arunisaac@systemreboot.net>
2017-04-03 15:50 ` Arun Isaac
2017-04-08 13:19   ` Ludovic Courtès

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.