network/avahi: Allow VERSION override, fix user/group detection.

Signed-off-by: B. Watson <yalhcru@gmail.com>
Signed-off-by: David Spencer <idlemoor@slackbuilds.org>
This commit is contained in:
B. Watson 2017-03-21 04:01:23 -04:00 committed by David Spencer
parent 79fca13527
commit 8fcb5bd512

View file

@ -27,13 +27,13 @@
# ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
PRGNAM=avahi
VERSION=0.6.31
VERSION=${VERSION:-0.6.31}
BUILD=${BUILD:-1}
TAG=${TAG:-_SBo}
if [ -z "$ARCH" ]; then
case "$( uname -m )" in
i?86) ARCH=i486 ;;
i?86) ARCH=i586 ;;
arm*) ARCH=arm ;;
*) ARCH=$( uname -m ) ;;
esac
@ -60,15 +60,15 @@ warn_accounts() {
}
# Bail if user and/or group isn't valid on your system
if ! grep -q "^avahi:" /etc/passwd; then
if ! getent passwd avahi &>/dev/null; then
warn_accounts
fi
if ! grep -q "^avahi:" /etc/group ; then
if ! getent group avahi &>/dev/null; then
warn_accounts
fi
if [ "${ARCH}" = "i486" ]; then
SLKCFLAGS="-O2 -march=i486 -mtune=i686"
if [ "${ARCH}" = "i586" ]; then
SLKCFLAGS="-O2 -march=i586 -mtune=i686"
LIBDIRSUFFIX=""
elif [ "$ARCH" = "i686" ]; then
SLKCFLAGS="-O2 -march=i686 -mtune=i686"