[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]
94/201: gnu: fontconfig: Add a search path for XDG_DATA_DIRS.
From: |
guix-commits |
Subject: |
94/201: gnu: fontconfig: Add a search path for XDG_DATA_DIRS. |
Date: |
Mon, 1 Nov 2021 23:18:46 -0400 (EDT) |
apteryx pushed a commit to branch core-updates-frozen-batched-changes
in repository guix.
commit 3d54c800e1d8207001df1ec31647949492d25248
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 2644506..2575bfb 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
- 79/201: gnu: diffutils: Fix signal processing., (continued)
- 79/201: gnu: diffutils: Fix signal processing., guix-commits, 2021/11/01
- 91/201: gnu: rust: Bootstrap rust from 1.39.0 and optimize build time., guix-commits, 2021/11/01
- 99/201: gnu: python-setuptools-scm: Update to 6.3.2, guix-commits, 2021/11/01
- 112/201: gnu: libcloudproviders-minimal: Introduce minimal variant., guix-commits, 2021/11/01
- 110/201: gnu: Add docbook-xsl-ns., guix-commits, 2021/11/01
- 77/201: gnu: tzdata: Update to 2021e., guix-commits, 2021/11/01
- 81/201: build: qt-utils: Don't wrap .X-real files., guix-commits, 2021/11/01
- 89/201: aux-files: sitecustomize: Cleanup and add explanatory comments., guix-commits, 2021/11/01
- 83/201: gnu: gcc-5: Fix powerpc64le-linux build, guix-commits, 2021/11/01
- 92/201: gnu: rust: Add rust 1.54 and move all non-bootstrapping logic to it., guix-commits, 2021/11/01
- 94/201: gnu: fontconfig: Add a search path for XDG_DATA_DIRS.,
guix-commits <=
- 97/201: gnu: Add python-flit-core., guix-commits, 2021/11/01
- 103/201: build: glib-or-gtk-build-system: Simplify the wrap-all-programs phase., guix-commits, 2021/11/01
- 106/201: gnu: at-spi2-atk: Break a dependency cycle between GTK+ and Inkscape., guix-commits, 2021/11/01
- 107/201: gnu: lsof: Disable the LTlock test., guix-commits, 2021/11/01
- 105/201: gnu: at-spi2-core: Reverse inheritance relationship with minimal variant., guix-commits, 2021/11/01
- 102/201: gnu: meson: Patch to allow installing to independent prefixes., guix-commits, 2021/11/01
- 111/201: gnu: colord-minimal: Introduce minimal variant., guix-commits, 2021/11/01
- 115/201: gnu: inkscape: Remove the legacy 0.92 version., guix-commits, 2021/11/01
- 130/201: gnu: webkitgtk: Update to 2.34.1., guix-commits, 2021/11/01
- 122/201: gnu: heimdal: Fix build., guix-commits, 2021/11/01