Received: by mail.netbsd.org (Postfix, from userid 605) id C32B98506F; Mon, 18 Jun 2018 10:50:21 +0000 (UTC) Received: from localhost (localhost [127.0.0.1]) by mail.netbsd.org (Postfix) with ESMTP id B388484E3D for ; Mon, 18 Jun 2018 10:50:20 +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 OOiVxWeIgeXa for ; Mon, 18 Jun 2018 10:50:20 +0000 (UTC) Received: from cvs.NetBSD.org (ivanova.netbsd.org [199.233.217.197]) by mail.netbsd.org (Postfix) with ESMTP id DE13A84DBD for ; Mon, 18 Jun 2018 10:50:19 +0000 (UTC) Received: by cvs.NetBSD.org (Postfix, from userid 500) id D9A11FBEC; Mon, 18 Jun 2018 10:50:19 +0000 (UTC) Content-Transfer-Encoding: 7bit Content-Type: multipart/mixed; boundary="_----------=_1529319019232610" MIME-Version: 1.0 Date: Mon, 18 Jun 2018 10:50:19 +0000 From: "Amitai Schleier" Subject: CVS commit: pkgsrc/net/ucspi-tcp To: pkgsrc-changes@NetBSD.org Reply-To: schmonz@netbsd.org X-Mailer: log_accum Message-Id: <20180618105019.D9A11FBEC@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. --_----------=_1529319019232610 Content-Disposition: inline Content-Transfer-Encoding: 8bit Content-Type: text/plain; charset="US-ASCII" Module Name: pkgsrc Committed By: schmonz Date: Mon Jun 18 10:50:19 UTC 2018 Modified Files: pkgsrc/net/ucspi-tcp: Makefile Log Message: Look for /etc/dnsrewrite under PKG_SYSCONFBASE. Bump PKGREVISION. To generate a diff of this commit: cvs rdiff -u -r1.41 -r1.42 pkgsrc/net/ucspi-tcp/Makefile Please note that diffs are not public domain; they are subject to the copyright notices on the relevant files. --_----------=_1529319019232610 Content-Disposition: inline Content-Length: 967 Content-Transfer-Encoding: binary Content-Type: text/x-diff; charset=us-ascii Modified files: Index: pkgsrc/net/ucspi-tcp/Makefile diff -u pkgsrc/net/ucspi-tcp/Makefile:1.41 pkgsrc/net/ucspi-tcp/Makefile:1.42 --- pkgsrc/net/ucspi-tcp/Makefile:1.41 Wed Jan 4 02:14:12 2017 +++ pkgsrc/net/ucspi-tcp/Makefile Mon Jun 18 10:50:19 2018 @@ -1,7 +1,7 @@ -# $NetBSD: Makefile,v 1.41 2017/01/04 02:14:12 schmonz Exp $ +# $NetBSD: Makefile,v 1.42 2018/06/18 10:50:19 schmonz Exp $ DISTNAME= ucspi-tcp-0.88 -PKGREVISION= 4 +PKGREVISION= 5 CATEGORIES= sysutils net MASTER_SITES= http://cr.yp.to/ucspi-tcp/ ftp://cr.yp.to/ucspi-tcp/ DISTFILES= ${DISTNAME}.tar.gz ${MANPAGES} @@ -16,6 +16,14 @@ SITES.${MANPAGES}= http://smarden.org/pa DJB_RESTRICTED= no +SUBST_CLASSES+= etc +SUBST_STAGE.etc= do-configure +SUBST_FILES.etc= dns_rcrw.c +SUBST_SED.etc= -e 's|/etc/dnsrewrite|${PKG_SYSCONFBASE}/dnsrewrite|g' +SUBST_MESSAGE.etc= Fixing prefix. + +BUILD_DEFS+= PKG_SYSCONFBASE + INSTALLATION_DIRS= bin ${PKGMANDIR}/man1 post-install: --_----------=_1529319019232610--