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 A11E37A281 for ; Thu, 1 Sep 2016 13:22:46 +0000 (UTC) Received: by mail.netbsd.org (Postfix, from userid 605) id 4F8C985EDF; Thu, 1 Sep 2016 13:22:46 +0000 (UTC) Received: from localhost (localhost [127.0.0.1]) by mail.netbsd.org (Postfix) with ESMTP id D4AF085EC7 for ; Thu, 1 Sep 2016 13:22:45 +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 M4Sj8SPDrShS for ; Thu, 1 Sep 2016 13:22:45 +0000 (UTC) Received: from cvs.NetBSD.org (unknown [IPv6:2001:470:a085:999:28c:faff:fe03:5984]) by mail.netbsd.org (Postfix) with ESMTP id 68C4784CE5 for ; Thu, 1 Sep 2016 13:22:45 +0000 (UTC) Received: by cvs.NetBSD.org (Postfix, from userid 500) id 5F240FBC3; Thu, 1 Sep 2016 13:22:45 +0000 (UTC) Content-Transfer-Encoding: 7bit Content-Type: multipart/mixed; boundary="_----------=_1472736165283100" MIME-Version: 1.0 Date: Thu, 1 Sep 2016 13:22:45 +0000 From: "Ryo ONODERA" Subject: CVS commit: pkgsrc/devel/mantis To: pkgsrc-changes@NetBSD.org Reply-To: ryoon@netbsd.org X-Mailer: log_accum Message-Id: <20160901132245.5F240FBC3@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. --_----------=_1472736165283100 Content-Disposition: inline Content-Transfer-Encoding: 8bit Content-Type: text/plain; charset="US-ASCII" Module Name: pkgsrc Committed By: ryoon Date: Thu Sep 1 13:22:45 UTC 2016 Modified Files: pkgsrc/devel/mantis: Makefile options.mk Log Message: Make pkglint more happy To generate a diff of this commit: cvs rdiff -u -r1.46 -r1.47 pkgsrc/devel/mantis/Makefile cvs rdiff -u -r1.3 -r1.4 pkgsrc/devel/mantis/options.mk Please note that diffs are not public domain; they are subject to the copyright notices on the relevant files. --_----------=_1472736165283100 Content-Disposition: inline Content-Length: 1587 Content-Transfer-Encoding: binary Content-Type: text/x-diff; charset=us-ascii Modified files: Index: pkgsrc/devel/mantis/Makefile diff -u pkgsrc/devel/mantis/Makefile:1.46 pkgsrc/devel/mantis/Makefile:1.47 --- pkgsrc/devel/mantis/Makefile:1.46 Thu Sep 1 13:16:15 2016 +++ pkgsrc/devel/mantis/Makefile Thu Sep 1 13:22:45 2016 @@ -1,4 +1,4 @@ -# $NetBSD: Makefile,v 1.46 2016/09/01 13:16:15 ryoon Exp $ +# $NetBSD: Makefile,v 1.47 2016/09/01 13:22:45 ryoon Exp $ DISTNAME= mantisbt-1.3.1 PKGREVISION= 1 @@ -23,7 +23,7 @@ APACHE_USER?= www BUILD_DEFS+= APACHE_USER PKG_USERS_VARS+= APACHE_USER -MESSAGE_SUBST+= PKG_SYSCONFDIR=${PKG_SYSCONFDIR:Q} +MESSAGE_SUBST+= PKG_SYSCONFDIR=${PKG_SYSCONFDIR} MANTIS_HOME= ${PREFIX}/share/mantis EGDIR= ${PREFIX}/share/examples/mantis Index: pkgsrc/devel/mantis/options.mk diff -u pkgsrc/devel/mantis/options.mk:1.3 pkgsrc/devel/mantis/options.mk:1.4 --- pkgsrc/devel/mantis/options.mk:1.3 Thu Sep 1 13:20:55 2016 +++ pkgsrc/devel/mantis/options.mk Thu Sep 1 13:22:45 2016 @@ -1,10 +1,10 @@ -# $NetBSD: options.mk,v 1.3 2016/09/01 13:20:55 ryoon Exp $ +# $NetBSD: options.mk,v 1.4 2016/09/01 13:22:45 ryoon Exp $ -PKG_OPTIONS_VAR= PKG_OPTIONS.mantis +PKG_OPTIONS_VAR= PKG_OPTIONS.mantis PKG_OPTIONS_REQUIRED_GROUPS= db PKG_OPTIONS_GROUP.db= mysql pgsql -PKG_SUPPORTED_OPTIONS= charts ldap -PKG_SUGGESTED_OPTIONS+= mysql +PKG_SUPPORTED_OPTIONS= charts ldap +PKG_SUGGESTED_OPTIONS+= mysql .include "../../mk/bsd.options.mk" @@ -21,4 +21,3 @@ DEPENDS+= ${PHP_PKG_PREFIX}-mysqli-[0-9] .elif !empty(PKG_OPTIONS:Mpgsql) DEPENDS+= ${PHP_PKG_PREFIX}-pgsql-[0-9]*:../../databases/php-pgsql .endif - --_----------=_1472736165283100--