gnu: ghostscript: Make build reproducible.
[jackhill/guix/guix.git] / gnu / packages / netpbm.scm
CommitLineData
05bf6f82 1;;; GNU Guix --- Functional package management for GNU
7d8379a7 2;;; Copyright © 2013, 2015 Andreas Enge <andreas@enge.fr>
61dc82d9 3;;; Copyright © 2015, 2016 Ludovic Courtès <ludo@gnu.org>
05bf6f82
AE
4;;;
5;;; This file is part of GNU Guix.
6;;;
7;;; GNU Guix is free software; you can redistribute it and/or modify it
8;;; under the terms of the GNU General Public License as published by
9;;; the Free Software Foundation; either version 3 of the License, or (at
10;;; your option) any later version.
11;;;
12;;; GNU Guix is distributed in the hope that it will be useful, but
13;;; WITHOUT ANY WARRANTY; without even the implied warranty of
14;;; MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
15;;; GNU General Public License for more details.
16;;;
17;;; You should have received a copy of the GNU General Public License
18;;; along with GNU Guix. If not, see <http://www.gnu.org/licenses/>.
19
20(define-module (gnu packages netpbm)
21 #:use-module (gnu packages)
22 #:use-module (gnu packages compression)
23 #:use-module (gnu packages flex)
24 #:use-module (gnu packages ghostscript)
e55354b8 25 #:use-module (gnu packages image)
05bf6f82
AE
26 #:use-module (gnu packages perl)
27 #:use-module (gnu packages pkg-config)
28 #:use-module (gnu packages python)
29 #:use-module (gnu packages xml)
2492581f 30 #:use-module (gnu packages xorg)
7d8379a7 31 #:use-module (guix build-system gnu)
05bf6f82
AE
32 #:use-module ((guix licenses) #:select (gpl2))
33 #:use-module (guix packages)
7d8379a7 34 #:use-module (guix svn-download))
05bf6f82
AE
35
36(define-public netpbm
37 (package
38 (name "netpbm")
664ac384 39 (version "10.78.3")
05bf6f82 40 (source (origin
7d8379a7
AE
41 (method svn-fetch)
42 ;; At the time of first packaging, the "super-stable" and
43 ;; "stable" versions did not compile with newer libpng;
44 ;; we needed the "advanced" version.
836223f7
AE
45 ;; The currently highest stable version is 10.47.53,
46 ;; the currently highest advanced version is 10.69.4,
47 ;; svn release 2397.
7d8379a7
AE
48 ;; To determine the correct release: "svn log version.mk".
49 (uri (svn-reference
50 (url "http://svn.code.sf.net/p/netpbm/code/advanced")
664ac384 51 (revision 2965)))
7d8379a7
AE
52 (sha256
53 (base32
664ac384 54 "1k7as9qi1942wyjxpvbf02wg0h4braw44m3m3vvi8sm9y5z1m967"))
713e0aa4
LC
55 (file-name (string-append name "-" version "-checkout"))
56 (modules '((guix build utils)))
57 (snippet
713e0aa4 58 '(begin
56501d3b 59 ;; Remove non-FSDG-compliant code.
713e0aa4
LC
60
61 (define-syntax drop
62 (syntax-rules (in)
63 ;; Remove PROGRAM from DIRECTORY/Makefile, and remove
64 ;; DIRECTORY/PROGRAM and DIRECTORY/PROGRAM.c.
65 ((_ program ... in directory)
66 (begin
67 (substitute* (string-append directory "/Makefile")
68 ((program) "") ...)
69
70 (let* ((subdir (string-append directory "/" program))
71 (dot-c (string-append subdir ".c")))
72 (when (file-exists? subdir)
73 (delete-file-recursively subdir))
74 (when (file-exists? dot-c)
75 (delete-file dot-c)))
76
77 ...))))
78
79 ;; Drop advertisement for non-free program.
80 (drop "hpcdtoppm" in "converter/ppm")
81
82 ;; Drop programs without a license, see
83 ;; <http://packages.debian.org/changelogs/pool/main/n/netpbm-free/netpbm-free_10.0-12.2/libnetpbm10.copyright>.
84 (drop "pbmto4425" "pbmtoln03" "pbmtolps" "pbmtopk" "pktopbm"
85 in "converter/pbm")
86 (drop "spottopgm" in "converter/pgm")
56501d3b
LC
87 (drop "ppmtopjxl" in "converter/ppm")
88
89 ;; Remove timestamps from the generated code.
90 (substitute* "buildtools/stamp-date"
91 (("^DATE=.*")
92 "DATE=\"Thu Jan 01 00:00:00+0000 1970\"\n")
93 (("^USER=.*")
94 "USER=Guix\n"))))))
95
05bf6f82 96 (build-system gnu-build-system)
c4c4cc05 97 (inputs `(("ghostscript" ,ghostscript)
05bf6f82
AE
98 ("libjpeg" ,libjpeg)
99 ("libpng" ,libpng)
100 ("libtiff" ,libtiff)
101 ("libxml2" ,libxml2)
2492581f 102 ("xorg-rgb" ,xorg-rgb)
05bf6f82 103 ("zlib" ,zlib)))
c4c4cc05
JD
104 (native-inputs
105 `(("flex" ,flex)
106 ("perl" ,perl)
107 ("pkg-config" ,pkg-config)
108 ("python" ,python-wrapper)))
05bf6f82
AE
109 (arguments
110 `(#:phases
1de1c56d
FB
111 (modify-phases %standard-phases
112 (replace 'configure
113 (lambda* (#:key inputs outputs #:allow-other-keys)
114 (copy-file "config.mk.in" "config.mk")
115 (chmod "config.mk" #o664)
116 (let ((f (open-file "config.mk" "a")))
117 (display "CC=gcc\n" f)
118 (display "CFLAGS_SHLIB += -fPIC\n" f)
119 (display "TIFFLIB = libtiff.so\n" f)
120 (display "JPEGLIB = libjpeg.so\n" f)
121 (display "ZLIB = libz.so\n" f)
122 (display (string-append "LDFLAGS += -Wl,-rpath=" %output "/lib") f)
2492581f 123 (close-port f))
61dc82d9 124
2492581f
FB
125 (let ((rgb (string-append (assoc-ref inputs "xorg-rgb")
126 "/share/X11/rgb.txt")))
664ac384
LF
127 (substitute* "config.mk"
128 (("/usr/share/netpbm/rgb.txt") rgb))
61dc82d9
LC
129
130 ;; Our Ghostscript no longer provides the 'gs' command, only
131 ;; 'gsc', so look for that instead.
132 (substitute* "converter/other/pstopnm.c"
133 (("\"%s/gs\"")
134 "\"%s/gsc\"")))
9f9861d7 135 #t))
1de1c56d
FB
136 (add-before 'check 'setup-check
137 (lambda _
138 ;; install temporarily into /tmp/netpbm
139 (system* "make" "package")
140 ;; remove test requiring X
141 (substitute* "test/all-in-place.test" (("pamx") ""))
142 ;; do not worry about non-existing file
143 (substitute* "test/all-in-place.test" (("^rm ") "rm -f "))
144 ;; remove four tests that fail for unknown reasons
145 (substitute* "test/Test-Order"
146 (("all-in-place.test") "")
147 (("pnmpsnr.test") "")
148 (("pnmremap1.test") "")
664ac384
LF
149 (("gif-roundtrip.test") "")
150
151 ;; These two tests started failing in netpbm-10.78.3.
152 (("jpeg-roundtrip.test") "")
153 (("pbmtext.test") "")
154
155 ;; Skip tests that use nonfree programs that we don't build.
156 (("ps-alt-roundtrip.test") "" )
157 (("pbm-misc-converters.test") ""))
9f9861d7 158 #t))
1de1c56d
FB
159 (replace 'install
160 (lambda* (#:key outputs make-flags #:allow-other-keys)
161 (let ((out (assoc-ref outputs "out")))
162 (apply system* "make" "package"
163 (string-append "pkgdir=" out) make-flags)
164 ;; copy static library
165 (copy-file (string-append out "/link/libnetpbm.a")
166 (string-append out "/lib/libnetpbm.a"))
167 ;; remove superfluous folders and files
168 (system* "rm" "-r" (string-append out "/link"))
169 (system* "rm" "-r" (string-append out "/misc"))
170 (with-directory-excursion out
171 (for-each delete-file
172 '("config_template" "pkginfo" "README"
9f9861d7
FB
173 "VERSION")))
174 #t))))))
35b9e423 175 (synopsis "Toolkit for manipulation of images")
05bf6f82
AE
176 (description
177 "Netpbm is a toolkit for the manipulation of graphic images, including
178the conversion of images between a variety of different formats.
179There are over 300 separate tools in the package including converters for
180about 100 graphics formats.")
181 (license gpl2)
182 (home-page "http://netpbm.sourceforge.net/")))