aboutsummaryrefslogtreecommitdiff
path: root/graphics/poppler
Commit message (Collapse)AuthorAgeFilesLines
* Upgrade these ports to USES=compiler:c++11-lang to fix build on gcc-basedMark Linimon2018-09-181-1/+1
| | | | | | | | | | | | | archs such as powerpc64. Tested for no effect on amd64. While here, pet portlint. Approved by: portgmr (tier-2 blanket) Notes: svn path=/head/; revision=480003
* - Update WWWDmitry Marakasov2018-08-081-1/+1
| | | | | | | Approved by: portmgr blanket Notes: svn path=/head/; revision=476634
* Replace bsd.qt.mk by Uses/qt.mk and Uses/qt-dist.mkTobias C. Berner2018-06-281-2/+4
| | | | | | | | | | | | | | | | | | From now on, ports that depend on Qt4 will have to set USES= qt:4 USE_QT= foo bar ports depending on Qt5 will use USES= qt:5 USE_QT= foo bar PR: 229225 Exp-run by: antoine Reviewed by: mat Approved by: portmgr (antoine) Differential Revision: →https://reviews.freebsd.org/D15540 Notes: svn path=/head/; revision=473503
* Fix graphics/poppler-qt5 provided include file, causing dependentGuido Falsi2018-04-102-0/+11
| | | | | | | | | | | ports to fail when including it. PR: 221805 Submitted by: me Approved by: gnome (kwm) Notes: svn path=/head/; revision=467004
* Correct the OPENJPEG disable configure flagKoop Mast2017-08-311-1/+1
| | | | | | | | PR: 221796 Reported by: jakub_lach@mailplus.pl Notes: svn path=/head/; revision=449018
* graphics/poppler: update to 0.57.0Steve Wills2017-08-243-6/+6
| | | | | | | | | | | PR: 220608 Reported by: Andrew Marks <amracks@gmail.com> Approved by: gnome@ (kwm) MFH: 2017Q3 Security: eca2d861-76f4-42ed-89d2-23a2cb396c87 Notes: svn path=/head/; revision=448642
* Update Qt5 to 5.7.1, and unify the Qt4 and Qt5 ports some moreTobias C. Berner2017-02-181-0/+2
| | | | | | | | | | | | | | | | | | | | | | | | | | | * Update Qt5 to 5.7.1 * Move Qt4 binaries to lib/qt4/bin * Move Qt5 libraries to lib/qt5/lib By moving the libraries we should finally be able to get rid of the inplace upgrade bug (see ports bugs 194088, 195105 and 198720): when Qt5's libraries were lying in /usr/local/lib, which would often get added by pkgconfig to the linker paths via dependencies, the already installed libraries were linked against, instead of the ones that were being built. This forced us to make sure, that -L${WRKSRC}/lib was always coming before -L/usr/local/lib in the linker flags. With this change this should no longer be the case. * Rename some ports to match the rest (foo-qtX -> qtX-foo) * Depend on new port misc/qtchooser [see UPDATING & CHANGES] There are several new Qt5 ports which all have been created by Marie Loise Nolden <nolden@kde.org>. Thanks again. PR: 216797 Exp-Run by: antoine Reviewed by: rakuco, mat, groot_kde.org Approved by: rakuco (mentor) Differential Revision: https://reviews.freebsd.org/D9213 Notes: svn path=/head/; revision=434380
* - Update to 0.50.0Olivier Duchateau2017-01-074-30/+14
| | | | | | | | | | | | | | - Remove unneeded patch - Enable NSS (Network Security Service) - Switch to OpenJPEG2 PR: 215358 Submitted by: myself (olivierd@) Exp-run by: antoine@ Approved by: GNOME team (timeout 3 weeks) Notes: svn path=/head/; revision=430777
* graphics/poppler: ignore installed NSS for nowJan Beich2016-10-091-1/+2
| | | | | | | | | | | | | | | | | | | | | | | $ make install -C security/nss $ DEVELOPER=1 make -C graphics/poppler [...] ====> Running Q/A tests (stage-qa) Error: /usr/local/lib/libpoppler.so.63.0.0 is linked to /usr/local/lib/nss/libnss3.so from security/nss but it is not declared as a dependency Error: /usr/local/lib/libpoppler.so.63.0.0 is linked to /usr/local/lib/nss/libsmime3.so from security/nss but it is not declared as a dependency Error: /usr/local/lib/libpoppler.so.63.0.0 is linked to /usr/local/lib/nss/libssl3.so from security/nss but it is not declared as a dependency Error: /usr/local/lib/libpoppler.so.63.0.0 is linked to /usr/local/lib/nss/libnssutil3.so from security/nss but it is not declared as a dependency Error: /usr/local/lib/libpoppler.so.63.0.0 is linked to /usr/local/lib/libplds4.so from devel/nspr but it is not declared as a dependency Warning: you need LIB_DEPENDS+=libplds4.so:devel/nspr Error: /usr/local/lib/libpoppler.so.63.0.0 is linked to /usr/local/lib/libplc4.so from devel/nspr but it is not declared as a dependency Warning: you need LIB_DEPENDS+=libplc4.so:devel/nspr Error: /usr/local/lib/libpoppler.so.63.0.0 is linked to /usr/local/lib/libnspr4.so from devel/nspr but it is not declared as a dependency Warning: you need LIB_DEPENDS+=libnspr4.so:devel/nspr Reported by: Walter Schwarzenfeld (via r423591 regression) Approved by: portmgr blanket Notes: svn path=/head/; revision=423626
* Let USES=localbase add -L${LOCALBASE}/lib to LIBS instead of LDFLAGS.Tijl Coosemans2016-09-301-10/+26
| | | | | | | | | | | | | | | | | | | | | | USES=localbase:ldflags can be used to set LDFLAGS. Normally LDFLAGS appears too early on the command line causing some ports to link with their own libraries in LOCALBASE (if installed) instead of WRKSRC. Also make use of _USES_POST so -L${LOCALBASE}/lib is added as late as possible after anything a port Makefile might set. Use _USES_POST instead of .include in libedit.mk and libarchive.mk so things like 'USES=libedit localbase:ldflags' work correctly. Fix some issues with LIBS in some ports. Switch ports that don't support LIBS to localbase:ldflags. PR: 212987 Exp-run by: antoine Approved by: portmgr (antoine) Notes: svn path=/head/; revision=423014
* - Add patch, which fixes crashes of viewers based on PopplerOlivier Duchateau2016-09-232-1/+18
| | | | | | | | | | | - Bump PORTREVISION PR: 212867 Reported by: Bengt Ahlgren Obtained from: Upstream repository Notes: svn path=/head/; revision=422651
* - Update to 0.46.0Olivier Duchateau2016-09-054-14/+20
| | | | | | | | | | | | - Replace CPPFLAGS and LDFLAGS by USES= localbase PR: 211388 Submitted by: myself Approved by: The GNOME team (timeout) Exp-run by: antoine@ Notes: svn path=/head/; revision=421386
* Remove ${PORTSDIR}/ from dependencies, categories d, e, f, and g.Mathieu Arnold2016-04-011-11/+11
| | | | | | | | With hat: portmgr Sponsored by: Absolight Notes: svn path=/head/; revision=412346
* Update poppler to 0.40.0. [1]Koop Mast2016-01-213-5/+5
| | | | | | | | | | | | Add patches to py-poppler [2] and rubygem-poppler [3] to fix the build of these ports with poppler 0.39+. PR: 206293 [1] Submitted by: olivierd@ [1] Obtained from: ubuntu [2], rubygem-poppler upstream [3] Notes: svn path=/head/; revision=406872
* Update poppler to 0.34.0. [1]Koop Mast2015-08-023-10/+5
| | | | | | | | | | Chase all users of shlib version change of libpoppler.so. PR: 201477 [1] Submitted by: olivierd@ [1] Notes: svn path=/head/; revision=393431
* Convert to USES=jpegAntoine Brodin2015-06-221-3/+2
| | | | Notes: svn path=/head/; revision=390310
* - Add CPE infoDmitry Marakasov2015-05-141-1/+2
| | | | | | | Approved by: portmgr blanket Notes: svn path=/head/; revision=386338
* Update poppler to 0.30.0 [1].Koop Mast2015-02-035-76/+91
| | | | | | | | | | | | | | Make sure we use openjpeg1 in poppler, while openjpeg2 support was added there still bugs in openjpeg2 that need to be fixed. Add patches to inkscape for API changes in poppler 0.29.0 [2]. PR: 196599 [1] Submitted by: olivierd@ [1] Exp-run by: antoine@ Obtained from: upstream [2] Notes: svn path=/head/; revision=378348
* Bump portrevision after png updateBaptiste Daroussin2014-12-251-1/+1
| | | | Notes: svn path=/head/; revision=375598
* Change libpng15.so to libpng.so in LIB_DEPENDS to prepare the upgradeAntoine Brodin2014-12-251-1/+1
| | | | Notes: svn path=/head/; revision=375594
* Get rid of gnomehierBaptiste Daroussin2014-12-211-1/+1
| | | | Notes: svn path=/head/; revision=375143
* graphics/poppler:Max Brazhnikov2014-11-256-38/+72
| | | | | | | | | | | | | | | | | | | | - Update to 0.26.3 - Add LICENSE_FILE - Adjust dependencies - Add new option, CURL - Switch to USES=libtool - Set proper install target instead of manual post-install stripping - Add Qt5 support - Use ${MOC} variable provided by Mk/bsd.qt.mk and remove needless pre-configure patching PR: 192068, 194992 Submitted by: olivierd, makc Exp-run by: antoine Approved by: kwm Notes: svn path=/head/; revision=373403
* Remove the final usages of USE_XZ from the tree, and replace them withAdam Weinberger2014-07-291-2/+1
| | | | | | | | | USES=tar:xz. Approved by: portmgr (most of them) Notes: svn path=/head/; revision=363395
* Update openjpeg to 2.1.0.Koop Mast2014-05-261-2/+2
| | | | | | | | | | Version 2.x is incompatible with openjpeg 1.5. Preserve it as openjpeg15 and update users. Approved by: portmgr (implicit) for NO_STAGE ports Notes: svn path=/head/; revision=355352
* When linking a library libA with a library libB using libtool, if libB.laTijl Coosemans2014-04-231-2/+2
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | exists, libtool will add all libraries libB.la refers to (dependency_libs field) to the linker command line and store them in the dependency_libs field of libA.la. So everything that subsequently links with libA will also link to these extra libraries. This causes too much overlinking. This commit modifies Mk/Uses/libtool.mk so it empties the dependency_libs field in .la libraries during staging. However, because .la libraries have very limited use when dependency_libs is empty it makes sense to completely remove them during staging. So with this commit USES=libtool is modified to remove .la libraries and a new form (USES=libtool:keepla) is introduced in case they need to be kept (dependency_libs is still emptied). PORTREVISION is bumped on all ports with USES=libtool that install .la libraries. Most ports are also changed to add :keepla because .la libraries have to be kept around as long as there are dependent ports with .la libraries that refer to them in their dependency_libs field. In most cases :keepla can be removed again as soon as all dependent ports that install .la libraries have some form of USES=libtool added to their Makefile. PR: ports/188759 Exp-run: bdrewery Approved by: portmgr (bdrewery) Notes: svn path=/head/; revision=351936
* The FreeBSD x11@ and graphics team proudly presentsNiclas Zeising2014-04-161-1/+1
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | a zeising, kwm production, with help from dumbbell, bdrewery: NEW XORG ON FREEBSD 9-STABLE AND 10-STABLE This update switches over to use the new xorg stack by default on FreeBSD 9 and 10 stable, on osversions where vt(9) is available. It is still possible to use the old stack by specifying WITHOUT_NEW_XORG in /etc/make.conf . FreeBSD 8-STABLE and released versions of FreeBSD still use the old version. A package repository with binary packages for new xorg will be available soon. This patch also contains updates of libxcb and related ports, pixman, as well as some drivers and utilities. Bump portrevisions for xf86-* ports, as well as virtualbox-ose-additions due to xserver version change. Apart from these updates, the way shared libraries are handled has been changed for all xorg ports, as well as libxml2 and freetype, which means ltverhack is gone and as a consequence shared libraries have been bumped. The plan is that this change will make library bumps less likely in the future. All affected ports have had their portrevisions bumped as a consequence of this. Fix some issues where WITH_NEW_XORG weren't detected properly on CURRENT. Update instructions, hardware support, and more notes can be found on https://wiki.freebsd.org/Graphics Thanks to: all testers, bdrewery and the FreeBSD x11@ team exp-run by: bdrewery [1] PR: ports/187602 [1] Approved by: portmgr (bdrewery), core (jhb) Notes: svn path=/head/; revision=351411
* Add USES=iconv. It is used in libpoppler-cpp and this makes sure libc iconvKoop Mast2014-02-281-1/+3
| | | | | | | | | | is used on FreeBSD 10+. PR: ports/186700 Submitted by: tijl@ Notes: svn path=/head/; revision=346578
* Update to 0.24.5.Koop Mast2014-02-224-15/+15
| | | | | | | Switch to USES=libtool Notes: svn path=/head/; revision=345681
* Update poppler to 0.24.4.Koop Mast2013-12-275-69/+89
| | | | | | | | | | | | Update comment. Use new LIB_DEPENDS syntax, use USES=pathfix. Stagify. Bump portrevision of all affected ports, and Update poppler* LIB_DEPENDS to new syntax. Notes: svn path=/head/; revision=337749
* Add NO_STAGE all over the place in preparation for the staging support (cat: ↵Baptiste Daroussin2013-09-201-0/+1
| | | | | | | graphics) Notes: svn path=/head/; revision=327733
* Add an explicit dependency on pkgconfBaptiste Daroussin2013-09-021-1/+1
| | | | Notes: svn path=/head/; revision=326025
* - Update poppler to 0.22.2.Jeremy Messenger2013-03-216-93/+103
| | | | | | | | | | | | - Bump the rest ports that depend on the poppler and poppler-qt because of shared library version have been changed. - Add a note in the UPDATING for require to rebuild all ports that depend on poppler. Submitted by: kwm (poppler* part) Notes: svn path=/head/; revision=314805
* Unify poppler-config.h includes in poppler header.Koop Mast2012-09-251-1/+4
| | | | | | | | | PR: ports/171877 Submitted by: bsam@ Obtained from: poppler upstream, Bug 52193 Notes: svn path=/head/; revision=304864
* - Convert USE_QT_VER=4 and QT_COMPONETS to USE_QT4Martin Wilke2012-06-061-2/+1
| | | | | | | Review by: bapt, David Naylor (kde team) Notes: svn path=/head/; revision=298557
* - update png to 1.5.10Dirk Meyer2012-06-011-1/+1
| | | | Notes: svn path=/head/; revision=297915
* Fix the build with clang.Jeremy Messenger2012-03-141-0/+3
| | | | | | | | | PR: ports/163443 Submitted by: Jan Beich <jbeich@tormail.net> Feature safe: yes Notes: svn path=/head/; revision=293299
* Overwrite the moc detection test to fix the build of poppler-qt4 on < 9.0,Koop Mast2012-02-241-0/+1
| | | | | | | | | | | or if qt33 is installed. PR: ports/165438 [1] Reported by: ale@, rakuco@, Justin Smith <freebsd.users@gmail.com> [1] angelv <angelvg@gmail.com> Notes: svn path=/head/; revision=292171
* Update to 0.18.4.Koop Mast2012-02-234-23/+17
| | | | Notes: svn path=/head/; revision=292106
* Update poppler to 0.18.0.Koop Mast2011-10-319-136/+99
| | | | | | | | | | | | The qt3 bindings are removed upstream. The glib library lost the last gdk-pixbuf code. And rename it from -gtk to -glib. Thanks to: pav for a exp-runs bapt for double checking the libreoffice ports Notes: svn path=/head/; revision=284777
* - Add LDFLAGS to CONFIGURE_ENV and MAKE_ENV (as it was done with LDFLAGS)Dmitry Marakasov2011-09-231-4/+2
| | | | | | | | | | | | - Fix all ports that add {CPP,LD}FLAGS to *_ENV to modify flags instead PR: 157936 Submitted by: myself Exp-runs by: pav Approved by: pav Notes: svn path=/head/; revision=282282
* Update to 0.16.7.Koop Mast2011-08-234-18/+18
| | | | Notes: svn path=/head/; revision=280297
* Remove USE_GNOME=gnometarget from ports. It has been a empty keyword sinceKoop Mast2011-08-111-1/+1
| | | | | | | | | | mid 2008. PR: ports/159624 Submitted by: Ruslan Mahmatkhanov <cvs-src@yandex.ru> Notes: svn path=/head/; revision=279506
* Sync to new bsd.autotools.mkAde Lovett2010-12-041-1/+1
| | | | Notes: svn path=/head/; revision=265663
* Presenting GNOME 2.32.1 for FreeBSD. The offical release notes for thisKoop Mast2010-11-205-41/+71
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | release can be found at http://library.gnome.org/misc/release-notes/2.32/ This will be the last release of the GNOME 2.x series, mainly a bugfix and bridge release to the first release of the GNOME 3.x series. This release features commits by avl, marcus, mezz and myself. The FreeBSD GNOME Team would like to thank the following contributors and testers for there help with this release: Zane C.B. <vvelox@vvelox.net> romain@ Olaf Seibert <O.Seibert@cs.ru.nl> DomiX Bapt <baptiste.daroussin@gmail.com> jsa@ miwi@ Sergio de Almeida Lenzi <lenzi.sergio@gmail.com> Maxim Samsonov <xors@mne.ru> Kris Moore And pav@ for 2 exp-runs PR: ports/152255 ports/143260 ports/141033 ports/149629 ports/150350 ports/151523 With hat: gnome@ Notes: svn path=/head/; revision=264837
* Presenting GNOME 2.30.1 for FreeBSD. The offical release notes for thisKoop Mast2010-05-102-6/+6
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | release can be found at http://library.gnome.org/misc/release-notes/2.30/ . This release brings initial PackageKit support, Upower (replaces power management part of hal), cuse4bsd integration with HAL and cheese, and a faster Evolution. Sadly GNOME 2.30.x will be the last release with FreeBSD 6.X support. This will also be the last of the 2.x releases. The next release will be the highly-anticipated GNOME 3.0 which will bring with it a new UI experience. Currently, there are a few bugs with GNOME 2.30 that may be of note for our users. Be sure to consult the UPGRADING note or the 2.30 upgrade FAQ at http://www.freebsd.org/gnome/docs/faq230.html for specific upgrading instructions, and the up-to-date list of known issues. This release features commits by avl, ahze, bland, marcus, mezz, and myself. The FreeBSD GNOME Team would like to thank Anders F Bjorklund for doing the initual packagekit porting. And the following contributors & testers for there help with this release: Eric L. Chen Vladimir Grebenschikov Sergio de Almeida Lenzi DomiX walder crsd Kevin Oberman Michal Varga Pavel Plesov Bapt kevin and ITetcu for two exp-run PR: ports/143852 ports/145347 ports/144980 ports/145830 ports/145511 Notes: svn path=/head/; revision=254099
* - update to 1.4.1Dirk Meyer2010-03-281-1/+1
| | | | | | | | Reviewed by: exp8 run on pointyhat Supported by: miwi Notes: svn path=/head/; revision=251605
* - update to jpeg-8Dirk Meyer2010-02-051-2/+2
| | | | Notes: svn path=/head/; revision=249285
* Update to 0.12.3.Joe Marcus Clarke2009-12-252-4/+4
| | | | Notes: svn path=/head/; revision=246605
* Fix usage of USE_QT* macros. So depends are detected correctly.Koop Mast2009-12-201-2/+5
| | | | | | | | PR: ports/141347 Submitted by: Dima Panov <fluffy@FreeBSD.org> (based on patch by makc@) Notes: svn path=/head/; revision=246284
* Presenting GNOME 2.28.1 for FreeBSD. The official release notes for thisJoe Marcus Clarke2009-11-284-19/+41
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | release can be found at http://library.gnome.org/misc/release-notes/2.28/ . Officially, this is mostly a polishing release in preparation for GNOME 3.0 due in about a year. On the FreeBSD front, though, a lot went into this release. Major thanks goes to kwm and avl who did a lot of the porting work for this release. In particular, kwm brought in Evolution MAPI support for better Microsoft Exchange integration. Avl made sure that the new gobject introspection repository ports were nicely compartmentalized so that large dependencies aren't brought in wholesale. But, every GNOME team member (ahze, avl, bland, kwm, mezz, and myself) contributed to this release. Other major improvements include an updated HAL with better volume probing code, ufsid integration, and support for volume names containing spaces (big thanks to J.R. Oldroyd); a new WebKit; updated AbiWord; an updated Gimp; and a preview of the new GNOME Shell project (thanks to Pawel Worach). The FreeBSD GNOME Team would like to that the following additional contributors to this release whose patches and testing really helped make it a success: Andrius Morkunas Dominique Goncalves Eric L. Chen J.R. Oldroyd Joseph S. Atkinson Li Pawel Worach Romain Tartière Thomas Vogt Yasuda Keisuke Rui Paulo Martin Wilke (and an extra shout out to miwi and pav for pointyhat runs) We would like to send this release out to Alexander Loginov (avl) in hopes that he feels better soon. PR: 136676 136967 138872 (obsolete with new epiphany-webkit) 139160 134737 139941 140097 140838 140929 Notes: svn path=/head/; revision=244923