c39e0abba9
Fixes: http://autobuild.buildroot.net/results/145/1456f9512371ecb5a0a374943178e4bd7b0967e8/ The HTTP URL returns a 308 redirect to HTTPS, which confuses old wget versions (E.G. s.b.o): wget -d http://poppler.freedesktop.org/poppler-21.12.0.tar.xz DEBUG output created by Wget 1.14 on linux-gnu. URI encoding = ‘UTF-8’ Converted file name 'poppler-21.12.0.tar.xz' (UTF-8) -> 'poppler-21.12.0.tar.xz' (UTF-8) Converted file name 'poppler-21.12.0.tar.xz' (UTF-8) -> 'poppler-21.12.0.tar.xz' (UTF-8) --2022-01-09 09:28:02-- http://poppler.freedesktop.org/poppler-21.12.0.tar.xz Resolving poppler.freedesktop.org (poppler.freedesktop.org)... 147.75.198.156 Caching poppler.freedesktop.org => 147.75.198.156 Connecting to poppler.freedesktop.org (poppler.freedesktop.org)|147.75.198.156|:80... connected. Created socket 3. Releasing 0x0000000001ceda80 (new refcount 1). ---request begin--- GET /poppler-21.12.0.tar.xz HTTP/1.1 User-Agent: Wget/1.14 (linux-gnu) Accept: */* Host: poppler.freedesktop.org Connection: Keep-Alive ---request end--- HTTP request sent, awaiting response... ---response begin--- HTTP/1.1 308 Permanent Redirect Date: Sun, 09 Jan 2022 09:28:02 GMT Content-Type: text/html Content-Length: 164 Connection: keep-alive Location: https://poppler.freedesktop.org/poppler-21.12.0.tar.xz ---response end--- 308 Permanent Redirect Registered socket 3 for persistent reuse. Skipping 164 bytes of body: [<html> <head><title>308 Permanent Redirect</title></head> <body> <center><h1>308 Permanent Redirect</h1></center> <hr><center>nginx</center> </body> </html> ] done. 2022-01-09 09:28:02 ERROR 308: Permanent Redirect. Signed-off-by: Peter Korsgaard <peter@korsgaard.com>
135 lines
3.1 KiB
Makefile
135 lines
3.1 KiB
Makefile
################################################################################
|
|
#
|
|
# poppler
|
|
#
|
|
################################################################################
|
|
|
|
POPPLER_VERSION = 21.12.0
|
|
POPPLER_SOURCE = poppler-$(POPPLER_VERSION).tar.xz
|
|
POPPLER_SITE = https://poppler.freedesktop.org
|
|
POPPLER_DEPENDENCIES = fontconfig host-pkgconf
|
|
POPPLER_LICENSE = GPL-2.0+
|
|
POPPLER_LICENSE_FILES = COPYING
|
|
POPPLER_CPE_ID_VENDOR = freedesktop
|
|
POPPLER_INSTALL_STAGING = YES
|
|
|
|
POPPLER_CONF_OPTS = \
|
|
-DENABLE_UNSTABLE_API_ABI_HEADERS=ON \
|
|
-DBUILD_GTK_TESTS=OFF \
|
|
-DBUILD_QT5_TESTS=OFF \
|
|
-DBUILD_QT6_TESTS=OFF \
|
|
-DBUILD_CPP_TESTS=OFF \
|
|
-DBUILD_MANUAL_TESTS=OFF \
|
|
-DENABLE_GTK_DOC=OFF \
|
|
-DENABLE_QT6=OFF \
|
|
-DRUN_GPERF_IF_PRESENT=OFF
|
|
|
|
ifeq ($(BR2_TOOLCHAIN_HAS_LIBATOMIC),y)
|
|
POPPLER_CONF_OPTS += -DCMAKE_EXE_LINKER_FLAGS=-latomic
|
|
endif
|
|
|
|
ifeq ($(BR2_PACKAGE_BOOST),y)
|
|
POPPLER_DEPENDENCIES += boost
|
|
POPPLER_CONF_OPTS += -DENABLE_BOOST=ON
|
|
else
|
|
POPPLER_CONF_OPTS += -DENABLE_BOOST=OFF
|
|
endif
|
|
|
|
ifeq ($(BR2_PACKAGE_JPEG),y)
|
|
POPPLER_DEPENDENCIES += jpeg
|
|
POPPLER_CONF_OPTS += -DENABLE_DCTDECODER=libjpeg -DWITH_JPEG=ON
|
|
else
|
|
POPPLER_CONF_OPTS += -DENABLE_DCTDECODER=none -DWITH_JPEG=OFF
|
|
endif
|
|
|
|
ifeq ($(BR2_PACKAGE_GOBJECT_INTROSPECTION),y)
|
|
POPPLER_DEPENDENCIES += gobject-introspection
|
|
POPPLER_CONF_OPTS += -DENABLE_GOBJECT_INTROSPECTION=ON
|
|
else
|
|
POPPLER_CONF_OPTS += -DENABLE_GOBJECT_INTROSPECTION=OFF
|
|
endif
|
|
|
|
ifeq ($(BR2_PACKAGE_LIBPNG),y)
|
|
POPPLER_DEPENDENCIES += libpng
|
|
POPPLER_CONF_OPTS += -DWITH_PNG=ON
|
|
else
|
|
POPPLER_CONF_OPTS += -DWITH_PNG=OFF
|
|
endif
|
|
|
|
ifeq ($(BR2_PACKAGE_LCMS2),y)
|
|
POPPLER_DEPENDENCIES += lcms2
|
|
POPPLER_CONF_OPTS += -DENABLE_CMS=lcms2
|
|
else
|
|
POPPLER_CONF_OPTS += -DENABLE_CMS=none
|
|
endif
|
|
|
|
ifeq ($(BR2_PACKAGE_OPENJPEG),y)
|
|
POPPLER_DEPENDENCIES += openjpeg
|
|
POPPLER_CONF_OPTS += -DENABLE_LIBOPENJPEG=openjpeg2
|
|
else
|
|
POPPLER_CONF_OPTS += -DENABLE_LIBOPENJPEG=none
|
|
endif
|
|
|
|
ifeq ($(BR2_PACKAGE_LIBCURL),y)
|
|
POPPLER_DEPENDENCIES += libcurl
|
|
POPPLER_CONF_OPTS += -DENABLE_LIBCURL=ON
|
|
else
|
|
POPPLER_CONF_OPTS += -DENABLE_LIBCURL=OFF
|
|
endif
|
|
|
|
ifeq ($(BR2_PACKAGE_POPPLER_QT5),y)
|
|
POPPLER_DEPENDENCIES += qt5base
|
|
POPPLER_CONF_OPTS += -DENABLE_QT5=ON
|
|
else
|
|
POPPLER_CONF_OPTS += -DENABLE_QT5=OFF
|
|
endif
|
|
|
|
ifeq ($(BR2_PACKAGE_POPPLER_UTILS),y)
|
|
POPPLER_CONF_OPTS += -DENABLE_UTILS=ON
|
|
else
|
|
POPPLER_CONF_OPTS += -DENABLE_UTILS=OFF
|
|
endif
|
|
|
|
ifeq ($(BR2_PACKAGE_ZLIB),y)
|
|
POPPLER_DEPENDENCIES += zlib
|
|
POPPLER_CONF_OPTS += -DENABLE_ZLIB=ON
|
|
else
|
|
POPPLER_CONF_OPTS += -DENABLE_ZLIB=OFF
|
|
endif
|
|
|
|
ifeq ($(BR2_PACKAGE_CAIRO),y)
|
|
POPPLER_DEPENDENCIES += cairo
|
|
POPPLER_CONF_OPTS += -DWITH_Cairo=ON
|
|
else
|
|
POPPLER_CONF_OPTS += -DWITH_Cairo=OFF
|
|
endif
|
|
|
|
ifeq ($(BR2_PACKAGE_TIFF),y)
|
|
POPPLER_DEPENDENCIES += tiff
|
|
POPPLER_CONF_OPTS += -DWITH_TIFF=ON
|
|
else
|
|
POPPLER_CONF_OPTS += -DWITH_TIFF=OFF
|
|
endif
|
|
|
|
ifeq ($(BR2_PACKAGE_LIBGLIB2),y)
|
|
POPPLER_DEPENDENCIES += libglib2
|
|
POPPLER_CONF_OPTS += -DENABLE_GLIB=ON
|
|
else
|
|
POPPLER_CONF_OPTS += -DENABLE_GLIB=OFF
|
|
endif
|
|
|
|
ifeq ($(BR2_PACKAGE_LIBNSS),y)
|
|
POPPLER_DEPENDENCIES += libnss
|
|
POPPLER_CONF_OPTS += -DWITH_NSS3=ON
|
|
else
|
|
POPPLER_CONF_OPTS += -DWITH_NSS3=OFF
|
|
endif
|
|
|
|
ifeq ($(BR2_SOFT_FLOAT),y)
|
|
POPPLER_CONF_OPTS += -DUSE_FLOAT=OFF
|
|
else
|
|
POPPLER_CONF_OPTS += -DUSE_FLOAT=ON
|
|
endif
|
|
|
|
$(eval $(cmake-package))
|