all messages for Guix-related lists mirrored at yhetil.org
 help / color / mirror / code / Atom feed
From: Federico Beffa <beffa@ieee.org>
To: Guix-devel <guix-devel@gnu.org>
Subject: [PATCH 1/2] gnu: librsvg: Generate complete loaders.cache including support for SVG.
Date: Sun, 2 Nov 2014 18:18:33 +0100	[thread overview]
Message-ID: <CAKrPhPMbQEV4JdngNDTGBmSjsEG7TsFseb+eJ1YxNyB=pvaSJw@mail.gmail.com> (raw)

[-- Attachment #1: Type: text/plain, Size: 189 bytes --]

As mentioned in a previous email, the cache generated by default does
not include support for SVG provided by librsvg itself.  With this
patch we generate a full cache file.

Regards,
Fede

[-- Attachment #2: 0001-gnu-librsvg-Generate-complete-loaders.cache-includin.patch --]
[-- Type: text/x-patch, Size: 2238 bytes --]

From 36c6d59180bdb2d80e169938097efca39431c122 Mon Sep 17 00:00:00 2001
From: Federico Beffa <beffa@fbengineering.ch>
Date: Sun, 2 Nov 2014 18:01:08 +0100
Subject: [PATCH 1/2] gnu: librsvg: Generate complete loaders.cache including
 support for SVG.

* gnu/packages/gnome.scm (librsvg): Add 'generate-full-chage phase.
---
 gnu/packages/gnome.scm | 22 ++++++++++++++++++++--
 1 file changed, 20 insertions(+), 2 deletions(-)

diff --git a/gnu/packages/gnome.scm b/gnu/packages/gnome.scm
index f1f1918..22b73f9 100644
--- a/gnu/packages/gnome.scm
+++ b/gnu/packages/gnome.scm
@@ -594,7 +594,10 @@ dealing with different structured file formats.")
                 "071959yjb2i1bja7ciy4bmpnd6fn2is9jjqsvvvnsqwl69j9n128"))))
     (build-system gnu-build-system)
     (arguments
-     `(#:phases
+     `(#:modules ((srfi srfi-1)
+                  (guix build gnu-build-system)
+                  (guix build utils))
+       #:phases
        (alist-cons-before
         'configure 'augment-gir-search-path
         (lambda* (#:key inputs #:allow-other-keys)
@@ -608,7 +611,22 @@ dealing with different structured file formats.")
             ;; Likewise, create a separate 'loaders.cache' file.
             (("gdk_pixbuf_cache_file = .*$")
              "gdk_pixbuf_cache_file = $(gdk_pixbuf_moduledir).cache\n")))
-        %standard-phases)))
+       (alist-cons-after
+        'install 'generate-full-cache
+        (lambda* (#:key inputs outputs #:allow-other-keys)
+          (let ((loaders-directory 
+                 (string-append (assoc-ref outputs "out")
+                                "/lib/gdk-pixbuf-2.0/2.0.10/loaders")))
+            (zero?
+             (system 
+              (string-append 
+               "gdk-pixbuf-query-loaders " 
+               loaders-directory "/libpixbufloader-svg.so "
+               (fold (lambda (s p) (string-append s " " p))  "" 
+                     (find-files (assoc-ref inputs "gdk-pixbuf") 
+                                 "libpixbufloader-.*\\.so"))
+               "> " loaders-directory ".cache")))))
+        %standard-phases))))
     (native-inputs
      `(("pkg-config" ,pkg-config)
        ("glib" ,glib "bin")                               ; glib-mkenums, etc.
-- 
1.8.4


             reply	other threads:[~2014-11-02 17:18 UTC|newest]

Thread overview: 2+ messages / expand[flat|nested]  mbox.gz  Atom feed  top
2014-11-02 17:18 Federico Beffa [this message]
2014-11-03 22:07 ` [PATCH 1/2] gnu: librsvg: Generate complete loaders.cache including support for SVG Ludovic Courtès

Reply instructions:

You may reply publicly to this message via plain-text email
using any one of the following methods:

* Save the following mbox file, import it into your mail client,
  and reply-to-all from there: mbox

  Avoid top-posting and favor interleaved quoting:
  https://en.wikipedia.org/wiki/Posting_style#Interleaved_style

* Reply using the --to, --cc, and --in-reply-to
  switches of git-send-email(1):

  git send-email \
    --in-reply-to='CAKrPhPMbQEV4JdngNDTGBmSjsEG7TsFseb+eJ1YxNyB=pvaSJw@mail.gmail.com' \
    --to=beffa@ieee.org \
    --cc=guix-devel@gnu.org \
    /path/to/YOUR_REPLY

  https://kernel.org/pub/software/scm/git/docs/git-send-email.html

* If your mail client supports setting the In-Reply-To header
  via mailto: links, try the mailto: link
Be sure your reply has a Subject: header at the top and a blank line before the message body.
Code repositories for project(s) associated with this external index

	https://git.savannah.gnu.org/cgit/guix.git

This is an external index of several public inboxes,
see mirroring instructions on how to clone and mirror
all data and code used by this external index.