Received: by mail.netbsd.org (Postfix, from userid 605) id 6712A84D82; Sun, 1 Dec 2019 08:18:47 +0000 (UTC) Received: from localhost (localhost [127.0.0.1]) by mail.netbsd.org (Postfix) with ESMTP id E337984D51 for ; Sun, 1 Dec 2019 08:18:46 +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 WTExvy8aHrSM for ; Sun, 1 Dec 2019 08:18:46 +0000 (UTC) Received: from cvs.NetBSD.org (ivanova.netbsd.org [199.233.217.197]) by mail.netbsd.org (Postfix) with ESMTP id 3E42B84CD4 for ; Sun, 1 Dec 2019 08:18:46 +0000 (UTC) Received: by cvs.NetBSD.org (Postfix, from userid 500) id 30F87FA97; Sun, 1 Dec 2019 08:18:46 +0000 (UTC) Content-Transfer-Encoding: 7bit Content-Type: multipart/mixed; boundary="_----------=_1575188326165490" MIME-Version: 1.0 Date: Sun, 1 Dec 2019 08:18:46 +0000 From: "Mark Davies" Subject: CVS commit: pkgsrc/devel/rttr To: pkgsrc-changes@NetBSD.org Reply-To: markd@netbsd.org X-Mailer: log_accum Message-Id: <20191201081846.30F87FA97@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. --_----------=_1575188326165490 Content-Disposition: inline Content-Transfer-Encoding: 8bit Content-Type: text/plain; charset="US-ASCII" Module Name: pkgsrc Committed By: markd Date: Sun Dec 1 08:18:46 UTC 2019 Modified Files: pkgsrc/devel/rttr: Makefile Log Message: rttr: make sure installed files are readable To generate a diff of this commit: cvs rdiff -u -r1.1 -r1.2 pkgsrc/devel/rttr/Makefile Please note that diffs are not public domain; they are subject to the copyright notices on the relevant files. --_----------=_1575188326165490 Content-Disposition: inline Content-Length: 790 Content-Transfer-Encoding: binary Content-Type: text/x-diff; charset=us-ascii Modified files: Index: pkgsrc/devel/rttr/Makefile diff -u pkgsrc/devel/rttr/Makefile:1.1 pkgsrc/devel/rttr/Makefile:1.2 --- pkgsrc/devel/rttr/Makefile:1.1 Wed Nov 27 21:23:53 2019 +++ pkgsrc/devel/rttr/Makefile Sun Dec 1 08:18:46 2019 @@ -1,7 +1,8 @@ -# $NetBSD: Makefile,v 1.1 2019/11/27 21:23:53 markd Exp $ +# $NetBSD: Makefile,v 1.2 2019/12/01 08:18:46 markd Exp $ DISTNAME= rttr-0.9.6-src PKGNAME= ${DISTNAME:S/-src//} +PKGREVISION= 1 CATEGORIES= devel MASTER_SITES= https://www.rttr.org/releases/ @@ -18,4 +19,8 @@ CMAKE_ARGS+= -DBUILD_EXAMPLES=OFF CMAKE_ARGS+= -DBUILD_UNIT_TESTS=OFF CMAKE_ARGS+= -DBUILD_DOCUMENTATION=OFF +post-install: + chmod -R a+r ${DESTDIR}/${PREFIX}/include/rttr/ + chmod a+r ${DESTDIR}/${PREFIX}/share/rttr/* + .include "../../mk/bsd.pkg.mk" --_----------=_1575188326165490--