source: main/trunk/greenstone2/bin/script/gsWget.pl@ 30499

Last change on this file since 30499 was 28560, checked in by ak19, 10 years ago
  1. New subroutine util::set_gnomelib_env that sets the environment for gnomelib needed for running hashfile, suffix and wget which are dependent on the libiconv dll in ext/gnome-lib(-minimal). It's particularly the Mac Lions that need libiconv.2.dylib. 2. Updated the call to hashfile in doc.pm, the call to suffix in Phind.pm and the calls to wget in several perl scripts and modules to call util::set_gnomelib_env, though this will only set the environment once for each subshell.
  • Property svn:executable set to *
  • Property svn:keywords set to Author Date Id Revision
File size: 2.5 KB
Line 
1#!/usr/bin/perl -w
2
3###########################################################################
4#
5# A component of the Greenstone digital library software
6# from the New Zealand Digital Library Project at the
7# University of Waikato, New Zealand.
8#
9# Copyright (C) 1999 New Zealand Digital Library Project
10#
11# This program is free software; you can redistribute it and/or modify
12# it under the terms of the GNU General Public License as published by
13# the Free Software Foundation; either version 2 of the License, or
14# (at your option) any later version.
15#
16# This program is distributed in the hope that it will be useful,
17# but WITHOUT ANY WARRANTY; without even the implied warranty of
18# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
19# GNU General Public License for more details.
20#
21# You should have received a copy of the GNU General Public License
22# along with this program; if not, write to the Free Software
23# Foundation, Inc., 675 Mass Ave, Cambridge, MA 02139, USA.
24#
25###########################################################################
26
27
28# This program will download the specified urls (http:, ftp: and file:)
29
30
31BEGIN {
32 die "GSDLHOME not set\n" unless defined $ENV{'GSDLHOME'};
33 die "GSDLOS not set\n" unless defined $ENV{'GSDLOS'};
34 unshift (@INC, "$ENV{'GSDLHOME'}/perllib");
35}
36
37use util;
38use FileUtils;
39
40# wget should live in the Greenstone directory structure
41# we'll bail if we can't find it
42my $exe = &util::get_os_exe ();
43my $cmd = &FileUtils::filenameConcatenate($ENV{'GSDLHOME'}, "bin", $ENV{'GSDLOS'}, "wget");
44$cmd .= $exe;
45if (! -e "$cmd") {
46 die "gsWget.pl failed: $cmd doesn't exist\n";
47}
48
49# if on windows we expect wget to already be on the path -
50# this allows us to avoid problems when GSDLHOME contains spaces
51# (double quoting the call doesn't work on win2000)
52if ($ENV{'GSDLOS'} =~ /^windows$/) {
53 $cmd = "wget";
54}
55
56# the wget binary is dependent on the gnomelib_env (particularly lib/libiconv2.dylib) being set, particularly on Mac Lions (android too?)
57&util::set_gnomelib_env(); # this will set the gnomelib env once for each subshell launched, by first checking if GEXTGNOME is not already set
58
59# command-line parameters
60my @quoted_argv = map { "\"$_\"" } @ARGV;
61my $args = join(' ', @quoted_argv);
62$cmd .= " $args";
63
64# run the command
65my $status = system($cmd);
66
67# We should check the error status of wget; unfortunately this
68# is set to 1 even when we exit successfully, so we ignore it.
69#
70#$status /= 256;
71#if ($status != 0) {
72# print STDERR "Error executing $cmd: $!\n";
73# exit($status);
74#}
75
76print "\nDone: $cmd\n";
Note: See TracBrowser for help on using the repository browser.