emacs-bug-tracker
[Top][All Lists]
Advanced

[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]

[debbugs-tracker] bug#32584: closed ([PATCH] gnu: Add yad.)


From: GNU bug Tracking System
Subject: [debbugs-tracker] bug#32584: closed ([PATCH] gnu: Add yad.)
Date: Mon, 10 Sep 2018 12:48:02 +0000

Your message dated Mon, 10 Sep 2018 14:47:51 +0200
with message-id <address@hidden>
and subject line [PATCH] gnu: Add yad.
has caused the debbugs.gnu.org bug report #32584,
regarding [PATCH] gnu: Add yad.
to be marked as done.

(If you believe you have received this mail in error, please contact
address@hidden)


-- 
32584: http://debbugs.gnu.org/cgi/bugreport.cgi?bug=32584
GNU Bug Tracking System
Contact address@hidden with problems
--- Begin Message --- Subject: [PATCH] gnu: Add yad. Date: Thu, 30 Aug 2018 11:51:52 +0200
gnu/packages/gtk.scm (yad): New variable.
---
 gnu/packages/gtk.scm | 42 ++++++++++++++++++++++++++++++++++++++++++
 1 file changed, 42 insertions(+)

diff --git a/gnu/packages/gtk.scm b/gnu/packages/gtk.scm
index 8b11e3fb1..9b20f4f96 100644
--- a/gnu/packages/gtk.scm
+++ b/gnu/packages/gtk.scm
@@ -19,6 +19,7 @@
 ;;; Copyright © 2017 Marius Bakke <address@hidden>
 ;;; Copyright © 2018 Alex Vong <address@hidden>
 ;;; Copyright © 2018 Arun Isaac <address@hidden>
+;;; Copyright © 2018 Mădălin Ionel Patrașcu <address@hidden>
 ;;;
 ;;; This file is part of GNU Guix.
 ;;;
@@ -1651,3 +1652,44 @@ Parcellite and adds bugfixes and features.")
 it does not deal with windowing system surfaces, drawing, scene graphs, or
 input.")
     (license license:expat)))
+
+(define-public yad
+  (package
+    (name "yad")
+    (version "0.40.3")
+    (source
+     (origin
+       (method url-fetch)
+       (uri (string-append 
"https://github.com/v1cont/"name"/archive/v"version".tar.gz";))
+       (sha256
+        (base32 "1fs892d0xq2x43blqfxrlif22n1mnpbbw6lj8mfvm9j637m8hfm6"))))
+    (build-system gnu-build-system)
+    (arguments
+     `(#:configure-flags
+       '("--with-gtk=gtk3"
+         "--enable-html"
+         "--enable-gio"
+         "--enable-spell"
+         "--enable-icon-browser")
+       #:phases
+       (modify-phases %standard-phases
+         (replace 'bootstrap
+           (lambda _
+             (invoke "autoreconf" "-vif")
+             (invoke "intltoolize" "--force" "--automake")
+             #t)))))
+    (inputs
+     `(("gtk+" ,gtk+)))
+    (native-inputs
+     `(("autoconf" ,autoconf)
+       ("automake" ,automake)
+       ("intltool" ,intltool)
+       ("pkg-config" ,pkg-config)))
+    (home-page "https://sourceforge.net/projects/yad-dialog/";)
+    (synopsis "Standard dialog boxes for Windows, MacOS and Linux")
+    (description
+     "This program allows you to display GTK+ dialog boxes from command line 
or shell
+scripts.  More example of @code{yad} usage can be consulted at
address@hidden://sourceforge.net/p/yad-dialog/wiki/browse_pages/}.  The 
@code{yad}
+depends on GTK+ only.")
+    (license license:gpl3)))
-- 
2.17.1




--- End Message ---
--- Begin Message --- Subject: [PATCH] gnu: Add yad. Date: Mon, 10 Sep 2018 14:47:51 +0200 User-agent: mu4e 1.0; emacs 26.1
I made the suggested changes myself and pushed it to the “master” branch
with commit 57d70dbab.

Thanks!

-- 
Ricardo



--- End Message ---

reply via email to

[Prev in Thread] Current Thread [Next in Thread]