Adding Biblio::EndNote dep
[koha_fer] / Makefile.PL
index b2ec933..c9f6772 100755 (executable)
@@ -17,7 +17,8 @@
 #
 # Current maintainer MJR http://mjr.towers.org.uk/
 # See http://www.koha.org/wiki/?page=KohaInstaller
-
+#
+# 2007-11-05 Corrected CGI copy to include entire 'installer' subdir structure. -fbcit
 use ExtUtils::MakeMaker;
 use POSIX;
 
@@ -95,9 +96,11 @@ WriteMakefile(
     AUTHOR => 'Koha Developers <koha-devel@nongnu.org>',
     NO_META => 1,
     PREREQ_PM => {
+'Biblio::EndnoteStyle' => 0.05,
 'CGI' => 3.15,
 'CGI::Carp' => 1.29,
 'CGI::Session' => '4.10',
+'Class::Factory::Util' => 1.7,
 'Class::Accessor' => 0.30,
 'DBD::mysql' => 3.0008,
 'DBI' => 1.53,
@@ -118,33 +121,36 @@ WriteMakefile(
 'List::Util' => 1.18,
 'Locale::Language' => 2.07,
 'MARC::Charset' => 0.95,
+'MARC::Crosswalk::DublinCore' => 0.03,
 'MARC::File::XML' => 0.86,
 'MARC::Record' => 1.38,
+'MARC::Crosswalk::DublinCore' => 0.02,
 'MIME::Base64' => 3.07,
 'MIME::QuotedPrint' => 3.07,
 'Mail::Sendmail' => 0.79,
+'Net::Z3950::ZOOM' => 1.16,
 'PDF::API2' => 2.000,
 'PDF::API2::Page' => 2.000,
 'PDF::API2::Util' => 2.000,
 'PDF::Reuse' => 0.33,
 'PDF::Reuse::Barcode' => 0.05,
 'POSIX' => 1.09,
-'Schedule::At' => 1.06',
+'Schedule::At' => 1.06,
 'Term::ANSIColor' => 1.10,
 'Test' => 1.25,
 'Test::Harness' => 2.56,
 'Test::More' => 0.62,
-'Test::CSV' => 0.01,
+'Text::CSV' => 0.01,
 'Text::Wrap' => 2005.082401,
 'Time::HiRes' => 1.86,
 'Time::localtime' => 1.02,
 'Unicode::Normalize' => 0.32,
 'XML::Dumper' => 0.81,
 'XML::LibXML' => 1.59,
+'XML::LibXSLT' => 1.63,
 'XML::SAX::ParserFactory' => 1.01,
 'XML::Simple' => 2.14,
 'XML::RSS' => 1.31,
-'ZOOM' => 1.16,
         },
 
        # File tree mapping
@@ -208,7 +214,7 @@ CGIs are copied to $(PREFIX)/lib/cgi-bin/koha/
 and other scripts to koha/
 
 =cut
-       foreach my $src ("mainpage.pl","help.pl",glob("*/*.pl"),glob("installer/*.pm"),glob("*/*/*.pl"),glob("*/*/*/*.pl")) {
+       foreach my $src ("mainpage.pl","help.pl","kohaversion.pl",glob("*/*.pl"),glob("installer/*"),glob("installer/*/*/*/*"),glob("*/*/*.pl"),glob("*/*/*/*.pl")) {
                if ($src =~ /(misc|updater|rss)\//) {
                        $result{$src} = '$(INST_LIBDIR)/koha/'.$src;
                } else {
@@ -225,10 +231,10 @@ Templates are copied to koha/templates,
 
 =pod
 
-excluding non-files, CVS files and whitespace in filenames.
+excluding non-files and whitespace in filenames.
 
 =cut
-               if ((-f $src) && ($src !~ /(\/CVS\/|\s)/)) {
+               if ((-f $src) && ($src !~ /(\s)/)) {
                        $result{$src} = '$(INST_LIBDIR)/koha/templates/'.$src;
                }
        }