From be05e643ae4d62dc25aa88b7fbdb0eae9cf10eb0 Mon Sep 17 00:00:00 2001 From: Ludovic Courtès Date: Wed, 12 Nov 2014 20:44:20 +0100 Subject: gnu: windowmaker: Leave 'wmaker' unwrapped. Fixes . Reported by Mark H Weaver . * gnu/packages/gnustep.scm (windowmaker)[arguments]: Add 'pre-configure' phase. Change 'wrap' phase to wrap 'wmaker.inst', not 'wmaker'. --- gnu/packages/gnustep.scm | 30 ++++++++++++++++++++++-------- 1 file changed, 22 insertions(+), 8 deletions(-) (limited to 'gnu/packages/gnustep.scm') diff --git a/gnu/packages/gnustep.scm b/gnu/packages/gnustep.scm index 74c1ad9051..edd159d262 100644 --- a/gnu/packages/gnustep.scm +++ b/gnu/packages/gnustep.scm @@ -40,17 +40,31 @@ "1i3dw1yagsa3rs9x2na2ynqlgmbahayws0kz4vl00fla6550nns3")))) (build-system gnu-build-system) (arguments - '(#:phases (alist-cons-after - 'install 'wrap + '(#:phases (alist-cons-before + 'configure 'pre-configure (lambda* (#:key outputs #:allow-other-keys) + ;; 'wmaker' wants to invoke 'wmaker.inst' the first time, + ;; and the 'wmsetbg', so make sure it uses the right ones. + ;; We can't use a wrapper here because that would pollute + ;; $PATH in the whole session. (let* ((out (assoc-ref outputs "out")) (bin (string-append out "/bin"))) - ;; 'wmaker' wants to invoke 'wmaker.inst' the first time, - ;; which in turn wants to invoke 'wmmenugen' etc., so - ;; make sure everything is in $PATH. - (wrap-program (string-append bin "/wmaker") - `("PATH" ":" prefix (,bin))))) - %standard-phases))) + (substitute* "src/main.c" + (("\"wmaker\\.inst") + (string-append "\"" bin "/wmaker.inst"))) + (substitute* '("src/defaults.c" "WPrefs.app/Menu.c") + (("\"wmsetbg") + (string-append "\"" bin "/wmsetbg"))))) + (alist-cons-after + 'install 'wrap + (lambda* (#:key outputs #:allow-other-keys) + (let* ((out (assoc-ref outputs "out")) + (bin (string-append out "/bin"))) + ;; In turn, 'wmaker.inst' wants to invoke 'wmmenugen' + ;; etc., so make sure everything is in $PATH. + (wrap-program (string-append bin "/wmaker.inst") + `("PATH" ":" prefix (,bin))))) + %standard-phases)))) (inputs `(("libxmu" ,libxmu) ("libxft" ,libxft) -- cgit v1.2.3