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)
|
2013-03-31 17:25:11 +02:00
|
|
|
#:use-module ((guix licenses)
|
|
|
|
#:renamer (symbol-prefix-proc 'license:))
|
2013-01-24 23:02:38 +01:00
|
|
|
#:use-module (guix packages)
|
|
|
|
#:use-module (guix download)
|
|
|
|
#:use-module (guix build-system gnu)
|
|
|
|
#: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)
|
2013-01-24 23:02:38 +01:00
|
|
|
#:use-module (gnu packages libjpeg)
|
2013-03-24 20:23:15 +01:00
|
|
|
#:use-module (gnu packages libpng)
|
2013-01-24 23:02:38 +01:00
|
|
|
#:use-module (gnu packages libtiff)
|
2013-03-31 17:25:11 +02:00
|
|
|
#:use-module (gnu packages pkg-config)
|
2013-10-13 22:49:23 +02:00
|
|
|
#:use-module (gnu packages xorg)
|
|
|
|
#:use-module (gnu packages glib)
|
|
|
|
#:use-module (gnu packages gtk)
|
|
|
|
#: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
|
|
|
|
`(("pkg-config" ,pkg-config)))
|
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
|
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)))
|
2013-03-31 17:25:11 +02:00
|
|
|
(synopsis "Viewer for pdf files based on the Motif toolkit.")
|
|
|
|
(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/")))
|