From mboxrd@z Thu Jan 1 00:00:00 1970 From: Mark H Weaver Subject: [PATCH] gnu: flac: Install man pages in share/man Date: Fri, 21 Mar 2014 15:50:18 -0400 Message-ID: <87mwgjmiv9.fsf@yeeloong.lan> Mime-Version: 1.0 Content-Type: multipart/mixed; boundary="=-=-=" Return-path: Received: from eggs.gnu.org ([2001:4830:134:3::10]:38765) by lists.gnu.org with esmtp (Exim 4.71) (envelope-from ) id 1WR5T4-0000fN-Ly for guix-devel@gnu.org; Fri, 21 Mar 2014 15:51:07 -0400 Received: from Debian-exim by eggs.gnu.org with spam-scanned (Exim 4.71) (envelope-from ) id 1WR5T0-0000XB-1p for guix-devel@gnu.org; Fri, 21 Mar 2014 15:51:02 -0400 Received: from world.peace.net ([96.39.62.75]:57245) by eggs.gnu.org with esmtp (Exim 4.71) (envelope-from ) id 1WR5Sz-0000X4-T3 for guix-devel@gnu.org; Fri, 21 Mar 2014 15:50:57 -0400 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 --=-=-= Content-Type: text/plain I'm not sure if this should go in master or core-updates. What do you think? Mark --=-=-= Content-Type: text/x-patch; charset=utf-8 Content-Disposition: inline; filename=0001-gnu-flac-Install-man-pages-in-share-man.patch Content-Transfer-Encoding: quoted-printable Content-Description: [PATCH] gnu: flac: Install man pages in share/man >From c90bdada66d79c04d42a7c6a6210fd73b866d328 Mon Sep 17 00:00:00 2001 From: Mark H Weaver Date: Fri, 21 Mar 2014 03:14:54 -0400 Subject: [PATCH] gnu: flac: Install man pages in share/man. * gnu/packages/xiph.scm (flac): Add --mandir configure flag. --- gnu/packages/xiph.scm | 8 +++++++- 1 file changed, 7 insertions(+), 1 deletion(-) diff --git a/gnu/packages/xiph.scm b/gnu/packages/xiph.scm index 0e8cb5f..49db245 100644 --- a/gnu/packages/xiph.scm +++ b/gnu/packages/xiph.scm @@ -3,6 +3,7 @@ ;;; Copyright =C2=A9 2013 Nikita Karetnikov ;;; Copyright =C2=A9 2013 David Thompson ;;; Copyright =C2=A9 2014 Sree Harsha Totakura +;;; Copyright =C2=A9 2014 Mark H Weaver ;;; ;;; This file is part of GNU Guix. ;;; @@ -201,7 +202,12 @@ OpenBSD's sndio.") (list (search-patch "flac-fix-memcmp-not-declared.patch"))))) (build-system gnu-build-system) (arguments - `(#:parallel-tests? #f)) + `(#:parallel-tests? #f + ;; 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")))) ;; FIXME: configure also looks for xmms, input could be added once it e= xists (inputs `(("libogg" ,libogg))) (synopsis "flac free lossless audio codec") --=20 1.8.4 --=-=-=--