diff options
author | Ionen Wolkens <ionen@gentoo.org> | 2023-07-15 17:57:51 -0400 |
---|---|---|
committer | Ionen Wolkens <ionen@gentoo.org> | 2023-07-15 18:12:11 -0400 |
commit | 4d9d50d4346a0a584780a3da20e1366d49231051 (patch) | |
tree | fcc9b0012ce6d063e85f25564089f41a82e71b2c /media-video | |
parent | sci-mathematics/flint: drop 2.8.4, 2.8.5 (diff) | |
download | gentoo-4d9d50d4346a0a584780a3da20e1366d49231051.tar.gz gentoo-4d9d50d4346a0a584780a3da20e1366d49231051.tar.bz2 gentoo-4d9d50d4346a0a584780a3da20e1366d49231051.zip |
media-video/mpv: loosen libplacebo requirement in live
Using a older libplacebo is possible, but gpu-next support will
be missing. Lower bound felt harmless to ensure all features,
but other packages (e.g. ffmpeg) could potentially need to set
temporary upper bounds like mpv-0.35 did and this will create
conflicts.
Not that it matters that much while this is only in mpv-9999.
Signed-off-by: Ionen Wolkens <ionen@gentoo.org>
Diffstat (limited to 'media-video')
-rw-r--r-- | media-video/mpv/mpv-9999.ebuild | 7 |
1 files changed, 5 insertions, 2 deletions
diff --git a/media-video/mpv/mpv-9999.ebuild b/media-video/mpv/mpv-9999.ebuild index 946f87643e68..3290819e1b60 100644 --- a/media-video/mpv/mpv-9999.ebuild +++ b/media-video/mpv/mpv-9999.ebuild @@ -86,7 +86,7 @@ COMMON_DEPEND=" lcms? ( media-libs/lcms:2 ) libcaca? ( media-libs/libcaca ) libplacebo? ( - >=media-libs/libplacebo-5.266:=[opengl?,vulkan?] + >=media-libs/libplacebo-4.157:=[opengl?,vulkan?] egl? ( media-libs/libplacebo[opengl] ) ) lua? ( ${LUA_DEPS} ) @@ -204,7 +204,6 @@ src_configure() { $(meson_feature jpeg) $(meson_feature libcaca caca) $(meson_feature libplacebo) - $(meson_feature libplacebo libplacebo-next) $(meson_feature mmal rpi-mmal) $(meson_feature sdl sdl2-video) $(meson_feature sixel) @@ -242,10 +241,14 @@ src_configure() { # notable options left to automagic #dmabuf-wayland: USE="drm wayland" + plus memfd_create support + #libplacebo-next: USE="libplacebo" + >=libplacebo-5.266 #vulkan-interop: USE="libplacebo vulkan" + ffmpeg-9999 currently # TODO?: perhaps few more similar compound options should be left auto ) + has_version '>=media-libs/libplacebo-5.266' || + ewarn "${PN}'s gpu-next video output requires ${_} to be used" + meson_src_configure } |