Wed Feb 22 10:49:48 2023 UTC ()
Extend the disabling of the qt5 wrapper to qt6


(martin)
diff -r1.57 -r1.58 pkgsrc/print/poppler-utils/Makefile

cvs diff -r1.57 -r1.58 pkgsrc/print/poppler-utils/Makefile (expand / switch to unified diff)

--- pkgsrc/print/poppler-utils/Makefile 2023/02/16 08:17:29 1.57
+++ pkgsrc/print/poppler-utils/Makefile 2023/02/22 10:49:48 1.58
@@ -1,33 +1,34 @@ @@ -1,33 +1,34 @@
1# $NetBSD: Makefile,v 1.57 2023/02/16 08:17:29 wiz Exp $ 1# $NetBSD: Makefile,v 1.58 2023/02/22 10:49:48 martin Exp $
2 2
3.include "../../print/poppler/Makefile.common" 3.include "../../print/poppler/Makefile.common"
4 4
5PKGNAME= poppler-utils-${POPPLER_VERS} 5PKGNAME= poppler-utils-${POPPLER_VERS}
6COMMENT= PDF utilities (from poppler) 6COMMENT= PDF utilities (from poppler)
7 7
8CONFLICTS+= poppler-0.5.1{,nb*} 8CONFLICTS+= poppler-0.5.1{,nb*}
9CONFLICTS+= xpdf<3.02pl4nb1 9CONFLICTS+= xpdf<3.02pl4nb1
10 10
11# Don't compile GTK+ test program. 11# Don't compile GTK+ test program.
12CMAKE_ARGS+= -DBUILD_GTK_TESTS=OFF 12CMAKE_ARGS+= -DBUILD_GTK_TESTS=OFF
13# Don't compile GLib wrapper which also needs gtk2 13# Don't compile GLib wrapper which also needs gtk2
14CMAKE_ARGS+= -DENABLE_GLIB=OFF 14CMAKE_ARGS+= -DENABLE_GLIB=OFF
15# Build and install the tools 15# Build and install the tools
16CMAKE_ARGS+= -DENABLE_UTILS=ON 16CMAKE_ARGS+= -DENABLE_UTILS=ON
17# Don't compile poppler cpp wrapper. 17# Don't compile poppler cpp wrapper.
18CMAKE_ARGS+= -DENABLE_CPP=OFF 18CMAKE_ARGS+= -DENABLE_CPP=OFF
19# Don't compile poppler qt5 wrapper. 19# Don't compile poppler qt5/6 wrapper.
20CMAKE_ARGS+= -DENABLE_QT5=OFF 20CMAKE_ARGS+= -DENABLE_QT5=OFF
 21CMAKE_ARGS+= -DENABLE_QT6=OFF
21# Don't build libcurl based HTTP support. ## might want to include 22# Don't build libcurl based HTTP support. ## might want to include
22CMAKE_ARGS+= -DENABLE_LIBCURL=OFF 23CMAKE_ARGS+= -DENABLE_LIBCURL=OFF
23 24
24BUILDLINK_API_DEPENDS.poppler+= poppler>=${POPPLER_VERS} 25BUILDLINK_API_DEPENDS.poppler+= poppler>=${POPPLER_VERS}
25.include "../../print/poppler/buildlink3.mk" 26.include "../../print/poppler/buildlink3.mk"
26 27
27INSTALL_DIRS= utils 28INSTALL_DIRS= utils
28 29
29.include "../../mk/bsd.prefs.mk" 30.include "../../mk/bsd.prefs.mk"
30 31
31MAKE_ENV+= PTHREAD_STUBLIB= 32MAKE_ENV+= PTHREAD_STUBLIB=
32 33
33.include "../../graphics/cairo/buildlink3.mk" 34.include "../../graphics/cairo/buildlink3.mk"