efraim pushed a commit to branch core-updates
in repository guix.

commit ef35f0046fc8239e1a80a8a3c88e49c1c85c3676
Author: Efraim Flashner <[email protected]>
AuthorDate: Mon Feb 13 12:04:51 2023 +0200

    gnu: freetype: Don't keep a reference to pkg-config.
    
    * gnu/packages/fontutils.scm (freetype)[arguments]: Add an entry in
    disallowed-references for pkg-config. Add a phase to remove the
    reference to pkg-config in an installed script.
---
 gnu/packages/fontutils.scm | 13 +++++++++++--
 1 file changed, 11 insertions(+), 2 deletions(-)

diff --git a/gnu/packages/fontutils.scm b/gnu/packages/fontutils.scm
index bdabe2adee..300290a21d 100644
--- a/gnu/packages/fontutils.scm
+++ b/gnu/packages/fontutils.scm
@@ -2,7 +2,7 @@
 ;;; Copyright © 2013, 2014, 2015 Andreas Enge <[email protected]>
 ;;; Copyright © 2014, 2016 Eric Bavier <[email protected]>
 ;;; Copyright © 2016 Mark H Weaver <[email protected]>
-;;; Copyright © 2016, 2017, 2020, 2022 Efraim Flashner <[email protected]>
+;;; Copyright © 2016, 2017, 2020, 2022, 2023 Efraim Flashner 
<[email protected]>
 ;;; Copyright © 2017 Rene Saavedra <[email protected]>
 ;;; Copyright © 2017 Leo Famulari <[email protected]>
 ;;; Copyright © 2017 Nikita <[email protected]>
@@ -97,7 +97,16 @@
    (arguments
     ;; The use of "freetype-config" is deprecated, but other packages still
     ;; depend on it.
-    `(#:configure-flags (list "--enable-freetype-config")))
+    `(#:configure-flags (list "--enable-freetype-config")
+      #:disallowed-references (,pkg-config)
+      #:phases
+      (modify-phases %standard-phases
+        (add-after 'install 'remove-reference-to-pkg-config
+           (lambda* (#:key inputs outputs #:allow-other-keys)
+             (let ((out (assoc-ref outputs "out")))
+               (substitute* (string-append out "/bin/freetype-config")
+                 (((search-input-file inputs "/bin/pkg-config"))
+                   "pkg-config"))))))))
    (native-inputs
     (list pkg-config))
    (propagated-inputs

Reply via email to