Received: from mail.netbsd.org (mail.netbsd.org [199.233.217.200]) (using TLSv1.3 with cipher TLS_AES_256_GCM_SHA384 (256/256 bits)) (Client CN "mail.NetBSD.org", Issuer "mail.NetBSD.org CA" (not verified)) by mollari.NetBSD.org (Postfix) with ESMTPS id E7F511A9239 for ; Sun, 31 Oct 2021 07:52:02 +0000 (UTC) Received: by mail.netbsd.org (Postfix, from userid 605) id F32AD85094; Sun, 31 Oct 2021 07:52:01 +0000 (UTC) Received: from localhost (localhost [127.0.0.1]) by mail.netbsd.org (Postfix) with ESMTP id 35B4C85093 for ; Sun, 31 Oct 2021 07:52:01 +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 L5guhYdKUiUX for ; Sun, 31 Oct 2021 07:52:00 +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 7A85684D2F for ; Sun, 31 Oct 2021 07:52:00 +0000 (UTC) Received: by cvs.NetBSD.org (Postfix, from userid 500) id 6651DFA97; Sun, 31 Oct 2021 07:52:00 +0000 (UTC) Content-Transfer-Encoding: 7bit Content-Type: multipart/mixed; boundary="_----------=_1635666720167280" MIME-Version: 1.0 Date: Sun, 31 Oct 2021 07:52:00 +0000 From: "Kimmo Suominen" Subject: CVS commit: pkgsrc/chat/znc To: pkgsrc-changes@NetBSD.org Reply-To: kim@netbsd.org X-Mailer: log_accum Message-Id: <20211031075200.6651DFA97@cvs.NetBSD.org> Sender: pkgsrc-changes-owner@NetBSD.org List-Id: Precedence: bulk List-Unsubscribe: This is a multi-part message in MIME format. --_----------=_1635666720167280 Content-Disposition: inline Content-Transfer-Encoding: 8bit Content-Type: text/plain; charset="US-ASCII" Module Name: pkgsrc Committed By: kim Date: Sun Oct 31 07:52:00 UTC 2021 Modified Files: pkgsrc/chat/znc: Makefile Log Message: znc: Fix datadir on man page. Cleanup unused PLIST_SUBST variables. The default datadir for the znc binary is ~/.znc, so do not rewrite the manual page to say otherwise. (The provided rc.d/znc script is using the -d option to explicitly use a different datadir, but the default in the binary is unchanged -- as it should be.) To generate a diff of this commit: cvs rdiff -u -r1.27 -r1.28 pkgsrc/chat/znc/Makefile Please note that diffs are not public domain; they are subject to the copyright notices on the relevant files. --_----------=_1635666720167280 Content-Disposition: inline Content-Length: 1039 Content-Transfer-Encoding: binary Content-Type: text/x-diff; charset=us-ascii Modified files: Index: pkgsrc/chat/znc/Makefile diff -u pkgsrc/chat/znc/Makefile:1.27 pkgsrc/chat/znc/Makefile:1.28 --- pkgsrc/chat/znc/Makefile:1.27 Wed Sep 29 19:00:24 2021 +++ pkgsrc/chat/znc/Makefile Sun Oct 31 07:52:00 2021 @@ -1,7 +1,7 @@ -# $NetBSD: Makefile,v 1.27 2021/09/29 19:00:24 adam Exp $ +# $NetBSD: Makefile,v 1.28 2021/10/31 07:52:00 kim Exp $ DISTNAME= znc-1.8.2 -PKGREVISION= 7 +PKGREVISION= 8 CATEGORIES= chat MASTER_SITES= https://znc.in/releases/archive/ @@ -21,9 +21,6 @@ GCC_REQD+= 4.7 LDFLAGS.SunOS+= -lsocket -lnsl PLIST_SRC= PLIST -PLIST_SUBST+= ZNC_USER="${ZNC_USER}" -PLIST_SUBST+= PKG_SYSCONFDIR="${PKG_SYSCONFDIR}" -PLIST_SUBST+= PKG_PREFIX="${PREFIX}" BUILD_DEFS+= VARBASE BUILD_DEFS+= PKG_SYSCONFDIR @@ -53,7 +50,6 @@ SUBST_CLASSES+= man SUBST_STAGE.man= pre-configure SUBST_MESSAGE.man= Fixing absolute paths in znc.1 manpage. SUBST_FILES.man= man/znc.1 -SUBST_SED.man= -e 's,\~\/\.znc,${PKG_SYSCONFDIR},g' SUBST_SED.man+= -e 's,\/usr\/local,${PREFIX},g' .include "options.mk" --_----------=_1635666720167280--