gnu: libgpg-error: Fix cross compilation.
[jackhill/guix/guix.git] / gnu / packages / ghostscript.scm
CommitLineData
bf4018fb
AE
1;;; GNU Guix --- Functional package management for GNU
2;;; Copyright © 2013 Andreas Enge <andreas@enge.fr>
7020a6ab 3;;; Copyright © 2014, 2015, 2016, 2017 Mark H Weaver <mhw@netris.org>
01aae5fc 4;;; Copyright © 2015 Ricardo Wurmus <rekado@elephly.net>
466ff55c 5;;; Copyright © 2013, 2015, 2016, 2017, 2019 Ludovic Courtès <ludo@gnu.org>
e4f43bc5 6;;; Copyright © 2017 Alex Vong <alexvong1995@gmail.com>
8a3bb34c 7;;; Copyright © 2017, 2018, 2019 Efraim Flashner <efraim@flashner.co.il>
1c09eb99 8;;; Copyright © 2017 Leo Famulari <leo@famulari.name>
c3800f0b 9;;; Copyright © 2018 Tobias Geerinckx-Rice <me@tobias.gr>
0084744b 10;;; Copyright © 2018 Marius Bakke <mbakke@fastmail.com>
bf4018fb
AE
11;;;
12;;; This file is part of GNU Guix.
13;;;
14;;; GNU Guix is free software; you can redistribute it and/or modify it
15;;; under the terms of the GNU General Public License as published by
16;;; the Free Software Foundation; either version 3 of the License, or (at
17;;; your option) any later version.
18;;;
19;;; GNU Guix is distributed in the hope that it will be useful, but
20;;; WITHOUT ANY WARRANTY; without even the implied warranty of
21;;; MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
22;;; GNU General Public License for more details.
23;;;
24;;; You should have received a copy of the GNU General Public License
25;;; along with GNU Guix. If not, see <http://www.gnu.org/licenses/>.
26
27(define-module (gnu packages ghostscript)
28 #:use-module (gnu packages)
01aae5fc 29 #:use-module (gnu packages autotools)
bf4018fb 30 #:use-module (gnu packages compression)
3e442f85 31 #:use-module (gnu packages cups)
a86177d6 32 #:use-module (gnu packages fontutils)
e55354b8 33 #:use-module (gnu packages image)
bf4018fb
AE
34 #:use-module (gnu packages perl)
35 #:use-module (gnu packages pkg-config)
36 #:use-module (gnu packages python)
37 #:use-module (gnu packages tcl)
7a75b02a 38 #:use-module (gnu packages xorg)
b5b73a82 39 #:use-module ((guix licenses) #:prefix license:)
bf4018fb
AE
40 #:use-module (guix packages)
41 #:use-module (guix download)
0084744b 42 #:use-module (guix utils)
71eba3eb 43 #:use-module (guix build-system gnu)
0084744b
MB
44 #:use-module (guix build-system trivial)
45 #:use-module (srfi srfi-1))
bf4018fb
AE
46
47(define-public lcms
48 (package
49 (name "lcms")
c3800f0b 50 (version "2.9")
bf4018fb
AE
51 (source (origin
52 (method url-fetch)
de67e922
LF
53 (uri (string-append "mirror://sourceforge/lcms/lcms/" version
54 "/lcms2-" version ".tar.gz"))
50943b48
MB
55
56 (patches (search-patches "lcms-CVE-2018-16435.patch"))
bf4018fb 57 (sha256 (base32
c3800f0b 58 "083xisy6z01zhm7p7rgk4bx9d6zlr8l20qkfv1g29ylnhgwzvij8"))))
bf4018fb 59 (build-system gnu-build-system)
9bb98f64 60 (inputs `(("libjpeg" ,libjpeg)
bf4018fb
AE
61 ("libtiff" ,libtiff)
62 ("zlib" ,zlib)))
63 (synopsis "Little CMS, a small-footprint colour management engine")
64 (description
65 "Little CMS is a small-footprint colour management engine, with special
35b9e423 66focus on accuracy and performance. It uses the International Color
bf4018fb
AE
67Consortium standard (ICC), approved as ISO 15076-1.")
68 (license license:x11)
f769c1d7
LF
69 (home-page "http://www.littlecms.com/")
70 (properties '((cpe-name . "little_cms_color_engine")))))
bf4018fb
AE
71
72(define-public libpaper
73 (package
74 (name "libpaper")
75 (version "1.1.24")
76 (source (origin
77 (method url-fetch)
78 (uri (string-append
48fa9312
EF
79 ;; Debian moved their libpaper-1.1.24 to archive.debian.net
80 ;; but in the move the hash of their tarball changed.
81 "http://pkgs.fedoraproject.org/repo/pkgs/libpaper/libpaper_"
82 version ".tar.gz/5bc87d494ba470aba54f6d2d51471834/libpaper_"
bf4018fb
AE
83 version ".tar.gz"))
84 (sha256 (base32
85 "0zhcx67afb6b5r936w5jmaydj3ks8zh83n9rm5sv3m3k8q8jib1q"))))
86 (build-system gnu-build-system)
35b9e423 87 (synopsis "Library for handling paper sizes")
bf4018fb
AE
88 (description
89 "The paper library and accompanying files are intended to provide a simple
90way for applications to take actions based on a system- or user-specified
91paper size.")
92 (license license:gpl2)
48fa9312 93 (home-page "https://packages.qa.debian.org/libp/libpaper.html")))
bf4018fb 94
87ec7a7a
AE
95(define-public psutils
96 (package
97 (name "psutils")
98 (version "17")
99 (source (origin
100 (method url-fetch)
101 (uri "ftp://ftp.knackered.org/pub/psutils/psutils.tar.gz")
102 (sha256 (base32
103 "1r4ab1fvgganm02kmm70b2r1azwzbav2am41gbigpa2bb1wynlrq"))))
104 (build-system gnu-build-system)
105 (inputs `(("perl" ,perl)))
106 (arguments
107 `(#:tests? #f ; none provided
108 #:phases
530d9e15
EF
109 (modify-phases %standard-phases
110 (replace 'configure
111 (lambda* (#:key inputs outputs #:allow-other-keys #:rest args)
112 (let ((perl (assoc-ref inputs "perl"))
113 (out (assoc-ref outputs "out")))
114 (copy-file "Makefile.unix" "Makefile")
115 (substitute* "Makefile"
116 (("/usr/local/bin/perl") (string-append perl "/bin/perl")))
117 (substitute* "Makefile"
118 (("/usr/local") out))
119 ;; for the install phase
120 (substitute* "Makefile"
121 (("-mkdir") "mkdir -p"))
122 ;; drop installation of non-free files
123 (substitute* "Makefile"
124 ((" install.include") "")))
125 #t)))))
35b9e423 126 (synopsis "Collection of utilities for manipulating PostScript documents")
87ec7a7a
AE
127 (description
128 "PSUtils is a collection of utilities for manipulating PostScript
35b9e423 129documents. Programs included are psnup, for placing out several logical pages
87ec7a7a
AE
130on a single sheet of paper, psselect, for selecting pages from a document,
131pstops, for general imposition, psbook, for signature generation for booklet
132printing, and psresize, for adjusting page sizes.")
166191b3 133 (license (license:non-copyleft "file://LICENSE"
87ec7a7a
AE
134 "See LICENSE in the distribution."))
135 (home-page "http://knackered.org/angus/psutils/")))
136
bf4018fb
AE
137(define-public ghostscript
138 (package
d6158fe7 139 (name "ghostscript")
3f151d90 140 (version "9.27")
0b859092
LC
141
142 ;; The problems addressed by GHOSTSCRIPT/FIXED are not security-related,
143 ;; but they have a significant impact on usability, hence this graft.
144 ;; TODO: Ungraft on next update cycle.
145 (replacement ghostscript/fixed)
146
d6158fe7
LF
147 (source
148 (origin
149 (method url-fetch)
150 (uri (string-append "https://github.com/ArtifexSoftware/"
151 "ghostpdl-downloads/releases/download/gs"
152 (string-delete #\. version)
153 "/ghostscript-" version ".tar.xz"))
154 (sha256
155 (base32
3f151d90 156 "06dnj0mxyaryfbwlsjwaqf847w91w2h8f108kxxcc41nrnx1y3zw"))
87f29c1e 157 (patches (search-patches "ghostscript-no-header-creationdate.patch"
63eb4a2a
DM
158 "ghostscript-no-header-id.patch"
159 "ghostscript-no-header-uuid.patch"))
d6158fe7
LF
160 (modules '((guix build utils)))
161 (snippet
162 ;; Remove bundled libraries. The bundled OpenJPEG is a patched fork so
163 ;; we leave it, at least for now.
164 ;; TODO Try unbundling ijs, which is developed alongside Ghostscript.
68ab0ad5 165 ;; Likewise for the thread-safe lcms2 fork called "lcms2art".
d6158fe7
LF
166 '(begin
167 (for-each delete-file-recursively '("freetype" "jbig2dec" "jpeg"
68ab0ad5 168 "libpng" "tiff" "zlib"))
6cbee49d 169 #t))))
d6158fe7
LF
170 (build-system gnu-build-system)
171 (outputs '("out" "doc")) ;19 MiB of HTML/PS doc + examples
172 (arguments
173 `(#:disallowed-references ("doc")
3f151d90
MB
174 ;; XXX: Starting with version 9.27, building the tests in parallel
175 ;; occasionally fails like this:
176 ;; In file included from ./base/memory_.h:23:0,
177 ;; from ./obj/gsmd5.h:1,
178 ;; from ./obj/gsmd5.c:56:
179 ;; ./base/std.h:25:10: fatal error: arch.h: No such file or directory
180 #:parallel-tests? #f
d6158fe7 181 #:configure-flags
842c44c9
MB
182 (list (string-append "LDFLAGS=-Wl,-rpath="
183 (assoc-ref %outputs "out") "/lib")
184 "--with-system-libtiff"
d6158fe7
LF
185 "LIBS=-lz"
186 (string-append "ZLIBDIR="
187 (assoc-ref %build-inputs "zlib") "/include")
49d035ff
LC
188 "--enable-dynamic"
189
190 ,@(if (%current-target-system)
191 '(;; Specify the native compiler, which is used to build 'echogs'
192 ;; and other intermediary tools when cross-compiling; see
193 ;; <https://ghostscript.com/FAQ.html>.
194 "CCAUX=gcc"
195
196 ;; Save 'config.log' etc. of the native build under
197 ;; auxtmp/, useful for debugging.
198 "--enable-save_confaux")
199 '()))
d6158fe7
LF
200 #:phases
201 (modify-phases %standard-phases
842c44c9
MB
202 (add-before 'configure 'create-output-directory
203 (lambda* (#:key outputs #:allow-other-keys)
204 ;; The configure script refuses to function if the directory
205 ;; specified as -rpath does not already exist.
206 (mkdir-p (string-append (assoc-ref outputs "out") "/lib"))
207 #t))
d6158fe7 208 (add-after 'configure 'remove-doc-reference
eb354bda 209 (lambda _
d6158fe7
LF
210 ;; Don't retain a reference to the 'doc' output in 'gs'.
211 ;; The only use of this definition is in the output of
212 ;; 'gs --help', so this change is fine.
213 (substitute* "base/gscdef.c"
214 (("GS_DOCDIR")
215 "\"~/.guix-profile/share/doc/ghostscript\""))
68ab0ad5
MB
216 ;; The docdir default changed in 9.23 and a compatibility
217 ;; symlink was added from datadir->docdir. Remove it.
218 (substitute* "base/unixinst.mak"
219 (("ln -s \\$\\(DESTDIR\\)\\$\\(docdir\\).*") ""))
d6158fe7
LF
220 #t))
221 (add-after 'configure 'patch-config-files
222 (lambda _
223 (substitute* "base/unixhead.mak"
224 (("/bin/sh") (which "sh")))
225 #t))
49d035ff
LC
226 ,@(if (%current-target-system)
227 `((add-after 'configure 'add-native-lz
228 (lambda _
229 ;; Add missing '-lz' for native tools such as 'mkromfs'.
230 (substitute* "Makefile"
231 (("^AUXEXTRALIBS=(.*)$" _ value)
232 (string-append "AUXEXTRALIBS = -lz " value "\n")))
233 #t)))
234 '())
d6158fe7
LF
235 (replace 'build
236 (lambda _
237 ;; Build 'libgs.so', but don't build the statically-linked 'gs'
238 ;; binary (saves 22 MiB).
eb075edd
MW
239 (invoke "make" "so" "-j"
240 (number->string (parallel-job-count)))))
d6158fe7
LF
241 (replace 'install
242 (lambda _
eb075edd 243 (invoke "make" "soinstall")))
d6158fe7
LF
244 (add-after 'install 'create-gs-symlink
245 (lambda* (#:key outputs #:allow-other-keys)
246 (let ((out (assoc-ref outputs "out")))
247 ;; Some programs depend on having a 'gs' binary available.
248 (symlink "gsc" (string-append out "/bin/gs"))
249 #t))))))
250 (native-inputs
251 `(("perl" ,perl)
252 ("python" ,python-wrapper)
49d035ff
LC
253 ("tcl" ,tcl)
254
255 ;; When cross-compiling, some of the natively-built tools require all
256 ;; these libraries.
257 ,@(if (%current-target-system)
258 `(("zlib/native" ,zlib)
68ab0ad5 259 ("libjpeg/native" ,libjpeg))
49d035ff 260 '())))
d6158fe7
LF
261 (inputs
262 `(("freetype" ,freetype)
263 ("jbig2dec" ,jbig2dec)
d6158fe7
LF
264 ("libjpeg" ,libjpeg)
265 ("libpaper" ,libpaper)
266 ("libpng" ,libpng)
267 ("libtiff" ,libtiff)
268 ("zlib" ,zlib)))
269 (synopsis "PostScript and PDF interpreter")
270 (description
271 "Ghostscript is an interpreter for the PostScript language and the PDF
a22dc0c4
LC
272file format. It also includes a C library that implements the graphics
273capabilities of the PostScript language. It supports a wide variety of
274output file formats and printers.")
d6158fe7
LF
275 (home-page "https://www.ghostscript.com/")
276 (license license:agpl3+)))
1f7c6a1f 277
8161c2d6 278(define ghostscript/fixed
466ff55c
LC
279 ;; This adds the Freetype dependency (among other things), which fixes the
280 ;; rendering issues described in <https://issues.guix.gnu.org/issue/34877>.
281 (package/inherit
282 ghostscript
466ff55c
LC
283 (arguments
284 (substitute-keyword-arguments (package-arguments ghostscript)
285 ((#:configure-flags flags ''())
286 `(append (list "--disable-compile-inits"
287 (string-append "--with-fontpath="
288 (assoc-ref %build-inputs "gs-fonts")
289 "/share/fonts/type1/ghostscript"))
290 ,flags))))
291 (native-inputs `(("pkg-config" ,pkg-config) ;needed for freetype
292 ,@(package-native-inputs ghostscript)))
293 (inputs `(("gs-fonts" ,gs-fonts)
294 ("fontconfig" ,fontconfig)
295 ,@(package-inputs ghostscript)))))
296
7a75b02a 297(define-public ghostscript/x
7020a6ab 298 (package/inherit ghostscript
7a75b02a
MW
299 (name (string-append (package-name ghostscript) "-with-x"))
300 (inputs `(("libxext" ,libxext)
301 ("libxt" ,libxt)
302 ,@(package-inputs ghostscript)))))
303
3e442f85
LC
304(define-public ghostscript/cups
305 (package/inherit ghostscript
306 (name "ghostscript-with-cups")
307 (inputs `(("cups" ,cups-minimal)
308 ,@(package-inputs ghostscript)))))
309
01aae5fc
RW
310(define-public ijs
311 (package
312 (name "ijs")
55af10fb
LF
313 (version (package-version ghostscript))
314 (source (package-source ghostscript))
01aae5fc
RW
315 (build-system gnu-build-system)
316 (native-inputs
317 `(("libtool" ,libtool)
318 ("automake" ,automake)
319 ("autoconf" ,autoconf)))
320 (arguments
321 `(#:phases
1c09eb99
LF
322 (modify-phases %standard-phases
323 (add-after 'unpack 'autogen
324 (lambda _
325 ;; need to regenerate macros
326 (system* "autoreconf" "-if")
327 ;; do not run configure
328 (substitute* "autogen.sh"
329 (("^.*\\$srcdir/configure.*") ""))
330 (system* "bash" "autogen.sh")
331 ;; create configure script in ./ijs/
332 (chdir "ijs")
333 ;; do not run configure
334 (substitute* "autogen.sh"
335 (("^.*\\$srcdir/configure.*") "")
336 (("^ + && echo Now type.*$") ""))
8f52d898 337 (invoke "bash" "autogen.sh"))))))
01aae5fc
RW
338 (synopsis "IJS driver framework for inkjet and other raster devices")
339 (description
340 "IJS is a protocol for transmission of raster page images. This package
341provides the reference implementation of the raster printer driver
342architecture.")
343 (license license:expat)
55af10fb 344 (home-page (package-home-page ghostscript))))
01aae5fc 345
1f7c6a1f
AE
346(define-public gs-fonts
347 (package
348 (name "gs-fonts")
349 (version "8.11")
350 (source (origin
351 (method url-fetch)
352 (uri (string-append "mirror://sourceforge/gs-fonts/gs-fonts/"
353 version
354 "%20%28base%2035%2C%20GPL%29/ghostscript-fonts-std-"
355 version
356 ".tar.gz"))
357 (sha256 (base32
358 "00f4l10xd826kak51wsmaz69szzm2wp8a41jasr4jblz25bg7dhf"))))
359 (build-system gnu-build-system)
360 (arguments
361 `(#:tests? #f ; nothing to check, just files to copy
809bc394
ST
362
363 #:modules ((guix build gnu-build-system)
364 (guix build utils)
365 (srfi srfi-1))
1f7c6a1f 366 #:phases
a6d352cc
EF
367 (modify-phases %standard-phases
368 (delete 'configure)
369 (delete 'build)
370 (replace 'install
371 (lambda* (#:key outputs #:allow-other-keys)
372 (let* ((out (assoc-ref outputs "out"))
373 (dir (string-append out "/share/fonts/type1/ghostscript")))
374 (mkdir-p dir)
375 (for-each
376 (lambda (file)
377 (copy-file file (string-append dir "/" file)))
6449e68d
MW
378 (find-files "." "pfb|afm"))
379 #t))))))
35b9e423 380 (synopsis "Free replacements for the PostScript fonts")
1f7c6a1f 381 (description
35b9e423
EB
382 "Ghostscript fonts provides fonts and font metrics customarily distributed with
383Ghostscript. It currently includes the 35 standard PostScript fonts.")
1f7c6a1f 384 (license license:gpl2)
3b3b60d0 385 (home-page "https://sourceforge.net/projects/gs-fonts/")))
c5ea1201 386
7cf2a2a1
AE
387(define-public libspectre
388 (package
389 (name "libspectre")
94522776 390 (version "0.2.8")
7cf2a2a1
AE
391 (source (origin
392 (method url-fetch)
5cc3096c 393 (uri (string-append "https://libspectre.freedesktop.org/releases/libspectre-"
7cf2a2a1
AE
394 version ".tar.gz"))
395 (sha256 (base32
94522776 396 "1a67iglsc3r05mzngyg9kb1gy8whq4fgsnyjwi7bqfw2i7rnl9b5"))))
7cf2a2a1 397 (build-system gnu-build-system)
c4c4cc05
JD
398 (inputs `(("ghostscript" ,ghostscript)))
399 (native-inputs `(("pkg-config" ,pkg-config)))
35b9e423 400 (synopsis "Postscript rendering library")
7cf2a2a1
AE
401 (description
402 "libspectre is a small library for rendering Postscript documents.
403It provides a convenient easy to use API for handling and rendering
404Postscript documents.")
405 (license license:gpl2+)
57e7d748 406 (home-page "https://www.freedesktop.org/wiki/Software/libspectre")))