unofficial mirror of guix-patches@gnu.org 
 help / color / mirror / code / Atom feed
* [bug#32611] [PATCH] xorg.scm - add transset-df
@ 2018-09-02  3:47 Benjamin Slade
  2018-09-03 21:28 ` bug#32611: " Ludovic Courtès
  0 siblings, 1 reply; 2+ messages in thread
From: Benjamin Slade @ 2018-09-02  3:47 UTC (permalink / raw)
  To: 32611

[-- Attachment #1: xorg-add-transsetdf.patch --]
[-- Type: text/x-patch, Size: 2351 bytes --]

diff --git a/gnu/packages/xorg.scm b/gnu/packages/xorg.scm
index 3875765d2..e8bf99689 100644
--- a/gnu/packages/xorg.scm
+++ b/gnu/packages/xorg.scm
@@ -17,6 +17,7 @@
 ;;; Copyright © 2018 Tobias Geerinckx-Rice <me@tobias.gr>
 ;;; Copyright © 2018 Kei Kebreau <kkebreau@posteo.net>
 ;;; Copyright © 2018 Oleg Pykhalov <go.wigust@gmail.com>
+;;; Copyright © 2018 Benjamin Slade <slae@jnanam.net@>
 ;;;
 ;;; This file is part of GNU Guix.
 ;;;
@@ -6196,3 +6197,43 @@ and embedded platforms.")
 cursor to any point on the screen with a few key strokes.  It also simulates
 mouse click.  You can do everything mouse can do with a keyboard.")
     (license license:bsd-3)))
+
+(define-public transset-df
+  (package
+    (name "transset-df")
+    (version "6")
+    (source (origin
+              (method url-fetch)
+              (uri (string-append "http://forchheimer.se/" name "/" name "-" version
+                                  ".tar.gz"))
+              (sha256
+               (base32
+                "1vnykwwrv75miigbhmcwxniw8xnhsdyzhqydip2m9crxi2lwhqs5"))))
+    (build-system gnu-build-system)
+    (arguments
+     '(#:phases
+       (modify-phases %standard-phases
+         (add-after 'unpack 'setenv
+           (lambda _
+             (setenv "CC" (which "gcc"))
+             #t))
+         (delete 'configure)
+         (delete 'check)
+         (replace 'install
+           (lambda* (#:key outputs #:allow-other-keys)
+             (let* ((out (assoc-ref outputs "out"))
+                    (bin (string-append out "/bin")))
+               (mkdir-p bin)
+               (copy-file "transset-df" (string-append bin "/transset-df"))
+               #t))))))
+    (native-inputs
+     `(("pkg-config" ,pkg-config)))
+    (inputs `(("libxcomposite" ,libxcomposite)
+              ("libxdamager" ,libxdamage) ("libxrender" ,libxrender)))
+    (synopsis "Patched version of X.Org's transset with added functionality")
+    (description "A patched version of X.Org's transset with added functionality,
+including: selecting window by clicking (as transset), selecting
+windows by pointing select actual focused X11 window, selecting by
+window name or id, forcing toggle increase or decrease opacity")
+    (home-page "http://forchheimer.se/transset-df/")
+    (license x11)))

[-- Attachment #2: Type: text/plain, Size: 251 bytes --]



-- 
Dr Benjamin Slade - https://babbagefiles.xyz
  `(pgp_fp: ,(21BA 2AE1 28F6 DF36 110A 0E9C A320 BBE8 2B52 EE19))
    '(sent by mu4e on Emacs running under GNU/Linux . https://gnu.org )
       `(Choose Linux ,(Choose Freedom) . https://linux.com )

^ permalink raw reply related	[flat|nested] 2+ messages in thread

* bug#32611: [PATCH] xorg.scm - add transset-df
  2018-09-02  3:47 [bug#32611] [PATCH] xorg.scm - add transset-df Benjamin Slade
@ 2018-09-03 21:28 ` Ludovic Courtès
  0 siblings, 0 replies; 2+ messages in thread
From: Ludovic Courtès @ 2018-09-03 21:28 UTC (permalink / raw)
  To: Benjamin Slade; +Cc: 32611-done

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

Hi Benjamin,

I applied with the minor changes below, added a commit log that follows
our convention, and pushed.

Thanks!

Ludo’.


[-- Warning: decoded text below may be mangled, UTF-8 assumed --]
[-- Attachment #2: Type: text/x-patch, Size: 1744 bytes --]

diff --git a/gnu/packages/xorg.scm b/gnu/packages/xorg.scm
index 1abf95fb3..c89661272 100644
--- a/gnu/packages/xorg.scm
+++ b/gnu/packages/xorg.scm
@@ -6223,17 +6223,18 @@ mouse click.  You can do everything mouse can do with a keyboard.")
            (lambda* (#:key outputs #:allow-other-keys)
              (let* ((out (assoc-ref outputs "out"))
                     (bin (string-append out "/bin")))
-               (mkdir-p bin)
-               (copy-file "transset-df" (string-append bin "/transset-df"))
+               (install-file "transset-df" bin)
                #t))))))
     (native-inputs
      `(("pkg-config" ,pkg-config)))
     (inputs `(("libxcomposite" ,libxcomposite)
-              ("libxdamager" ,libxdamage) ("libxrender" ,libxrender)))
-    (synopsis "Patched version of X.Org's transset with added functionality")
-    (description "A patched version of X.Org's transset with added functionality,
-including: selecting window by clicking (as transset), selecting
-windows by pointing select actual focused X11 window, selecting by
-window name or id, forcing toggle increase or decrease opacity")
+              ("libxdamager" ,libxdamage)
+              ("libxrender" ,libxrender)))
+    (synopsis "Set the transparency of X11 windows")
+    (description "The @command{transset-df} command allows you to set the
+opacity of X11 windows.  This patched version of X.Org's @command{transset}
+adds functionality, including: selecting window by clicking (as transset),
+selecting windows by pointing select actual focused X11 window, selecting by
+window name or id, forcing toggle, increase or decrease opacity.")
     (home-page "http://forchheimer.se/transset-df/")
-    (license x11)))
+    (license license:x11)))

^ permalink raw reply related	[flat|nested] 2+ messages in thread

end of thread, other threads:[~2018-09-03 21:35 UTC | newest]

Thread overview: 2+ messages (download: mbox.gz / follow: Atom feed)
-- links below jump to the message on this page --
2018-09-02  3:47 [bug#32611] [PATCH] xorg.scm - add transset-df Benjamin Slade
2018-09-03 21:28 ` bug#32611: " Ludovic Courtès

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).