From mboxrd@z Thu Jan 1 00:00:00 1970 From: Mark H Weaver Subject: [PATCH] gnu: tcl: Install man pages in share/man Date: Wed, 26 Mar 2014 15:55:09 -0400 Message-ID: <87mwgcivky.fsf@yeeloong.lan> Mime-Version: 1.0 Content-Type: text/x-patch; charset=utf-8 Content-Transfer-Encoding: quoted-printable Return-path: Received: from eggs.gnu.org ([2001:4830:134:3::10]:52368) by lists.gnu.org with esmtp (Exim 4.71) (envelope-from ) id 1WStvd-0003IG-AI for guix-devel@gnu.org; Wed, 26 Mar 2014 15:56:06 -0400 Received: from Debian-exim by eggs.gnu.org with spam-scanned (Exim 4.71) (envelope-from ) id 1WStvY-0006eQ-09 for guix-devel@gnu.org; Wed, 26 Mar 2014 15:56:01 -0400 Received: from world.peace.net ([96.39.62.75]:35199) by eggs.gnu.org with esmtp (Exim 4.71) (envelope-from ) id 1WStvX-0006eG-Sp for guix-devel@gnu.org; Wed, 26 Mar 2014 15:55:55 -0400 Content-Disposition: inline; filename=0001-gnu-tcl-Install-man-pages-in-share-man.patch Content-Description: [PATCH] gnu: tcl: Install man pages in share/man List-Id: "Development of GNU Guix and the GNU System distribution." List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , Errors-To: guix-devel-bounces+gcggd-guix-devel=m.gmane.org@gnu.org Sender: guix-devel-bounces+gcggd-guix-devel=m.gmane.org@gnu.org To: guix-devel@gnu.org >From a61c7a353fc54c2be630da9fc69f6f711abf96a1 Mon Sep 17 00:00:00 2001 From: Mark H Weaver Date: Wed, 26 Mar 2014 15:09:03 -0400 Subject: [PATCH] gnu: tcl: Install man pages in share/man. * gnu/packages/tcl.scm (tcl): Add --mandir configure flag. --- gnu/packages/tcl.scm | 7 +++++++ 1 file changed, 7 insertions(+) diff --git a/gnu/packages/tcl.scm b/gnu/packages/tcl.scm index d025bff..18324ec 100644 --- a/gnu/packages/tcl.scm +++ b/gnu/packages/tcl.scm @@ -1,5 +1,6 @@ ;;; GNU Guix --- Functional package management for GNU ;;; Copyright =C2=A9 2013 Ludovic Court=C3=A8s +;;; Copyright =C2=A9 2014 Mark H Weaver ;;; ;;; This file is part of GNU Guix. ;;; @@ -56,6 +57,12 @@ "tclsh"))))) %standard-phases)) =20 + ;; By default, man pages are put in PREFIX/man, + ;; but we want them in PREFIX/share/man. + #:configure-flags (list (string-append "--mandir=3D" + (assoc-ref %outputs "out") + "/share/man")) + ;; XXX: There are a few test failures (related to HTTP, most ;; likely related to name resolution), but that doesn't cause ;; `make' to fail. --=20 1.8.4