File: Makefile.PL

package info (click to toggle)
swish-e 2.4.3-1
  • links: PTS
  • area: main
  • in suites: sarge
  • size: 7,248 kB
  • ctags: 7,642
  • sloc: ansic: 47,385; sh: 8,502; perl: 5,101; makefile: 719; xml: 9
file content (296 lines) | stat: -rw-r--r-- 8,092 bytes parent folder | download | duplicates (3)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
#!/usr/bin/perl -w

use strict;
use ExtUtils::MakeMaker;
use Config;         # for path separator
use File::Spec;     # for catpath
use File::Basename; # for locating swish-e binary based on location of swish-config

# $Id: Makefile.PL,v 1.16 2004/11/18 21:26:19 whmoseley Exp $

#----------------------------------------------------------------------------------
# Default settings

my %make_maker_opts = (
    NAME            => 'SWISH::API',
    VERSION_FROM    => 'API.pm',
    AUTHOR          => 'Bill Moseley',
    ABSTRACT        => 'Perl interface to the swish-e search library',

    # Set LIBS and INC from swish-confg

    NORECURS        => 1,          # keep it from recursing into subdirectories
    DIR             => [],
    XSPROTOARG      => '-noprototypes',
    PREREQ_PM       => {
        'File::Spec'    => '0.8',
    },
    test          => {
        TESTS         => 't/*.t',
    },
    clean           => {
        FILES            => join( ' ', qw(
            t/index.swish-e
            t/index.swish-e.prop
        )),
    },
);

#return; # DEBIAN: interactive compile forbidden !

my $SWISH_BINARY = '../src/swish-e';
my $SWISH_CONFIG = '../swish-config';
my $MIN_VERSION  = '2.4.3';


my @valid_params = qw/ SWISHBINDIR SWISHHELP SWISHIGNOREVER SWISHSKIPTEST /;




my $help = <<EOF;

SWISH::API build script.

The swish-config program is required to set libraries and include paths.
If swish-config is not in your PATH then use SWISHBINDIR

Makefile.PL options:

    SWISHBINDIR     = full path to swish-e bin directory
    SWISHIGNOREVER  = don't test swish-e version
    SWISHHELP       = print this message
    SWISHSKIPTEST   = create dummy tests for make test.  Don't use...

Can be either environment variables or passed on command line like:

    perl Makefile.PL SWISHBINDIR=/usr/local/bin

EOF

$SIG{__DIE__} = sub {
    print STDERR "\n  ** ERROR: ", @_;
    print STDERR "  Run perl Makefile.PL SWISHHELP for options\n\n";
    exit 1;
};

#----------------------------------------------------------------------------------

# Grab any options passed in on the command line.
# Swish variables get placed in $ENV.

my %config = load_command_line( @valid_params );

if ( exists $ENV{SWISHHELP} ) {
    print $help;
    exit 0;
}


# Grab output from swish-config -- this is required;

my $swish_config_path = "../swish-config"; #find_swish_config( $SWISH_CONFIG );
my %swish_config ;# read_swish_config( $swish_config_path );
$swish_config{VERSION} = "";
$swish_config{LIBS}    = "-L../src/.libs/ -lswish-e -lxml2 -lz -lm";
$swish_config{INC}     = "-Wall -g -fPIC -O2 -I../src";


$config{$_} ||= $swish_config{$_} for qw/ LIBS INC /;


test_version( $swish_config{VERSION}, $MIN_VERSION )
    or die "Swish version $swish_config{VERSION} is older than required version $MIN_VERSION\n";



# Create test index -- needed for make test


unless ( exists $ENV{SWISHSKIPTEST} ) {

    my $swish_binary = File::Spec->catdir( dirname( $swish_config_path), $SWISH_BINARY );
    create_index( $swish_binary );

} else {
    $config{test}{TESTS} = 't/dummy.t';
}




WriteMakefile( %make_maker_opts, %config );


#----------------------------------------------------------------------------------
# Test the swish-e version
#----------------------------------------------------------------------------------
sub test_version {
    my %versions;
    my %split_vers;

    return 1 if exists $ENV{SWISHIGNOREVER};

    my @tags = qw/ running_swish_version  required_version /;
    my @versions = qw/ major minor release /;

    @versions{@tags} = @_;


    for ( @tags ) {
        die "Failed to find version for $_\n" unless $versions{$_};
        die "Failed to parse version ($versions{$_}) for $_\n"
            unless $versions{$_} =~ /(\d+)\.(\d+)\.(\d+)/;

        @{$split_vers{$_}}{@versions} = ( $1, $2, $3 );
    }

    for ( @versions ) {
        return 1 if $split_vers{running_swish_version}{$_} > $split_vers{required_version}{$_};
        return 0 if $split_vers{running_swish_version}{$_} < $split_vers{required_version}{$_};
    }
    return 1;  # same version.
}



#----------------------------------------------------------------------------------
# Reads swish-config and returns hash of values
#----------------------------------------------------------------------------------
sub find_swish_config {
    my $prog = shift;

    my $binary = find_program( $prog );

    if ( $ENV{SWISHBINDIR} ) {

        die "SWISHBINDIR [$ENV{SWISHBINDIR}] is not a directory\n"
            unless -d $ENV{SWISHBINDIR};

        my $p = find_program( $prog, $ENV{SWISHBINDIR} );
        die "Failed to find [$prog] in directory $ENV{SWISHBINDIR}: $!" unless $p;

        print "Using config program [$p], but also noticed you have $binary available in \$PATH\n"
            if $binary;

        $binary = $p;
    }


    die "Failed to find [$prog] in PATH\n" unless $binary;

    print "Using swish-config found at [$binary]\n";
    return $binary;
}

#----------------------------------------------------------------------------------
# Reads swish-config and returns hash of values
#----------------------------------------------------------------------------------
sub read_swish_config {
    my $binary = shift;

    my %config;
    $config{VERSION} = backtick( "$binary --version" );
    $config{LIBS}    = backtick( "$binary --libs" );
    $config{INC}     = backtick( "$binary --cflags" );

    return %config;
}


#----------------------------------------------------------------------------------
# Sub to fetch parameters form command line.
# Sets $ENV for SWISH options, otherwise returns them
#----------------------------------------------------------------------------------

sub load_command_line {
    my %valid = map { $_, 1 } @_;

    my %config;
    while( $_ = shift @ARGV ) {
        if ( $_ eq 'SWISHHELP' ) {
            $ENV{SWISHHELP} = 'y';
            last;
        }

        my ( $param, $value ) = split /=/, $_, 2;

        if ( $param =~ /^SWISH/ ) {
            die "Invalid option '$param'\n" unless $valid{$param};
            $ENV{$param} = $value || '';
        } else {
            $config{$param} = $value || '';
        }
    }

    return %config;
}



#----------------------------------------------------------------------------------
# Find a program in either $PATH or path/directory passed in.
#----------------------------------------------------------------------------------
sub find_program {
    my ( $name, $search_path ) = @_;

    $search_path ||= $ENV{PATH} || '';

     for my $dir ( split /$Config{path_sep}/, $search_path ) {
        my $path = File::Spec->catfile( $dir, $name );

        for my $extension ( '', '.exe' ) {
            my $file = $path . $extension;
            return $file  if -x $file && !-d _;
        }
    }
    return;
}


#----------------------------------------------------------------------------------
# Run a program with backtics, checking for errors
#----------------------------------------------------------------------------------

sub backtick {
    my ( $command ) = @_;

    my $output = `$command`;

    my $status = $? == 0
                ? ''
                : $? == -1
                    ? "Failed to execute: $!"
                    : $? & 127
                        ? sprintf("Child died with signal %d, %s corefile", ($? & 127),  ($? & 128) ? 'with' : 'without' )
                        : sprintf("chiled exited with value %d", $? >> 8);

    die "Failed to run program [$command]: $status\n" if $status;

    chomp $output;
    return $output;
}



sub create_index {
    my ($swish) = @_;

    die "Failed to find swish-e binary [$swish]: $!\n" unless -e $swish;
    die "Cannot execute swish-e binary [$swish]: $!\n" unless -x $swish;

    my $index = 't/index.swish-e';
    my $conf = 't/test.conf';


    unlink $index if -e $index;

    my @command = ( $swish,  '-c', $conf, '-f', $index, '-v','0' );


    print "Creating index...'@command'\n\n";

    system(@command);

    die "Failed to create index file '$index'" unless -r $index;
}