Received: by mail.netbsd.org (Postfix, from userid 605) id 9865384E81; Mon, 28 Jan 2019 14:33:53 +0000 (UTC) Received: from localhost (localhost [127.0.0.1]) by mail.netbsd.org (Postfix) with ESMTP id 0BA8A84DC8 for ; Mon, 28 Jan 2019 14:33:53 +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 x3n2CjF8aFCy for ; Mon, 28 Jan 2019 14:33:52 +0000 (UTC) Received: from cvs.NetBSD.org (ivanova.netbsd.org [199.233.217.197]) by mail.netbsd.org (Postfix) with ESMTP id 5D8F084D04 for ; Mon, 28 Jan 2019 14:33:52 +0000 (UTC) Received: by cvs.NetBSD.org (Postfix, from userid 500) id 4D300FB16; Mon, 28 Jan 2019 14:33:52 +0000 (UTC) Content-Transfer-Encoding: 7bit Content-Type: multipart/mixed; boundary="_----------=_1548686032118320" MIME-Version: 1.0 Date: Mon, 28 Jan 2019 14:33:52 +0000 From: "Amitai Schleier" Subject: CVS commit: pkgsrc/www/z-push To: pkgsrc-changes@NetBSD.org Reply-To: schmonz@netbsd.org X-Mailer: log_accum Message-Id: <20190128143352.4D300FB16@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. --_----------=_1548686032118320 Content-Disposition: inline Content-Transfer-Encoding: 8bit Content-Type: text/plain; charset="US-ASCII" Module Name: pkgsrc Committed By: schmonz Date: Mon Jan 28 14:33:52 UTC 2019 Modified Files: pkgsrc/www/z-push: Makefile Log Message: Add share/z-push to INSTALLATION_DIRS. Use REAL_ROOT_USER as pkglint suggests. To generate a diff of this commit: cvs rdiff -u -r1.3 -r1.4 pkgsrc/www/z-push/Makefile Please note that diffs are not public domain; they are subject to the copyright notices on the relevant files. --_----------=_1548686032118320 Content-Disposition: inline Content-Length: 1129 Content-Transfer-Encoding: binary Content-Type: text/x-diff; charset=us-ascii Modified files: Index: pkgsrc/www/z-push/Makefile diff -u pkgsrc/www/z-push/Makefile:1.3 pkgsrc/www/z-push/Makefile:1.4 --- pkgsrc/www/z-push/Makefile:1.3 Thu Jun 30 03:17:52 2016 +++ pkgsrc/www/z-push/Makefile Mon Jan 28 14:33:52 2019 @@ -1,4 +1,4 @@ -# $NetBSD: Makefile,v 1.3 2016/06/30 03:17:52 taca Exp $ +# $NetBSD: Makefile,v 1.4 2019/01/28 14:33:52 schmonz Exp $ # DISTNAME= z-push-${ZPUSH_VERSION} @@ -23,7 +23,7 @@ ZPUSHLOGDIR= ${VARBASE}/log/z-push BUILD_DEFS= APACHE_USER APACHE_GROUP VARBASE USE_TOOLS= pax -INSTALLATION_DIRS= ${DOCDIR} ${EGDIR} bin +INSTALLATION_DIRS= ${DOCDIR} ${EGDIR} bin ${ZPUSHDIR} .include "../../lang/php/phpversion.mk" @@ -48,9 +48,9 @@ OWN_DIRS_PERMS+= ${ZPUSHLOGDIR} \ ${APACHE_USER} ${APACHE_GROUP} 0750 CONF_FILES_PERMS+= ${EGDIR}/config.php ${PKG_SYSCONFDIR}/config.php \ - ${ROOT_USER} ${APACHE_GROUP} 0640 + ${REAL_ROOT_USER} ${APACHE_GROUP} 0640 CONF_FILES_PERMS+= ${EGDIR}/z-push.conf ${PKG_SYSCONFDIR}/z-push.conf \ - ${ROOT_USER} ${APACHE_GROUP} 0640 + ${REAL_ROOT_USER} ${APACHE_GROUP} 0640 REPLACE_INTERPRETER+= php REPLACE.php.old= .*php --_----------=_1548686032118320--