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 297 298 299 300 301 302 303 304 305 306 307 308 309 310 311 312
|
#!/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 1994 2007-12-14 14:25:55Z karpet $
#----------------------------------------------------------------------------------
# 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
)
),
},
);
my $SWISH_BINARY = 'swish-e';
my $SWISH_CONFIG = 'swish-config';
my $MIN_VERSION = '2.4.3';
my @valid_params = qw/
SWISHBINDIR SWISHHELP SWISHIGNOREVER SWISHSKIPTEST
SWISHLIBS SWISHINC SWISHVERSION
/;
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
If SWISHINC, SWISHLIBS, and SWISHVERSION are set (in environment or
on the command line) then swish-config is not used.
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...
These can be used instead of swish-config. Format
must match the output generated by swish-config.
You must also set SWISHBINDIR to find swish-e for "make test".
SWISHINC = cflags options used to build swish-e
SWISHLIBS = -L and -l settings for building
SWISHVERSION = version of installed swish-e
Can be either environment variables or passed on command line like:
perl Makefile.PL SWISHBINDIR=/usr/local/bin
EOF
END {
print STDERR "Run perl Makefile.PL SWISHHELP for options\n\n" if $?;
}
#----------------------------------------------------------------------------------
# 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;
}
# Get LIBS INC and VERSION from either swish-config or command line/$ENV
my %swish_config = get_swish_configuration();
$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( $swish_config{BINDIR}, $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.
}
#------------------------------------------------------------------------
# Returns a hash of LIBS, INC, VERSION either from environment or command
# line if all three are set, otherwise, looks for swish-config for values
#------------------------------------------------------------------------
sub get_swish_configuration {
if ( $ENV{SWISHINC} && $ENV{SWISHLIBS} && $ENV{SWISHVERSION} ) {
die "Must set SWISHBINDIR if not using swish-config\n"
unless $ENV{SWISHBINDIR};
return (
INC => $ENV{SWISHINC},
LIBS => $ENV{SWISHLIBS},
VERSION => $ENV{SWISHVERSION},
BINDIR => $ENV{SWISHBINDIR},
);
}
# Otherwise, read from swish-config
my $swish_config_path = find_swish_config($SWISH_CONFIG);
return read_swish_config($swish_config_path);
}
#----------------------------------------------------------------------------------
# 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} = "-L../src/.libs/ -lxml2 ".backtick("$binary --libs");
$config{INC} = backtick("$binary --cflags");
$config{BINDIR} = dirname($binary);
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( "Child 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;
}
|