Received: by mail.netbsd.org (Postfix, from userid 605) id 16A1584EB9; Wed, 15 Sep 2021 07:44:39 +0000 (UTC) Received: from localhost (localhost [127.0.0.1]) by mail.netbsd.org (Postfix) with ESMTP id 49E3184CE7 for ; Wed, 15 Sep 2021 07:44:38 +0000 (UTC) X-Virus-Scanned: amavisd-new at netbsd.org Received: from mail.netbsd.org ([IPv6:::1]) by localhost (mail.netbsd.org [IPv6:::1]) (amavisd-new, port 10025) with ESMTP id zhi2Df0445CB for ; Wed, 15 Sep 2021 07:44:37 +0000 (UTC) Received: from cvs.NetBSD.org (ivanova.NetBSD.org [IPv6:2001:470:a085:999:28c:faff:fe03:5984]) by mail.netbsd.org (Postfix) with ESMTP id 986AC84C71 for ; Wed, 15 Sep 2021 07:44:37 +0000 (UTC) Received: by cvs.NetBSD.org (Postfix, from userid 500) id 95CDCFA97; Wed, 15 Sep 2021 07:44:37 +0000 (UTC) Content-Transfer-Encoding: 7bit Content-Type: multipart/mixed; boundary="_----------=_163169187747120" MIME-Version: 1.0 Date: Wed, 15 Sep 2021 07:44:37 +0000 From: "Amitai Schleier" Subject: CVS commit: pkgsrc/audio/jack/patches To: pkgsrc-changes@NetBSD.org Reply-To: schmonz@netbsd.org X-Mailer: log_accum Message-Id: <20210915074437.95CDCFA97@cvs.NetBSD.org> Sender: pkgsrc-changes-owner@NetBSD.org List-Id: Precedence: bulk List-Unsubscribe: This is a multi-part message in MIME format. --_----------=_163169187747120 Content-Disposition: inline Content-Transfer-Encoding: 8bit Content-Type: text/plain; charset="US-ASCII" Module Name: pkgsrc Committed By: schmonz Date: Wed Sep 15 07:44:37 UTC 2021 Added Files: pkgsrc/audio/jack/patches: patch-man_wscript Log Message: Add patch missed in previous. To generate a diff of this commit: cvs rdiff -u -r0 -r1.1 pkgsrc/audio/jack/patches/patch-man_wscript Please note that diffs are not public domain; they are subject to the copyright notices on the relevant files. --_----------=_163169187747120 Content-Disposition: inline Content-Length: 705 Content-Transfer-Encoding: binary Content-Type: text/x-diff; charset=us-ascii Added files: Index: pkgsrc/audio/jack/patches/patch-man_wscript diff -u /dev/null pkgsrc/audio/jack/patches/patch-man_wscript:1.1 --- /dev/null Wed Sep 15 07:44:37 2021 +++ pkgsrc/audio/jack/patches/patch-man_wscript Wed Sep 15 07:44:37 2021 @@ -0,0 +1,13 @@ +$NetBSD: patch-man_wscript,v 1.1 2021/09/15 07:44:37 schmonz Exp $ + +Follow hier(7). + +--- man/wscript.orig 2021-07-15 06:18:26.000000000 +0000 ++++ man/wscript +@@ -7,5 +7,5 @@ import os + + def build(bld): + bld.exec_command('cd man ; sh fill_template %s' % bld.env['JACK_VERSION']) +- bld.install_files(bld.env['MANDIR'], bld.path.ant_glob('*.1')) ++ bld.install_files(bld.env['MANDIR'] + '/man1', bld.path.ant_glob('*.1')) + --_----------=_163169187747120--