diff options
author | Pacho Ramos <pacho@gentoo.org> | 2015-12-29 14:40:58 +0100 |
---|---|---|
committer | Pacho Ramos <pacho@gentoo.org> | 2015-12-29 14:40:58 +0100 |
commit | 87e7fa87c6819ebac10c103af9720a05c65f18e9 (patch) | |
tree | b90e490a1f1e96b09186906945abc88435f150b8 /media-plugins | |
parent | media-plugins/gst-plugins-libav: We need to rely on internal ffmpeg copy for ... (diff) | |
download | gentoo-87e7fa87c6819ebac10c103af9720a05c65f18e9.tar.gz gentoo-87e7fa87c6819ebac10c103af9720a05c65f18e9.tar.bz2 gentoo-87e7fa87c6819ebac10c103af9720a05c65f18e9.zip |
media-plugins/gst-plugins-vaapi: Version bump
Package-Manager: portage-2.2.26
Diffstat (limited to 'media-plugins')
-rw-r--r-- | media-plugins/gst-plugins-vaapi/Manifest | 1 | ||||
-rw-r--r-- | media-plugins/gst-plugins-vaapi/gst-plugins-vaapi-0.7.0.ebuild | 60 |
2 files changed, 61 insertions, 0 deletions
diff --git a/media-plugins/gst-plugins-vaapi/Manifest b/media-plugins/gst-plugins-vaapi/Manifest index fd0de24966c8..7891d839203c 100644 --- a/media-plugins/gst-plugins-vaapi/Manifest +++ b/media-plugins/gst-plugins-vaapi/Manifest @@ -1 +1,2 @@ DIST gstreamer-vaapi-0.6.1.tar.bz2 1403160 SHA256 36fc8afeb7ec679ea8df34671a34dba57dcc0b66255fb0991acb485e3efd67b3 SHA512 94dab46414da2b43b9f0fc119c8d901848ad637b1161644888072a733423c60c2b858a37467fc26a4341133c88940304fc70fd328dde9ac0bfba129722771ea8 WHIRLPOOL 49efe4f708810bc786c78f0950ed8249bcbb44113f8a3ce3518ef26eb5168397053314030d324b45346cf50c539d92c0aca5993e949b572a74772da025c4a7af +DIST gstreamer-vaapi-0.7.0.tar.bz2 2362818 SHA256 abe8ea4dfb3177d038b38610537c651b943707ed110882782a19b95a9ea04a92 SHA512 8594b97320b34c586fde0ab76f44cd6b8ee2404101259a65d2a457a89d75f158368c35471d85d82cd47beb5163fb075142fc2aeb0364566e1da7971a98a92357 WHIRLPOOL 4624d59a88482896da43da940c203181dcf66cd1ede82faa45efe200d30e1efda6872f08b758df2deadbce1fee476815ef0653f45234da81c1590c953ca613d5 diff --git a/media-plugins/gst-plugins-vaapi/gst-plugins-vaapi-0.7.0.ebuild b/media-plugins/gst-plugins-vaapi/gst-plugins-vaapi-0.7.0.ebuild new file mode 100644 index 000000000000..c2d0d53f2f8b --- /dev/null +++ b/media-plugins/gst-plugins-vaapi/gst-plugins-vaapi-0.7.0.ebuild @@ -0,0 +1,60 @@ +# Copyright 1999-2015 Gentoo Foundation +# Distributed under the terms of the GNU General Public License v2 +# $Id$ + +EAPI="5" + +inherit eutils multilib-minimal + +MY_PN="gstreamer-vaapi" +DESCRIPTION="Hardware accelerated video decoding through VA-API plugin" +HOMEPAGE="https://github.com/01org/gstreamer-vaapi" +SRC_URI="http://www.freedesktop.org/software/vaapi/releases/${MY_PN}/${MY_PN}-${PV}.tar.bz2" + +LICENSE="LGPL-2.1" +SLOT="1.0" +KEYWORDS="~amd64 ~x86" +IUSE="+drm opengl wayland +X" +REQUIRED_USE="|| ( drm opengl wayland X )" + +RDEPEND=" + >=dev-libs/glib-2.34.3:2[${MULTILIB_USEDEP}] + >=media-libs/gstreamer-1.6:1.0[${MULTILIB_USEDEP}] + >=media-libs/gst-plugins-base-1.6:1.0[${MULTILIB_USEDEP}] + >=media-libs/gst-plugins-bad-1.6:1.0[opengl?,${MULTILIB_USEDEP}] + >=x11-libs/libva-1.4.0[drm?,X?,opengl?,wayland?,${MULTILIB_USEDEP}] + drm? ( + >=virtual/libudev-208:=[${MULTILIB_USEDEP}] + >=x11-libs/libdrm-2.4.46[${MULTILIB_USEDEP}] ) + X? ( + >=x11-libs/libX11-1.6.2[${MULTILIB_USEDEP}] + >=x11-libs/libXrandr-1.4.2[${MULTILIB_USEDEP}] ) + opengl? ( + >=virtual/opengl-7.0-r1[${MULTILIB_USEDEP}] + >=x11-libs/libX11-1.6.2[${MULTILIB_USEDEP}] + >=x11-libs/libXrandr-1.4.2[${MULTILIB_USEDEP}] ) + wayland? ( >=dev-libs/wayland-1.0.6[${MULTILIB_USEDEP}] ) +" +DEPEND="${RDEPEND} + >=dev-util/gtk-doc-am-1.12 + >=virtual/pkgconfig-0-r1[${MULTILIB_USEDEP}] +" + +S="${WORKDIR}/${MY_PN}-${PV}" + +multilib_src_configure() { + ECONF_SOURCE=${S} \ + econf \ + --enable-builtin-libvpx=no \ + --disable-static \ + --enable-egl \ + $(use_enable drm) \ + $(use_enable opengl glx) \ + $(use_enable wayland) \ + $(use_enable X x11) +} + +multilib_src_install_all() { + einstalldocs + prune_libtool_files --modules +} |