Added missing 048 $2, new in last year's MARC 21 revision; and changed
[koha.git] / Makefile.PL
1 # Copyright 2005 MJ Ray and koha development team
2 #
3 # This file is part of Koha.
4 #
5 # Koha is free software; you can redistribute it and/or modify it under the
6 # terms of the GNU General Public License as published by the Free Software
7 # Foundation; either version 2 of the License, or (at your option) any later
8 # version.
9 #
10 # Koha is distributed in the hope that it will be useful, but WITHOUT ANY
11 # WARRANTY; without even the implied warranty of MERCHANTABILITY or FITNESS FOR
12 # A PARTICULAR PURPOSE.  See the GNU General Public License for more details.
13 #
14 # You should have received a copy of the GNU General Public License along with
15 # Koha; if not, write to the Free Software Foundation, Inc., 59 Temple Place,
16 # Suite 330, Boston, MA  02111-1307 USA
17 #
18 # Current maintainer MJR slef at users.sourceforge.net
19 # See http://www.koha.org/wiki/?page=KohaInstaller
20
21 use ExtUtils::MakeMaker;
22
23 die "perl 5.6.1 or later required" unless ($] >= 5.006001);
24
25 WriteMakefile(
26     NAME => 'Koha',
27     DISTNAME => 'koha',
28     VERSION => '3.2.0',
29     NO_META => 1,
30     PREREQ_PM => {
31         'DBI' => 1,
32         'Date::Manip' => 1,
33         'DBD::MySQL' => 1,
34         'HTML::Template::Pro' => 1,
35         'Digest::MD5' => 1,
36         'MARC::Record' => 2.0,
37         'MARC::Charset' => 0.95,
38         'MARC::File::XML' => 0.83,
39         'Mail::Sendmail' => 1,
40         'PDF::API2' => 1,
41         'Net::LDAP' => 1,
42        XML::Simple=>1,
43         'XML::LibXML' => 1.58
44         },
45    CONFIGURE => sub {
46      # Figure out options here?
47      return { macro => { 'export TEST' => '755' } }
48      },
49    PMLIBDIRS => [ '.' ],
50    PL_FILES => { # generator => target
51      'opac/getfromintranet.PL' => ['$(INST_LIBDIR)/opac/cgi-bin/detail.pl','$(INST_LIBDIR)/opac/cgi-bin/moredetail.pl','$(INST_LIBDIR)/opac/cgi-bin/search.pl','$(INST_LIBDIR)/opac/cgi-bin/subjectsearch.pl','$(INST_LIBDIR)/opac/cgi-bin/logout.pl'],
52      'misc/koha.conf.PL' => '$(INST_LIBDIR)/../etc/koha.conf',
53      'misc/apache-koha.conf.PL' => '$(INST_LIBDIR)/../etc/apache-koha.conf',
54      'misc/koha.sql.PL' => '$(INST_LIBDIR)/intranet/scripts/koha.sql',
55      'z3950/z3950-daemon-options.PL' => '$(INST_LIBDIR)/intranet/scripts/z3950daemon/z3950-daemon-options',
56      # fake target to check permissions
57      'misc/chmod.PL' => '$(INST_LIBDIR)/fake-target'
58      }
59    # need to set ownerships
60    # need to load koha.sql
61    # need to link koha-httpd.conf
62    # need to start z3950-daemon
63 );
64
65 sub MY::libscan {
66   my ($self,$path) = @_;
67   
68   # set up the recursion
69   if (-d $path) { 1; }
70   elsif ($path !~ /\//) { $path = ''; }
71   # from here
72   # reimplementation of buildrelease and Install::installfiles
73   # ban some shell specials too
74   elsif ($path =~ /(\/CVS\/|\.(bak|orig|PL)$|\/,|\/t\/|[^\$]\(| )/) { $path = ''; }
75   elsif (
76     $path =~ s:\)/misc:\)/intranet/scripts: ||
77     $path =~ s:\)/updater:\)/intranet/scripts/updater: ||
78     $path =~ s:\)/z3950/(processz3950queue|.*sh):\)/intranet/scripts/z3950daemon/\1: ||
79     $path =~ s:\)/z3950:\)/intranet/cgi-bin/z3950: ||
80     $path =~ s:\)/koha-tmpl/intranet-tmpl:\)/intranet/htdocs/intranet-tmpl: ||
81     $path =~ s:\)/koha-tmpl/intranet.html:\)/intranet/htdocs/index.html: ||
82     $path =~ s:\)/koha-tmpl/opac-tmpl:\)/opac/htdocs/opac-tmpl: ||
83     $path =~ s:\)/koha-tmpl/opac.html:\)/opac/htdocs/index.html: ||
84     $path =~ s:\)/opac:\)/opac/cgi-bin:
85     ) { 1; }
86   elsif ($path !~ /\.p[lm]$/) { $path = ''; }
87   elsif ($path !~ /\)\/C4/) { $path =~ s!/!/intranet/cgi-bin/!; }
88
89   #print STDERR $path."\n";
90   
91   return($path);
92   
93   }