From mboxrd@z Thu Jan 1 00:00:00 1970 From: Andreas Enge Subject: bug#15392: xorg-server FTBFS Date: Sat, 21 Sep 2013 19:23:52 +0200 Message-ID: <20130921172352.GA18615@debian> References: <871u4pi625.fsf@tines.lan> <87k3iglww4.fsf@gnu.org> Mime-Version: 1.0 Content-Type: text/plain; charset=us-ascii Return-path: Received: from eggs.gnu.org ([2001:4830:134:3::10]:40855) by lists.gnu.org with esmtp (Exim 4.71) (envelope-from ) id 1VNQvd-00049v-6z for bug-guix@gnu.org; Sat, 21 Sep 2013 13:25:15 -0400 Received: from Debian-exim by eggs.gnu.org with spam-scanned (Exim 4.71) (envelope-from ) id 1VNQvX-0001Xm-2j for bug-guix@gnu.org; Sat, 21 Sep 2013 13:25:09 -0400 Received: from debbugs.gnu.org ([140.186.70.43]:45635) by eggs.gnu.org with esmtp (Exim 4.71) (envelope-from ) id 1VNQvW-0001Wq-Vs for bug-guix@gnu.org; Sat, 21 Sep 2013 13:25:03 -0400 Received: from Debian-debbugs by debbugs.gnu.org with local (Exim 4.80) (envelope-from ) id 1VNQvW-0006Ki-92 for bug-guix@gnu.org; Sat, 21 Sep 2013 13:25:02 -0400 Sender: "Debbugs-submit" Resent-Message-ID: Content-Disposition: inline In-Reply-To: <87k3iglww4.fsf@gnu.org> List-Id: Bug reports for GNU Guix List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , Errors-To: bug-guix-bounces+gcggb-bug-guix=m.gmane.org@gnu.org Sender: bug-guix-bounces+gcggb-bug-guix=m.gmane.org@gnu.org To: Ludovic =?UTF-8?Q?Court=C3=A8s?= Cc: 15392@debbugs.gnu.org I tried the following patch, setting some xkb-related options for configuring xorg-server: diff --git a/gnu/packages/xorg.scm b/gnu/packages/xorg.scm index 9a0e3e2..096ad54 100644 --- a/gnu/packages/xorg.scm +++ b/gnu/packages/xorg.scm @@ -4279,10 +4279,23 @@ emulation to complete hardware acceleration for modern GPUs.") ("xf86dgaproto" ,xf86dgaproto) ("xf86driproto" ,xf86driproto) ("xf86vidmodeproto" ,xf86vidmodeproto) -;; ("xkbutils" ,xkbutils) -;; ("xkeyboard-config" ,xkeyboard-config) +("setxkbmap" ,setxkbmap) +("xkbcomp" ,xkbcomp) +("xkbevd" ,xkbevd) +("xkbutils" ,xkbutils) +("xkeyboard-config" ,xkeyboard-config) ("xtrans" ,xtrans) ("zlib" ,zlib))) + (arguments + `(#:configure-flags + (list (string-append "--with-xkb-path=" + (assoc-ref %build-inputs "xkeyboard-config") + "/share/X11/xkb") + (string-append "--with-xkb-output=" + "/tmp") + (string-append "--with-xkb-bin-directory=" + (assoc-ref %build-inputs "xkbcomp") + "/bin")))) (home-page "http://www.x.org/wiki/") (synopsis "xorg implementation of the X Window System") (description "X.org provides an implementation of the X Window System") The same error occurs. Inspired by nixpkgs, I also tried the following patch to xkeyboard-config: + (arguments + `(#:configure-flags + (list (string-append "--with-xkb-base=" + (assoc-ref %outputs "out") + "/etc/X11/xkb") + "--with-xkb-rules-symlink=xorg,xfree86"))) Always the same error. Should nix not have the same problem? Andreas