> I am having a similar issue... > libqt3-mt conflicts with libqt3c102-mt > > mythtv-frontent wants libqt3c102-mt and the plugins like mythvideo want > libqt3-mt. > What can I do to resolve the conflict?
Since there are no current binary packages made by mdz (latest version 0.18.1-2) you'll have to use mdz's sources (0.18.1-4) which should work for every debian user. It's quite easy: Add the mythtv source line to /etc/apt/sources.list as root and cd ~ (to users home) mkdir mythbuild cd mythbuild apt-get source mythtv apt-get build-dep mythtv (until everything's fine) cd mythtv dpkg-buildpackage -rfakeroot -uc -us cd .. su dpkg -i *.deb If it still complains, take a look at debian/control (where you'll find all dependencies). It is also a good idea to change the configure line in debian/rules (--enable everything you need, --disable anything you don't need, remove the wrong cpu type...). That's how my ./configure looks like in debian/rules (using dvb-t): ./configure --enable-proc-opt --prefix=/usr --disable-audio-arts --disable-audio-jack --disable-joystick-menu --disable-firewire --disable-ivtv --enable-dvb --enable-dvb-eit --disable-xrandr --disable-altivec --enable-memalign-hack --compile-type=debug _______________________________________________ mythtv-users mailing list [email protected] http://mythtv.org/cgi-bin/mailman/listinfo/mythtv-users
