Authentication-Results: name.execsw.org; dkim=pass (1024-bit key) header.d=netbsd.org header.i=@netbsd.org header.b=HYrvBpSN; dkim=pass (1024-bit key) header.d=netbsd.org header.i=@netbsd.org header.b=fBJMv+fQ Received: by mail.netbsd.org (Postfix, from userid 605) id 6D81A84E8A; Tue, 9 Apr 2024 20:18:45 +0000 (UTC) DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=netbsd.org; s=20240131; t=1712693925; bh=pRsccc9UA3sj7y8oS9Ssa/DgUPDHh+ZhATbA4xIv950=; h=Date:From:Subject:To:Reply-To:List-Id:List-Unsubscribe; b=HYrvBpSNl4WNLbD0Svg3cInme+B0cJhSSVYiRJiCobvk+teCkzGK3EGOmX9PulDUW qlkTVJZfiRdimL9Jr3ckoaDfNNrt1IeKszExxqEkxPcb/rGcajG5QwWa5xw7AaqBT0 zWBhwAMszuv/qdz9cG867SWouoGNE7WGbcbje0qg= Received: from localhost (localhost [127.0.0.1]) by mail.netbsd.org (Postfix) with ESMTP id 5D64F84E88 for ; Tue, 9 Apr 2024 20:18:44 +0000 (UTC) X-Virus-Scanned: amavisd-new at netbsd.org Authentication-Results: mail.netbsd.org (amavisd-new); dkim=pass (1024-bit key) header.d=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 0q51YXSEij72 for ; Tue, 9 Apr 2024 20:18:43 +0000 (UTC) Received: from cvs.NetBSD.org (ivanova.netbsd.org [199.233.217.197]) by mail.netbsd.org (Postfix) with ESMTP id D2B1E84E87 for ; Tue, 9 Apr 2024 20:18:43 +0000 (UTC) DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=netbsd.org; s=20240131; t=1712693923; bh=pRsccc9UA3sj7y8oS9Ssa/DgUPDHh+ZhATbA4xIv950=; h=Date:From:Subject:To:Reply-To; b=fBJMv+fQliTlsUeW2RHozlwf1r+E7NpjA95FywPUld4GAr1p6eic6D2aBqbwHAp9e MDAmxLqeY/chtFA4AJovx8OxHDjQAMqqC1PuwJLNttKSoN4cq8eK76FEvFxcwP0Vfe uclUGDCqD2nj0IULoloPSQFrM5Khw6QSAncI7tC4= Received: by cvs.NetBSD.org (Postfix, from userid 500) id 07484FA2C; Tue, 9 Apr 2024 20:18:43 +0000 (UTC) Content-Transfer-Encoding: 7bit Content-Type: multipart/mixed; boundary="_----------=_171269392269750" MIME-Version: 1.0 Date: Tue, 9 Apr 2024 20:18:42 +0000 From: "Roland Illig" Subject: CVS commit: pkgsrc/print To: pkgsrc-changes@NetBSD.org Reply-To: rillig@netbsd.org X-Mailer: log_accum Message-Id: <20240409201843.07484FA2C@cvs.NetBSD.org> Sender: pkgsrc-changes-owner@NetBSD.org List-Id: Precedence: bulk List-Unsubscribe: This is a multi-part message in MIME format. --_----------=_171269392269750 Content-Disposition: inline Content-Transfer-Encoding: 8bit Content-Type: text/plain; charset="US-ASCII" Module Name: pkgsrc Committed By: rillig Date: Tue Apr 9 20:18:42 UTC 2024 Modified Files: pkgsrc/print/foomatic-filters: Makefile pkgsrc/print/foomatic4-filters: Makefile Log Message: foomatic*-filters: fix pkglint warning about MANINSTALL To generate a diff of this commit: cvs rdiff -u -r1.43 -r1.44 pkgsrc/print/foomatic-filters/Makefile cvs rdiff -u -r1.41 -r1.42 pkgsrc/print/foomatic4-filters/Makefile Please note that diffs are not public domain; they are subject to the copyright notices on the relevant files. --_----------=_171269392269750 Content-Disposition: inline Content-Length: 1415 Content-Transfer-Encoding: binary Content-Type: text/x-diff; charset=us-ascii Modified files: Index: pkgsrc/print/foomatic-filters/Makefile diff -u pkgsrc/print/foomatic-filters/Makefile:1.43 pkgsrc/print/foomatic-filters/Makefile:1.44 --- pkgsrc/print/foomatic-filters/Makefile:1.43 Mon Jul 24 19:25:36 2023 +++ pkgsrc/print/foomatic-filters/Makefile Tue Apr 9 20:18:42 2024 @@ -1,4 +1,4 @@ -# $NetBSD: Makefile,v 1.43 2023/07/24 19:25:36 bsiegert Exp $ +# $NetBSD: Makefile,v 1.44 2024/04/09 20:18:42 rillig Exp $ .include "Makefile.common" @@ -33,7 +33,7 @@ BUILD_DEFS+= MANINSTALL .if ${OPSYS} == "SunOS" # SunOS nroff has problems with foomatic-rip.1 -MANINSTALL= none +MANINSTALL= # none INSTALL_TARGET= install-bin .else INSTALL_TARGET= install-bin install-man Index: pkgsrc/print/foomatic4-filters/Makefile diff -u pkgsrc/print/foomatic4-filters/Makefile:1.41 pkgsrc/print/foomatic4-filters/Makefile:1.42 --- pkgsrc/print/foomatic4-filters/Makefile:1.41 Mon Jul 25 11:12:27 2022 +++ pkgsrc/print/foomatic4-filters/Makefile Tue Apr 9 20:18:42 2024 @@ -1,4 +1,4 @@ -# $NetBSD: Makefile,v 1.41 2022/07/25 11:12:27 wiz Exp $ +# $NetBSD: Makefile,v 1.42 2024/04/09 20:18:42 rillig Exp $ DISTNAME= foomatic-filters-4.0.17 PKGREVISION= 16 @@ -27,7 +27,7 @@ BUILD_DEFS+= MANINSTALL .if ${OPSYS} == "SunOS" # SunOS nroff has problems with foomatic-rip.1 -MANINSTALL= none +MANINSTALL= # none INSTALL_TARGET= install-bin .else INSTALL_TARGET= install-bin install-man --_----------=_171269392269750--