Received: from localhost (localhost [127.0.0.1]) by mail.netbsd.org (Postfix) with ESMTP id 90C9384E65 for ; Thu, 22 Jun 2023 11:19:32 +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 w4rGDWjG6Wo8 for ; Thu, 22 Jun 2023 11:19:32 +0000 (UTC) Received: from cvs.NetBSD.org (ivanova.netbsd.org [199.233.217.197]) by mail.netbsd.org (Postfix) with ESMTP id E5F1284CED for ; Thu, 22 Jun 2023 11:19:31 +0000 (UTC) Received: by cvs.NetBSD.org (Postfix, from userid 500) id DFB25FA89; Thu, 22 Jun 2023 11:19:31 +0000 (UTC) Content-Transfer-Encoding: 7bit Content-Type: multipart/mixed; boundary="_----------=_168743277139640" MIME-Version: 1.0 Date: Thu, 22 Jun 2023 11:19:31 +0000 From: "Jonathan Perkin" Subject: CVS commit: pkgsrc/print/py-pspdfutils To: pkgsrc-changes@NetBSD.org Approved: commit_and_comment Reply-To: jperkin@netbsd.org X-Mailer: log_accum Message-Id: <20230622111931.DFB25FA89@cvs.NetBSD.org> This is a multi-part message in MIME format. --_----------=_168743277139640 Content-Disposition: inline Content-Transfer-Encoding: 8bit Content-Type: text/plain; charset="US-ASCII" Module Name: pkgsrc Committed By: jperkin Date: Thu Jun 22 11:19:31 UTC 2023 Modified Files: pkgsrc/print/py-pspdfutils: Makefile Log Message: py-pspdfutils: Fix bogus PKGMANDIR assumption. To generate a diff of this commit: cvs rdiff -u -r1.5 -r1.6 pkgsrc/print/py-pspdfutils/Makefile Please note that diffs are not public domain; they are subject to the copyright notices on the relevant files. --_----------=_168743277139640 Content-Disposition: inline Content-Length: 779 Content-Transfer-Encoding: binary Content-Type: text/x-diff; charset=us-ascii Modified files: Index: pkgsrc/print/py-pspdfutils/Makefile diff -u pkgsrc/print/py-pspdfutils/Makefile:1.5 pkgsrc/print/py-pspdfutils/Makefile:1.6 --- pkgsrc/print/py-pspdfutils/Makefile:1.5 Thu Jun 15 19:48:06 2023 +++ pkgsrc/print/py-pspdfutils/Makefile Thu Jun 22 11:19:31 2023 @@ -1,4 +1,4 @@ -# $NetBSD: Makefile,v 1.5 2023/06/15 19:48:06 adam Exp $ +# $NetBSD: Makefile,v 1.6 2023/06/22 11:19:31 jperkin Exp $ DISTNAME= pspdfutils-3.0.4 PKGNAME= ${PYPKGPREFIX}-${DISTNAME} @@ -31,7 +31,9 @@ DEPENDS+= ${PYPKGPREFIX}-typing-extensio CONFLICTS+= psutils<3 post-install: +.if ${PKGMANDIR} != "share/man" cd ${DESTDIR}${PREFIX}/share/man && ${MV} * ${DESTDIR}${PREFIX}/${PKGMANDIR} +.endif # still needs 'make install' TEST_ENV+= PYTHONPATH=${WRKSRC}/build/lib --_----------=_168743277139640--