From mboxrd@z Thu Jan 1 00:00:00 1970 From: Fabian Harfert Subject: Re: [PATCH] Add package definition for GNU XaoS. Date: Tue, 15 Dec 2015 21:02:03 +0100 Message-ID: <20151215210203.5d2accca@himbaca> References: <20151215205144.2b2ff5f1@himbaca> Mime-Version: 1.0 Content-Type: multipart/mixed; boundary="MP_/FMt2gp9KH2mr.VYkBuuX80r" Return-path: Received: from eggs.gnu.org ([2001:4830:134:3::10]:54034) by lists.gnu.org with esmtp (Exim 4.71) (envelope-from ) id 1a8voD-0008Hc-Sw for guix-devel@gnu.org; Tue, 15 Dec 2015 15:02:54 -0500 Received: from Debian-exim by eggs.gnu.org with spam-scanned (Exim 4.71) (envelope-from ) id 1a8vo8-00066Q-Ub for guix-devel@gnu.org; Tue, 15 Dec 2015 15:02:53 -0500 Received: from mout.web.de ([212.227.17.11]:52557) by eggs.gnu.org with esmtp (Exim 4.71) (envelope-from ) id 1a8vo8-00066L-LC for guix-devel@gnu.org; Tue, 15 Dec 2015 15:02:48 -0500 Received: from himbaca ([79.210.89.74]) by smtp.web.de (mrweb103) with ESMTPSA (Nemesis) id 0LuuNx-1aI2QY363d-0105YJ for ; Tue, 15 Dec 2015 21:02:47 +0100 In-Reply-To: <20151215205144.2b2ff5f1@himbaca> 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_/FMt2gp9KH2mr.VYkBuuX80r Content-Type: text/plain; charset=US-ASCII Content-Transfer-Encoding: 7bit Content-Disposition: inline Am Tue, 15 Dec 2015 20:51:44 +0100 schrieb Fabian Harfert : Excuse me, I've forgotten to add the copyright. > 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_/FMt2gp9KH2mr.VYkBuuX80r Content-Type: text/x-patch Content-Transfer-Encoding: quoted-printable Content-Disposition: attachment; filename=0001-Add-package-definition-for-GNU-XaoS.patch =46rom 6687ea7c21725bdc13e368773d5c7576a43db14e Mon Sep 17 00:00:00 2001 From: Fabian Harfert Date: Tue, 15 Dec 2015 21:00:38 +0100 Subject: [PATCH] Add package definition for GNU XaoS. --- gnu/packages/maths.scm | 31 +++++++++++++++++++++++++++++++ 1 file changed, 31 insertions(+) diff --git a/gnu/packages/maths.scm b/gnu/packages/maths.scm index 0c0f013..181809c 100644 --- a/gnu/packages/maths.scm +++ b/gnu/packages/maths.scm @@ -9,6 +9,7 @@ ;;; Copyright =C2=A9 2015 Sou Bunnbu ;;; Copyright =C2=A9 2015 Mark H Weaver ;;; Copyright =C2=A9 2015 Efraim Flashner +;;; Copyright =C2=A9 2015 Fabian Harfert ;;; ;;; This file is part of GNU Guix. ;;; @@ -53,6 +54,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 +1993,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=3D$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 fr= actals +are built. It can generate many different fractal types such as the Mande= lbrot +set.") + (home-page "http://www.gnu.org/software/xaos/") + (license license:gpl2+))) --=20 2.1.4 --MP_/FMt2gp9KH2mr.VYkBuuX80r--