gnu: xorg: Return #t from all phases.

* gnu/packages/xorg.scm (xcompmgr)
* gnu/packages/xdisorg.scm (xdotool, scrot, unclutter, xscreensaver)
(tint2, nxbelld, xautolock): Return #t from all phases.
master
Mark H Weaver 2018-06-27 21:16:30 -04:00
parent aa6f87a2b9
commit c6bf07d14a
No known key found for this signature in database
GPG Key ID: 7CEF29847562C516
2 changed files with 8 additions and 5 deletions

View File

@ -243,7 +243,8 @@ X11 (yet).")
(mkdir-p (string-append out "/lib"))
(setenv "PREFIX" out)
(setenv "LDFLAGS" (string-append "-Wl,-rpath=" out "/lib"))
(setenv "CC" "gcc")))))))
(setenv "CC" "gcc")
#t))))))
(native-inputs `(("perl" ,perl))) ; for pod2man
(inputs `(("libx11" ,libx11)
("libxext" ,libxext)
@ -477,7 +478,7 @@ move windows, switch between desktops, etc.).")
(doc (string-append out "/share/doc/scrot")))
(mkdir-p doc)
(invoke "make" "install"
(string-append "docsdir=" doc))))))))
(string-append "docsdir=" doc))))))))
(inputs
`(("libx11" ,libx11)
("giblib" ,giblib)))
@ -1004,7 +1005,8 @@ color temperature should be set to match the lamps in your room.")
(lambda _
(substitute* '("driver/Makefile.in" "po/Makefile.in.in")
(("@GTK_DATADIR@") "@datadir@")
(("@PO_DATADIR@") "@datadir@")))))
(("@PO_DATADIR@") "@datadir@"))
#t)))
#:configure-flags '("--with-pam" "--with-proc-interrupts"
"--without-readdisplay")
#:make-flags (list (string-append "AD_DIR="
@ -1164,7 +1166,8 @@ by name.")
(add-after 'unpack 'fix-installation-prefix
(lambda _
(substitute* "CMakeLists.txt"
(("/etc") "${CMAKE_INSTALL_PREFIX}/etc")))))))
(("/etc") "${CMAKE_INSTALL_PREFIX}/etc"))
#t)))))
(inputs
`(("gtk+" ,gtk+-2)
("imlib2" ,imlib2)

View File

@ -5939,7 +5939,7 @@ Conventions Manual) and some of the @dfn{EWMH}
(add-after 'unpack 'autogen
(lambda _
(setenv "NOCONFIGURE" "t")
(zero? (system* "sh" "autogen.sh")))))))
(invoke "sh" "autogen.sh"))))))
(native-inputs
`(("pkg-config" ,pkg-config)
("autoconf" ,autoconf)