Received: by mail.netbsd.org (Postfix, from userid 605) id 231CA84D6E; Mon, 23 Mar 2020 22:42:28 +0000 (UTC) Received: from localhost (localhost [127.0.0.1]) by mail.netbsd.org (Postfix) with ESMTP id A24EB84D69 for ; Mon, 23 Mar 2020 22:42:27 +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 qTQqDmIKg0p7 for ; Mon, 23 Mar 2020 22:42:27 +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 E3D9F84D37 for ; Mon, 23 Mar 2020 22:42:26 +0000 (UTC) Received: by cvs.NetBSD.org (Postfix, from userid 500) id D5122FB27; Mon, 23 Mar 2020 22:42:26 +0000 (UTC) Content-Transfer-Encoding: 7bit Content-Type: multipart/mixed; boundary="_----------=_1585003346240010" MIME-Version: 1.0 Date: Mon, 23 Mar 2020 22:42:26 +0000 From: "Roland Illig" Subject: CVS commit: pkgsrc/print/qpdf To: pkgsrc-changes@NetBSD.org Reply-To: rillig@netbsd.org X-Mailer: log_accum Message-Id: <20200323224226.D5122FB27@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. --_----------=_1585003346240010 Content-Disposition: inline Content-Transfer-Encoding: 8bit Content-Type: text/plain; charset="US-ASCII" Module Name: pkgsrc Committed By: rillig Date: Mon Mar 23 22:42:26 UTC 2020 Modified Files: pkgsrc/print/qpdf: Makefile Log Message: print/qpdf: require Perl for building the package There is a small Perl program that computes an SHA1 hash. This program is required to run the fuzzing tests as part of the build. Without Perl, the build contains about 40 of these messages: fuzz/build.mk:82: warning: overriding recipe for target 'fuzz/build/qpdf_fuzzer_seed_corpus/' fuzz/build.mk:82: warning: ignoring old recipe for target 'fuzz/build/qpdf_fuzzer_seed_corpus/' To generate a diff of this commit: cvs rdiff -u -r1.35 -r1.36 pkgsrc/print/qpdf/Makefile Please note that diffs are not public domain; they are subject to the copyright notices on the relevant files. --_----------=_1585003346240010 Content-Disposition: inline Content-Length: 694 Content-Transfer-Encoding: binary Content-Type: text/x-diff; charset=us-ascii Modified files: Index: pkgsrc/print/qpdf/Makefile diff -u pkgsrc/print/qpdf/Makefile:1.35 pkgsrc/print/qpdf/Makefile:1.36 --- pkgsrc/print/qpdf/Makefile:1.35 Fri Mar 20 11:58:15 2020 +++ pkgsrc/print/qpdf/Makefile Mon Mar 23 22:42:26 2020 @@ -1,6 +1,7 @@ -# $NetBSD: Makefile,v 1.35 2020/03/20 11:58:15 nia Exp $ +# $NetBSD: Makefile,v 1.36 2020/03/23 22:42:26 rillig Exp $ DISTNAME= qpdf-9.1.1 +PKGREVISION= 1 CATEGORIES= print MASTER_SITES= ${MASTER_SITE_SOURCEFORGE:=qpdf/} @@ -11,7 +12,7 @@ LICENSE= apache-2.0 USE_LANGUAGES= c c++ USE_LIBTOOL= yes -USE_TOOLS+= gmake pkg-config +USE_TOOLS+= gmake pkg-config perl GNU_CONFIGURE= yes PKGCONFIG_OVERRIDE+= libqpdf.pc.in --_----------=_1585003346240010--