2007-04-05 16:48:42 +05:30
|
|
|
# Copyright 1999-2007 Gentoo Foundation
|
2007-11-14 20:52:04 +05:30
|
|
|
# Copyright 2007 Roy Marples
|
|
|
|
# All rights reserved
|
2007-04-05 16:48:42 +05:30
|
|
|
|
2007-11-14 20:52:04 +05:30
|
|
|
# Redistribution and use in source and binary forms, with or without
|
|
|
|
# modification, are permitted provided that the following conditions
|
|
|
|
# are met:
|
|
|
|
# 1. Redistributions of source code must retain the above copyright
|
|
|
|
# notice, this list of conditions and the following disclaimer.
|
|
|
|
# 2. Redistributions in binary form must reproduce the above copyright
|
|
|
|
# notice, this list of conditions and the following disclaimer in the
|
|
|
|
# documentation and/or other materials provided with the distribution.
|
|
|
|
#
|
|
|
|
# THIS SOFTWARE IS PROVIDED BY THE AUTHOR AND CONTRIBUTORS ``AS IS'' AND
|
|
|
|
# ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE
|
|
|
|
# IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE
|
|
|
|
# ARE DISCLAIMED. IN NO EVENT SHALL THE AUTHOR OR CONTRIBUTORS BE LIABLE
|
|
|
|
# FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL
|
|
|
|
# DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS
|
|
|
|
# OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION)
|
|
|
|
# HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT
|
|
|
|
# LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY
|
|
|
|
# OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF
|
|
|
|
# SUCH DAMAGE.
|
2007-04-05 16:48:42 +05:30
|
|
|
|
|
|
|
RC_GOT_FUNCTIONS="yes"
|
|
|
|
|
|
|
|
eindent() {
|
2007-04-24 16:59:19 +05:30
|
|
|
RC_EINDENT=$((${RC_EINDENT:-0} + 2))
|
|
|
|
[ "${RC_EINDENT}" -gt 40 ] && RC_EINDENT=40
|
|
|
|
export RC_EINDENT
|
2007-04-05 16:48:42 +05:30
|
|
|
}
|
|
|
|
|
|
|
|
eoutdent() {
|
2007-04-24 16:59:19 +05:30
|
|
|
RC_EINDENT=$((${RC_EINDENT:-0} - 2))
|
|
|
|
[ "${RC_EINDENT}" -lt 0 ] && RC_EINDENT=0
|
2007-04-05 16:48:42 +05:30
|
|
|
return 0
|
|
|
|
}
|
|
|
|
|
|
|
|
# Safer way to list the contents of a directory,
|
|
|
|
# as it do not have the "empty dir bug".
|
|
|
|
#
|
|
|
|
# char *dolisting(param)
|
|
|
|
#
|
|
|
|
# print a list of the directory contents
|
|
|
|
#
|
|
|
|
# NOTE: quote the params if they contain globs.
|
|
|
|
# also, error checking is not that extensive ...
|
|
|
|
#
|
|
|
|
dolisting() {
|
|
|
|
local x= y= mylist= mypath="$*"
|
|
|
|
|
|
|
|
# Here we use file globbing instead of ls to save on forking
|
|
|
|
for x in ${mypath} ; do
|
|
|
|
[ ! -e "${x}" ] && continue
|
|
|
|
|
|
|
|
if [ -L "${x}" -o -f "${x}" ] ; then
|
|
|
|
mylist="${mylist} "${x}
|
|
|
|
elif [ -d "${x}" ] ; then
|
|
|
|
[ "${x%/}" != "${x}" ] && x=${x%/}
|
|
|
|
|
|
|
|
for y in "${x}"/* ; do
|
|
|
|
[ -e "${y}" ] && mylist="${mylist} ${y}"
|
|
|
|
done
|
|
|
|
fi
|
|
|
|
done
|
|
|
|
|
|
|
|
echo "${mylist# *}"
|
|
|
|
}
|
|
|
|
|
|
|
|
# bool is_older_than(reference, files/dirs to check)
|
|
|
|
#
|
|
|
|
# return 0 if any of the files/dirs are newer than
|
|
|
|
# the reference file
|
|
|
|
#
|
|
|
|
# EXAMPLE: if is_older_than a.out *.o ; then ...
|
|
|
|
is_older_than() {
|
|
|
|
local x= ref="$1"
|
|
|
|
shift
|
|
|
|
|
|
|
|
for x in "$@" ; do
|
|
|
|
[ -e "${x}" ] || continue
|
|
|
|
# We need to check the mtime if it's a directory too as the
|
|
|
|
# contents may have changed.
|
|
|
|
[ "${x}" -nt "${ref}" ] && return 0
|
|
|
|
[ -d "${x}" ] && is_older_than "${ref}" "${x}"/* && return 0
|
|
|
|
done
|
|
|
|
|
|
|
|
return 1
|
|
|
|
}
|
|
|
|
|
|
|
|
uniqify() {
|
|
|
|
local result=
|
|
|
|
while [ -n "$1" ] ; do
|
|
|
|
case " ${result} " in
|
|
|
|
*" $1 "*) ;;
|
|
|
|
*) result="${result} $1" ;;
|
|
|
|
esac
|
|
|
|
shift
|
|
|
|
done
|
|
|
|
echo "${result# *}"
|
|
|
|
}
|
|
|
|
|
|
|
|
KV_to_int() {
|
|
|
|
[ -z $1 ] && return 1
|
|
|
|
|
2007-05-06 01:57:50 +05:30
|
|
|
local x=${1%%-*}
|
|
|
|
local KV_MAJOR=${x%%.*}
|
|
|
|
x=${x#*.}
|
2007-04-05 16:48:42 +05:30
|
|
|
local KV_MINOR=${x%%.*}
|
2007-05-06 02:52:46 +05:30
|
|
|
x=${x#*.}
|
2007-05-06 01:57:50 +05:30
|
|
|
local KV_MICRO=${x%%.*}
|
2007-04-05 16:48:42 +05:30
|
|
|
local KV_int=$((${KV_MAJOR} * 65536 + ${KV_MINOR} * 256 + ${KV_MICRO} ))
|
|
|
|
|
|
|
|
# We make version 2.2.0 the minimum version we will handle as
|
|
|
|
# a sanity check ... if its less, we fail ...
|
|
|
|
[ "${KV_int}" -lt 131584 ] && return 1
|
|
|
|
|
|
|
|
echo "${KV_int}"
|
|
|
|
}
|
|
|
|
|
2007-07-16 21:52:37 +05:30
|
|
|
# Allow our scripts to support zsh
|
|
|
|
if [ -n "${ZSH_VERSION}" ] ; then
|
|
|
|
emulate sh
|
|
|
|
NULLCMD=:
|
|
|
|
# Zsh 3.x and 4.x performs word splitting on ${1+"$@"}, which
|
|
|
|
# is contrary to our usage. Disable this feature.
|
|
|
|
alias -g '${1+"$@"}'='"$@"'
|
|
|
|
setopt NO_GLOB_SUBST
|
|
|
|
fi
|
|
|
|
|
2007-04-05 16:48:42 +05:30
|
|
|
# Setup a basic $PATH. Just add system default to existing.
|
|
|
|
# This should solve both /sbin and /usr/sbin not present when
|
|
|
|
# doing 'su -c foo', or for something like: PATH= rcscript start
|
|
|
|
case "${PATH}" in
|
2007-11-21 21:10:42 +05:30
|
|
|
/lib/rc/bin:/bin:/sbin:/usr/bin:/usr/sbin:/usr/local/bin:/usr/local/sbin) ;;
|
|
|
|
/lib/rc/bin:/bin:/sbin:/usr/bin:/usr/sbin:/usr/local/bin:/usr/local/sbin:*) ;;
|
|
|
|
*) export PATH="/lib/rc/bin:/bin:/sbin:/usr/bin:/usr/sbin:/usr/local/bin:/usr/local/sbin:${PATH}" ;;
|
2007-04-05 16:48:42 +05:30
|
|
|
esac
|
|
|
|
|
|
|
|
for arg in "$@" ; do
|
|
|
|
case "${arg}" in
|
2007-09-29 00:59:59 +05:30
|
|
|
--nocolor|--nocolour|-C)
|
2007-04-05 16:48:42 +05:30
|
|
|
export RC_NOCOLOR="yes"
|
|
|
|
;;
|
|
|
|
esac
|
|
|
|
done
|
|
|
|
|
|
|
|
if [ "${RC_NOCOLOR}" != "yes" -a -z "${GOOD}" ] ; then
|
2007-04-17 15:02:18 +05:30
|
|
|
eval $(eval_ecolors)
|
2007-04-05 16:48:42 +05:30
|
|
|
fi
|
|
|
|
|
|
|
|
# vim: set ts=4 :
|