pkgsrc-Changes-HG archive
[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index][Old Index]
[pkgsrc/trunk]: pkgsrc/graphics/wxsvg wxsvg: update to 1.5.20.
details: https://anonhg.NetBSD.org/pkgsrc/rev/f19f20f2e361
branches: trunk
changeset: 344798:f19f20f2e361
user: wiz <wiz%pkgsrc.org@localhost>
date: Tue Nov 26 14:14:23 2019 +0000
description:
wxsvg: update to 1.5.20.
Version 1.5.20 <2019-08-02>
---------------------------
* added handling of fill-rule
* added handling of spreadMethod
* added handling of clipPath
* added support of dash-offset
* added support of mask for path element
* fixed handling of pt units
* fixed fill pattern with opacity
* fixed handling of referenced patterns
Version 1.5.19 <2019-06-24>
---------------------------
* fixed rendering polyline element
* fixed drawing a cubic B?zier curve if the previous command was not an c or s
Version 1.5.18 <2019-05-19>
---------------------------
* wxFfmpegMediaDecoder: fixed support of ffmpeg 3.4.x
Version 1.5.17 <2019-05-19>
---------------------------
* wxSVGUseElement: fixed GetBBox() and GetResultBBox()
Version 1.5.16 <2019-01-27>
---------------------------
* wxFfmpegMediaDecoder.SetPosition(): added parameter seekBackward
Version 1.5.15 <2018-09-15>
---------------------------
* added skia backend (experimental) (thanks to Zicheng Yang)
Version 1.5.14 <2018-07-10>
---------------------------
* fixed calculation of bounding box if viewbox is specified
* fixed GetResultBBox()
* wxSVGCanvasImage: added support of data base64 href
Version 1.5.13 <2018-01-29>
---------------------------
* added support of <a> element
* fixed wxSVGImageElement::GetBBox()
* fixed wxSVGUseElement::GetBBox()
Version 1.5.12 <2017-05-01>
--------------------------
* wxSVGSVGElement: fixed GetIntersectionList()
* wxSVGPointList: fixed SetValueAsString()
Version 1.5.11 <2016-12-28>
--------------------------
* wxSVGImage: fixed displaying of first video frame
Version 1.5.10 <2016-10-23>
--------------------------
* added support of EXIF metadata
Version 1.5.9 <2016-08-09>
--------------------------
* changed GetBBox() and GetResultBBox()
* added some missing header files
Version 1.5.8 <2016-06-05>
--------------------------
* fixed ApplyAnimation
Version 1.5.7 <2016-05-03>
--------------------------
* wxFfmpegMediaDecoder: added GetChapters() and GetMetadata()
* fixed SVGAnimationElement
Version 1.5.6 <2016-03-11>
--------------------------
* fixed SVGAnimationElement
Version 1.5.5 <2015-10-03>
--------------------------
* fixed rendering image element with mask
* wxFfmpegMediaDecoder: added GetFormatName() and GetCodecTag()
* wxFfmpegMediaDecoder: fixed wxSVGCanvasVideo
Version 1.5.4 <2015-03-21>
--------------------------
* added support of 3-digit hex color codes (thanks to Constantine)
diffstat:
graphics/wxsvg/Makefile | 12 +++++-------
graphics/wxsvg/PLIST | 5 ++++-
graphics/wxsvg/buildlink3.mk | 7 +++----
graphics/wxsvg/distinfo | 10 +++++-----
4 files changed, 17 insertions(+), 17 deletions(-)
diffs (90 lines):
diff -r 1a42f532de7f -r f19f20f2e361 graphics/wxsvg/Makefile
--- a/graphics/wxsvg/Makefile Tue Nov 26 13:52:43 2019 +0000
+++ b/graphics/wxsvg/Makefile Tue Nov 26 14:14:23 2019 +0000
@@ -1,7 +1,6 @@
-# $NetBSD: Makefile,v 1.64 2019/07/21 22:24:07 wiz Exp $
+# $NetBSD: Makefile,v 1.65 2019/11/26 14:14:23 wiz Exp $
-DISTNAME= wxsvg-1.5.3
-PKGREVISION= 14
+DISTNAME= wxsvg-1.5.20
CATEGORIES= graphics
MASTER_SITES= ${MASTER_SITE_SOURCEFORGE:=wxsvg/}
EXTRACT_SUFX= .tar.bz2
@@ -16,9 +15,8 @@
USE_LIBTOOL= yes
USE_TOOLS+= gmake pkg-config
-.include "../../fonts/fontconfig/buildlink3.mk"
-.include "../../graphics/libart/buildlink3.mk"
-.include "../../multimedia/ffmpeg1/buildlink3.mk"
-.include "../../x11/wxGTK28/buildlink3.mk"
+.include "../../graphics/libexif/buildlink3.mk"
+.include "../../multimedia/ffmpeg4/buildlink3.mk"
+.include "../../x11/wxGTK30/buildlink3.mk"
.include "../../textproc/expat/buildlink3.mk"
.include "../../mk/bsd.pkg.mk"
diff -r 1a42f532de7f -r f19f20f2e361 graphics/wxsvg/PLIST
--- a/graphics/wxsvg/PLIST Tue Nov 26 13:52:43 2019 +0000
+++ b/graphics/wxsvg/PLIST Tue Nov 26 14:14:23 2019 +0000
@@ -1,6 +1,7 @@
-@comment $NetBSD: PLIST,v 1.7 2015/03/01 12:17:57 mef Exp $
+@comment $NetBSD: PLIST,v 1.8 2019/11/26 14:14:23 wiz Exp $
bin/svgview
include/wxSVG/Animated.h
+include/wxSVG/CSSRule.h
include/wxSVG/CSSStyleDeclaration.h
include/wxSVG/CSSValue.h
include/wxSVG/CSSValues.h
@@ -10,6 +11,7 @@
include/wxSVG/Element.h
include/wxSVG/ElementTimeControl.h
include/wxSVG/EventTarget.h
+include/wxSVG/ExifHandler.h
include/wxSVG/GetSVGDocument.h
include/wxSVG/NodeList.h
include/wxSVG/NodeListCls.h
@@ -181,6 +183,7 @@
include/wxSVG/SVGZoomAndPan.h
include/wxSVG/SVGZoomEvent.h
include/wxSVG/String_wxsvg.h
+include/wxSVG/UIEvent.h
include/wxSVG/ViewCSS.h
include/wxSVG/imagsvg.h
include/wxSVG/mediadec_ffmpeg.h
diff -r 1a42f532de7f -r f19f20f2e361 graphics/wxsvg/buildlink3.mk
--- a/graphics/wxsvg/buildlink3.mk Tue Nov 26 13:52:43 2019 +0000
+++ b/graphics/wxsvg/buildlink3.mk Tue Nov 26 14:14:23 2019 +0000
@@ -1,4 +1,4 @@
-# $NetBSD: buildlink3.mk,v 1.43 2019/07/21 22:24:07 wiz Exp $
+# $NetBSD: buildlink3.mk,v 1.44 2019/11/26 14:14:23 wiz Exp $
BUILDLINK_TREE+= wxsvg
@@ -9,9 +9,8 @@
BUILDLINK_ABI_DEPENDS.wxsvg+= wxsvg>=1.5.3nb14
BUILDLINK_PKGSRCDIR.wxsvg?= ../../graphics/wxsvg
-.include "../../fonts/fontconfig/buildlink3.mk"
-.include "../../graphics/libart/buildlink3.mk"
-.include "../../x11/wxGTK28/buildlink3.mk"
+.include "../../graphics/libexif/buildlink3.mk"
+.include "../../x11/wxGTK30/buildlink3.mk"
.endif # WXSVG_BUILDLINK3_MK
BUILDLINK_TREE+= -wxsvg
diff -r 1a42f532de7f -r f19f20f2e361 graphics/wxsvg/distinfo
--- a/graphics/wxsvg/distinfo Tue Nov 26 13:52:43 2019 +0000
+++ b/graphics/wxsvg/distinfo Tue Nov 26 14:14:23 2019 +0000
@@ -1,6 +1,6 @@
-$NetBSD: distinfo,v 1.15 2015/11/03 21:34:35 agc Exp $
+$NetBSD: distinfo,v 1.16 2019/11/26 14:14:23 wiz Exp $
-SHA1 (wxsvg-1.5.3.tar.bz2) = 84640a696e2c03587a1562e214d76e3046ebae06
-RMD160 (wxsvg-1.5.3.tar.bz2) = 5997df257765a29a4f360ee78b1eec0900e537da
-SHA512 (wxsvg-1.5.3.tar.bz2) = a8bb22e1688b58a431beffb71064f760f6f004abb81b2a4f48a2c59605020c7e2c6c03bc68f880cca60e9fb154f364b96849f04e32b48d1185b17f9304dcf295
-Size (wxsvg-1.5.3.tar.bz2) = 466539 bytes
+SHA1 (wxsvg-1.5.20.tar.bz2) = a9de15b299523cfc6166cf647e7ac6b87b3d4d98
+RMD160 (wxsvg-1.5.20.tar.bz2) = 47b265e44ddeee41b29006ae7bca0073e11f757b
+SHA512 (wxsvg-1.5.20.tar.bz2) = 423cfc5c24133fe1bc6db3253999262d17eac91ea1d6c62dad39cbf49e1c469dc503fc7a3bcac367eaf622777d9be0ecae5e28723f84fd564a630d3f90308929
+Size (wxsvg-1.5.20.tar.bz2) = 495401 bytes
Home |
Main Index |
Thread Index |
Old Index