~ubuntu-branches/ubuntu/precise/mutt/precise

« back to all changes in this revision

Viewing changes to install-sh

  • Committer: Bazaar Package Importer
  • Author(s): Christoph Berg, Adeodato Simó, Christoph Berg
  • Date: 2007-11-03 23:00:04 UTC
  • mfrom: (1.1.7 upstream)
  • Revision ID: james.westby@ubuntu.com-20071103230004-43e36pnhub87junc
Tags: 1.5.17-1
[ Adeodato Simó ]
* Move the packaging back to Bazaar, adjust X-VCS-* accordingly.

[ Christoph Berg ]
* Mention libsasl2-modules-gssapi-mit in README.Debian. (Closes: #433425)
* Call autoreconf at build time, drop the autotools-update patch.
* Update menu file, add lintian override file.
* Refresh patches.

* New upstream version:
  + fix segfaults with single byte 8-bit characters in index_format.
    (Closes: #420598, Mutt: #2882)
  + properly render subject headers with encoded linefeeds.
    (Closes: #264014, Mutt: #1810)
  + only calls gnutls_error_is_fatal when gnutls_record_recv returns a
    negative value. (Closes: #439775, Mutt: #2954)
  + Large file support for mutt_pretty_size().
    (Closes: #352478, #416555, Mutt: #2191)
  + Do not consider empty pipes for filtering in format strings.
    (Closes: #447340)

Show diffs side-by-side

added added

removed removed

Lines of Context:
1
1
#!/bin/sh
2
2
# install - install a program, script, or datafile
3
 
# This originally came from X11R5 (mit/util/scripts/install.sh).
4
 
 
5
 
scriptversion=2003-01-17.15
6
 
 
7
 
# Copyright 1991 by the Massachusetts Institute of Technology
8
 
# (FSF changes in the public domain.)
9
 
#
10
 
# Permission to use, copy, modify, distribute, and sell this software and its
11
 
# documentation for any purpose is hereby granted without fee, provided that
12
 
# the above copyright notice appear in all copies and that both that
13
 
# copyright notice and this permission notice appear in supporting
14
 
# documentation, and that the name of M.I.T. not be used in advertising or
15
 
# publicity pertaining to distribution of the software without specific,
16
 
# written prior permission.  M.I.T. makes no representations about the
17
 
# suitability of this software for any purpose.  It is provided "as is"
18
 
# without express or implied warranty.
 
3
 
 
4
scriptversion=2005-05-14.22
 
5
 
 
6
# This originates from X11R5 (mit/util/scripts/install.sh), which was
 
7
# later released in X11R6 (xc/config/util/install.sh) with the
 
8
# following copyright and license.
 
9
#
 
10
# Copyright (C) 1994 X Consortium
 
11
#
 
12
# Permission is hereby granted, free of charge, to any person obtaining a copy
 
13
# of this software and associated documentation files (the "Software"), to
 
14
# deal in the Software without restriction, including without limitation the
 
15
# rights to use, copy, modify, merge, publish, distribute, sublicense, and/or
 
16
# sell copies of the Software, and to permit persons to whom the Software is
 
17
# furnished to do so, subject to the following conditions:
 
18
#
 
19
# The above copyright notice and this permission notice shall be included in
 
20
# all copies or substantial portions of the Software.
 
21
#
 
22
# THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
 
23
# IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
 
24
# FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT.  IN NO EVENT SHALL THE
 
25
# X CONSORTIUM BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN
 
26
# AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNEC-
 
27
# TION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.
 
28
#
 
29
# Except as contained in this notice, the name of the X Consortium shall not
 
30
# be used in advertising or otherwise to promote the sale, use or other deal-
 
31
# ings in this Software without prior written authorization from the X Consor-
 
32
# tium.
 
33
#
 
34
#
 
35
# FSF changes to this file are in the public domain.
19
36
#
20
37
# Calling this script install-sh is preferred over install.sh, to prevent
21
38
# `make' implicit rules from creating a file called install from it
41
58
rmprog="${RMPROG-rm}"
42
59
mkdirprog="${MKDIRPROG-mkdir}"
43
60
 
44
 
transformbasename=
45
 
transform_arg=
46
 
instcmd="$mvprog"
47
61
chmodcmd="$chmodprog 0755"
48
62
chowncmd=
49
63
chgrpcmd=
53
67
src=
54
68
dst=
55
69
dir_arg=
56
 
 
57
 
usage="Usage: $0 [OPTION]... SRCFILE DSTFILE
58
 
   or: $0 -d DIR1 DIR2...
59
 
 
60
 
In the first form, install SRCFILE to DSTFILE, removing SRCFILE by default.
61
 
In the second, create the directory path DIR.
 
70
dstarg=
 
71
no_target_directory=
 
72
 
 
73
usage="Usage: $0 [OPTION]... [-T] SRCFILE DSTFILE
 
74
   or: $0 [OPTION]... SRCFILES... DIRECTORY
 
75
   or: $0 [OPTION]... -t DIRECTORY SRCFILES...
 
76
   or: $0 [OPTION]... -d DIRECTORIES...
 
77
 
 
78
In the 1st form, copy SRCFILE to DSTFILE.
 
79
In the 2nd and 3rd, copy all SRCFILES to DIRECTORY.
 
80
In the 4th, create DIRECTORIES.
62
81
 
63
82
Options:
64
 
-b=TRANSFORMBASENAME
65
 
-c         copy source (using $cpprog) instead of moving (using $mvprog).
 
83
-c         (ignored)
66
84
-d         create directories instead of installing files.
67
 
-g GROUP   $chgrp installed files to GROUP.
68
 
-m MODE    $chmod installed files to MODE.
69
 
-o USER    $chown installed files to USER.
70
 
-s         strip installed files (using $stripprog).
71
 
-t=TRANSFORM
 
85
-g GROUP   $chgrpprog installed files to GROUP.
 
86
-m MODE    $chmodprog installed files to MODE.
 
87
-o USER    $chownprog installed files to USER.
 
88
-s         $stripprog installed files.
 
89
-t DIRECTORY  install into DIRECTORY.
 
90
-T         report an error if DSTFILE is a directory.
72
91
--help     display this help and exit.
73
92
--version  display version info and exit.
74
93
 
78
97
 
79
98
while test -n "$1"; do
80
99
  case $1 in
81
 
    -b=*) transformbasename=`echo $1 | sed 's/-b=//'`
82
 
        shift
83
 
        continue;;
84
 
 
85
 
    -c) instcmd=$cpprog
86
 
        shift
 
100
    -c) shift
87
101
        continue;;
88
102
 
89
103
    -d) dir_arg=true
95
109
        shift
96
110
        continue;;
97
111
 
98
 
    --help) echo "$usage"; exit 0;;
 
112
    --help) echo "$usage"; exit $?;;
99
113
 
100
114
    -m) chmodcmd="$chmodprog $2"
101
115
        shift
111
125
        shift
112
126
        continue;;
113
127
 
114
 
    -t=*) transformarg=`echo $1 | sed 's/-t=//'`
115
 
        shift
116
 
        continue;;
117
 
 
118
 
    --version) echo "$0 $scriptversion"; exit 0;;
119
 
 
120
 
    *)  if test -z "$src"; then
121
 
          src=$1
122
 
        else
123
 
          # this colon is to work around a 386BSD /bin/sh bug
124
 
          :
125
 
          dst=$1
126
 
        fi
127
 
        shift
128
 
        continue;;
 
128
    -t) dstarg=$2
 
129
        shift
 
130
        shift
 
131
        continue;;
 
132
 
 
133
    -T) no_target_directory=true
 
134
        shift
 
135
        continue;;
 
136
 
 
137
    --version) echo "$0 $scriptversion"; exit $?;;
 
138
 
 
139
    *)  # When -d is used, all remaining arguments are directories to create.
 
140
        # When -t is used, the destination is already specified.
 
141
        test -n "$dir_arg$dstarg" && break
 
142
        # Otherwise, the last argument is the destination.  Remove it from $@.
 
143
        for arg
 
144
        do
 
145
          if test -n "$dstarg"; then
 
146
            # $@ is not empty: it contains at least $arg.
 
147
            set fnord "$@" "$dstarg"
 
148
            shift # fnord
 
149
          fi
 
150
          shift # arg
 
151
          dstarg=$arg
 
152
        done
 
153
        break;;
129
154
  esac
130
155
done
131
156
 
132
 
if test -z "$src"; then
133
 
  echo "$0: no input file specified." >&2
134
 
  exit 1
 
157
if test -z "$1"; then
 
158
  if test -z "$dir_arg"; then
 
159
    echo "$0: no input file specified." >&2
 
160
    exit 1
 
161
  fi
 
162
  # It's OK to call `install-sh -d' without argument.
 
163
  # This can happen when creating conditional directories.
 
164
  exit 0
135
165
fi
136
166
 
137
 
if test -n "$dir_arg"; then
138
 
  dst=$src
139
 
  src=
140
 
 
141
 
  if test -d "$dst"; then
142
 
    instcmd=:
143
 
    chmodcmd=
 
167
for src
 
168
do
 
169
  # Protect names starting with `-'.
 
170
  case $src in
 
171
    -*) src=./$src ;;
 
172
  esac
 
173
 
 
174
  if test -n "$dir_arg"; then
 
175
    dst=$src
 
176
    src=
 
177
 
 
178
    if test -d "$dst"; then
 
179
      mkdircmd=:
 
180
      chmodcmd=
 
181
    else
 
182
      mkdircmd=$mkdirprog
 
183
    fi
144
184
  else
145
 
    instcmd=$mkdirprog
146
 
  fi
147
 
else
148
 
  # Waiting for this to be detected by the "$instcmd $src $dsttmp" command
149
 
  # might cause directories to be created, which would be especially bad
150
 
  # if $src (and thus $dsttmp) contains '*'.
151
 
  if test ! -f "$src" && test ! -d "$src"; then
152
 
    echo "$0: $src does not exist." >&2
153
 
    exit 1
154
 
  fi
155
 
 
156
 
  if test -z "$dst"; then
157
 
    echo "$0: no destination specified." >&2
158
 
    exit 1
159
 
  fi
160
 
 
161
 
  # If destination is a directory, append the input filename; won't work
162
 
  # if double slashes aren't ignored.
163
 
  if test -d "$dst"; then
164
 
    dst=$dst/`basename "$src"`
165
 
  fi
166
 
fi
167
 
 
168
 
## this sed command emulates the dirname command
169
 
dstdir=`echo "$dst" | sed -e 's,[^/]*$,,;s,/$,,;s,^$,.,'`
170
 
 
171
 
# Make sure that the destination directory exists.
172
 
# (this part is taken from Noah Friedman's mkinstalldirs script.)
173
 
 
174
 
# Skip lots of stat calls in the usual case.
175
 
if test ! -d "$dstdir"; then
176
 
  defaultIFS='
177
 
        '
178
 
  IFS="${IFS-$defaultIFS}"
179
 
 
180
 
  oIFS=$IFS
181
 
  # Some sh's can't handle IFS=/ for some reason.
182
 
  IFS='%'
183
 
  set - `echo "$dstdir" | sed -e 's@/@%@g' -e 's@^%@/@'`
184
 
  IFS=$oIFS
185
 
 
186
 
  pathcomp=
187
 
 
188
 
  while test $# -ne 0 ; do
189
 
    pathcomp=$pathcomp$1
 
185
    # Waiting for this to be detected by the "$cpprog $src $dsttmp" command
 
186
    # might cause directories to be created, which would be especially bad
 
187
    # if $src (and thus $dsttmp) contains '*'.
 
188
    if test ! -f "$src" && test ! -d "$src"; then
 
189
      echo "$0: $src does not exist." >&2
 
190
      exit 1
 
191
    fi
 
192
 
 
193
    if test -z "$dstarg"; then
 
194
      echo "$0: no destination specified." >&2
 
195
      exit 1
 
196
    fi
 
197
 
 
198
    dst=$dstarg
 
199
    # Protect names starting with `-'.
 
200
    case $dst in
 
201
      -*) dst=./$dst ;;
 
202
    esac
 
203
 
 
204
    # If destination is a directory, append the input filename; won't work
 
205
    # if double slashes aren't ignored.
 
206
    if test -d "$dst"; then
 
207
      if test -n "$no_target_directory"; then
 
208
        echo "$0: $dstarg: Is a directory" >&2
 
209
        exit 1
 
210
      fi
 
211
      dst=$dst/`basename "$src"`
 
212
    fi
 
213
  fi
 
214
 
 
215
  # This sed command emulates the dirname command.
 
216
  dstdir=`echo "$dst" | sed -e 's,/*$,,;s,[^/]*$,,;s,/*$,,;s,^$,.,'`
 
217
 
 
218
  # Make sure that the destination directory exists.
 
219
 
 
220
  # Skip lots of stat calls in the usual case.
 
221
  if test ! -d "$dstdir"; then
 
222
    defaultIFS='
 
223
         '
 
224
    IFS="${IFS-$defaultIFS}"
 
225
 
 
226
    oIFS=$IFS
 
227
    # Some sh's can't handle IFS=/ for some reason.
 
228
    IFS='%'
 
229
    set x `echo "$dstdir" | sed -e 's@/@%@g' -e 's@^%@/@'`
190
230
    shift
191
 
    test -d "$pathcomp" || $mkdirprog "$pathcomp"
192
 
    pathcomp=$pathcomp/
193
 
  done
194
 
fi
195
 
 
196
 
if test -n "$dir_arg"; then
197
 
  $doit $instcmd "$dst" \
198
 
    && { test -z "$chowncmd" || $doit $chowncmd "$dst"; } \
199
 
    && { test -z "$chgrpcmd" || $doit $chgrpcmd "$dst"; } \
200
 
    && { test -z "$stripcmd" || $doit $stripcmd "$dst"; } \
201
 
    && { test -z "$chmodcmd" || $doit $chmodcmd "$dst"; }
202
 
 
203
 
else
204
 
  # If we're going to rename the final executable, determine the name now.
205
 
  if test -z "$transformarg"; then
 
231
    IFS=$oIFS
 
232
 
 
233
    pathcomp=
 
234
 
 
235
    while test $# -ne 0 ; do
 
236
      pathcomp=$pathcomp$1
 
237
      shift
 
238
      if test ! -d "$pathcomp"; then
 
239
        $mkdirprog "$pathcomp"
 
240
        # mkdir can fail with a `File exist' error in case several
 
241
        # install-sh are creating the directory concurrently.  This
 
242
        # is OK.
 
243
        test -d "$pathcomp" || exit
 
244
      fi
 
245
      pathcomp=$pathcomp/
 
246
    done
 
247
  fi
 
248
 
 
249
  if test -n "$dir_arg"; then
 
250
    $doit $mkdircmd "$dst" \
 
251
      && { test -z "$chowncmd" || $doit $chowncmd "$dst"; } \
 
252
      && { test -z "$chgrpcmd" || $doit $chgrpcmd "$dst"; } \
 
253
      && { test -z "$stripcmd" || $doit $stripcmd "$dst"; } \
 
254
      && { test -z "$chmodcmd" || $doit $chmodcmd "$dst"; }
 
255
 
 
256
  else
206
257
    dstfile=`basename "$dst"`
207
 
  else
208
 
    dstfile=`basename "$dst" $transformbasename \
209
 
             | sed $transformarg`$transformbasename
210
 
  fi
211
 
 
212
 
  # don't allow the sed command to completely eliminate the filename.
213
 
  test -z "$dstfile" && dstfile=`basename "$dst"`
214
 
 
215
 
  # Make a couple of temp file names in the proper directory.
216
 
  dsttmp=$dstdir/#inst.$$#
217
 
  rmtmp=$dstdir/#rm.$$#
218
 
 
219
 
  # Trap to clean up those temp files at exit.
220
 
  trap 'status=$?; rm -f "$dsttmp" "$rmtmp" && exit $status' 0
221
 
  trap '(exit $?); exit' 1 2 13 15
222
 
 
223
 
  # Move or copy the file name to the temp name
224
 
  $doit $instcmd "$src" "$dsttmp" &&
225
 
 
226
 
  # and set any options; do chmod last to preserve setuid bits.
227
 
  #
228
 
  # If any of these fail, we abort the whole thing.  If we want to
229
 
  # ignore errors from any of these, just make sure not to ignore
230
 
  # errors from the above "$doit $instcmd $src $dsttmp" command.
231
 
  #
232
 
  { test -z "$chowncmd" || $doit $chowncmd "$dsttmp"; } \
233
 
    && { test -z "$chgrpcmd" || $doit $chgrpcmd "$dsttmp"; } \
234
 
    && { test -z "$stripcmd" || $doit $stripcmd "$dsttmp"; } \
235
 
    && { test -z "$chmodcmd" || $doit $chmodcmd "$dsttmp"; } &&
236
 
 
237
 
  # Now remove or move aside any old file at destination location.  We
238
 
  # try this two ways since rm can't unlink itself on some systems and
239
 
  # the destination file might be busy for other reasons.  In this case,
240
 
  # the final cleanup might fail but the new file should still install
241
 
  # successfully.
242
 
  {
243
 
    if test -f "$dstdir/$dstfile"; then
244
 
      $doit $rmcmd -f "$dstdir/$dstfile" 2>/dev/null \
245
 
      || $doit $mvcmd -f "$dstdir/$dstfile" "$rmtmp" 2>/dev/null \
 
258
 
 
259
    # Make a couple of temp file names in the proper directory.
 
260
    dsttmp=$dstdir/_inst.$$_
 
261
    rmtmp=$dstdir/_rm.$$_
 
262
 
 
263
    # Trap to clean up those temp files at exit.
 
264
    trap 'ret=$?; rm -f "$dsttmp" "$rmtmp" && exit $ret' 0
 
265
    trap '(exit $?); exit' 1 2 13 15
 
266
 
 
267
    # Copy the file name to the temp name.
 
268
    $doit $cpprog "$src" "$dsttmp" &&
 
269
 
 
270
    # and set any options; do chmod last to preserve setuid bits.
 
271
    #
 
272
    # If any of these fail, we abort the whole thing.  If we want to
 
273
    # ignore errors from any of these, just make sure not to ignore
 
274
    # errors from the above "$doit $cpprog $src $dsttmp" command.
 
275
    #
 
276
    { test -z "$chowncmd" || $doit $chowncmd "$dsttmp"; } \
 
277
      && { test -z "$chgrpcmd" || $doit $chgrpcmd "$dsttmp"; } \
 
278
      && { test -z "$stripcmd" || $doit $stripcmd "$dsttmp"; } \
 
279
      && { test -z "$chmodcmd" || $doit $chmodcmd "$dsttmp"; } &&
 
280
 
 
281
    # Now rename the file to the real destination.
 
282
    { $doit $mvcmd -f "$dsttmp" "$dstdir/$dstfile" 2>/dev/null \
246
283
      || {
247
 
          echo "$0: cannot unlink or rename $dstdir/$dstfile" >&2
248
 
          (exit 1); exit
249
 
      }
250
 
    else
251
 
      :
252
 
    fi
253
 
  } &&
254
 
 
255
 
  # Now rename the file to the real destination.
256
 
  $doit $mvcmd "$dsttmp" "$dstdir/$dstfile"
257
 
fi &&
 
284
           # The rename failed, perhaps because mv can't rename something else
 
285
           # to itself, or perhaps because mv is so ancient that it does not
 
286
           # support -f.
 
287
 
 
288
           # Now remove or move aside any old file at destination location.
 
289
           # We try this two ways since rm can't unlink itself on some
 
290
           # systems and the destination file might be busy for other
 
291
           # reasons.  In this case, the final cleanup might fail but the new
 
292
           # file should still install successfully.
 
293
           {
 
294
             if test -f "$dstdir/$dstfile"; then
 
295
               $doit $rmcmd -f "$dstdir/$dstfile" 2>/dev/null \
 
296
               || $doit $mvcmd -f "$dstdir/$dstfile" "$rmtmp" 2>/dev/null \
 
297
               || {
 
298
                 echo "$0: cannot unlink or rename $dstdir/$dstfile" >&2
 
299
                 (exit 1); exit 1
 
300
               }
 
301
             else
 
302
               :
 
303
             fi
 
304
           } &&
 
305
 
 
306
           # Now rename the file to the real destination.
 
307
           $doit $mvcmd "$dsttmp" "$dstdir/$dstfile"
 
308
         }
 
309
    }
 
310
  fi || { (exit 1); exit 1; }
 
311
done
258
312
 
259
313
# The final little trick to "correctly" pass the exit status to the exit trap.
260
314
{
261
 
  (exit 0); exit
 
315
  (exit 0); exit 0
262
316
}
263
317
 
264
318
# Local variables: