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 6DEC97A27F for ; Wed, 26 Apr 2017 00:48:16 +0000 (UTC) Received: by mail.netbsd.org (Postfix, from userid 605) id 184B384DB1; Wed, 26 Apr 2017 00:48:16 +0000 (UTC) Received: from localhost (localhost [127.0.0.1]) by mail.netbsd.org (Postfix) with ESMTP id 9CB2984D93 for ; Wed, 26 Apr 2017 00:48:15 +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 v8kGTSFXSXa6 for ; Wed, 26 Apr 2017 00:48:15 +0000 (UTC) Received: from cvs.NetBSD.org (ivanova.netbsd.org [199.233.217.197]) by mail.netbsd.org (Postfix) with ESMTP id 0949E84D7F for ; Wed, 26 Apr 2017 00:48:15 +0000 (UTC) Received: by cvs.NetBSD.org (Postfix, from userid 500) id DC176FBE4; Wed, 26 Apr 2017 00:48:14 +0000 (UTC) Content-Transfer-Encoding: 7bit Content-Type: multipart/mixed; boundary="_----------=_149316769441300" MIME-Version: 1.0 Date: Wed, 26 Apr 2017 00:48:14 +0000 From: "Julio Merino" Subject: CVS commit: pkgsrc/pkgtools/pkg_comp To: pkgsrc-changes@NetBSD.org Reply-To: jmmv@netbsd.org X-Mailer: log_accum Message-Id: <20170426004814.DC176FBE4@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. --_----------=_149316769441300 Content-Disposition: inline Content-Transfer-Encoding: 8bit Content-Type: text/plain; charset="US-ASCII" Module Name: pkgsrc Committed By: jmmv Date: Wed Apr 26 00:48:14 UTC 2017 Modified Files: pkgsrc/pkgtools/pkg_comp: Makefile Log Message: Fix sysconfdir settings for pkg_comp. This allows the default configuration in pkg_comp to properly find the default configuration of sandboxctl. Bump PKGREVISION to 1. To generate a diff of this commit: cvs rdiff -u -r1.58 -r1.59 pkgsrc/pkgtools/pkg_comp/Makefile Please note that diffs are not public domain; they are subject to the copyright notices on the relevant files. --_----------=_149316769441300 Content-Disposition: inline Content-Length: 1001 Content-Transfer-Encoding: binary Content-Type: text/x-diff; charset=us-ascii Modified files: Index: pkgsrc/pkgtools/pkg_comp/Makefile diff -u pkgsrc/pkgtools/pkg_comp/Makefile:1.58 pkgsrc/pkgtools/pkg_comp/Makefile:1.59 --- pkgsrc/pkgtools/pkg_comp/Makefile:1.58 Mon Feb 20 11:15:19 2017 +++ pkgsrc/pkgtools/pkg_comp/Makefile Wed Apr 26 00:48:14 2017 @@ -1,6 +1,7 @@ -# $NetBSD: Makefile,v 1.58 2017/02/20 11:15:19 jmmv Exp $ +# $NetBSD: Makefile,v 1.59 2017/04/26 00:48:14 jmmv Exp $ DISTNAME= pkg_comp-2.0 +PKGREVISION= 1 CATEGORIES= sysutils MASTER_SITES= ${MASTER_SITE_GITHUB:=jmmv/}pkg_comp/releases/download/pkg_comp-2.0/ @@ -16,8 +17,8 @@ USE_LANGUAGES= # empty USE_TOOLS= pkg-config PKG_SYSCONFSUBDIR= pkg_comp -CONFIGURE_ARGS+= --sysconfdir=${PKG_SYSCONFDIR} -CONFIGURE_ARGS+= PKG_COMP_CONFSUBDIR= +CONFIGURE_ARGS+= --sysconfdir=${PKG_SYSCONFBASE} +CONFIGURE_ARGS+= PKG_COMP_CONFSUBDIR=${PKG_SYSCONFSUBDIR} CONFIGURE_ARGS+= SANDBOXCTL=${PREFIX}/sbin/sandboxctl INSTALL_MAKE_FLAGS+= pkg_comp_confdir=${EGDIR} EGDIR= ${PREFIX}/share/examples/pkg_comp --_----------=_149316769441300--