unofficial mirror of guix-patches@gnu.org 
 help / color / mirror / code / Atom feed
From: Timotej Lazar <timotej.lazar@araneo.si>
To: 42928@debbugs.gnu.org
Cc: Timotej Lazar <timotej.lazar@araneo.si>
Subject: [bug#42928] [PATCH 1/2] gnu: qttools: Install desktop files and icons.
Date: Wed, 19 Aug 2020 13:53:17 +0200	[thread overview]
Message-ID: <20200819115318.5655-1-timotej.lazar@araneo.si> (raw)
In-Reply-To: <87zh6qn9bp.fsf@araneo.si>

* gnu/packages/qt.scm (qttools)[phases]: Add 'install-desktop-files.
---
 gnu/packages/qt.scm | 62 ++++++++++++++++++++++++++++++++++++++++++++-
 1 file changed, 61 insertions(+), 1 deletion(-)

diff --git a/gnu/packages/qt.scm b/gnu/packages/qt.scm
index ee903ecae9..4ca9786d8b 100644
--- a/gnu/packages/qt.scm
+++ b/gnu/packages/qt.scm
@@ -1185,7 +1185,67 @@ positioning and geolocation plugins.")))
                "1iakl3hlyg51ri1czmis8mmb257b0y1zk2a2knybd3mq69wczc2v"))))
     (arguments
      (substitute-keyword-arguments (package-arguments qtsvg)
-       ((#:tests? _ #f) #f))) ; TODO: Enable the tests
+       ((#:tests? _ #f) #f) ; TODO: Enable the tests
+       ((#:phases phases)
+        `(modify-phases ,phases
+           (add-after 'install 'install-desktop-files
+             (lambda* (#:key outputs #:allow-other-keys)
+               (let* ((out (assoc-ref outputs "out"))
+                      (apps (string-append out "/share/applications"))
+                      (icons (string-append out "/share/icons/hicolor")))
+                 ;; Install icons.
+                 (with-directory-excursion "src"
+                   (for-each
+                    (lambda (icon)
+                      ;; Get name and size from the slightly inconsistent filenames.
+                      (let* ((parts (string-split (basename icon ".png") #\-))
+                             (name (car parts))
+                             (size (if (> (length parts) 1) (cadr parts) "32"))
+                             (dest (string-append icons "/" size "x" size "/apps")))
+                        (mkdir-p dest)
+                        (copy-file icon (string-append dest "/" name ".png"))))
+                    '("assistant/assistant/images/assistant.png"
+                      "assistant/assistant/images/assistant-128.png"
+                      "designer/src/designer/images/designer.png"
+                      "linguist/linguist/images/icons/linguist-16-32.png"
+                      "linguist/linguist/images/icons/linguist-32-32.png"
+                      "linguist/linguist/images/icons/linguist-48-32.png"
+                      "linguist/linguist/images/icons/linguist-64-32.png"
+                      "linguist/linguist/images/icons/linguist-128-32.png"
+                      "qdbus/qdbusviewer/images/qdbusviewer.png"
+                      "qdbus/qdbusviewer/images/qdbusviewer-128.png")))
+                 ;; Install desktop files.
+                 (make-desktop-entry-file
+                  (string-append apps "/assistant.desktop")
+                  #:name "Qt Assistant"
+                  #:comment "Browse Qt documentation and examples"
+                  #:exec "assistant"
+                  #:icon "assistant"
+                  #:categories '("Qt" "Development" "Documentation"))
+                 (make-desktop-entry-file
+                  (string-append apps "/designer.desktop")
+                  #:name "Qt Designer"
+                  #:comment "Design GUIs for Qt applications"
+                  #:exec "designer"
+                  #:icon "designer"
+                  #:categories '("Qt" "Development" "GUIDesigner")
+                  #:mime-type '("application/x-designer"))
+                 (make-desktop-entry-file
+                  (string-append apps "/linguist.desktop")
+                  #:name "Qt Linguist"
+                  #:comment "Translate Qt applications"
+                  #:exec "linguist"
+                  #:icon "linguist"
+                  #:categories '("Qt" "Development" "Translation")
+                  #:mime-type '("application/x-linguist"))
+                 (make-desktop-entry-file
+                  (string-append apps "/qdbusviewer.desktop")
+                  #:name "Qt D-Bus viewer"
+                  #:comment "Browse D-Bus objects and messages"
+                  #:exec "qdbusviewer"
+                  #:icon "qdbusviewer"
+                  #:categories '("Qt" "Development")))
+               #t))))))
     (native-inputs
      `(("perl" ,perl)
        ("qtdeclarative" ,qtdeclarative)
-- 
2.28.0





  reply	other threads:[~2020-08-19 11:55 UTC|newest]

Thread overview: 3+ messages / expand[flat|nested]  mbox.gz  Atom feed  top
2020-08-19 11:50 [bug#42928] [PATCH 0/2] gnu: qttools: Install additional files Timotej Lazar
2020-08-19 11:53 ` Timotej Lazar [this message]
2020-08-19 11:53   ` [bug#42928] [PATCH 2/2] gnu: qttools: Install man pages Timotej Lazar

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

  List information: https://guix.gnu.org/

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

  git send-email \
    --in-reply-to=20200819115318.5655-1-timotej.lazar@araneo.si \
    --to=timotej.lazar@araneo.si \
    --cc=42928@debbugs.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 public inbox

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

This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox;
as well as URLs for read-only IMAP folder(s) and NNTP newsgroup(s).