Received: from mail.netbsd.org (mail.netbsd.org [199.233.217.200]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (Client CN "mail.netbsd.org", Issuer "Postmaster NetBSD.org" (verified OK)) by mollari.NetBSD.org (Postfix) with ESMTPS id 599437A21F for ; Sun, 12 Jun 2016 18:49:45 +0000 (UTC) Received: by mail.netbsd.org (Postfix, from userid 605) id 039EF85E91; Sun, 12 Jun 2016 18:49:45 +0000 (UTC) Received: from localhost (localhost [127.0.0.1]) by mail.netbsd.org (Postfix) with ESMTP id 86DFA85E7B for ; Sun, 12 Jun 2016 18:49:44 +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 b8SO6hA5oY2I for ; Sun, 12 Jun 2016 18:49:44 +0000 (UTC) Received: from cvs.NetBSD.org (ivanova.netbsd.org [199.233.217.197]) by mail.netbsd.org (Postfix) with ESMTP id 127A685E11 for ; Sun, 12 Jun 2016 18:49:44 +0000 (UTC) Received: by cvs.NetBSD.org (Postfix, from userid 500) id 08EA9FBB5; Sun, 12 Jun 2016 18:49:44 +0000 (UTC) Content-Transfer-Encoding: 7bit Content-Type: multipart/mixed; boundary="_----------=_146575738414700" MIME-Version: 1.0 Date: Sun, 12 Jun 2016 18:49:44 +0000 From: "David Brownlee" Subject: CVS commit: pkgsrc/sysutils/xentools45 To: pkgsrc-changes@NetBSD.org Reply-To: abs@netbsd.org X-Mailer: log_accum Message-Id: <20160612184944.08EA9FBB5@cvs.NetBSD.org> Sender: pkgsrc-changes-owner@NetBSD.org List-Id: pkgsrc-changes.NetBSD.org Precedence: bulk This is a multi-part message in MIME format. --_----------=_146575738414700 Content-Disposition: inline Content-Transfer-Encoding: 8bit Content-Type: text/plain; charset="US-ASCII" Module Name: pkgsrc Committed By: abs Date: Sun Jun 12 18:49:43 UTC 2016 Modified Files: pkgsrc/sysutils/xentools45: Makefile Log Message: Update pkgsrc pod2man usage for perl v5.24. No pkgrevision bump as no functional change if package built To generate a diff of this commit: cvs rdiff -u -r1.33 -r1.34 pkgsrc/sysutils/xentools45/Makefile Please note that diffs are not public domain; they are subject to the copyright notices on the relevant files. --_----------=_146575738414700 Content-Disposition: inline Content-Length: 1849 Content-Transfer-Encoding: binary Content-Type: text/x-diff; charset=us-ascii Modified files: Index: pkgsrc/sysutils/xentools45/Makefile diff -u pkgsrc/sysutils/xentools45/Makefile:1.33 pkgsrc/sysutils/xentools45/Makefile:1.34 --- pkgsrc/sysutils/xentools45/Makefile:1.33 Sat May 21 20:11:21 2016 +++ pkgsrc/sysutils/xentools45/Makefile Sun Jun 12 18:49:43 2016 @@ -1,4 +1,4 @@ -# $NetBSD: Makefile,v 1.33 2016/05/21 20:11:21 bad Exp $ +# $NetBSD: Makefile,v 1.34 2016/06/12 18:49:43 abs Exp $ VERSION= 4.5.3 PKGREVISION= 1 @@ -161,25 +161,25 @@ pre-build: ${CP} -f ${FILESDIR}/locking.sh ${WRKSRC}/hotplug/NetBSD/ ${SED} -e "s,@XENDCONFDIR@,${PKG_SYSCONFDIR},g" \ ${XENTOP}/docs/man/xenstore-chmod.pod.1 |\ - pod2man >${WRKDIR}/xenstore-chmod.1 + pod2man -n xenstore-chmod >${WRKDIR}/xenstore-chmod.1 ${SED} -e "s,@XENDCONFDIR@,${PKG_SYSCONFDIR},g" \ ${XENTOP}/docs/man/xenstore-ls.pod.1 |\ - pod2man >${WRKDIR}/xenstore-ls.1 + pod2man -n xenstore-ls >${WRKDIR}/xenstore-ls.1 ${SED} -e "s,@XENDCONFDIR@,${PKG_SYSCONFDIR},g" \ ${XENTOP}/docs/man/xenstore.pod.1 |\ - pod2man >${WRKDIR}/xenstore.1 + pod2man -n xenstore >${WRKDIR}/xenstore.1 ${SED} -e "s,@XENDCONFDIR@,${PKG_SYSCONFDIR},g" \ ${XENTOP}/docs/man/xl.cfg.pod.5 |\ - pod2man >${WRKDIR}/xl.cfg.5 + pod2man -n xl.cfg >${WRKDIR}/xl.cfg.5 ${SED} -e "s,@XENDCONFDIR@,${PKG_SYSCONFDIR},g" \ ${XENTOP}/docs/man/xl.conf.pod.5 |\ - pod2man >${WRKDIR}/xl.conf.5 + pod2man -n xl.conf >${WRKDIR}/xl.conf.5 ${SED} -e "s,@XENDCONFDIR@,${PKG_SYSCONFDIR},g" \ ${XENTOP}/docs/man/xl.pod.1 |\ - pod2man >${WRKDIR}/xl.1 + pod2man -n xl >${WRKDIR}/xl.1 ${SED} -e "s,@XENDCONFDIR@,${PKG_SYSCONFDIR},g" \ ${XENTOP}/docs/man/xlcpupool.cfg.pod.5 |\ - pod2man >${WRKDIR}/xlcpupool.cfg.5 + pod2man -n xlcpupool.cfg >${WRKDIR}/xlcpupool.cfg.5 INSTALLATION_DIRS= ${EGDIR} ${PKGMANDIR}/man5 --_----------=_146575738414700--