diff options
author | Ilya Tumaykin <itumaykin@gmail.com> | 2015-12-22 20:04:38 +0300 |
---|---|---|
committer | Ilya Tumaykin <itumaykin@gmail.com> | 2015-12-28 15:47:12 +0300 |
commit | 7bb4635266f6c9012e7b4090288a2b47df74416b (patch) | |
tree | 6c07eec411d677c1cb557a6a0e06bdf2fd340511 /media-video | |
parent | media-video/mpv: sort use_enable statements as in configure script (diff) | |
download | gentoo-7bb4635266f6c9012e7b4090288a2b47df74416b.tar.gz gentoo-7bb4635266f6c9012e7b4090288a2b47df74416b.tar.bz2 gentoo-7bb4635266f6c9012e7b4090288a2b47df74416b.zip |
media-video/mpv: explicitly disable unsupported options
Similar idea was submitted by Vindex17 in PR #318.
This includes static build and APIs from MacOS and Windows.
Package-Manager: portage-2.2.24
Diffstat (limited to 'media-video')
-rw-r--r-- | media-video/mpv/mpv-9999.ebuild | 5 |
1 files changed, 5 insertions, 0 deletions
diff --git a/media-video/mpv/mpv-9999.ebuild b/media-video/mpv/mpv-9999.ebuild index 87477cf0f480..637d7f6fd7e6 100644 --- a/media-video/mpv/mpv-9999.ebuild +++ b/media-video/mpv/mpv-9999.ebuild @@ -161,6 +161,7 @@ src_configure() { $(use_enable libmpv libmpv-shared) --disable-libmpv-static + --disable-static-build --disable-build-date # Create reproducible build --disable-optimize # Do not add '-O2' to CFLAGS --disable-debug-build # Do not add '-g' to CFLAGS @@ -201,8 +202,12 @@ src_configure() { $(use_enable jack) $(use_enable openal) $(use_enable alsa) + --disable-coreaudio + --disable-dsound + --disable-wasapi # Video outputs + --disable-cocoa $(use_enable wayland) $(use_enable X x11) $(use_enable xscreensaver xss) |