pkgsrc/graphics
kleink 7a8a3d4ef0 cairo: Update to 1.16.0.
Release 1.16.0 (2018-10-19 Bryce Harrington <bryce@bryceharrington.org>)
========================================================================
This new stable release incorporates a number of improvements made in
the four years since 1.14.0.

Of particular note is a wealth of work by Adrian Johnson to enhance PDF
functionality, including restoring support for MacOSX 10.4, metadata,
hyperlinks, and more.

Much attention also went into fonts, including new colored emoji glyph
support, variable fonts, and fixes for various font idiosyncrasies.

Other noteworthy changes include GLESv3 support for the cairo_gl
backend, tracking of SVG units in generated SVG documents, and cleanups
for numerous test failures and related issues in the PDF and Postscript
backends.

For a complete log of changes, please see

    https://cairographics.org/releases/ChangeLog.1.16.0


Features and Enhancements
-------------------------
* Add support for OpenGL ES 3.0 to the gl backend.
* The PDF backend has gained support for a range of widely used
  features, including thumbnails, page labels, metadata, document
  outlines, structured text, hyperlinks, and tags.  Tags permit adding
  logical info such as headings, tables, figures, etc. that facilitates
  indexing, accessibility, text reflow, searching, and extraction of the
  tagged items to other software.  For details on this new PDF
  functionality, see:
    https://lists.cairographics.org/archives/cairo/2016-June/027427.html
* Variable font support.  Variable fonts are single font files with
  various typography characteristics, such as weight or slant, that users
  of the font can adjust between two points.  Effectively this enables a
  single font to behave as multiple fonts.
* Restore MacOSX 10.4 support.  Cairo had dropped 10.4 support when
  moving to the CoreText API.  Now we automatically detect which API to
  use via dynamic linking, so can resume supporting this older version
  of MacOSX.
* Support colored emoji glyphs, stored as PNG images in OpenType fonts.
* Skia backend is removed
* Use Reusable streams for forms in Level 3 Postscript.
* Add CAIRO_MIME_TYPE_EPS mime type for embedding EPS files.
* Add CCITT_FAX mime type for PDF and PS surfaces
* svg: add a new function to specify the SVG document unit
  (Bug #90166)
* Use UTF-8 filenames on Windows


API Changes
-----------
Several new APIs were added.  No existing APIs were altered.

New PDF functionality:

  * cairo_pdf_surface_add_outline
  * cairo_pdf_surface_set_metadata
  * cairo_pdf_surface_set_page_label
  * cairo_pdf_surface_set_thumbnail_size
  * cairo_tag_begin
  * cairo_tag_end
  * CAIRO_STATUS_TAG_ERROR

New error status items for problems relating to PDF tagging:

  * CAIRO_STATUS_WIN32_GDI_ERROR
  * CAIRO_STATUS_FREETYPE_ERROR
  * CAIRO_STATUS_PNG_ERROR

    New error status items for handling of GDI, libfreetype, and libpng
    errors, respectively.


Setting up Win32 surfaces for HDC with alpha channels:

  * cairo_win32_surface_create_with_format

    New API for added PDF functionality (see above), and new error
    status item for problems relating to PDF tagging.

Variable fonts:

  * cairo_font_options_get_variations
  * cairo_font_options_set_variations

Tracking units in SVG documents:

  * cairo_svg_surface_set_document_unit
  * cairo_svg_surface_get_document_unit



Dependency Changes
------------------
None


Performance Optimizations
-------------------------
None


Notable Bug Fixes
-----------------
* Fix thin lines that don't show up when printing in Inkscape due to
  overly aggressive culling.
  (Bug #77298)
* Fix playback of recording surfaces into PDF surfaces, where objects
  with negative coordinates were not getting drawn.  To address this,
  the coordinate systems for PDF and PS have been changed to match
  cairo's coordinate system.  This allows recording surfaces to be
  emitted in cairo coordinates, and results in the same origin being
  used for all operations when using the recording surface XObject.
  Test cases for PDF and PS have also been updated accordingly.
  (Bug #89232)
* Fix "invalidfont" error on some printers when printing PDFs with
  embedded fonts that have glyphs (such as spaces) with
  num_contours == 0.  (Bug #79897)
* Fix missing glyphs such as thin dashes, which get scaled to 0 in
  userspace and thus have their drawing operations culled.  (Bug #94615)
* Fix other oddities caused by variously idiosyncratic fonts.
* Fix a data race in freed_pool discovered by Firefox's cairo usage.
  The patch adads atomic int load and store functions, with relaxed
  memory ordering.  (Bug #90318)
* Handle SOURCE and CLEAR operators when painting color glyphs.
  (Bug #102661)
* Fix falling back to system font with PDFs using certain embedded
  fonts, due to truncated font names.
  (Bug #103249)
* Prevent curved strokes in small ctms from being culled from vector
  surfaces
  (Bug #103071)
* Fix assertion hit with PDFs using Type 4 fonts rendered with user
  fonts, due to error when destroying glyph page.
  (Bug #103335)
* Prevent invalid ptr access for > 4GB images.
  (Bug #98165)
* pdf: Fix internal links pointing to other pages, by pre-calculating
  page heights so that link positions can be calculated more accurately.
* Fix error reporting in the xcb backend if fallback fails.  Instead of
  returning NULL when the X11 server can't do some operation, return a
  surface in an error state.
* Clarify documentation regarding device scale inheritance and the units
  used in cairo_surface_create_similar_image.
  (Bug #99094)
* Call XSync in the xlib backend before setting the error handler to
  ignore errors for certain requests, to make sure all pending errors
  are handled first.
* Fix regression with text containing space character on Win32.
  (Bug: https://gitlab.freedesktop.org/cairo/cairo/issues/339)

For a more comprehensive listing of fixed bugs, see the release notes for the
individual 1.15.x releases.


Release 1.15.14    (2018-09-19 Bryce Harrington <bryce@bryceharrington.org>)
============================================================================
We're nearly ready to finalize the 1.16.0 release, so this snapshot
can be considered a beta for 1.16.

The most notable change this release is a performance optimization for
windows, discussed below.  Other than that, much of the development
focus was on final polish and stability as we prepare for 1.16.

Some attention went into getting the testsuite passing at least for the
image backend.  The Cairo testsuite depends on external software like
Pixman, and changes in the rendering behavior of these dependencies
change test behavior, leading to false positives.

Results from the Coverity static testing tool were also reviewed.  Most
of the issues flagged were false positives, but there were several
legitimate problems found and fixed.

For a complete log of changes, please see

    https://cairographics.org/releases/ChangeLog.1.15.12

Features and Enhancements
-------------------------
* Add more FreeeType font color conversions to support COLR/CPAL
* Update test reference images against current pixman

API Changes
-----------
None

Dependency Changes
------------------
None

Performance Optimizations
-------------------------
Vasily Galkin introduced a Win32 performance optimization for
CAIRO_OPERATOR_SOURCE when copying data from a backbuffer to an argb32
surface corresponding to a Win32 DC.  With this, argb32 drawing should
perform as fast as typical dibsection-buffered GDI drawing.  See the
Cairo mailing list for April 2018 for data and discussion of the
performance improvements.


Bug Fixes
---------
* Fix crash when rendering Microsoft's Segoe UI Emoji Regular font.
* Fix build breakage with glesv3 enabled due to non-existant glesv3.pc.
* Fix memory leaks found by Coverity
* Fix incorrect null ptr handling found by Coverity
* Fix test compilation when font-config is disabled
* Use _cairo_malloc instead of malloc (Bug #101547) (CVE-2017-9814)
* Fix assertion failure in the freetype backend (Bug #105746)


Release 1.15.12    (2018-04-04 Bryce Harrington <bryce@osg.samsung.com>)
========================================================================
The main focus for this release is the addition of Variable Font
support.  Variable fonts are single font files with various typography
characteristics, such as weight or slant, that users of the font can
adjust between two points.  Effectively this enables a single font to
behave as multiple fonts.

The Skia backend is disabled in this release, due to severe bitrot, and
will be removed in future releases.  Contact the cairo team if you have
a need of this backend.

For a complete log of changes, please see

    https://cairographics.org/releases/ChangeLog.1.15.12

Features and Enhancements
-------------------------
* Variable font support
* Skia backend is disabled

API Changes
-----------
* cairo_font_options_get_variations() and
  cairo_font_options_set_variations() are added.

Dependency Changes
------------------
None

Performance Optimizations
-------------------------
None

Bug Fixes
---------
* Fix errors in csi-trace --help and --version options
* Fix a 'memory leak' in the image compositor, with
  pixman_glyph_cache_t.
* Fix access of uninitialized memory found by valgrind
  (Bug #91271)
* Fix improper initialization of memory in
  _cairo_ft_font_face_create_for_pattern()
  (Bug #105084)
* Fix multi-monitor virtual desktop with negative coords on Win32
  (Bug #100793)
* Fix issues occuring with older FreeType versions.


Release 1.15.10    (2017-12-07 Bryce Harrington <bryce@osg.samsung.com>)
========================================================================
This release adds GLESv3 support to the cairo_gl backend, adds
tracking of SVG units in generated svg documents, and cleans up numerous
test failures and related issues in the PDF and Postscript backends.

For a complete log of changes, please see

    https://cairographics.org/releases/ChangeLog.1.15.10

Features and Enhancements
-------------------------
* Add support for OpenGL ES 3.0 to the gl backend.
* Use Reusable streams for forms in Level 3 Postscript.
* Add CAIRO_MIME_TYPE_EPS mime type for embedding EPS files.
* Add CCITT_FAX mime type for PDF and PS surfaces
* svg: add a new function to specify the SVG document unit
  (Bug #90166)
* Use UTF-8 filenames on Windows

API Changes
-----------
* cairo_svg_surface_set_document_unit() and
  cairo_svg_surface_get_document_unit()

Dependency Changes
------------------
None

Performance Optimizations
-------------------------
None

Bug Fixes
---------
* Fix regression in gles version detection
* Fix undefined-behavior with integer math.
* Handle SOURCE and CLEAR operators when painting color glyphs.
  (Bug #102661)
* Convert images to rgba or a8 formats when uploading with GLESv2
* Use _WIN32 instead of windows.h to check for windows build.
* Fix sigabrt printing documents with fonts lacking the mandatory .nodef
  glyph.
  (Bug #102922)
* Prevent curved strokes in small ctms from being culled from vector
  surfaces
  (Bug #103071)
* Fix painting an unbounded recording surface with the SVG backend.
* Fix falling back to system font with PDFs using certain embedded
  fonts, due to truncated font names.
  (Bug #103249)
* Fix handling of truetype fonts with excessively long font names
  (Bug #103249)
* Fix race conditions with cairo_mask_compositor_t
  (Bug #103037)
* Fix build error with util/font-view
* Fix assertion hit with PDFs using Type 4 fonts rendered with user
  fonts, due to error when destroying glyph page.
  (Bug #103335)
* Set default creation date for PDFs
* Prevent invalid ptr access for > 4GB images.
  (Bug #98165)
* Prevent self-copy infinite loop in Postscript surface.
* Fix padded image crash in Postscript surface.
* Fix annotation bugs in PDFs and related memory leaks
* Fix test failures and other assorted issues in ps and pdf code.
* Fix code generation when using GCC legacy atomic operations
  (Bug #103559)
* Fix various compilation warnings and errors.
* Fix various distcheck errors with private symbols, doxygen formatting,
  etc.

Release 1.15.8     (2017-08-29 Bryce Harrington <bryce@osg.samsung.com>)
========================================================================
This small snapshot provides new colored emoji glyph support, and a
handful of minor fixes.

For a complete log of changes, please see

    https://cairographics.org/releases/ChangeLog.1.15.8

Features and Enhancements
-------------------------
* Support colored emoji glyphs, stored as PNG images in OpenType fonts.


API Changes
-----------
None

Dependency Changes
------------------
None

Performance Optimizations
-------------------------
None

Bug Fixes
---------

* pdf: Fix internal links pointing to other pages, by pre-calculating
  page heights so that link positions can be calculated more accurately.

* image: Fix crash on negative lengths

* win32: Fix initialization of mutexes for static builds

* pdf: Don't emit /PageLabel dict when no labels defined

* font: Fix color font loading on big-endian systems

* font:	Fix color font support infinite-loop with empty glyphs

* Fix off by one check in cairo-image-info.c



Release 1.15.6     (2017-06-13 Bryce Harrington <bryce@osg.samsung.com>)
========================================================================
This new snapshot incorporates changes over the past half-year since the
1.15.4 snapshot, including all the fixes from the 1.14 release series.

The PDF code continues to be enhanced, and we're restored MacOSX 10.4
support.  Font-related fixes and improved error handling for X round out
the release.

For a complete log of changes, please see

    https://cairographics.org/releases/ChangeLog.1.15.6


Features and Enhancements
-------------------------
* Detect if variable fonts have	synthesized bold/italic	or non-default
  variants, and	     use a fallback font where needed.

* Restore MacOSX 10.4 support.	    Cairo had dropped 10.4 support when
  moving to the CoreText API.  Now we automatically detect which API to
  use via dynamic linking, so can resume supporting this older version
  of MacOSX.


API Changes
-----------
None

Dependency Changes
------------------
None

Performance Optimizations
-------------------------
None

Bug Fixes
---------
* Fix error reporting in the xcb backend if fallback fails.  Instead of
  returning NULL when the X11 server can't do some operation, return a
  surface in an error state.

* Call XSync in the xlib backend before setting the error handler to
  ignore errors for certain requests, to make sure all pending errors
  are handled first.

* Fix text-glyph-range for quartz-font.	 Use 0xFFFF instead of 0 for
  invalid index	       tracking.

* Fix handling of Supplementary Multilingual Plane (SMP) Unicode
  characters in quartz-font.

* Fix various issues in the drm backend	including updating API usage and
  general code cleanup.

* Clarify documentation	regarding device scale inheritance and the units
  used in cairo_surface_create_similar_image.
  Bug #99094.


Release 1.15.4     (2016-12-9 Bryce Harrington <bryce@osg.samsung.com>)
=======================================================================
This new snapshot incorporates changes over the past year since the
1.15.2 snapshot, including all the fixes from the 1.14 release series.

Of particular note in this snapshot is a wealth of work by Adrian
Johnson to enhance PDF support, as well as numerous bug fixes provided
by him and other contributors.

For a complete log of changes since the last release, please see:

    https://cairographics.org/releases/ChangeLog.1.15.4

Features
--------
* The PDF backend has gained support for a range of widely used
  features, including thumbnails, page labels, metadata, document
  outlines, structured text, hyperlinks, and tags.  Tags permit adding
  logical info such as headings, tables, figures, etc. that facilitates
  indexing, accessibility, text reflow, searching, and extraction of the
  tagged items to other software.  For details on this new PDF
  functionality, see:

    https://lists.cairographics.org/archives/cairo/2016-June/027427.html


API Changes
-----------

  cairo_win32_surface_create_with_format

    Added a cairo API to set up Win32 surfaces for HDC with alpha channels.

  cairo_pdf_surface_add_outline
  cairo_pdf_surface_set_metadata
  cairo_pdf_surface_set_page_label
  cairo_pdf_surface_set_thumbnail_size
  cairo_tag_begin
  cairo_tag_end
  CAIRO_STATUS_TAG_ERROR

    New API for added PDF functionality (see above), and new error
    status item for problems relating to PDF tagging.

  CAIRO_STATUS_WIN32_GDI_ERROR
  CAIRO_STATUS_FREETYPE_ERROR
  CAIRO_STATUS_PNG_ERROR

    New error status items for handling of GDI, libfreetype, and libpng
    errors, respectively.

Dependency Changes
------------------
None

Performance Optimizations
-------------------------
None

Bug Fixes
---------
* Bug fixes from 1.15.2 (see the 1.15.2 NEWS for details)

* Fix playback of recording surfaces into PDF surfaces, where objects
  with negative coordinates were not getting drawn.  To address this,
  the coordinate systems for PDF and PS have been changed to match
  cairo's coordinate system.  This allows recording surfaces to be
  emitted in cairo coordinates, and results in the same origin being
  used for all operations when using the recording surface XObject.
  Test cases for PDF and PS have also been updated accordingly.
  (Bug #89232)

* Fix "invalidfont" error on some printers when printing PDFs with
  embedded fonts that have glyphs (such as spaces) with
  num_contours == 0.  (Bug #79897)

* Fix missing glyphs such as thin dashes, which get scaled to 0 in
  userspace and thus have their drawing operations culled.  (Bug #94615)

* Fix other oddities caused by variously idiosyncratic fonts.

* Fix deadlock when destruction of a scaled font indirectly triggers
  destruction of a second scaled font, causing the global cache to be
  locked twice.  (Bug #93891)

* Fix X errors reported to applications when shmdt() is called before
  the Attach request is processed, due to missing xcb and xlib calls.

* Fix random failure in record-paint-alpha-clip-mast test case, caused
  by an incorrect assumption that a deferred clear can be skipped.
  (Bug #84330)

* Fix crash when dealing with an XShmGetImage() failure, caused by a
  double free in _get_image_surface().  (Bug #91967)

* Fix invalid execution of ASCII85 data by the PS interpreter that the
  image operator didn't use, by flushing the extraneous data after
  drawing the image.  (Bug #84811)

* Fix decoding of Adobe Photoshop's inverted CMYK JPEG files in PDF
  export.

* Fix unbounded surface assertion in win32-print code.

* Fix a data race in freed_pool discovered by Firefox's cairo usage.
  The patch adads atomic int load and store functions, with relaxed
  memory ordering.  (Bug #90318)

* Cleanup debugging text sent to stdout instead of log.  (Bug #95227)

* Fix build issue when using non-GNU strings utility.  (Bug #88639)

* Fix build of cairo modules as regular modules, not as versioned shared
  libaries.  (Bug #29319)

* Fix build on win32 using gcc 5.4.

* Fix build of script backend to require zlib.

* Update test suite reference images using Debian Jessie 64-bit and
  poppler current as of June, 2016.

* Various improvements to documentation and tests, compiler warning
  fixes, and an assortment of code refactoring and cleanup.


Release 1.15.2     (2015-12-10 Bryce Harrington <bryce@osg.samsung.com>)
========================================================================
This release is largely a rollup to include a variety of fixes that
didn't make the cut for the stable 1.14.2 and 1.14.4 releases, as well
as all the fixes from those releases.  Notably this includes a highly
requested new API for Win32 surfaces.

For a complete log of changes since the last release, please see:

    https://cairographics.org/releases/ChangeLog.1.15.2

Features
--------
None

API Changes
-----------

  cairo_win32_surface_create_with_format

    Added a cairo API to set up Win32 surfaces for HDC with alpha channels.

Dependency Changes
------------------
None

Performance Optimizations
-------------------------
None

Bug Fixes
---------
* All the bug fixes from 1.14.2, 1.14.4, and 1.14.6

* Fix xcb/xlib compilation and calls.  Make image boxes behave when SHM
  is not available.

* Fix various issues with printing and transparent images on Win32.

* Fix thin lines that don't show up when printing in Inkscape due to
  overly aggressive culling.
  (Bug #77298)

* Fix broken printing via pdf when glyph 0 is used for rendering,
  resulting in missing spaces and letters.
  (Bug #89082)

* Fix crash for certain glyphs in opentype fonts.
  (Bug #91902)

* Fix incorrect rendering of SVG paths with more than one subpath.  If
  more than one trap is passed in then it's guaranteed that the returned
  traps will have their left edge to the left of their right edge, but
  if only one trap is passed in then the function always returns without
  doing anything.
  (Bug #90984)

* Improve rendering with Quartz to better match pixman's blending and
  filtering behavior.


Release 1.14.6    (2015-12-09  Bryce Harrington <bryce@osg.samsung.com>)
========================================================================
Simple bugfix release to fix one Windows issue.

For a complete log of changes since 1.14.4, please see:

    https://cairographics.org/releases/ChangeLog.1.14.6

Features
--------
None

API Changes
-----------
None

Dependency Changes
------------------
None

Performance Optimizations
-------------------------
None

Bug Fixes
---------
* Fix failure on Windows due to reference of the function
  cairo_win32_surface_create_with_format(), which isn't included in the
  1.14.4 release. (Bug #92771)


Release 1.14.4    (2015-10-28  Bryce Harrington <bryce@osg.samsung.com>)
========================================================================
Just in time for Halloween we see another bug-fix release for Cairo.
This brings a few dozen straightforward bug fixes with no API changes.

In addition, this includes a typical assortment of fixes to tests,
cleanup of warnings and memory leaks, correction of misspellings,
updates to documentation, etc.

For a complete log of changes since 1.14.2, please see:

    https://cairographics.org/releases/ChangeLog.cairo-1.14.4

Features
--------
None

API Changes
-----------
None

Dependency Changes
------------------
None

Performance Optimizations
-------------------------
None

Bug Fixes
---------
* Avoid appending empty slots to user data arrays.  Fixes a memory
  consumption regression since commit 9341c254a.

* Return a better error (file-not-found) when setting up pango on
  devices where the font files don't have read permissions.

* Fix regression in the font size of canvas text in Inkscape when
  compiled with the Quartz backend.  (Bug #84324)

* Fix _cairo_gl_shader_bind_matrix() to maintain compatibility with
  OpenGL ES 2.0.  Manually transpose the matrix.

* Fix incorrect font descriptor conversion when the font matrix yy is
  negative. (Bug #90538)

* Fix crash when using a complex path for clip and stroke due to
  discarding the intersection exactly at the top edge.
  (Bug #74779)

* Fix cairo_get_locale_decimal_point() on Android

* Fix compilation problem on AIX due to conflicting usage of symbol
  'jmpbuf'.  (Bug #89339)

* Fix broken rendering with XCB due to snapshotting of uploaded part of
  surfaces.  (Bug #67505)

* Fix loss of alpha when copying a mask for a cairo recording surface,
  resulting in a double copy.  (Bugs #73038, #73901)

* Fix incorrect recording of certain paths with script surfaces.
  (Bug #91054)

* Fix typo in definition of MAYBE_WARN in configure script.
  (Bug #89750)

* Fix use of filename variable after it's been freed.
  (Bug #91206)

* Fix out of bounds access when printing pattern.
  (Bug #91266)

* Fix incorrect size calculation in glyph cache unlocking for Cairo GL
  compositor.
  (Bug #91321)

* Fix memory leak in _cairo_gl_pattern_texture_setup()
  (Bug #91537)

* Fix transparent images in win32-print.
  (Bug #91835)

* Fix _put_shm_image_boxes and _put_image_boxes when no SHM available
  with XCB.
2018-11-14 17:14:52 +00:00
..
aalib graphics/*: remove redundant :Q modifiers 2018-01-14 14:58:38 +00:00
adaptagrams Needs pkg-config for autoreconf. 2016-10-17 11:47:12 +00:00
adwaita-icon-theme adwaita-icon-theme: update to 3.28.0. 2018-04-16 11:46:55 +00:00
AfterShotPro graphics/*: remove redundant :Q modifiers 2018-01-14 14:58:38 +00:00
agg Add SHA512 digests for distfiles for graphics category 2015-11-03 21:33:50 +00:00
ansilove Recursive bumps for fontconfig and libzip dependency changes. 2018-03-12 11:15:24 +00:00
aqsis revbump after boost-libs update 2018-08-16 18:54:26 +00:00
arc-theme Recursive revbump from hardbuzz-2.1.1 2018-11-12 03:51:07 +00:00
artist Added missing LICENSE variable. 2018-01-03 00:30:31 +00:00
asymptote Recursive bump for perl5-5.28.0 2018-08-22 09:43:40 +00:00
autopano-sift-C graphics/autopano-sift-C: Install manpages into ${PKGMANDIR}. 2017-08-19 00:19:37 +00:00
autotrace Recursive revbump from hardbuzz-2.1.1 2018-11-12 03:51:07 +00:00
aview *: Move SUBST_STAGE from post-patch to pre-configure 2018-07-04 13:40:07 +00:00
babl Update to 0.1.56 2018-08-28 13:31:48 +00:00
barcode Comment out some dead HOMEPAGEs. 2017-08-01 17:40:08 +00:00
bktr2jpeg Add SHA512 digests for distfiles for graphics category 2015-11-03 21:33:50 +00:00
blender Update to 2018-10-07 23:44:49 +00:00
blender-doc Add SHA512 digests for distfiles for graphics category 2015-11-03 21:33:50 +00:00
blinkenthemes Recursive revbump from hardbuzz-2.1.1 2018-11-12 03:51:07 +00:00
blinkentools Recursive revbump from hardbuzz-2.1.1 2018-11-12 03:51:07 +00:00
breeze-icons Recursive revbump from hardbuzz-2.1.1 2018-11-12 03:51:07 +00:00
cairo cairo: Update to 1.16.0. 2018-11-14 17:14:52 +00:00
cairo-gobject Recursive bumps for fontconfig and libzip dependency changes. 2018-03-12 11:15:24 +00:00
cairomm Recursive bump for perl5-5.28.0 2018-08-22 09:43:40 +00:00
cal3d Mark packages that require C++03 (or the GNU variants) if they fail with 2018-07-18 00:06:10 +00:00
cal3d-examples graphics/*: remove redundant :Q modifiers 2018-01-14 14:58:38 +00:00
cambevao graphics/*: remove redundant :Q modifiers 2018-01-14 14:58:38 +00:00
camediaplay Add SHA512 digests for distfiles for graphics category 2015-11-03 21:33:50 +00:00
camlimages Revbumps associated with update of lang/ocaml. 2018-11-12 16:10:16 +00:00
cdlabelgen Recursive bump for perl5-5.28.0 2018-08-22 09:43:40 +00:00
Cenon Recursive revbump from textproc/icu-62.1 2018-07-20 03:33:47 +00:00
cheese Recursive revbump from hardbuzz-2.1.1 2018-11-12 03:51:07 +00:00
cinepaint Recursive revbump from hardbuzz-2.1.1 2018-11-12 03:51:07 +00:00
circos Recursive bump for perl5-5.28.0 2018-08-22 09:43:40 +00:00
claraocr Recursive bump for perl5-5.28.0 2018-08-22 09:43:40 +00:00
clutter Recursive revbump from hardbuzz-2.1.1 2018-11-12 03:51:07 +00:00
clutter-box2d Recursive revbump from hardbuzz-2.1.1 2018-11-12 03:51:07 +00:00
clutter-gtk Recursive revbump from hardbuzz-2.1.1 2018-11-12 03:51:07 +00:00
clutter-gtk0.10 Recursive revbump from hardbuzz-2.1.1 2018-11-12 03:51:07 +00:00
clutter-mx Recursive revbump from hardbuzz-2.1.1 2018-11-12 03:51:07 +00:00
cnxtview Support jpeg-9 API. 2016-03-25 21:12:57 +00:00
cogl Recursive revbump from hardbuzz-2.1.1 2018-11-12 03:51:07 +00:00
Coin Mark packages that require C++03 (or the GNU variants) if they fail with 2018-07-18 00:06:10 +00:00
colord Colord depends on lcms2. 2018-08-01 21:00:09 +00:00
comix Recursive revbump from hardbuzz-2.1.1 2018-11-12 03:51:07 +00:00
compface Recursive bump for perl5-5.28.0 2018-08-22 09:43:40 +00:00
cpia2view Deal with API changes of jpeg-9. 2016-03-22 18:55:30 +00:00
cqcam Recursive bumps for fontconfig and libzip dependency changes. 2018-03-12 11:15:24 +00:00
CRWInfo Comment out some dead HOMEPAGEs. 2017-08-01 17:40:08 +00:00
darktable Recursive revbump from hardbuzz-2.1.1 2018-11-12 03:51:07 +00:00
dcraw Changes 9.27.0: 2017-02-12 20:28:23 +00:00
deforaos-camera Recursive revbump from hardbuzz-2.1.1 2018-11-12 03:51:07 +00:00
deforaos-icon-theme Comment out dead MASTER_SITES/HOMEPAGEs. 2017-09-03 08:36:49 +00:00
denemo Recursive revbump from hardbuzz-2.1.1 2018-11-12 03:51:07 +00:00
dia Recursive revbump from hardbuzz-2.1.1 2018-11-12 03:51:07 +00:00
dia-python Recursive revbump from hardbuzz-2.1.1 2018-11-12 03:51:07 +00:00
digikam Recursive bump for perl5-5.28.0 2018-08-22 09:43:40 +00:00
djview4 *: Move SUBST_STAGE from post-patch to pre-configure 2018-07-04 13:40:07 +00:00
djvulibre-lib Add SHA512 digests for distfiles for graphics category 2015-11-03 21:33:50 +00:00
djvulibre-tools Update to 3.5.27 2015-09-24 23:05:31 +00:00
dvipng Recursive bumps for fontconfig and libzip dependency changes. 2018-03-12 11:15:24 +00:00
dx Recursive revbump from hardbuzz-2.1.1 2018-11-12 03:51:07 +00:00
dxsamples Comment out some dead HOMEPAGEs. 2017-08-01 17:40:08 +00:00
edje revbump after boost-libs update 2018-08-16 18:54:26 +00:00
elementary-xfce-icon-theme Update to 0.11: 2018-05-15 21:30:55 +00:00
enblend-enfuse Recursive bump for perl5-5.28.0 2018-08-22 09:43:40 +00:00
eog Recursive revbump from hardbuzz-2.1.1 2018-11-12 03:51:07 +00:00
eog-plugins Recursive revbump from hardbuzz-2.1.1 2018-11-12 03:51:07 +00:00
eog-plugins-map Recursive revbump from hardbuzz-2.1.1 2018-11-12 03:51:07 +00:00
eog3 Recursive revbump from hardbuzz-2.1.1 2018-11-12 03:51:07 +00:00
eom Recursive revbump from hardbuzz-2.1.1 2018-11-12 03:51:07 +00:00
epeg Comment out dead MASTER_SITES/HOMEPAGEs. 2017-09-03 08:36:49 +00:00
erlang-eimp graphics/erlang-eimp: Update to 1.0.6. 2018-07-20 09:26:21 +00:00
evas Recursive bumps for fontconfig and libzip dependency changes. 2018-03-12 11:15:24 +00:00
evas-buffer Recursive bumps for fontconfig and libzip dependency changes. 2018-03-12 11:15:24 +00:00
evas-edb Recursive bumps for fontconfig and libzip dependency changes. 2018-03-12 11:15:24 +00:00
evas-eet Recursive bumps for fontconfig and libzip dependency changes. 2018-03-12 11:15:24 +00:00
evas-gif Recursive bumps for fontconfig and libzip dependency changes. 2018-03-12 11:15:24 +00:00
evas-jpeg Recursive bumps for fontconfig and libzip dependency changes. 2018-03-12 11:15:24 +00:00
evas-pmaps Recursive bumps for fontconfig and libzip dependency changes. 2018-03-12 11:15:24 +00:00
evas-png Recursive bumps for fontconfig and libzip dependency changes. 2018-03-12 11:15:24 +00:00
evas-software-x11 Recursive bumps for fontconfig and libzip dependency changes. 2018-03-12 11:15:24 +00:00
evas-tiff Recursive bumps for fontconfig and libzip dependency changes. 2018-03-12 11:15:24 +00:00
evas-xpm Recursive bumps for fontconfig and libzip dependency changes. 2018-03-12 11:15:24 +00:00
ewipe Comment out dead sites (DNS problems). 2017-08-01 16:47:35 +00:00
exif Add SHA512 digests for distfiles for graphics category 2015-11-03 21:33:50 +00:00
exifprobe Comment out some dead HOMEPAGEs. 2017-08-01 17:40:08 +00:00
exiftags Add SHA512 digests for distfiles for graphics category 2015-11-03 21:33:50 +00:00
exiv2 exiv2: Fix clearly broken WRKSRC. 2018-02-02 17:43:51 +00:00
exiv2-organize revbump after boost-libs update 2018-08-16 18:54:26 +00:00
extrema Fix PLIST inconsistency after recent update, sorry. 2016-09-12 14:01:19 +00:00
f-spot Recursive revbump from hardbuzz-2.1.1 2018-11-12 03:51:07 +00:00
fbm Add SHA512 digests for distfiles for graphics category 2015-11-03 21:33:50 +00:00
feh revbump after boost-libs update 2018-08-16 18:54:26 +00:00
flickrnet Recursive revbump from textproc/icu-62.1 2018-07-20 03:33:47 +00:00
fly Recursive bump for perl5-5.28.0 2018-08-22 09:43:40 +00:00
fnlib graphics/*: remove redundant :Q modifiers 2018-01-14 14:58:38 +00:00
fotoxx Recursive revbump from hardbuzz-2.1.1 2018-11-12 03:51:07 +00:00
frameworks Recursive revbump from hardbuzz-2.1.1 2018-11-12 03:51:07 +00:00
freeglut Fix indentation in buildlink3.mk files. 2018-01-07 13:03:53 +00:00
freeimage Mark packages that require C++03 (or the GNU variants) if they fail with 2018-07-18 00:06:10 +00:00
freeimageplus Install licenses and copyright information in freeimage and 2017-08-11 15:26:20 +00:00
freetype Follow some http -> https redirects. 2017-08-01 14:58:51 +00:00
freetype-lib Fix indentation in buildlink3.mk files. 2018-01-07 13:03:53 +00:00
freetype-utils
freetype2 freetype2: Re-enable the freetype-config script. 2018-05-14 09:13:16 +00:00
fujiplay Comment out dead sites. 2017-08-16 20:45:30 +00:00
g2 Recursive bump for perl5-5.28.0 2018-08-22 09:43:40 +00:00
gd Add upstream patch to address CVE-2018-1000222. 2018-09-10 13:34:16 +00:00
gdchart Recursive bumps for fontconfig and libzip dependency changes. 2018-03-12 11:15:24 +00:00
gdk-pixbuf graphics/*: remove redundant :Q modifiers 2018-01-14 14:58:38 +00:00
gdk-pixbuf2 gdk-pixbuf2: update to 2.36.12. 2018-04-16 12:22:40 +00:00
gdk-pixbuf2-jasper 2.36.8: 2017-08-08 16:52:10 +00:00
gdk-pixbuf2-xlib Fix indentation in buildlink3.mk files. 2018-01-07 13:03:53 +00:00
geeqie Recursive revbump from hardbuzz-2.1.1 2018-11-12 03:51:07 +00:00
gegl Recursive revbump from hardbuzz-2.1.1 2018-11-12 03:51:07 +00:00
gegl0.2 Recursive revbump from hardbuzz-2.1.1 2018-11-12 03:51:07 +00:00
geomview Move documentation to where it belongs, add license, bump PKGREVISION. 2018-01-07 22:36:54 +00:00
get_ds7 Recursive bump for perl5-5.28.0 2018-08-22 09:43:40 +00:00
gexiv2 graphics/gexiv2: fix minor darwin specific error in configure 2018-06-04 05:09:33 +00:00
gfract Recursive revbump from hardbuzz-2.1.1 2018-11-12 03:51:07 +00:00
gif2png Replaced $(ROUND) with ${CURLY} variable references. 2018-01-01 18:16:35 +00:00
gif320 Sort PLIST files. 2018-01-01 22:29:15 +00:00
giflib Update graphics/giflib to 5.1.4. 2016-05-01 20:28:44 +00:00
giflib-util
gifsicle Updated gifsicle to 1.88. 2017-04-05 16:07:17 +00:00
giftrans Add SHA512 digests for distfiles for graphics category 2015-11-03 21:33:50 +00:00
gimmage Recursive revbump from hardbuzz-2.1.1 2018-11-12 03:51:07 +00:00
gimp Recursive revbump from hardbuzz-2.1.1 2018-11-12 03:51:07 +00:00
gimp-color-manager Recursive revbump from hardbuzz-2.1.1 2018-11-12 03:51:07 +00:00
gimp-docs-de Recursive bump for perl5-5.28.0 2018-08-22 09:43:40 +00:00
gimp-docs-en Recursive bump for perl5-5.28.0 2018-08-22 09:43:40 +00:00
gimp-docs-es Recursive bump for perl5-5.28.0 2018-08-22 09:43:40 +00:00
gimp-docs-fr Recursive bump for perl5-5.28.0 2018-08-22 09:43:40 +00:00
gimp-docs-it Recursive bump for perl5-5.28.0 2018-08-22 09:43:40 +00:00
gimp-docs-ja Recursive bump for perl5-5.28.0 2018-08-22 09:43:40 +00:00
gimp-docs-ko Recursive bump for perl5-5.28.0 2018-08-22 09:43:40 +00:00
gimp-docs-nl Recursive bump for perl5-5.28.0 2018-08-22 09:43:40 +00:00
gimp-docs-nn Recursive bump for perl5-5.28.0 2018-08-22 09:43:40 +00:00
gimp-docs-pl Recursive bump for perl5-5.28.0 2018-08-22 09:43:40 +00:00
gimp-docs-ru Recursive bump for perl5-5.28.0 2018-08-22 09:43:40 +00:00
gimp-docs-sv Recursive bump for perl5-5.28.0 2018-08-22 09:43:40 +00:00
gimp-docs-zh_CN Recursive bump for perl5-5.28.0 2018-08-22 09:43:40 +00:00
gimp-exif-browser Recursive revbump from hardbuzz-2.1.1 2018-11-12 03:51:07 +00:00
gimp-fix-ca Recursive revbump from hardbuzz-2.1.1 2018-11-12 03:51:07 +00:00
gimp-high-pass-filter Add SHA512 digests for distfiles for graphics category 2015-11-03 21:33:50 +00:00
gimp-jxr Recursive revbump from hardbuzz-2.1.1 2018-11-12 03:51:07 +00:00
gimp-liquid-rescale Recursive revbump from hardbuzz-2.1.1 2018-11-12 03:51:07 +00:00
gimp-rawphoto Recursive revbump from hardbuzz-2.1.1 2018-11-12 03:51:07 +00:00
gimp-refocus-it Recursive revbump from hardbuzz-2.1.1 2018-11-12 03:51:07 +00:00
gimp-resynthesizer Recursive revbump from hardbuzz-2.1.1 2018-11-12 03:51:07 +00:00
gimp-ufraw Recursive revbump from hardbuzz-2.1.1 2018-11-12 03:51:07 +00:00
gimp-warp-sharp Add SHA512 digests for distfiles for graphics category 2015-11-03 21:33:50 +00:00
gimp-webp Recursive revbump from hardbuzz-2.1.1 2018-11-12 03:51:07 +00:00
gimp2-wideangle Recursive revbump from hardbuzz-2.1.1 2018-11-12 03:51:07 +00:00
giram Recursive revbump from hardbuzz-2.1.1 2018-11-12 03:51:07 +00:00
girara Recursive revbump from hardbuzz-2.1.1 2018-11-12 03:51:07 +00:00
gle Fix indentation in buildlink3.mk files. 2018-01-07 13:03:53 +00:00
glew glew: Fix SunOS/clang compiler selection. 2018-01-29 12:58:44 +00:00
glfw Update graphics/glfw to 3.2.1 2017-04-12 12:56:46 +00:00
glitz Use OPSYSVARS. 2016-02-25 13:37:46 +00:00
gliv Recursive revbump from hardbuzz-2.1.1 2018-11-12 03:51:07 +00:00
glm Add SHA512 digests for distfiles for graphics category 2015-11-03 21:33:50 +00:00
glpng Add SHA512 digests for distfiles for graphics category 2015-11-03 21:33:50 +00:00
glu glu: Requires zlib. 2018-10-17 10:04:31 +00:00
glut glut: Requires zlib. 2018-10-17 18:03:48 +00:00
glw Follow some http redirects. 2017-08-16 20:21:03 +00:00
glx-utils Follow some http -> https redirects. 2017-08-01 14:58:51 +00:00
gmic Recursive revbump from hardbuzz-2.1.1 2018-11-12 03:51:07 +00:00
gmngview Recursive revbump from hardbuzz-2.1.1 2018-11-12 03:51:07 +00:00
GMT revbump after boost-libs update 2018-08-16 18:54:26 +00:00
gnome-backgrounds Fix build on NetBSD. 2018-06-13 19:35:51 +00:00
gnome-icon-theme Recursive bump for perl5-5.28.0 2018-08-22 09:42:51 +00:00
gnome-icon-theme-extras Use https for www.gnome.org HOMEPAGEs. 2017-07-30 22:47:48 +00:00
gnome-icon-theme-symbolic Recursive revbump from hardbuzz-2.1.1 2018-11-12 03:51:07 +00:00
gnome-themes-standard Recursive revbump from hardbuzz-2.1.1 2018-11-12 03:51:07 +00:00
gnuplot Recursive revbump from hardbuzz-2.1.1 2018-11-12 03:51:07 +00:00
go-image Revbump all Go packages after go111 update. 2018-11-04 18:37:54 +00:00
go-resize Revbump all Go packages after go111 update. 2018-11-04 18:37:54 +00:00
go-smartcrop Revbump all Go packages after go111 update. 2018-11-04 18:37:54 +00:00
gocr Updated graphics/gocr to 0.48 2016-07-24 23:59:55 +00:00
goocanvas Recursive revbump from hardbuzz-2.1.1 2018-11-12 03:51:07 +00:00
goocanvas2 Recursive revbump from hardbuzz-2.1.1 2018-11-12 03:51:07 +00:00
goocanvasmm Recursive revbump from hardbuzz-2.1.1 2018-11-12 03:51:07 +00:00
gource revbump after boost-libs update 2018-08-16 18:54:26 +00:00
gphoto2 libgphoto2: update bl3.mk for dependency change 2018-04-03 06:14:54 +00:00
gpick Recursive revbump from hardbuzz-2.1.1 2018-11-12 03:51:07 +00:00
gpicview Recursive revbump from hardbuzz-2.1.1 2018-11-12 03:51:07 +00:00
gqview Recursive revbump from hardbuzz-2.1.1 2018-11-12 03:51:07 +00:00
gqview-devel Recursive revbump from hardbuzz-2.1.1 2018-11-12 03:51:07 +00:00
grafx2 Fix packaging on native X11 environment 2018-07-17 21:32:19 +00:00
grap Comment out dead MASTER_SITES/HOMEPAGEs. 2017-09-03 08:36:49 +00:00
GraphicsMagick Recursive revbump from hardbuzz-2.1.1 2018-11-12 03:51:07 +00:00
graphite2 Update to 1.3.11 2018-03-07 11:14:03 +00:00
graphviz Revbumps associated with update of lang/ocaml. 2018-11-12 16:10:16 +00:00
graphviz-dot-mode Add SHA512 digests for distfiles for graphics category 2015-11-03 21:33:50 +00:00
gri Recursive bump for perl5-5.28.0 2018-08-22 09:43:40 +00:00
gst-plugins0.10-cairo Recursive bumps for fontconfig and libzip dependency changes. 2018-03-12 11:15:24 +00:00
gst-plugins0.10-jpeg
gst-plugins0.10-png
gst-plugins1-cairo gstreamer1: update to 1.14.0 2018-04-17 22:10:04 +00:00
gst-plugins1-jpeg
gst-plugins1-png
gthumb Recursive revbump from hardbuzz-2.1.1 2018-11-12 03:51:07 +00:00
gthumb3 Recursive revbump from hardbuzz-2.1.1 2018-11-12 03:51:07 +00:00
gtkam Recursive revbump from hardbuzz-2.1.1 2018-11-12 03:51:07 +00:00
gtkglext Recursive revbump from hardbuzz-2.1.1 2018-11-12 03:51:07 +00:00
gtkimageview Recursive revbump from hardbuzz-2.1.1 2018-11-12 03:51:07 +00:00
gtksee Comment out dead sites. 2017-08-16 20:45:30 +00:00
gts Removed USE_LANGUAGES comment 2017-05-22 08:59:12 +00:00
guetzli Switch github HOMEPAGEs to https. 2017-07-30 22:32:10 +00:00
guile-cairo Recursive bumps for fontconfig and libzip dependency changes. 2018-03-12 11:15:24 +00:00
GUIlib Sort PLIST files. 2018-01-01 22:29:15 +00:00
gwenview revbump after boost-libs update 2018-08-16 18:54:26 +00:00
h5utils Add SHA512 digests for distfiles for graphics category 2015-11-03 21:33:50 +00:00
hermes Sort PLIST files. 2018-01-01 22:29:15 +00:00
hicolor-icon-theme Fix indentation in buildlink3.mk files. 2018-01-07 13:03:53 +00:00
hp2xx Add SHA512 digests for distfiles for graphics category 2015-11-03 21:33:50 +00:00
hugin Recursive revbump from hardbuzz-2.1.1 2018-11-12 03:51:07 +00:00
icon-naming-utils Recursive bump for perl5-5.28.0 2018-08-22 09:43:40 +00:00
icoutils Recursive bump for perl5-5.28.0 2018-08-22 09:43:40 +00:00
iGMT iGMT: follow redirect 2017-12-24 09:52:51 +00:00
ilmbase ilmbase/openexr: updated to 2.3.0 2018-10-02 12:05:35 +00:00
ImageMagick *: Add CTF_SUPPORTED/CTF_FILES_SKIP where necessary. 2018-11-12 14:40:20 +00:00
ImageMagick6 *: Add CTF_SUPPORTED/CTF_FILES_SKIP where necessary. 2018-11-12 14:40:20 +00:00
ImageViewer Recursive revbump from textproc/icu-62.1 2018-07-20 03:33:47 +00:00
imlib xorgproto: use xorgproto instead of separate *proto packages 2018-03-07 11:57:28 +00:00
imlib-gtk graphics/*: remove redundant :Q modifiers 2018-01-14 14:58:38 +00:00
imlib2 *: Move SUBST_STAGE from post-patch to pre-configure 2018-07-04 13:40:07 +00:00
impress Sort PLIST files. 2018-01-01 22:29:15 +00:00
inkscape Recursive revbump from hardbuzz-2.1.1 2018-11-12 03:51:07 +00:00
ivtools Comment out dead sites. 2017-08-16 20:45:30 +00:00
jasper graphics/jasper: update to 2.0.14. 2017-11-23 19:16:28 +00:00
jbig2dec jbig2dec: Update graphics/jbig2dec to 0.15 2018-10-12 10:25:51 +00:00
jbigkit Honor LDFLAGS. Fixes RELRO build. 2017-07-06 13:13:30 +00:00
jhead graphics/jhead: move documentation to share/doc/jhead 2018-02-18 05:01:02 +00:00
jpeg jpeg: distfile was rerolled upstram 2018-04-07 06:27:13 +00:00
jpeg2ps Comment out dead sites. 2017-08-16 20:45:30 +00:00
jpeg_ls Add SHA512 digests for distfiles for graphics category 2015-11-03 21:33:50 +00:00
jpeginfo Use PKGMANDIR. Add patch comment. 2016-04-01 13:05:37 +00:00
jpegoptim jpegoptim: updated to 1.4.6 2018-04-18 06:55:49 +00:00
jpegpixi Comment out dead sites. 2017-08-16 20:45:30 +00:00
jpegquality Add SHA512 digests for distfiles for graphics category 2015-11-03 21:33:50 +00:00
jxrlib Update some HOMEPAGEs. 2017-09-03 09:22:57 +00:00
kamera revbump after boost-libs update 2018-08-16 18:54:26 +00:00
kcolorchooser revbump after boost-libs update 2018-08-16 18:54:26 +00:00
kde-base-artwork revbump after boost-libs update 2018-08-16 18:54:26 +00:00
kdegraphics-mobipocket revbump after boost-libs update 2018-08-16 18:54:26 +00:00
kdegraphics-strigi-analyzer revbump after boost-libs update 2018-08-16 18:54:26 +00:00
kdegraphics-thumbnailers revbump after boost-libs update 2018-08-16 18:54:26 +00:00
kgamma revbump after boost-libs update 2018-08-16 18:54:26 +00:00
kiconthemes Recursive revbump from hardbuzz-2.1.1 2018-11-12 03:51:07 +00:00
kimageformats Recursive revbump from hardbuzz-2.1.1 2018-11-12 03:51:07 +00:00
kipi-plugins Recursive revbump from hardbuzz-2.1.1 2018-11-12 03:51:07 +00:00
kolourpaint revbump after boost-libs update 2018-08-16 18:54:26 +00:00
koverartist Recursive bump for perl5-5.28.0 2018-08-22 09:43:40 +00:00
kplotting Recursive revbump from hardbuzz-2.1.1 2018-11-12 03:51:07 +00:00
kqtquickcharts4 revbump after boost-libs update 2018-08-16 18:54:26 +00:00
krita Recursive revbump from hardbuzz-2.1.1 2018-11-12 03:51:07 +00:00
kruler revbump after boost-libs update 2018-08-16 18:54:26 +00:00
ksaneplugin revbump after boost-libs update 2018-08-16 18:54:26 +00:00
ksnapshot revbump after boost-libs update 2018-08-16 18:54:26 +00:00
lasem Recursive revbump from hardbuzz-2.1.1 2018-11-12 03:51:07 +00:00
lcms Add SHA512 digests for distfiles for graphics category 2015-11-03 21:33:50 +00:00
lcms2 2.8 Featured release 2016-09-13 11:09:34 +00:00
lensfun lensfun: Specify C++03, not C++11 clean. 2018-02-06 12:18:13 +00:00
lepton Convert CXXFLAGS setting C++ standard to USE_LANGUAGES. 2017-05-03 08:38:38 +00:00
leptonica leptonica: updated to 1.76.0 2018-05-09 11:39:04 +00:00
lib3ds Add SHA512 digests for distfiles for graphics category 2015-11-03 21:33:50 +00:00
libart Add SHA512 digests for distfiles for graphics category 2015-11-03 21:33:50 +00:00
libbpg Sort PLIST files. 2018-01-01 22:29:15 +00:00
libcaca libcaca: assume & handle newly POSIX style endian.h (decision in 2011) 2017-12-03 03:57:31 +00:00
libdmtx libdmtx: update HOMEPAGE 2018-02-25 16:09:19 +00:00
libepoxy Fix for missing EGL_CAST 2017-06-08 12:37:33 +00:00
libexif libexif: Add a patch from upstream to address CVE-2017-7544 2018-10-13 10:17:30 +00:00
libexif-gtk Recursive revbump from hardbuzz-2.1.1 2018-11-12 03:51:07 +00:00
libfpx *: remove ftp.kddlabs.co.jp, does not provide ftp service 2017-12-03 11:09:46 +00:00
libgdiplus Recursive bumps for fontconfig and libzip dependency changes. 2018-03-12 11:15:24 +00:00
libggi xorgproto: use xorgproto instead of separate *proto packages 2018-03-07 11:57:28 +00:00
libggigcp Convert all occurrences (353 by my count) of 2017-01-19 18:52:01 +00:00
libggimisc Convert all occurrences (353 by my count) of 2017-01-19 18:52:01 +00:00
libggiwmh Fix indentation in buildlink3.mk files. 2018-01-07 13:03:53 +00:00
libgii graphics/*: remove redundant :Q modifiers 2018-01-14 14:58:38 +00:00
libgiigic Convert all occurrences (353 by my count) of 2017-01-19 18:52:01 +00:00
libgltf revbump after boost-libs update 2018-08-16 18:54:26 +00:00
libgnomecanvas Recursive revbump from hardbuzz-2.1.1 2018-11-12 03:51:07 +00:00
libgnomecanvasmm Recursive revbump from hardbuzz-2.1.1 2018-11-12 03:51:07 +00:00
libimagequant libimagequant: updated to 2.12.2 2018-11-02 23:03:46 +00:00
libiptcdata Import libiptcdata-1.0.4 as graphics/libiptcdata 2016-07-10 21:57:47 +00:00
libjpeg-turbo libjpeg-turbo: update to 1.5.3 2018-08-13 20:50:59 +00:00
libkdcraw revbump after boost-libs update 2018-08-16 18:54:26 +00:00
libkexiv2 revbump after boost-libs update 2018-08-16 18:54:26 +00:00
libkface revbump after boost-libs update 2018-08-16 18:54:26 +00:00
libkipi revbump after boost-libs update 2018-08-16 18:54:26 +00:00
libksane revbump after boost-libs update 2018-08-16 18:54:26 +00:00
liblqr graphics/liblqr: Remove inlines so digikam and clang are happy. 2016-06-15 18:53:33 +00:00
libmypaint graphics/libmypaint: Add missing dependencies 2018-05-02 14:39:32 +00:00
libotf Use pkg-config instead of freetype-config; should fix PR 53264. 2018-05-07 07:55:33 +00:00
libpano13 Use CMAKE_INSTALL_MANDIR. 2016-04-21 15:54:31 +00:00
libpgf Add SHA512 digests for distfiles for graphics category 2015-11-03 21:33:50 +00:00
libpuzzle Recursive bumps for fontconfig and libzip dependency changes. 2018-03-12 11:15:24 +00:00
libraw libraw: update to 0.18.8 2018-04-14 03:45:56 +00:00
libraw013 Mark packages that require C++03 (or the GNU variants) if they fail with 2018-07-18 00:06:10 +00:00
librsvg Recursive revbump from hardbuzz-2.1.1 2018-11-12 03:51:07 +00:00
libscigraphica Recursive revbump from hardbuzz-2.1.1 2018-11-12 03:51:07 +00:00
libsixel revbump after boost-libs update 2018-08-16 18:54:26 +00:00
libspiro Spiro is the creation of Raph Levien. It simplifies the drawing of beautiful 2017-05-04 19:21:35 +00:00
libv4l Change MAINTAINER to a valid address. 2018-08-05 10:54:58 +00:00
libvideogfx Mark packages that require C++03 (or the GNU variants) if they fail with 2018-07-18 00:06:10 +00:00
libwebp libwebp: update to 1.0.0. 2018-04-27 14:26:41 +00:00
libwmf graphics/libwmf: Make this build with freetype2-2.9.1 2018-05-05 12:33:00 +00:00
libxmi Add SHA512 digests for distfiles for graphics category 2015-11-03 21:33:50 +00:00
ljpeg Add SHA512 digests for distfiles for graphics category 2015-11-03 21:33:50 +00:00
luminance-hdr Recursive revbump from hardbuzz-2.1.1 2018-11-12 03:51:07 +00:00
lxde-icon-theme lx*: use consistent HOMEPAGE, follow redirect 2017-12-24 09:59:46 +00:00
magicpoint Recursive bump for perl5-5.28.0 2018-08-22 09:43:40 +00:00
mandelbulber Recursive revbump from hardbuzz-2.1.1 2018-11-12 03:51:07 +00:00
mate-backgrounds Recursive revbump from hardbuzz-2.1.1 2018-11-12 03:51:07 +00:00
mate-icon-theme Recursive revbump from hardbuzz-2.1.1 2018-11-12 03:51:07 +00:00
mate-icon-theme-faenza Recursive revbump from hardbuzz-2.1.1 2018-11-12 03:51:07 +00:00
mate-themes Recursive revbump from hardbuzz-2.1.1 2018-11-12 03:51:07 +00:00
Mesa
MesaDemos Fixed LICENSE comment. 2018-01-03 00:29:23 +00:00
MesaLib MesaLib: remove workaround for pkgsrc GCC already fixed in GCC (upstream 2018-10-10 10:54:58 +00:00
MesaLib7 Remove dependency on pthread-stublib. 2018-09-01 20:46:07 +00:00
MesaLib18 MesaLib18: Various fixes for the SunOS build. 2018-10-16 15:21:20 +00:00
metacam Add SHA512 digests for distfiles for graphics category 2015-11-03 21:33:50 +00:00
mgl mgl: Fixed pkglint warning about SUBST block. 2018-01-10 00:06:26 +00:00
mng Fix indentation in buildlink3.mk files. 2018-01-07 13:03:53 +00:00
mpeg2codec Add SHA512 digests for distfiles for graphics category 2015-11-03 21:33:50 +00:00
mpgtx graphics/*: remove redundant :Q modifiers 2018-01-14 14:58:38 +00:00
mscgen Recursive bumps for fontconfig and libzip dependency changes. 2018-03-12 11:15:24 +00:00
mypaint Recursive revbump from hardbuzz-2.1.1 2018-11-12 03:51:07 +00:00
mypaint-brushes int-brushes: shorten PKGNAME. 2018-04-30 20:57:47 +00:00
ncview revbump after boost-libs update 2018-08-16 18:54:26 +00:00
netpbm Recursive bump for perl5-5.28.0 2018-08-22 09:43:40 +00:00
Ngraph Sort PLIST files. 2018-01-01 22:29:15 +00:00
ns-cult3d Remove traces of crypto restrictions from packages. 2018-01-02 05:37:22 +00:00
numix-icon-theme Sync PLIST with reality. Bump revision. 2017-02-17 17:03:50 +00:00
numix-icon-theme-circle Sync PLIST with reality. Bump revision. 2017-02-17 17:03:50 +00:00
nvidia-texture-tools Update to nvidia-texture-tools to 2.1.0 2016-09-19 23:28:01 +00:00
nvtv Recursive revbump from hardbuzz-2.1.1 2018-11-12 03:51:07 +00:00
ocrad Add SHA512 digests for distfiles for graphics category 2015-11-03 21:33:50 +00:00
opencolorio Bump revision for yaml-cpp dependency change. Require C++11 as 2018-06-02 19:06:55 +00:00
opencsg Use OPSYSVARS. 2016-02-25 13:37:46 +00:00
opencv Recursive revbump from hardbuzz-2.1.1 2018-11-12 03:51:07 +00:00
opencv-contrib-face opencv-contrib-face: Record patch-modules_python_src2_cv2.cpp in distinfo 2018-10-25 07:08:33 +00:00
opencv2 Recursive revbump from hardbuzz-2.1.1 2018-11-12 03:51:07 +00:00
opendis Add SHA512 digests for distfiles for graphics category 2015-11-03 21:33:50 +00:00
openexr ilmbase/openexr: updated to 2.3.0 2018-10-02 12:05:35 +00:00
openimageio Recursive revbump from hardbuzz-2.1.1 2018-11-12 03:51:07 +00:00
openjpeg Fix indentation in buildlink3.mk files. 2018-01-07 13:03:53 +00:00
openjpeg15 Use CMAKE_INSTALL_MANDIR. Fixes PKGMANDIR. 2016-04-01 11:53:06 +00:00
OpenRM Recursive bump for perl5-5.28.0 2018-08-22 09:43:40 +00:00
optipng optipng: updated to 0.7.7 2018-06-27 11:52:17 +00:00
osg Recursive revbump from hardbuzz-2.1.1 2018-11-12 03:51:07 +00:00
oxygen-icons oxygen-icons: update to 5.47.0 2018-06-21 02:40:18 +00:00
p5-Barcode-Code128 Recursive bump for perl5-5.28.0 2018-08-22 09:43:40 +00:00
p5-cairo Recursive bump for perl5-5.28.0 2018-08-22 09:43:40 +00:00
p5-cairo-gobject Recursive bump for perl5-5.28.0 2018-08-22 09:43:40 +00:00
p5-Chart Recursive bump for perl5-5.28.0 2018-08-22 09:43:40 +00:00
p5-Chart-ThreeD Recursive bump for perl5-5.28.0 2018-08-22 09:43:40 +00:00
p5-clutter Recursive bump for perl5-5.28.0 2018-08-22 09:43:40 +00:00
p5-GD p5-GD: update to 2.69. 2018-08-29 05:52:58 +00:00
p5-GD-Barcode Recursive bump for perl5-5.28.0 2018-08-22 09:43:40 +00:00
p5-GD-Graph-sparklines Recursive bump for perl5-5.28.0 2018-08-22 09:43:40 +00:00
p5-GD-Graph3d Recursive bump for perl5-5.28.0 2018-08-22 09:43:40 +00:00
p5-GD-SecurityImage Recursive bump for perl5-5.28.0 2018-08-22 09:43:40 +00:00
p5-GD-SVG Recursive bump for perl5-5.28.0 2018-08-22 09:43:40 +00:00
p5-GDGraph Recursive bump for perl5-5.28.0 2018-08-22 09:43:40 +00:00
p5-GDGraph-boxplot Recursive bump for perl5-5.28.0 2018-08-22 09:43:40 +00:00
p5-GDTextUtil Recursive bump for perl5-5.28.0 2018-08-22 09:43:40 +00:00
p5-GIFgraph Recursive bump for perl5-5.28.0 2018-08-22 09:43:40 +00:00
p5-Gnome2-Canvas Recursive revbump from hardbuzz-2.1.1 2018-11-12 03:51:07 +00:00
p5-Graph-Easy Initial import of p5-Graph-Easy, which lets you generate graphs 2018-10-22 14:39:55 +00:00
p5-GraphicsMagick Recursive revbump from hardbuzz-2.1.1 2018-11-12 03:51:07 +00:00
p5-GraphViz Recursive bump for perl5-5.28.0 2018-08-22 09:43:40 +00:00
p5-GraphViz2 Recursive bump for perl5-5.28.0 2018-08-22 09:43:40 +00:00
p5-Image-BMP Recursive bump for perl5-5.28.0 2018-08-22 09:43:40 +00:00
p5-Image-ExifTool Recursive bump for perl5-5.28.0 2018-08-22 09:43:40 +00:00
p5-Image-Imlib2 Recursive bump for perl5-5.28.0 2018-08-22 09:43:40 +00:00
p5-Image-Info Recursive bump for perl5-5.28.0 2018-08-22 09:43:40 +00:00
p5-Image-JpegTran-AutoRotate Recursive bump for perl5-5.28.0 2018-08-22 09:43:40 +00:00
p5-Image-Size Recursive bump for perl5-5.28.0 2018-08-22 09:43:40 +00:00
p5-PerlMagick Recursive revbump from hardbuzz-2.1.1 2018-11-12 03:51:07 +00:00
p5-RRDTool-OO Recursive bump for perl5-5.28.0 2018-08-22 09:43:40 +00:00
p5-SVG Recursive bump for perl5-5.28.0 2018-08-22 09:43:40 +00:00
p5-SVG-Graph Recursive bump for perl5-5.28.0 2018-08-22 09:43:40 +00:00
p5-SWF-File Recursive bump for perl5-5.28.0 2018-08-22 09:43:40 +00:00
p5-Template-GD Recursive bump for perl5-5.28.0 2018-08-22 09:43:40 +00:00
panomatic Add SHA512 digests for distfiles for graphics category 2015-11-03 21:33:50 +00:00
PanoTools PanoTools: use sourceforge page, other page vanished 2018-02-11 15:50:12 +00:00
paper-icon-theme Recursive revbump from hardbuzz-2.1.1 2018-11-12 03:51:07 +00:00
pdiff Add SHA512 digests for distfiles for graphics category 2015-11-03 21:33:50 +00:00
pear-Image_Canvas Add SHA512 digests for distfiles for graphics category 2015-11-03 21:33:50 +00:00
pear-Image_Color Add SHA512 digests for distfiles for graphics category 2015-11-03 21:33:50 +00:00
pear-Image_Graph Add SHA512 digests for distfiles for graphics category 2015-11-03 21:33:50 +00:00
pfstools Recursive revbump from hardbuzz-2.1.1 2018-11-12 03:51:07 +00:00
pgraf Extend SHA512 checksums to various files I have on my local distfile 2017-03-23 17:06:45 +00:00
photopc Sort PLIST files. 2018-01-01 22:29:15 +00:00
php-exif
php-gd pkgsrc: Reset PKGREVISION of archivers/php-zip and graphics/php-gd 2018-03-30 00:39:21 +00:00
php-imagick Recursive revbump from hardbuzz-2.1.1 2018-11-12 03:51:07 +00:00
php-jpgraph Sort PLIST files. 2018-01-01 22:29:15 +00:00
pixmap Add SHA512 digests for distfiles for graphics category 2015-11-03 21:33:50 +00:00
ploticus Recursive bumps for fontconfig and libzip dependency changes. 2018-03-12 11:15:24 +00:00
ploticus-examples *: gd.tuwien.ac.at/ftp.tuwien.ac.at is gone, remove it from various mastersites 2018-04-21 13:38:04 +00:00
plotmtv Add SHA512 digests for distfiles for graphics category 2015-11-03 21:33:50 +00:00
plotutils Fix indentation in buildlink3.mk files. 2018-01-07 13:03:53 +00:00
png png: updated to 1.6.35 2018-08-02 15:01:12 +00:00
png2html Recursive bumps for fontconfig and libzip dependency changes. 2018-03-12 11:15:24 +00:00
pngcheck Add SHA512 digests for distfiles for graphics category 2015-11-03 21:33:50 +00:00
pngcrush pngcrush: updated to 1.8.13 2018-08-02 15:02:12 +00:00
pngquant graphics/pngquant: Import pngquant 2.12.0. 2018-06-24 12:00:22 +00:00
potrace Update potrace to 1.15. 2018-11-08 14:40:20 +00:00
povray graphics/*: remove redundant :Q modifiers 2018-01-14 14:58:38 +00:00
prag Add SHA512 digests for distfiles for graphics category 2015-11-03 21:33:50 +00:00
prison Recursive revbump from hardbuzz-2.1.1 2018-11-12 03:51:07 +00:00
ps2eps Recursive bump for perl5-5.28.0 2018-08-22 09:43:40 +00:00
pstoedit Recursive revbump from hardbuzz-2.1.1 2018-11-12 03:51:07 +00:00
ptex Add missing header. 2017-02-15 00:54:50 +00:00
py-aafigure py-aafigure: updated to 0.6 2018-01-04 21:07:12 +00:00
py-actdiag Comment out dead MASTER_SITES/HOMEPAGEs. 2017-09-03 08:36:49 +00:00
py-altgraph py-altgraph: updated to 0.16.1 2018-08-07 06:18:53 +00:00
py-biggles extend PYTHON_VERSIONS_ for Python 3.7 2018-07-03 05:03:01 +00:00
py-blockdiag py-blockdiag: updated to 1.5.4 2018-08-05 12:40:53 +00:00
py-brewer2mpl Extend SHA512 checksums to various files I have on my local distfile 2017-03-23 17:06:45 +00:00
py-cairo py-cairo: update to 1.17.1. 2018-08-16 12:32:58 +00:00
py-cairocffi py-cairocffi: Update to 0.9.0. 2018-11-12 14:35:23 +00:00
py-chart extend PYTHON_VERSIONS_ for Python 3.7 2018-07-03 05:03:01 +00:00
py-cycler To fix the duplication, keep the graphics/ version of py-cycler akin to 2016-08-18 11:51:45 +00:00
py-dot py-dot: updated to 1.2.4 2018-01-14 11:30:46 +00:00
py-exifread py-exifread: added version 2.1.2 2018-03-05 14:04:33 +00:00
py-fits py-fits: updated to 3.5 2018-10-07 08:51:42 +00:00
py-gdchart extend PYTHON_VERSIONS_ for Python 3.7 2018-07-03 05:03:01 +00:00
py-gdmodule extend PYTHON_VERSIONS_ for Python 3.7 2018-07-03 05:03:01 +00:00
py-ggplot Comment out dead sites. 2017-09-04 18:00:49 +00:00
py-gnuplot extend PYTHON_VERSIONS_ for Python 3.7 2018-07-03 05:03:01 +00:00
py-goocanvas Recursive revbump from hardbuzz-2.1.1 2018-11-12 03:51:07 +00:00
py-graphviz py-graphviz: updated to 0.9 2018-10-11 10:14:47 +00:00
py-gtkglext Recursive revbump from hardbuzz-2.1.1 2018-11-12 03:51:07 +00:00
py-imageio Add py-imageio 2.3.0 2018-07-31 11:03:57 +00:00
py-imagesize py-imagesize: updated to 1.1.0 2018-10-16 08:54:50 +00:00
py-imaging extend PYTHON_VERSIONS_ for Python 3.7 2018-07-03 05:03:01 +00:00
py-imagingtk extend PYTHON_VERSIONS_ for Python 3.7 2018-07-03 05:03:01 +00:00
py-matplotlib py-matplotlib: fix PR 53425 2018-07-11 16:19:32 +00:00
py-matplotlib-gtk2 Recursive revbump from hardbuzz-2.1.1 2018-11-12 03:51:07 +00:00
py-matplotlib-tk py-matplotlib: fix PR 53425 2018-07-11 16:19:32 +00:00
py-mcomix extend PYTHON_VERSIONS_ for Python 3.7 2018-07-03 05:03:01 +00:00
py-nwdiag Comment out dead sites. 2017-09-04 18:00:49 +00:00
py-objgraph objgraph: added version 3.4.0 2018-08-19 09:40:37 +00:00
py-openexr py-openexr: Fix build on SunOS. 2018-10-26 12:45:47 +00:00
py-OpenGL Switch from py-Numeric to py-numpy and remove Python-3.x conflict 2016-08-21 01:32:45 +00:00
py-piddle extend PYTHON_VERSIONS_ for Python 3.7 2018-07-03 05:03:01 +00:00
py-piexif 1.0.13: 2017-09-11 05:18:51 +00:00
py-Pillow py-Pillow: updated to 5.3.0 2018-10-02 09:10:46 +00:00
py-pycha extend PYTHON_VERSIONS_ for Python 3.7 2018-07-03 05:03:01 +00:00
py-pygal Reset maintainer 2017-09-16 19:26:41 +00:00
py-pygraphviz py-pygraphviz: updated to 1.5 2018-10-11 10:11:31 +00:00
py-qrcode py-qrcode: updated to 6.0 2018-10-07 08:55:13 +00:00
py-seaborn Now DEPENDS on py-matplotlib rather than buildlinking 2018-01-30 10:04:00 +00:00
py-seqdiag py-seqdiag: updated to 0.9.6 2018-08-19 11:23:51 +00:00
py-sk1libs extend PYTHON_VERSIONS_ for Python 3.7 2018-07-03 05:03:01 +00:00
py-strich py-strich: follow redirect 2017-10-23 13:42:17 +00:00
py-uniconvertor extend PYTHON_VERSIONS_ for Python 3.7 2018-07-03 05:03:01 +00:00
qcomicbook Recursive bumps for fontconfig and libzip dependency changes. 2018-03-12 11:15:24 +00:00
qimageblitz Recursive bumps for fontconfig and libzip dependency changes. 2018-03-12 11:15:24 +00:00
qiv Recursive revbump from hardbuzz-2.1.1 2018-11-12 03:51:07 +00:00
qiviewer Recursive bumps for fontconfig and libzip dependency changes. 2018-03-12 11:15:24 +00:00
qore-glut-module Revbump after lang/qore module api update 2018-06-08 20:49:41 +00:00
qore-opengl-module Revbump after lang/qore module api update 2018-06-08 20:49:41 +00:00
quesoglc Recursive bumps for fontconfig and libzip dependency changes. 2018-03-12 11:15:24 +00:00
qvplay Sort PLIST files. 2018-01-01 22:29:15 +00:00
R-Cairo Needs libXt and pkg-config to build. 2018-07-18 00:07:51 +00:00
R-colorspace Remove MASTER_SITES= from individual R package Makefiles. 2018-07-28 14:40:42 +00:00
R-dichromat Remove MASTER_SITES= from individual R package Makefiles. 2018-07-28 14:40:42 +00:00
R-ggplot2 Remove MASTER_SITES= from individual R package Makefiles. 2018-07-28 14:40:42 +00:00
R-gridExtra graphics/R-gridExtra: Import version 2.3 2018-05-01 16:05:57 +00:00
R-labeling Remove MASTER_SITES= from individual R package Makefiles. 2018-07-28 14:40:42 +00:00
R-latticeExtra Remove MASTER_SITES= from individual R package Makefiles. 2018-07-28 14:40:42 +00:00
R-munsell Remove MASTER_SITES= from individual R package Makefiles. 2018-07-28 14:40:42 +00:00
R-scales Remove MASTER_SITES= from individual R package Makefiles. 2018-07-28 14:40:42 +00:00
R-viridisLite Remove MASTER_SITES= from individual R package Makefiles. 2018-07-28 14:40:42 +00:00
rabbit graphics/rabbit: update to 2.2.1 2017-09-18 05:31:02 +00:00
radiance Recursive bumps for fontconfig and libzip dependency changes. 2018-03-12 11:15:24 +00:00
rawtherapee Recursive revbump from hardbuzz-2.1.1 2018-11-12 03:51:07 +00:00
rayshade Sort PLIST files. 2018-01-01 22:29:15 +00:00
refocus-it Add SHA512 digests for distfiles for graphics category 2015-11-03 21:33:50 +00:00
resize_image Comment out dead sites. 2017-09-04 18:00:49 +00:00
ristretto Recursive revbump from hardbuzz-2.1.1 2018-11-12 03:51:07 +00:00
ruby-cairo ruby-cairo: update to 1.16.2. 2018-11-01 14:10:37 +00:00
ruby-chunky_png graphics/ruby-chunky_png: update to 1.3.10 2018-03-14 14:36:03 +00:00
ruby-color Update ruby-color to 1.8. 2015-12-02 14:28:40 +00:00
ruby-color-japanese Comment out dead sites. 2017-09-04 18:00:49 +00:00
ruby-color-tools Add SHA512 digests for distfiles for graphics category 2015-11-03 21:33:50 +00:00
ruby-gd Recursive bumps for fontconfig and libzip dependency changes. 2018-03-12 11:15:24 +00:00
ruby-gnome2-cairo-gobject ruby-gnome2: update to 3.3.0. 2018-11-01 14:22:58 +00:00
ruby-gnome2-clutter Recursive revbump from hardbuzz-2.1.1 2018-11-12 03:51:07 +00:00
ruby-gnome2-clutter-gdk Recursive revbump from hardbuzz-2.1.1 2018-11-12 03:51:07 +00:00
ruby-gnome2-clutter-gtk Recursive revbump from hardbuzz-2.1.1 2018-11-12 03:51:07 +00:00
ruby-gnome2-gdk3 Recursive revbump from hardbuzz-2.1.1 2018-11-12 03:51:07 +00:00
ruby-gnome2-gdkpixbuf ruby-gnome2: update to 3.3.0. 2018-11-01 14:22:58 +00:00
ruby-gnome2-rsvg Recursive revbump from hardbuzz-2.1.1 2018-11-12 03:51:07 +00:00
ruby-gnuplot Add SHA512 digests for distfiles for graphics category 2015-11-03 21:33:50 +00:00
ruby-imlib2 Comment out dead sites. 2017-09-04 18:00:49 +00:00
ruby-mini-magick graphics/ruby-mini-magick: update to 4.9.2 2018-09-23 15:28:23 +00:00
ruby-oily_png Update ruby-oily_png to 1.2.1. 2016-10-15 13:55:10 +00:00
ruby-opengl graphics/*: remove redundant :Q modifiers 2018-01-14 14:58:38 +00:00
ruby-RMagick Recursive revbump from hardbuzz-2.1.1 2018-11-12 03:51:07 +00:00
s10sh *: reset maintainer for drochner 2018-08-19 20:16:39 +00:00
sane-backends sane-backends: Handle nls correctly. 2018-05-15 14:58:08 +00:00
sane-frontends Recursive revbump from hardbuzz-2.1.1 2018-11-12 03:51:07 +00:00
scidavis Recursive bumps for fontconfig and libzip dependency changes. 2018-03-12 11:15:24 +00:00
scigraphica Recursive revbump from hardbuzz-2.1.1 2018-11-12 03:51:07 +00:00
scrot Comment out dead sites. 2017-09-04 18:00:49 +00:00
SDL2_image SDL2_image: updated to 2.0.4 2018-11-01 21:10:22 +00:00
SDL_image Fix indentation in buildlink3.mk files. 2018-01-07 13:03:53 +00:00
shotwell Recursive revbump from hardbuzz-2.1.1 2018-11-12 03:51:07 +00:00
silgraphite Mark packages that require C++03 (or the GNU variants) if they fail with 2018-07-18 00:06:10 +00:00
silgraphite-ft Add SHA512 digests for distfiles for graphics category 2015-11-03 21:33:50 +00:00
silgraphite-xft Recursive bumps for fontconfig and libzip dependency changes. 2018-03-12 11:15:24 +00:00
simage Add SHA512 digests for distfiles for graphics category 2015-11-03 21:33:50 +00:00
skencil extend PYTHON_VERSIONS_ for Python 3.7 2018-07-03 05:03:01 +00:00
slim-themes Fix date format, noted by jmcneill@. 2018-06-03 22:12:13 +00:00
spcaview Comment out dead sites. 2017-09-04 18:00:49 +00:00
svgpart revbump after boost-libs update 2018-08-16 18:54:26 +00:00
sxiv Recursive bumps for fontconfig and libzip dependency changes. 2018-03-12 11:15:24 +00:00
tango-icon-theme Recursive revbump from hardbuzz-2.1.1 2018-11-12 03:51:07 +00:00
tesseract Recursive revbump from hardbuzz-2.1.1 2018-11-12 03:51:07 +00:00
tex-a2ping Recursive bump for perl5-5.28.0 2018-08-22 09:43:40 +00:00
tex-a2ping-doc tex-a2ping{,-doc}: update to 2.83p 2018-05-02 11:15:20 +00:00
tex-animate tex-animate{,-doc}: update to 20180228 2018-05-02 11:55:54 +00:00
tex-animate-doc tex-animate{,-doc}: update to 20180228 2018-05-02 11:55:54 +00:00
tex-asyfig Add LICENSE 2016-01-30 04:05:49 +00:00
tex-asyfig-doc Add LICENSE 2016-01-30 04:05:49 +00:00
tex-auto-pst-pdf Add SHA512 digests for distfiles for graphics category 2015-11-03 21:33:50 +00:00
tex-auto-pst-pdf-doc Add SHA512 digests for distfiles for graphics category 2015-11-03 21:33:50 +00:00
tex-automata Add SHA512 digests for distfiles for graphics category 2015-11-03 21:33:50 +00:00
tex-automata-doc Add SHA512 digests for distfiles for graphics category 2015-11-03 21:33:50 +00:00
tex-bbcard Add SHA512 digests for distfiles for graphics category 2015-11-03 21:33:50 +00:00
tex-bbcard-doc Add SHA512 digests for distfiles for graphics category 2015-11-03 21:33:50 +00:00
tex-bclogo Updated to TexLive 2016: 2016-06-16 04:00:45 +00:00
tex-bclogo-doc Updated to TexLive 2016: 2016-06-16 04:00:45 +00:00
tex-blockdraw_mp Add SHA512 digests for distfiles for graphics category 2015-11-03 21:33:50 +00:00
tex-blockdraw_mp-doc Add SHA512 digests for distfiles for graphics category 2015-11-03 21:33:50 +00:00
tex-bpolynomial Add SHA512 digests for distfiles for graphics category 2015-11-03 21:33:50 +00:00
tex-bpolynomial-doc Add SHA512 digests for distfiles for graphics category 2015-11-03 21:33:50 +00:00
tex-circuitikz Update to TeXlive 2017 2017-06-20 22:07:24 +00:00
tex-circuitikz-doc Update to TeXlive 2017 2017-06-20 22:07:24 +00:00
tex-cmarrows Add SHA512 digests for distfiles for graphics category 2015-11-03 21:33:50 +00:00
tex-cmarrows-doc Add SHA512 digests for distfiles for graphics category 2015-11-03 21:33:50 +00:00
tex-drv Add SHA512 digests for distfiles for graphics category 2015-11-03 21:33:50 +00:00
tex-drv-doc Add SHA512 digests for distfiles for graphics category 2015-11-03 21:33:50 +00:00
tex-dviincl Add SHA512 digests for distfiles for graphics category 2015-11-03 21:33:50 +00:00
tex-dviincl-doc Add SHA512 digests for distfiles for graphics category 2015-11-03 21:33:50 +00:00
tex-dvipng-doc Add LICENSE 2016-01-30 04:05:49 +00:00
tex-eepic Remove teTeX* packages and references to them. 2017-09-06 16:49:21 +00:00
tex-eepic-doc Remove teTeX* packages and references to them. 2017-09-06 16:49:21 +00:00
tex-ellipse Add tex-ellipse{,-doc} 1.0 2017-01-20 21:07:40 +00:00
tex-ellipse-doc Add tex-ellipse{,-doc} 1.0 2017-01-20 21:07:40 +00:00
tex-emp Add SHA512 digests for distfiles for graphics category 2015-11-03 21:33:50 +00:00
tex-emp-doc Add SHA512 digests for distfiles for graphics category 2015-11-03 21:33:50 +00:00
tex-epsincl Add SHA512 digests for distfiles for graphics category 2015-11-03 21:33:50 +00:00
tex-epsincl-doc Add SHA512 digests for distfiles for graphics category 2015-11-03 21:33:50 +00:00
tex-epstopdf Recursive bump for perl5-5.28.0 2018-08-22 09:43:40 +00:00
tex-epstopdf-doc tex-epstopdf{,-doc}: update to 2.27 2017-10-23 01:31:30 +00:00
tex-expressg Add SHA512 digests for distfiles for graphics category 2015-11-03 21:33:50 +00:00
tex-expressg-doc Add SHA512 digests for distfiles for graphics category 2015-11-03 21:33:50 +00:00
tex-exteps Add SHA512 digests for distfiles for graphics category 2015-11-03 21:33:50 +00:00
tex-exteps-doc Add SHA512 digests for distfiles for graphics category 2015-11-03 21:33:50 +00:00
tex-featpost Add SHA512 digests for distfiles for graphics category 2015-11-03 21:33:50 +00:00
tex-featpost-doc Add SHA512 digests for distfiles for graphics category 2015-11-03 21:33:50 +00:00
tex-feynmf Add SHA512 digests for distfiles for graphics category 2015-11-03 21:33:50 +00:00
tex-feynmf-doc Add SHA512 digests for distfiles for graphics category 2015-11-03 21:33:50 +00:00
tex-feynmp-auto Add SHA512 digests for distfiles for graphics category 2015-11-03 21:33:50 +00:00
tex-feynmp-auto-doc Add SHA512 digests for distfiles for graphics category 2015-11-03 21:33:50 +00:00
tex-garrigues Add SHA512 digests for distfiles for graphics category 2015-11-03 21:33:50 +00:00
tex-garrigues-doc Add SHA512 digests for distfiles for graphics category 2015-11-03 21:33:50 +00:00
tex-gmp Add SHA512 digests for distfiles for graphics category 2015-11-03 21:33:50 +00:00
tex-gmp-doc Add SHA512 digests for distfiles for graphics category 2015-11-03 21:33:50 +00:00
tex-graphics-pln tex-graphics-pln{,-doc}: update to 2018 2018-05-06 04:12:47 +00:00
tex-graphics-pln-doc tex-graphics-pln{,-doc}: update to 2018 2018-05-06 04:12:47 +00:00
tex-hatching Add SHA512 digests for distfiles for graphics category 2015-11-03 21:33:50 +00:00
tex-hatching-doc Add SHA512 digests for distfiles for graphics category 2015-11-03 21:33:50 +00:00
tex-incgraph Add tex-incgraph{,-doc} 1.12 2017-01-20 21:09:07 +00:00
tex-incgraph-doc Add tex-incgraph{,-doc} 1.12 2017-01-20 21:09:07 +00:00
tex-latexmp Add SHA512 digests for distfiles for graphics category 2015-11-03 21:33:50 +00:00
tex-latexmp-doc Add SHA512 digests for distfiles for graphics category 2015-11-03 21:33:50 +00:00
tex-mcf2graph tex-mcf2graph{,-doc}: update to 4.30 2018-05-12 00:55:54 +00:00
tex-mcf2graph-doc tex-mcf2graph{,-doc}: update to 4.30 2018-05-12 00:55:54 +00:00
tex-metago Add SHA512 digests for distfiles for graphics category 2015-11-03 21:33:50 +00:00
tex-metago-doc Add SHA512 digests for distfiles for graphics category 2015-11-03 21:33:50 +00:00
tex-metaobj Add SHA512 digests for distfiles for graphics category 2015-11-03 21:33:50 +00:00
tex-metaobj-doc Add SHA512 digests for distfiles for graphics category 2015-11-03 21:33:50 +00:00
tex-metaplot Add SHA512 digests for distfiles for graphics category 2015-11-03 21:33:50 +00:00
tex-metaplot-doc Add SHA512 digests for distfiles for graphics category 2015-11-03 21:33:50 +00:00
tex-metapost Remove teTeX* packages and references to them. 2017-09-06 16:49:21 +00:00
tex-metapost-doc Sort PLIST files. 2018-01-01 22:29:15 +00:00
tex-metauml Add SHA512 digests for distfiles for graphics category 2015-11-03 21:33:50 +00:00
tex-metauml-doc Add SHA512 digests for distfiles for graphics category 2015-11-03 21:33:50 +00:00
tex-mfpic Add SHA512 digests for distfiles for graphics category 2015-11-03 21:33:50 +00:00
tex-mfpic-doc Add SHA512 digests for distfiles for graphics category 2015-11-03 21:33:50 +00:00
tex-mfpic4ode Add SHA512 digests for distfiles for graphics category 2015-11-03 21:33:50 +00:00
tex-mfpic4ode-doc Add SHA512 digests for distfiles for graphics category 2015-11-03 21:33:50 +00:00
tex-mp3d Add SHA512 digests for distfiles for graphics category 2015-11-03 21:33:50 +00:00
tex-mp3d-doc Add SHA512 digests for distfiles for graphics category 2015-11-03 21:33:50 +00:00
tex-mparrows Add tex-mparrows{,-doc} 0.1 2017-01-20 23:06:05 +00:00
tex-mparrows-doc Add tex-mparrows{,-doc} 0.1 2017-01-20 23:06:05 +00:00
tex-mpattern Add SHA512 digests for distfiles for graphics category 2015-11-03 21:33:50 +00:00
tex-mpattern-doc Add SHA512 digests for distfiles for graphics category 2015-11-03 21:33:50 +00:00
tex-mpcolornames Add SHA512 digests for distfiles for graphics category 2015-11-03 21:33:50 +00:00
tex-mpcolornames-doc Add SHA512 digests for distfiles for graphics category 2015-11-03 21:33:50 +00:00
tex-mpgraphics Add SHA512 digests for distfiles for graphics category 2015-11-03 21:33:50 +00:00
tex-mpgraphics-doc Add SHA512 digests for distfiles for graphics category 2015-11-03 21:33:50 +00:00
tex-mptopdf tex-mptopdf: fix TEX_FORMATS 2018-06-03 01:32:23 +00:00
tex-mptopdf-doc tex-mptopdf*: update HOMEPAGE 2017-09-24 14:35:08 +00:00
tex-mptrees Add tex-mptrees{,-doc} 17.06 2017-06-24 00:10:08 +00:00
tex-mptrees-doc Add tex-mptrees{,-doc} 17.06 2017-06-24 00:10:08 +00:00
tex-pdfcrop Recursive bump for perl5-5.28.0 2018-08-22 09:43:40 +00:00
tex-pdfcrop-doc Add LICENSE 2016-01-30 04:05:49 +00:00
tex-pgfgantt tex-pgfgantt{,-doc}: update to 5.0 2018-04-25 11:13:06 +00:00
tex-pgfgantt-doc tex-pgfgantt{,-doc}: update to 5.0 2018-04-25 11:13:06 +00:00
tex-pictex Add SHA512 digests for distfiles for graphics category 2015-11-03 21:33:50 +00:00
tex-pictex-doc Add SHA512 digests for distfiles for graphics category 2015-11-03 21:33:50 +00:00
tex-piechartmp Add SHA512 digests for distfiles for graphics category 2015-11-03 21:33:50 +00:00
tex-piechartmp-doc Add SHA512 digests for distfiles for graphics category 2015-11-03 21:33:50 +00:00
tex-psgo Add LICENSE 2016-01-30 04:05:49 +00:00
tex-psgo-doc Add LICENSE 2016-01-30 04:05:49 +00:00
tex-pst-2dplot Add LICENSE 2016-01-30 04:05:49 +00:00
tex-pst-2dplot-doc Add LICENSE 2016-01-30 04:05:49 +00:00
tex-pst-3d Add LICENSE 2016-01-30 04:05:49 +00:00
tex-pst-3d-doc Add LICENSE 2016-01-30 04:05:49 +00:00
tex-pst-3dplot Update to TeXlive 2017 2017-06-21 11:45:57 +00:00
tex-pst-3dplot-doc Update to TeXlive 2017 2017-06-21 11:45:57 +00:00
tex-pst-barcode tex-pst-barcode{,-doc}: update to 0.18 2017-10-16 10:35:44 +00:00
tex-pst-barcode-doc tex-pst-barcode-doc: fix PLIST 2018-01-30 06:32:20 +00:00
tex-pst-blur Add LICENSE 2016-01-30 04:05:49 +00:00
tex-pst-blur-doc Add LICENSE 2016-01-30 04:05:49 +00:00
tex-pst-circ tex-pst-circ{,-doc}: update to 2.15 2018-05-12 01:28:19 +00:00
tex-pst-circ-doc tex-pst-circ{,-doc}: update to 2.15 2018-05-12 01:28:19 +00:00
tex-pst-coil Add SHA512 digests for distfiles for graphics category 2015-11-03 21:33:50 +00:00
tex-pst-coil-doc Add SHA512 digests for distfiles for graphics category 2015-11-03 21:33:50 +00:00
tex-pst-eps Add LICENSE 2016-01-30 04:05:49 +00:00
tex-pst-eps-doc Add LICENSE 2016-01-30 04:05:49 +00:00
tex-pst-fill Add LICENSE 2016-01-30 04:05:49 +00:00
tex-pst-fill-doc Add LICENSE 2016-01-30 04:05:49 +00:00
tex-pst-ghsb Add SHA512 digests for distfiles for graphics category 2015-11-03 21:33:50 +00:00
tex-pst-ghsb-doc Add SHA512 digests for distfiles for graphics category 2015-11-03 21:33:50 +00:00
tex-pst-gr3d Add LICENSE 2016-01-30 04:05:49 +00:00
tex-pst-gr3d-doc Add LICENSE 2016-01-30 04:05:49 +00:00
tex-pst-grad Add LICENSE 2016-01-30 04:05:49 +00:00
tex-pst-grad-doc Add LICENSE 2016-01-30 04:05:49 +00:00
tex-pst-lens Add LICENSE 2016-01-30 04:05:49 +00:00
tex-pst-lens-doc Add LICENSE 2016-01-30 04:05:49 +00:00
tex-pst-math Add LICENSE 2016-01-30 04:05:49 +00:00
tex-pst-math-doc Add LICENSE 2016-01-30 04:05:49 +00:00
tex-pst-node tex-pst-node{,-doc}: update to 1.41 2018-05-12 01:31:05 +00:00
tex-pst-node-doc tex-pst-node{,-doc}: update to 1.41 2018-05-12 01:31:05 +00:00
tex-pst-osci Add LICENSE 2016-01-30 04:05:49 +00:00
tex-pst-osci-doc Add LICENSE 2016-01-30 04:05:49 +00:00
tex-pst-ovl tex-pst-ovl{,-doc}: update to 0.07a 2017-10-23 09:31:34 +00:00
tex-pst-ovl-doc tex-pst-ovl{,-doc}: update to 0.07a 2017-10-23 09:31:34 +00:00
tex-pst-pdf Update tex-pst-pdf{,-doc} to 1.2d 2017-08-23 23:51:35 +00:00
tex-pst-pdf-doc Update tex-pst-pdf{,-doc} to 1.2d 2017-08-23 23:51:35 +00:00
tex-pst-plot tex-pst-plot{,-doc}: update to 1.90 2018-05-12 01:35:38 +00:00
tex-pst-plot-doc tex-pst-plot{,-doc}: update to 1.90 2018-05-12 01:35:38 +00:00
tex-pst-poly Add LICENSE 2016-01-30 04:05:49 +00:00
tex-pst-poly-doc Add LICENSE 2016-01-30 04:05:49 +00:00
tex-pst-slpe Add LICENSE 2016-01-30 04:05:49 +00:00
tex-pst-slpe-doc Add LICENSE 2016-01-30 04:05:49 +00:00
tex-pst-text Add LICENSE 2016-01-30 04:05:49 +00:00
tex-pst-text-doc Add LICENSE 2016-01-30 04:05:49 +00:00
tex-pst-tools tex-pst-tools{,-doc}: update to 0.9b 2018-05-12 01:38:07 +00:00
tex-pst-tools-doc tex-pst-tools{,-doc}: update to 0.9b 2018-05-12 01:38:07 +00:00
tex-pst-tree Update to TeXlive 2017 2017-06-21 11:45:57 +00:00
tex-pst-tree-doc Update to TeXlive 2017 2017-06-21 11:45:57 +00:00
tex-pst-vue3d Add LICENSE 2016-01-30 04:05:49 +00:00
tex-pst-vue3d-doc Add LICENSE 2016-01-30 04:05:49 +00:00
tex-pstools Add SHA512 digests for distfiles for graphics category 2015-11-03 21:33:50 +00:00
tex-pstools-doc Add SHA512 digests for distfiles for graphics category 2015-11-03 21:33:50 +00:00
tex-pstricks tex-pstricks{,-doc}: update to 2.82 2018-05-12 01:47:08 +00:00
tex-pstricks-add tex-pstricks-add{,-doc}: update to 3.85a 2018-05-12 01:43:55 +00:00
tex-pstricks-add-doc tex-pstricks-add{,-doc}: update to 3.85a 2018-05-12 01:43:55 +00:00
tex-pstricks-doc tex-pstricks{,-doc}: update to 2.82 2018-05-12 01:47:08 +00:00
tex-repere tex-repere{,-doc}: update to 17.11.2 2018-05-08 11:07:21 +00:00
tex-repere-doc tex-repere{,-doc}: update to 17.11.2 2018-05-08 11:07:21 +00:00
tex-roex Comment out dead sites. 2017-09-06 10:40:25 +00:00
tex-roundrect Updated to TexLive 2016: 2016-06-16 04:00:45 +00:00
tex-roundrect-doc Updated to TexLive 2016: 2016-06-16 04:00:45 +00:00
tex-shapes Updated to TexLive 2016: 2016-06-16 04:00:45 +00:00
tex-shapes-doc Updated to TexLive 2016: 2016-06-16 04:00:45 +00:00
tex-slideshow Add SHA512 digests for distfiles for graphics category 2015-11-03 21:33:50 +00:00
tex-slideshow-doc Add SHA512 digests for distfiles for graphics category 2015-11-03 21:33:50 +00:00
tex-splines Add SHA512 digests for distfiles for graphics category 2015-11-03 21:33:50 +00:00
tex-splines-doc Add SHA512 digests for distfiles for graphics category 2015-11-03 21:33:50 +00:00
tex-suanpan Add SHA512 digests for distfiles for graphics category 2015-11-03 21:33:50 +00:00
tex-suanpan-doc Add SHA512 digests for distfiles for graphics category 2015-11-03 21:33:50 +00:00
tex-tex-ps Remove teTeX* packages and references to them. 2017-09-06 16:49:21 +00:00
tex-tex-ps-doc Remove teTeX* packages and references to them. 2017-09-06 16:49:21 +00:00
tex-texdraw Remove teTeX* packages and references to them. 2017-09-06 16:49:21 +00:00
tex-texdraw-doc Add tex-texdraw 2.0 2016-09-20 12:37:25 +00:00
tex-textpath Add SHA512 digests for distfiles for graphics category 2015-11-03 21:33:50 +00:00
tex-textpath-doc Add SHA512 digests for distfiles for graphics category 2015-11-03 21:33:50 +00:00
tex-threeddice Add SHA512 digests for distfiles for graphics category 2015-11-03 21:33:50 +00:00
tex-threeddice-doc Add SHA512 digests for distfiles for graphics category 2015-11-03 21:33:50 +00:00
tex-tikz-3dplot Add: 2016-01-04 01:40:36 +00:00
tex-tikz-3dplot-doc Add: 2016-01-04 01:40:36 +00:00
tex-tikz-cd Add tex-pgfgantt{,-doc} 4.0 - Draw Gantt charts with TikZ 2016-04-23 22:32:02 +00:00
tex-tikz-cd-doc Add tex-pgfgantt{,-doc} 4.0 - Draw Gantt charts with TikZ 2016-04-23 22:32:02 +00:00
tex-tikzinclude Add: 2016-01-04 01:40:36 +00:00
tex-tikzinclude-doc Add: 2016-01-04 01:40:36 +00:00
tex-tikzmark Update to TeXlive 2017 2017-06-21 13:25:31 +00:00
tex-tikzmark-doc Update to TeXlive 2017 2017-06-21 13:25:31 +00:00
tex-tikzorbital Add: 2016-01-04 01:40:36 +00:00
tex-tikzorbital-doc Add: 2016-01-04 01:40:36 +00:00
tex-tikzpagenodes Add: 2016-01-04 01:40:36 +00:00
tex-tikzpagenodes-doc Add: 2016-01-04 01:40:36 +00:00
tex-tikzpfeile Add: 2016-01-04 01:40:36 +00:00
tex-tikzpfeile-doc Add: 2016-01-04 01:40:36 +00:00
tex-tikzposter Add SHA512 digests for distfiles for graphics category 2015-11-03 21:33:50 +00:00
tex-tikzposter-doc Add SHA512 digests for distfiles for graphics category 2015-11-03 21:33:50 +00:00
tex-tikzscale Add: 2016-01-04 01:40:36 +00:00
tex-tikzscale-doc Add: 2016-01-04 01:40:36 +00:00
tex-tikzsymbols tex-tikzsymbols{,-doc}: update to 4.07 2017-10-21 03:42:58 +00:00
tex-tikzsymbols-doc tex-tikzsymbols{,-doc}: update to 4.07 2017-10-21 03:42:58 +00:00
tex-tkz-base tex-tkz-base: add tex-numprint dependency 2017-10-15 20:32:28 +00:00
tex-tkz-base-doc tex-tkz-base{,-doc}: Add version 1.16 2017-10-15 20:16:52 +00:00
tex-tkz-fct tex-tkz-fct{,-doc}: Add version 1.16c 2017-10-15 20:22:09 +00:00
tex-tkz-fct-doc tex-tkz-fct{,-doc}: Add version 1.16c 2017-10-15 20:22:09 +00:00
tex-venndiagram Add tex-venndiagram{,-doc} 1.1 2017-08-24 02:21:17 +00:00
tex-venndiagram-doc Add tex-venndiagram{,-doc} 1.1 2017-08-24 02:21:17 +00:00
tex-xypic Remove teTeX* packages and references to them. 2017-09-06 16:49:21 +00:00
tex-xypic-doc Remove teTeX* packages and references to them. 2017-09-06 16:49:21 +00:00
tgif Add SHA512 digests for distfiles for graphics category 2015-11-03 21:33:50 +00:00
tiff tiff: update to 4.0.10 2018-11-10 21:14:53 +00:00
tkpiechart *: Move SUBST_STAGE from post-patch to pre-configure 2018-07-04 13:40:07 +00:00
tuxpaint Recursive revbump from hardbuzz-2.1.1 2018-11-12 03:51:07 +00:00
tuxpaint-config tuxpaint-config: update to 0.0.14. 2018-09-02 12:55:25 +00:00
tuxpaint-stamps tuxpaint-stamps: update to 2018.09.01. 2018-09-02 13:00:55 +00:00
ucview Recursive revbump from hardbuzz-2.1.1 2018-11-12 03:51:07 +00:00
unicap Recursive revbump from hardbuzz-2.1.1 2018-11-12 03:51:07 +00:00
urt graphics/*: remove redundant :Q modifiers 2018-01-14 14:58:38 +00:00
vcg Add SHA512 digests for distfiles for graphics category 2015-11-03 21:33:50 +00:00
veusz Recursive bumps for fontconfig and libzip dependency changes. 2018-03-12 11:15:24 +00:00
vid graphics/*: remove redundant :Q modifiers 2018-01-14 14:58:38 +00:00
viewfax *: gd.tuwien.ac.at/ftp.tuwien.ac.at is gone, remove it from various mastersites 2018-04-21 13:38:04 +00:00
viewnior Recursive revbump from hardbuzz-2.1.1 2018-11-12 03:51:07 +00:00
vigra Updated vigra to 1.11.1. 2017-05-29 12:35:06 +00:00
vnc2swf Add SHA512 digests for distfiles for graphics category 2015-11-03 21:33:50 +00:00
vp Add SHA512 digests for distfiles for graphics category 2015-11-03 21:33:50 +00:00
vtk Mark packages that require C++03 (or the GNU variants) if they fail with 2018-07-18 00:06:10 +00:00
vtk-data Fix pax arguments. 2016-02-26 14:01:09 +00:00
vtk-docs graphics/*: remove redundant :Q modifiers 2018-01-14 14:58:38 +00:00
wm-icons Fix indentation in buildlink3.mk files. 2018-01-07 13:03:53 +00:00
wmphoto graphics/*: remove redundant :Q modifiers 2018-01-14 14:58:38 +00:00
wxsvg Recursive revbump from hardbuzz-2.1.1 2018-11-12 03:51:07 +00:00
x11rec Recursive revbump from hardbuzz-2.1.1 2018-11-12 03:51:07 +00:00
xart Add SHA512 digests for distfiles for graphics category 2015-11-03 21:33:50 +00:00
xbmbrowser Add SHA512 digests for distfiles for graphics category 2015-11-03 21:33:50 +00:00
xdot extend PYTHON_VERSIONS_ for Python 3.7 2018-07-03 05:03:01 +00:00
xdvipresent Add SHA512 digests for distfiles for graphics category 2015-11-03 21:33:50 +00:00
xfce4-icon-theme Recursive revbump from hardbuzz-2.1.1 2018-11-12 03:51:07 +00:00
xfig xfig: Add upstream bug report. 2017-10-04 11:58:45 +00:00
xgc Reset maintainer 2017-09-16 19:26:41 +00:00
xgraph Add SHA512 digests for distfiles for graphics category 2015-11-03 21:33:50 +00:00
xli Comment out dead sites. 2017-08-16 20:45:30 +00:00
xmorph Add SHA512 digests for distfiles for graphics category 2015-11-03 21:33:50 +00:00
xpaint Add SHA512 digests for distfiles for graphics category 2015-11-03 21:33:50 +00:00
xplot Recursive bump for perl5-5.28.0 2018-08-22 09:43:40 +00:00
xplot-devel Recursive bump for perl5-5.28.0 2018-08-22 09:43:40 +00:00
xsane Recursive revbump from hardbuzz-2.1.1 2018-11-12 03:51:07 +00:00
xv xv: fix for CVE-2017-18215 2018-06-21 22:36:36 +00:00
xzgv Recursive revbump from hardbuzz-2.1.1 2018-11-12 03:51:07 +00:00
zathura-cb Recursive revbump from hardbuzz-2.1.1 2018-11-12 03:51:07 +00:00
zathura-djvu Recursive revbump from hardbuzz-2.1.1 2018-11-12 03:51:07 +00:00
zphoto Recursive revbump from hardbuzz-2.1.1 2018-11-12 03:51:07 +00:00
Makefile Add and enable p5-Graph-Easy. 2018-10-22 14:40:33 +00:00