#!/usr/local/bin/bash

#
# installs perl modules for incident.pl from the ports
# freebsd ONLY
#
# Zoidial, Inc.
# Eric Thern
# January 25, 2003 
#

cd /usr/ports/net/p5-Net-Telnet
make install
sleep 3

cd /usr/ports/converters/p5-MIME-Base64
make install
sleep 3

cd /usr/ports/mail/p5-Mail-Sender
make install
sleep 3

cd /root/incident
tar -xzvf Net-Rwhois-0.09.tar.gz
cd Net-Rwhois-0.09
perl Makefile.PL
make
make install

sleep 3

echo "

done installing modules for incident.pl

"



