aboutsummaryrefslogtreecommitdiffstats
path: root/converters/wkhtmltopdf
Commit message (Collapse)AuthorAgeFilesLines
* security/openssl-devel was removed, but there is a security/openssl111 now.mat2018-11-101-2/+2
|
* converters/wkhtmltopdf: fix build on powerpc64pi2018-10-021-0/+11
| | | | | | | - really add patch PR: 231858 Submitted by: Piotr Kubaj <pkubaj@anongoth.pl>
* converters/wkhtmltopdf: fix build on powerpc64pi2018-10-021-2/+4
| | | | | | | | | - requires USES=compiler:c++11-lang to build on powerpc64 - It also requires changing values in mkspecs to point to proper compiler PR: 231858 Submitted by: Piotr Kubaj <pkubaj@anongoth.pl> Sponsored by: Hardware by IntegriCloud
* multimedia/*phonon*: update and flavorize with @qt4/@qt5tcberner2018-06-221-0/+1
| | | | | Approved by: portmgr (mat) Differential Revision: https://reviews.freebsd.org/D14632
* converters/wkhtmltopdf: add run-dependency on x11-fonts/webfontspi2018-06-131-0/+2
| | | | | | | - otherwise characters are rendered as small blocks PR: 189424 Submitted by: Vick Khera <vivek@khera.org>
* converters/wkhtmltopdf: update 0.12.4 -> 0.12.5, unbreakpi2018-06-135-176/+21
| | | | | | | | | | - take maintainer PR: 228968, 228732 Submitted by: truckman, pi Reviewed by: Ashish Kulkarni <kulkarni.ashish@gmail.com> (upstream) Approved by: mm (maintainer) Relnotes: https://github.com/wkhtmltopdf/wkhtmltopdf/releases
* Add more information to stub error messages.linimon2018-03-101-8/+8
| | | | | | | | Remove BROKEN lines where IGNORE has already been set. While here, pet portlint. Approved by: portmgr (tier-2 blanket)
* Unbreakantoine2018-02-241-1/+1
|
* Mark wkhtmltopdf as broken for clang >= 6.0 until fixedmm2018-02-241-1/+9
|
* BROKEN_SSL: Add REASON for breakagebrnrd2018-02-171-0/+1
| | | | Reported by: matwq
* security/openssl-devel: Mark broken cat c*brnrd2018-02-161-0/+1
|
* For ports that are marked BROKEN on armv6, and also fail to build onlinimon2017-11-301-0/+1
| | | | | | | | | | armv7, mark them so. This is part two of a multipart commit to bring armv7 ports to parity with armv6. Approved by: portmgr (tier-2 blanket) Obtained from: lonesome.com -exp run
* Update to 0.12.4grembo2017-03-274-9/+143
| | | | | | | | | | | | Also: - strips binaries - changes plist to alphabetical order - adds a patch from 0.12.5-dev to support the use of client certificates and private CAs (-ssl-key-password,--ssl-crt-path,--ssl-key-path), see also https://github.com/wkhtmltopdf/wkhtmltopdf/pull/3206 PR: 217922 Approved by: mm (maintainer)
* converters/wkhtmltopdf: unbreak with clang 4.0 (same as r431742)jbeich2017-01-211-0/+21
| | | | | | | | | | src/3rdparty/webkit/Source/WebCore/html/HTMLImageElement.cpp:77:24: error: ordered comparison between pointer and zero ('const int *' and 'int') if (optionalHeight > 0) ~~~~~~~~~~~~~~ ^ ~ PR: 216211 Obtained from: upstream (excerpt) Approved by: portmgr blanket
* Mark as broken on various tier-2 archs.linimon2016-11-141-2/+5
| | | | | | While here, pet portlint. Approved by: portmgr (tier-2 blanket)
* converters/wkhtmltopdf: Document SSL build requirementmarino2016-09-101-1/+1
| | | | Approved by: SSL blanket
* Update converters/wkhtmltopdf to 0.12.3.2mm2016-07-053-10/+16
|
* - Fix trailing whitespace in pkg-descrs, categories [a-f]*amdmi32016-05-191-1/+1
| | | | Approved by: portmgr blanket
* many ports: mark broken on powerpc64swills2016-04-221-0/+2
|
* Remove ${PORTSDIR}/ from dependencies, Mk and categories a, b, and c.mat2016-04-011-3/+3
| | | | | With hat: portmgr Sponsored by: Absolight
* - Remove "BROKEN on powerpc" statement: the port builds and links finedanfe2015-09-041-17/+10
| | | | - Fix LICENSE_FILE knob, reindent USES/USE_* block, kill EOL whitespace
* Convert to USES=jpegantoine2015-06-231-2/+1
|
* MASTER_SITES cleanup.mat2015-05-141-2/+1
| | | | | | | | | | | | | | | | | | | - Replace ${MASTER_SITE_FOO} with FOO. - Merge MASTER_SITE_SUBDIR into MASTER_SITES when possible. (This means 99.9% of the time.) - Remove occurrences of MASTER_SITE_LOCAL when no subdirectory was present and no hint of what it should be was present. - Fix some logic. - And generally, make things more simple and easy to understand. While there, add magic values to the FESTIVAL, GENTOO, GIMP, GNUPG, QT and SAMBA macros. Also, replace some EXTRACT_SUFX occurences with USES=tar:*. Checked by: make fetch-urlall-list With hat: portmgr Sponsored by: Absolight
* converters/libiconv:tijl2015-04-154-0/+62
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | - Remove const qualifier from iconv(3) to match POSIX: http://pubs.opengroup.org/onlinepubs/9699919799/functions/iconv.html - Patch iconv.h to expose more GNU extensions when LIBICONV_PLUG is defined because the base system iconv supports these extensions too. Add/remove patches to/from ports to call iconv with non-const arguments. This breaks some ports on FreeBSD 10 because base system iconv.h still has the const qualifier. Fix this by letting USES=iconv add a build dependency on converters/libiconv so ports can use its iconv.h (with LIBICONV_PLUG defined) instead of the base system iconv.h. This exposed some ports that link with libiconv when it is available instead of using libc iconv. In these cases one of the following changes has been made: - patch configure scripts to test for libc iconv first - add ac_cv_lib_iconv_libiconv=no or similar to CONFIGURE_ARGS to disable some configure tests - converters/wkhtmltopdf: this includes Qt4 so add a patch from devel/qt4 - lang/gcc5-aux: respect CFLAGS and friends during configure such that LIBICONV_PLUG is defined in the iconv test, also switch to external gettext - mail/gnarwl: replace patches with CPPFLAGS/LIBS - multimedia/ffmpeg2theora: remove iconv test from SConstruct and use ICONV_LIB in port Makefile instead, also fix a bug in subtitles.c - net-im/licq: finish conversion to cmake - net-mgmt/bandwidthd, net-mgmt/icinga, net-mgmt/nagios, net-mgmt/nagios4: don't need iconv - textproc/p5-XML-TinyXML: finish conversion to USES=perl5 Other changes: - databases/qdbm and slaves: respect CFLAGS and friends, also enable bzip2 and lzo support - games/ldmud: respect CFLAGS and friends - graphics/inventor: replace some patches with MAKE_ARGS/MAKE_ENV to respect CFLAGS and friends, also remove FreeBSD/alpha patch and add missing xorg dependencies PR: 199099 Exp-run by: antoine Approved by: portmgr (antoine)
* Cleanup old unneeded bits.mat2015-04-021-7/+0
| | | | Sponsored by: Absolight
* Update wkhtmltopdf to 0.12.2.1mm2015-01-193-5/+4
|
* Bump portrevision after png updatebapt2014-12-261-0/+1
|
* Change libpng15.so to libpng.so in LIB_DEPENDS to prepare the upgradeantoine2014-12-261-1/+1
|
* Cleanup plistbapt2014-10-201-1/+0
|
* Convert a bunch of USE_BZIP2 to USES=tar:bzip2adamw2014-07-301-2/+1
| | | | Approved by: portmgr (not really, but touches unstaged ports)
* Remove unnecessary definemm2014-06-301-2/+0
|
* Update wkhtmltopdf to 0.12.1mm2014-06-2910-703/+55
|
* This line got lost during the GMAKE -> MAKE_CMD conversionantoine2014-06-251-0/+1
|
* Convert GMAKE to MAKE_CMDbapt2014-06-251-2/+2
|
* The FreeBSD x11@ and graphics team proudly presentszeising2014-04-171-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)
* Use all distfiles from github using the new qt tagmm2014-02-082-11/+13
| | | | Thanks to: Ashish Kulkarni (upstream developer)
* Update to 0.12.0 and support stagingmm2014-02-0713-31/+1351
|
* In preparation for making libtool generate libraries with a sane name, fix allbapt2013-12-111-6/+6
| | | | LIB_DEPENDS in converters
* Do not depend on gcc on FreeBSD 9 and lowermm2013-10-301-1/+4
|
* Update to libmpc version 1.0.1 which brings the following fixes:gerald2013-10-261-1/+1
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | - Switched to automake 1.11.6, see CVE-2012-3386. - #14669: Fixed extraction of CC from gmp.h. - Fixed case of intermediate zero real or imaginary part in mpc_fma, found by hydra with GMP_CHECK_RANDOMIZE=1346362345. This is on top of the following changes from version 1.0 - Licence change towards LGPLv3+ for the code and GFDLv1.3+ (with no invariant sections) for the documentation. - 100% of all lines are covered by tests - Renamed functions . mpc_mul_2exp to mpc_mul_2ui . mpc_div_2exp to mpc_div_2ui - 0^0, which returned (NaN,NaN) previously, now returns (1,+0). - Removed compatibility with K&R compilers, which was untestable due to lack of such compilers. - New functions . mpc_log10 . mpc_mul_2si, mpc_div_2si - Speed-ups . mpc_fma - Bug fixes . mpc_div and mpc_norm now return a value indicating the effective rounding direction, as the other functions. . mpc_mul, mpc_sqr and mpc_norm now return correct results even if there are over- or underflows during the computation. . mpc_asin, mpc_proj, mpc_sqr: Wrong result when input variable has infinite part and equals output variable is corrected. . mpc_fr_sub: Wrong return value for imaginary part is corrected. Convert to the new LIB_DEPENDS standard and remove hard-coded .so versions from a couple of dependent ports. Bump PORTREVISIONS of all dependent ports. PR: 183141 Approved by: portmgr (bdrewery)
* Compile wkhtmltopdf under FreeBSD 10.x by dependig on gccmm2013-10-211-1/+4
| | | | TODO: backport patches from www/qt4-webkit
* Add NO_STAGE all over the place in preparation for the staging support (cat: ↵bapt2013-09-211-0/+1
| | | | converters)
* - convert to the new perl5 frameworkaz2013-09-161-3/+2
| | | | | | - convert USE_GMAKE to Uses Approved by: portmgr (bapt@, blanket)
* - Remove MAKE_JOBS_SAFE variableak2013-08-151-1/+0
| | | | Approved by: portmgr (bdrewery)
* Convert all c categories to USE=pkgconfigbapt2013-04-231-1/+1
|
* Update some of my ports to new options frameworkmm2012-12-311-7/+5
| | | | Submitted by: Baptiste Daroussin <bapt@FreeBSD.org>
* - update png to 1.5.10dinoex2012-06-011-1/+2
|
* - Mark BROKEN on 7.X: fails to extractpav2012-05-311-2/+2
| | | | Reported by: pointyhat
* Update to 0.11.0_rc1 and newer Qtmm2012-05-112-15/+12
|
* - Fix build when using custom PREFIX/LOCALBASEzi2012-02-131-1/+2
| | | | | | PR: ports/165039 Submitted by: zi@ (me) Approved by: mm@ (maintainer)
* Mark as broken on powerpc: fails to link.linimon2011-11-111-0/+4
| | | | | Hat: portmgr Feature safe: yes
* - Add notice about webfonts to pkg-descrmm2011-07-202-0/+7
| | | | | | - Set as broken on FreeBSD 6.x and earlier [1] PR: ports/158842 [1]
* - Fix depends for option BUNDLED_LIBSmm2011-03-251-5/+1
|
* - Modify COMMENT and pkg-descr to provide a better description what thismm2011-03-222-5/+8
| | | | powerful tool can do
* - Remove empty line from pkg-messagemm2011-03-221-1/+0
|
* - Add LICENSE_FILE(s)mm2011-03-221-0/+3
|
* Add LICENSE informationmm2011-03-221-0/+3
|
* Simple shell utility to convert html to pdf using a custom static buildmm2011-03-225-0/+125
of qt and the webkit rendering engine. Features of the static version: * Convert web pages into PDF documents using webkit * Adding headers and footers * TOC generation * Batch mode conversions * XServer is not required (however the X11 client libs must be installed) WWW: http://code.google.com/p/wkhtmltopdf/