Received: by mail.netbsd.org (Postfix, from userid 605) id A7B8E84D53; Thu, 29 Nov 2018 16:28:10 +0000 (UTC) Received: from localhost (localhost [127.0.0.1]) by mail.netbsd.org (Postfix) with ESMTP id 9BF9184D47 for ; Thu, 29 Nov 2018 16:28:09 +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 8PPf-SNi9klO for ; Thu, 29 Nov 2018 16:28:09 +0000 (UTC) Received: from cvs.NetBSD.org (ivanova.NetBSD.org [IPv6:2001:470:a085:999:28c:faff:fe03:5984]) by mail.netbsd.org (Postfix) with ESMTP id C490684D3B for ; Thu, 29 Nov 2018 16:28:08 +0000 (UTC) Received: by cvs.NetBSD.org (Postfix, from userid 500) id BDB1BFB1F; Thu, 29 Nov 2018 16:28:08 +0000 (UTC) Content-Transfer-Encoding: 7bit Content-Type: multipart/mixed; boundary="_----------=_1543508888285690" MIME-Version: 1.0 Date: Thu, 29 Nov 2018 16:28:08 +0000 From: "Thomas Klausner" Subject: CVS commit: pkgsrc/x11/proxymngr To: pkgsrc-changes@NetBSD.org Reply-To: wiz@netbsd.org X-Mailer: log_accum Message-Id: <20181129162808.BDB1BFB1F@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. --_----------=_1543508888285690 Content-Disposition: inline Content-Transfer-Encoding: 8bit Content-Type: text/plain; charset="US-ASCII" Module Name: pkgsrc Committed By: wiz Date: Thu Nov 29 16:28:08 UTC 2018 Modified Files: pkgsrc/x11/proxymngr: Makefile Log Message: proxymngr: make sure target directory for config exists. pkglint fix: Add PKG_SYSCONFBASE to BUILD_DEFS. Bump PKGREVISION. To generate a diff of this commit: cvs rdiff -u -r1.5 -r1.6 pkgsrc/x11/proxymngr/Makefile Please note that diffs are not public domain; they are subject to the copyright notices on the relevant files. --_----------=_1543508888285690 Content-Disposition: inline Content-Length: 876 Content-Transfer-Encoding: binary Content-Type: text/x-diff; charset=us-ascii Modified files: Index: pkgsrc/x11/proxymngr/Makefile diff -u pkgsrc/x11/proxymngr/Makefile:1.5 pkgsrc/x11/proxymngr/Makefile:1.6 --- pkgsrc/x11/proxymngr/Makefile:1.5 Wed Mar 7 11:57:39 2018 +++ pkgsrc/x11/proxymngr/Makefile Thu Nov 29 16:28:08 2018 @@ -1,7 +1,7 @@ -# $NetBSD: Makefile,v 1.5 2018/03/07 11:57:39 wiz Exp $ +# $NetBSD: Makefile,v 1.6 2018/11/29 16:28:08 wiz Exp $ DISTNAME= proxymngr-1.0.4 -PKGREVISION= 1 +PKGREVISION= 2 CATEGORIES= x11 MASTER_SITES= ${MASTER_SITE_XORG:=app/} EXTRACT_SUFX= .tar.bz2 @@ -18,9 +18,12 @@ USE_LANGUAGES= c c++ USE_TOOLS+= pkg-config CONFIGURE_ARGS+= --sysconfdir=${PKG_SYSCONFBASE:Q} +OWN_DIRS+= ${PKG_SYSCONFDIR}/X11/proxymngr EGDIR= share/examples/proxymngr CONF_FILES+= ${EGDIR}/pmconfig ${PKG_SYSCONFDIR}/X11/proxymngr/pmconfig +BUILD_DEFS+= PKG_SYSCONFBASE + INSTALLATION_DIRS+= ${EGDIR} post-install: --_----------=_1543508888285690--