Yet another XvMC issue on Mythtv-0.21_p17100 ebuild
Wednesday, May 28th, 2008Just upgraded my Mythtv box to an XFX motherboard with onboard nVidia 7150 (includes HDMI!!), and went to enable XvMC only to find out that video was extremely choppy. After examining output from mythfrontend, I noticed that xvmc-blit and xvmc-opengl were not detected, nor being loaded by mythtv. Thanks to this Gentoo Forums post, the fix is simple.
Edit /usr/portage/media-tv/mythtv-0.21_p17100.ebuild:
src_compile() {
.....
use xvmc && use video_cards_nvidia && use opengl-xvmc && \
myconf="${myconf} --enable-xvmc --enable-xvmc-opengl --disable-xvmcw"
#Add following two lines:
use xvmc && use video_cards_nvidia && \
myconf="${myconf} --xvmc-lib=XvMCNVIDIA --enable-xvmc --disable-xvmcw"
# nvidia-drivers-71 don't support GLX 1.4
Then digest ebuild, and re-merge ![]()