For those of those of us slow learners in the group.... I have everything installed and looking just as I wish. I am using Floobs latest version with the latest version of AM. I seem to have the exit but leaving a game. Sounds like I need to recompile...but am very unsure of EXACTLY which of the steps below to follow to only compile... Sorry, if I am dense but I have spent so much time setting things up I am fearful of making a major error...thank you for setting me straight.
Steps to install Attract-Mode on Raspbian Jessie:
Create a build environment
cd ~
mkdir develop
Install "sfml-pi" and Attract-Mode dependencies
sudo apt-get install cmake libflac-dev libogg-dev libvorbis-dev libopenal-dev libjpeg62-turbo-dev libfreetype6-dev libudev-dev libfontconfig1-dev
Download and build sfml-pi
cd ~/develop
git clone --depth 1
https://github.com/mickelson/sfml-pi sfml-pi
mkdir sfml-pi/build;cd sfml-pi/build
cmake .. -DSFML_RPI=1 -DEGL_INCLUDE_DIR=/opt/vc/include -DEGL_LIBRARY=/opt/vc/lib/libEGL.so -DGLES_INCLUDE_DIR=/opt/vc/include -DGLES_LIBRARY=/opt/vc/lib/libGLESv1_CM.so
sudo make install
sudo ldconfig
Install (or download and build) FFmpeg
Method 1 (easiest): use provided packages (software video decoding only)
sudo apt-get install libavutil-dev libavcodec-dev libavformat-dev libavfilter-dev libswscale-dev libavresample-dev
Method 2: build FFmpeg with mmal support (hardware accelerated video decoding)
cd ~/develop
git clone --depth 1 git://source.ffmpeg.org/ffmpeg.git
cd ffmpeg
./configure --enable-mmal --disable-debug --enable-memalign-hack --enable-shared
make
sudo make install
sudo ldconfig
Download and build Attract-Mode
cd ~/develop
git clone --depth 1
https://github.com/mickelson/attract attract
cd attract
make USE_GLES=1
sudo make install