gnu: r-fourcseq: Move to (gnu packages bioconductor).
[jackhill/guix/guix.git] / gnu / packages / imagemagick.scm
CommitLineData
7fa37abc 1;;; GNU Guix --- Functional package management for GNU
3a4de6b2 2;;; Copyright © 2013, 2014, 2015 Ludovic Courtès <ludo@gnu.org>
b56a918f 3;;; Copyright © 2015 Eric Bavier <bavier@member.fsf.org>
ac838d0f 4;;; Copyright © 2015 Ricardo Wurmus <rekado@elephly.net>
4d93a761 5;;; Copyright © 2016 Leo Famulari <leo@famulari.name>
1cc21385 6;;; Copyright © 2016 Mark H Weaver <mhw@netris.org>
0ff44ba4 7;;; Copyright © 2017 Efraim Flashner <efraim@flashner.co.il>
304ed82c 8;;; Copyright © 2018, 2019 Tobias Geerinckx-Rice <me@tobias.gr>
c991806a 9;;; Copyright © 2018 Alex Vong <alexvong1995@gmail.com>
7fa37abc
LC
10;;;
11;;; This file is part of GNU Guix.
12;;;
13;;; GNU Guix is free software; you can redistribute it and/or modify it
14;;; under the terms of the GNU General Public License as published by
15;;; the Free Software Foundation; either version 3 of the License, or (at
16;;; your option) any later version.
17;;;
18;;; GNU Guix is distributed in the hope that it will be useful, but
19;;; WITHOUT ANY WARRANTY; without even the implied warranty of
20;;; MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
21;;; GNU General Public License for more details.
22;;;
23;;; You should have received a copy of the GNU General Public License
24;;; along with GNU Guix. If not, see <http://www.gnu.org/licenses/>.
25
26(define-module (gnu packages imagemagick)
27 #:use-module (guix packages)
28 #:use-module (guix build-system gnu)
b56a918f 29 #:use-module (guix build-system perl)
7fa37abc 30 #:use-module (guix download)
ac838d0f 31 #:use-module (guix utils)
bf50f7b5 32 #:use-module ((guix licenses) #:prefix license:)
2ed74cea 33 #:use-module (gnu packages)
9b937137 34 #:use-module (gnu packages algebra)
7fa37abc 35 #:use-module (gnu packages compression)
9b937137
AE
36 #:use-module (gnu packages fontutils)
37 #:use-module (gnu packages ghostscript)
7fa37abc 38 #:use-module (gnu packages graphviz)
7fa37abc 39 #:use-module (gnu packages gtk)
e55354b8 40 #:use-module (gnu packages image)
9b937137
AE
41 #:use-module (gnu packages pkg-config)
42 #:use-module (gnu packages xml)
43 #:use-module (gnu packages xorg))
7fa37abc
LC
44
45(define-public imagemagick
46 (package
47 (name "imagemagick")
5ba5b4b2
LF
48 ;; The 7 release series has an incompatible API, while the 6 series is still
49 ;; maintained. Don't update to 7 until we've made sure that the ImageMagick
50 ;; users are ready for the 7-series API.
36c50eab 51 (version "6.9.11-11")
7fa37abc
LC
52 (source (origin
53 (method url-fetch)
54 (uri (string-append "mirror://imagemagick/ImageMagick-"
55 version ".tar.xz"))
56 (sha256
57 (base32
36c50eab 58 "1b67rrppvm04aqr76qky5h2a0j2d161h8kwa04fv611w5xwandr2"))))
7fa37abc
LC
59 (build-system gnu-build-system)
60 (arguments
2c5bc95a
MB
61 `(#:configure-flags '("--with-frozenpaths" "--without-gcc-arch"
62
63 ;; Do not embed the build date in binaries.
64 "--enable-reproducible-build")
65
e98e9f4e
MW
66 ;; FIXME: The test suite succeeded before version 6.9.6-2.
67 ;; Try enabling it again with newer releases.
68 #:tests? #f
3cbf1204 69 #:phases (modify-phases %standard-phases
790c3717
LC
70 (add-before
71 'build 'pre-build
72 (lambda* (#:key outputs #:allow-other-keys)
73 (substitute* "Makefile"
74 ;; Clear the `LIBRARY_PATH' setting, which otherwise
75 ;; interferes with our own use.
76 (("^LIBRARY_PATH[[:blank:]]*=.*$")
77 "")
7fa37abc 78
790c3717
LC
79 ;; Since the Makefile overrides $docdir, modify it to
80 ;; refer to what we want.
81 (("^DOCUMENTATION_PATH[[:blank:]]*=.*$")
82 (let ((doc (assoc-ref outputs "doc")))
83 (string-append "DOCUMENTATION_PATH = "
84 doc "/share/doc/"
a440d01a
MW
85 ,name "-" ,version "\n"))))
86 #t))
790c3717
LC
87 (add-before
88 'configure 'strip-configure-xml
89 (lambda _
90 (substitute* "config/configure.xml.in"
91 ;; Do not record 'configure' arguments in the
92 ;; configure.xml file that gets installed: That would
93 ;; include --docdir, and thus retain a reference to the
94 ;; 'doc' output.
95 (("@CONFIGURE_ARGS@")
a440d01a
MW
96 "not recorded"))
97 #t)))))
9b937137
AE
98 ;; TODO: Add Jasper etc.
99 (inputs `(("fftw" ,fftw)
100 ("graphviz" ,graphviz)
7fa37abc 101 ("ghostscript" ,ghostscript)
9b937137 102 ("lcms" ,lcms)
7fa37abc
LC
103 ("libx11" ,libx11)
104 ("zlib" ,zlib)
105 ("libxml2" ,libxml2)
106 ("libtiff" ,libtiff)
107 ("libpng" ,libpng)
4bd428a7 108 ("libjpeg" ,libjpeg-turbo)
7fa37abc
LC
109 ("pango" ,pango)
110 ("freetype" ,freetype)
111 ("bzip2" ,bzip2)
c4c4cc05
JD
112 ("xz" ,xz)))
113 (native-inputs `(("pkg-config" ,pkg-config)))
7fa37abc
LC
114 (outputs '("out"
115 "doc")) ; 26 MiB of HTML documentation
61e1d6a7 116 (home-page "https://www.imagemagick.org/")
7fa37abc
LC
117 (synopsis "Create, edit, compose, or convert bitmap images")
118 (description
c598e35c 119 "ImageMagick is a software suite to create, edit, compose, or convert
35b9e423 120bitmap images. It can read and write images in a variety of formats (over 100)
7fa37abc 121including DPX, EXR, GIF, JPEG, JPEG-2000, PDF, PhotoCD, PNG, Postscript, SVG,
35b9e423 122and TIFF. Use ImageMagick to resize, flip, mirror, rotate, distort, shear and
7fa37abc
LC
123transform images, adjust image colors, apply various special effects, or draw
124text, lines, polygons, ellipses and Bézier curves.")
bf50f7b5 125 (license (license:fsf-free "http://www.imagemagick.org/script/license.php"))))
b56a918f
EB
126
127(define-public perl-image-magick
128 (package
129 (name "perl-image-magick")
130 (version "6.89")
131 (source
132 (origin
133 (method url-fetch)
134 (uri (string-append "mirror://cpan/authors/id/J/JC/JCRISTY/"
135 "PerlMagick-" version "-1.tar.gz"))
136 (sha256
137 (base32
138 "0n9afy1z5bhf9phrbahnkwhgcmijn8jggpbzwrivw1zhliliiy68"))))
139 (build-system perl-build-system)
140 (native-inputs `(("pkg-config" ,pkg-config)))
141 (inputs `(("imagemagick" ,imagemagick)))
142 (arguments
49735d8d
JN
143 `(#:tests? #f ;;Failed 2/23 test programs. 2/353 subtests failed.
144 #:phases
b56a918f
EB
145 (modify-phases %standard-phases
146 (add-before
3a4de6b2 147 'configure 'image-magick-flags
b56a918f
EB
148 (lambda* (#:key inputs #:allow-other-keys)
149 (let ((im (assoc-ref inputs "imagemagick")))
150 (substitute* "Makefile.PL"
151 (("my \\$INC_magick = .*")
152 "my $INC_magick = `pkg-config --cflags ImageMagick`;\n")
153 (("my \\$LIBS_magick = .*")
173b647f
MW
154 "my $LIBS_magick = `pkg-config --libs ImageMagick`;\n"))
155 #t)))
b56a918f 156 (add-before
3a4de6b2 157 'check 'skip-mpeg-tests
b56a918f
EB
158 (lambda _
159 ;; TODO: MPEG tests fail even though our imagemagick supports
160 ;; MPEG. Has been reported elsewhere,
161 ;; http://www.imagemagick.org/discourse-server/viewtopic.php?f=7&t=25036,
162 ;; so skip for now.
173b647f
MW
163 (delete-file "t/mpeg/read.t")
164 #t)))))
9aba9b12 165 (home-page "https://metacpan.org/release/PerlMagick")
b56a918f
EB
166 (synopsis "Perl interface to ImageMagick")
167 (description "This Perl extension allows the reading, manipulation and
168writing of a large number of image file formats using the ImageMagick library.
169Use it to create, edit, compose, or convert bitmap images from within a Perl
170script.")
171 ;; See Magick.pm
172 (license (package-license imagemagick))))
ac838d0f
RW
173
174(define-public graphicsmagick
6d5deda1
LF
175 (package
176 (name "graphicsmagick")
6d84566e 177 (version "1.3.35")
304ed82c
TGR
178 (source
179 (origin
180 (method url-fetch)
181 (uri
182 (list
183 (string-append "mirror://sourceforge/graphicsmagick/graphicsmagick"
184 "/" version "/GraphicsMagick-" version ".tar.xz")
185 (string-append "ftp://ftp.graphicsmagick.org/pub/"
186 "GraphicsMagick/" (version-major+minor version)
187 "/GraphicsMagick-" version ".tar.xz")))
188 (sha256
7c73da99 189 (base32
6d84566e 190 "0l024l4hawm9s3jqrgi2j0lxgm61dqh8sgkj1017ma7y11hqv2hq"))))
6d5deda1
LF
191 (build-system gnu-build-system)
192 (arguments
193 `(#:configure-flags
194 (list "--with-frozenpaths"
195 "--enable-shared=yes"
196 "--with-x=yes"
197 "--with-quantum-depth=16" ; required by Octave
198 "--enable-quantum-library-names"
199 (string-append "--with-gs-font-dir="
200 (assoc-ref %build-inputs "gs-fonts")
201 "/share/fonts/type1/ghostscript"))))
202 (inputs
203 `(("graphviz" ,graphviz)
204 ("ghostscript" ,ghostscript)
205 ("gs-fonts" ,gs-fonts)
206 ("lcms" ,lcms)
207 ("libx11" ,libx11)
208 ("libxml2" ,libxml2)
209 ("libtiff" ,libtiff)
210 ("libpng" ,libpng)
4bd428a7 211 ("libjpeg" ,libjpeg-turbo)
6d5deda1
LF
212 ("freetype" ,freetype)
213 ("bzip2" ,bzip2)
214 ("xz" ,xz)
215 ("zlib" ,zlib)))
216 (native-inputs
217 `(("pkg-config" ,pkg-config)))
218 (outputs '("out" ; 13 MiB
219 "doc")) ; ~7 MiB
220 (home-page "http://www.graphicsmagick.org")
221 (synopsis "Create, edit, compose, or convert bitmap images")
222 (description
223 "GraphicsMagick provides a comprehensive collection of utilities,
ac838d0f
RW
224programming interfaces, and GUIs, to support file format conversion, image
225processing, and 2D vector rendering.")
6d5deda1 226 (license license:expat)))