diff options
author | Ilya Tumaykin <itumaykin@gmail.com> | 2015-12-22 18:08:38 +0300 |
---|---|---|
committer | Ilya Tumaykin <itumaykin@gmail.com> | 2015-12-28 15:46:57 +0300 |
commit | 6c77c27d62c17117e5d2bdef4118d35e48e00403 (patch) | |
tree | b04cc2d091546dc43a07301fa4838e9884f4a1dc /media-video | |
parent | media-video/mpv: do USE checks in pkg_pretend (diff) | |
download | gentoo-6c77c27d62c17117e5d2bdef4118d35e48e00403.tar.gz gentoo-6c77c27d62c17117e5d2bdef4118d35e48e00403.tar.bz2 gentoo-6c77c27d62c17117e5d2bdef4118d35e48e00403.zip |
media-video/mpv: better wording in user messages
Package-Manager: portage-2.2.24
Diffstat (limited to 'media-video')
-rw-r--r-- | media-video/mpv/mpv-9999.ebuild | 19 |
1 files changed, 11 insertions, 8 deletions
diff --git a/media-video/mpv/mpv-9999.ebuild b/media-video/mpv/mpv-9999.ebuild index d08c2bbfaa66..c441748169b4 100644 --- a/media-video/mpv/mpv-9999.ebuild +++ b/media-video/mpv/mpv-9999.ebuild @@ -125,26 +125,29 @@ RDEPEND+=" pkg_pretend() { if ! use libass; then - ewarn "You have disabled the libass flag. No OSD or subtitles will be displayed." + ewarn "You have disabled the libass support." + ewarn "OSD and subtitles won't be available." fi if use openal; then - ewarn "You have enabled the openal audio output which is a fallback" - ewarn "and disabled by upstream." + ewarn "You have enabled the openal audio output. Be warned that" + ewarn "this output is considered experimental by upstream." fi if use sdl; then - ewarn "You have enabled the sdl video and audio outputs which are fallbacks" - ewarn "and disabled by upstream." + ewarn "You have enabled the sdl video and audio outputs. Note that" + ewarn "upstream provides these outputs for compatibility reasons only." + ewarn "You probably don't need them under the normal circumstances." fi if use libav; then einfo "You have enabled media-video/libav instead of media-video/ffmpeg." - einfo "Upstream recommends media-video/ffmpeg, as some functionality is not" - einfo "provided by media-video/libav." + einfo "Upstream recommends media-video/ffmpeg, as some functionality" + einfo "is not provided by media-video/libav." fi - einfo "For additional format support you need to enable the support on your" + einfo "mpv optionally supports many different audio and video formats." + einfo "You will need to enable support for the desired formats in your" einfo "libavcodec/libavformat provider:" einfo " media-video/ffmpeg or media-video/libav" } |