Received: by mail.netbsd.org (Postfix, from userid 605) id 346EF84E07; Sat, 28 Jul 2018 12:53:55 +0000 (UTC) Received: from localhost (localhost [127.0.0.1]) by mail.netbsd.org (Postfix) with ESMTP id 55FF284D89 for ; Sat, 28 Jul 2018 12:53:54 +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 cKozfO4VT2Wm for ; Sat, 28 Jul 2018 12:53:53 +0000 (UTC) Received: from cvs.NetBSD.org (ivanova.netbsd.org [199.233.217.197]) by mail.netbsd.org (Postfix) with ESMTP id 82F8684C77 for ; Sat, 28 Jul 2018 12:53:53 +0000 (UTC) Received: by cvs.NetBSD.org (Postfix, from userid 500) id 7DE20FBEC; Sat, 28 Jul 2018 12:53:53 +0000 (UTC) Content-Transfer-Encoding: 7bit Content-Type: multipart/mixed; boundary="_----------=_1532782433172490" MIME-Version: 1.0 Date: Sat, 28 Jul 2018 12:53:53 +0000 From: "Min Sik Kim" Subject: CVS commit: pkgsrc/textproc/p5-Text-BibTeX To: pkgsrc-changes@NetBSD.org Reply-To: minskim@netbsd.org X-Mailer: log_accum Message-Id: <20180728125353.7DE20FBEC@cvs.NetBSD.org> Sender: pkgsrc-changes-owner@NetBSD.org List-Id: pkgsrc-changes.NetBSD.org Precedence: bulk List-Unsubscribe: This is a multi-part message in MIME format. --_----------=_1532782433172490 Content-Disposition: inline Content-Transfer-Encoding: 8bit Content-Type: text/plain; charset="US-ASCII" Module Name: pkgsrc Committed By: minskim Date: Sat Jul 28 12:53:53 UTC 2018 Modified Files: pkgsrc/textproc/p5-Text-BibTeX: Makefile Log Message: textproc/p5-Text-BibTeX: Make this package build on Darwin install_name_tool fails if target files are read-only. Make them user-writable before running install_name_tool. To generate a diff of this commit: cvs rdiff -u -r1.48 -r1.49 pkgsrc/textproc/p5-Text-BibTeX/Makefile Please note that diffs are not public domain; they are subject to the copyright notices on the relevant files. --_----------=_1532782433172490 Content-Disposition: inline Content-Length: 861 Content-Transfer-Encoding: binary Content-Type: text/x-diff; charset=us-ascii Modified files: Index: pkgsrc/textproc/p5-Text-BibTeX/Makefile diff -u pkgsrc/textproc/p5-Text-BibTeX/Makefile:1.48 pkgsrc/textproc/p5-Text-BibTeX/Makefile:1.49 --- pkgsrc/textproc/p5-Text-BibTeX/Makefile:1.48 Mon Sep 4 12:37:13 2017 +++ pkgsrc/textproc/p5-Text-BibTeX/Makefile Sat Jul 28 12:53:53 2018 @@ -1,4 +1,4 @@ -# $NetBSD: Makefile,v 1.48 2017/09/04 12:37:13 wiz Exp $ +# $NetBSD: Makefile,v 1.49 2018/07/28 12:53:53 minskim Exp $ DISTNAME= Text-BibTeX-0.85 PKGNAME= p5-${DISTNAME} @@ -25,5 +25,13 @@ ALL_ENV+= TMPDIR=${WRKDIR}/tmp pre-configure: ${MKDIR} ${WRKDIR}/tmp +.include "../../mk/bsd.prefs.mk" +.if ${OPSYS} == "Darwin" +post-build: +.for f in bin/biblex bin/bibparse bin/dumpnames usrlib/libbtparse.dylib + ${CHMOD} u+w ${WRKSRC}/blib/${f} +.endfor +.endif + .include "../../lang/perl5/module.mk" .include "../../mk/bsd.pkg.mk" --_----------=_1532782433172490--