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 3300A1A9239 for ; Sat, 12 Mar 2022 07:19:27 +0000 (UTC) Received: by mail.netbsd.org (Postfix, from userid 605) id 5C6D084EC5; Sat, 12 Mar 2022 07:19:26 +0000 (UTC) Received: from localhost (localhost [127.0.0.1]) by mail.netbsd.org (Postfix) with ESMTP id 9632A84EAF for ; Sat, 12 Mar 2022 07:19:25 +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 N1CZNPIF8YjJ for ; Sat, 12 Mar 2022 07:19:25 +0000 (UTC) Received: from cvs.NetBSD.org (ivanova.netbsd.org [199.233.217.197]) by mail.netbsd.org (Postfix) with ESMTP id 1369784D44 for ; Sat, 12 Mar 2022 07:19:25 +0000 (UTC) Received: by cvs.NetBSD.org (Postfix, from userid 500) id 0CC6BFB24; Sat, 12 Mar 2022 07:19:25 +0000 (UTC) Content-Transfer-Encoding: 7bit Content-Type: multipart/mixed; boundary="_----------=_16470695658780" MIME-Version: 1.0 Date: Sat, 12 Mar 2022 07:19:25 +0000 From: "Nia Alarie" Subject: CVS commit: pkgsrc/print/evince3 To: pkgsrc-changes@NetBSD.org Reply-To: nia@netbsd.org X-Mailer: log_accum Message-Id: <20220312071925.0CC6BFB24@cvs.NetBSD.org> Sender: pkgsrc-changes-owner@NetBSD.org List-Id: Precedence: bulk List-Unsubscribe: This is a multi-part message in MIME format. --_----------=_16470695658780 Content-Disposition: inline Content-Transfer-Encoding: 8bit Content-Type: text/plain; charset="US-ASCII" Module Name: pkgsrc Committed By: nia Date: Sat Mar 12 07:19:24 UTC 2022 Modified Files: pkgsrc/print/evince3: Makefile.common Added Files: pkgsrc/print/evince3: hacks.mk Log Message: evince3: Use hacks.mk to avoid NetBSD msgfmt on NetBSD only. To generate a diff of this commit: cvs rdiff -u -r1.23 -r1.24 pkgsrc/print/evince3/Makefile.common cvs rdiff -u -r0 -r1.1 pkgsrc/print/evince3/hacks.mk Please note that diffs are not public domain; they are subject to the copyright notices on the relevant files. --_----------=_16470695658780 Content-Disposition: inline Content-Length: 1404 Content-Transfer-Encoding: binary Content-Type: text/x-diff; charset=us-ascii Modified files: Index: pkgsrc/print/evince3/Makefile.common diff -u pkgsrc/print/evince3/Makefile.common:1.23 pkgsrc/print/evince3/Makefile.common:1.24 --- pkgsrc/print/evince3/Makefile.common:1.23 Sun May 2 11:06:14 2021 +++ pkgsrc/print/evince3/Makefile.common Sat Mar 12 07:19:24 2022 @@ -1,4 +1,4 @@ -# $NetBSD: Makefile.common,v 1.23 2021/05/02 11:06:14 nia Exp $ +# $NetBSD: Makefile.common,v 1.24 2022/03/12 07:19:24 nia Exp $ # # used by print/evince3/Makefile # would probably be used by print/evince3-nautilus/Makefile if that existed @@ -23,9 +23,6 @@ USE_TOOLS+= gmake intltool msgfmt pkg-c USE_TOOLS+= gdbus-codegen USE_LANGUAGES= c c++ -# Requires --desktop in msgfmt. -_TOOLS_USE_PKGSRC.msgfmt= yes - CONFIGURE_ARGS+= --disable-browser-plugin CONFIGURE_ARGS+= --without-gspell # Disable thumbnail cache Added files: Index: pkgsrc/print/evince3/hacks.mk diff -u /dev/null pkgsrc/print/evince3/hacks.mk:1.1 --- /dev/null Sat Mar 12 07:19:24 2022 +++ pkgsrc/print/evince3/hacks.mk Sat Mar 12 07:19:24 2022 @@ -0,0 +1,13 @@ +# $NetBSD: hacks.mk,v 1.1 2022/03/12 07:19:24 nia Exp $ + +.if !defined(EVINCE_HACKS_MK) +EVINCE_HACKS_MK:= + +.include "../../mk/bsd.fast.prefs.mk" + +.if ${OPSYS} == "NetBSD" +# Old GPLv2 version of msgfmt in NetBSD does not support --desktop/--xml. +TOOLS_PLATFORM.msgfmt= # none +PKG_HACKS+= avoid-gplv2-msgfmt +.endif +.endif # EVINCE_HACKS_MK --_----------=_16470695658780--