Problems found with existing digests:
Package fotoxx distfile fotoxx-14.03.1.tar.gz
ac2033f87de2c23941261f7c50160cddf872c110 [recorded]
118e98a8cc0414676b3c4d37b8df407c28a1407c [calculated]
Package ploticus-examples distfile ploticus-2.00/plnode200.tar.gz
34274a03d0c41fae5690633663e3d4114b9d7a6d [recorded]
da39a3ee5e6b4b0d3255bfef95601890afd80709 [calculated]
Problems found locating distfiles:
Package AfterShotPro: missing distfile AfterShotPro-1.1.0.30/AfterShotPro_i386.deb
Package pgraf: missing distfile pgraf-20010131.tar.gz
Package qvplay: missing distfile qvplay-0.95.tar.gz
Otherwise, existing SHA1 digests verified and found to be the same on
the machine holding the existing distfiles (morden). All existing
SHA1 digests retained for now as an audit trail.
----------------------
Version 1.5.3 <2015-01-18>
--------------------------
* applied patch from Sebastian Vater to fix memory leak
Version 1.5.2 <2014-12-14>
--------------------------
* fixed memory leak (thanks to Sebastian Vater)
Version 1.5.1 <2014-11-23>
--------------------------
* fixed some compiler errors
Version 1.5 <2014-08-09>
------------------------
* added support of marker element
* added support of patternTransform attribute
Version 1.4.2 <2014-07-06>
--------------------------
* added support of stroke-dasharray
* fixed handling of preserveAspectRatio="none"
Version 1.4.1 <2014-06-16>
--------------------------
* fixed rendering of tspan-element
* fixed rendering of use element in pattern and mask elements
Version 1.4 <2014-05-24>
------------------------
* added support of pattern element
Version 1.3 <2014-04-13>
------------------------
* added support of animations
* fixed some GetBBox() methods
Changelog:
Version 1.2.1 <2013-10-16>
--------------------------
* fixed loading images with relative path
Version 1.2 <2013-09-20>
------------------------
* added initial support of animations
* added support of mask for image element
* removed obsolete backends (libart and agg)
* removed svgui classes
Version 1.1.16 <2013-08-25>
---------------------------
* rendering: added support of wxProgressDialog
Version 1.1.15 <2013-05-01>
---------------------------
* fixed text rendering using PangaCairo
to address issues with NetBSD-6(and earlier)'s fontconfig not being
new enough for pango.
While doing that, also bump freetype2 dependency to current pkgsrc
version.
Suggested by tron in PR 47882
changes:
-handle more attributes
-added support of clipPath element
-added support of visibility style property
-fixed handling of aspect ratio of video
changes:
-added support of svg gradients
-implemented GetResultBBox() (SVG1.2)
-added parameter coordinates (wxSVG_COORDINATES) to GetBBox()
-implemented baseline
-some other small changes and bug fixes
This changes the buildlink3.mk files to use an include guard for the
recursive include. The use of BUILDLINK_DEPTH, BUILDLINK_DEPENDS,
BUILDLINK_PACKAGES and BUILDLINK_ORDER is handled by a single new
variable BUILDLINK_TREE. Each buildlink3.mk file adds a pair of
enter/exit marker, which can be used to reconstruct the tree and
to determine first level includes. Avoiding := for large variables
(BUILDLINK_ORDER) speeds up parse time as += has linear complexity.
The include guard reduces system time by avoiding reading files over and
over again. For complex packages this reduces both %user and %sys time to
half of the former time.