I found a couple of problems and some solutions.
First of all. You don't get shout support through installing vlc through the synaptic package manager on 7.10 Gutsy. It doesn't have support for sending to a shout server so you have to download the binaries and configure the third part support yourself.
I found a really good package here that doesn't have any issues:
https://launchpad.net/ubuntu/gutsy/+sou ... 0ubuntu5.1
If you have found a package else where you have to tar the package and navigate to modules/access_output/shout.c
open up the file in a text editor and find the line: #include <shout.h> change it to #include <shout/shout.h> and your good to go.
Once you have the package and have
tar xvfz vlc-0.8.6.release.c
...or what ever the package name is
you have to configure the application so it can access all the plugins on you system. Many of the plugins vlc uses may or may not be installed and since we are doing it without the synaptic package manager, you have to figure out which plugins you need and which you can avoid. You may have to install some of them if they aren't available on your system. Vlc is rather useless without them so it might be a good idea to have a look at it.
Anyway! change directories:
cd vlc-0.8.6.release.c
configure vlc:
./configure --enable-x11 --enable-xvideo --disable-gtk --enable-sdl --enable-ffmpeg --with-ffmpeg-mp3lame --enable-mad --enable-libdvbpsi --enable-a52 --enable-dts --enable-libmpeg2 --enable-dvdnav --enable-faad --enable-vorbis --enable-ogg --enable-theora --enable-faac --enable-mkv --enable-freetype --enable-fribidi --enable-speex --enable-flac --enable-live555 --enable-caca --enable-skins --enable-skins2 --enable-alsa --disable-kde --enable-qt --enable-wxwindows --enable-ncurses --enable-release --enable-shout
compile:
make
install:
make install
Check for shout output support:
vlc -l | grep shout
You will get something like this:
VLC media player 0.8.6a Janus
access_output_shout IceCAST output
playlist New winamp 5.2 shoutcast import
shout Shoutcast radio listings
shout Shoutcast TV listings
The listings may turn up two times if your doing it from the same folder as the one you installed vlc from.
(you may have to do this as root or with sudo depending on where you are installing it)
note that if you get errors, it is because there is a plugin you haven't installed. Open up System-Administration and Synaptic package manager and have a search for what ever is missing. Search for the whole name or part of the name or what ever or in worst case scenario install all of them. That will most likely help you out. Sometimes you might find support for something you need in not so lilky places, but all of the packages should be available if you have set your repositories right. (earlier post)