From 5c413a9cbc89c200d4450fc8ff21507e6659fdd5 Mon Sep 17 00:00:00 2001 From: Ludovic Courtès Date: Fri, 27 Sep 2013 08:41:19 +0200 Subject: gnu: module-init-tools: Remove reference to unavailable man page tarball. Fixes . Reported by Mark H. Weaver . * gnu/packages/linux.scm (module-init-tools): Remove reference to Gentoo's pre-built man pages and 'unpack-man-pages' phase. Add 'fake-docbook' phases. --- gnu/packages/linux.scm | 24 ++++++++---------------- 1 file changed, 8 insertions(+), 16 deletions(-) (limited to 'gnu') diff --git a/gnu/packages/linux.scm b/gnu/packages/linux.scm index 06b0b6da99..9d0b93d406 100644 --- a/gnu/packages/linux.scm +++ b/gnu/packages/linux.scm @@ -122,24 +122,16 @@ (define-public module-init-tools (base32 "0jxnz9ahfic79rp93l5wxcbgh4pkv85mwnjlbv1gz3jawv5cvwp1")))) (build-system gnu-build-system) - (inputs - ;; The upstream tarball lacks man pages, and building them would require - ;; DocBook & co. Thus, use Gentoo's pre-built man pages. - `(("man-pages" - ,(origin - (method url-fetch) - (uri (string-append - "http://distfiles.gentoo.org/distfiles/module-init-tools-" version - "-man.tar.bz2")) - (sha256 - (base32 - "1j1nzi87kgsh4scl645fhwhjvljxj83cmdasa4n4p5krhasgw358")))))) (arguments + ;; FIXME: The upstream tarball lacks man pages, and building them would + ;; require DocBook & co. We used to use Gentoo's pre-built man pages, + ;; but they vanished. In the meantime, fake it. '(#:phases (alist-cons-before - 'unpack 'unpack-man-pages - (lambda* (#:key inputs #:allow-other-keys) - (let ((man-pages (assoc-ref inputs "man-pages"))) - (zero? (system* "tar" "xvf" man-pages)))) + 'configure 'fake-docbook + (lambda _ + (substitute* "Makefile.in" + (("^DOCBOOKTOMAN.*$") + "DOCBOOKTOMAN = true\n"))) %standard-phases))) (home-page "http://www.kernel.org/pub/linux/utils/kernel/module-init-tools/") (synopsis "Tools for loading and managing Linux kernel modules") -- cgit v1.2.3