Title: Setup bugzilla on gentoo: Subject: Steps to perpare a bugzilla server on gentoo. By: John Stile cd /var/www/ wget http://ftp.mozilla.org/pub/mozilla.org/webtools/bugzilla-3.0.3.tar.gz tar -zxvpf bugzilla-3.0.3.tar.gz mv bugzilla-3.0.3 BUGZILLA-3_0-STABLE cd BUGZILLA-3_0-STABLE/ ./checksetup.pl /usr/bin/perl5.8.8 -MCPAN -e 'install "Template::Plugin::GD::Image"' /usr/bin/perl5.8.8 -MCPAN -e 'install "Email::Reply"' /usr/bin/perl5.8.8 -MCPAN -e 'install "HTML::Scrubber"' /usr/bin/perl5.8.8 -MCPAN -e 'install "MIME::Parser"' /usr/bin/perl5.8.8 -MCPAN -e 'install "PatchReader"' /usr/bin/perl5.8.8 -MCPAN -e 'install "SOAP::Lite"' /usr/bin/perl5.8.8 -MCPAN -e 'install "Chart::Base"' /usr/bin/perl5.8.8 -MCPAN -e 'install "Email::MIME::Attachment::Stripper"' /usr/bin/perl5.8.8 -MCPAN -e 'install "Email::Send"' ./checksetup.pl # Need to compare old custom templates against new. for i in `find ./custom -type f -print`; do old_file=`echo $i |sed 's/custom/default/'`; kdiff3 $i $old_file; done