<!DOCTYPE html PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN">
<html>
<head>
<meta content="text/html;charset=ISO-8859-1" http-equiv="Content-Type">
<title></title>
</head>
<body bgcolor="#ffffff" text="#000000">
Josh wrote:<br>
<span style="white-space: pre;">> <br>
> Thirdly, is there a way to make the LiveTV feed change channels
based<br>
> on the selected guide item? It'd be nice to have a "Change to this
<br>
> channel" option when viewing the guide from LiveTV, instead of the
<br>
> recording options.</span><br>
If you press the Guide button again, it will change to the channel you
want. Alternately, there is a setting to allow select to change the
channel. (I don't remember if its in .14, or only in the cvs version).<br>
<br>
<span style="white-space: pre;">> Any suggestions on a good gamepad
style joystick that works well with<br>
> Linux and Myth? I have a Gameport on my Soundblaster Live card that<br>
> I would like to use, but I've never been successful in getting it
to<br>
> work.</span><br>
Pick up a cheap usb game pad. Those I've found don't require any
special software and present themselves as generic usb gamepads meaning
no extra software is required to make them run.<br>
<span style="white-space: pre;">> <br>
> Finally, is there a tutorial anywhere for compiling the CVS
version <br>
> of MythTV? I was able to resolve the DirectDownload guide problem <br>
> myself, but I'd rather stay with a version that handles things <br>
> natively without my unskilled self dinking with it too much.<br>
> <br>
</span>I use two scripts to make installing the latest cvs version that
much easier: THe first one downloads everything, the second compiles
and installs. Take the text here and put it into the appropriatly
named file, then run chmod +x download.cvs.sh && chmod +x
compile.sh<br>
<br>
-dan<br>
<br>
download.cvs.sh:<br>
#!/bin/sh<br>
<br>
cvs -d :pserver:mythtv:mythtv@cvs.mythtv.org:/var/lib/mythcvs login<br>
<br>
cvs -q -z3 -d :pserver:mythtv:mythtv@cvs.mythtv.org:/var/lib/mythcvs
checkout mythtv <br>
<br>
cvs -q -z3 -d :pserver:mythtv:mythtv@cvs.mythtv.org:/var/lib/mythcvs
checkout mythgallery<br>
cvs -q -z3 -d :pserver:mythtv:mythtv@cvs.mythtv.org:/var/lib/mythcvs
checkout mythgame<br>
cvs -q -z3 -d :pserver:mythtv:mythtv@cvs.mythtv.org:/var/lib/mythcvs
checkout mythmusic<br>
cvs -q -z3 -d :pserver:mythtv:mythtv@cvs.mythtv.org:/var/lib/mythcvs
checkout mythvideo<br>
cvs -q -z3 -d :pserver:mythtv:mythtv@cvs.mythtv.org:/var/lib/mythcvs
checkout mythweather<br>
cvs -q -z3 -d :pserver:mythtv:mythtv@cvs.mythtv.org:/var/lib/mythcvs
checkout mythdvd<br>
cvs -q -z3 -d :pserver:mythtv:mythtv@cvs.mythtv.org:/var/lib/mythcvs
checkout mythbrowser<br>
cvs -q -z3 -d :pserver:mythtv:mythtv@cvs.mythtv.org:/var/lib/mythcvs
checkout mythnews<br>
<br>
compile.sh:<br>
#!/bin/bash<br>
<br>
#export PATH=$<a class="moz-txt-link-freetext" href="PATH:$QTDIR/bin">PATH:$QTDIR/bin</a><br>
#clean up<br>
#rm -rf /usr/local/lib/libmyth*<br>
#rm -rf /usr/include/mythtv<br>
<br>
cd mythtv/<br>
./configure --enable-lcd <br>
qmake<br>
make clean<br>
make distclean<br>
make && make install<br>
<br>
cd ../mythgallery/<br>
qmake<br>
./configure --enable-opengl<br>
make clean<br>
make distclean<br>
make && make install<br>
<br>
cd ../mythgame/<br>
qmake<br>
make clean<br>
make distclean<br>
make && make install<br>
<br>
cd ../mythmusic/<br>
qmake<br>
./configure --enable-sdl --enable-fftw --enable-opengl<br>
make clean<br>
make distclean<br>
make && make install<br>
<br>
cd ../mythvideo/<br>
qmake<br>
make clean<br>
make distclean<br>
make && make install<br>
<br>
cd ../mythweather/<br>
qmake<br>
make clean<br>
make distclean<br>
make && make install<br>
<br>
cd ../mythdvd/<br>
qmake<br>
make clean<br>
make distclean<br>
./configure --enable-all<br>
make && make install<br>
<br>
cd ../mythbrowser/<br>
qmake<br>
./configure<br>
make clean<br>
make distclean<br>
make && make install<br>
<br>
cd ../mythnews/<br>
qmake<br>
./configure<br>
make clean<br>
make distclean<br>
make && make install<br>
<br>
<br>
cd ..<br>
<br>
</body>
</html>