diff options
author | Michał Górny <mgorny@gentoo.org> | 2014-06-10 19:22:20 +0000 |
---|---|---|
committer | Michał Górny <mgorny@gentoo.org> | 2014-06-10 19:22:20 +0000 |
commit | ff0f337a3ed680a9d97750f0cdbcdfb04a3a65d2 (patch) | |
tree | 1effcf8198a7c0c84bd33629076d42ba4e819ef1 /media-plugins/gst-plugins-vp8 | |
parent | Enable multilib support, bug #493176. (diff) | |
download | gentoo-2-ff0f337a3ed680a9d97750f0cdbcdfb04a3a65d2.tar.gz gentoo-2-ff0f337a3ed680a9d97750f0cdbcdfb04a3a65d2.tar.bz2 gentoo-2-ff0f337a3ed680a9d97750f0cdbcdfb04a3a65d2.zip |
Enable multilib support, bug #493176.
(Portage version: 2.2.10/cvs/Linux x86_64, signed Manifest commit with key EFB4464E!)
Diffstat (limited to 'media-plugins/gst-plugins-vp8')
-rw-r--r-- | media-plugins/gst-plugins-vp8/ChangeLog | 10 | ||||
-rw-r--r-- | media-plugins/gst-plugins-vp8/gst-plugins-vp8-0.10.23-r2.ebuild | 25 |
2 files changed, 33 insertions, 2 deletions
diff --git a/media-plugins/gst-plugins-vp8/ChangeLog b/media-plugins/gst-plugins-vp8/ChangeLog index bbfff155c382..e27d56c2b884 100644 --- a/media-plugins/gst-plugins-vp8/ChangeLog +++ b/media-plugins/gst-plugins-vp8/ChangeLog @@ -1,6 +1,12 @@ # ChangeLog for media-plugins/gst-plugins-vp8 -# Copyright 1999-2013 Gentoo Foundation; Distributed under the GPL v2 -# $Header: /var/cvsroot/gentoo-x86/media-plugins/gst-plugins-vp8/ChangeLog,v 1.23 2013/06/19 13:39:01 jer Exp $ +# Copyright 1999-2014 Gentoo Foundation; Distributed under the GPL v2 +# $Header: /var/cvsroot/gentoo-x86/media-plugins/gst-plugins-vp8/ChangeLog,v 1.24 2014/06/10 19:22:20 mgorny Exp $ + +*gst-plugins-vp8-0.10.23-r2 (10 Jun 2014) + + 10 Jun 2014; Michał Górny <mgorny@gentoo.org> + +gst-plugins-vp8-0.10.23-r2.ebuild: + Enable multilib support, bug #493176. 19 Jun 2013; Jeroen Roovers <jer@gentoo.org> gst-plugins-vp8-0.10.23-r1.ebuild: diff --git a/media-plugins/gst-plugins-vp8/gst-plugins-vp8-0.10.23-r2.ebuild b/media-plugins/gst-plugins-vp8/gst-plugins-vp8-0.10.23-r2.ebuild new file mode 100644 index 000000000000..2c3daedc22e8 --- /dev/null +++ b/media-plugins/gst-plugins-vp8/gst-plugins-vp8-0.10.23-r2.ebuild @@ -0,0 +1,25 @@ +# Copyright 1999-2014 Gentoo Foundation +# Distributed under the terms of the GNU General Public License v2 +# $Header: /var/cvsroot/gentoo-x86/media-plugins/gst-plugins-vp8/gst-plugins-vp8-0.10.23-r2.ebuild,v 1.1 2014/06/10 19:22:20 mgorny Exp $ + +EAPI="5" + +GST_ORG_MODULE=gst-plugins-bad +inherit eutils gstreamer + +DESCRIPTION="GStreamer decoder for vpx video format" +KEYWORDS="~alpha ~amd64 ~arm ~hppa ~ia64 ~ppc ~ppc64 ~sparc ~x86 ~amd64-fbsd" +IUSE="" + +RDEPEND="media-libs/libvpx[${MULTILIB_USEDEP}]" +DEPEND="${RDEPEND}" + +src_prepare() { + # Fix zero-bitrate vp8 encoding with libvpx-1.1, bug #435282 + epatch "${FILESDIR}/${PN}-0.10.23-libvpx-1.1.patch" + + local pdir=$(gstreamer_get_plugin_dir) + # gstbasevideo has no .pc + sed -e "s:\$(top_builddir)/gst-libs/gst/video/.*\.la:-lgstbasevideo-${SLOT}:" \ + -i "${pdir}"/Makefile.{am,in} || die +} |