2013-04-16 12:48:04 +02:00
|
|
|
config BR2_PACKAGE_POPPLER
|
|
|
|
bool "poppler"
|
2019-06-10 23:57:33 +02:00
|
|
|
depends on BR2_USE_WCHAR
|
2013-04-16 12:48:04 +02:00
|
|
|
depends on BR2_INSTALL_LIBSTDCPP
|
2013-10-14 09:14:52 +02:00
|
|
|
depends on BR2_TOOLCHAIN_HAS_THREADS
|
2019-06-09 00:12:10 +02:00
|
|
|
depends on !BR2_STATIC_LIBS
|
package/poppler: bump version to 0.77.0
For the version bump, the makefile had to be rewritten for CMake, as
the project moved from autotools to CMake.
Signed-off-by: Olivier Schonken <olivier.schonken@gmail.com>
[Thomas:
- update again to the lastest poppler version, 0.77.0
- drop license related changes, since the licensing terms haven't
changed, and they are not completely clear
- keep the openjpeg, jpeg and lcms2 dependencies optionals
- explicitly enable/disable more dependencies
- bump gcc version dependency to gcc 5.x, and update the Config.in
comment accordingly
- don't introduce many sub-options, simply rely on the availability
of dependencies, or on BR2_SOFT_FLOAT
- drop libx11/libxext dependencies, no longer used]
Signed-off-by: Thomas Petazzoni <thomas.petazzoni@bootlin.com>
2018-10-05 15:31:41 +02:00
|
|
|
depends on BR2_TOOLCHAIN_GCC_AT_LEAST_5 # C++14, constexpr
|
2013-04-16 12:48:04 +02:00
|
|
|
select BR2_PACKAGE_FONTCONFIG
|
|
|
|
help
|
2017-12-18 09:21:05 +01:00
|
|
|
Poppler is a PDF rendering library based on the xpdf-3.0
|
|
|
|
code base.
|
2013-04-16 12:48:04 +02:00
|
|
|
|
2014-03-07 22:58:15 +01:00
|
|
|
http://poppler.freedesktop.org/
|
2013-04-16 12:48:04 +02:00
|
|
|
|
2014-10-12 21:56:52 +02:00
|
|
|
if BR2_PACKAGE_POPPLER
|
|
|
|
|
2017-02-11 12:05:30 +01:00
|
|
|
config BR2_PACKAGE_POPPLER_QT5
|
|
|
|
bool "Qt5 support"
|
|
|
|
depends on BR2_PACKAGE_QT5
|
|
|
|
select BR2_PACKAGE_QT5BASE_GUI
|
|
|
|
select BR2_PACKAGE_QT5BASE_WIDGETS
|
|
|
|
select BR2_PACKAGE_QT5BASE_XML
|
|
|
|
help
|
|
|
|
Build Qt support into the Poppler library
|
|
|
|
|
package/poppler: bump version to 0.77.0
For the version bump, the makefile had to be rewritten for CMake, as
the project moved from autotools to CMake.
Signed-off-by: Olivier Schonken <olivier.schonken@gmail.com>
[Thomas:
- update again to the lastest poppler version, 0.77.0
- drop license related changes, since the licensing terms haven't
changed, and they are not completely clear
- keep the openjpeg, jpeg and lcms2 dependencies optionals
- explicitly enable/disable more dependencies
- bump gcc version dependency to gcc 5.x, and update the Config.in
comment accordingly
- don't introduce many sub-options, simply rely on the availability
of dependencies, or on BR2_SOFT_FLOAT
- drop libx11/libxext dependencies, no longer used]
Signed-off-by: Thomas Petazzoni <thomas.petazzoni@bootlin.com>
2018-10-05 15:31:41 +02:00
|
|
|
config BR2_PACKAGE_POPPLER_UTILS
|
|
|
|
bool "command line utils"
|
|
|
|
help
|
|
|
|
Compile poppler command line utils.
|
|
|
|
|
2014-10-12 21:56:52 +02:00
|
|
|
endif
|
|
|
|
|
2019-06-10 23:57:33 +02:00
|
|
|
comment "poppler needs a toolchain w/ wchar, C++, threads, dynamic library, gcc >= 5"
|
|
|
|
depends on !BR2_USE_WCHAR || !BR2_INSTALL_LIBSTDCPP || \
|
|
|
|
!BR2_TOOLCHAIN_HAS_THREADS || BR2_STATIC_LIBS || \
|
|
|
|
!BR2_TOOLCHAIN_GCC_AT_LEAST_5
|