[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]
94/130: gnu: fontconfig: Add a search path for XDG_DATA_DIRS.
From: |
guix-commits |
Subject: |
94/130: gnu: fontconfig: Add a search path for XDG_DATA_DIRS. |
Date: |
Sat, 16 Oct 2021 02:36:39 -0400 (EDT) |
apteryx pushed a commit to branch core-updates-frozen-batched-changes
in repository guix.
commit cb6599866414dcb9d15345585f1a6a9e28142c53
Author: Maxim Cournoyer <maxim.cournoyer@gmail.com>
AuthorDate: Tue Aug 3 20:49:16 2021 -0400
gnu: fontconfig: Add a search path for XDG_DATA_DIRS.
Fixes <https://issues.guix.gnu.org/31403>.
* gnu/packages/fontutils.scm (fontconfig)[source]: Fix indentation.
[configure-flags]: Drop the "--with-add-fonts" configure option as it's no
longer necessary/desirable to special case the system and user profiles.
[native-search-paths]: New search path.
---
gnu/packages/fontutils.scm | 28 ++++++++++++++--------------
1 file changed, 14 insertions(+), 14 deletions(-)
diff --git a/gnu/packages/fontutils.scm b/gnu/packages/fontutils.scm
index 053dc18..35e3629 100644
--- a/gnu/packages/fontutils.scm
+++ b/gnu/packages/fontutils.scm
@@ -326,14 +326,13 @@ Font Format (WOFF).")
(name "fontconfig-minimal")
(version "2.13.94")
(source (origin
- (method url-fetch)
- (uri (string-append
- "https://www.freedesktop.org/software/"
- "fontconfig/release/fontconfig-" version ".tar.xz"))
- (sha256
- (base32
- "0g004r0bkkqz00mpm3svnnxn7d83158q0yb9ggxryizxfg5m5w55"))
- (patches (search-patches "fontconfig-cache-ignore-mtime.patch"))))
+ (method url-fetch)
+ (uri (string-append
+ "https://www.freedesktop.org/software/"
+ "fontconfig/release/fontconfig-" version ".tar.xz"))
+ (sha256 (base32
+
"0g004r0bkkqz00mpm3svnnxn7d83158q0yb9ggxryizxfg5m5w55"))
+ (patches (search-patches
"fontconfig-cache-ignore-mtime.patch"))))
(build-system gnu-build-system)
;; In Requires or Requires.private of fontconfig.pc.
(propagated-inputs `(("expat" ,expat)
@@ -355,12 +354,7 @@ Font Format (WOFF).")
;; register the default fonts
(string-append "--with-default-fonts="
(assoc-ref %build-inputs "font-dejavu")
- "/share/fonts")
-
- ;; Register fonts from user and system profiles.
- (string-append "--with-add-fonts="
- "~/.guix-profile/share/fonts,"
- "/run/current-system/profile/share/fonts"))
+ "/share/fonts"))
#:phases
(modify-phases %standard-phases
(add-before 'check 'skip-problematic-tests
@@ -392,6 +386,12 @@ high quality, anti-aliased and subpixel rendered text on a
display.")
; The exact license is more X11-style
than BSD-style.
(license (license:non-copyleft "file://COPYING"
"See COPYING in the distribution."))
+ (native-search-paths
+ ;; Since version 2.13.94, fontconfig knows to find fonts from
+ ;; XDG_DATA_DIRS.
+ (list (search-path-specification
+ (variable "XDG_DATA_DIRS")
+ (files '("share")))))
(home-page "https://www.freedesktop.org/wiki/Software/fontconfig"))))
;;; The documentation of fontconfig is built in a separate package, as it
- 69/130: gnu: tensorflow: Enable parallel build (at least partially)., (continued)
- 69/130: gnu: tensorflow: Enable parallel build (at least partially)., guix-commits, 2021/10/16
- 67/130: gnu: python-gst: Update to 1.18.5., guix-commits, 2021/10/16
- 79/130: gnu: diffutils: Fix signal processing., guix-commits, 2021/10/16
- 73/130: bluez: Update to 5.61., guix-commits, 2021/10/16
- 80/130: gnu: diffutils: Update to 3.8., guix-commits, 2021/10/16
- 85/130: gnu: Add ld-gold-wrapper., guix-commits, 2021/10/16
- 93/130: gnu: Build all Rust packages using the latest rustc., guix-commits, 2021/10/16
- 88/130: guix: packages: Fix repacking of plain tarballs., guix-commits, 2021/10/16
- 91/130: gnu: rust: Bootstrap rust from 1.39.0 and optimize build time., guix-commits, 2021/10/16
- 95/130: gnu: Move a few Python packages to (gnu packages python-build)., guix-commits, 2021/10/16
- 94/130: gnu: fontconfig: Add a search path for XDG_DATA_DIRS.,
guix-commits <=
- 98/130: gnu: Add python-tomli., guix-commits, 2021/10/16
- 105/130: gnu: at-spi2-core: Reverse inheritance relationship with minimal variant., guix-commits, 2021/10/16
- 107/130: gnu: json-glib-minimal: Introduce minimal variant., guix-commits, 2021/10/16
- 106/130: gnu: at-spi2-atk: Break a dependency cycle between GTK+ and Inkscape., guix-commits, 2021/10/16
- 108/130: gnu: colord-minimal: Introduce minimal variant., guix-commits, 2021/10/16
- 113/130: gnu: mesa: Update to 21.2.4., guix-commits, 2021/10/16
- 115/130: gnu: lsof: Disable the LTlock test., guix-commits, 2021/10/16
- 116/130: gnu: lsof: Fix indentation., guix-commits, 2021/10/16
- 123/130: profiles: Add a gdk-pixbuf-loaders-cache-file hook., guix-commits, 2021/10/16
- 126/130: gnu: glib: Update to 2.70, specify a bindir prefix and hide package., guix-commits, 2021/10/16