- Make packman unmount the packages cd if it was mounted.
- Manpages for packman and packit.
This commit is contained in:
parent
ad4c0ff698
commit
cc86693102
3 changed files with 87 additions and 11 deletions
|
@ -15,6 +15,10 @@ mkdir -p $TMPDIR
|
||||||
URL1=http://www.minix3.org/packages/$PACKDIR
|
URL1=http://www.minix3.org/packages/$PACKDIR
|
||||||
SRCURL1=http://www.minix3.org/software
|
SRCURL1=http://www.minix3.org/software
|
||||||
PATH=/bin:/sbin:/usr/bin:/usr/sbin
|
PATH=/bin:/sbin:/usr/bin:/usr/sbin
|
||||||
|
pack=""
|
||||||
|
cdpackages=""
|
||||||
|
netpackages=""
|
||||||
|
cdmounted=""
|
||||||
|
|
||||||
if [ ! "$PAGER" ]
|
if [ ! "$PAGER" ]
|
||||||
then PAGER=more
|
then PAGER=more
|
||||||
|
@ -34,6 +38,16 @@ myread()
|
||||||
fi
|
fi
|
||||||
}
|
}
|
||||||
|
|
||||||
|
myexit()
|
||||||
|
{
|
||||||
|
if [ -n "$cdmounted" -a -n "$pack" ]
|
||||||
|
then
|
||||||
|
umount $pack || true
|
||||||
|
fi
|
||||||
|
|
||||||
|
exit $1
|
||||||
|
}
|
||||||
|
|
||||||
# can we execute bunzip2?
|
# can we execute bunzip2?
|
||||||
if bunzip2 --help 2>&1 | grep usage >/dev/null
|
if bunzip2 --help 2>&1 | grep usage >/dev/null
|
||||||
then BUNZIP2=bunzip2
|
then BUNZIP2=bunzip2
|
||||||
|
@ -43,7 +57,7 @@ fi
|
||||||
if id | fgrep "uid=0(" >/dev/null
|
if id | fgrep "uid=0(" >/dev/null
|
||||||
then :
|
then :
|
||||||
else echo "Please run $0 as root."
|
else echo "Please run $0 as root."
|
||||||
exit 1
|
myexit 1
|
||||||
fi
|
fi
|
||||||
|
|
||||||
chmod 700 $TMPDIR
|
chmod 700 $TMPDIR
|
||||||
|
@ -56,11 +70,10 @@ cd /
|
||||||
|
|
||||||
# Make sure there is a $SRC dir
|
# Make sure there is a $SRC dir
|
||||||
if [ ! -d "$SRC" ]
|
if [ ! -d "$SRC" ]
|
||||||
then mkdir $SRC || exit
|
then mkdir $SRC || myexit 1
|
||||||
fi
|
fi
|
||||||
|
|
||||||
# Is there a usable CD to install packages from?
|
# Is there a usable CD to install packages from?
|
||||||
cdpackages=""
|
|
||||||
if [ -n "$cddrive" ]
|
if [ -n "$cddrive" ]
|
||||||
then pack=${cddrive}p2
|
then pack=${cddrive}p2
|
||||||
umount $pack >/dev/null 2>&1 || true
|
umount $pack >/dev/null 2>&1 || true
|
||||||
|
@ -68,6 +81,7 @@ then pack=${cddrive}p2
|
||||||
if mount -r $pack $CDMP 2>/dev/null
|
if mount -r $pack $CDMP 2>/dev/null
|
||||||
then fn="$CDPACK/List"
|
then fn="$CDPACK/List"
|
||||||
echo "Found."
|
echo "Found."
|
||||||
|
cdmounted=1
|
||||||
cdpackages=$fn
|
cdpackages=$fn
|
||||||
if [ ! -f $cdpackages ]
|
if [ ! -f $cdpackages ]
|
||||||
then cdpackages=""
|
then cdpackages=""
|
||||||
|
@ -83,7 +97,6 @@ rm -f $TMPF
|
||||||
rm -f $TMPDIR/.* # Remove any remaining .postinstall script or .list*
|
rm -f $TMPDIR/.* # Remove any remaining .postinstall script or .list*
|
||||||
|
|
||||||
# Check for network packages too
|
# Check for network packages too
|
||||||
netpackages=""
|
|
||||||
if ( : </dev/tcp ) 2>/dev/null
|
if ( : </dev/tcp ) 2>/dev/null
|
||||||
then echo -n "Update package list from network? (Y/n) "
|
then echo -n "Update package list from network? (Y/n) "
|
||||||
y=`myread`
|
y=`myread`
|
||||||
|
@ -101,7 +114,7 @@ fi
|
||||||
# Is there at least one package type?
|
# Is there at least one package type?
|
||||||
if [ ! -n "$netpackages" -a ! -n "$cdpackages" ]
|
if [ ! -n "$netpackages" -a ! -n "$cdpackages" ]
|
||||||
then echo "No packages found."
|
then echo "No packages found."
|
||||||
exit 1
|
myexit 1
|
||||||
fi
|
fi
|
||||||
|
|
||||||
# Is there more than one package type?
|
# Is there more than one package type?
|
||||||
|
@ -144,7 +157,7 @@ do cd $TMPDIR
|
||||||
echo -n "Package(s) to install (RETURN or q to exit)? "
|
echo -n "Package(s) to install (RETURN or q to exit)? "
|
||||||
packnolist=`myread`
|
packnolist=`myread`
|
||||||
if [ "$packnolist" = "" -o "$packnolist" = "q" ]
|
if [ "$packnolist" = "" -o "$packnolist" = "q" ]
|
||||||
then exit 0
|
then myexit 0
|
||||||
fi
|
fi
|
||||||
if [ "$packnolist" = all ]
|
if [ "$packnolist" = all ]
|
||||||
then packnolist=1-$highest
|
then packnolist=1-$highest
|
||||||
|
@ -196,12 +209,12 @@ do cd $TMPDIR
|
||||||
else echo "Retrieval failed."
|
else echo "Retrieval failed."
|
||||||
fi
|
fi
|
||||||
if [ "$getsources" = y -o "$getsources" = Y ]
|
if [ "$getsources" = y -o "$getsources" = Y ]
|
||||||
then ( cd $SRC || exit
|
then ( cd $SRC || myexit 2
|
||||||
srcfile=${packagename}-src.tar.bz2
|
srcfile=${packagename}-src.tar.bz2
|
||||||
echo "Retrieving source from $srcurl .."
|
echo "Retrieving source from $srcurl .."
|
||||||
urlget $srcurl >$srcfile || exit
|
urlget $srcurl >$srcfile || myexit 3
|
||||||
echo "Source retrieved in $SRC/$srcfile."
|
echo "Source retrieved in $SRC/$srcfile."
|
||||||
$BUNZIP2 -dc $srcfile | tar xf - >/dev/null || exit
|
$BUNZIP2 -dc $srcfile | tar xf - >/dev/null || myexit 3
|
||||||
echo "Source unpacked in $SRC."
|
echo "Source unpacked in $SRC."
|
||||||
)
|
)
|
||||||
fi
|
fi
|
||||||
|
@ -215,8 +228,8 @@ do cd $TMPDIR
|
||||||
srcfile=$CDSRC/${packagename}.tar.bz2
|
srcfile=$CDSRC/${packagename}.tar.bz2
|
||||||
if [ -f $srcfile -a "$getsources" = y ]
|
if [ -f $srcfile -a "$getsources" = y ]
|
||||||
then
|
then
|
||||||
( cd $SRC || exit
|
( cd $SRC || myexit 2
|
||||||
$BUNZIP2 -dc $srcfile | tar xf - || exit
|
$BUNZIP2 -dc $srcfile | tar xf - || myexit 3
|
||||||
echo "Source $srcfile unpacked in $SRC."
|
echo "Source $srcfile unpacked in $SRC."
|
||||||
)
|
)
|
||||||
fi
|
fi
|
||||||
|
@ -230,3 +243,4 @@ do cd $TMPDIR
|
||||||
done
|
done
|
||||||
|
|
||||||
rm -f $TMPDIR/.* # Remove any remaining .postinstall script or .list*
|
rm -f $TMPDIR/.* # Remove any remaining .postinstall script or .list*
|
||||||
|
myexit 0
|
||||||
|
|
29
man/man8/packit.8
Normal file
29
man/man8/packit.8
Normal file
|
@ -0,0 +1,29 @@
|
||||||
|
.TH PACKIT 8
|
||||||
|
.SH NAME
|
||||||
|
packit \- install binary packman package
|
||||||
|
.SH SYNOPSIS
|
||||||
|
\fBpackit
|
||||||
|
.RB <package file>
|
||||||
|
\fR
|
||||||
|
.br
|
||||||
|
.de FL
|
||||||
|
.TP
|
||||||
|
\\fB\\$1\\fR
|
||||||
|
\\$2
|
||||||
|
..
|
||||||
|
.de EX
|
||||||
|
.TP 20
|
||||||
|
\\fB\\$1\\fR
|
||||||
|
# \\$2
|
||||||
|
..
|
||||||
|
.SH DESCRIPTION
|
||||||
|
.PP
|
||||||
|
.I packit
|
||||||
|
is used to install binary packman packages. In case a
|
||||||
|
.B .postinstall
|
||||||
|
file is present in the package, it will be executed using sh -e. Finally,
|
||||||
|
.I packit
|
||||||
|
installs (newly added) man pages located in the directories /usr/man,
|
||||||
|
/usr/local/man, /usr/gnu/man, and /usr/X11R6/man.
|
||||||
|
.SH "SEE ALSO"
|
||||||
|
.BR packman (8).
|
33
man/man8/packman.8
Normal file
33
man/man8/packman.8
Normal file
|
@ -0,0 +1,33 @@
|
||||||
|
.TH PACKMAN 8
|
||||||
|
.SH NAME
|
||||||
|
packman \- install binary and source packages
|
||||||
|
.SH SYNOPSIS
|
||||||
|
\fBpackman\fR
|
||||||
|
.br
|
||||||
|
.de FL
|
||||||
|
.TP
|
||||||
|
\\fB\\$1\\fR
|
||||||
|
\\$2
|
||||||
|
..
|
||||||
|
.de EX
|
||||||
|
.TP 20
|
||||||
|
\\fB\\$1\\fR
|
||||||
|
# \\$2
|
||||||
|
..
|
||||||
|
.SH DESCRIPTION
|
||||||
|
.PP
|
||||||
|
\s-1MINIX 3\s-1
|
||||||
|
uses
|
||||||
|
.I packman
|
||||||
|
to install binary and source packages from CD or repository.
|
||||||
|
.I packman
|
||||||
|
checks if a CD with packages (i.e.
|
||||||
|
\s-1MINIX 3\s-1
|
||||||
|
install disk) and a working network connection is present, and interactively
|
||||||
|
ask you which of the available sources to use. In case you have a working
|
||||||
|
networking connection,
|
||||||
|
.I packman
|
||||||
|
inquires to retrieve the latest package list. Subsequently, a list of available
|
||||||
|
packages is shown and you are asked which packages to install.
|
||||||
|
.SH "SEE ALSO"
|
||||||
|
.BR packit (8).
|
Loading…
Reference in a new issue