diff options
author | rillig <rillig@pkgsrc.org> | 2020-03-23 22:42:26 +0000 |
---|---|---|
committer | rillig <rillig@pkgsrc.org> | 2020-03-23 22:42:26 +0000 |
commit | 0349990f1904b6d358105ba0a97f87a728720c61 (patch) | |
tree | 2bdf693dcb55f9a03954c48c51cef2f63061a12f /print | |
parent | 941ebf74dc6170f3a1058169a05ec280ebb36053 (diff) | |
download | pkgsrc-0349990f1904b6d358105ba0a97f87a728720c61.tar.gz |
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/'
Diffstat (limited to 'print')
-rw-r--r-- | print/qpdf/Makefile | 5 |
1 files changed, 3 insertions, 2 deletions
diff --git a/print/qpdf/Makefile b/print/qpdf/Makefile index ca0ed40f44c..ab5ffbfac22 100644 --- a/print/qpdf/Makefile +++ b/print/qpdf/Makefile @@ -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 |