Received: from localhost (localhost [127.0.0.1]) by mail.netbsd.org (Postfix) with ESMTP id A646C84D55 for ; Thu, 22 Jun 2023 11:23:03 +0000 (UTC) X-Virus-Scanned: amavisd-new at netbsd.org Received: from mail.netbsd.org ([127.0.0.1]) by localhost (mail.netbsd.org [127.0.0.1]) (amavisd-new, port 10025) with ESMTP id M1ymPJ9XB62y for ; Thu, 22 Jun 2023 11:23:03 +0000 (UTC) Received: from cvs.NetBSD.org (ivanova.netbsd.org [199.233.217.197]) by mail.netbsd.org (Postfix) with ESMTP id 0889D84CED for ; Thu, 22 Jun 2023 11:23:03 +0000 (UTC) Received: by cvs.NetBSD.org (Postfix, from userid 500) id 02363FA89; Thu, 22 Jun 2023 11:23:03 +0000 (UTC) Content-Transfer-Encoding: 7bit Content-Type: multipart/mixed; boundary="_----------=_168743298264080" MIME-Version: 1.0 Date: Thu, 22 Jun 2023 11:23:02 +0000 From: "Jonathan Perkin" Subject: CVS commit: pkgsrc/graphics/geeqie To: pkgsrc-changes@NetBSD.org Approved: commit_and_comment Reply-To: jperkin@netbsd.org X-Mailer: log_accum Message-Id: <20230622112303.02363FA89@cvs.NetBSD.org> This is a multi-part message in MIME format. --_----------=_168743298264080 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:02 UTC 2023 Modified Files: pkgsrc/graphics/geeqie: Makefile Log Message: geeqie: Fix bogus PKGMANDIR assumption. To generate a diff of this commit: cvs rdiff -u -r1.111 -r1.112 pkgsrc/graphics/geeqie/Makefile Please note that diffs are not public domain; they are subject to the copyright notices on the relevant files. --_----------=_168743298264080 Content-Disposition: inline Content-Length: 706 Content-Transfer-Encoding: binary Content-Type: text/x-diff; charset=us-ascii Modified files: Index: pkgsrc/graphics/geeqie/Makefile diff -u pkgsrc/graphics/geeqie/Makefile:1.111 pkgsrc/graphics/geeqie/Makefile:1.112 --- pkgsrc/graphics/geeqie/Makefile:1.111 Sun Jun 18 12:13:28 2023 +++ pkgsrc/graphics/geeqie/Makefile Thu Jun 22 11:23:02 2023 @@ -1,4 +1,4 @@ -# $NetBSD: Makefile,v 1.111 2023/06/18 12:13:28 wiz Exp $ +# $NetBSD: Makefile,v 1.112 2023/06/22 11:23:02 jperkin Exp $ DISTNAME= geeqie-2.1 CATEGORIES= graphics @@ -31,7 +31,9 @@ REPLACE_BASH+= version.sh INSTALLATION_DIRS= ${PKGMANDIR}/man1 post-install: +.if ${PKGMANDIR} != "share/man" ${MV} ${DESTDIR}${PREFIX}/share/man/man1/*.1 ${DESTDIR}${PREFIX}/${PKGMANDIR}/man1 +.endif .include "options.mk" --_----------=_168743298264080--