2013-01-24 23:02:38 +01:00
|
|
|
;;; GNU Guix --- Functional package management for GNU
|
|
|
|
;;; Copyright © 2013 Andreas Enge <andreas@enge.fr>
|
|
|
|
;;;
|
|
|
|
;;; 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 22:44:22 +02:00
|
|
|
#:use-module ((guix licenses) #:prefix license:)
|
2013-01-24 23:02:38 +01:00
|
|
|
#:use-module (guix packages)
|
|
|
|
#:use-module (guix download)
|
|
|
|
#:use-module (guix build-system gnu)
|
2014-07-02 09:50:04 +02:00
|
|
|
#:use-module (guix build-system cmake)
|
2013-01-24 23:02:38 +01:00
|
|
|
#:use-module (gnu packages)
|
|
|
|
#:use-module (gnu packages compression)
|
2013-02-12 13:19:26 +01:00
|
|
|
#:use-module (gnu packages fontutils)
|
2013-03-31 17:25:11 +02:00
|
|
|
#:use-module (gnu packages ghostscript)
|
|
|
|
#:use-module (gnu packages lesstif)
|
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 14:39:02 +02:00
|
|
|
#:use-module (gnu packages image)
|
2013-03-31 17:25:11 +02:00
|
|
|
#:use-module (gnu packages pkg-config)
|
2014-07-02 09:50:04 +02:00
|
|
|
#:use-module (gnu packages openssl)
|
2013-10-13 22:49:23 +02:00
|
|
|
#:use-module (gnu packages xorg)
|
|
|
|
#:use-module (gnu packages glib)
|
|
|
|
#:use-module (gnu packages gtk)
|
2014-07-02 09:50:04 +02:00
|
|
|
#:use-module (gnu packages lua)
|
2014-09-15 08:03:03 +02:00
|
|
|
#:use-module (gnu packages curl)
|
2013-10-13 22:49:23 +02:00
|
|
|
#:use-module (srfi srfi-1))
|
2013-01-24 23:02:38 +01:00
|
|
|
|
|
|
|
(define-public poppler
|
|
|
|
(package
|
|
|
|
(name "poppler")
|
|
|
|
(version "0.22.0")
|
|
|
|
(source (origin
|
|
|
|
(method url-fetch)
|
|
|
|
(uri (string-append "http://poppler.freedesktop.org/poppler-"
|
|
|
|
version ".tar.gz"))
|
|
|
|
(sha256 (base32
|
|
|
|
"1rmrspavldlpqi6g76fijcmshy80m0kxd01nc1dmy4id3h4las44"))))
|
|
|
|
(build-system gnu-build-system)
|
|
|
|
;; FIXME: more dependencies could be added
|
2013-03-24 20:23:15 +01:00
|
|
|
;; cairo output: no (requires cairo >= 1.10.0)
|
|
|
|
;; qt4 wrapper: no
|
|
|
|
;; introspection: no
|
|
|
|
;; use gtk-doc: no
|
|
|
|
;; use libcurl: no
|
|
|
|
;; use libopenjpeg: no
|
2013-01-24 23:02:38 +01:00
|
|
|
(inputs `(("fontconfig" ,fontconfig)
|
|
|
|
("freetype" ,freetype)
|
|
|
|
("libjpeg-8" ,libjpeg-8)
|
2013-03-24 20:23:15 +01:00
|
|
|
("libpng" ,libpng)
|
2013-01-24 23:02:38 +01:00
|
|
|
("libtiff" ,libtiff)
|
2013-10-13 22:49:23 +02: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 12:01:56 +01: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 18:05:57 +02:00
|
|
|
`(("pkg-config" ,pkg-config)
|
|
|
|
("glib" ,glib "bin"))) ; glib-mkenums, etc.
|
2013-01-24 23:02:38 +01:00
|
|
|
(arguments
|
|
|
|
`(#:tests? #f ; no test data provided with the tarball
|
2013-03-24 20:23:15 +01:00
|
|
|
#:configure-flags
|
|
|
|
'("--enable-xpdf-headers" ; to install header files
|
|
|
|
"--enable-zlib")))
|
2013-01-24 23:02:38 +01:00
|
|
|
(synopsis "Poppler, a pdf rendering library")
|
|
|
|
(description
|
|
|
|
"Poppler is a PDF rendering library based on the xpdf-3.0 code base.")
|
2013-03-31 17:25:11 +02:00
|
|
|
(license license:gpl2+)
|
2013-01-24 23:02:38 +01:00
|
|
|
(home-page "http://poppler.freedesktop.org/")))
|
2013-03-31 17:25:11 +02:00
|
|
|
|
|
|
|
(define-public xpdf
|
|
|
|
(package
|
|
|
|
(name "xpdf")
|
|
|
|
(version "3.03")
|
|
|
|
(source (origin
|
|
|
|
(method url-fetch)
|
|
|
|
(uri (string-append "ftp://ftp.foolabs.com/pub/xpdf/xpdf-"
|
|
|
|
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-09 00:09:04 +02:00
|
|
|
"1jnfzdqc54wa73lw28kjv0m7120mksb0zkcn81jdlvijyvc67kq2"))
|
|
|
|
(patches (list (search-patch "xpdf-constchar.patch")))))
|
2013-03-31 17:25:11 +02:00
|
|
|
(build-system gnu-build-system)
|
|
|
|
(inputs `(("freetype" ,freetype)
|
2013-04-28 22:05:27 +02:00
|
|
|
("gs-fonts" ,gs-fonts)
|
2013-03-31 17:25:11 +02:00
|
|
|
("lesstif" ,lesstif)
|
|
|
|
("libpaper" ,libpaper)
|
|
|
|
("libx11" ,libx11)
|
|
|
|
("libxext" ,libxext)
|
|
|
|
("libxp" ,libxp)
|
|
|
|
("libxpm" ,libxpm)
|
|
|
|
("libxt" ,libxt)
|
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-09 00:09:04 +02:00
|
|
|
("zlib" ,zlib)))
|
2013-03-31 17:25:11 +02:00
|
|
|
(arguments
|
|
|
|
`(#:tests? #f ; there is no check target
|
2014-04-04 18:02:27 +02:00
|
|
|
#:parallel-build? #f ; build fails randomly on 8-way machines
|
2013-04-28 22:05:27 +02: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 15:50:30 +02:00
|
|
|
(synopsis "Viewer for PDF files based on the Motif toolkit")
|
2013-03-31 17:25:11 +02:00
|
|
|
(description
|
|
|
|
"Xpdf is a viewer for Portable Document Format (PDF) files")
|
|
|
|
(license license:gpl3) ; or gpl2, but not gpl2+
|
|
|
|
(home-page "http://www.foolabs.com/xpdf/")))
|
2014-07-02 09:50:04 +02:00
|
|
|
|
|
|
|
(define-public podofo
|
|
|
|
(package
|
|
|
|
(name "podofo")
|
|
|
|
(version "0.9.2")
|
|
|
|
(source (origin
|
|
|
|
(method url-fetch)
|
|
|
|
(uri (string-append "mirror://sourceforge/podofo/podofo-"
|
|
|
|
version ".tar.gz"))
|
|
|
|
(sha256
|
|
|
|
(base32
|
|
|
|
"1wx3s0718rmhdzdwyi8hgpf2s92sk3hijy8f4glrmnjpiihr2la6"))))
|
|
|
|
(build-system cmake-build-system)
|
|
|
|
(inputs ; TODO: Add cppunit for tests
|
|
|
|
`(;; Optional Lua support fails to build with:
|
|
|
|
;; error: 'luaL_getn' was not declared in this scope
|
|
|
|
;; ("lua" ,lua)
|
|
|
|
("libpng" ,libpng)
|
|
|
|
("openssl" ,openssl)
|
|
|
|
("fontconfig" ,fontconfig)
|
|
|
|
("libtiff" ,libtiff)
|
|
|
|
("libjpeg" ,libjpeg-8)
|
|
|
|
("freetype" ,freetype)
|
|
|
|
("zlib" ,zlib)))
|
|
|
|
(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 08:03:03 +02:00
|
|
|
|
|
|
|
(define-public mupdf
|
|
|
|
(package
|
|
|
|
(name "mupdf")
|
|
|
|
(version "1.5")
|
|
|
|
(source
|
|
|
|
(origin
|
|
|
|
(method url-fetch)
|
|
|
|
(uri (string-append "http://mupdf.com/downloads/" name "-" version
|
|
|
|
"-source.tar.gz"))
|
|
|
|
(sha256
|
|
|
|
(base32 "0sl47zqf4c9fhs4h5zg046vixjmwgy4vhljhr5g4md733nash7z4"))
|
|
|
|
(patches
|
|
|
|
(list (search-patch "mupdf-buildsystem-fix.patch")))
|
|
|
|
(modules '((guix build utils)))
|
|
|
|
(snippet
|
|
|
|
'(begin
|
|
|
|
;; Don't build the bundled-in third party libraries.
|
|
|
|
(delete-file-recursively "thirdparty")
|
|
|
|
|
|
|
|
;; Make the scripts for finding openjpeg build details executable.
|
|
|
|
(chmod "ojp2_cppflags.sh" #o0755)
|
|
|
|
(chmod "ojp2_ldflags.sh" #o0755)))))
|
|
|
|
|
|
|
|
(build-system gnu-build-system)
|
|
|
|
(inputs
|
|
|
|
`(("curl" ,curl)
|
|
|
|
("freetype" ,freetype)
|
|
|
|
("jbig2dec" ,jbig2dec)
|
|
|
|
("libjpeg" ,libjpeg)
|
|
|
|
("libx11" ,libx11)
|
|
|
|
("libxext" ,libxext)
|
|
|
|
("openjpeg" ,openjpeg)
|
|
|
|
("openssl" ,openssl)
|
|
|
|
("zlib" ,zlib)))
|
|
|
|
(native-inputs
|
|
|
|
`(("pkg-config" ,pkg-config)))
|
|
|
|
(arguments
|
|
|
|
;; Trying to run `$ make check' results in a no rule fault.
|
|
|
|
'(#:tests? #f
|
|
|
|
|
|
|
|
#:modules ((guix build gnu-build-system)
|
|
|
|
(guix build utils)
|
|
|
|
(srfi srfi-1))
|
|
|
|
#:phases (alist-replace
|
|
|
|
'build
|
|
|
|
(lambda _ (zero? (system* "make" "XCFLAGS=-fpic")))
|
|
|
|
(alist-replace
|
|
|
|
'install
|
|
|
|
(lambda* (#:key outputs #:allow-other-keys)
|
|
|
|
(let ((out (assoc-ref outputs "out")))
|
|
|
|
(zero? (system* "make" (string-append "prefix=" out)
|
|
|
|
"install"))))
|
|
|
|
(alist-delete 'configure %standard-phases)))))
|
|
|
|
(home-page "http://mupdf.com")
|
2014-09-15 09:06:42 +02:00
|
|
|
(synopsis "Lightweight PDF viewer and toolkit")
|
2014-09-15 08:03:03 +02: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
|
|
|
|
line tools for batch rendering (pdfdraw), examining the file structure
|
|
|
|
(pdfshow), and rewriting files (pdfclean).")
|
|
|
|
(license license:agpl3+)))
|