#!/bin/sh #Get current Directory current_dir=`pwd` echo "Building Firefox Plugins....Please Wait" cd /usr/ports/www/linuxpluginwrapper make install make clean cp /usr/local/share/examples/linuxpluginwrapper/libmap.conf-FreeBSD5-stable /etc/libmap.conf #Move back to the directory we came from cd $current_dir echo "Done" exit 0