NAME
Bundle::Bugzilla - A bundle of the modules required for Bugzilla.
SYNOPSIS
perl -MCPAN -e 'install Bundle::Bugzilla'
CONTENTS
DBI
Data::Dumper
DBD::mysql
Chart::Base
Date::Parse
DESCRIPTION
This bundle installs the prerequisites for Bugzilla.
After installing this bundle, it is recommended that you run the magic checksetup.pl script to check that all modules are in place and setup the tables in the database. Then, you will need to edit the file called 'localconfig' with your settings for bugzilla. After this, run checksetup.pl again and log in to your installation and make yourself an account. Run checksetup.pl again and you will become the superuser for your bugzilla installation. Still confused? Read the INSTALL and README for more information.
- DBI This module is used to connect to the database that Bugzilla uses to store its information.
- DBD::mysql This module is used to connect to the mysql database that Bugzilla uses to store its information.
- Chart::Base Used to create the bug charts in the reporting functions in reports.cgi.
- Date::Parse Enables SQL-style search query statements for Bugzilla.
AUTHOR
Zach Lipton, <zach\@zachlipton.com>
EOF close BZPM; }
if ($optionalmodules eq 'n') {
open BZPM, '>>Bugzilla.pm';
print BZPM <<EOF;
package Bundle::Bugzilla;
\$VERSION = '0.01';
1;
__END__
NAME
Bundle::Bugzilla - A bundle of the modules required for Bugzilla.
SYNOPSIS
perl -MCPAN -e 'install Bundle::Bugzilla'
CONTENTS
DBI
Data::Dumper
DBD::mysql
Date::Parse
DESCRIPTION
This bundle installs the prerequisites for Bugzilla.
After installing this bundle, it is recommended that you run the magic checksetup.pl script to check that all modules are in place and setup the tables in the database. Then, you will need to edit the file called 'localconfig' with your settings for bugzilla. After this, log in to your installation and make yourself an account. Run checksetup.pl again and you will become the superuser for your bugzilla installation. Still confused? Read the INSTALL and README for more information.
- DBI This module is used to connect to the database that Bugzilla uses to store its information.
- DBD::mysql This module is used to connect to the mysql database that Bugzilla uses to store its information.
- Date::Parse Enables SQL-style search query statements for Bugzilla.
AUTHOR
Zach Lipton, <zach\@zachlipton.com>
EOF
close BZPM;
}
}
sub writemakefile() { WriteMakefile( 'NAME' => 'Bundle::Bugzilla', 'VERSION_FROM' => 'Bugzilla.pm', # finds $VERSION 'LIBS' => [''], # e.g., '-lm' "dist" => { SUFFIX => ".gz", DIST_DEFAULT => 'all tardist', COMPRESS => "gzip -9f", ZIP_FLAGS => '-pr9' }, 'DEFINE' => '', # e.g., '-DHAVE_SOMETHING' 'INC' => '', # e.g., '-I/usr/include/other' ); }
2 POD Errors
The following errors were encountered while parsing the POD:
- Around line 150:
You forgot a '=back' before '=head1'
- Around line 218:
You forgot a '=back' before '=head1'