From mboxrd@z Thu Jan 1 00:00:00 1970 From: Fabian Harfert Subject: [PATCH] Add package definition for GNU XaoS. Date: Tue, 15 Dec 2015 20:51:44 +0100 Message-ID: <20151215205144.2b2ff5f1@himbaca> Mime-Version: 1.0 Content-Type: multipart/mixed; boundary="MP_/vd/qI4oTqzl/blygmZj/3mJ" Return-path: Received: from eggs.gnu.org ([2001:4830:134:3::10]:50730) by lists.gnu.org with esmtp (Exim 4.71) (envelope-from ) id 1a8vdn-0006eY-Kk for guix-devel@gnu.org; Tue, 15 Dec 2015 14:52:08 -0500 Received: from Debian-exim by eggs.gnu.org with spam-scanned (Exim 4.71) (envelope-from ) id 1a8vdi-0003Nm-L6 for guix-devel@gnu.org; Tue, 15 Dec 2015 14:52:07 -0500 Received: from mout.web.de ([212.227.15.3]:51307) by eggs.gnu.org with esmtp (Exim 4.71) (envelope-from ) id 1a8vdi-0003Nh-BG for guix-devel@gnu.org; Tue, 15 Dec 2015 14:52:02 -0500 Received: from himbaca ([79.210.89.74]) by smtp.web.de (mrweb003) with ESMTPSA (Nemesis) id 0LqDTc-1adskD1ezo-00dnrv for ; Tue, 15 Dec 2015 20:52:01 +0100 List-Id: "Development of GNU Guix and the GNU System distribution." List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , Errors-To: guix-devel-bounces+gcggd-guix-devel=m.gmane.org@gnu.org Sender: guix-devel-bounces+gcggd-guix-devel=m.gmane.org@gnu.org To: guix-devel@gnu.org --MP_/vd/qI4oTqzl/blygmZj/3mJ Content-Type: text/plain; charset=US-ASCII Content-Transfer-Encoding: 7bit Content-Disposition: inline Hello, here's the new patch for GNU XaoS, I added it to maths.scm, fixed the ("gettext" ,gnu-gettext) thing but didn't add gpl3+ to the licenses because I couldn't find any file with it. Fabian Harfert --MP_/vd/qI4oTqzl/blygmZj/3mJ Content-Type: text/x-patch Content-Transfer-Encoding: 7bit Content-Disposition: attachment; filename=0001-Add-package-definition-for-GNU-XaoS.patch >From 7c3a50c184745dcf2fb0b81ad30a629739ddf8d0 Mon Sep 17 00:00:00 2001 From: Fabian Harfert Date: Tue, 15 Dec 2015 20:43:55 +0100 Subject: [PATCH] Add package definition for GNU XaoS. * gnu/packages/maths.scm (xaos): Add package definition for GNU XaoS. --- gnu/packages/maths.scm | 30 ++++++++++++++++++++++++++++++ 1 file changed, 30 insertions(+) diff --git a/gnu/packages/maths.scm b/gnu/packages/maths.scm index 0c0f013..a288291 100644 --- a/gnu/packages/maths.scm +++ b/gnu/packages/maths.scm @@ -53,6 +53,7 @@ #:use-module (gnu packages ghostscript) #:use-module (gnu packages glib) #:use-module (gnu packages gtk) + #:use-module (gnu packages image) #:use-module (gnu packages less) #:use-module (gnu packages lisp) #:use-module (gnu packages gnome) @@ -1991,3 +1992,32 @@ variables, a command history, hex/octal/binary input and output, unit conversions, embedded comments, and an expandable expression entry field. It evaluates expressions using the standard order of operations.") (license license:gpl2+))) + +(define-public xaos + (package + (name "xaos") + (version "3.6") + (source (origin + (method url-fetch) + (uri (string-append "mirror://sourceforge/xaos/xaos-" version + ".tar.gz")) + (sha256 + (base32 + "15cd1cx1dyygw6g2nhjqq3bsfdj8sj8m4va9n75i0f3ryww3x7wq")))) + (build-system gnu-build-system) + (native-inputs `(("gettext" ,gnu-gettext))) + (inputs `(("libx11" ,libx11) + ("zlib" ,zlib) + ("libpng" ,libpng) + ("gsl" ,gsl))) + (arguments + `(#:tests? #f ;no "check" target + #:make-flags '("LOCALEDIR=$DATAROOTDIR/locale"))) + (synopsis "Real-time fractal zoomer") + (description "GNU XaoS is a graphical program that generates fractal +patterns and allows you to zoom in and out of them infinitely in a fluid, +continuous manner. It also includes tutorials that help to explain how fractals +are built. It can generate many different fractal types such as the Mandelbrot +set.") + (home-page "http://www.gnu.org/software/xaos/") + (license license:gpl2+))) -- 2.1.4 --MP_/vd/qI4oTqzl/blygmZj/3mJ--