krsshs-Power-Mac-G5:~ krssh\$ port -v installed libsdl2-x11 libsdl2-cocoa libplacebo mpv ffmpeg ffmpeg5 ffmpeg7
The following ports are currently installed:
ffmpeg @4.4.6_7+G5+gpl2 (active) requested_variants='+G5' platform='darwin 10' archs='ppc' date='2025-12-31T10:59:48+0300'
ffmpeg5 @5.1.8_1+G5+gpl2 (active) requested_variants='+G5' platform='darwin 10' archs='ppc' date='2025-12-31T11:45:46+0300'
ffmpeg7 @7.1.3_1+gpl2+vmaf (active) requested_variants='' platform='darwin 10' archs='ppc' date='2025-12-31T10:48:09+0300'
libplacebo @7.351.0_0+opengl (active) requested_variants='' platform='darwin 10' archs='ppc' date='2025-12-31T10:59:12+0300'
libsdl2-cocoa @2.32.10_1+oldapi+opengl requested_variants='+oldapi' platform='darwin 10' archs='ppc' date='2025-12-31T11:17:27+0300'
libsdl2-cocoa @2.32.10_1+opengl (active) requested_variants='' platform='darwin 10' archs='ppc' date='2025-12-31T10:35:37+0300'
mpv @0.41.0_0+audiocd+bluray+dvd+libarchive+libmpv+network_ytdlp+opengl+osd+python313+rubberband (active) requested_variants='' platform='darwin 10' archs='ppc' date='2025-12-31T11:01:45+0300'
Did you uninstall `libsdl2-x11`? Or why is it not shown?
In principle, you are supposed to have mpv +x11 (and whatever default variants) and ffmpeg7 +x11 when you wanna use X11 backend. It might work without that, but is untested and not guaranteed.
It is slightly tricky to install everything with +x11 (due to libsdl2 handling, which should be rewritten), but this should work:
Code:
sudo port deactivate active
sudo port -v -N install libsdl-x11
sudo port -v -N install ffmpeg +x11
sudo port -v -N install ffmpeg7 +x11
sudo port -v -N install mpv +x11
That way dependencies should resolve. Otherwise running `sudo port -v -N install mpv +x11` directly will first install one version of libsdl2 and then another will be tried (via a different dependency path), and you get a conflict.