summaryrefslogtreecommitdiff
path: root/print
AgeCommit message (Collapse)AuthorFilesLines
2016-08-03Revbump after graphics/gd updateadam25-49/+50
2016-08-03Fix possible heap corruption (via upstream bug 696954).leot3-3/+19
Bump PKGREVISION
2016-08-02Build didn't find SIZE_MAX (on 7.99.35/amd64).wiz2-1/+18
Not exactly sure why, but it was repeatable, so add a patch that makes sure SIZE_MAX is defined.
2016-08-02Update to 3.16.7:schnoebe3-9/+18
Change log: Added Support for the Following New Printers: - HP Officejet Pro 8730 - HP Officejet Pro 8210 Printer - HP Pagewide P55250 - HP Pagewide MFP P57750 - HP Pagewide Color 556 - HP Pagewide Color MFP 586 - HP Pagewide Color flow MFP 586 - HP DeskJet Ink Advantage Ultra 5730 All-in-One Printer - HP Color Laserjet MFP M377 fnw
2016-08-02Ignore result of broken pkg-config version test.wiz2-4/+14
2016-08-01Recursive PKGREVISION bump for poppler-0.46.0 shlib major bump.wiz25-48/+50
2016-08-01Remove obsolete patch (after 0.46.0 update).wiz1-16/+0
2016-08-01Update poppler* to 0.46.0.wiz3-9/+9
Release 0.46.0 core: * cairo: fix bug in setAntialias() * cairo: Fix tiling patterns with BBox with non-zero x,y * cairo: try finding glyphs in substitute fonts by unicode value. Bug #96994 * Added XRef modification flag * Added DocInfo setters & getters * Be less strict when parsing FitH Link destinations. Bug #96661 utils: * pdftocairo: revert the use of groups for blending into white page * pdftocairo: Use fprintf for printing errors * pdfinfo: Don't print pdf info when printing metadata, javascript, or structure. Bug #96801 glib: * Added document property setters & simplified getters * make document metatag gobject properties writeable cpp: * pass len to GooString constructor in detail::ustring_to_unicode_GooString(). Bug #96426 * Added functions to save a document * Added document property setters & getters qt4: * Added document property setters & simplified getters qt5: * Added document property setters & simplified getters build system: * configure: Don't use -fPIC on cygwin * configure: Work with non gnu greps Release 0.45.0 core: * SplashOutputDev: Fix iccTransform + splashModeXBGR8 * Fix memory leaks * Fix crash in broken files. Bug #95567. Bug #96027 * Emulate some non portable glibc functions when not available utils: * pdftohtml: Fix crash in broken files. Bug #95563 * pdfinfo: convert dates to local time zone * pdfinfo: add -isodates for printing dates in ISO-8601 format * pdfinfo: Fix memory leaks glib: * return date in UTC instead of local time. Bug #94173 cpp: * switched from detail::convert_date() to core's dateStringToTime()
2016-08-01PoDoFo 0.9.4 was released today, after over two years of development and ↵adam4-25/+24
with the help of many new contributors. As there are so many improvements, patches and fixes that made it into this release, we are not able to list them, so please stick with the svn log.
2016-07-29Add tex-shadowtext and its docs.wiz9-1/+51
The package introduces a command \shadowtext, which adds a drop shadow to the text that is given as its argument. The colour and positioning of the shadow are customisable.
2016-07-29tex-adjustbox needs tex-collectbox.wiz1-2/+4
Found out by trying to use it. Bump PKGREVISION.
2016-07-29Import tex-ncctools and docs:wiz9-1/+117
The NCC­tools bundle contains many packages for general use under LaTeX.
2016-07-29Add missing dependency on tex-makecmds.wiz1-1/+3
Found by trying to use it. Bump PKGREVISION.
2016-07-28Update to 1.13wen2-7/+7
Upstream changes: CHANGES IN knitr VERSION 1.13 NEW FEATURES code chunks that generate metadata may be cached now; it requires htmlwidgets >= v0.6 and htmltools >= 0.3.3 if you cache code chunks that contain HTML widgets or Shiny inputs/outputs (#1158) when the output format is not HTML, HTML widgets used to fail to render; now knitr will try to generate static screenshots for HTML widgets automatically using the webshot package; you can specify alternative screenshots via the chunk option screenshot.alt (which takes a character vector of image paths), and pass more options to webshot::webshot() via the chunk option screenshot.opts, e.g. list(delay = 3, cliprect = 'viewport') added two functions include_url() and include_app() to embed URLs in the output (the latter is for Shiny app URLs); when the output format is HTML, iframe will be used; otherwise screenshots of the URLs will be used screenshotting for HTML widgets and URLs can be forced for all output formats via the chunk option screenshot.force = TRUE; if you set the chunk option screenshot.force = FALSE, knitr will just render these content normally and not take screenshots added a new chunk option fig.link, which can be used to attach hyperlinks on figures, e.g. you can add a link to a screenshot of a Shiny app so that readers can check out the actual live app after clicking on the static screenshot (this chunk option currently only works for Markdown and LaTeX output) syntactical errors in code chunks will be allowed when the chunk option error = TRUE and the package version of evaluate is at least 0.8.4; previously knitr would just stop on parsing errors (hadley/evaluate#65) PNG/JPEG images included via include_graphics() also respects the chunk option dpi now; if it is numeric and the chunk option out.width is not set, the output width (in inches) of an image will be automatically calculated from the actual width (in pixels) divided by dpi; note this feature requires the packages png and/or jpeg to be installed, and you can disable the feature using dpi = NA (thanks, @hadley, rstudio/bookdown#38) added a new hook function named evaluate in knit_hooks so that users can redefine a evaluator to evaluate the code chunk; the default is evaluate::evaluate(), and your custom evaluator must be compatible with evaluate::evaluate() in terms of the argument names and the data structure of the returned value (a list of values with special classes) added a new function combine_words() to combine multiple words / phrases into a single string, which may be useful in inline R expressions, e.g. combine_words(c('a', 'b', 'c')) returns a, b, and c render_markdown() gained a new argument fence_char to customize the character to be used as the code blocks fence, e.g. it can be a backtick, or a tilde, depending on the Markdown rendering engine (thanks, @tinyheero, #1161) the pandoc() function no longer assumes Markdown input (thanks, @scls19fr, #1170) added a new function knit_meta_add() so that users can manually inject metadata into the current knitr session for the tikz engine, if fig.ext = 'svg', dvisvgm will be called to convert the DVI output of TikZ to SVG; you need to install dvisvgm, and Windows users have to install GhostScript as well (thanks, @dkilfoyle, #1177) new js and css engines which surround their content with <script> and <style> tags respecitvely, and print no output when not in an HTML document for LaTeX tables, kable() supports short captions now via the caption.short argument, e.g. kable(..., caption = 'A long caption', caption.short = 'A short caption') (thanks, @ismayc, #1199) added three global R options knitr.sanitize.errors, knitr.sanitize.warnings, and knitr.sanitize.messages to mask or change the messages, e.g. if options(knitr.sanitize.errors = TRUE) and the chunk option error = TRUE, the actual error message will be replaced by a character string like "An error occurred"; these options can also accept character values so you can customize the messages to be displayed, e.g. options(knitr.sanitize.warnings = 'You had a warning from the code'); see rstudio/shiny#1123 for the motivation of these options BUG FIXES when the chunk option cache.rebuild = TRUE, the cache database should be rewritten (thanks, Oleg Mayba) include_graphics() did not work in inline R expressions (thanks, @WastlM, #1166) the cex parameter was not correctly restored in the case of opts_knit$set(global.par = TRUE) (http://stackoverflow.com/q/35606445/559676) for Rnw documents, when there are two instances of \documentclass{}, knitr might mistakenly treats the second instance as the the actual command to declare the document class (thanks, #1180, @ekstroem) corrected the environment for evaluating R scripts in stitch_rhtml() and stitch_rmd() (thanks, @Hughan, #1207) MAJOR CHANGES the default value of the package option eval.after is changed from NULL to fig.cap, i.e. the figure caption will always be evaluated after a code chunk is evaluated (thanks, @JoshOBrien, #1165) the function eclipse_theme() has been removed since the website eclipsecolorthemes.org has been down for a long time
2016-07-22Add a patch to fix CVE-2016-6265 use after free bug (from upstream)leot3-3/+27
Bump PKGREVISION
2016-07-21sortjnemeth1-2/+2
2016-07-20- Following two packages are added to BUILD_DEPENDS for make testmef1-1/+4
p5-Package-DeprecationManager-[0-9]* p5-Module-Pluggable-[0-9]*
2016-07-18Set LICENSE.wiz6-12/+12
2016-07-18Update print/cups-filters to 1.10.0leot3-11/+11
Changes: CHANGES IN V1.10.0 - texttotext: Added new filter for text-only printers written in C, to use the CUPS library to access the print queue's PPD file, with a lot of options to fit practically all printer models amd paper sizes, support for CUPS' page management options, and support for configuring the print queue and controlling the options by the PPD file. The PPD is now generated on-the-fly by cupsfilters.drv. - textonly: Removed the old script-based filter and its PPD for text-only printers. - rastertops: Added new filter to turn PWG Raster into PostScript, in preparation for MuPDF support. Thanks to Pranjal Bhor for contributing this as part of his Google Summer of Code project. - gstoraster, gstopxl, gstopdf, pstopdf: Integrated functionality of script-based filters pstopdf and gstopxl into gstoraster filter as script-based filters cannot access the print queue's PPD file with current CUPS due to change of PPD file permissions. To make gstoraster always produce the correct output format (CUPS/PWG Raster, PDF, PCL-XL) it is called via new wrapper scripts (gstopdf, gstopxl) which set an environment variable telling the format. The old filter scripts got removed. - imagetops, texttops: Do not use $0 in the wrapper scripts, when CUPS calls filters, it passes the queue name as $0, not path and name of the called filter. - cups-browsed: When creating local queues for discovered IPP network printers always create PPD files and if the information supplied by the printer via IPP is insufficient use information from the DNS-SD entry or default values suitable for most printers. Use System V interface scripts only on explicit request in cups-browsed.conf. This change is to address the fact that System V interface script support is removed from CUPS 2.2.x and later for security reasons. - pstopdf: Make the filter only get installed if Ghostscript is present and also moved its conversion rules into the cupsfilters-ghostscript.convs file. - cups-browsed: Fixed crash when trying to get debugg logging both to the terminal and into a file. - libcupsfilters: Fixed crash of pdftoraster when the color space is an RGB space (3 colors) with 1 bit color depth. Here we need to add one bit to the pixels (to get 4 bits per pixel) to align the pixels with the bytes. - cups-browsed: From cups-browsed.service removed the unneeded "Wants=cups.service" as we have "Requires=cups.service" (Debian bug #827455, #827457). - foomatic-rip: Updated man page for removed page logging facility. - pdftops: Also added Dell to the list of manufacturers whose printers need Poppler's PostScript to work around their PostScript interpreter bugs (Debian bug #827040).
2016-07-17Add new tex packages.wiz1-1/+62
2016-07-17Add missing packages for the texlive context collection.wiz244-0/+1781
2016-07-15Fix linking with openjpeg-2.1.1leot3-8/+20
Restrict OPJ_STATIC definition to Windows (as the comment suggests). This avoid linking errors with openjpeg-2.1.1. Bump PKGREVISION
2016-07-14Add tex-ctablestack{,-doc}markd1-1/+3
2016-07-14Add tex-ctablestack{,-doc} 1.0markd8-0/+50
This package provides a method for defining category code table stacks in LuaTeX. It builds on code provided by the 2015/10/01 release of LaTeX2e (also available as ltluatex.sty for plain users). It is required by the luatexbase package (v1.0 onward) which uses ctablestack to provide a back-compatibility form of this concept.
2016-07-14Add tex-lua{code,tex85,tex-def}{,-doc}markd1-1/+7
2016-07-14Add tex-luacode{,-doc} 1.2a - Helper for executing lua code from within TeXmarkd24-0/+148
Add tex-luatex85{,-doc} 1.0 - pdfTeX aliases for LuaTeX Add tex-luatex-def{,-doc} 0.01b - LuaTeX option file for color and graphics
2016-07-14Add MESSAGE noting that you need to run "mtxrun --generate"markd1-0/+9
2016-07-14Don't build luajit just for something we aren't installing anyway.markd1-3/+2
Fixes PR pkg/51338
2016-07-13fix luatex config paths to match pkgsrc texmf.cnfmarkd3-3/+73
2016-07-10Fixed pkglint warning.rillig1-2/+2
2016-07-10Fixed typo in HOMEPAGE.rillig1-2/+2
2016-07-10Fixed typo in LICENSE. Bumped revision.rillig1-2/+3
2016-07-10Fixed typo in NO_SRC_ON_{FTP,CDROM}. Bumped revision of affected packages.rillig3-7/+7
2016-07-09Remove python33: adapt all packages that refer to it.wiz8-18/+18
2016-07-09Bump PKGREVISION for perl-5.24.0 for everything mentioning perl.wiz45-75/+90
2016-07-07Add one more SunOS assembly patch to fix 64-bit.jperkin2-1/+20
2016-07-06Generate lj_vm_asm.S at build time using a patched generator, shouldjperkin4-23/+49
ensure both SunOS and NetBSD builds are fixed.
2016-07-05Fully fix the SunOS PLT issue.jperkin2-5/+8
2016-07-05remove gratuitous use of sed -i (related to PR 51304)dholland3-7/+8
2016-07-03workaround for luajit PIC issue PR pkg/51304 (also PR pkg/51260)markd3-3/+21
2016-07-01The recent libarchive update changed the library major. Increase thejperkin4-7/+8
ABI depends and perform a PKGREVISION bump for dependents. Noticed by OSX binary package users.
2016-06-29Bump ptexenc dependency to 1.3.4 PR pkg/51292markd1-2/+2
No PKGREVISION bump required as wouldn't build with older versions.
2016-06-23Added patch-src_doc_PdfImage.cpp to distinfo; added comment to this patch.adam2-2/+6
2016-06-19Recognize TIFF images with alpha channel when using the photometricjoerg2-2/+15
color tag. Bump revision.
2016-06-19Add dependency on tex-graphics-cfgmarkd2-2/+6
2016-06-19Update locationprlw11-3/+3
2016-06-19Note dependency on tex-graphics-cfgmarkd1-2/+3
2016-06-19Add tex-graphics-cfg{,-doc} tex-dvisvgm-def{,-doc}markd1-1/+5
2016-06-19Add tex-graphics-cfg{,-doc} 2016markd16-0/+95
Sample configuration files for LaTeX color and graphics Add tex-dvisvgm-def{,-doc} 1.0a Colour and Graphics support for dvisvgm
2016-06-18Uses perl.markd1-1/+2