mirror of
https://git.in.rschanz.org/ryan77627/guix.git
synced 2024-11-07 07:26:13 -05:00
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.
This commit is contained in:
parent
aa6f87a2b9
commit
c6bf07d14a
2 changed files with 8 additions and 5 deletions
|
@ -243,7 +243,8 @@ (define-public xdotool
|
|||
(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 @@ (define-public scrot
|
|||
(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 @@ (define-public xscreensaver
|
|||
(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 @@ (define-public tint2
|
|||
(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)
|
||||
|
|
|
@ -5939,7 +5939,7 @@ (define-public xcompmgr
|
|||
(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)
|
||||
|
|
Loading…
Reference in a new issue