Received: by mail.netbsd.org (Postfix, from userid 605) id B6D7B84D61; Mon, 14 Jun 2021 20:45:04 +0000 (UTC) Received: from localhost (localhost [127.0.0.1]) by mail.netbsd.org (Postfix) with ESMTP id F065684CE2 for ; Mon, 14 Jun 2021 20:45: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 vhHUtwFEU8TQ for ; Mon, 14 Jun 2021 20:45:03 +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 72F1284CBC for ; Mon, 14 Jun 2021 20:45:03 +0000 (UTC) Received: by cvs.NetBSD.org (Postfix, from userid 500) id 61C87FA95; Mon, 14 Jun 2021 20:45:03 +0000 (UTC) Content-Transfer-Encoding: 7bit Content-Type: multipart/mixed; boundary="_----------=_1623703503170300" MIME-Version: 1.0 Date: Mon, 14 Jun 2021 20:45:03 +0000 From: "Amitai Schleier" Subject: CVS commit: pkgsrc/graphics/tiff To: pkgsrc-changes@NetBSD.org Reply-To: schmonz@netbsd.org X-Mailer: log_accum Message-Id: <20210614204503.61C87FA95@cvs.NetBSD.org> Sender: pkgsrc-changes-owner@NetBSD.org List-Id: Precedence: bulk List-Unsubscribe: This is a multi-part message in MIME format. --_----------=_1623703503170300 Content-Disposition: inline Content-Transfer-Encoding: 8bit Content-Type: text/plain; charset="US-ASCII" Module Name: pkgsrc Committed By: schmonz Date: Mon Jun 14 20:45:03 UTC 2021 Modified Files: pkgsrc/graphics/tiff: Makefile distinfo Log Message: Rename VERSION to VERSION.txt so that it does not collide with the C++ version header on case-insensitive filesystems (via MacPorts). No change intended to installed package. To generate a diff of this commit: cvs rdiff -u -r1.149 -r1.150 pkgsrc/graphics/tiff/Makefile cvs rdiff -u -r1.97 -r1.98 pkgsrc/graphics/tiff/distinfo Please note that diffs are not public domain; they are subject to the copyright notices on the relevant files. --_----------=_1623703503170300 Content-Disposition: inline Content-Length: 1656 Content-Transfer-Encoding: binary Content-Type: text/x-diff; charset=us-ascii Modified files: Index: pkgsrc/graphics/tiff/Makefile diff -u pkgsrc/graphics/tiff/Makefile:1.149 pkgsrc/graphics/tiff/Makefile:1.150 --- pkgsrc/graphics/tiff/Makefile:1.149 Tue Apr 20 13:12:54 2021 +++ pkgsrc/graphics/tiff/Makefile Mon Jun 14 20:45:03 2021 @@ -1,4 +1,4 @@ -# $NetBSD: Makefile,v 1.149 2021/04/20 13:12:54 gdt Exp $ +# $NetBSD: Makefile,v 1.150 2021/06/14 20:45:03 schmonz Exp $ DISTNAME= tiff-4.3.0 CATEGORIES= graphics @@ -24,11 +24,17 @@ PKGCONFIG_OVERRIDE= libtiff-4.pc.in TEST_TARGET= check +post-extract: + cd ${WRKSRC} && \ + ${MV} -f VERSION VERSION.txt + post-install: cd ${DESTDIR}/${PREFIX}/${PKGMANDIR}/man3 && for file in *.3tiff; do\ target=`${ECHO} $$file | sed "s/3tiff/3/"`; \ ${MV} $$file $$target; \ done + cd ${DESTDIR}/${PREFIX}/share/doc/${PKGBASE} && \ + ${MV} -f VERSION.txt VERSION .include "options.mk" Index: pkgsrc/graphics/tiff/distinfo diff -u pkgsrc/graphics/tiff/distinfo:1.97 pkgsrc/graphics/tiff/distinfo:1.98 --- pkgsrc/graphics/tiff/distinfo:1.97 Tue Apr 20 13:12:54 2021 +++ pkgsrc/graphics/tiff/distinfo Mon Jun 14 20:45:03 2021 @@ -1,6 +1,7 @@ -$NetBSD: distinfo,v 1.97 2021/04/20 13:12:54 gdt Exp $ +$NetBSD: distinfo,v 1.98 2021/06/14 20:45:03 schmonz Exp $ SHA1 (tiff-4.3.0.tar.gz) = c03f6cb05b64ff496b3a5c733a0af6296aead051 RMD160 (tiff-4.3.0.tar.gz) = 254477d12e79309cb82615eaad9946cc627a58f3 SHA512 (tiff-4.3.0.tar.gz) = e04a4a6c542e58a174c1e9516af3908acf1d3d3e1096648c5514f4963f73e7af27387a76b0fbabe43cf867a18874088f963796a7cd6e45deb998692e3e235493 Size (tiff-4.3.0.tar.gz) = 2808254 bytes +SHA1 (patch-Makefile.in) = de93f4a2cea4bffc117482fdc6875adfb9aa67e0 --_----------=_1623703503170300--