diff options
author | Ryan Hill <rhill@gentoo.org> | 2015-08-04 23:35:59 +0000 |
---|---|---|
committer | Ryan Hill <rhill@gentoo.org> | 2015-08-04 23:35:59 +0000 |
commit | e1e5aa7ee2e4ef519cadd553b01ec5adb12c32eb (patch) | |
tree | bafe23e5136aaaa09d43e3ba6214c2599b958b1f /media-libs/wxsvg | |
parent | Version bump, as requested by Joe Kappus in bug #538414. Implement REQUIRED_U... (diff) | |
download | gentoo-2-e1e5aa7ee2e4ef519cadd553b01ec5adb12c32eb.tar.gz gentoo-2-e1e5aa7ee2e4ef519cadd553b01ec5adb12c32eb.tar.bz2 gentoo-2-e1e5aa7ee2e4ef519cadd553b01ec5adb12c32eb.zip |
Version bump. Fixes bug #526490 (fails to build with libav-11).
Signed-off-by: Ryan Hill <rhill@gentoo.org>
(Portage version: 2.2.20/cvs/Linux x86_64, signed Manifest commit with key 957A8463)
Diffstat (limited to 'media-libs/wxsvg')
-rw-r--r-- | media-libs/wxsvg/ChangeLog | 9 | ||||
-rw-r--r-- | media-libs/wxsvg/wxsvg-1.5.4.ebuild | 41 |
2 files changed, 48 insertions, 2 deletions
diff --git a/media-libs/wxsvg/ChangeLog b/media-libs/wxsvg/ChangeLog index 06157681422a..b1149366f054 100644 --- a/media-libs/wxsvg/ChangeLog +++ b/media-libs/wxsvg/ChangeLog @@ -1,6 +1,11 @@ # ChangeLog for media-libs/wxsvg -# Copyright 1999-2014 Gentoo Foundation; Distributed under the GPL v2 -# $Header: /var/cvsroot/gentoo-x86/media-libs/wxsvg/ChangeLog,v 1.48 2014/07/29 17:21:30 ssuominen Exp $ +# Copyright 1999-2015 Gentoo Foundation; Distributed under the GPL v2 +# $Header: /var/cvsroot/gentoo-x86/media-libs/wxsvg/ChangeLog,v 1.49 2015/08/04 23:35:59 rhill Exp $ + +*wxsvg-1.5.4 (04 Aug 2015) + + 04 Aug 2015; Ryan Hill <rhill@gentoo.org> +wxsvg-1.5.4.ebuild: + Version bump. Fixes bug #526490 (fails to build with libav-11). 29 Jul 2014; Samuli Suominen <ssuominen@gentoo.org> -wxsvg-1.1.15.ebuild, -wxsvg-1.2.1.ebuild: diff --git a/media-libs/wxsvg/wxsvg-1.5.4.ebuild b/media-libs/wxsvg/wxsvg-1.5.4.ebuild new file mode 100644 index 000000000000..72e31c59c125 --- /dev/null +++ b/media-libs/wxsvg/wxsvg-1.5.4.ebuild @@ -0,0 +1,41 @@ +# Copyright 1999-2015 Gentoo Foundation +# Distributed under the terms of the GNU General Public License v2 +# $Header: /var/cvsroot/gentoo-x86/media-libs/wxsvg/wxsvg-1.5.4.ebuild,v 1.1 2015/08/04 23:35:59 rhill Exp $ + +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 +} |