gnu: libxkbcommon: Faux propagate libxml2.

xkbregistry.pc lists libxml2 as a requirement.
Use a symlink for the libxml-2.0.pc to avoid setting libxml2 as a
propagated-input.

* gnu/packages/xdisorg.scm (libxkbcommon)[arguments]<#:phases>: Add
symlink-pc.

Signed-off-by: Maxim Cournoyer <maxim.cournoyer@gmail.com>
This commit is contained in:
Bruno Victal 2023-10-09 21:06:27 +01:00 committed by Ludovic Courtès
parent 01daea59c5
commit abad61d6f5
No known key found for this signature in database
GPG Key ID: 090B11993D9AEBB5

View File

@ -588,7 +588,15 @@ avoiding password prompts when X11 forwarding has already been setup.")
(let ((old (string-append #$output "/share/doc")) (let ((old (string-append #$output "/share/doc"))
(new (string-append #$output:doc "/share/doc"))) (new (string-append #$output:doc "/share/doc")))
(mkdir-p (dirname new)) (mkdir-p (dirname new))
(rename-file old new))))))) (rename-file old new))))
(add-after 'install 'symlink-pc
;; in Requires.private of xkbregistry.pc
;; XXX: Symlink libxml-2.0.pc in order to avoid putting
;; libxml2 as a propagated input.
(lambda _
(let ((stem "/lib/pkgconfig/libxml-2.0.pc"))
(symlink (string-append #$(this-package-input "libxml2") stem)
(string-append #$output stem))))))))
(home-page "https://xkbcommon.org/") (home-page "https://xkbcommon.org/")
(synopsis "Library to handle keyboard descriptions") (synopsis "Library to handle keyboard descriptions")
(description "Xkbcommon is a library to handle keyboard descriptions, (description "Xkbcommon is a library to handle keyboard descriptions,