#!/bin/bash
# ----------------------------------------------------------------------------------
# Debian-nonFree-eXtrass
# 
# This script was created by Mey Ull (mey@mey-online.com.ar)
# Visit the DNX home page at http://www.mey-online.com.ar/dnx
# Feel free to modify this script under the GPL v3 license allways
# respect the credits. All the changes can be published!!!
#
# Version: 0.1 (January 25, 2010)
# ----------------------------------------------------------------------------------

# funtions
configurar(){
   echo -n "Creating sources list backup..."
   cp /etc/apt/sources.list /etc/apt/sources.list.bkp &> dnx.log
   echo " Done"
   echo -n "Adding and configurating Multimedia Repositories..."
   echo "deb http://ftp.debian.org/debian lenny main contrib non-free" >> /etc/apt/sources.list
   echo "deb http://www.debian-multimedia.org lenny main" >> /etc/apt/sources.list
   wget http://www.debian-multimedia.org/pool/main/d/debian-multimedia-keyring/debian-multimedia-keyring_2008.10.16_all.deb &> dnx.log
   dpkg -i debian-multimedia-keyring_2008.10.16_all.deb  &> dnx.log
   echo " Done"
   rm debian-multimedia-keyring_2008.10.16_all.deb
   }

instalar(){
   echo -n "Updating repository information..."
   apt-get update  &> dnx.log
   echo " Done"
   echo -n "Starting the instalation..."
   apt-get -y install ffmpeg flashplayer-mozilla libcurl3 flashplugin-nonfree-extrasound freepats gstreamer0.10-ffmpeg gstreamer0.10-pitfdll gstreamer0.10-plugins-bad gstreamer0.10-plugins-ugly icedtea-gcjwebplugin libaccess-bridge-java libavcodec51 libavformat52 libavformat52 libcdaudio1 libdc1394-22 libdvdnav4 libdvdread3 libfftw3-3 libgif4 libid3tag0 libiptcdata0 libmms0 libmp4v2-0 libmpeg2-4 libmusicbrainz4c2a libneon27-gnutls libofa0 libopenspc0 libpostproc51 libsidplay1 libsndfile1 libsoundtouch1c2 libswscale0 libwildmidi0 openjdk-6-jre openjdk-6-jre-headless openjdk-6-jre-lib rhino ttf-arphic-uming ttf-baekmuk ttf-bengali-fonts ttf-devanagari-fonts ttf-gujarati-fonts ttf-indic-fonts ttf-kannada-fonts ttf-kochi-gothic ttf-liberation ttf-malayalam-fonts ttf-mscorefonts-installer ttf-oriya-fonts ttf-punjabi-fonts ttf-sazanami-mincho ttf-tamil-fonts ttf-telugu-fonts tzdata-java unrar  >> dnx.log
   echo " Done"
}

clear


echo "   +------------------------------------------------------------------------+"
echo "   |                             ____  _   ___  __                          |"
echo "   |                            / __ \/ | / / |/ /                          |"
echo "   |                           / / / /  |/ /|   /                           |"
echo "   |                          / /_/ / /|  //   |                            |"
echo "   |                         /_____/_/ |_//_/|_|                            |"
echo "   |                                                         Version: 0.1   |"
echo "   +------------------------------------------------------------------------+"
echo ""
echo "       Debian nonFee eXtras"
echo "       Created by Mey Ull - mey(AT)mey-online.com.ar  - Argentina"
echo "       View details and license in http://www.mey-online.com.ar/dnx"
echo "       Version: 0.1 (January, 25 of 2010)"
echo ""

select opcion in 'Full Instalation' 'Codecs Instalation' 'Exit'
do
case "$opcion" in
    'Full Instalation')
        configurar
instalar 
exit 0
         ;;
    'Codecs Instalation')
        instalar
exit 0
         ;;
    'Exit')
         exit 0
         ;;
    *)
;;
esac
done
