97cde4efb8
and add scrypto, skrb5, ssecure into src-install.sh Reminded by: ru
35 lines
847 B
Bash
Executable File
35 lines
847 B
Bash
Executable File
#!/bin/sh
|
|
#
|
|
# $FreeBSD$
|
|
#
|
|
|
|
if [ "`id -u`" != "0" ]; then
|
|
echo "Sorry, this must be done as root."
|
|
exit 1
|
|
fi
|
|
if [ $# -lt 1 ]; then
|
|
echo "You must specify which components of src to extract"
|
|
echo "possible subcomponents are:"
|
|
echo
|
|
echo "base bin contrib crypto etc games gnu include krb5 lib"
|
|
echo "libexec release rescue sbin secure share sys tools ubin"
|
|
echo "usbin"
|
|
echo
|
|
echo "You may also specify all to extract all subcomponents."
|
|
exit 1
|
|
fi
|
|
|
|
if [ "$1" = "all" ]; then
|
|
dists="base bin contrib crypto etc games gnu include krb5 lib libexec release rescue sbin secure share sys tools ubin usbin"
|
|
else
|
|
dists="$*"
|
|
fi
|
|
|
|
echo "Extracting sources into ${DESTDIR}/usr/src..."
|
|
for i in $dists; do
|
|
echo " Extracting source component: $i"
|
|
cat s${i}.?? | tar --unlink -xpzf - -C ${DESTDIR}/usr/src
|
|
done
|
|
echo "Done extracting sources."
|
|
exit 0
|