Received: from localhost (localhost [127.0.0.1]) by mail.netbsd.org (Postfix) with ESMTP id B24FE84D55 for ; Thu, 22 Jun 2023 11:23:49 +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 hIBfIn6jzAPv for ; Thu, 22 Jun 2023 11:23:49 +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 0EC8184CED for ; Thu, 22 Jun 2023 11:23:49 +0000 (UTC) Received: by cvs.NetBSD.org (Postfix, from userid 500) id 06B59FA89; Thu, 22 Jun 2023 11:23:49 +0000 (UTC) Content-Transfer-Encoding: 7bit Content-Type: multipart/mixed; boundary="_----------=_1687433029291200" MIME-Version: 1.0 Date: Thu, 22 Jun 2023 11:23:49 +0000 From: "Jonathan Perkin" Subject: CVS commit: pkgsrc/audio/puddletag To: pkgsrc-changes@NetBSD.org Approved: commit_and_comment Reply-To: jperkin@netbsd.org X-Mailer: log_accum Message-Id: <20230622112349.06B59FA89@cvs.NetBSD.org> This is a multi-part message in MIME format. --_----------=_1687433029291200 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:23:48 UTC 2023 Modified Files: pkgsrc/audio/puddletag: Makefile Log Message: puddletag: Fix bogus PKGMANDIR assumption. To generate a diff of this commit: cvs rdiff -u -r1.1 -r1.2 pkgsrc/audio/puddletag/Makefile Please note that diffs are not public domain; they are subject to the copyright notices on the relevant files. --_----------=_1687433029291200 Content-Disposition: inline Content-Length: 756 Content-Transfer-Encoding: binary Content-Type: text/x-diff; charset=us-ascii Modified files: Index: pkgsrc/audio/puddletag/Makefile diff -u pkgsrc/audio/puddletag/Makefile:1.1 pkgsrc/audio/puddletag/Makefile:1.2 --- pkgsrc/audio/puddletag/Makefile:1.1 Fri Dec 16 17:49:09 2022 +++ pkgsrc/audio/puddletag/Makefile Thu Jun 22 11:23:48 2023 @@ -1,4 +1,4 @@ -# $NetBSD: Makefile,v 1.1 2022/12/16 17:49:09 wiz Exp $ +# $NetBSD: Makefile,v 1.2 2023/06/22 11:23:48 jperkin Exp $ DISTNAME= puddletag-2.0.1 CATEGORIES= audio python @@ -26,7 +26,9 @@ PYTHON_VERSIONS_INCOMPATIBLE= 27 37 INSTALLATION_DIRS= ${PKGMANDIR}/man1 post-install: +.if ${PKGMANDIR} != "share/man" ${MV} ${DESTDIR}${PREFIX}/share/man/man1/* ${DESTDIR}${PREFIX}/${PKGMANDIR}/man1 +.endif .include "../../lang/python/egg.mk" .include "../../mk/bsd.pkg.mk" --_----------=_1687433029291200--