gnu: facter: Update to 4.0.34.
[jackhill/guix/guix.git] / gnu / packages / fontutils.scm
CommitLineData
b387a1c5 1;;; GNU Guix --- Functional package management for GNU
f1597358 2;;; Copyright © 2013, 2014, 2015 Andreas Enge <andreas@enge.fr>
1e69db8f 3;;; Copyright © 2014, 2016 Eric Bavier <bavier@member.fsf.org>
e86409c5 4;;; Copyright © 2016 Mark H Weaver <mhw@netris.org>
1c598515 5;;; Copyright © 2016, 2017 Efraim Flashner <efraim@flashner.co.il>
37e78bc7 6;;; Copyright © 2017 Rene Saavedra <rennes@openmailbox.org>
4c20b0bc 7;;; Copyright © 2017 Leo Famulari <leo@famulari.name>
3c986a7d 8;;; Copyright © 2017 Nikita <nikita@n0.is>
af18fff0 9;;; Copyright © 2017, 2018 Tobias Geerinckx-Rice <me@tobias.gr>
695c501d 10;;; Copyright © 2018 Ricardo Wurmus <rekado@elephly.net>
7670efef 11;;; Copyright © 2018, 2019 Ludovic Courtès <ludo@gnu.org>
6e3cbafb 12;;; Copyright © 2019, 2020 Marius Bakke <mbakke@fastmail.com>
cc51c03f 13;;; Copyright © 2020 Roel Janssen <roel@gnu.org>
a1797f32 14;;; Copyright © 2020 Nicolas Goaziou <mail@nicolasgoaziou.fr>
b387a1c5
AE
15;;;
16;;; This file is part of GNU Guix.
17;;;
18;;; GNU Guix is free software; you can redistribute it and/or modify it
19;;; under the terms of the GNU General Public License as published by
20;;; the Free Software Foundation; either version 3 of the License, or (at
21;;; your option) any later version.
22;;;
23;;; GNU Guix is distributed in the hope that it will be useful, but
24;;; WITHOUT ANY WARRANTY; without even the implied warranty of
25;;; MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
26;;; GNU General Public License for more details.
27;;;
28;;; You should have received a copy of the GNU General Public License
29;;; along with GNU Guix. If not, see <http://www.gnu.org/licenses/>.
30
a86177d6 31(define-module (gnu packages fontutils)
b387a1c5 32 #:use-module (gnu packages)
e5c0701f 33 #:use-module (gnu packages compression)
427a51fd 34 #:use-module (gnu packages check)
b972db72 35 #:use-module (gnu packages ghostscript)
019c0eda 36 #:use-module (gnu packages linux)
319e2d17 37 #:use-module (gnu packages perl)
6e4da6ea 38 #:use-module (gnu packages pkg-config)
f945bf06 39 #:use-module (gnu packages autotools)
ab9de8cf 40 #:use-module (gnu packages fonts)
0c115d8c 41 #:use-module (gnu packages gettext)
319e2d17 42 #:use-module (gnu packages python)
44d10b1f 43 #:use-module (gnu packages python-xyz)
0c115d8c 44 #:use-module (gnu packages image)
1e69db8f
EB
45 #:use-module (gnu packages bison)
46 #:use-module (gnu packages flex)
0c115d8c 47 #:use-module (gnu packages glib)
70564e71 48 #:use-module (gnu packages gperf)
0c115d8c 49 #:use-module (gnu packages xorg)
a1797f32 50 #:use-module (gnu packages fribidi)
0c115d8c 51 #:use-module (gnu packages gtk)
6e4da6ea 52 #:use-module (gnu packages xml)
ad8aaf47
BD
53 #:use-module (gnu packages sqlite)
54 #:use-module (gnu packages gnome)
55 #:use-module (gnu packages freedesktop)
b5b73a82 56 #:use-module ((guix licenses) #:prefix license:)
b387a1c5
AE
57 #:use-module (guix packages)
58 #:use-module (guix download)
1436c5c7 59 #:use-module (guix svn-download)
579760d0 60 #:use-module (guix git-download)
319e2d17 61 #:use-module (guix build-system cmake)
427a51fd 62 #:use-module (guix build-system gnu)
ad8aaf47 63 #:use-module (guix build-system python)
4affa918
MB
64 #:use-module (guix build-system meson)
65 #:use-module (guix utils)
66 #:use-module (srfi srfi-1))
b387a1c5
AE
67
68(define-public freetype
69 (package
70 (name "freetype")
e81b14f0 71 (version "2.10.1")
b387a1c5
AE
72 (source (origin
73 (method url-fetch)
36ee486f 74 (uri (string-append "mirror://savannah/freetype/freetype-"
e81b14f0 75 version ".tar.xz"))
b387a1c5 76 (sha256 (base32
e81b14f0 77 "0vx2dg1jh5kq34dd6ifpjywkpapp8a7p1bvyq9yq5zi1i94gmnqn"))))
b387a1c5 78 (build-system gnu-build-system)
695c501d
RW
79 (arguments
80 ;; The use of "freetype-config" is deprecated, but other packages still
81 ;; depend on it.
82 `(#:configure-flags (list "--enable-freetype-config")))
6983ba56
SB
83 (native-inputs
84 `(("pkg-config" ,pkg-config)))
85 (propagated-inputs
86 ;; These are all in the Requires.private field of freetype2.pc.
87 ;; XXX: add harfbuzz.
88 `(("libpng" ,libpng)
89 ("zlib" ,zlib)))
35b9e423 90 (synopsis "Font rendering library")
b387a1c5
AE
91 (description
92 "Freetype is a library that can be used by applications to access the
35b9e423 93contents of font files. It provides a uniform interface to access font files.
b387a1c5 94It supports both bitmap and scalable formats, including TrueType, OpenType,
35b9e423 95Type1, CID, CFF, Windows FON/FNT, X11 PCF, and others. It supports high-speed
b387a1c5 96anti-aliased glyph bitmap generation with 256 gray levels.")
79c398a2 97 (license license:freetype) ; some files have other licenses
c70047f1 98 (home-page "https://www.freetype.org/")))
6e4da6ea 99
1e69db8f
EB
100(define-public ttfautohint
101 (package
102 (name "ttfautohint")
103 (version "1.5")
104 (source
105 (origin
106 (method url-fetch)
107 (uri (string-append "mirror://savannah/freetype/ttfautohint-"
108 version ".tar.gz"))
109 (sha256
110 (base32
111 "1lgghck46p33z3hg8dnl76jryig4fh6d8rhzms837zp7x4hyfkv4"))
112 (patches (list (search-patch "ttfautohint-source-date-epoch.patch")))))
113 (build-system gnu-build-system)
114 (native-inputs
115 `(("flex" ,flex)
116 ("bison" ,bison)
117 ("pkg-config" ,pkg-config)))
118 (inputs
119 `(("freetype" ,freetype)
120 ("harfbuzz" ,harfbuzz)))
121 (arguments
122 `(#:configure-flags '("--with-qt=no"))) ;no gui
123 (synopsis "Automated font hinting")
124 (description
125 "ttfautohint provides a 99% automated hinting process and a platform for
126finely hand-hinting the last 1%. It is ideal for web fonts and supports many
127scripts.")
128 (license (list license:gpl2+ license:freetype)) ;choose one or the other
44ff40c2 129 (home-page "https://www.freetype.org/ttfautohint/")))
1e69db8f 130
508a85df
EB
131(define-public woff-tools
132 (package
133 (name "woff-tools")
134 (version "2009.10.04")
135 (source
136 (origin
137 (method url-fetch)
138 ;; Upstream source is unversioned, so use Debian's versioned tarball
139 (uri (string-append "mirror://debian/pool/main/w/woff-tools/"
140 "woff-tools_" version ".orig.tar.gz"))
141 (file-name (string-append name "-" version ".tar.gz"))
142 (sha256
143 (base32
144 "1i97gkqa6jfzlslsngqf556kx60knlgf7yc9pzsq2pizc6f0d4zl"))))
145 (build-system gnu-build-system)
146 (inputs
147 `(("zlib" ,zlib)))
148 (arguments
149 `(#:make-flags '("CC=gcc")
150 #:tests? #f ;no tests
151 #:phases
152 (modify-phases %standard-phases
153 (delete 'configure) ;no configuration
154 (replace 'install
155 (lambda* (#:key outputs #:allow-other-keys)
156 (let* ((out (assoc-ref outputs "out"))
157 (bin (string-append out "/bin")))
158 (install-file "sfnt2woff" bin)
159 (install-file "woff2sfnt" bin)))))))
160 (synopsis "Convert between OpenType and WOFF fonts")
161 (description
162 "This package provides two tools:
163@table @code
164@item sfnt2woff
165Converts OpenType fonts to WOFF fonts
166@item woff2sfnt
167Converts WOFF fonts to OpenType fonts
168@end table")
169 (license (list license:mpl1.1 license:gpl2+ license:lgpl2.1+))
170 (home-page "https://people.mozilla.com/~jkew/woff/")))
171
1555aee7
EB
172(define-public ttf2eot
173 (package
174 (name "ttf2eot")
af18fff0 175 (version "0.0.3")
1555aee7
EB
176 (source
177 (origin
af18fff0
TGR
178 (method git-fetch)
179 (uri (git-reference
b0e7b699 180 (url "https://github.com/wget/ttf2eot")
af18fff0
TGR
181 (commit (string-append "v" version))))
182 (file-name (git-file-name name version))
1555aee7
EB
183 (sha256
184 (base32
af18fff0 185 "0l2yh2ialx7135pjzhjs204kk3br7zxjr09zwaia493by2adzigr"))
1555aee7
EB
186 (patches (list (search-patch "ttf2eot-cstddef.patch")))))
187 (build-system gnu-build-system)
188 (arguments
af18fff0 189 `(#:tests? #f ; no tests
1555aee7
EB
190 #:phases
191 (modify-phases %standard-phases
af18fff0
TGR
192 (delete 'configure) ; no configuration
193 (replace 'install ; no install target
1555aee7
EB
194 (lambda* (#:key outputs #:allow-other-keys)
195 (let* ((out (assoc-ref outputs "out"))
196 (bin (string-append out "/bin")))
bf43e133
TGR
197 (install-file "ttf2eot" bin)
198 #t))))))
1555aee7
EB
199 (synopsis "Convert from TrueType to Embeddable Open Type")
200 (description
201 "This package contains a commandline wrapper around OpenTypeUtilities.cpp
202from Chromium, used to make EOT (Embeddable Open Type) files from
203TTF (TrueType/OpenType Font) files.")
204 ;; While the README states "License: Derived from WebKit, so BSD/LGPL
205 ;; 2/LGPL 2.1", the single derived source file includes only BSD in its
206 ;; license header, and the wrapper source contains no license header.
207 (license license:bsd-2)
af18fff0 208 (home-page "https://github.com/wget/ttf2eot")))
1555aee7 209
64965a06
LC
210(define-public ttf2pt1
211 (package
212 (name "ttf2pt1")
213 (version "3.4.4")
214 (source (origin
215 (method url-fetch)
216 (uri (string-append "mirror://sourceforge/ttf2pt1/ttf2pt1/"
217 version "/ttf2pt1-" version ".tgz"))
218 (sha256
219 (base32
220 "1l718n4k4widx49xz7qrj4mybzb8q67kp2jw7f47604ips4654mf"))
221 (modules '((guix build utils)))
222 (snippet
223 '(begin
224 ;; Remove trailing backslashes in the sed expression of the
225 ;; 'install' rule since sed would otherwise fail.
226 (substitute* "Makefile"
227 (("\\|;\\\\[[:space:]]*$") "|; "))
228 #t))))
229 (build-system gnu-build-system)
230 (arguments
231 '(#:tests? #f ;no tests
232 #:phases (modify-phases %standard-phases
233 (replace 'configure
234 (lambda* (#:key outputs #:allow-other-keys)
235 (let ((out (assoc-ref outputs "out")))
236 (substitute* "Makefile"
237 (("INSTDIR =.*")
238 (string-append "INSTDIR = " out "\n"))
239 (("OWNER = .*")
240 "OWNER = `id -un`\n")
241 (("GROUP = .*")
242 "GROUP = `id -g`\n"))
243 #t)))
244 (replace 'build
245 (lambda _
246 (invoke "make" "-j"
247 (number->string (parallel-job-count))
248 "all" "CC=gcc"))))))
249 (inputs `(("perl" ,perl)))
250 (synopsis "Convert TrueType fonts to Postscript Type 1")
251 (description
252 "TTF2PT1 provides tools to convert most TrueType fonts (or other formats
253supported by the FreeType library) to an Adobe Type 1 @file{.pfa} or
254@file{.pfb} file. Another use is as a hinting engine: feed it an unhinted or
255poorly hinted Adobe Type 1 font through the FreeType library and get it back
256with freshly generated hints. The files produced by default are in
257human-readable form, which further needs to be encoded with t1utilities to
258work with most software requiring Type 1 fonts.")
259 (home-page "http://ttf2pt1.sourceforge.net/")
260 (license license:bsd-3)))
261
579760d0 262(define-public woff2
d9476a37
LDB
263 (package
264 (name "woff2")
265 (version "1.0.2")
266 (source (origin
267 (method git-fetch)
268 (uri (git-reference
b0e7b699 269 (url "https://github.com/google/woff2")
d9476a37
LDB
270 (commit (string-append "v" version))))
271 (file-name (string-append name "-" version ".git"))
272 (sha256
273 (base32
274 "13l4g536h0pr84ww4wxs2za439s0xp1va55g6l478rfbb1spp44y"))))
275 (build-system cmake-build-system)
276 (native-inputs
277 `(("pkg-config" ,pkg-config)))
278 (inputs
279 `(("google-brotli" ,google-brotli)))
280 (arguments
281 ;; package has no tests
282 `(#:tests? #f
283 ;; we can’t have both, shared libraries and binaries, so turn off the
284 ;; former
285 #:configure-flags (list "-DBUILD_SHARED_LIBS=OFF")))
286 (synopsis "Compress TrueType fonts to WOFF2")
287 (description
288 "This package provides utilities for compressing/decompressing TrueType
579760d0 289fonts to/from the WOFF2 format.")
d9476a37
LDB
290 (license license:asl2.0)
291 (home-page "https://github.com/google/woff2")))
579760d0 292
6e4da6ea
AE
293(define-public fontconfig
294 (package
295 (name "fontconfig")
ab9de8cf
MB
296
297 ;; This replacement is not security-related, but works around the fact
298 ;; that gs-fonts are not recognized by newer versions of Pango, causing
299 ;; many applications to fail to find fonts otherwise.
300 (replacement fontconfig/font-dejavu)
301
529c3622 302 (version "2.13.1")
6e4da6ea
AE
303 (source (origin
304 (method url-fetch)
305 (uri (string-append
5cc3096c 306 "https://www.freedesktop.org/software/fontconfig/release/fontconfig-"
6e4da6ea 307 version ".tar.bz2"))
9dd9e8fa 308 (patches (search-patches "fontconfig-hurd-path-max.patch"))
6e4da6ea 309 (sha256 (base32
529c3622 310 "0hb700a68kk0ip51wdlnjjc682kvlrmb6q920mzajykdk0mdsmgn"))))
6e4da6ea 311 (build-system gnu-build-system)
019c0eda 312 ;; In Requires or Requires.private of fontconfig.pc.
80650d77 313 (propagated-inputs `(("expat" ,expat)
019c0eda 314 ("freetype" ,freetype)
bb93042c 315 ("libuuid" ,util-linux "lib")))
80650d77 316 (inputs `(("gs-fonts" ,gs-fonts)))
c4c4cc05 317 (native-inputs
2b174b4e 318 `(("gperf" ,gperf)
70564e71 319 ("pkg-config" ,pkg-config)))
0ceea4f3 320 (arguments
030fa12e
SB
321 `(#:configure-flags
322 (list "--with-cache-dir=/var/cache/fontconfig"
323 ;; register gs-fonts as default fonts
324 (string-append "--with-default-fonts="
325 (assoc-ref %build-inputs "gs-fonts")
326 "/share/fonts")
e71ef7ad 327
f8835ff4
AK
328 ;; Register fonts from user and system profiles.
329 (string-append "--with-add-fonts="
330 "~/.guix-profile/share/fonts,"
331 "/run/current-system/profile/share/fonts")
e71ef7ad 332
030fa12e
SB
333 ;; python is not actually needed
334 "PYTHON=false")
335 #:phases
336 (modify-phases %standard-phases
337 (replace 'install
338 (lambda _
339 ;; Don't try to create /var/cache/fontconfig.
21398eda
MW
340 (invoke "make" "install"
341 "fc_cachedir=$(TMPDIR)"
342 "RUN_FC_CACHE_TEST=false"))))))
9e771e3b 343 (synopsis "Library for configuring and customizing font access")
6e4da6ea
AE
344 (description
345 "Fontconfig can discover new fonts when installed automatically;
346perform font name substitution, so that appropriate alternative fonts can
347be selected if fonts are missing;
348identify the set of fonts required to completely cover a set of languages;
349have GUI configuration tools built as it uses an XML-based configuration file;
350efficiently and quickly find needed fonts among the set of installed fonts;
351be used in concert with the X Render Extension and FreeType to implement
352high quality, anti-aliased and subpixel rendered text on a display.")
353 ; The exact license is more X11-style than BSD-style.
166191b3 354 (license (license:non-copyleft "file://COPYING"
6e4da6ea 355 "See COPYING in the distribution."))
57e7d748 356 (home-page "https://www.freedesktop.org/wiki/Software/fontconfig")))
313b9012 357
ab9de8cf
MB
358(define fontconfig/font-dejavu
359 (package
360 (inherit fontconfig)
361 (inputs
362 ;; XXX: Reuse the name to avoid having to override the configure flags.
363 `(("gs-fonts" ,font-dejavu)))))
364
313b9012
AE
365(define-public t1lib
366 (package
367 (name "t1lib")
368 (version "5.1.2")
369 (source (origin
370 (method url-fetch)
a60c705b
EF
371 (uri (list (string-append "ftp://sunsite.unc.edu/pub/Linux/libs/"
372 "graphics/" name "-" version ".tar.gz")
373 (string-append "https://fossies.org/linux/misc/old/"
374 name "-" version ".tar.gz")))
313b9012 375 (sha256 (base32
4f3e02f1
EF
376 "0nbvjpnmcznib1nlgg8xckrmsw3haa154byds2h90y2g0nsjh4w2"))
377 (patches (search-patches
9c2d2c13 378 "t1lib-CVE-2010-2642.patch" ; 2011-0443, 2011-5244
4f3e02f1 379 "t1lib-CVE-2011-0764.patch"
9c2d2c13
EF
380 "t1lib-CVE-2011-1552+.patch")))) ; 2011-1553, 2011-1554
381 (properties `((lint-hidden-cve . ("CVE-2011-0433"
382 "CVE-2011-1553"
383 "CVE-2011-1554"
384 "CVE-2011-5244"))))
313b9012
AE
385 (build-system gnu-build-system)
386 (arguments
387 ;; Making the documentation requires latex, but t1lib is also an input
388 ;; for building texlive.
389 `(#:tests? #f ; no test target
390 #:make-flags
391 '("without_doc")))
9e771e3b 392 (synopsis "Library for generating bitmaps from Type 1 fonts")
313b9012
AE
393 (description
394 "T1lib is a library for generating/rasterising bitmaps from Type 1 fonts.
395It is based on the code of the X11 rasteriser of the X11 project.
396
397The bitmaps created by t1lib are returned in a data structure with type
35b9e423
EB
398GLYPH. This special GLYPH-type is also used in the X11 window system to
399describe character bitmaps. It contains the bitmap data as well as some
400metric information. But t1lib is in itself entirely independent of the
401X11-system or any other graphical user interface.")
313b9012 402 (license license:gpl2)
d716a474 403 (home-page "https://www.t1lib.org/")))
e5c0701f
AE
404
405(define-public teckit
406 (package
93a55838 407 (name "teckit")
792d526a 408 (version "2.5.9") ;signed by key 0xC9183BEA0288CDEE
93a55838
MB
409 (source
410 (origin
411 (method url-fetch)
412 (uri (string-append "https://github.com/silnrsi/teckit/releases/"
413 "download/v" version "/teckit-" version ".tar.gz"))
414 (sha256
792d526a 415 (base32 "0gbxyip4wdibirdg2pvzayzyy927vxyd6dfyfiflx8zg88qzn8v8"))))
93a55838 416 (build-system gnu-build-system)
9d2c24d2
MB
417 (arguments
418 '(#:configure-flags '("--disable-static")))
93a55838
MB
419 (inputs
420 `(("zlib" ,zlib)
421 ("expat" ,expat)))
422 (native-inputs
423 `(("perl" ,perl))) ;for the tests
424 (synopsis "Toolkit for encoding conversions")
425 (description
426 "TECkit is a low-level toolkit intended to be used by other applications
e5c0701f 427that need to perform encoding conversions (e.g., when importing legacy data
35b9e423 428into a Unicode-based application). The primary component of the TECkit
e5c0701f 429package is therefore a library that performs conversions; this is the
35b9e423 430\"TECkit engine\". The engine relies on mapping tables in a specific binary
e5c0701f
AE
431format (for which documentation is available); there is a compiler that
432creates such tables from a human-readable mapping description (a simple
433text file).
434
435To facilitate the development and testing of mapping tables for TECkit,
436several applications are also included in the current package; these
437include simple tools for applying conversions to plain-text and Standard
438Format files, as well as both command-line and simple GUI versions of the
35b9e423 439TECkit compiler. However, it is not intended that these tools will be the
e5c0701f
AE
440primary means by which end users perform conversions, and they have not
441been designed, tested, and debugged to the extent that general-purpose
442applications should be.")
93a55838
MB
443 (license license:lgpl2.1+)
444 (home-page "http://scripts.sil.org/cms/scripts/page.php?cat_id=teckit")))
319e2d17
AE
445
446(define-public graphite2
447 (package
448 (name "graphite2")
8152024c 449 (version "1.3.13")
319e2d17
AE
450 (source
451 (origin
452 (method url-fetch)
6983ba56
SB
453 (uri (string-append "https://github.com/silnrsi/graphite/releases/"
454 "download/" version "/" name "-" version ".tgz"))
319e2d17 455 (sha256
297a36ab 456 (base32
8152024c 457 "01jzhwnj1c3d68dmw15jdxly0hwkmd8ja4kw755rbkykn1ly2qyx"))))
319e2d17 458 (build-system cmake-build-system)
c4fa3918
MB
459 (arguments
460 `(#:phases (modify-phases %standard-phases
461 (add-after 'unpack 'adjust-test-PYTHONPATH
462 (lambda _
463 ;; Tell the build system not to override PYTHONPATH
464 ;; while running the Python tests.
465 (substitute* "Graphite.cmake"
466 (("ENVIRONMENT PYTHONPATH=")
467 (string-append "ENVIRONMENT PYTHONPATH="
468 (getenv "PYTHONPATH") ":")))
469 #t)))))
e6f22a82 470 (native-inputs
c4fa3918
MB
471 `(("python" ,python)
472 ("python-fonttools" ,python-fonttools)))
319e2d17 473 (inputs
e6f22a82 474 `(("freetype" ,freetype)))
35b9e423 475 (synopsis "Reimplementation of the SIL Graphite text processing engine")
319e2d17
AE
476 (description
477 "Graphite2 is a reimplementation of the SIL Graphite text processing
478engine. Graphite is a smart font technology designed to facilitate the
479process known as shaping. This process takes an input Unicode text string
480and returns a sequence of positioned glyphids from the font.")
481 (license license:lgpl2.1+)
e86409c5 482 (home-page "https://github.com/silnrsi/graphite")))
ee69f85c
EB
483
484(define-public potrace
485 (package
486 (name "potrace")
d9ff6ad8 487 (version "1.16")
ee69f85c
EB
488 (source
489 (origin
490 (method url-fetch)
de67e922
LF
491 (uri (string-append "mirror://sourceforge/potrace/" version
492 "/potrace-" version ".tar.gz"))
ee69f85c
EB
493 (sha256
494 (base32
d9ff6ad8 495 "1k3sxgjqq0jnpk9xxys05q32sl5hbf1lbk1gmfxcrmpdgnhli0my"))))
ee69f85c
EB
496 (build-system gnu-build-system)
497 (native-inputs `(("ghostscript" ,ghostscript))) ;for tests
498 (inputs `(("zlib" ,zlib)))
4797d84d
AE
499 (arguments
500 `(#:configure-flags
501 `("--with-libpotrace"))) ; install library and headers
ee69f85c
EB
502 (synopsis "Transform bitmaps into vector graphics")
503 (description
504 "Potrace is a tool for tracing a bitmap, which means, transforming a
505bitmap into a smooth, scalable image. The input is a bitmap (PBM, PGM, PPM,
506or BMP format), and the default output is an encapsulated PostScript
507file (EPS). A typical use is to create EPS files from scanned data, such as
508company or university logos, handwritten notes, etc. The resulting image is
509not \"jaggy\" like a bitmap, but smooth. It can then be rendered at any
510resolution.")
511 (license license:gpl2+)
512 (home-page "http://potrace.sourceforge.net/")))
5277dbb0 513
6ef0ec76
RJ
514(define-public libotf
515 (package
516 (name "libotf")
9b9e7481 517 (version "0.9.16")
6ef0ec76
RJ
518 (source (origin
519 (method url-fetch)
6a703976
MW
520 (uri (string-append "mirror://savannah/m17n/libotf-"
521 version ".tar.gz"))
6ef0ec76 522 (sha256
9b9e7481 523 (base32 "0sq6g3xaxw388akws6qrllp3kp2sxgk2dv4j79k6mm52rnihrnv8"))))
6ef0ec76 524 (build-system gnu-build-system)
48342a04
MB
525 (native-inputs
526 `(("pkg-config" ,pkg-config)))
6ef0ec76
RJ
527 (propagated-inputs
528 `(("freetype" ,freetype)))
340978d7 529 (home-page "https://www.nongnu.org/m17n/")
6ef0ec76
RJ
530 (synopsis "Library for handling OpenType Font")
531 (description "This library can read Open Type Layout Tables from an OTF
532file. Currently these tables are supported; head, name, cmap, GDEF, GSUB, and
533GPOS. It can convert a Unicode character sequence to a glyph code sequence by
534using the above tables.")
535 (license license:lgpl2.0+)))
536
5277dbb0
EB
537(define-public libspiro
538 (package
539 (name "libspiro")
600037b3 540 (version "20190731")
5277dbb0
EB
541 (source
542 (origin
543 (method url-fetch)
24950127 544 (uri (string-append "https://github.com/fontforge/libspiro/releases"
600037b3 545 "/download/" version "/libspiro-" version ".tar.gz"))
5277dbb0
EB
546 (sha256
547 (base32
600037b3 548 "0m63x97b7aciviijprvy85gm03p2jsgslxn323zl9zn7qz6d3ir4"))))
5277dbb0 549 (build-system gnu-build-system)
06639876
MB
550 (arguments
551 '(#:configure-flags '("--disable-static")))
5277dbb0
EB
552 (synopsis "Clothoid to bezier conversion library")
553 (description
554 "Raph Levien's Spiro package as a library. A mechanism for drawing
555smooth contours with constant curvature at the spline joins.")
556 (license license:gpl2+)
557 (home-page "http://libspiro.sourceforge.net/")))
f945bf06
EB
558
559(define-public libuninameslist
560 (package
561 (name "libuninameslist")
3db5a01c 562 (version "20200313")
27b73b49 563 (home-page "https://github.com/fontforge/libuninameslist")
f945bf06
EB
564 (source
565 (origin
566 (method url-fetch)
27b73b49
MB
567 (uri (string-append home-page "/releases/download/" version
568 "/libuninameslist-dist-" version ".tar.gz"))
f945bf06
EB
569 (sha256
570 (base32
3db5a01c 571 "10ri80c64xb4rhbif3sr87y5vhi3m702zb0m02imvj1jib9rq0m8"))))
f945bf06 572 (build-system gnu-build-system)
f945bf06
EB
573 (synopsis "Unicode names and annotation list")
574 (description
575 "LibUniNamesList holds www.unicode.org Nameslist.txt data which can be
576useful for programs that need Unicode \"Names\", \"Annotations\", and block
577definitions.")
b19c92ef
MB
578 ;; COPYING specifies GPL2, but according to LICENSE it only covers the
579 ;; configure script. The actual code is BSD-3, and the Unicode data
580 ;; is governed by an X11-style license only found on the web.
581 (license (list license:bsd-3
582 (license:x11-style
27b73b49 583 "https://www.unicode.org/copyright.html#License")))))
0c115d8c
EB
584
585(define-public fontforge
586 (package
587 (name "fontforge")
0a502c8c 588 (version "20200314")
0c115d8c
EB
589 (source (origin
590 (method url-fetch)
56586557
AE
591 (uri (string-append
592 "https://github.com/fontforge/fontforge/releases/download/"
0a502c8c 593 version "/fontforge-" version ".tar.xz"))
3b08c873 594 (sha256
0a502c8c
MB
595 (base32 "0qf88wd6riycq56d24brybyc93ns74s0nyyavm43zp2kfcihn6fd"))))
596 (build-system cmake-build-system)
56586557 597 (native-inputs
0a502c8c 598 `(("pkg-config" ,pkg-config)))
56586557
AE
599 (inputs `(("cairo" ,cairo)
600 ("fontconfig" ,fontconfig) ;dlopen'd
601 ("freetype" ,freetype)
b94a6ca0 602 ("gettext" ,gettext-minimal)
0c115d8c
EB
603 ("libICE" ,libice)
604 ("libSM" ,libsm)
56586557
AE
605 ("libX11" ,libx11)
606 ("libXi" ,libxi)
4bd428a7 607 ("libjpeg" ,libjpeg-turbo)
56586557
AE
608 ("libltdl" ,libltdl)
609 ("libpng" ,libpng)
0c115d8c 610 ("libspiro" ,libspiro)
56586557 611 ("libtiff" ,libtiff)
de946028 612 ("libungif" ,libungif)
0c115d8c 613 ("libuninameslist" ,libuninameslist)
56586557
AE
614 ("libxft" ,libxft)
615 ("libxml2" ,libxml2)
0c115d8c 616 ("pango" ,pango)
56586557 617 ("potrace" ,potrace)
01a92a70 618 ("python" ,python)
56586557 619 ("zlib" ,zlib)))
0c115d8c 620 (arguments
0a502c8c
MB
621 '(#:configure-flags '(;; TODO: Provide GTK+ for the Wayland-friendly GDK
622 ;; backend, instead of the legacy X11 backend.
623 ;; Currently it introduces a circular dependency.
624 "-DENABLE_X11=ON")
625 #:phases
5ab869f9 626 (modify-phases %standard-phases
0a502c8c 627 (add-after 'unpack 'do-not-override-RPATH
6e3cbafb 628 (lambda _
0a502c8c
MB
629 ;; Do not attempt to set a default RPATH, as our ld-wrapper
630 ;; already does the right thing.
631 (substitute* "CMakeLists.txt"
632 (("^set_default_rpath\\(\\)")
633 ""))
6e3cbafb 634 #t))
5ab869f9
EB
635 (add-after 'install 'set-library-path
636 (lambda* (#:key inputs outputs #:allow-other-keys)
637 (let ((out (assoc-ref outputs "out"))
638 (potrace (string-append (assoc-ref inputs "potrace") "/bin")))
639 (wrap-program (string-append out "/bin/fontforge")
640 ;; Fontforge dynamically opens libraries.
641 `("LD_LIBRARY_PATH" ":" prefix
642 ,(map (lambda (input)
643 (string-append (assoc-ref inputs input)
644 "/lib"))
de946028 645 '("libtiff" "libjpeg" "libpng" "libungif"
5ab869f9
EB
646 "libxml2" "zlib" "libspiro" "freetype"
647 "pango" "cairo" "fontconfig")))
648 ;; Checks for potrace program at runtime
2f3f8ae0 649 `("PATH" ":" prefix (,potrace)))
5dd7bd12 650 #t))))))
0c115d8c
EB
651 (synopsis "Outline font editor")
652 (description
653 "FontForge allows you to create and modify postscript, truetype and
654opentype fonts. You can save fonts in many different outline formats, and
655generate bitmaps.")
56586557 656 (license license:gpl3+)
3ab8c224 657 (home-page "https://fontforge.github.io")))
427a51fd 658
4affa918
MB
659;; This is the last version that supports Python 2, which is needed for
660;; GNU FreeFont. Remove once no longer required.
661(define-public fontforge-20190801
662 (package
663 (inherit fontforge)
664 (version "20190801")
665 (source (origin
666 (method url-fetch)
667 (uri (string-append
668 "https://github.com/fontforge/fontforge/releases/download/"
669 version "/fontforge-" version ".tar.gz"))
670 (sha256
671 (base32 "0lh8yx01asbzxm6car5cfi64njh5p4lxc7iv8dldr5rwg357a86r"))))
672 (build-system gnu-build-system)
673 (arguments
674 (substitute-keyword-arguments (package-arguments fontforge)
675 ((#:configure-flags _)
676 ''())
677 ((#:phases phases)
678 `(modify-phases ,phases
679 (delete 'do-not-override-RPATH)))))
680 (inputs
681 `(("python" ,python-2)
682 ,@(alist-delete "python" (package-inputs fontforge))))))
683
427a51fd 684(define-public python2-ufolib
685 (package
686 (name "python2-ufolib")
a82bb552 687 (version "2.1.1")
427a51fd 688 (source
689 (origin
690 (method url-fetch)
691 (uri (pypi-uri "ufoLib" version ".zip"))
692 (sha256
a82bb552 693 (base32 "07qy6mx7z0wi9a30lc2hj5i9q1gnz1n8l40dmjz2c19mj9s6mz9l"))))
427a51fd 694 (build-system python-build-system)
695 (arguments
696 `(#:python ,python-2))
697 (propagated-inputs
698 `(("python2-fonttools" ,python2-fonttools)))
699 (native-inputs
700 `(("unzip" ,unzip)
e09bb8a4 701 ("python2-pytest" ,python2-pytest)
427a51fd 702 ("python2-pytest-runner" ,python2-pytest-runner)))
703 (home-page "https://github.com/unified-font-object/ufoLib")
704 (synopsis "Low-level UFO reader and writer")
705 (description
706 "UfoLib reads and writes Unified Font Object (UFO)
707files. UFO is a file format that stores fonts source files.")
708 (license license:bsd-3)))
3715aff5 709
710(define-public python2-defcon
711 (package
712 (name "python2-defcon")
e6d7686f 713 (version "0.3.5")
3715aff5 714 (source
715 (origin
716 (method url-fetch)
717 (uri (pypi-uri "defcon" version ".zip"))
718 (sha256
719 (base32
e6d7686f 720 "03jlm2gy9lvbwj68kfdm43yaddwd634jwkdg4wf0jxx2s8mwbg22"))))
3715aff5 721 (build-system python-build-system)
722 (arguments
723 `(#:python ,python-2))
724 (native-inputs
725 `(("unzip" ,unzip)
e09bb8a4 726 ("python2-pytest" ,python2-pytest)
3715aff5 727 ("python2-pytest-runner" ,python2-pytest-runner)))
728 (propagated-inputs
729 `(("python2-fonttools" ,python2-fonttools)
730 ("python2-ufolib" ,python2-ufolib)))
e85af137 731 (home-page "https://pypi.org/project/defcon/")
3715aff5 732 (synopsis "Flexible objects for representing @acronym{UFO, unified font object} data")
733 (description
734 "Defcon is a set of @acronym{UFO, unified font object} based objects
735optimized for use in font editing applications. The objects are built to
736be lightweight, fast and flexible. The objects are very bare-bones and
737they are not meant to be end-all, be-all objects. Rather, they are meant
738to provide base functionality so that you can focus on your application’s
739behavior, not object observing or maintaining cached data. Defcon
740implements UFO3 as described by the UFO font format.")
741 (license license:expat)))
20d2c6e7 742
743(define-public nototools
744 (package
745 (name "nototools")
746 (version "20170925")
747 (source
748 (origin
b2447228
EF
749 (method git-fetch)
750 (uri (git-reference
751 (url "https://github.com/googlei18n/nototools")
752 (commit "v2017-09-25-tooling-for-phase3-update")))
753 (file-name (git-file-name name version))
20d2c6e7 754 (sha256
755 (base32
b2447228 756 "03nzvcvwmrhfrcjhg218q2f3hfrm3vlivp4rk19sc397kh3hisiz"))))
20d2c6e7 757 (build-system python-build-system)
758 (arguments
759 `(#:python ,python-2))
760 (propagated-inputs
761 `(("python2-booleanoperations" ,python2-booleanoperations)
762 ("python2-defcon" ,python2-defcon)
763 ("python2-fonttools" ,python2-fonttools)
764 ("python2-pillow" ,python2-pillow)
765 ("python2-pyclipper" ,python2-pyclipper)
766 ("python2-ufolib" ,python2-ufolib)))
767 (home-page "https://github.com/googlei18n/nototools")
768 (synopsis "Noto fonts support tools and scripts")
769 (description
770 "Nototools is a Python package containing Python scripts used to
771maintain the Noto Fonts project.")
772 (license (list license:asl2.0
773 ;; Sample texts are attributed to UN and OHCHR.
774 ;; The permissions on the UDHR are pretty lax:
775 ;; http://www.ohchr.org/EN/UDHR/Pages/Introduction.aspx
776 ;; "If UDHR translations or materials are reproduced, users
777 ;; should make reference to this website as a source by
778 ;; providing a link."
779 license:public-domain
780 (license:non-copyleft
781 "file://sample_texts/attributions.txt"
782 "See sample_texts/attributions.txt in the distribution.")))))
ad8aaf47
BD
783
784(define-public fontmanager
785 (package
786 (name "fontmanager")
3a5d1c9b 787 (version "0.7.7")
ad8aaf47
BD
788 (source
789 (origin
790 (method git-fetch)
791 (uri (git-reference
792 (url "https://github.com/FontManager/font-manager")
793 (commit version)))
794 (file-name (git-file-name name version))
795 (sha256
796 (base32
3a5d1c9b 797 "1bzqvspplp1zj0n0869jqbc60wgbjhf0vdrn5bj8dfawxynh8s5f"))))
ad8aaf47
BD
798 (build-system meson-build-system)
799 (arguments
800 `(#:glib-or-gtk? #t
801 #:build-type "release"
802 #:configure-flags
803 (list (string-append "-Dc_link_args=-Wl,-rpath="
804 (assoc-ref %outputs "out")
805 "/lib/font-manager"))))
806 (native-inputs
807 `(("pkg-config" ,pkg-config)
808 ("vala" ,vala)
809 ("yelp-tools" ,yelp-tools)
810 ("gettext" ,gettext-minimal)
811 ("glib" ,glib "bin")
812 ("gobject-introspection" ,gobject-introspection)
813 ("desktop-file-utils" ,desktop-file-utils)))
814 (inputs
815 `(("json-glib" ,json-glib)
fad5b1a6 816 ("sqlite" ,sqlite)
ad8aaf47
BD
817 ("fonconfig" ,fontconfig)
818 ("freetype" ,freetype)
819 ("gtk+" ,gtk+)))
820 (home-page "https://fontmanager.github.io/")
821 (synopsis "Simple font management for GTK+ desktop environments")
822 (description "Font Manager is intended to provide a way for users to
823easily manage desktop fonts, without having to resort to command-line
824tools or editing configuration files by hand.
825While designed primarily with the GNOME Desktop Environment in mind, it should
826work well with other GTK+ desktop environments.")
827 (license license:gpl3+)))
cc51c03f
RJ
828
829(define-public fntsample
830 (package
831 (name "fntsample")
832 (version "5.3")
833 (source (origin
405b9ba0
EF
834 (method git-fetch)
835 (uri (git-reference
836 (url "https://github.com/eugmes/fntsample")
837 (commit (string-append "release/" version))))
838 (file-name (git-file-name name version))
cc51c03f
RJ
839 (sha256
840 (base32
405b9ba0 841 "02rx3gp7k472304vhjwb129nw10a29s4nvgs7i2m6bpjhlk2xgs5"))))
cc51c03f
RJ
842 (build-system cmake-build-system)
843 (arguments
844 `(#:tests? #f ; There are no tests.
845 #:configure-flags
846 (list (string-append
847 "-DUNICODE_BLOCKS=" (assoc-ref %build-inputs "unicode-blocks")))
848 #:phases
849 (modify-phases %standard-phases
850 (add-after 'install 'set-library-path
851 (lambda* (#:key inputs outputs #:allow-other-keys)
852 (let* ((out (assoc-ref outputs "out"))
853 (pdf-api2 (assoc-ref inputs "perl-pdf-api2"))
854 (intl (assoc-ref inputs "perl-libintl-perl"))
855 (perllib (string-append pdf-api2
856 "/lib/perl5/site_perl/"
857 ,(package-version perl)
858 ":" intl
859 "/lib/perl5/site_perl/"
860 ,(package-version perl))))
861 (wrap-program (string-append out "/bin/pdfoutline")
862 `("PERL5LIB" ":" prefix (,perllib)))
863 #t))))))
864 (native-inputs
865 `(("pkg-config" ,pkg-config)
866 ("gettext" ,gettext-minimal)))
867 (inputs
868 `(("cairo" ,cairo)
869 ("fontconfig" ,fontconfig)
870 ("freetype" ,freetype)
871 ("glib" ,glib)
872 ("pango" ,pango)
873 ("perl-pdf-api2" ,perl-pdf-api2)
874 ("perl-libintl-perl" ,perl-libintl-perl)
875 ("unicode-blocks"
876 ,(origin
877 (method url-fetch)
878 (uri "https://unicode.org/Public/UNIDATA/Blocks.txt")
879 (file-name "unicode-blocks.txt")
880 (sha256
881 (base32
882 "1xs8fnhh48gs41wg004r7m4r2azh9khmyjjlnvyzy9c6zrd212x2"))))))
883 (home-page "https://github.com/eugmes/fntsample")
884 (synopsis "PDF and PostScript font samples generator")
885 (description "This package provides a tool that can be used to make font
886samples that show coverage of the font and are similar in appearance to
887Unicode Charts. It was developed for use with DejaVu Fonts project.")
888 (license license:gpl3+)))
a1797f32
NG
889
890(define-public libraqm
891 (package
892 (name "libraqm")
893 (version "0.7.0")
894 (source
895 (origin
896 (method url-fetch)
897 (uri (string-append "https://github.com/HOST-Oman/libraqm/"
898 "releases/download/v" version "/"
67c52503 899 "raqm-" version ".tar.gz"))
a1797f32
NG
900 (sha256
901 (base32 "0hgry3fj2y3qaq2fnmdgd93ixkk3ns5jds4vglkiv2jfvpn7b1g2"))))
902 (build-system gnu-build-system)
903 (arguments
904 `(#:configure-flags (list "--disable-static")))
905 (native-inputs
906 `(("gtk-doc" ,gtk-doc)
907 ("pkg-config" ,pkg-config)
908 ("python" ,python-wrapper)))
909 (inputs
910 `(("freetype" ,freetype)
911 ("fribidi" ,fribidi)
912 ("harfbuzz" ,harfbuzz)))
913 (home-page "https://github.com/HOST-Oman/libraqm")
914 (synopsis "Library for complex text layout")
915 (description
916 "Raqm is a small library that encapsulates the logic for complex text
917layout and provides a convenient API.
918
919It currently provides bidirectional text support (using FriBiDi),
920shaping (using HarfBuzz), and proper script itemization. As a result, Raqm
921can support most writing systems covered by Unicode.")
922 (license license:expat)))