2013-01-24 17:02:38 -05:00
|
|
|
;;; GNU Guix --- Functional package management for GNU
|
2016-03-12 03:56:27 -05:00
|
|
|
;;; Copyright © 2013, 2015, 2016 Andreas Enge <andreas@enge.fr>
|
2014-12-19 13:45:46 -05:00
|
|
|
;;; Copyright © 2014 Mark H Weaver <mhw@netris.org>
|
2016-07-04 07:23:23 -04:00
|
|
|
;;; Copyright © 2014, 2015, 2016 Ricardo Wurmus <rekado@elephly.net>
|
2015-03-01 18:31:05 -05:00
|
|
|
;;; Copyright © 2015 Paul van der Walt <paul@denknerd.org>
|
2016-05-22 19:47:11 -04:00
|
|
|
;;; Copyright © 2016 Roel Janssen <roel@gnu.org>
|
2016-08-07 05:58:42 -04:00
|
|
|
;;; Coypright © 2016 ng0 <ng0@we.make.ritual.n0.is>
|
2016-08-15 04:42:52 -04:00
|
|
|
;;; Coypright © 2016 Efraim Flashner <efraim@flashner.co.il>
|
2017-01-12 13:06:55 -05:00
|
|
|
;;; Coypright © 2016, 2017 Marius Bakke <mbakke@fastmail.com>
|
2016-09-11 18:57:46 -04:00
|
|
|
;;; Coypright © 2016 Ludovic Courtès <ludo@gnu.org>
|
2016-10-15 08:40:30 -04:00
|
|
|
;;; Coypright © 2016 Julien Lepiller <julien@lepiller.eu>
|
2016-10-30 07:07:28 -04:00
|
|
|
;;; Copyright © 2016 Arun Isaac <arunisaac@systemreboot.net>
|
2017-01-12 13:06:55 -05:00
|
|
|
;;; Copyright © 2017 Leo Famulari <leo@famulari.name>
|
2013-01-24 17:02:38 -05: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 pdf)
|
Use #:prefix instead of #:renamer with 'symbol-prefix-proc'.
* gnu/packages/abiword.scm, gnu/packages/admin.scm, gnu/packages/aidc.scm,
gnu/packages/backup.scm, gnu/packages/bittorrent.scm,
gnu/packages/boost.scm, gnu/packages/compression.scm,
gnu/packages/cryptsetup.scm, gnu/packages/curl.scm,
gnu/packages/cyrus-sasl.scm, gnu/packages/dc.scm, gnu/packages/emacs.scm,
gnu/packages/fonts.scm, gnu/packages/fontutils.scm, gnu/packages/geeqie.scm,
gnu/packages/ghostscript.scm, gnu/packages/gimp.scm,
gnu/packages/gkrellm.scm, gnu/packages/gl.scm, gnu/packages/glib.scm,
gnu/packages/gnome.scm, gnu/packages/gnunet.scm, gnu/packages/gnupg.scm,
gnu/packages/gnutls.scm, gnu/packages/gnuzilla.scm, gnu/packages/gsasl.scm,
gnu/packages/gtk.scm, gnu/packages/gv.scm, gnu/packages/image.scm,
gnu/packages/indent.scm, gnu/packages/inkscape.scm,
gnu/packages/lesstif.scm, gnu/packages/links.scm, gnu/packages/lisp.scm,
gnu/packages/lsh.scm, gnu/packages/lsof.scm, gnu/packages/maths.scm,
gnu/packages/mp3.scm, gnu/packages/openssl.scm, gnu/packages/ots.scm,
gnu/packages/pciutils.scm, gnu/packages/pcre.scm, gnu/packages/pdf.scm,
gnu/packages/pulseaudio.scm, gnu/packages/python.scm, gnu/packages/slim.scm,
gnu/packages/ssh.scm, gnu/packages/texlive.scm, gnu/packages/vim.scm,
gnu/packages/vpn.scm, gnu/packages/web.scm, gnu/packages/wv.scm,
gnu/packages/xiph.scm, gnu/packages/xml.scm, gnu/packages/xorg.scm,
gnu/packages/yasm.scm, gnu/packages/zip.scm,
guix/build/cmake-build-system.scm, guix/build/perl-build-system.scm,
guix/build/python-build-system.scm, guix/download.scm: Replaces uses of
#:renamer and 'symbol-prefix-proc' with #:prefix.
2014-09-23 16:44:22 -04:00
|
|
|
#:use-module ((guix licenses) #:prefix license:)
|
2013-01-24 17:02:38 -05:00
|
|
|
#:use-module (guix packages)
|
|
|
|
#:use-module (guix download)
|
2016-08-21 18:47:16 -04:00
|
|
|
#:use-module (guix utils)
|
2013-01-24 17:02:38 -05:00
|
|
|
#:use-module (guix build-system gnu)
|
2014-07-02 03:50:04 -04:00
|
|
|
#:use-module (guix build-system cmake)
|
2015-08-26 17:23:31 -04:00
|
|
|
#:use-module (guix build-system python)
|
2016-09-11 18:57:46 -04:00
|
|
|
#:use-module (guix build-system trivial)
|
2013-01-24 17:02:38 -05:00
|
|
|
#:use-module (gnu packages)
|
2016-07-04 07:23:23 -04:00
|
|
|
#:use-module (gnu packages autotools)
|
2016-09-11 18:57:46 -04:00
|
|
|
#:use-module (gnu packages base)
|
|
|
|
#:use-module (gnu packages bash)
|
2013-01-24 17:02:38 -05:00
|
|
|
#:use-module (gnu packages compression)
|
2013-02-12 07:19:26 -05:00
|
|
|
#:use-module (gnu packages fontutils)
|
2016-09-11 18:57:46 -04:00
|
|
|
#:use-module (gnu packages game-development)
|
2013-03-31 11:25:11 -04:00
|
|
|
#:use-module (gnu packages ghostscript)
|
2015-03-01 18:31:05 -05:00
|
|
|
#:use-module (gnu packages databases)
|
2015-03-01 18:33:31 -05:00
|
|
|
#:use-module (gnu packages djvu)
|
2015-03-01 18:31:05 -05:00
|
|
|
#:use-module (gnu packages gettext)
|
|
|
|
#:use-module (gnu packages backup)
|
2013-03-31 11:25:11 -04:00
|
|
|
#:use-module (gnu packages lesstif)
|
2016-10-15 08:40:30 -04:00
|
|
|
#:use-module (gnu packages linux)
|
|
|
|
#:use-module (gnu packages xdisorg)
|
|
|
|
#:use-module (gnu packages imagemagick)
|
|
|
|
#:use-module (gnu packages gl)
|
|
|
|
#:use-module (gnu packages photo)
|
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)
|
2013-03-31 11:25:11 -04:00
|
|
|
#:use-module (gnu packages pkg-config)
|
2015-08-26 17:22:29 -04:00
|
|
|
#:use-module (gnu packages qt)
|
2013-10-13 16:49:23 -04:00
|
|
|
#:use-module (gnu packages xorg)
|
2015-02-24 14:09:24 -05:00
|
|
|
#:use-module (gnu packages gnome)
|
2013-10-13 16:49:23 -04:00
|
|
|
#:use-module (gnu packages glib)
|
|
|
|
#:use-module (gnu packages gtk)
|
2014-07-02 03:50:04 -04:00
|
|
|
#:use-module (gnu packages lua)
|
2014-09-15 02:03:03 -04:00
|
|
|
#:use-module (gnu packages curl)
|
2015-01-07 11:49:00 -05:00
|
|
|
#:use-module (gnu packages pcre)
|
|
|
|
#:use-module (gnu packages perl)
|
2016-08-14 11:47:33 -04:00
|
|
|
#:use-module (gnu packages python)
|
2016-09-11 18:57:46 -04:00
|
|
|
#:use-module (gnu packages sdl)
|
gnu: Move content of openssl module into tls module.
* gnu/packages/openssl.scm (openssl, perl-net-ssleay): Move to...
* gnu/packages/tls.scm: ...here.
* gnu/packages/openssl.scm: Delete file.
* gnu-system.am (GNU_SYSTEM_MODULES): Unregister deleted file.
* gnu/packages/{admin.scm, bittorrent.scm, certs.scm, ci.scm,
cyrus-sasl.scm, databases.scm, dns.scm, ebook.scm, enlightenment.scm,
gnunet.scm, libreoffice.scm, links.scm, mail.scm, messaging.scm,
networking.scm, ntp.scm, openldap.scm, package-management.scm, pdf.scm,
python.scm, qt.scm, rdesktop.scm, rdf.scm, ruby.scm, ssh.scm,
synergy.scm, tor.scm, version-control.scm, video.scm, vpn.scm,
w3m.scm, web.scm, weechat.scm, xiph.scm}: Adapt module import.
2015-07-05 12:27:24 -04:00
|
|
|
#:use-module (gnu packages tls)
|
2013-10-13 16:49:23 -04:00
|
|
|
#:use-module (srfi srfi-1))
|
2013-01-24 17:02:38 -05:00
|
|
|
|
|
|
|
(define-public poppler
|
|
|
|
(package
|
|
|
|
(name "poppler")
|
2016-12-25 00:42:20 -05:00
|
|
|
(version "0.50.0")
|
2013-01-24 17:02:38 -05:00
|
|
|
(source (origin
|
|
|
|
(method url-fetch)
|
2016-02-19 08:23:38 -05:00
|
|
|
(uri (string-append "https://poppler.freedesktop.org/poppler-"
|
2014-12-19 13:45:46 -05:00
|
|
|
version ".tar.xz"))
|
2016-04-27 09:51:32 -04:00
|
|
|
(sha256
|
|
|
|
(base32
|
2016-12-25 00:42:20 -05:00
|
|
|
"0dmwnh59m75vhii6dw63x8l0qa0ha733pb8bdqzr7lw9nwc37jf9"))))
|
2013-01-24 17:02:38 -05:00
|
|
|
(build-system gnu-build-system)
|
2016-04-27 09:51:32 -04:00
|
|
|
;; FIXME:
|
2013-03-24 15:23:15 -04:00
|
|
|
;; use libcurl: no
|
2013-01-24 17:02:38 -05:00
|
|
|
(inputs `(("fontconfig" ,fontconfig)
|
|
|
|
("freetype" ,freetype)
|
2015-10-15 10:08:51 -04:00
|
|
|
("libjpeg" ,libjpeg)
|
2013-03-24 15:23:15 -04:00
|
|
|
("libpng" ,libpng)
|
2013-01-24 17:02:38 -05:00
|
|
|
("libtiff" ,libtiff)
|
2015-01-07 11:43:18 -05:00
|
|
|
("lcms" ,lcms)
|
2016-12-25 00:42:20 -05:00
|
|
|
("openjpeg-1" ,openjpeg-1) ; prefers openjpeg-1
|
2013-10-13 16:49:23 -04:00
|
|
|
("zlib" ,zlib)
|
|
|
|
|
|
|
|
;; To build poppler-glib (as needed by Evince), we need Cairo and
|
|
|
|
;; GLib. But of course, that Cairo must not depend on Poppler.
|
|
|
|
("cairo" ,(package (inherit cairo)
|
|
|
|
(inputs (alist-delete "poppler"
|
|
|
|
(package-inputs cairo)))))
|
|
|
|
("glib" ,glib)))
|
gnu: Move numerous "inputs" which should be "native-inputs".
* gnu/packages/avahi.scm, gnu/packages/cdrom.scm, gnu/packages/cryptsetup.scm,
gnu/packages/curl.scm, gnu/packages/emacs.scm, gnu/packages/fontutils.scm,
gnu/packages/gdb.scm, gnu/packages/geeqie.scm, gnu/packages/ghostscript.scm,
gnu/packages/glib.scm, gnu/packages/gnome.scm, gnu/packages/gnunet.scm,
gnu/packages/gnupg.scm, gnu/packages/gnuzilla.scm, gnu/packages/graphviz.scm,
gnu/packages/groff.scm, gnu/packages/gstreamer.scm, gnu/packages/gtk.scm,
gnu/packages/gv.scm, gnu/packages/imagemagick.scm, gnu/packages/irssi.scm,
gnu/packages/kde.scm, gnu/packages/libcanberra.scm, gnu/packages/libtiff.scm,
gnu/packages/linux.scm, gnu/packages/lvm.scm, gnu/packages/mp3.scm,
gnu/packages/netpbm.scm, gnu/packages/parted.scm, gnu/packages/pdf.scm,
gnu/packages/pulseaudio.scm, gnu/packages/qemu.scm, gnu/packages/qt.scm,
gnu/packages/ratpoison.scm, gnu/packages/rdf.scm, gnu/packages/slim.scm,
gnu/packages/texlive.scm, gnu/packages/version-control.scm,
gnu/packages/video.scm, gnu/packages/vpn.scm, gnu/packages/w3m.scm,
gnu/packages/xml.scm, gnu/packages/xnee.scm, gnu/packages/xorg.scm,
gnu/packages/zip.scm: Move some build-time dependencies from `inputs' to
`native-inputs'.
Signed-off-by: Ludovic Courtès <ludo@gnu.org>
2013-12-15 06:01:56 -05:00
|
|
|
(native-inputs
|
gnu: glib: Add "bin" output.
Fixes <http://bugs.gnu.org/17853>.
* gnu/packages/glib.scm (glib)[outputs]: Add "bin".
(gobject-introspection)[native-inputs]: New field.
* gnu/packages/avahi.scm (avahi)[native-inputs]: Add glib:bin.
* gnu/packages/gnome.scm (brasero, libgnome-keyring, evince,
gsettings-desktop-schemas, libnotify, gtkglext): Likewise.
* gnu/packages/gstreamer.scm (gstreamer, gst-plugins-base,
gst-plugins-base-0.10): Likewise.
* gnu/packages/gtk.scm (atk, pango, gdk-pixbuf, gtk+-2, gtk+):
Likewise.
* gnu/packages/linux.scm (udev): Likewise.
* gnu/packages/pdf.scm (poppler): Likewise.
2014-06-30 12:05:57 -04:00
|
|
|
`(("pkg-config" ,pkg-config)
|
2016-04-27 09:51:32 -04:00
|
|
|
("glib" ,glib "bin") ; glib-mkenums, etc.
|
|
|
|
("gobject-introspection" ,gobject-introspection)))
|
2013-01-24 17:02:38 -05:00
|
|
|
(arguments
|
|
|
|
`(#:tests? #f ; no test data provided with the tarball
|
2013-03-24 15:23:15 -04:00
|
|
|
#:configure-flags
|
2015-10-15 10:08:51 -04:00
|
|
|
'("--enable-xpdf-headers" ; to install header files
|
2016-05-10 03:03:00 -04:00
|
|
|
"--enable-zlib"
|
|
|
|
|
|
|
|
;; Saves 8 MiB of .a files.
|
|
|
|
"--disable-static")
|
2015-01-07 11:43:18 -05:00
|
|
|
#:phases
|
2016-08-15 04:43:57 -04:00
|
|
|
(modify-phases %standard-phases
|
|
|
|
(add-before 'configure 'setenv
|
|
|
|
(lambda _
|
|
|
|
(setenv "CPATH"
|
|
|
|
(string-append (assoc-ref %build-inputs "openjpeg-1")
|
|
|
|
"/include/openjpeg-1.5"
|
2016-12-25 00:42:20 -05:00
|
|
|
":" (or (getenv "CPATH") "")))
|
|
|
|
#t)))))
|
gnu: Some cleanup based on lint checkers.
* gnu/packages/admin.scm, gnu/packages/aidc.scm, gnu/packages/algebra.scm,
gnu/packages/apr.scm, gnu/packages/avahi.scm, gnu/packages/backup.scm,
gnu/packages/base.scm, gnu/packages/calcurse.scm, gnu/packages/cdrom.scm,
gnu/packages/check.scm, gnu/packages/compression.scm, gnu/packages/cook.scm,
gnu/packages/crypto.scm, gnu/packages/cryptsetup.scm, gnu/packages/curl.scm,
gnu/packages/cyrus-sasl.scm, gnu/packages/databases.scm,
gnu/packages/doxygen.scm, gnu/packages/dwm.scm, gnu/packages/elf.scm,
gnu/packages/emacs.scm, gnu/packages/feh.scm, gnu/packages/file.scm,
gnu/packages/fish.scm, gnu/packages/flex.scm, gnu/packages/fltk.scm,
gnu/packages/fontutils.scm, gnu/packages/games.scm, gnu/packages/gcal.scm,
gnu/packages/gcc.scm, gnu/packages/geeqie.scm, gnu/packages/ghostscript.scm,
gnu/packages/gimp.scm, gnu/packages/gl.scm, gnu/packages/glib.scm,
gnu/packages/gnome.scm, gnu/packages/gnunet.scm, gnu/packages/gnupg.scm,
gnu/packages/gperf.scm, gnu/packages/grub.scm, gnu/packages/gsasl.scm,
gnu/packages/gtk.scm, gnu/packages/guile-wm.scm, gnu/packages/guile.scm,
gnu/packages/hurd.scm, gnu/packages/icu4c.scm, gnu/packages/image.scm,
gnu/packages/imagemagick.scm, gnu/packages/irssi.scm, gnu/packages/kde.scm,
gnu/packages/libdaemon.scm, gnu/packages/libevent.scm,
gnu/packages/libidn.scm, gnu/packages/libusb.scm, gnu/packages/linux.scm,
gnu/packages/lout.scm, gnu/packages/lsh.scm, gnu/packages/lsof.scm,
gnu/packages/lua.scm, gnu/packages/maths.scm, gnu/packages/mcrypt.scm,
gnu/packages/mp3.scm, gnu/packages/netpbm.scm, gnu/packages/noweb.scm,
gnu/packages/ocaml.scm, gnu/packages/openssl.scm, gnu/packages/pcre.scm,
gnu/packages/pdf.scm, gnu/packages/pkg-config.scm,
gnu/packages/pretty-print.scm, gnu/packages/python.scm, gnu/packages/qt.scm,
gnu/packages/rsync.scm, gnu/packages/scheme.scm, gnu/packages/scrot.scm,
gnu/packages/sdl.scm, gnu/packages/skribilo.scm, gnu/packages/ssh.scm,
gnu/packages/stalonetray.scm, gnu/packages/tcl.scm, gnu/packages/tcsh.scm,
gnu/packages/telephony.scm, gnu/packages/texlive.scm, gnu/packages/tor.scm,
gnu/packages/valgrind.scm, gnu/packages/version-control.scm,
gnu/packages/vim.scm, gnu/packages/vpn.scm, gnu/packages/w3m.scm,
gnu/packages/web.scm, gnu/packages/wordnet.scm, gnu/packages/xiph.scm,
gnu/packages/xml.scm, gnu/packages/xorg.scm, gnu/packages/zile.scm,
gnu/packages/zip.scm, gnu/packages/zsh.scm [synopsis, description]: Adjust
according to lint checkers.
* gnu/packages/fltk.scm (fltk)[source]: Wrap long line in uri.
* /gnu/packages/xiph.scm (libogg, libtheora, vorbis-tools)[source]: Same.
2014-10-24 00:46:59 -04:00
|
|
|
(synopsis "PDF rendering library")
|
2013-01-24 17:02:38 -05:00
|
|
|
(description
|
|
|
|
"Poppler is a PDF rendering library based on the xpdf-3.0 code base.")
|
2013-03-31 11:25:11 -04:00
|
|
|
(license license:gpl2+)
|
2016-08-15 04:42:52 -04:00
|
|
|
(home-page "https://poppler.freedesktop.org/")))
|
2013-03-31 11:25:11 -04:00
|
|
|
|
2015-08-26 17:22:29 -04:00
|
|
|
(define-public poppler-qt4
|
|
|
|
(package (inherit poppler)
|
|
|
|
(name "poppler-qt4")
|
|
|
|
(inputs `(("qt-4" ,qt-4)
|
|
|
|
,@(package-inputs poppler)))
|
|
|
|
(synopsis "Qt4 frontend for the Poppler PDF rendering library")))
|
|
|
|
|
2016-05-22 19:47:11 -04:00
|
|
|
(define-public poppler-qt5
|
|
|
|
(package (inherit poppler)
|
|
|
|
(name "poppler-qt5")
|
2016-08-15 14:53:28 -04:00
|
|
|
(inputs `(("qtbase" ,qtbase)
|
2016-05-22 19:47:11 -04:00
|
|
|
,@(package-inputs poppler)))
|
2016-08-21 18:47:16 -04:00
|
|
|
(arguments
|
|
|
|
(substitute-keyword-arguments (package-arguments poppler)
|
|
|
|
((#:configure-flags flags)
|
|
|
|
`(cons "CXXFLAGS=-std=gnu++11" ,flags))))
|
2016-05-22 19:47:11 -04:00
|
|
|
(synopsis "Qt5 frontend for the Poppler PDF rendering library")))
|
|
|
|
|
2015-08-26 17:23:31 -04:00
|
|
|
(define-public python-poppler-qt4
|
|
|
|
(package
|
|
|
|
(name "python-poppler-qt4")
|
|
|
|
(version "0.24.0")
|
|
|
|
(source
|
|
|
|
(origin
|
|
|
|
(method url-fetch)
|
|
|
|
(uri (string-append "https://pypi.python.org/packages/source/p"
|
|
|
|
"/python-poppler-qt4/python-poppler-qt4-"
|
|
|
|
version ".tar.gz"))
|
|
|
|
(sha256
|
|
|
|
(base32
|
|
|
|
"0x63niylkk4q3h3ay8zrk3m1xiik0x3hlr4gvj7kswx48qi1vb99"))))
|
|
|
|
(build-system python-build-system)
|
|
|
|
(arguments
|
|
|
|
`(#:phases
|
|
|
|
(modify-phases %standard-phases
|
|
|
|
(add-after
|
|
|
|
'unpack 'patch-poppler-include-paths
|
|
|
|
(lambda _
|
|
|
|
(substitute* (find-files "." "poppler-.*\\.sip")
|
|
|
|
(("qt4/poppler-.*\\.h" header)
|
|
|
|
(string-append "poppler/" header)))
|
|
|
|
#t)))))
|
|
|
|
(native-inputs
|
|
|
|
`(("pkg-config" ,pkg-config)))
|
|
|
|
(inputs
|
|
|
|
`(("python-sip" ,python-sip)
|
|
|
|
("python-pyqt-4" ,python-pyqt-4)
|
|
|
|
("poppler-qt4" ,poppler-qt4)))
|
|
|
|
(home-page "https://pypi.python.org/pypi/python-poppler-qt4")
|
|
|
|
(synopsis "Python bindings for Poppler-Qt4")
|
|
|
|
(description
|
|
|
|
"This package provides Python bindings for the Qt4 interface of the
|
|
|
|
Poppler PDF rendering library.")
|
|
|
|
(license license:lgpl2.1+)))
|
|
|
|
|
2016-07-04 07:23:23 -04:00
|
|
|
(define-public libharu
|
|
|
|
(package
|
|
|
|
(name "libharu")
|
|
|
|
(version "2.3.0")
|
|
|
|
(source (origin
|
|
|
|
(method url-fetch)
|
|
|
|
(uri (string-append "https://github.com/libharu/libharu/archive/"
|
|
|
|
"RELEASE_"
|
|
|
|
(string-join (string-split version #\.) "_")
|
|
|
|
".tar.gz"))
|
|
|
|
(file-name (string-append name "-" version ".tar.gz"))
|
|
|
|
(sha256
|
|
|
|
(base32
|
|
|
|
"1lm4v539y9cb1lvbq387j57sy7yxda3yv8b1pk8m6zazbp66i7lg"))))
|
|
|
|
(build-system gnu-build-system)
|
|
|
|
(arguments
|
|
|
|
`(#:configure-flags
|
|
|
|
(list (string-append "--with-zlib="
|
|
|
|
(assoc-ref %build-inputs "zlib"))
|
|
|
|
(string-append "--with-png="
|
|
|
|
(assoc-ref %build-inputs "libpng")))
|
|
|
|
#:phases
|
|
|
|
(modify-phases %standard-phases
|
|
|
|
(add-before 'configure 'autogen
|
|
|
|
(lambda _ (zero? (system* "autoreconf" "-vif")))))))
|
|
|
|
(inputs
|
|
|
|
`(("zlib" ,zlib)
|
|
|
|
("libpng" ,libpng)))
|
|
|
|
(native-inputs
|
|
|
|
`(("autoconf" ,autoconf)
|
|
|
|
("automake" ,automake)
|
|
|
|
("libtool" ,libtool)))
|
|
|
|
(home-page "http://libharu.org/")
|
|
|
|
(synopsis "Library for generating PDF files")
|
|
|
|
(description
|
|
|
|
"libHaru is a library for generating PDF files. libHaru does not support
|
|
|
|
reading and editing of existing PDF files.")
|
|
|
|
(license license:zlib)))
|
|
|
|
|
2013-03-31 11:25:11 -04:00
|
|
|
(define-public xpdf
|
|
|
|
(package
|
|
|
|
(name "xpdf")
|
2014-10-05 19:08:03 -04:00
|
|
|
(version "3.04")
|
2013-03-31 11:25:11 -04:00
|
|
|
(source (origin
|
|
|
|
(method url-fetch)
|
|
|
|
(uri (string-append "ftp://ftp.foolabs.com/pub/xpdf/xpdf-"
|
|
|
|
version ".tar.gz"))
|
|
|
|
(sha256 (base32
|
2014-10-05 19:08:03 -04:00
|
|
|
"1rbp54mr3z2x3a3a1qmz8byzygzi223vckfam9ib5g1sfds0qf8i"))))
|
2013-03-31 11:25:11 -04:00
|
|
|
(build-system gnu-build-system)
|
|
|
|
(inputs `(("freetype" ,freetype)
|
2013-04-28 16:05:27 -04:00
|
|
|
("gs-fonts" ,gs-fonts)
|
2013-03-31 11:25:11 -04:00
|
|
|
("lesstif" ,lesstif)
|
|
|
|
("libpaper" ,libpaper)
|
|
|
|
("libx11" ,libx11)
|
|
|
|
("libxext" ,libxext)
|
|
|
|
("libxp" ,libxp)
|
|
|
|
("libxpm" ,libxpm)
|
|
|
|
("libxt" ,libxt)
|
2014-10-05 19:08:03 -04:00
|
|
|
("libpng" ,libpng)
|
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
|
|
|
("zlib" ,zlib)))
|
2013-03-31 11:25:11 -04:00
|
|
|
(arguments
|
|
|
|
`(#:tests? #f ; there is no check target
|
2015-03-07 14:15:28 -05:00
|
|
|
#:parallel-build? #f ; build fails randomly on 8-way machines
|
|
|
|
#:configure-flags
|
|
|
|
(list (string-append "--with-freetype2-includes="
|
|
|
|
(assoc-ref %build-inputs "freetype")
|
|
|
|
"/include/freetype2"))
|
2013-04-28 16:05:27 -04:00
|
|
|
#:phases
|
|
|
|
(alist-replace
|
|
|
|
'install
|
|
|
|
(lambda* (#:key outputs inputs #:allow-other-keys #:rest args)
|
|
|
|
(let* ((install (assoc-ref %standard-phases 'install))
|
|
|
|
(out (assoc-ref outputs "out"))
|
|
|
|
(xpdfrc (string-append out "/etc/xpdfrc"))
|
|
|
|
(gs-fonts (assoc-ref inputs "gs-fonts")))
|
|
|
|
(apply install args)
|
|
|
|
(substitute* xpdfrc
|
|
|
|
(("/usr/local/share/ghostscript/fonts")
|
|
|
|
(string-append gs-fonts "/share/fonts/type1/ghostscript"))
|
|
|
|
(("#fontFile") "fontFile"))))
|
|
|
|
%standard-phases)))
|
2014-09-13 09:50:30 -04:00
|
|
|
(synopsis "Viewer for PDF files based on the Motif toolkit")
|
2013-03-31 11:25:11 -04:00
|
|
|
(description
|
gnu packages: Clean up synopses and descriptions.
* gnu/packages/admin.scm, gnu/packages/algebra.scm, gnu/packages/audio.scm,
gnu/packages/backup.scm, gnu/packages/base.scm, gnu/packages/bittorrent.scm,
gnu/packages/code.scm, gnu/packages/compression.scm,
gnu/packages/databases.scm, gnu/packages/enchant.scm,
gnu/packages/firmware.scm, gnu/packages/fonts.scm,
gnu/packages/freedesktop.scm, gnu/packages/games.scm, gnu/packages/gd.scm,
gnu/packages/gl.scm, gnu/packages/gnome.scm, gnu/packages/gsasl.scm,
gnu/packages/gstreamer.scm, gnu/packages/gtk.scm, gnu/packages/guile.scm,
gnu/packages/haskell.scm, gnu/packages/language.scm,
gnu/packages/lesstif.scm, gnu/packages/libreoffice.scm,
gnu/packages/linux.scm, gnu/packages/llvm.scm, gnu/packages/maths.scm,
gnu/packages/mcrypt.scm, gnu/packages/mit-krb5.scm, gnu/packages/mp3.scm,
gnu/packages/ncdu.scm, gnu/packages/networking.scm, gnu/packages/ntp.scm,
gnu/packages/ocaml.scm, gnu/packages/openbox.scm, gnu/packages/pdf.scm,
gnu/packages/perl.scm, gnu/packages/pretty-print.scm,
gnu/packages/pulseaudio.scm, gnu/packages/python.scm,
gnu/packages/rdesktop.scm, gnu/packages/rdf.scm, gnu/packages/ruby.scm,
gnu/packages/slang.scm, gnu/packages/slim.scm, gnu/packages/telephony.scm,
gnu/packages/tls.scm, gnu/packages/tmux.scm, gnu/packages/tre.scm,
gnu/packages/unrtf.scm, gnu/packages/version-control.scm,
gnu/packages/vpn.scm, gnu/packages/web.scm, gnu/packages/wget.scm,
gnu/packages/xdisorg.scm, gnu/packages/xfce.scm, gnu/packages/xiph.scm:
Fix typos. Trim long lines. Add missing periods in the end of sentences.
Use double spaces between sentences. Remove trailing whitespaces.
2015-07-17 08:16:07 -04:00
|
|
|
"Xpdf is a viewer for Portable Document Format (PDF) files.")
|
2013-03-31 11:25:11 -04:00
|
|
|
(license license:gpl3) ; or gpl2, but not gpl2+
|
|
|
|
(home-page "http://www.foolabs.com/xpdf/")))
|
2014-07-02 03:50:04 -04:00
|
|
|
|
2015-03-01 18:37:31 -05:00
|
|
|
(define-public zathura-cb
|
|
|
|
(package
|
|
|
|
(name "zathura-cb")
|
2017-01-16 04:16:59 -05:00
|
|
|
(version "0.1.6")
|
2015-03-01 18:37:31 -05:00
|
|
|
(source (origin
|
|
|
|
(method url-fetch)
|
|
|
|
(uri
|
|
|
|
(string-append "https://pwmt.org/projects/zathura-cb/download/zathura-cb-"
|
|
|
|
version ".tar.gz"))
|
|
|
|
(sha256
|
|
|
|
(base32
|
2017-01-16 04:16:59 -05:00
|
|
|
"1fim4mpm8l2g3msj1vg70ks3c9lrwllv3yh4jv8l9f8k3r19b3l8"))))
|
2015-03-01 18:37:31 -05:00
|
|
|
(native-inputs `(("pkg-config" ,pkg-config)))
|
|
|
|
(propagated-inputs `(("girara" ,girara)))
|
|
|
|
(inputs `(("libarchive" ,libarchive)
|
|
|
|
("gtk+" ,gtk+)
|
|
|
|
("zathura" ,zathura)))
|
|
|
|
(build-system gnu-build-system)
|
|
|
|
(arguments
|
2015-07-07 14:20:54 -04:00
|
|
|
`(#:make-flags (list (string-append "PREFIX=" %output)
|
|
|
|
(string-append "PLUGINDIR=" %output "/lib/zathura")
|
|
|
|
"CC=gcc")
|
2015-03-01 18:37:31 -05:00
|
|
|
#:tests? #f ; Package does not contain tests.
|
|
|
|
#:phases
|
|
|
|
(alist-delete 'configure %standard-phases)))
|
|
|
|
(home-page "https://pwmt.org/projects/zathura-cb/")
|
|
|
|
(synopsis "Comic book support for zathura (libarchive backend)")
|
|
|
|
(description "The zathura-cb plugin adds comic book support to zathura
|
|
|
|
using libarchive.")
|
|
|
|
(license license:zlib)))
|
|
|
|
|
2015-03-01 18:35:51 -05:00
|
|
|
(define-public zathura-ps
|
|
|
|
(package
|
|
|
|
(name "zathura-ps")
|
2017-01-16 04:18:47 -05:00
|
|
|
(version "0.2.4")
|
2015-03-01 18:35:51 -05:00
|
|
|
(source (origin
|
|
|
|
(method url-fetch)
|
|
|
|
(uri
|
|
|
|
(string-append "https://pwmt.org/projects/zathura-ps/download/zathura-ps-"
|
|
|
|
version ".tar.gz"))
|
|
|
|
(sha256
|
|
|
|
(base32
|
2017-01-16 04:18:47 -05:00
|
|
|
"1nxbl0glnzpan78fhdfzhkcd0cikcvrkzf9m56mb0pvnwzlwg7zv"))))
|
2015-03-01 18:35:51 -05:00
|
|
|
(native-inputs `(("pkg-config" ,pkg-config)))
|
|
|
|
(propagated-inputs `(("girara" ,girara)))
|
|
|
|
(inputs `(("libspectre" ,libspectre)
|
|
|
|
("gtk+" ,gtk+)
|
|
|
|
("zathura" ,zathura)))
|
|
|
|
(build-system gnu-build-system)
|
|
|
|
(arguments
|
2015-07-07 14:20:54 -04:00
|
|
|
`(#:make-flags (list (string-append "PREFIX=" %output)
|
|
|
|
(string-append "PLUGINDIR=" %output "/lib/zathura")
|
|
|
|
"CC=gcc")
|
2015-03-01 18:35:51 -05:00
|
|
|
#:tests? #f ; Package does not contain tests.
|
|
|
|
#:phases
|
|
|
|
(alist-delete 'configure %standard-phases)))
|
|
|
|
(home-page "https://pwmt.org/projects/zathura-ps/")
|
|
|
|
(synopsis "PS support for zathura (libspectre backend)")
|
|
|
|
(description "The zathura-ps plugin adds PS support to zathura
|
|
|
|
using libspectre.")
|
|
|
|
(license license:zlib)))
|
|
|
|
|
2015-03-01 18:33:31 -05:00
|
|
|
(define-public zathura-djvu
|
|
|
|
(package
|
|
|
|
(name "zathura-djvu")
|
2017-01-16 04:20:15 -05:00
|
|
|
(version "0.2.6")
|
2015-03-01 18:33:31 -05:00
|
|
|
(source (origin
|
|
|
|
(method url-fetch)
|
|
|
|
(uri
|
|
|
|
(string-append "https://pwmt.org/projects/zathura-djvu/download/zathura-djvu-"
|
|
|
|
version ".tar.gz"))
|
|
|
|
(sha256
|
|
|
|
(base32
|
2017-01-16 04:20:15 -05:00
|
|
|
"0py0ra44f65cg064xzds0qr6vnglj2a5bwhnbwa0dyh2nyizdzmf"))))
|
2015-03-01 18:33:31 -05:00
|
|
|
(native-inputs `(("pkg-config" ,pkg-config)))
|
|
|
|
(propagated-inputs `(("girara" ,girara)))
|
|
|
|
(inputs
|
|
|
|
`(("djvulibre" ,djvulibre)
|
|
|
|
("gtk+" ,gtk+)
|
|
|
|
("zathura" ,zathura)))
|
|
|
|
(build-system gnu-build-system)
|
|
|
|
(arguments
|
2015-07-07 14:20:54 -04:00
|
|
|
`(#:make-flags (list (string-append "PREFIX=" %output)
|
|
|
|
(string-append "PLUGINDIR=" %output "/lib/zathura")
|
|
|
|
"CC=gcc")
|
2015-03-01 18:33:31 -05:00
|
|
|
#:tests? #f ; Package does not contain tests.
|
|
|
|
#:phases
|
|
|
|
(alist-delete 'configure %standard-phases)))
|
|
|
|
(home-page "https://pwmt.org/projects/zathura-djvu/")
|
|
|
|
(synopsis "DjVu support for zathura (DjVuLibre backend)")
|
|
|
|
(description "The zathura-djvu plugin adds DjVu support to zathura
|
|
|
|
using the DjVuLibre library.")
|
|
|
|
(license license:zlib)))
|
|
|
|
|
2015-03-01 18:32:43 -05:00
|
|
|
(define-public zathura-pdf-poppler
|
|
|
|
(package
|
|
|
|
(name "zathura-pdf-poppler")
|
2017-01-16 04:21:46 -05:00
|
|
|
(version "0.2.7")
|
2015-03-01 18:32:43 -05:00
|
|
|
(source (origin
|
|
|
|
(method url-fetch)
|
|
|
|
(uri
|
|
|
|
(string-append "https://pwmt.org/projects/zathura-pdf-poppler/download/zathura-pdf-poppler-"
|
|
|
|
version ".tar.gz"))
|
|
|
|
(sha256
|
|
|
|
(base32
|
2017-01-16 04:21:46 -05:00
|
|
|
"1h43sgxpsbrsnn5z19661642plzhpv6b0y3f4kyzshv1rr6lwplq"))))
|
2015-03-01 18:32:43 -05:00
|
|
|
(native-inputs `(("pkg-config" ,pkg-config)))
|
|
|
|
(propagated-inputs `(("girara" ,girara)))
|
|
|
|
(inputs
|
|
|
|
`(("poppler" ,poppler)
|
|
|
|
("gtk+" ,gtk+)
|
|
|
|
("zathura" ,zathura)
|
|
|
|
("cairo" ,cairo)))
|
|
|
|
(build-system gnu-build-system)
|
|
|
|
(arguments
|
2015-07-07 14:20:54 -04:00
|
|
|
`(#:make-flags (list (string-append "PREFIX=" %output)
|
|
|
|
(string-append "PLUGINDIR=" %output "/lib/zathura")
|
|
|
|
"CC=gcc")
|
2015-03-01 18:32:43 -05:00
|
|
|
#:tests? #f ; Package does not include tests.
|
|
|
|
#:phases
|
|
|
|
(alist-delete 'configure %standard-phases)))
|
|
|
|
(home-page "https://pwmt.org/projects/zathura-pdf-poppler/")
|
|
|
|
(synopsis "PDF support for zathura (poppler backend)")
|
|
|
|
(description "The zathura-pdf-poppler plugin adds PDF support to zathura
|
|
|
|
by using the poppler rendering engine.")
|
|
|
|
(license license:zlib)))
|
|
|
|
|
2015-03-01 18:31:05 -05:00
|
|
|
(define-public zathura
|
|
|
|
(package
|
|
|
|
(name "zathura")
|
2017-01-16 04:15:00 -05:00
|
|
|
(version "0.3.7")
|
2015-03-01 18:31:05 -05:00
|
|
|
(source (origin
|
|
|
|
(method url-fetch)
|
|
|
|
(uri
|
|
|
|
(string-append "https://pwmt.org/projects/zathura/download/zathura-"
|
|
|
|
version ".tar.gz"))
|
|
|
|
(sha256
|
|
|
|
(base32
|
2017-01-16 04:15:00 -05:00
|
|
|
"1w0g74dq4z2vl3f99s2gkaqrb5pskgzig10qhbxj4gq9yj4zzbr2"))
|
2016-04-08 08:18:13 -04:00
|
|
|
(patches (search-patches
|
|
|
|
"zathura-plugindir-environment-variable.patch"))))
|
2015-03-01 18:31:05 -05:00
|
|
|
(native-inputs `(("pkg-config" ,pkg-config)
|
2016-09-25 03:33:02 -04:00
|
|
|
("gettext" ,gettext-minimal)))
|
2015-03-01 18:31:05 -05:00
|
|
|
(inputs `(("girara" ,girara)
|
|
|
|
("sqlite" ,sqlite)
|
|
|
|
("gtk+" ,gtk+)))
|
|
|
|
(native-search-paths
|
|
|
|
(list (search-path-specification
|
|
|
|
(variable "ZATHURA_PLUGIN_PATH")
|
|
|
|
(files '("lib/zathura")))))
|
|
|
|
(build-system gnu-build-system)
|
|
|
|
(arguments
|
|
|
|
`(#:make-flags
|
|
|
|
`(,(string-append "PREFIX=" (assoc-ref %outputs "out"))
|
|
|
|
"CC=gcc" "COLOR=0")
|
|
|
|
#:tests? #f ; Tests fail: "Gtk cannot open display".
|
|
|
|
#:test-target "test"
|
|
|
|
#:phases
|
|
|
|
(alist-delete 'configure %standard-phases)))
|
|
|
|
(home-page "https://pwmt.org/projects/zathura/")
|
|
|
|
(synopsis "Lightweight keyboard-driven PDF viewer")
|
|
|
|
(description "Zathura is a customizable document viewer. It provides a
|
|
|
|
minimalistic interface and an interface that mainly focuses on keyboard
|
|
|
|
interaction.")
|
|
|
|
(license license:zlib)))
|
|
|
|
|
2014-07-02 03:50:04 -04:00
|
|
|
(define-public podofo
|
|
|
|
(package
|
|
|
|
(name "podofo")
|
2015-02-07 14:50:35 -05:00
|
|
|
(version "0.9.3")
|
2014-07-02 03:50:04 -04:00
|
|
|
(source (origin
|
|
|
|
(method url-fetch)
|
2016-07-21 02:35:30 -04:00
|
|
|
(uri (string-append "mirror://sourceforge/podofo/podofo/" version
|
|
|
|
"/podofo-" version ".tar.gz"))
|
2014-07-02 03:50:04 -04:00
|
|
|
(sha256
|
|
|
|
(base32
|
2015-02-07 14:50:35 -05:00
|
|
|
"1n12lbq9x15vqn7dc0hsccp56l5jdff1xrhvlfqlbklxx0qiw9pc"))))
|
2014-07-02 03:50:04 -04:00
|
|
|
(build-system cmake-build-system)
|
|
|
|
(inputs ; TODO: Add cppunit for tests
|
2015-02-07 14:59:37 -05:00
|
|
|
`(("lua" ,lua-5.1)
|
2014-07-02 03:50:04 -04:00
|
|
|
("libpng" ,libpng)
|
|
|
|
("openssl" ,openssl)
|
|
|
|
("fontconfig" ,fontconfig)
|
|
|
|
("libtiff" ,libtiff)
|
|
|
|
("libjpeg" ,libjpeg-8)
|
|
|
|
("freetype" ,freetype)
|
|
|
|
("zlib" ,zlib)))
|
2015-02-07 14:42:19 -05:00
|
|
|
(arguments
|
|
|
|
`(#:configure-flags '("-DPODOFO_BUILD_SHARED=ON"
|
2015-03-06 19:37:58 -05:00
|
|
|
"-DPODOFO_BUILD_STATIC=ON")
|
|
|
|
#:phases
|
|
|
|
(alist-cons-before
|
|
|
|
'configure 'patch
|
|
|
|
(lambda* (#:key inputs #:allow-other-keys)
|
|
|
|
(let ((freetype (assoc-ref inputs "freetype")))
|
|
|
|
;; Look for freetype include files in the correct place.
|
|
|
|
(substitute* "cmake/modules/FindFREETYPE.cmake"
|
|
|
|
(("/usr/local") freetype))))
|
|
|
|
%standard-phases)))
|
2014-07-02 03:50:04 -04:00
|
|
|
(home-page "http://podofo.sourceforge.net")
|
|
|
|
(synopsis "Tools to work with the PDF file format")
|
|
|
|
(description
|
|
|
|
"PoDoFo is a C++ library and set of command-line tools to work with the
|
|
|
|
PDF file format. It can parse PDF files and load them into memory, and makes
|
|
|
|
it easy to modify them and write the changes to disk. It is primarily useful
|
|
|
|
for applications that wish to do lower level manipulation of PDF, such as
|
|
|
|
extracting content or merging files.")
|
|
|
|
(license license:lgpl2.0+)))
|
2014-09-15 02:03:03 -04:00
|
|
|
|
|
|
|
(define-public mupdf
|
|
|
|
(package
|
|
|
|
(name "mupdf")
|
2017-01-12 13:06:55 -05:00
|
|
|
(replacement mupdf/fixed)
|
2016-12-03 15:39:55 -05:00
|
|
|
(version "1.10a")
|
2014-09-15 02:03:03 -04:00
|
|
|
(source
|
|
|
|
(origin
|
|
|
|
(method url-fetch)
|
2014-10-06 23:29:10 -04:00
|
|
|
(uri (string-append "http://mupdf.com/downloads/archive/"
|
|
|
|
name "-" version "-source.tar.gz"))
|
2014-09-15 02:03:03 -04:00
|
|
|
(sha256
|
2016-09-09 16:08:02 -04:00
|
|
|
(base32
|
2016-12-03 15:39:55 -05:00
|
|
|
"0dm8wcs8i29aibzkqkrn8kcnk4q0kd1v66pg48h5c3qqp4v1zk5a"))
|
|
|
|
(patches (search-patches "mupdf-build-with-openjpeg-2.1.patch"))
|
2014-09-15 02:03:03 -04:00
|
|
|
(modules '((guix build utils)))
|
|
|
|
(snippet
|
2016-09-09 16:08:02 -04:00
|
|
|
;; Delete all the bundled libraries except for mujs, which is
|
|
|
|
;; developed by the same team as mupdf and has no releases.
|
|
|
|
;; TODO Package mujs and don't use the bundled copy.
|
|
|
|
'(for-each delete-file-recursively
|
|
|
|
'("thirdparty/curl"
|
|
|
|
"thirdparty/freetype"
|
|
|
|
"thirdparty/glfw"
|
|
|
|
"thirdparty/harfbuzz"
|
|
|
|
"thirdparty/jbig2dec"
|
|
|
|
"thirdparty/jpeg"
|
|
|
|
"thirdparty/openjpeg"
|
|
|
|
"thirdparty/zlib")))))
|
2014-09-15 02:03:03 -04:00
|
|
|
(build-system gnu-build-system)
|
|
|
|
(inputs
|
|
|
|
`(("curl" ,curl)
|
|
|
|
("freetype" ,freetype)
|
2016-09-09 16:08:02 -04:00
|
|
|
("harfbuzz" ,harfbuzz)
|
2014-09-15 02:03:03 -04:00
|
|
|
("jbig2dec" ,jbig2dec)
|
|
|
|
("libjpeg" ,libjpeg)
|
|
|
|
("libx11" ,libx11)
|
|
|
|
("libxext" ,libxext)
|
2016-09-09 16:08:02 -04:00
|
|
|
("openjpeg" ,openjpeg)
|
2014-09-15 02:03:03 -04:00
|
|
|
("openssl" ,openssl)
|
|
|
|
("zlib" ,zlib)))
|
|
|
|
(native-inputs
|
|
|
|
`(("pkg-config" ,pkg-config)))
|
|
|
|
(arguments
|
2016-03-12 03:56:27 -05:00
|
|
|
'(#:tests? #f ; no check target
|
|
|
|
#:make-flags (list "CC=gcc"
|
|
|
|
"XCFLAGS=-fpic"
|
|
|
|
(string-append "prefix=" (assoc-ref %outputs "out")))
|
|
|
|
#:phases (modify-phases %standard-phases
|
|
|
|
(delete 'configure))))
|
2014-09-15 02:03:03 -04:00
|
|
|
(home-page "http://mupdf.com")
|
2014-09-15 03:06:42 -04:00
|
|
|
(synopsis "Lightweight PDF viewer and toolkit")
|
2014-09-15 02:03:03 -04:00
|
|
|
(description
|
|
|
|
"MuPDF is a C library that implements a PDF and XPS parsing and
|
|
|
|
rendering engine. It is used primarily to render pages into bitmaps,
|
|
|
|
but also provides support for other operations such as searching and
|
|
|
|
listing the table of contents and hyperlinks.
|
|
|
|
|
|
|
|
The library ships with a rudimentary X11 viewer, and a set of command
|
2015-07-16 05:14:13 -04:00
|
|
|
line tools for batch rendering (pdfdraw), rewriting files (pdfclean),
|
|
|
|
and examining the file structure (pdfshow).")
|
2014-09-15 02:03:03 -04:00
|
|
|
(license license:agpl3+)))
|
2015-01-07 11:49:00 -05:00
|
|
|
|
2017-01-12 13:06:55 -05:00
|
|
|
(define mupdf/fixed
|
|
|
|
(package
|
|
|
|
(inherit mupdf)
|
|
|
|
(source
|
|
|
|
(origin
|
|
|
|
(inherit (package-source mupdf))
|
|
|
|
(patches
|
|
|
|
(append
|
|
|
|
(origin-patches (package-source mupdf))
|
|
|
|
(search-patches "mupdf-mujs-CVE-2016-10132.patch"
|
|
|
|
"mupdf-mujs-CVE-2016-10133.patch")))))))
|
|
|
|
|
2015-01-07 11:49:00 -05:00
|
|
|
(define-public qpdf
|
|
|
|
(package
|
|
|
|
(name "qpdf")
|
2016-08-15 04:50:38 -04:00
|
|
|
(version "6.0.0")
|
2015-01-07 11:49:00 -05:00
|
|
|
(source (origin
|
|
|
|
(method url-fetch)
|
2016-07-21 02:35:30 -04:00
|
|
|
(uri (string-append "mirror://sourceforge/qpdf/qpdf/" version
|
|
|
|
"/qpdf-" version ".tar.gz"))
|
2016-08-15 04:50:38 -04:00
|
|
|
(sha256
|
|
|
|
(base32
|
|
|
|
"0csj2p2gkxrc0rk8ykymlsdgfas96vzf1dip3y1x7z1q9plwgzd9"))
|
2016-05-02 09:41:46 -04:00
|
|
|
(modules '((guix build utils)))
|
|
|
|
(snippet
|
|
|
|
;; Replace shebang with the bi-lingual shell/Perl trick to remove
|
|
|
|
;; dependency on Perl.
|
|
|
|
'(substitute* "qpdf/fix-qdf"
|
|
|
|
(("#!/usr/bin/env perl")
|
|
|
|
"\
|
|
|
|
eval '(exit $?0)' && eval 'exec perl -wS \"$0\" ${1+\"$@\"}'
|
|
|
|
& eval 'exec perl -wS \"$0\" $argv:q'
|
|
|
|
if 0;\n")))))
|
2015-01-07 11:49:00 -05:00
|
|
|
(build-system gnu-build-system)
|
|
|
|
(arguments
|
2016-05-02 09:41:46 -04:00
|
|
|
`(#:disallowed-references (,perl)
|
2016-08-15 04:47:08 -04:00
|
|
|
#:phases
|
|
|
|
(modify-phases %standard-phases
|
|
|
|
(add-before 'configure 'patch-paths
|
|
|
|
(lambda _
|
|
|
|
(substitute* "make/libtool.mk"
|
|
|
|
(("SHELL=/bin/bash")
|
|
|
|
(string-append "SHELL=" (which "bash"))))
|
|
|
|
(substitute* (append
|
|
|
|
'("qtest/bin/qtest-driver")
|
|
|
|
(find-files "." "\\.test"))
|
|
|
|
(("/usr/bin/env") (which "env"))))))))
|
2015-01-07 11:49:00 -05:00
|
|
|
(native-inputs
|
2016-05-02 09:41:46 -04:00
|
|
|
`(("pkg-config" ,pkg-config)
|
|
|
|
("perl" ,perl)))
|
2015-01-07 11:49:00 -05:00
|
|
|
(propagated-inputs
|
|
|
|
`(("pcre" ,pcre)))
|
|
|
|
(inputs
|
2016-05-02 09:41:46 -04:00
|
|
|
`(("zlib" ,zlib)))
|
2015-01-07 11:49:00 -05:00
|
|
|
(synopsis "Command-line tools and library for transforming PDF files")
|
|
|
|
(description
|
|
|
|
"QPDF is a command-line program that does structural, content-preserving
|
|
|
|
transformations on PDF files. It could have been called something like
|
|
|
|
pdf-to-pdf. It includes support for merging and splitting PDFs and to
|
|
|
|
manipulate the list of pages in a PDF file. It is not a PDF viewer or a
|
|
|
|
program capable of converting PDF into other formats.")
|
|
|
|
(license license:clarified-artistic)
|
|
|
|
(home-page "http://qpdf.sourceforge.net/")))
|
2015-02-24 14:09:24 -05:00
|
|
|
|
|
|
|
(define-public xournal
|
|
|
|
(package
|
|
|
|
(name "xournal")
|
|
|
|
(version "0.4.8")
|
|
|
|
(source
|
|
|
|
(origin
|
|
|
|
(method url-fetch)
|
2016-07-21 02:35:30 -04:00
|
|
|
(uri (string-append "mirror://sourceforge/xournal/xournal/" version
|
|
|
|
"/xournal-" version ".tar.gz"))
|
2015-02-24 14:09:24 -05:00
|
|
|
(sha256
|
|
|
|
(base32
|
|
|
|
"0c7gjcqhygiyp0ypaipdaxgkbivg6q45vhsj8v5jsi9nh6iqff13"))))
|
|
|
|
(build-system gnu-build-system)
|
|
|
|
(inputs
|
|
|
|
`(("gtk" ,gtk+-2)
|
|
|
|
("pango" ,pango)
|
|
|
|
("poppler" ,poppler)
|
|
|
|
("glib" ,glib)
|
|
|
|
("libgnomecanvas" ,libgnomecanvas)))
|
|
|
|
(native-inputs
|
|
|
|
`(("pkg-config" ,pkg-config)))
|
|
|
|
(home-page "http://xournal.sourceforge.net/")
|
|
|
|
(synopsis "Notetaking using a stylus")
|
|
|
|
(description
|
|
|
|
"Xournal is an application for notetaking, sketching, keeping a journal
|
|
|
|
using a stylus.")
|
|
|
|
(license license:gpl2+)))
|
2016-08-14 11:47:33 -04:00
|
|
|
|
|
|
|
(define-public python-reportlab
|
|
|
|
(package
|
|
|
|
(name "python-reportlab")
|
|
|
|
(version "3.3.0")
|
|
|
|
(source (origin
|
|
|
|
(method url-fetch)
|
|
|
|
(uri (pypi-uri "reportlab" version))
|
|
|
|
(sha256
|
|
|
|
(base32
|
|
|
|
"0rz2pg04wnzjjm2f5a8ik9v8s54mv4xrjhv5liqjijqv6awh12gl"))))
|
|
|
|
(build-system python-build-system)
|
|
|
|
(propagated-inputs
|
|
|
|
`(("python-pillow" ,python-pillow)))
|
|
|
|
(home-page "http://www.reportlab.com")
|
|
|
|
(synopsis "Python library for generating PDFs and graphics")
|
|
|
|
(description "This is the ReportLab PDF Toolkit. It allows rapid creation
|
|
|
|
of rich PDF documents, and also creation of charts in a variety of bitmap and
|
|
|
|
vector formats.")
|
2016-09-28 08:36:46 -04:00
|
|
|
(license license:bsd-3)))
|
2016-08-14 11:47:33 -04:00
|
|
|
|
|
|
|
(define-public python2-reportlab
|
2016-09-28 08:36:46 -04:00
|
|
|
(package-with-python2 python-reportlab))
|
2016-09-11 18:57:46 -04:00
|
|
|
|
|
|
|
(define-public impressive
|
|
|
|
(package
|
|
|
|
(name "impressive")
|
|
|
|
(version "0.11.1")
|
|
|
|
(source (origin
|
|
|
|
(method url-fetch)
|
|
|
|
(uri (string-append
|
|
|
|
"mirror://sourceforge/impressive/Impressive/"
|
|
|
|
version "/Impressive-" version ".tar.gz"))
|
|
|
|
(sha256
|
|
|
|
(base32
|
|
|
|
"0b3rmy6acp2vmf5nill3aknxvr9a5aawk1vnphkah61anxp62gsr"))))
|
|
|
|
(build-system python-build-system)
|
|
|
|
|
|
|
|
;; TODO: Add dependency on pdftk.
|
|
|
|
(inputs `(("python-pygame" ,python-pygame)
|
|
|
|
("python2-pillow" ,python2-pillow)
|
|
|
|
("sdl" ,sdl)
|
|
|
|
("xpdf" ,xpdf)))
|
|
|
|
|
|
|
|
(arguments
|
|
|
|
`(#:python ,python-2
|
|
|
|
#:phases (modify-phases %standard-phases
|
|
|
|
(delete 'build)
|
|
|
|
(delete 'configure)
|
|
|
|
(delete 'check)
|
|
|
|
(replace 'install
|
|
|
|
(lambda* (#:key inputs outputs #:allow-other-keys)
|
|
|
|
;; There's no 'setup.py' so install things manually.
|
|
|
|
(let* ((out (assoc-ref outputs "out"))
|
|
|
|
(bin (string-append out "/bin"))
|
|
|
|
(man1 (string-append out "/share/man/man1"))
|
|
|
|
(sdl (assoc-ref inputs "sdl"))
|
|
|
|
(xpdf (assoc-ref inputs "xpdf")))
|
|
|
|
(mkdir-p bin)
|
|
|
|
(copy-file "impressive.py"
|
|
|
|
(string-append bin "/impressive"))
|
|
|
|
(wrap-program (string-append bin "/impressive")
|
|
|
|
`("LIBRARY_PATH" ":" prefix ;for ctypes
|
|
|
|
(,(string-append sdl "/lib")))
|
|
|
|
`("PATH" ":" prefix ;for pdftoppm
|
|
|
|
(,(string-append xpdf "/bin"))))
|
|
|
|
(install-file "impressive.1" man1)
|
|
|
|
#t))))))
|
|
|
|
(home-page "http://impressive.sourceforge.net")
|
|
|
|
(synopsis "PDF presentation tool with visual effects")
|
|
|
|
(description
|
|
|
|
"Impressive is a tool to display PDF files that provides visual effects
|
|
|
|
such as smooth alpha-blended slide transitions. It provides additional tools
|
|
|
|
such as zooming, highlighting an area of the screen, and a tool to navigate
|
|
|
|
the PDF pages.")
|
|
|
|
(license license:gpl2)))
|
2016-10-15 08:40:30 -04:00
|
|
|
|
|
|
|
(define-public fbida
|
|
|
|
(package
|
|
|
|
(name "fbida")
|
|
|
|
(version "2.12")
|
|
|
|
(home-page "https://www.kraxel.org/blog/linux/fbida/")
|
|
|
|
(source (origin
|
|
|
|
(method url-fetch)
|
|
|
|
(uri (string-append "https://www.kraxel.org/releases/fbida/"
|
|
|
|
name "-" version ".tar.gz"))
|
|
|
|
(sha256
|
|
|
|
(base32
|
|
|
|
"0bw224vb7jh0lrqaf4jgxk48xglvxs674qcpj5y0axyfbh896cfk"))))
|
|
|
|
(build-system gnu-build-system)
|
|
|
|
(arguments
|
|
|
|
'(#:phases (alist-cons-after
|
|
|
|
'unpack 'patch-ldconfig
|
|
|
|
(lambda _
|
|
|
|
(substitute* "mk/Autoconf.mk"
|
|
|
|
(("/sbin/ldconfig -p") "echo lib")) #t)
|
|
|
|
(alist-delete 'configure %standard-phases))
|
|
|
|
#:tests? #f
|
|
|
|
#:make-flags (list "CC=gcc"
|
|
|
|
(string-append "prefix=" (assoc-ref %outputs "out")))))
|
|
|
|
(inputs `(("libjpeg" ,libjpeg)
|
|
|
|
("curl" ,curl)
|
|
|
|
("libtiff" ,libtiff)
|
|
|
|
("libudev" ,eudev)
|
|
|
|
("libwebp" ,libwebp)
|
|
|
|
("libdrm" ,libdrm)
|
|
|
|
("imagemagick" ,imagemagick)
|
|
|
|
("giflib" ,giflib)
|
|
|
|
("glib" ,glib)
|
|
|
|
("cairo-xcb" ,cairo-xcb)
|
|
|
|
("freetype" ,freetype)
|
|
|
|
("fontconfig" ,fontconfig)
|
|
|
|
("libexif" ,libexif)
|
|
|
|
("mesa" ,mesa)
|
|
|
|
("libepoxy" ,libepoxy)
|
|
|
|
("libpng" ,libpng)
|
|
|
|
("poppler" ,poppler)))
|
|
|
|
(native-inputs `(("pkg-config" ,pkg-config)))
|
|
|
|
(synopsis "Framebuffer and drm-based image viewer")
|
|
|
|
(description
|
|
|
|
"fbida contains a few applications for viewing and editing images on
|
|
|
|
the framebuffer.")
|
|
|
|
|
|
|
|
(license license:gpl2+)))
|
2016-10-30 07:07:28 -04:00
|
|
|
|
|
|
|
(define-public pdf2svg
|
|
|
|
(package
|
|
|
|
(name "pdf2svg")
|
|
|
|
(version "0.2.3")
|
|
|
|
(source (origin
|
|
|
|
(method url-fetch)
|
|
|
|
(uri (string-append
|
|
|
|
"https://github.com/dawbarton/pdf2svg/archive/v"
|
|
|
|
version ".tar.gz"))
|
|
|
|
(file-name (string-append name "-" version ".tar.gz"))
|
|
|
|
(sha256
|
|
|
|
(base32
|
|
|
|
"12pa1pajirnlrkz2il3h4l30lc2prryk1qr132jk6z9y1c3qdcag"))))
|
|
|
|
(build-system gnu-build-system)
|
|
|
|
(inputs
|
|
|
|
`(("cairo" ,cairo)
|
|
|
|
("poppler" ,poppler)))
|
|
|
|
(native-inputs
|
|
|
|
`(("pkg-config" ,pkg-config)))
|
|
|
|
(home-page "http://www.cityinthesky.co.uk/opensource/pdf2svg/")
|
|
|
|
(synopsis "PDF to SVG converter")
|
|
|
|
(description "@command{pdf2svg} is a simple command-line PDF to SVG
|
|
|
|
converter using the Poppler and Cairo libraries.")
|
|
|
|
(license license:gpl2+)))
|
2016-11-08 16:31:32 -05:00
|
|
|
|
|
|
|
(define-public python-pypdf2
|
|
|
|
(package
|
|
|
|
(name "python-pypdf2")
|
|
|
|
(version "1.26.0")
|
|
|
|
(source (origin
|
|
|
|
(method url-fetch)
|
|
|
|
(uri (pypi-uri "PyPDF2" version))
|
|
|
|
(sha256
|
|
|
|
(base32
|
|
|
|
"11a3aqljg4sawjijkvzhs3irpw0y67zivqpbjpm065ha5wpr13z2"))))
|
|
|
|
(build-system python-build-system)
|
|
|
|
(arguments
|
|
|
|
`(#:phases
|
|
|
|
(modify-phases %standard-phases
|
|
|
|
(add-after
|
|
|
|
'unpack 'patch-test-suite
|
|
|
|
(lambda _
|
|
|
|
;; The text-file needs to be opened in binary mode for Python 3,
|
|
|
|
;; so patch in the "b"
|
|
|
|
(substitute* "Tests/tests.py"
|
|
|
|
(("pdftext_file = open\\(.* 'crazyones.txt'\\), 'r" line)
|
|
|
|
(string-append line "b")))
|
|
|
|
#t))
|
|
|
|
(replace 'check
|
|
|
|
(lambda _
|
|
|
|
(zero? (system* "python" "-m" "unittest" "Tests.tests")))))))
|
|
|
|
(home-page "http://mstamy2.github.com/PyPDF2")
|
|
|
|
(synopsis "Pure Python PDF toolkit")
|
|
|
|
(description "PyPDF2 is a pure Python PDF library capable of:
|
|
|
|
|
|
|
|
@enumerate
|
|
|
|
@item extracting document information (title, author, …)
|
|
|
|
@item splitting documents page by page
|
|
|
|
@item merging documents page by page
|
|
|
|
@item cropping pages
|
|
|
|
@item merging multiple pages into a single page
|
|
|
|
@item encrypting and decrypting PDF files
|
|
|
|
@end enumerate
|
|
|
|
|
|
|
|
By being pure Python, it should run on any Python platform without any
|
|
|
|
dependencies on external libraries. It can also work entirely on
|
|
|
|
@code{StringIO} objects rather than file streams, allowing for PDF
|
|
|
|
manipulation in memory. It is therefore a useful tool for websites that
|
|
|
|
manage or manipulate PDFs.")
|
|
|
|
(license license:bsd-3)))
|
|
|
|
|
|
|
|
(define-public python2-pypdf2
|
|
|
|
(package-with-python2 python-pypdf2))
|
2016-11-10 08:25:06 -05:00
|
|
|
|
|
|
|
(define-public python2-pypdf
|
|
|
|
(package
|
|
|
|
(name "python2-pypdf")
|
|
|
|
(version "1.13")
|
|
|
|
(source (origin
|
|
|
|
(method url-fetch)
|
|
|
|
(uri (pypi-uri "pyPdf" version))
|
|
|
|
(sha256
|
|
|
|
(base32
|
|
|
|
"0fqfvamir7k41w84c73rghzkiv891gdr17q5iz4hgbf6r71y9v9s"))))
|
|
|
|
(build-system python-build-system)
|
|
|
|
(arguments
|
|
|
|
`(#:tests? #f ; no tests
|
|
|
|
#:python ,python-2))
|
|
|
|
(home-page "http://pybrary.net/pyPdf/")
|
|
|
|
(synopsis "Pure Python PDF toolkit")
|
|
|
|
(description "PyPDF2 is a pure Python PDF toolkit.
|
|
|
|
|
|
|
|
Note: This module isn't maintained anymore. For new projects please use
|
|
|
|
python-pypdf2 instead.")
|
|
|
|
(license license:bsd-3)))
|
2016-11-09 17:22:45 -05:00
|
|
|
|
|
|
|
(define-public pdfposter
|
|
|
|
(package
|
|
|
|
(name "pdfposter")
|
|
|
|
(version "0.6.0")
|
|
|
|
(source (origin
|
|
|
|
(method url-fetch)
|
|
|
|
(uri (pypi-uri "pdftools.pdfposter" version ".tar.bz2"))
|
|
|
|
(sha256
|
|
|
|
(base32
|
|
|
|
"1i9jqawf279va089ykicglcq4zlsnwgcnsdzaa8vnm836lqhywma"))))
|
|
|
|
(build-system python-build-system)
|
|
|
|
(arguments
|
|
|
|
`(#:tests? #f ; no test suite, only for visual control
|
|
|
|
#:python ,python-2))
|
|
|
|
(inputs
|
|
|
|
;; pdfposter 0.6.0 still uses the old pyPdf
|
|
|
|
`(("python2-pypdf" ,python2-pypdf)))
|
|
|
|
(home-page "https://pythonhosted.org/pdftools.pdfposter/")
|
|
|
|
(synopsis "Scale and tile PDF images/pages to print on multiple pages")
|
|
|
|
(description "@command{pdfposter} can be used to create a large poster by
|
|
|
|
building it from multple pages and/or printing it on large media. It expects
|
|
|
|
as input a PDF file, normally printing on a single page. The output is again
|
|
|
|
a PDF file, maybe containing multiple pages together building the poster. The
|
|
|
|
input page will be scaled to obtain the desired size.
|
|
|
|
|
|
|
|
This is much like @command{poster} does for Postscript files, but working with
|
|
|
|
PDF. Since sometimes @command{poster} does not like your files converted from
|
|
|
|
PDF. Indeed @command{pdfposter} was inspired by @command{poster}.")
|
|
|
|
(license license:gpl3+)))
|