Received: from mail.netbsd.org (mail.netbsd.org [199.233.217.200]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (Client CN "mail.netbsd.org", Issuer "Postmaster NetBSD.org" (verified OK)) by mollari.NetBSD.org (Postfix) with ESMTPS id 486CF7A284 for ; Sun, 1 Jan 2017 16:35:40 +0000 (UTC) Received: by mail.netbsd.org (Postfix, from userid 605) id ED2BE85725; Sun, 1 Jan 2017 16:35:39 +0000 (UTC) Received: from localhost (localhost [127.0.0.1]) by mail.netbsd.org (Postfix) with ESMTP id 7E112855B0 for ; Sun, 1 Jan 2017 16:35:39 +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 rL_SkrLjPNDP for ; Sun, 1 Jan 2017 16:35:39 +0000 (UTC) Received: from cvs.NetBSD.org (ivanova.netbsd.org [199.233.217.197]) by mail.netbsd.org (Postfix) with ESMTP id DA8DA84CBD for ; Sun, 1 Jan 2017 16:35:38 +0000 (UTC) Received: by cvs.NetBSD.org (Postfix, from userid 500) id D8917FBA6; Sun, 1 Jan 2017 16:35:38 +0000 (UTC) Content-Transfer-Encoding: 7bit Content-Type: multipart/mixed; boundary="_----------=_148328853843820" MIME-Version: 1.0 Date: Sun, 1 Jan 2017 16:35:38 +0000 From: "Roland Illig" Subject: CVS commit: pkgsrc/mail/mopher To: pkgsrc-changes@NetBSD.org Reply-To: rillig@netbsd.org X-Mailer: log_accum Message-Id: <20170101163538.D8917FBA6@cvs.NetBSD.org> Sender: pkgsrc-changes-owner@NetBSD.org List-Id: pkgsrc-changes.NetBSD.org Precedence: bulk This is a multi-part message in MIME format. --_----------=_148328853843820 Content-Disposition: inline Content-Transfer-Encoding: 8bit Content-Type: text/plain; charset="US-ASCII" Module Name: pkgsrc Committed By: rillig Date: Sun Jan 1 16:35:38 UTC 2017 Modified Files: pkgsrc/mail/mopher: Makefile Log Message: Fixed pkglint warnings about unpaired CONF_FILES declarations. To generate a diff of this commit: cvs rdiff -u -r1.5 -r1.6 pkgsrc/mail/mopher/Makefile Please note that diffs are not public domain; they are subject to the copyright notices on the relevant files. --_----------=_148328853843820 Content-Disposition: inline Content-Length: 1404 Content-Transfer-Encoding: binary Content-Type: text/x-diff; charset=us-ascii Modified files: Index: pkgsrc/mail/mopher/Makefile diff -u pkgsrc/mail/mopher/Makefile:1.5 pkgsrc/mail/mopher/Makefile:1.6 --- pkgsrc/mail/mopher/Makefile:1.5 Sat Sep 26 23:29:13 2015 +++ pkgsrc/mail/mopher/Makefile Sun Jan 1 16:35:38 2017 @@ -1,4 +1,4 @@ -# $NetBSD: Makefile,v 1.5 2015/09/26 23:29:13 gdt Exp $ +# $NetBSD: Makefile,v 1.6 2017/01/01 16:35:38 rillig Exp $ DISTNAME= mopher-0.5.3 PKGREVISION= 1 @@ -21,7 +21,7 @@ FILES_SUBST+= MOPHER_USER=${MOPHER_USER FILES_SUBST+= MOPHER_GROUP=${MOPHER_GROUP} FILES_SUBST+= MOPHER_HOME=${MOPHER_HOME} FILES_SUBST+= MOPHER_RUN=${MOPHER_RUN} -FILES_SUBST+= INSTALL=${INSTALL} +FILES_SUBST+= INSTALL=${INSTALL:Q} HAS_CONFIGURE= yes @@ -42,12 +42,9 @@ BUILD_TARGET= build PKG_SYSCONFSUBDIR= mopher INSTALLATION_DIRS+= ${EGDIR} EGDIR= ${PREFIX}/share/examples/mopher -CONF_FILES+= ${EGDIR}/mopherd.conf -CONF_FILES+= ${PKG_SYSCONFDIR}/mopherd.conf -CONF_FILES+= ${EGDIR}/mopherd.acl -CONF_FILES+= ${PKG_SYSCONFDIR}/mopherd.acl -CONF_FILES+= ${EGDIR}/effective_tld_names.dat -CONF_FILES+= ${PKG_SYSCONFDIR}/effective_tld_names.dat +CONF_FILES+= ${EGDIR}/mopherd.conf ${PKG_SYSCONFDIR}/mopherd.conf +CONF_FILES+= ${EGDIR}/mopherd.acl ${PKG_SYSCONFDIR}/mopherd.acl +CONF_FILES+= ${EGDIR}/effective_tld_names.dat ${PKG_SYSCONFDIR}/effective_tld_names.dat MAKE_ENV+= CONFIG_XPATH=${EGDIR} PKG_GROUPS= ${MOPHER_GROUP} --_----------=_148328853843820--