This commit was manufactured by cvs2svn to create tag 'r3_1_0'.

This commit is contained in:
nobody
2005-10-18 21:04:10 +00:00
parent b929457aef
commit 110a025b22
50 changed files with 185 additions and 225 deletions

View File

@@ -24,7 +24,6 @@ usr: \
/usr/bin/expr \
/usr/bin/false \
/usr/bin/getopts \
/usr/bin/getpack \
/usr/bin/read \
/usr/bin/test \
/usr/bin/true \
@@ -96,9 +95,6 @@ clean:
/usr/bin/easypack: easypack.sh
install -m 755 -c -o bin $? $@
/usr/bin/getpack: getpack.sh
install -m 755 -c -o bin $? $@
/usr/bin/checkhier: checkhier.sh
install -m 755 -c -o bin $? $@

View File

@@ -1,6 +1,6 @@
#!/bin/sh
t=/usr/src/etc/binary_sizes
t=/etc/binary_sizes
if [ "$#" -ne 1 ]
then echo "Usage: $0 <big|normal>"
@@ -11,6 +11,7 @@ if [ "$1" = big ]
then t=$t.big
fi
chmem =250000 /usr/lib/* /usr/lib/i386/* >/dev/null 2>&1
chmem =600000 /usr/lib/ego/* >/dev/null 2>&1
if [ -f $t ]
then cat "$t" | while read line
do awk '{ print "chmem =" $2 " " $1 " >/dev/null 2>&1 "}'

View File

@@ -1,30 +0,0 @@
#!/bin/sh
if [ $# -ne 1 ]
then echo "Usage: $0 <url>"
exit 1
fi
if [ -z "$HOME" ]
then echo "Where is your \$HOME? "
exit 1
fi
if [ ! -d "$HOME" ]
then echo "Where is your \$HOME ($HOME) ? "
exit 1
fi
tmpdir=$HOME/getpack$$
tmpfile=package
tmpfiletar=$tmpfile.tar
tmpfiletargz=$tmpfile.tar.gz
mkdir -m 700 $tmpdir || exit 1
cd $tmpdir || exit 1
urlget "$1" >$tmpfiletargz
gzip -d $tmpfiletargz || exit 1
tar xf $tmpfiletar || exit 1
make && make install && echo "Ok."