gnu: WebKitGTK: Embed absolute file name of libWPEBackend-fdo-1.0.so.

Fixes <https://bugs.gnu.org/37545>.
Reported by Vagrant Cascadian <vagrant@debian.org>.

* gnu/packages/webkit.scm (webkitgtk)[arguments]: Add phase.
master
Marius Bakke 2019-10-06 14:24:04 +02:00
parent c5ceec4150
commit 1714edc3d4
No known key found for this signature in database
GPG Key ID: A2A06DF2A33A54FA
1 changed files with 7 additions and 0 deletions

View File

@ -165,6 +165,13 @@ engine that uses Wayland for graphics output.")
"/xml/dtd/docbook/docbookx.dtd"))))
(find-files "Source" "\\.sgml$"))
#t))
(add-after 'unpack 'embed-absolute-wpebackend-reference
(lambda* (#:key inputs #:allow-other-keys)
(let ((wpebackend-fdo (assoc-ref inputs "wpebackend-fdo")))
(substitute* "Source/WebKit/UIProcess/glib/WebProcessPoolGLib.cpp"
(("libWPEBackend-fdo-([\\.0-9]+)\\.so" all version)
(string-append wpebackend-fdo "/lib/" all)))
#t)))
(add-after 'install 'move-doc-files
(lambda* (#:key outputs #:allow-other-keys)
(let ((out (assoc-ref outputs "out"))