public inbox for gentoo-commits@lists.gentoo.org
 help / color / mirror / Atom feed
* [gentoo-commits] repo/gentoo:master commit in: media-libs/wxsvg/files/, media-libs/wxsvg/
@ 2015-11-01 12:10 Alexis Ballier
  0 siblings, 0 replies; 3+ messages in thread
From: Alexis Ballier @ 2015-11-01 12:10 UTC (permalink / raw
  To: gentoo-commits

commit:     f60e9bea867de26a864256ad091bd2610cf0f789
Author:     Alexis Ballier <aballier <AT> gentoo <DOT> org>
AuthorDate: Sun Nov  1 12:09:55 2015 +0000
Commit:     Alexis Ballier <aballier <AT> gentoo <DOT> org>
CommitDate: Sun Nov  1 12:10:15 2015 +0000
URL:        https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=f60e9bea

media-libs/wxsvg: Bump to 1.5.5. Fix build with ffmpeg git master. Add USE=libav and := deps on ffmpeg/libav.

Package-Manager: portage-2.2.23

 media-libs/wxsvg/Manifest             |  1 +
 media-libs/wxsvg/files/ffmpeg29.patch | 13 ++++++++++
 media-libs/wxsvg/wxsvg-1.5.5.ebuild   | 47 +++++++++++++++++++++++++++++++++++
 3 files changed, 61 insertions(+)

diff --git a/media-libs/wxsvg/Manifest b/media-libs/wxsvg/Manifest
index 54ae158..7ef7f18 100644
--- a/media-libs/wxsvg/Manifest
+++ b/media-libs/wxsvg/Manifest
@@ -1,3 +1,4 @@
 DIST wxsvg-1.1.13.tar.bz2 669378 SHA256 ebaecb322bb7fad97a3cd686bed9827b00afe84063cf2784a7e19891dabd805e SHA512 6c8dddbb274d1d9cd32fdec1c4ac6f73d3497fd2a29ecbe2d6640c2a65a290940faa92fba954c3990b32f713dc89de74e31484263bbd9c2718dc436ca19d2397 WHIRLPOOL 643aa93161028436c30014cb3a2e36cfab53b5f9341d1e21c129eab6e86b756150dc491cc4cf2be0ef6ff956eb7a5ff5c67f8ee1d26879b228e8af18459e9601
 DIST wxsvg-1.4.2.tar.bz2 461580 SHA256 c7555eacb786583dda4288fa6f3e914a14ec175be0a02b31d9c4e19f173bd760 SHA512 6b6c8c5bf5b369da75ee9d034f6be8611019f48066d352b7268a127f1d9f9487c4aa694b0f0529efa3c0b63d51f7c38ba503d7cf83f9e930b876ebc4bcbce9e1 WHIRLPOOL 84cc8a7b849cac5ad1045572c5ee0aa267d8a6e0e97db0c61f2896def7e347055330a61bf89cfb64360411681c15e0df567c05b5efe4bc5dc456ba9285d9d219
 DIST wxsvg-1.5.4.tar.bz2 478568 SHA256 5ca0ce0fcb45a3f0801b645000e9b5179bab4d62fb56df51f027d75cbef5a655 SHA512 89d909c1db975dcbca464e3d7850277b72e596bb6020d3c796cb235c55fcb9282472b522a1a3a15cc773eb98e8e2c69f463c5085cfc1b66221316d19ca87cf46 WHIRLPOOL c2caf28102c908e6efdaff413224afde2d83a0e24b199b7904696a334b8b9e64f51f91ab6d3a2ed57c69f3ebaaef96bf1ba890d1af600adb92db47ccfcfbf4cf
+DIST wxsvg-1.5.5.tar.bz2 478828 SHA256 e6664de4ee2a0481f47f8b718793ef7c14d296ebe7aee4edbf099258cd9525fc SHA512 4b42ba6ea5675f5794e0450809980030175583813db7e4e216dd5d53e92f43c67c0e62208c77e8e455703d62d1e30606a001b28b924c17ed26fd949638340a1b WHIRLPOOL abc95e7b14d0e298d44b0b7d36731f5099de10bd095400ca9c90af67957bc138c2dc0d91c7477b381a88debf6c24a000fb94ebd0b73d31c4d31ff96dc693dcc2

diff --git a/media-libs/wxsvg/files/ffmpeg29.patch b/media-libs/wxsvg/files/ffmpeg29.patch
new file mode 100644
index 0000000..5f19102
--- /dev/null
+++ b/media-libs/wxsvg/files/ffmpeg29.patch
@@ -0,0 +1,13 @@
+Index: wxsvg-1.5.5/src/mediadec_ffmpeg.cpp
+===================================================================
+--- wxsvg-1.5.5.orig/src/mediadec_ffmpeg.cpp
++++ wxsvg-1.5.5/src/mediadec_ffmpeg.cpp
+@@ -263,7 +263,7 @@ wxImage wxFfmpegMediaDecoder::GetNextFra
+ 			avcodec_decode_video2(m_codecCtx, m_frame, &frameFinished, &packet);
+ 			if (frameFinished) {
+ 				SwsContext* imgConvertCtx = sws_getContext(m_codecCtx->width, m_codecCtx->height, m_codecCtx->pix_fmt,
+-						m_width, m_height, PIX_FMT_RGB24, SWS_BICUBIC, NULL, NULL, NULL);
++						m_width, m_height, AV_PIX_FMT_RGB24, SWS_BICUBIC, NULL, NULL, NULL);
+ 				if (imgConvertCtx == NULL) {
+ 					av_free_packet(&packet);
+ 					return wxImage();

diff --git a/media-libs/wxsvg/wxsvg-1.5.5.ebuild b/media-libs/wxsvg/wxsvg-1.5.5.ebuild
new file mode 100644
index 0000000..aee66de
--- /dev/null
+++ b/media-libs/wxsvg/wxsvg-1.5.5.ebuild
@@ -0,0 +1,47 @@
+# Copyright 1999-2015 Gentoo Foundation
+# Distributed under the terms of the GNU General Public License v2
+# $Id$
+
+EAPI=5
+WX_GTK_VER=3.0
+inherit eutils wxwidgets
+
+DESCRIPTION="C++ library to create, manipulate and render SVG files"
+HOMEPAGE="http://wxsvg.sourceforge.net/"
+SRC_URI="mirror://sourceforge/${PN}/${P}.tar.bz2"
+
+LICENSE="wxWinLL-3"
+SLOT="0/3" # based on SONAME of libwxsvg.so
+KEYWORDS="~amd64 ~x86"
+IUSE="static-libs libav"
+
+RDEPEND=">=dev-libs/expat-2:=
+	>=dev-libs/glib-2.28:2=
+	dev-libs/libxml2:=
+	media-libs/fontconfig:=
+	media-libs/freetype:2=
+	x11-libs/cairo:=
+	x11-libs/pango:=
+	x11-libs/wxGTK:${WX_GTK_VER}=[X]
+	libav? ( >=media-video/libav-9:0= )
+	!libav? ( >=media-video/ffmpeg-2.6:0= )"
+DEPEND="${RDEPEND}
+	virtual/pkgconfig"
+
+DOCS=( AUTHORS ChangeLog TODO )
+
+src_prepare() {
+	epatch "${FILESDIR}/ffmpeg29.patch"
+}
+
+src_configure() {
+	need-wxwidgets base-unicode
+	econf \
+		$(use_enable static-libs static) \
+		--with-wx-config=${WX_CONFIG}
+}
+
+src_install() {
+	default
+	prune_libtool_files
+}


^ permalink raw reply related	[flat|nested] 3+ messages in thread

* [gentoo-commits] repo/gentoo:master commit in: media-libs/wxsvg/files/, media-libs/wxsvg/
@ 2016-11-25 18:57 Pacho Ramos
  0 siblings, 0 replies; 3+ messages in thread
From: Pacho Ramos @ 2016-11-25 18:57 UTC (permalink / raw
  To: gentoo-commits

commit:     809f9feb53bf8ac57e5e862403d6e0391187f785
Author:     Pacho Ramos <pacho <AT> gentoo <DOT> org>
AuthorDate: Fri Nov 25 18:44:31 2016 +0000
Commit:     Pacho Ramos <pacho <AT> gentoo <DOT> org>
CommitDate: Fri Nov 25 18:56:05 2016 +0000
URL:        https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=809f9feb

media-libs/wxsvg: Drop old

Package-Manager: portage-2.3.2

 media-libs/wxsvg/Manifest              |  3 ---
 media-libs/wxsvg/files/ffmpeg29.patch  | 13 ----------
 media-libs/wxsvg/wxsvg-1.1.13.ebuild   | 42 ------------------------------
 media-libs/wxsvg/wxsvg-1.5.4-r1.ebuild | 42 ------------------------------
 media-libs/wxsvg/wxsvg-1.5.4.ebuild    | 41 -----------------------------
 media-libs/wxsvg/wxsvg-1.5.5.ebuild    | 47 ----------------------------------
 6 files changed, 188 deletions(-)

diff --git a/media-libs/wxsvg/Manifest b/media-libs/wxsvg/Manifest
index 27ceb96..29e80a7 100644
--- a/media-libs/wxsvg/Manifest
+++ b/media-libs/wxsvg/Manifest
@@ -1,5 +1,2 @@
-DIST wxsvg-1.1.13.tar.bz2 669378 SHA256 ebaecb322bb7fad97a3cd686bed9827b00afe84063cf2784a7e19891dabd805e SHA512 6c8dddbb274d1d9cd32fdec1c4ac6f73d3497fd2a29ecbe2d6640c2a65a290940faa92fba954c3990b32f713dc89de74e31484263bbd9c2718dc436ca19d2397 WHIRLPOOL 643aa93161028436c30014cb3a2e36cfab53b5f9341d1e21c129eab6e86b756150dc491cc4cf2be0ef6ff956eb7a5ff5c67f8ee1d26879b228e8af18459e9601
 DIST wxsvg-1.4.2.tar.bz2 461580 SHA256 c7555eacb786583dda4288fa6f3e914a14ec175be0a02b31d9c4e19f173bd760 SHA512 6b6c8c5bf5b369da75ee9d034f6be8611019f48066d352b7268a127f1d9f9487c4aa694b0f0529efa3c0b63d51f7c38ba503d7cf83f9e930b876ebc4bcbce9e1 WHIRLPOOL 84cc8a7b849cac5ad1045572c5ee0aa267d8a6e0e97db0c61f2896def7e347055330a61bf89cfb64360411681c15e0df567c05b5efe4bc5dc456ba9285d9d219
-DIST wxsvg-1.5.4.tar.bz2 478568 SHA256 5ca0ce0fcb45a3f0801b645000e9b5179bab4d62fb56df51f027d75cbef5a655 SHA512 89d909c1db975dcbca464e3d7850277b72e596bb6020d3c796cb235c55fcb9282472b522a1a3a15cc773eb98e8e2c69f463c5085cfc1b66221316d19ca87cf46 WHIRLPOOL c2caf28102c908e6efdaff413224afde2d83a0e24b199b7904696a334b8b9e64f51f91ab6d3a2ed57c69f3ebaaef96bf1ba890d1af600adb92db47ccfcfbf4cf
-DIST wxsvg-1.5.5.tar.bz2 478828 SHA256 e6664de4ee2a0481f47f8b718793ef7c14d296ebe7aee4edbf099258cd9525fc SHA512 4b42ba6ea5675f5794e0450809980030175583813db7e4e216dd5d53e92f43c67c0e62208c77e8e455703d62d1e30606a001b28b924c17ed26fd949638340a1b WHIRLPOOL abc95e7b14d0e298d44b0b7d36731f5099de10bd095400ca9c90af67957bc138c2dc0d91c7477b381a88debf6c24a000fb94ebd0b73d31c4d31ff96dc693dcc2
 DIST wxsvg-1.5.9.tar.bz2 512874 SHA256 145d10789aab73b352212afb1ac7b2f5b202d620b1aebc20d36fea16e497214f SHA512 eda51832dfa646cd4a681acdbbc1282b9d82d3a0571633c1212f89093ac23cad57f8f8e03fb7c35591b956a9b18c48852d439c44204830f1efd813549bc7eada WHIRLPOOL bd47ea6d31d3e8646b65c003d35039b158222d684821d62c08337fb858cead42f98e1cd935e7521c51afe4ea5ce84ff7ff87fc8b512db2e0734006ddcda587d0

diff --git a/media-libs/wxsvg/files/ffmpeg29.patch b/media-libs/wxsvg/files/ffmpeg29.patch
deleted file mode 100644
index 5f19102..00000000
--- a/media-libs/wxsvg/files/ffmpeg29.patch
+++ /dev/null
@@ -1,13 +0,0 @@
-Index: wxsvg-1.5.5/src/mediadec_ffmpeg.cpp
-===================================================================
---- wxsvg-1.5.5.orig/src/mediadec_ffmpeg.cpp
-+++ wxsvg-1.5.5/src/mediadec_ffmpeg.cpp
-@@ -263,7 +263,7 @@ wxImage wxFfmpegMediaDecoder::GetNextFra
- 			avcodec_decode_video2(m_codecCtx, m_frame, &frameFinished, &packet);
- 			if (frameFinished) {
- 				SwsContext* imgConvertCtx = sws_getContext(m_codecCtx->width, m_codecCtx->height, m_codecCtx->pix_fmt,
--						m_width, m_height, PIX_FMT_RGB24, SWS_BICUBIC, NULL, NULL, NULL);
-+						m_width, m_height, AV_PIX_FMT_RGB24, SWS_BICUBIC, NULL, NULL, NULL);
- 				if (imgConvertCtx == NULL) {
- 					av_free_packet(&packet);
- 					return wxImage();

diff --git a/media-libs/wxsvg/wxsvg-1.1.13.ebuild b/media-libs/wxsvg/wxsvg-1.1.13.ebuild
deleted file mode 100644
index 9cd2bea..00000000
--- a/media-libs/wxsvg/wxsvg-1.1.13.ebuild
+++ /dev/null
@@ -1,42 +0,0 @@
-# Copyright 1999-2013 Gentoo Foundation
-# Distributed under the terms of the GNU General Public License v2
-# $Id$
-
-EAPI=5
-WX_GTK_VER=2.8
-
-inherit eutils wxwidgets
-
-DESCRIPTION="C++ library to create, manipulate and render SVG files"
-HOMEPAGE="http://wxsvg.sourceforge.net/"
-SRC_URI="mirror://sourceforge/${PN}/${P}.tar.bz2"
-
-LICENSE="wxWinLL-3"
-SLOT="0"
-KEYWORDS="amd64 x86"
-IUSE="static-libs"
-
-RDEPEND=">=dev-libs/expat-2
-	>=dev-libs/glib-2.28
-	dev-libs/libxml2
-	media-libs/fontconfig
-	>=media-libs/freetype-2
-	x11-libs/cairo
-	x11-libs/pango
-	x11-libs/wxGTK:2.8[X]
-	virtual/ffmpeg"
-DEPEND="${RDEPEND}
-	virtual/pkgconfig"
-
-DOCS=( AUTHORS ChangeLog TODO )
-
-src_configure() {
-	econf \
-		$(use_enable static-libs static) \
-		--with-wx-config=${WX_CONFIG}
-}
-
-src_install() {
-	default
-	prune_libtool_files
-}

diff --git a/media-libs/wxsvg/wxsvg-1.5.4-r1.ebuild b/media-libs/wxsvg/wxsvg-1.5.4-r1.ebuild
deleted file mode 100644
index 2e90d36..00000000
--- a/media-libs/wxsvg/wxsvg-1.5.4-r1.ebuild
+++ /dev/null
@@ -1,42 +0,0 @@
-# Copyright 1999-2015 Gentoo Foundation
-# Distributed under the terms of the GNU General Public License v2
-# $Id$
-
-EAPI=5
-WX_GTK_VER=3.0
-inherit eutils wxwidgets
-
-DESCRIPTION="C++ library to create, manipulate and render SVG files"
-HOMEPAGE="http://wxsvg.sourceforge.net/"
-SRC_URI="mirror://sourceforge/${PN}/${P}.tar.bz2"
-
-LICENSE="wxWinLL-3"
-SLOT="0/3" # based on SONAME of libwxsvg.so
-KEYWORDS="~amd64 ~x86"
-IUSE="static-libs"
-
-RDEPEND=">=dev-libs/expat-2:=
-	>=dev-libs/glib-2.28:2=
-	dev-libs/libxml2:=
-	media-libs/fontconfig:=
-	media-libs/freetype:2=
-	x11-libs/cairo:=
-	x11-libs/pango:=
-	x11-libs/wxGTK:${WX_GTK_VER}=[X]
-	virtual/ffmpeg"
-DEPEND="${RDEPEND}
-	virtual/pkgconfig"
-
-DOCS=( AUTHORS ChangeLog TODO )
-
-src_configure() {
-	need-wxwidgets base-unicode
-	econf \
-		$(use_enable static-libs static) \
-		--with-wx-config=${WX_CONFIG}
-}
-
-src_install() {
-	default
-	prune_libtool_files
-}

diff --git a/media-libs/wxsvg/wxsvg-1.5.4.ebuild b/media-libs/wxsvg/wxsvg-1.5.4.ebuild
deleted file mode 100644
index 2aa1dad..00000000
--- a/media-libs/wxsvg/wxsvg-1.5.4.ebuild
+++ /dev/null
@@ -1,41 +0,0 @@
-# Copyright 1999-2015 Gentoo Foundation
-# Distributed under the terms of the GNU General Public License v2
-# $Id$
-
-EAPI=5
-WX_GTK_VER=2.8
-inherit eutils wxwidgets
-
-DESCRIPTION="C++ library to create, manipulate and render SVG files"
-HOMEPAGE="http://wxsvg.sourceforge.net/"
-SRC_URI="mirror://sourceforge/${PN}/${P}.tar.bz2"
-
-LICENSE="wxWinLL-3"
-SLOT="0/3" # based on SONAME of libwxsvg.so
-KEYWORDS="~amd64 ~x86"
-IUSE="static-libs"
-
-RDEPEND=">=dev-libs/expat-2:=
-	>=dev-libs/glib-2.28:2=
-	dev-libs/libxml2:=
-	media-libs/fontconfig:=
-	media-libs/freetype:2=
-	x11-libs/cairo:=
-	x11-libs/pango:=
-	x11-libs/wxGTK:2.8=[X]
-	virtual/ffmpeg"
-DEPEND="${RDEPEND}
-	virtual/pkgconfig"
-
-DOCS=( AUTHORS ChangeLog TODO )
-
-src_configure() {
-	econf \
-		$(use_enable static-libs static) \
-		--with-wx-config=${WX_CONFIG}
-}
-
-src_install() {
-	default
-	prune_libtool_files
-}

diff --git a/media-libs/wxsvg/wxsvg-1.5.5.ebuild b/media-libs/wxsvg/wxsvg-1.5.5.ebuild
deleted file mode 100644
index aee66de..00000000
--- a/media-libs/wxsvg/wxsvg-1.5.5.ebuild
+++ /dev/null
@@ -1,47 +0,0 @@
-# Copyright 1999-2015 Gentoo Foundation
-# Distributed under the terms of the GNU General Public License v2
-# $Id$
-
-EAPI=5
-WX_GTK_VER=3.0
-inherit eutils wxwidgets
-
-DESCRIPTION="C++ library to create, manipulate and render SVG files"
-HOMEPAGE="http://wxsvg.sourceforge.net/"
-SRC_URI="mirror://sourceforge/${PN}/${P}.tar.bz2"
-
-LICENSE="wxWinLL-3"
-SLOT="0/3" # based on SONAME of libwxsvg.so
-KEYWORDS="~amd64 ~x86"
-IUSE="static-libs libav"
-
-RDEPEND=">=dev-libs/expat-2:=
-	>=dev-libs/glib-2.28:2=
-	dev-libs/libxml2:=
-	media-libs/fontconfig:=
-	media-libs/freetype:2=
-	x11-libs/cairo:=
-	x11-libs/pango:=
-	x11-libs/wxGTK:${WX_GTK_VER}=[X]
-	libav? ( >=media-video/libav-9:0= )
-	!libav? ( >=media-video/ffmpeg-2.6:0= )"
-DEPEND="${RDEPEND}
-	virtual/pkgconfig"
-
-DOCS=( AUTHORS ChangeLog TODO )
-
-src_prepare() {
-	epatch "${FILESDIR}/ffmpeg29.patch"
-}
-
-src_configure() {
-	need-wxwidgets base-unicode
-	econf \
-		$(use_enable static-libs static) \
-		--with-wx-config=${WX_CONFIG}
-}
-
-src_install() {
-	default
-	prune_libtool_files
-}


^ permalink raw reply related	[flat|nested] 3+ messages in thread

* [gentoo-commits] repo/gentoo:master commit in: media-libs/wxsvg/files/, media-libs/wxsvg/
@ 2023-11-24 13:54 Pacho Ramos
  0 siblings, 0 replies; 3+ messages in thread
From: Pacho Ramos @ 2023-11-24 13:54 UTC (permalink / raw
  To: gentoo-commits

commit:     9045bdf33e1a759463c708435da025dad86a4936
Author:     Pacho Ramos <pacho <AT> gentoo <DOT> org>
AuthorDate: Fri Nov 24 13:52:12 2023 +0000
Commit:     Pacho Ramos <pacho <AT> gentoo <DOT> org>
CommitDate: Fri Nov 24 13:54:05 2023 +0000
URL:        https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=9045bdf3

media-libs/wxsvg: add 1.5.24

Closes: https://bugs.gentoo.org/898946
Closes: https://bugs.gentoo.org/907948
Signed-off-by: Pacho Ramos <pacho <AT> gentoo.org>

 media-libs/wxsvg/Manifest            |  1 +
 media-libs/wxsvg/files/gcc13.patch   | 24 ++++++++++++++++++
 media-libs/wxsvg/wxsvg-1.5.24.ebuild | 48 ++++++++++++++++++++++++++++++++++++
 3 files changed, 73 insertions(+)

diff --git a/media-libs/wxsvg/Manifest b/media-libs/wxsvg/Manifest
index 04638ca976be..1d569153b0aa 100644
--- a/media-libs/wxsvg/Manifest
+++ b/media-libs/wxsvg/Manifest
@@ -1,2 +1,3 @@
 DIST wxsvg-1.5.11.tar.bz2 514919 BLAKE2B d15d3478b69c4db4bd1cfc5032ff4909d35aca45f69694dbb74db72bc9d651fae3b8948382f60abd3f93a36dd4756f8f8f2c37acf7ac0b8859a9b03cb8cfda55 SHA512 d3538969bc0dda6bab740efef6952c2ca92e0ca74780c6370e3c6daf21d641e894b570d13b6ca408839b1b37df2aca9a3cf32d6423ddbf5f9f84274cfb1b8582
 DIST wxsvg-1.5.23.tar.bz2 500351 BLAKE2B 369bd7cee8581df72712183ecb997f0cebae6e7fe942d4cad123d77472b5e3f479f604854bc267990e7ec29c9420625433a4b8a3fe799fcae0e4d6173d411c50 SHA512 c15f58fecbee595f0f981c9347f1e1b929656b7d9c9dfb699252111df927d554cb88b6d7801b323451b0f906ec8c7d6935c9e15372e213f1921f0fdd90733422
+DIST wxsvg-1.5.24.tar.bz2 500480 BLAKE2B 2ecf863f8cb8980a14bcddfe014e595564033af17f710ebdb4352de8a2a3cea93ed471b1870dd111ab24100bbc307fb841bed579edbd00c0e0454c4ac5c77934 SHA512 cceba943102eece67d40f480b5b6fa3d6294e6d6733732f35112406453e2d86f516c07817983a074136dc929b911620ca87018cbe79ce4ba3a9e3562fb53cf58

diff --git a/media-libs/wxsvg/files/gcc13.patch b/media-libs/wxsvg/files/gcc13.patch
new file mode 100644
index 000000000000..d9681843369e
--- /dev/null
+++ b/media-libs/wxsvg/files/gcc13.patch
@@ -0,0 +1,24 @@
+From 7b17fe365fb522618fb3520d7c5c1109b138358f Mon Sep 17 00:00:00 2001
+From: alex <alex@sinus.fritz.box>
+Date: Sat, 5 Aug 2023 23:29:54 +0200
+Subject: [PATCH 4/5] applied gcc 13 patch
+
+---
+ src/cairo/SVGCanvasCairo.cpp | 1 +
+ 1 file changed, 1 insertion(+)
+
+diff --git a/src/cairo/SVGCanvasCairo.cpp b/src/cairo/SVGCanvasCairo.cpp
+index f482cbf..0a62a88 100644
+--- a/src/cairo/SVGCanvasCairo.cpp
++++ b/src/cairo/SVGCanvasCairo.cpp
+@@ -14,6 +14,7 @@
+ #include "SVGCanvasImageCairo.h"
+ #include <wx/log.h>
+ #include <wx/file.h>
++#include <cstdint>
+ 
+ wxSVGCanvasCairo::~wxSVGCanvasCairo() {
+ 	Destroy();
+-- 
+2.41.0
+

diff --git a/media-libs/wxsvg/wxsvg-1.5.24.ebuild b/media-libs/wxsvg/wxsvg-1.5.24.ebuild
new file mode 100644
index 000000000000..9a6d52400e3e
--- /dev/null
+++ b/media-libs/wxsvg/wxsvg-1.5.24.ebuild
@@ -0,0 +1,48 @@
+# Copyright 1999-2023 Gentoo Authors
+# Distributed under the terms of the GNU General Public License v2
+
+EAPI=8
+
+WX_GTK_VER=3.2-gtk3
+inherit wxwidgets
+
+DESCRIPTION="C++ library to create, manipulate and render SVG files"
+HOMEPAGE="http://wxsvg.sourceforge.net/"
+SRC_URI="mirror://sourceforge/${PN}/${P}.tar.bz2"
+
+LICENSE="wxWinLL-3"
+SLOT="0/3" # based on SONAME of libwxsvg.so
+KEYWORDS="~amd64 ~x86"
+
+RDEPEND="
+	>=dev-libs/expat-2:=
+	media-libs/libexif:=
+	>=dev-libs/glib-2.28:2=
+	dev-libs/libxml2:=
+	media-libs/fontconfig:=
+	media-libs/freetype:2=
+	media-libs/harfbuzz:=
+	x11-libs/cairo:=
+	x11-libs/pango:=
+	x11-libs/wxGTK:${WX_GTK_VER}=[X]
+	>=media-video/ffmpeg-2.6:0="
+DEPEND="${RDEPEND}"
+BDEPEND="virtual/pkgconfig"
+
+PATCHES=(
+	"${FILESDIR}/gcc13.patch"
+)
+
+src_configure() {
+	setup-wxwidgets base-unicode
+	econf \
+		--disable-static \
+		--with-wx-config=${WX_CONFIG}
+}
+
+src_install() {
+	default
+
+	# no static archives
+	find "${ED}" -name '*.la' -delete || die
+}


^ permalink raw reply related	[flat|nested] 3+ messages in thread

end of thread, other threads:[~2023-11-24 13:54 UTC | newest]

Thread overview: 3+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2016-11-25 18:57 [gentoo-commits] repo/gentoo:master commit in: media-libs/wxsvg/files/, media-libs/wxsvg/ Pacho Ramos
  -- strict thread matches above, loose matches on Subject: below --
2023-11-24 13:54 Pacho Ramos
2015-11-01 12:10 Alexis Ballier

This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox