summaryrefslogtreecommitdiffstats
path: root/package/poppler
Commit message (Collapse)AuthorAgeFilesLines
* poppler: bump version to 0.54.0Vicente Olivert Riera2017-04-242-2/+2
| | | | | Signed-off-by: Vicente Olivert Riera <Vincent.Riera@imgtec.com> Signed-off-by: Peter Korsgaard <peter@korsgaard.com>
* boot, linux, package: use SPDX short identifier for GPLv2/GPLv2+Rahul Bedarkar2017-04-011-1/+1
| | | | | | | | | | | We want to use SPDX identifier for license strings as much as possible. SPDX short identifier for GPLv2/GPLv2+ is GPL-2.0/GPL-2.0+. This change is done by using following command. find . -name "*.mk" | xargs sed -ri '/LICENSE( )?[\+:]?=/s/\<GPLv2\>/GPL-2.0/g' Signed-off-by: Rahul Bedarkar <rahulbedarkar89@gmail.com> Signed-off-by: Thomas Petazzoni <thomas.petazzoni@free-electrons.com>
* poppler: bump version to 0.53.0Vicente Olivert Riera2017-03-212-2/+2
| | | | | Signed-off-by: Vicente Olivert Riera <Vincent.Riera@imgtec.com> Signed-off-by: Peter Korsgaard <peter@korsgaard.com>
* poppler: bump to version 0.52.0Gustavo Zacarias2017-02-172-2/+2
| | | | | Signed-off-by: Gustavo Zacarias <gustavo@zacarias.com.ar> Signed-off-by: Peter Korsgaard <peter@korsgaard.com>
* poppler: qt5 support needs c++11 (since Qt5.7)Naumann Andreas2017-02-111-0/+4
| | | | | Signed-off-by: Andreas Naumann <anaumann@ultratronik.de> Signed-off-by: Thomas Petazzoni <thomas.petazzoni@free-electrons.com>
* poppler: Add option for Qt5 supportJens Kleintje2017-02-112-0/+16
| | | | | | | Add an option to build the libpoppler-qt5 library. Signed-off-by: Andreas Naumann <anaumann@ultratronik.de> Signed-off-by: Thomas Petazzoni <thomas.petazzoni@free-electrons.com>
* poppler: fix typo in variable namePeter Korsgaard2017-02-071-1/+1
| | | | | | | | | | As pointed out during the check-package discussion, there is a typo in a variable name: http://lists.busybox.net/pipermail/buildroot/2016-December/180765.html Reported-by: Ricardo Martincoski <ricardo.martincoski@gmail.com> Signed-off-by: Peter Korsgaard <peter@korsgaard.com>
* poppler: bump to version 0.51.0Gustavo Zacarias2017-01-162-2/+2
| | | | | Signed-off-by: Gustavo Zacarias <gustavo@zacarias.com.ar> Signed-off-by: Peter Korsgaard <peter@korsgaard.com>
* poppler: bump to version 0.50.0Gustavo Zacarias2016-12-182-2/+2
| | | | | Signed-off-by: Gustavo Zacarias <gustavo@zacarias.com.ar> Signed-off-by: Peter Korsgaard <peter@korsgaard.com>
* poppler: bump to version 0.49.0Gustavo Zacarias2016-12-092-2/+2
| | | | | Signed-off-by: Gustavo Zacarias <gustavo@zacarias.com.ar> Signed-off-by: Peter Korsgaard <peter@korsgaard.com>
* poppler: bump to version 0.48.0Gustavo Zacarias2016-10-153-25/+2
| | | | | | | Drop upstream patch. Signed-off-by: Gustavo Zacarias <gustavo@zacarias.com.ar> Signed-off-by: Peter Korsgaard <peter@korsgaard.com>
* poppler: add explicit libglib2 supportGustavo Zacarias2016-10-151-0/+7
| | | | | | | | | | Evince needs poppler-glib support (when poppler is enabled, for PDF reading support), so add explicit handling to the package. And poppler-glib requires cairo output, hence the conditional on both libglib2 and cairo to enable it. Signed-off-by: Gustavo Zacarias <gustavo@zacarias.com.ar> Signed-off-by: Peter Korsgaard <peter@korsgaard.com>
* poppler: add explicit cairo supportGustavo Zacarias2016-10-151-0/+7
| | | | | Signed-off-by: Gustavo Zacarias <gustavo@zacarias.com.ar> Signed-off-by: Peter Korsgaard <peter@korsgaard.com>
* package/poppler: enable autodetection of openjpegAngelo Compagnucci2016-06-101-1/+1
| | | | | | | | This patch enables autodetection for installed openjpeg library. Previously we were forcing to version 1. Signed-off-by: Angelo Compagnucci <angelo.compagnucci@gmail.com> Signed-off-by: Thomas Petazzoni <thomas.petazzoni@free-electrons.com>
* toolchain-external: CodeSourcery NiosII 2015.11 affected by PR19405Romain Naour2016-04-201-0/+4
| | | | | | | | | | | | | | | See bug report https://sourceware.org/bugzilla/show_bug.cgi?id=19405 Fixes: http://autobuild.buildroot.net/results/ee562524c5b12191e584ceae89006c5a5103e700 Signed-off-by: Romain Naour <romain.naour@gmail.com> [Thomas: - rename BR2_TOOLCHAIN_BINUTILS_HAS_BUG_19405 to BR2_TOOLCHAIN_HAS_BINUTILS_BUG_19405 - propagate to the qwt package, which is now selecting BR2_PACKAGE_QT_GUI_MODULE.] Signed-off-by: Thomas Petazzoni <thomas.petazzoni@free-electrons.com>
* poppler: install xpdf-headers to enable building of cups-filtersOlivier Schonken2016-02-211-1/+2
| | | | | | | | | Add --enable-xpdf-headers to poppler.mk. Required for succesfull build of cups-filters. Signed-off-by: Olivier Schonken <olivier.schonken@gmail.com> Reviewed-by: Samuel Martin <s.martin49@gmail.com> Signed-off-by: Thomas Petazzoni <thomas.petazzoni@free-electrons.com>
* packages: use backtick instead of $(shell ...) make functionArnout Vandecappelle2015-07-151-1/+1
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | It is often difficult to know exactly when make will expand the variable, and usually it can only be expanded after the dependencies have been built (e.g. pkg-config or the .pc file). Using a backtick instead makes it very clear that it will be expanded only while executing the command. This change is useful for two cases: 1. The per-package staging (and host) directory will be created as part of the configure step, so any $(shell ...) variable that is used in the configure step will fail because the directory doesn't exist yet. 2. 'make printvars' evaluates the variables it prints. It will therefore trigger a lot of errors from missing .pc files and others. The backticks, on the other hand, are not expanded, so with this change the output of 'make printvars' becomes clean again. This commit contains only the easy changes: replace $(shell ...) with `...`, and also replace ' with " where needed. Follow-up commits will tackle the more complicated cases that need additional explanation. After this change, the following instances of $(shell ...) will remain: - All assignments that use := - All variables that are used in make conditionals (which don't expand the backticks). - All variables that only refer to system executables and make variables that don't change. - The calls to check-host-* in dependencies.mk, because it is eval'ed. [Original patch by Fabio Porcedda, but extended quite a bit by Arnout.] Signed-off-by: Fabio Porcedda <fabio.porcedda@gmail.com> Signed-off-by: Arnout Vandecappelle (Essensium/Mind) <arnout@mind.be> Signed-off-by: Thomas Petazzoni <thomas.petazzoni@free-electrons.com>
* package/poppler: autoconf options take two dashesYann E. MORIN2015-05-061-2/+2
| | | | | | Signed-off-by: "Yann E. MORIN" <yann.morin.1998@free.fr> Cc: Olivier Schonken <olivier.schonken@gmail.com> Signed-off-by: Thomas Petazzoni <thomas.petazzoni@free-electrons.com>
* poppler: help finding libtiff in static linking scenariosThomas Petazzoni2015-05-031-1/+4
| | | | | | | | | | | | | | | | | | | In static linking scenarios, poppler doesn't find libtiff because it doesn't use pkg-config, so it doesn't know which additional libraries it should link with to test the availability of libtiff. We help poppler in this work by passing a LIBTIFF_LIBS variable, resulting for a pkg-config invocation. Also, since poppler uses pkg-config, we make this dependency explicit in this patch, even though it was already carried by the fontconfig dependency. Fixes: http://autobuild.buildroot.org/results/be7/be78957dd852233c81bd364ddf664564ce8f0208/ Signed-off-by: Thomas Petazzoni <thomas.petazzoni@free-electrons.com> Signed-off-by: Peter Korsgaard <peter@korsgaard.com>
* poppler: add patch to fix invalid syntax in configure scriptThomas Petazzoni2015-05-031-0/+23
| | | | | | | | | | | | | | | When configuring poppler, a shell error occurs: ./configure: line 19741: test: x: unary operator expected This is due to an invalid configure test, which is fixed by a newly added patch. We patch the configure script directly because poppler doesn't autoreconf properly. A patch on configure.ac has been submitted upstream so that hopefully we can drop our patch in a future release of poppler. Signed-off-by: Thomas Petazzoni <thomas.petazzoni@free-electrons.com> Signed-off-by: Peter Korsgaard <peter@korsgaard.com>
* poppler: fix build with openjpegPeter Korsgaard2015-04-051-1/+1
| | | | | | | | | | The openjpeg version we have in Buildroot is v1, not v2. Fixes: http://autobuild.buildroot.net/results/e17/e17193604956cc61d47a9913632144601ef72656/ http://autobuild.buildroot.net/results/6b9/6b9d4ce15f54683670af3132ab21a053d9853e6c/ Signed-off-by: Peter Korsgaard <peter@korsgaard.com>
* package/poppler: bump version to 0.32.0Olivier Schonken2015-04-042-2/+9
| | | | | | | | | | | | | | | This commit also adds an optional dependency on openjpeg: if --enable-openjpeg=none is not passed, poppler assumes openjpeg is available. [Thomas: - add optional dependency on openjpeg instead of mandatory dependency. - remove --enable-xpdf-headers, since there was no justification for it.] Signed-off-by: Olivier Schonken <olivier.schonken@gmail.com> Signed-off-by: Thomas Petazzoni <thomas.petazzoni@free-electrons.com>
* packages: indentation cleanupJerzy Grzegorek2015-03-311-24/+24
| | | | | | | This commit doesn't touch infra packages. Signed-off-by: Jerzy Grzegorek <jerzy.grzegorek@trzebnica.net> Signed-off-by: Thomas Petazzoni <thomas.petazzoni@free-electrons.com>
* poppler: fix select of Qt4 GUI moduleThomas Petazzoni2015-01-131-1/+1
| | | | | | | | | | | For some silly reason, the option is named BR2_PACKAGE_QT_GUI_MODULE and not BR2_PACKAGE_QT_QUI. Hopefully fixes: http://autobuild.buildroot.org/results/47d/47dee003b29f156496492757cbaa4208b002ab65/ Signed-off-by: Thomas Petazzoni <thomas.petazzoni@free-electrons.com>
* poppler: security bump to version 0.24.5Gustavo Zacarias2015-01-062-1/+3
| | | | | | | | | | Fixes CVE-2013-7296 - JBIG2Stream::readSegments()" Denial of Service Vulnerability. Also add hash file. Signed-off-by: Gustavo Zacarias <gustavo@zacarias.com.ar> Signed-off-by: Thomas Petazzoni <thomas.petazzoni@free-electrons.com>
* poppler: Install files into stagingAlan Ott2014-12-101-0/+1
| | | | | | | | | | | Install poppler's header files and libraries into staging, since it provides a library that can be used by other packages. [Thomas: slightly extended the commit message.] Signed-off-by: Alan Ott <alan@signal11.us> Suggested-by: Jeremie Scheer <jeremie.scheer@armadeus.com> Signed-off-by: Thomas Petazzoni <thomas.petazzoni@free-electrons.com>
* poppler: Add option for Qt supportAlan Ott2014-12-102-0/+19
| | | | | | | | | | | | | | | | | Add an option to build the libpoppler-qt4 library. [Thomas: slightly adjust the Config.in file, by: - Using an if BR2_PACKAGE_POPPLER ... endif block instead of a depends on BR2_PACKAGE_POPPLER for the new option. - Rewording the option prompt, since there's no need to indicate that the Qt support is for poppler since we're already a sub-option of poppler.] Signed-off-by: Alan Ott <alan@signal11.us> Suggested-by: Jeremie Scheer <jeremie.scheer@armadeus.com> Signed-off-by: Thomas Petazzoni <thomas.petazzoni@free-electrons.com> merge
* packages: rename FOO_CONF_OPT into FOO_CONF_OPTSThomas De Schampheleire2014-10-041-15/+15
| | | | | | | | | | | | To be consistent with the recent change of FOO_MAKE_OPT into FOO_MAKE_OPTS, make the same change for FOO_CONF_OPT. Sed command used: find * -type f | xargs sed -i 's#_CONF_OPT\>#&S#g' Signed-off-by: Thomas De Schampheleire <thomas.de.schampheleire@gmail.com> Reviewed-by: "Yann E. MORIN" <yann.morin.1998@free.fr> Signed-off-by: Thomas Petazzoni <thomas.petazzoni@free-electrons.com>
* poppler/Config.in: indentation cleanupJerzy Grzegorek2014-03-081-2/+2
| | | | | Signed-off-by: Jerzy Grzegorek <jerzy.grzegorek@trzebnica.net> Signed-off-by: Thomas Petazzoni <thomas.petazzoni@free-electrons.com>
* poppler: bump to version 0.24.4Axel Lin2013-12-091-1/+1
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | Upgrade to latest stable release. Release 0.24.4 core: * Fix regression in broken endstream detection. Bug #70854 * Catalog: sort entries of NameTrees to make sure lookup works. Bug #26049 * Don't infinite loop if reading from GooFile::read fails. Bug #71835 utils: * pdftotext: Do not close stdout. Bug #71639 * pdftotext: Silence warning for may be used uninitialized variable. Bug #71640 * pdftotext: Escape the text of the xml headers * Warn the user if he provides a wrong range qt4: * Fix typo in xml API. Bug #71643 qt5: * Fix typo in xml API. Bug #71643 Release 0.24.3 core: * PSOutputDev: Fix PFB font embedding. Bug #69717 * CairoOutputDev: Do not set an invalid matrix in drawImage(). Bug #70085 qt4: * Don't crash if getXRef()->copy() fails qt5: * Don't crash if getXRef()->copy() fails utils: * pdfseparate: Allow only one %d in the filename. Bug #69434 Signed-off-by: Axel Lin <axel.lin@ingics.com> Signed-off-by: Peter Korsgaard <peter@korsgaard.com>
* Config.in files: unify comments of toolchain option dependenciesThomas De Schampheleire2013-10-141-1/+1
| | | | | | | | This patch lines up the comments in Config.in files that clarify which toolchain options the package depends on. Signed-off-by: Thomas De Schampheleire <thomas.de.schampheleire@gmail.com> Signed-off-by: Peter Korsgaard <peter@korsgaard.com>
* poppler: needs thread supportAxel Lin2013-10-141-2/+3
| | | | | | | | Fix: http://autobuild.buildroot.net/results/daa/daa18f112ddd08644b4149025899cea2b511a9da/ Signed-off-by: Axel Lin <axel.lin@ingics.com> Signed-off-by: Peter Korsgaard <peter@korsgaard.com>
* poppler: bump to version 0.24.2Jerzy Grzegorek2013-10-091-1/+2
| | | | | Signed-off-by: Jerzy Grzegorek <jerzy.grzegorek@trzebnica.net> Signed-off-by: Peter Korsgaard <peter@korsgaard.com>
* Normalize separator size to 80Alexandre Belloni2013-06-061-2/+2
| | | | | Signed-off-by: Alexandre Belloni <alexandre.belloni@free-electrons.com> Signed-off-by: Peter Korsgaard <jacmet@sunsite.dk>
* poppler: new packageOlivier Schonken2013-04-232-0/+76
Poppler is a PDF rendering library based on the xpdf-3.0 code base. [Peter: Fix license, comment text and drop explicit library options] Signed-off-by: Olivier Schonken <olivier.schonken@gmail.com> Signed-off-by: Peter Korsgaard <jacmet@sunsite.dk>
OpenPOWER on IntegriCloud