mirror of
https://git.freebsd.org/ports.git
synced 2025-07-09 05:19:16 -04:00
- Now, icm and firware files are downloaded using getweb script PR: ports/98511 Submitted by: Jose Alonso Cardenas Marquez <acardenas@bsd.org.pe> (maintainer)
29 lines
719 B
Text
29 lines
719 B
Text
--- getweb.in Thu May 11 17:02:59 2006
|
|
+++ getweb.in Sun Jun 4 15:41:29 2006
|
|
@@ -48,7 +48,7 @@
|
|
exefile="$2"
|
|
what="$3"
|
|
|
|
- wget $WGETOPTS -O $exefile "$url/$exefile" ||
|
|
+ fetch -m -o $exefile "$url/$exefile" ||
|
|
error "Couldn't download $url/$exefile"
|
|
unzip -o $exefile "$what"
|
|
rm $exefile
|
|
@@ -62,7 +62,7 @@
|
|
file="$2"
|
|
what="$3"
|
|
|
|
- wget $WGETOPTS -O $file "$url/$file" ||
|
|
+ fetch -m -o $file "$url/$file" ||
|
|
error "Couldn't download $url/$file"
|
|
gunzip <$file | tar xvf - $what
|
|
rm $file
|
|
@@ -130,7 +130,7 @@
|
|
do
|
|
base=`basename $i .IC_`
|
|
mv $base.IC_ $base.ic_
|
|
- ./msexpand $base.ic_
|
|
+ msexpand $base.ic_
|
|
rm -f $base.ic_
|
|
done
|
|
;;
|