Commit Graph

66 Commits

Author SHA1 Message Date
Mark Brand 8ffc44b8f5 update: poppler, vmime 2020-09-03 17:40:40 +02:00
Mark Brand 3139517d75 update poppler 2020-08-03 12:22:50 +02:00
Mark Brand 27d5c11ac1 update poppler 2020-07-29 02:27:38 +02:00
Mark Brand bc85046bc5 update: dbus, freetds, poppler, vorbis 2020-07-04 22:20:02 +02:00
Mark Brand 6873b5fe6f updates: dbus, harfbuzz, lcms, libgpg_error, mpg123, poppler, vmime 2020-06-04 18:32:29 +02:00
Mark Brand c9390a28a7 update: curl, nettle, poppler 2020-05-02 01:57:12 +02:00
Mark Brand be45770ab7 update: poppler, vmime 2020-03-28 22:34:44 +01:00
Mark Brand 58d40542f0 update poppler 2020-03-03 01:31:57 +01:00
Mark Brand 32689aeecf update: gnutls, libgpg_error, libtasn1, poppler 2020-02-10 12:17:16 +01:00
Mark Brand c8e4dc5f6d update: ffmpeg, libjpeg-turbo, poppler, wavpack 2020-01-05 18:12:39 +01:00
Mark Brand 28ca6a96a3 update: freetds, poppler 2019-12-03 09:23:17 +01:00
Mark Brand 8491374c5c update: libssh, mpg123, poppler 2019-10-27 18:59:53 +01:00
Mark Brand ab0c104f21 update: freetds, gstreamer, poppler, vmime 2019-09-23 23:33:51 +02:00
Mark Brand ff835cad08 update: freetds, libgcrypt, mxml, ogg, poppler 2019-09-01 00:22:27 +02:00
Mark Brand 53017849ca update: libwebp, mpg123, poppler 2019-07-18 23:24:36 +02:00
Mark Brand 1982b41f43 update: nettle, poco, poppler, qscintilla2 2019-06-27 23:15:29 +02:00
Mark Brand 3856e5a2c0 update libevent, poppler 2019-05-26 17:29:21 +02:00
Stefan Löffler f3a173e15b poppler: split cmake options and explicitly en-/disable each 2019-03-10 23:28:22 +11:00
Stefan Löffler e28e9844ce poppler: update 0.51.0 --> 0.74.0 2019-03-10 23:28:22 +11:00
darealshinji cd2ec54cec poppler: disable reference docs (close #1820) 2018-05-22 13:34:22 +10:00
Jonas Kümmerlin 626fbe4fb2 poppler: use C++11. Fixes Qt5 build.
Qt5 now requires C++11 language features in its headers.
2018-01-13 18:33:00 +01:00
Jonas Kümmerlin 795958fd07 poppler qt5: use MXE's moc in PATH
Previously, qt5/bin was missing from PATH. Poppler then picks up
the host's tools which may not always work.
2018-01-13 15:52:23 +01:00
Tony Theodore 01e2a64d00 cross packages: replace dependency gcc with cc 2017-12-23 08:19:00 +11:00
Viktor Szakats 45d34aaac7 more URL updates 2017-03-10 13:59:00 +00:00
Mark Brand b96b5052a9 update: fftw poppler zlib 2017-01-16 00:12:32 +01:00
Boris Nagaev 37a67f0c19 poppler: disable installation of documentation
It used to install files to <target>/share/gtk-doc/html/poppler/

See https://github.com/mxe/mxe/pull/1617
2016-12-28 11:29:45 +01:00
Saikrishna Arcot 25a990a653
Update poppler. 2016-12-27 19:31:48 -06:00
Boris Nagaev 74163f1794 add _WEBSITE and _DESCR fields to core packages
See https://github.com/mxe/mxe/issues/1422

Automation (Python 2 code): https://gist.github.com/9f5c315e5d0cf113d41dc454b7a0eb41
2016-12-22 22:25:48 +01:00
Boris Nagaev 6adb5ade12 Copyright headers: point to LICENSE.md and shorten
The following script was applied:

    sed ':a;/part of MXE.$/{N;s/\n//;ba}' -i $(git grep -l 'part of MXE')

    sed 's/\(part of MXE\).*\(See index.html\)/\1. \2/' -i \
        $(git grep -l 'part of MXE.*See index.html')

    before='This file is part of MXE. See index.html for further information.'
    after='This file is part of MXE. See LICENSE.md for licensing information.'
    sed "s/$before/$after/" -i $(git grep -l 'part of MXE')

Then git grep 'index.html for further information' revealed two other files.
One of them was patched manually (patch.mk). Makefile has text
"See index.html for further information" unrelated to licensing.

See https://github.com/mxe/mxe/issues/1500#issuecomment-241340792
2016-08-27 12:31:29 +03:00
Boris Nagaev 17e40d3884 use $(TEST_FILE) instead of $(2).c and other
The following script was applied:

    set -xue

    find src/ plugins/ -name '*.mk' -type f > mks

    # special cases for test file:
    # ls -d src/*-test* | sed 's@-test.*@@' | sort | uniq --repeated
    sed 's@$(2).c@$(PWD)/src/$(PKG)-test.c@g' -i \
        src/{boost,freeimage,hdf5,lapack,sdl,sdl_image,sdl_sound}.mk
    sed 's@$(2).f@$(PWD)/src/$(PKG)-test.f@g' -i src/lapack.mk
    sed 's@$(PWD)/$(2).pro@$(PWD)/src/$(PKG)-test.pro@g' -i \
        src/qt.mk plugins/examples/custom-qt-min/overrides.mk
    sed 's@$(2)-CMakeLists.txt@$(PWD)/src/$(PKG)-test-CMakeLists.txt@g' \
        -i src/{sdl_image,sdl_sound}.mk

    # check
    for base in $(ls -d src/*-test* | sed 's@-test.*@@' | sort | uniq --repeated); do
        ! grep -q '$(2)' "${base}.mk"
    done

    # other $(2)
    sed 's@$(2).cpp@$(TEST_FILE)@g' -i $(cat mks)
    sed 's@$(2).cxx@$(TEST_FILE)@g' -i $(cat mks)
    sed 's@$(2).c@$(TEST_FILE)@g' -i $(cat mks)
    sed 's@$(2).ml@$(TEST_FILE)@g' -i $(cat mks)
    sed 's@$(2).f@$(TEST_FILE)@g' -i $(cat mks)

    # check
    ! grep '$(2)' $(cat mks)

See https://github.com/mxe/mxe/issues/1452
2016-07-30 22:38:45 +03:00
Saikrishna Arcot 8e58fb9363
Fix Poppler makefile...again. 2016-06-09 07:40:36 -05:00
Saikrishna Arcot a3c8d4b5eb
Another fix to the makefiles. 2016-06-08 08:41:52 -05:00
Saikrishna Arcot 4a2dfcebb2
Get value of variable instead of using the variable name itself. 2016-06-07 17:34:26 -05:00
Saikrishna Arcot 3b3af3e8b9
Simplify overrides, and add shared build support to poppler. 2016-06-05 17:35:41 -05:00
Tony Theodore fc0ed34fb9 all packages: really use sha256 checksums 2015-09-23 18:32:58 +10:00
Tony Theodore ac7344aaef many packages: cleanup deps ordering 2015-09-23 17:41:16 +10:00
Tony Theodore a228c0488f all packages: switch to sha256 checksums
closes #871
2015-09-23 17:27:16 +10:00
Mark Brand b320c8815d poppler: update 2015-01-05 16:41:50 +01:00
Tony Theodore b672cd8266 update various packages (tested on i686-w64-mingw32.static)
ffmpeg flac gdk-pixbuf glew glib graphicsmagick ilmbase imagemagick
libffi libftdi1 libircclient libmicrohttpd libpaper librsvg libtool
libwebp libxml++ libxml2 mpg123 mxml nlopt oce openblas opencv
opusfile pfstools poco poppler primesieve x264 xine-lib
2014-12-01 23:51:26 +11:00
Timothy Gu 9a33fb56ef poppler: update
Signed-off-by: Timothy Gu <timothygu99@gmail.com>
2014-09-15 20:09:06 -07:00
Tony Theodore 8de0584a23 many packages: explicitly disable shared builds
closes #369
2014-04-06 23:18:24 +10:00
Tony Theodore 8a11421ee8 package poppler: fix PKG_CONFIG_PATH_* 2014-02-10 04:45:23 +11:00
Mark Brand 1b6765e389 update package poppler 2014-01-04 21:21:15 +01:00
Mark Brand a6c4d0b7c9 update package poppler 2013-11-28 02:10:44 +01:00
Mark Brand 26da12071a update package poppler 2013-10-27 00:54:43 +02:00
Mark Brand a66594b371 update package poppler 2013-10-06 18:17:21 +02:00
Mark Brand b8a16754fb package poppler: fix update macro 2013-10-05 19:56:28 +02:00
Mark Brand b25a684e1a package poppler: fix building poppler Qt 4 libraries
Poppler doesn't use qmake, so we resort to fixing the PATH so moc
can be found by the configure script.
2013-08-17 22:40:07 +02:00
Mark Brand 9e7512f444 package poppler: use lcms 2
Now that Qt uses libmng 2 which uses lcms 2, we should too.
2013-08-17 21:55:56 +02:00
Tony Theodore c5b1f712a1 package poppler: use lcms1 for qt/libmng compatibility 2013-08-02 23:25:40 +10:00