2013-05-21 18:33:14 -04:00
|
|
|
;;; GNU Guix --- Functional package management for GNU
|
2020-01-27 17:01:59 -05:00
|
|
|
;;; Copyright © 2013, 2014, 2015, 2016, 2017, 2018, 2019, 2020 Ludovic Courtès <ludo@gnu.org>
|
2015-12-20 17:24:24 -05:00
|
|
|
;;; Copyright © 2015 Eric Bavier <bavier@member.fsf.org>
|
2020-01-15 16:10:31 -05:00
|
|
|
;;; Copyright © 2016, 2017, 2019, 2020 Nicolas Goaziou <mail@nicolasgoaziou.fr>
|
2018-04-04 20:21:07 -04:00
|
|
|
;;; Copyright © 2018 Tobias Geerinckx-Rice <me@tobias.gr>
|
2020-01-24 23:13:46 -05:00
|
|
|
;;; Copyright © 2020 Maxim Cournoyer <maxim.cournoyer@gmail.com>
|
2013-05-21 18:33:14 -04:00
|
|
|
;;;
|
|
|
|
;;; This file is part of GNU Guix.
|
|
|
|
;;;
|
|
|
|
;;; GNU Guix is free software; you can redistribute it and/or modify it
|
|
|
|
;;; under the terms of the GNU General Public License as published by
|
|
|
|
;;; the Free Software Foundation; either version 3 of the License, or (at
|
|
|
|
;;; your option) any later version.
|
|
|
|
;;;
|
|
|
|
;;; GNU Guix is distributed in the hope that it will be useful, but
|
|
|
|
;;; WITHOUT ANY WARRANTY; without even the implied warranty of
|
|
|
|
;;; MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
|
|
|
|
;;; GNU General Public License for more details.
|
|
|
|
;;;
|
|
|
|
;;; You should have received a copy of the GNU General Public License
|
|
|
|
;;; along with GNU Guix. If not, see <http://www.gnu.org/licenses/>.
|
|
|
|
|
|
|
|
(define-module (gnu packages plotutils)
|
2015-03-09 16:03:17 -04:00
|
|
|
#:use-module ((guix licenses) #:prefix license:)
|
2013-05-21 18:33:14 -04:00
|
|
|
#:use-module (guix packages)
|
|
|
|
#:use-module (guix download)
|
|
|
|
#:use-module (guix build-system gnu)
|
2015-12-20 17:24:24 -05:00
|
|
|
#:use-module (gnu packages algebra)
|
|
|
|
#:use-module (gnu packages bdw-gc)
|
2016-05-03 18:43:36 -04:00
|
|
|
#:use-module (gnu packages emacs)
|
2013-06-07 16:31:54 -04:00
|
|
|
#:use-module (gnu packages xorg)
|
gnu: Consolidate libjpeg, libpng, and libtiff into one module.
* gnu/packages/image.scm: New file.
* gnu-system.am (GNU_SYSTEM_MODULES): Add image.scm and remove libjpeg.scm,
libpng.scm, and libtiff.scm.
* gnu/packages/libjpeg.scm, gnu/packages/libpng.scm, gnu/packages/libtiff.scm:
Delete files.
* gnu/packages/emacs.scm gnu/packages/games.scm, gnu/packages/gd.scm,
gnu/packages/geeqie.scm, gnu/packages/ghostscript.scm,
gnu/packages/gimp.scm, gnu/packages/gnome.scm, gnu/packages/gnunet.scm,
gnu/packages/gnustep.scm, gnu/packages/gnuzilla.scm,
gnu/packages/graphviz.scm, gnu/packages/gtk.scm,
gnu/packages/imagemagick.scm, gnu/packages/inkscape.scm,
gnu/packages/netpbm.scm, gnu/packages/pdf.scm, gnu/packages/plotutils.scm,
gnu/packages/qemu.scm, gnu/packages/qt.scm, gnu/packages/scheme.scm,
gnu/packages/sdl.scm, gnu/packages/slim.scm, gnu/packages/tcl.scm,
gnu/packages/texlive.scm, gnu/packages/video.scm, gnu/packages/xiph.scm,
gnu/packages/xorg.scm: Use (gnu packages image) module.
2014-06-25 08:39:02 -04:00
|
|
|
#:use-module (gnu packages image)
|
2015-12-20 17:24:24 -05:00
|
|
|
#:use-module (gnu packages ghostscript)
|
2015-01-19 15:37:30 -05:00
|
|
|
#:use-module (gnu packages guile)
|
2015-12-20 17:24:24 -05:00
|
|
|
#:use-module (gnu packages gl)
|
2015-01-19 15:37:30 -05:00
|
|
|
#:use-module (gnu packages gtk)
|
2015-12-20 17:24:24 -05:00
|
|
|
#:use-module (gnu packages maths)
|
|
|
|
#:use-module (gnu packages perl)
|
2015-01-19 15:37:30 -05:00
|
|
|
#:use-module (gnu packages pkg-config)
|
2015-12-20 17:24:24 -05:00
|
|
|
#:use-module (gnu packages python)
|
2020-01-16 11:00:53 -05:00
|
|
|
#:use-module (gnu packages python-xyz)
|
2015-12-20 17:24:24 -05:00
|
|
|
#:use-module (gnu packages readline)
|
2020-01-16 11:00:53 -05:00
|
|
|
#:use-module (gnu packages qt)
|
2015-12-20 17:24:24 -05:00
|
|
|
#:use-module (gnu packages texinfo)
|
2016-05-24 15:18:53 -04:00
|
|
|
#:use-module (gnu packages tex)
|
2015-03-09 16:03:17 -04:00
|
|
|
#:use-module (gnu packages compression)
|
2013-07-12 16:25:30 -04:00
|
|
|
#:use-module (gnu packages))
|
2013-05-21 18:33:14 -04:00
|
|
|
|
|
|
|
(define-public plotutils
|
|
|
|
(package
|
|
|
|
(name "plotutils")
|
|
|
|
(version "2.6")
|
|
|
|
(source (origin
|
|
|
|
(method url-fetch)
|
|
|
|
(uri (string-append "mirror://gnu/plotutils/plotutils-"
|
|
|
|
version ".tar.gz"))
|
|
|
|
(sha256
|
|
|
|
(base32
|
gnu: Use the 'patches' field of <origin>.
* gnu/packages/apr.scm,
gnu/packages/autotools.scm,
gnu/packages/avahi.scm,
gnu/packages/cdrom.scm,
gnu/packages/cmake.scm,
gnu/packages/cpio.scm,
gnu/packages/cross-base.scm,
gnu/packages/emacs.scm,
gnu/packages/flex.scm,
gnu/packages/fontutils.scm,
gnu/packages/glib.scm,
gnu/packages/grub.scm,
gnu/packages/guile.scm,
gnu/packages/idutils.scm,
gnu/packages/libevent.scm,
gnu/packages/linux.scm,
gnu/packages/mail.scm,
gnu/packages/make-bootstrap.scm,
gnu/packages/mp3.scm,
gnu/packages/oggvorbis.scm,
gnu/packages/pdf.scm,
gnu/packages/plotutils.scm,
gnu/packages/qemu.scm,
gnu/packages/recutils.scm,
gnu/packages/rush.scm,
gnu/packages/scheme.scm,
gnu/packages/system.scm,
gnu/packages/tcsh.scm,
gnu/packages/valgrind.scm,
gnu/packages/vpn.scm,
gnu/packages/w3m: Use the 'patches' field of <origin> instead of
adding a patch as input plus using #:patches.
2013-10-08 18:09:04 -04:00
|
|
|
"1arkyizn5wbgvbh53aziv3s6lmd3wm9lqzkhxb3hijlp1y124hjg"))
|
2015-01-15 09:04:45 -05:00
|
|
|
(modules '((guix build utils)))
|
|
|
|
(snippet
|
|
|
|
;; Force the use of libXaw7 instead of libXaw. When not doing
|
|
|
|
;; that, libplot.la ends up containing just "-lXaw" (without
|
|
|
|
;; "-L/path/to/Xaw"), due to the fact that there is no
|
|
|
|
;; libXaw.la, which forces us to propagate libXaw.
|
gnu: All snippets report errors using exceptions, else return #t.
* gnu/packages/admin.scm, gnu/packages/algebra.scm, gnu/packages/audio.scm,
gnu/packages/backup.scm, gnu/packages/base.scm,
gnu/packages/bioinformatics.scm, gnu/packages/cdrom.scm,
gnu/packages/chez.scm, gnu/packages/code.scm, gnu/packages/compression.scm,
gnu/packages/cross-base.scm, gnu/packages/crypto.scm, gnu/packages/cups.scm,
gnu/packages/databases.scm, gnu/packages/dns.scm, gnu/packages/emacs.scm,
gnu/packages/emulators.scm, gnu/packages/engineering.scm,
gnu/packages/enlightenment.scm, gnu/packages/fpga.scm,
gnu/packages/freedesktop.scm, gnu/packages/ftp.scm, gnu/packages/games.scm,
gnu/packages/gcc.scm, gnu/packages/geo.scm, gnu/packages/ghostscript.scm,
gnu/packages/gl.scm, gnu/packages/glib.scm, gnu/packages/gnome.scm,
gnu/packages/gnuzilla.scm, gnu/packages/graphics.scm, gnu/packages/gtk.scm,
gnu/packages/guile.scm, gnu/packages/irc.scm, gnu/packages/java.scm,
gnu/packages/kerberos.scm, gnu/packages/linux.scm, gnu/packages/lisp.scm,
gnu/packages/lxde.scm, gnu/packages/machine-learning.scm,
gnu/packages/mail.scm, gnu/packages/maths.scm, gnu/packages/messaging.scm,
gnu/packages/monitoring.scm, gnu/packages/mp3.scm, gnu/packages/music.scm,
gnu/packages/netpbm.scm, gnu/packages/networking.scm, gnu/packages/node.scm,
gnu/packages/nvi.scm, gnu/packages/ocaml.scm, gnu/packages/pdf.scm,
gnu/packages/perl.scm, gnu/packages/php.scm, gnu/packages/plotutils.scm,
gnu/packages/pretty-print.scm, gnu/packages/profiling.scm,
gnu/packages/pulseaudio.scm, gnu/packages/python-crypto.scm,
gnu/packages/python.scm, gnu/packages/qt.scm, gnu/packages/robotics.scm,
gnu/packages/sawfish.scm, gnu/packages/scanner.scm, gnu/packages/scheme.scm,
gnu/packages/scribus.scm, gnu/packages/sdl.scm,
gnu/packages/serialization.scm, gnu/packages/shells.scm,
gnu/packages/slang.scm, gnu/packages/smalltalk.scm, gnu/packages/ssh.scm,
gnu/packages/sync.scm, gnu/packages/syncthing.scm, gnu/packages/tbb.scm,
gnu/packages/terminals.scm, gnu/packages/texinfo.scm,
gnu/packages/text-editors.scm, gnu/packages/textutils.scm,
gnu/packages/tls.scm, gnu/packages/unrtf.scm,
gnu/packages/version-control.scm, gnu/packages/video.scm,
gnu/packages/vpn.scm, gnu/packages/web.scm, gnu/packages/wm.scm,
gnu/packages/wxwidgets.scm, gnu/packages/xdisorg.scm, gnu/packages/xorg.scm:
In all snippets, report errors using exceptions, or else return #t.
2018-03-16 07:47:34 -04:00
|
|
|
'(begin
|
|
|
|
(substitute* "configure"
|
|
|
|
(("-lXaw")
|
|
|
|
"-lXaw7"))
|
2020-01-24 23:13:46 -05:00
|
|
|
;; Use the `png_jmpbuf' accessor, as recommended since libpng
|
|
|
|
;; 1.4.0 (see:
|
|
|
|
;; http://www.libpng.org/pub/png/src/libpng-1.2.x-to-1.4.x-summary.txt).
|
|
|
|
(substitute* "libplot/z_write.c"
|
|
|
|
(("png_ptr->jmpbuf")
|
|
|
|
"png_jmpbuf (png_ptr)"))
|
2020-07-26 23:55:01 -04:00
|
|
|
#t))
|
|
|
|
(patches
|
|
|
|
;; The test suite fails on some architectures such as i686 (see:
|
|
|
|
;; https://lists.gnu.org/archive/html/bug-plotutils/2016-04/msg00002.html).
|
|
|
|
;; The following Debian patch works around it.
|
|
|
|
(search-patches "plotutils-spline-test.patch"))))
|
2013-05-21 18:33:14 -04:00
|
|
|
(build-system gnu-build-system)
|
2020-01-24 23:13:46 -05:00
|
|
|
(arguments
|
|
|
|
`(#:configure-flags (list "--enable-libplotter")))
|
2013-06-07 16:31:54 -04:00
|
|
|
(inputs `(("libpng" ,libpng)
|
|
|
|
("libx11" ,libx11)
|
2015-01-15 09:04:45 -05:00
|
|
|
("libxt" ,libxt)
|
|
|
|
("libxaw" ,libxaw)))
|
2020-01-24 23:13:46 -05:00
|
|
|
(home-page "https://www.gnu.org/software/plotutils/")
|
2013-05-21 18:33:14 -04:00
|
|
|
(synopsis "Plotting utilities and library")
|
|
|
|
(description
|
2020-01-24 23:13:46 -05:00
|
|
|
"GNU Plotutils is a package for plotting and working with 2D graphics.
|
|
|
|
It includes the C library @code{libplot} and the C++ @code{libplotter} library
|
|
|
|
for exporting 2D vector graphics in many file formats. It also has support
|
|
|
|
for 2D vector graphics animations. The package also contains command-line
|
|
|
|
programs for plotting scientific data.")
|
2015-03-09 16:03:17 -04:00
|
|
|
(license license:gpl2+)))
|
2015-01-19 15:37:30 -05:00
|
|
|
|
|
|
|
(define-public guile-charting
|
|
|
|
(package
|
|
|
|
(name "guile-charting")
|
|
|
|
(version "0.2.0")
|
|
|
|
(source (origin
|
|
|
|
(method url-fetch)
|
|
|
|
(uri (string-append "http://wingolog.org/pub/guile-charting/"
|
|
|
|
"guile-charting-" version ".tar.gz"))
|
|
|
|
(sha256
|
|
|
|
(base32
|
2019-04-16 08:30:34 -04:00
|
|
|
"0w5qiyv9v0ip5li22x762bm48g8xnw281w66iyw094zdw611pb2m"))
|
|
|
|
(modules '((guix build utils)))
|
|
|
|
(snippet
|
|
|
|
'(begin
|
2020-01-27 17:01:59 -05:00
|
|
|
;; Allow builds with Guile 3.0.
|
|
|
|
(substitute* "configure"
|
|
|
|
(("2\\.2 2\\.0")
|
|
|
|
"3.0 2.2 2.0"))
|
|
|
|
|
2019-04-16 08:30:34 -04:00
|
|
|
;; By default, .go files would be installed to
|
|
|
|
;; $libdir/…/ccache instead of $libdir/…/site-ccache. Fix
|
|
|
|
;; that.
|
|
|
|
(substitute* (find-files "." "^Makefile\\.in$")
|
|
|
|
(("/ccache") "/site-ccache"))
|
|
|
|
#t))))
|
2015-01-19 15:37:30 -05:00
|
|
|
(build-system gnu-build-system)
|
|
|
|
(native-inputs `(("pkg-config" ,pkg-config)))
|
2020-02-22 18:20:30 -05:00
|
|
|
(inputs `(("guile" ,guile-3.0)))
|
2015-01-19 15:37:30 -05:00
|
|
|
(propagated-inputs `(("guile-cairo" ,guile-cairo)))
|
|
|
|
(home-page "http://wingolog.org/software/guile-charting/")
|
|
|
|
(synopsis "Create charts and graphs in Guile")
|
|
|
|
(description
|
|
|
|
"Guile-Charting is a Guile Scheme library to create bar charts and graphs
|
|
|
|
using the Cairo drawing library.")
|
2015-03-09 16:03:17 -04:00
|
|
|
(license license:lgpl2.1+)))
|
|
|
|
|
2020-02-22 18:20:30 -05:00
|
|
|
(define-public guile2.2-charting
|
2020-01-27 17:01:59 -05:00
|
|
|
(package
|
|
|
|
(inherit guile-charting)
|
2020-02-22 18:20:30 -05:00
|
|
|
(name "guile2.2-charting")
|
|
|
|
(inputs `(("guile" ,guile-2.2)))
|
|
|
|
(propagated-inputs `(("guile-cairo" ,guile2.2-cairo)))))
|
|
|
|
|
|
|
|
(define-public guile3.0-charting
|
|
|
|
(deprecated-package "guile3.0-charting" guile-charting))
|
2020-01-27 17:01:59 -05:00
|
|
|
|
2015-03-09 16:03:17 -04:00
|
|
|
(define-public ploticus
|
|
|
|
(package
|
|
|
|
(name "ploticus")
|
|
|
|
(version "2.42")
|
|
|
|
(source (origin
|
|
|
|
(method url-fetch)
|
|
|
|
(uri (string-append "mirror://sourceforge/ploticus/ploticus/"
|
|
|
|
version "/ploticus242_src.tar.gz"))
|
|
|
|
(sha256
|
|
|
|
(base32
|
|
|
|
"1c70cvfvgjh83hj1x21130wb9qfr2rc0x47cxy9kl805yjwy8a9z"))
|
|
|
|
(modules '((guix build utils)))
|
|
|
|
(snippet
|
|
|
|
;; Install binaries in the right place.
|
gnu: All snippets report errors using exceptions, else return #t.
* gnu/packages/admin.scm, gnu/packages/algebra.scm, gnu/packages/audio.scm,
gnu/packages/backup.scm, gnu/packages/base.scm,
gnu/packages/bioinformatics.scm, gnu/packages/cdrom.scm,
gnu/packages/chez.scm, gnu/packages/code.scm, gnu/packages/compression.scm,
gnu/packages/cross-base.scm, gnu/packages/crypto.scm, gnu/packages/cups.scm,
gnu/packages/databases.scm, gnu/packages/dns.scm, gnu/packages/emacs.scm,
gnu/packages/emulators.scm, gnu/packages/engineering.scm,
gnu/packages/enlightenment.scm, gnu/packages/fpga.scm,
gnu/packages/freedesktop.scm, gnu/packages/ftp.scm, gnu/packages/games.scm,
gnu/packages/gcc.scm, gnu/packages/geo.scm, gnu/packages/ghostscript.scm,
gnu/packages/gl.scm, gnu/packages/glib.scm, gnu/packages/gnome.scm,
gnu/packages/gnuzilla.scm, gnu/packages/graphics.scm, gnu/packages/gtk.scm,
gnu/packages/guile.scm, gnu/packages/irc.scm, gnu/packages/java.scm,
gnu/packages/kerberos.scm, gnu/packages/linux.scm, gnu/packages/lisp.scm,
gnu/packages/lxde.scm, gnu/packages/machine-learning.scm,
gnu/packages/mail.scm, gnu/packages/maths.scm, gnu/packages/messaging.scm,
gnu/packages/monitoring.scm, gnu/packages/mp3.scm, gnu/packages/music.scm,
gnu/packages/netpbm.scm, gnu/packages/networking.scm, gnu/packages/node.scm,
gnu/packages/nvi.scm, gnu/packages/ocaml.scm, gnu/packages/pdf.scm,
gnu/packages/perl.scm, gnu/packages/php.scm, gnu/packages/plotutils.scm,
gnu/packages/pretty-print.scm, gnu/packages/profiling.scm,
gnu/packages/pulseaudio.scm, gnu/packages/python-crypto.scm,
gnu/packages/python.scm, gnu/packages/qt.scm, gnu/packages/robotics.scm,
gnu/packages/sawfish.scm, gnu/packages/scanner.scm, gnu/packages/scheme.scm,
gnu/packages/scribus.scm, gnu/packages/sdl.scm,
gnu/packages/serialization.scm, gnu/packages/shells.scm,
gnu/packages/slang.scm, gnu/packages/smalltalk.scm, gnu/packages/ssh.scm,
gnu/packages/sync.scm, gnu/packages/syncthing.scm, gnu/packages/tbb.scm,
gnu/packages/terminals.scm, gnu/packages/texinfo.scm,
gnu/packages/text-editors.scm, gnu/packages/textutils.scm,
gnu/packages/tls.scm, gnu/packages/unrtf.scm,
gnu/packages/version-control.scm, gnu/packages/video.scm,
gnu/packages/vpn.scm, gnu/packages/web.scm, gnu/packages/wm.scm,
gnu/packages/wxwidgets.scm, gnu/packages/xdisorg.scm, gnu/packages/xorg.scm:
In all snippets, report errors using exceptions, or else return #t.
2018-03-16 07:47:34 -04:00
|
|
|
'(begin
|
|
|
|
(substitute* "src/Makefile"
|
|
|
|
(("INSTALLBIN =.*$")
|
|
|
|
(string-append "INSTALLBIN = $(out)/bin")))
|
|
|
|
#t))))
|
2015-03-09 16:03:17 -04:00
|
|
|
(build-system gnu-build-system)
|
|
|
|
(arguments
|
|
|
|
'(#:tests? #f
|
|
|
|
#:phases
|
|
|
|
(modify-phases %standard-phases
|
utils: 'modify-phases' no longer introduces quotes.
Suggested by Taylan Ulrich Bayırlı/Kammer <taylanbayirli@gmail.com>.
* guix/build/utils.scm (%modify-phases): Remove quotes.
* guix/build/cmake-build-system.scm (%standard-phases): Adjust
accordingly.
* guix/build/glib-or-gtk-build-system.scm (%standard-phases): Likewise.
* guix/build/gnu-dist.scm (%dist-phases): Likewise.
* guix/build/perl-build-system.scm (%standard-phases): Likewise.
* guix/build/python-build-system.scm (%standard-phases): Likewise.
* guix/build/ruby-build-system.scm (%standard-phases): Likewise.
* guix/build/waf-build-system.scm (%standard-phases): Likewise.
* gnu/packages/bash.scm, gnu/packages/code.scm, gnu/packages/gl.scm,
gnu/packages/gnome.scm, gnu/packages/graphics.scm,
gnu/packages/image.scm, gnu/packages/key-mon.scm,
gnu/packages/ocr.scm, gnu/packages/plotutils.scm,
gnu/packages/search.scm, gnu/packages/video.scm: Likewise.
2015-03-31 16:43:01 -04:00
|
|
|
(replace 'configure (lambda _ (chdir "src")))
|
|
|
|
(add-before 'install 'make-target-directories
|
2015-03-09 16:03:17 -04:00
|
|
|
(lambda* (#:key outputs #:allow-other-keys)
|
|
|
|
(let ((out (assoc-ref outputs "out")))
|
|
|
|
(mkdir-p (string-append out "/bin"))
|
|
|
|
#t)))
|
utils: 'modify-phases' no longer introduces quotes.
Suggested by Taylan Ulrich Bayırlı/Kammer <taylanbayirli@gmail.com>.
* guix/build/utils.scm (%modify-phases): Remove quotes.
* guix/build/cmake-build-system.scm (%standard-phases): Adjust
accordingly.
* guix/build/glib-or-gtk-build-system.scm (%standard-phases): Likewise.
* guix/build/gnu-dist.scm (%dist-phases): Likewise.
* guix/build/perl-build-system.scm (%standard-phases): Likewise.
* guix/build/python-build-system.scm (%standard-phases): Likewise.
* guix/build/ruby-build-system.scm (%standard-phases): Likewise.
* guix/build/waf-build-system.scm (%standard-phases): Likewise.
* gnu/packages/bash.scm, gnu/packages/code.scm, gnu/packages/gl.scm,
gnu/packages/gnome.scm, gnu/packages/graphics.scm,
gnu/packages/image.scm, gnu/packages/key-mon.scm,
gnu/packages/ocr.scm, gnu/packages/plotutils.scm,
gnu/packages/search.scm, gnu/packages/video.scm: Likewise.
2015-03-31 16:43:01 -04:00
|
|
|
(add-after 'install 'install-prefabs
|
2015-03-09 16:03:17 -04:00
|
|
|
(lambda* (#:key outputs #:allow-other-keys)
|
|
|
|
(let* ((out (assoc-ref outputs "out"))
|
|
|
|
(dir (string-append out
|
|
|
|
"/share/ploticus/prefabs"))
|
|
|
|
(bin (string-append out "/bin")))
|
|
|
|
(mkdir-p dir)
|
|
|
|
|
|
|
|
;; Install "prefabs".
|
|
|
|
(for-each (lambda (file)
|
|
|
|
(let ((target
|
|
|
|
(string-append dir "/"
|
|
|
|
(basename file))))
|
|
|
|
(copy-file file target)))
|
|
|
|
(find-files "../prefabs" "."))
|
|
|
|
|
|
|
|
;; Allow them to be found.
|
|
|
|
(wrap-program (string-append bin "/pl")
|
|
|
|
`("PLOTICUS_PREFABS" ":" = (,dir)))))))))
|
|
|
|
(inputs
|
|
|
|
`(("libpng" ,libpng)
|
|
|
|
("libx11" ,libx11)
|
|
|
|
("zlib" ,zlib)))
|
|
|
|
(home-page "http://ploticus.sourceforge.net/")
|
|
|
|
(synopsis "Command-line tool for producing plots and charts")
|
|
|
|
(description
|
|
|
|
"Ploticus is a non-interactive software package for producing plots,
|
|
|
|
charts, and graphics from data. Ploticus is good for automated or
|
|
|
|
just-in-time graph generation, handles date and time data nicely, and has
|
|
|
|
basic statistical capabilities. It allows significant user control over
|
|
|
|
colors, styles, options and details.")
|
|
|
|
(license license:gpl2+)))
|
2015-12-20 17:24:24 -05:00
|
|
|
|
|
|
|
(define-public asymptote
|
|
|
|
(package
|
|
|
|
(name "asymptote")
|
2020-08-06 10:48:40 -04:00
|
|
|
(version "2.67")
|
2020-03-10 17:01:00 -04:00
|
|
|
(source
|
|
|
|
(origin
|
|
|
|
(method url-fetch)
|
|
|
|
(uri (string-append "mirror://sourceforge/asymptote/"
|
|
|
|
version "/asymptote-" version ".src.tgz"))
|
|
|
|
(sha256
|
2020-08-06 10:48:40 -04:00
|
|
|
(base32 "16rdwxal27fikzfqsm2sb8ji78whpxl98rdyyp0ky2qlh55mf7la"))))
|
2015-12-20 17:24:24 -05:00
|
|
|
(build-system gnu-build-system)
|
|
|
|
;; Note: The 'asy' binary retains a reference to docdir for use with its
|
|
|
|
;; "help" command in interactive mode, so adding a "doc" output is not
|
|
|
|
;; currently useful.
|
|
|
|
(native-inputs
|
2019-04-03 17:34:58 -04:00
|
|
|
`(("emacs" ,emacs-minimal)
|
|
|
|
("gs" ,ghostscript) ;For tests
|
|
|
|
("perl" ,perl)
|
2020-01-16 11:00:53 -05:00
|
|
|
("texinfo" ,texinfo) ;For generating documentation
|
2018-08-13 16:41:49 -04:00
|
|
|
;; For the manual and the tests.
|
2019-07-15 13:30:57 -04:00
|
|
|
("texlive" ,(texlive-union (list texlive-amsfonts
|
2019-09-24 04:23:52 -04:00
|
|
|
texlive-epsf
|
2020-05-08 18:42:19 -04:00
|
|
|
texlive-etoolbox
|
2019-09-24 04:23:52 -04:00
|
|
|
texlive-latex-base
|
2018-08-13 16:41:49 -04:00
|
|
|
texlive-latex-geometry
|
|
|
|
texlive-latex-graphics
|
2019-03-01 06:43:46 -05:00
|
|
|
texlive-latex-oberdiek ; for ifluatex
|
2018-08-13 16:41:49 -04:00
|
|
|
texlive-latex-parskip
|
2019-04-03 17:34:58 -04:00
|
|
|
texlive-tex-texinfo)))))
|
2015-12-20 17:24:24 -05:00
|
|
|
(inputs
|
|
|
|
`(("fftw" ,fftw)
|
|
|
|
("freeglut" ,freeglut)
|
2019-04-03 17:34:58 -04:00
|
|
|
("glew" ,glew)
|
|
|
|
("glm" ,glm)
|
2015-12-20 17:24:24 -05:00
|
|
|
("gsl" ,gsl)
|
2016-01-13 11:50:17 -05:00
|
|
|
("libgc" ,libgc)
|
2019-04-03 17:34:58 -04:00
|
|
|
("python" ,python)
|
2020-01-16 11:00:53 -05:00
|
|
|
("python-cson" ,python-cson)
|
2020-01-16 16:39:23 -05:00
|
|
|
("python-numpy" ,python-numpy)
|
2020-01-16 11:00:53 -05:00
|
|
|
("python-pyqt" ,python-pyqt)
|
2015-12-20 17:24:24 -05:00
|
|
|
("readline" ,readline)
|
|
|
|
("zlib" ,zlib)))
|
|
|
|
(arguments
|
2016-05-03 18:43:36 -04:00
|
|
|
`(#:modules ((guix build emacs-utils)
|
|
|
|
(guix build gnu-build-system)
|
|
|
|
(guix build utils)
|
|
|
|
(srfi srfi-26))
|
|
|
|
#:imported-modules (,@%gnu-build-system-modules
|
|
|
|
(guix build emacs-utils))
|
|
|
|
#:configure-flags
|
2015-12-20 17:24:24 -05:00
|
|
|
(list (string-append "--enable-gc=" (assoc-ref %build-inputs "libgc"))
|
|
|
|
(string-append "--with-latex="
|
|
|
|
(assoc-ref %outputs "out")
|
|
|
|
"/share/texmf/tex/latex")
|
|
|
|
(string-append "--with-context="
|
|
|
|
(assoc-ref %outputs "out")
|
|
|
|
"/share/texmf/tex/context/third"))
|
2016-04-30 05:43:35 -04:00
|
|
|
#:phases
|
|
|
|
(modify-phases %standard-phases
|
2019-04-03 17:34:58 -04:00
|
|
|
(add-after 'unpack 'fix-build
|
|
|
|
;; XXX: Build process complains about missing "config.h"
|
|
|
|
;; and "primitives.h" files.
|
|
|
|
(lambda _
|
|
|
|
(substitute* (find-files "." "\\.in$")
|
|
|
|
(("#include <primitives.h>") "#include \"primitives.h\""))
|
|
|
|
(invoke "touch" "prc/config.h")))
|
2019-04-04 13:49:38 -04:00
|
|
|
(add-after 'unpack 'move-info-location
|
2019-11-01 06:22:05 -04:00
|
|
|
;; Build process installs info file in the unusual
|
2019-04-04 13:49:38 -04:00
|
|
|
;; "%out/share/info/asymptote/" location. Move it to
|
|
|
|
;; "%out/share/info/" so it appears in the top-level directory.
|
|
|
|
(lambda _
|
|
|
|
(substitute* "doc/png/Makefile.in"
|
|
|
|
(("(\\$\\(infodir\\))/asymptote" _ infodir) infodir))
|
2019-04-04 14:16:40 -04:00
|
|
|
(substitute* "doc/asymptote.texi"
|
|
|
|
(("asymptote/asymptote") "asymptote"))
|
2019-04-04 13:49:38 -04:00
|
|
|
#t))
|
2016-04-30 05:43:35 -04:00
|
|
|
(add-before 'build 'patch-pdf-viewer
|
|
|
|
(lambda _
|
2016-05-03 18:43:36 -04:00
|
|
|
;; Default to a free pdf viewer.
|
2016-04-30 05:43:35 -04:00
|
|
|
(substitute* "settings.cc"
|
|
|
|
(("defaultPDFViewer=\"acroread\"")
|
2016-05-03 18:43:36 -04:00
|
|
|
"defaultPDFViewer=\"gv\""))
|
|
|
|
#t))
|
2016-04-30 05:43:35 -04:00
|
|
|
(add-before 'check 'set-HOME
|
|
|
|
;; Some tests require write access to $HOME, otherwise leading to
|
|
|
|
;; "failed to create directory /homeless-shelter/.asy" error.
|
|
|
|
(lambda _
|
2016-05-03 18:43:36 -04:00
|
|
|
(setenv "HOME" "/tmp")
|
|
|
|
#t))
|
|
|
|
(add-after 'install 'install-Emacs-data
|
|
|
|
(lambda* (#:key outputs #:allow-other-keys)
|
|
|
|
;; Install related Emacs libraries into an appropriate location.
|
|
|
|
(let* ((out (assoc-ref outputs "out"))
|
|
|
|
(lisp-dir (string-append out "/share/emacs/site-lisp")))
|
|
|
|
(for-each (cut install-file <> lisp-dir)
|
|
|
|
(find-files "." "\\.el$"))
|
|
|
|
(emacs-generate-autoloads ,name lisp-dir))
|
2020-01-16 11:00:53 -05:00
|
|
|
#t))
|
|
|
|
(add-after 'install-Emacs-data 'wrap-python-script
|
|
|
|
(lambda* (#:key inputs outputs #:allow-other-keys)
|
|
|
|
;; Make sure 'xasy' runs with the correct PYTHONPATH.
|
|
|
|
(let* ((out (assoc-ref outputs "out"))
|
|
|
|
(path (getenv "PYTHONPATH")))
|
|
|
|
(wrap-program (string-append out "/share/asymptote/GUI/xasy.py")
|
|
|
|
`("PYTHONPATH" ":" prefix (,path))))
|
2016-05-03 18:43:36 -04:00
|
|
|
#t)))))
|
2015-12-20 17:24:24 -05:00
|
|
|
(home-page "http://asymptote.sourceforge.net")
|
|
|
|
(synopsis "Script-based vector graphics language")
|
|
|
|
(description
|
|
|
|
"Asymptote is a powerful descriptive vector graphics language for
|
|
|
|
technical drawing, inspired by MetaPost but with an improved C++-like syntax.
|
|
|
|
Asymptote provides for figures the same high-quality level of typesetting that
|
|
|
|
LaTeX does for scientific text.")
|
|
|
|
;; Most source files do not contain license statements, but the README
|
|
|
|
;; contains: "All source files in the Asymptote project, unless explicitly
|
|
|
|
;; noted otherwise, are released under version 3 (or later) of the GNU
|
|
|
|
;; Lesser General Public License"
|
|
|
|
(license license:lgpl3+)))
|