3 # Copyright © 2004-2008, The AROS Development Team. All rights reserved.
9 error
"Usage: $1 -a archive [-s suffixes] [-ao archive_origins...] [-l location to download to] [-d dir to unpack to] [-po patches_origins...] [-p patch[:subdir][:patch options]...]"
14 local origin
="$1" file="$2" destination
="$3" mirrosgroup
="$4" mirrors
="$5"
18 for mirror
in $mirrors; do
19 echo "Downloading from ${mirrosgroup}... "
20 if fetch
"${mirror}/$origin" "${file}" "$destination"; then
29 gnu_mirrors
="http://ftp.gnu.org/pub/gnu ftp://ftp.cise.ufl.edu/pub/mirrors/GNU/gnu"
33 local origin
="$1" file="$2" destination
="$3"
37 if ! fetch_mirrored
"$origin" "${file}" "$destination" "GNU" "${gnu_mirrors}"; then
44 sf_mirrors
="http://download.sourceforge.net http://aleron.dl.sourceforge.net http://voxel.dl.sourceforge.net http://heanet.dl.sourceforge.net http://avh.dl.sourceforge.net http://umn.dl.sourceforge.net http://unc.dl.sourceforge.net http://puzzle.dl.sourceforge.net http://mesh.dl.sourceforge.net"
48 local origin
="$1" file="$2" destination
="$3"
52 if ! fetch_mirrored
"$origin" "${file}" "$destination" "SourceForge" "${sf_mirrors}"; then
61 local origin
="$1" file="$2" destination
="$3"
65 if echo $origin |
grep ":" >/dev
/null
; then
66 protocol
=`echo $origin | cut -d':' -f1`
71 trap 'rm -f "$destination/$file".tmp; exit' SIGINT SIGKILL SIGTERM
75 if ! wget
-t 5 -T 15 -c "$origin/$file" -O "$destination/$file".tmp
; then
78 mv "$destination/$file".tmp
"$destination/$file"
80 rm -f "$destination/$file".tmp
83 if ! fetch_gnu
"${origin:${#protocol}+3}" "$file" "$destination"; then
88 if ! fetch_sf
"${origin:${#protocol}+3}" "$file" "$destination"; then
93 if test "$origin" = "$destination"; then
94 ! test -f "$origin/$file" && ret
=false
96 if ! cp "$origin/$file" "$destination/$file".tmp
; then
99 mv "$destination/$file".tmp
"$destination/$file"
104 echo "Unknown protocol type \`$protocol'"
108 trap SIGINT SIGKILL SIGTERM
115 local origins
="$1" file="$2" destination
="$3"
116 for origin
in $origins; do
117 echo "Trying $origin/$file..."
118 fetch
"$origin" "$file" "$destination" && return 0
126 local origins
="$1" file="$2" suffixes
="$3" destination
="$4" foundvar
="$5"
129 foundvar
=${foundvar:-__dummy__}
133 test -e "$destination" -a ! -d "$destination" && \
134 echo "fetch_cached: \`$destination' is not a diretory." && return 1
136 if ! test -e "$destination"; then
137 echo "fetch_cached: \`$destination' does not exist. Making it."
138 ! mkdir
-p "$destination" && return 1
141 if test "x$suffixes" != "x"; then
142 for sfx
in $suffixes; do
143 fetch_multiple
"$destination" "$file".
$sfx "$destination" && \
144 export $foundvar="$file".
$sfx && return 0
147 for sfx
in $suffixes; do
148 fetch_multiple
"$origins" "$file".
$sfx "$destination" && \
149 export $foundvar="$file".
$sfx && return 0
152 fetch_multiple
"$destination $origins" "$file" "$destination" && \
153 export $foundvar="$file" && return 0
168 local location
="$1" archive
="$2" archivepath
="$3";
173 echo "Unpacking \`$archive'..."
178 if ! tar xfj
"$archivepath/$archive"; then ret
=false
; fi
181 if ! tar xfz
"$archivepath/$archive"; then ret
=false
; fi
184 if ! unzip "$archivepath/$archive"; then ret
=false
; fi
187 echo "Unknown archive format for \`$archive'."
199 local location
="$1" archive
="$2" archivepath
="$3";
201 if ! test -e "$location"; then
202 echo "unpack_cached: \`$location' does not exist. Making it."
203 ! mkdir
-p "$location" && return 1
206 if ! test -f ${location}/.
${archive}.unpacked
; then
207 if unpack
"$location" "$archive" "$archivepath"; then
208 echo yes > ${location}/.
${archive}.unpacked
218 local location
="$1" patch_spec
="$2";
222 local abs_location
="$PWD"
224 local patch=`echo "$patch_spec": | cut -d: -f1`
225 local subdir
=`echo "$patch_spec": | cut -d: -f2`
226 local patch_opt
=`echo "$patch_spec": | cut -d: -f3`
232 if ! patch $patch_opt < $abs_location/$patch; then
243 local location
="$1" patch="$2";
245 local patchname
=`echo $patch | cut -d: -f1`
247 if test "x$patchname" != "x"; then
248 if ! test -f ${location}/.
${patchname}.applied
; then
249 if do_patch
"$location" "$patch"; then
250 echo yes > ${location}/.
${patchname}.applied
261 while test "x$1" != "x"; do
262 if test "x${1:0:1}" == "x-" -a "x${2:0:1}" == "x-"; then
267 -ao) archive_origins
="$2";;
270 -d) destination
="$2";;
271 -po) patches_origins
="$2";;
274 *) echo "fetch: Unknown option \`$1'."; usage
"$0";;
281 test -z "$archive" && usage
"$0"
283 archive_origins
=${archive_origins:-.}
284 destination
=${destination:-.}
285 location
=${location:-.}
286 patches_origins
=${patches_origins:-.}
288 fetch_cached
"$archive_origins" "$archive" "$suffixes" "$location" archive2
289 test -z "$archive2" && error
"fetch: Error while fetching the archive \`$archive'."
292 for patch in $patches; do
293 patch=`echo $patch | cut -d: -f1`
294 if test "x$patch" != "x"; then
295 if ! fetch_cached
"$patches_origins" "$patch" "" "$destination"; then
296 fetch_cached
"$patches_origins" "$patch" "tar.bz2 tar.gz zip" "$destination" patch2
297 test -z "$patch2" && error
"fetch: Error while fetching the patch \`$patch'."
298 if ! unpack_cached
"$destination" "$patch2" "$destination"; then
299 error
"fetch: Error while unpacking \`$patch2'."
305 if ! unpack_cached
"$destination" "$archive" "$location"; then
306 error
"fetch: Error while unpacking \`$archive'."
309 for patch in $patches; do
310 if ! patch_cached
"$destination" "$patch"; then
311 error
"fetch: Error while applying the patch \`$patch'."