#!/bin/sh #Get current Directory current_dir=`pwd` echo "Building Mplayer....Please Wait" cd /usr/ports/multimedia/mplayer/ make WITH_DVD=yes WITH_LIBDVDNAV=yes WITH_SDL=yes WITH_SDL_IMAGE=yes WITH_XVID=yes install make clean echo "Building Front End Kplayer...." cd /usr/ports/multimedia/kplayer/ make install make clean #Return to the directory where we started from cd $current_dir echo "Done" exit 0