diff options
author | Ryan Hill <dirtyepic@gentoo.org> | 2013-06-10 04:03:02 +0000 |
---|---|---|
committer | Ryan Hill <dirtyepic@gentoo.org> | 2013-06-10 04:03:02 +0000 |
commit | 3d8e95a886a5e33786951abe94685fea3e1869ee (patch) | |
tree | da34804233817697cdfec31477abd6acd75104aa /media-libs/wxsvg | |
parent | Add an http fallback, update hunspell patch (diff) | |
download | gentoo-2-3d8e95a886a5e33786951abe94685fea3e1869ee.tar.gz gentoo-2-3d8e95a886a5e33786951abe94685fea3e1869ee.tar.bz2 gentoo-2-3d8e95a886a5e33786951abe94685fea3e1869ee.zip |
Version bump for bug #472508.
Signed-off-by: Ryan Hill <dirtyepic@gentoo.org>
(Portage version: 2.2.0_alpha179/cvs/Linux x86_64, signed Manifest commit with key 957A8463)
Diffstat (limited to 'media-libs/wxsvg')
-rw-r--r-- | media-libs/wxsvg/ChangeLog | 7 | ||||
-rw-r--r-- | media-libs/wxsvg/wxsvg-1.1.15.ebuild | 42 |
2 files changed, 48 insertions, 1 deletions
diff --git a/media-libs/wxsvg/ChangeLog b/media-libs/wxsvg/ChangeLog index 92d49952cd13..f8997dd2155f 100644 --- a/media-libs/wxsvg/ChangeLog +++ b/media-libs/wxsvg/ChangeLog @@ -1,6 +1,11 @@ # ChangeLog for media-libs/wxsvg # Copyright 1999-2013 Gentoo Foundation; Distributed under the GPL v2 -# $Header: /var/cvsroot/gentoo-x86/media-libs/wxsvg/ChangeLog,v 1.43 2013/04/07 09:59:42 ago Exp $ +# $Header: /var/cvsroot/gentoo-x86/media-libs/wxsvg/ChangeLog,v 1.44 2013/06/10 04:03:02 dirtyepic Exp $ + +*wxsvg-1.1.15 (10 Jun 2013) + + 10 Jun 2013; Ryan Hill <dirtyepic@gentoo.org> +wxsvg-1.1.15.ebuild: + Version bump for bug #472508. 07 Apr 2013; Agostino Sarubbo <ago@gentoo.org> wxsvg-1.1.13.ebuild: Stable for x86, wrt bug #464454 diff --git a/media-libs/wxsvg/wxsvg-1.1.15.ebuild b/media-libs/wxsvg/wxsvg-1.1.15.ebuild new file mode 100644 index 000000000000..dc6bf0adeee4 --- /dev/null +++ b/media-libs/wxsvg/wxsvg-1.1.15.ebuild @@ -0,0 +1,42 @@ +# Copyright 1999-2013 Gentoo Foundation +# Distributed under the terms of the GNU General Public License v2 +# $Header: /var/cvsroot/gentoo-x86/media-libs/wxsvg/wxsvg-1.1.15.ebuild,v 1.1 2013/06/10 04:03:02 dirtyepic 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" +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 +} |