0e3e65c6bc
- Update to 0.5.0. - Add ftp.gnokii.org as MASTER_SITE, as it is back. And from Simon: - Fix package building - use pkg-install for adding/removing the gnokii group. - Use REINPLACE_CMD instead of sed for cleanliness. - Unbreak building on -current. PR: ports/47516 Submitted by: Simon Schubert <corecode@corecode.ath.cx> (partly)
38 lines
743 B
Bash
38 lines
743 B
Bash
#!/bin/sh
|
|
|
|
PATH=/bin:/usr/bin:/usr/sbin
|
|
|
|
GROUP=gnokii
|
|
|
|
SUIDBINS="${PKG_PREFIX}/sbin/gnokiid ${PKG_PREFIX}/sbin/mgnokiidev"
|
|
BINS="${PKG_PREFIX}/bin/gnokii ${PKG_PREFIX}/bin/xgnokii ${SUIDBINS}"
|
|
|
|
case "$2" in
|
|
"PRE-INSTALL")
|
|
if pw group show "${GROUP}" 2>/dev/null; then
|
|
echo "You already have a group \"${GROUP}\", so I will use it."
|
|
else
|
|
if pw groupadd ${GROUP}; then
|
|
echo "Added group \"${GROUP}\"."
|
|
else
|
|
echo "Adding group \"${GROUP}\" failed..."
|
|
exit 1
|
|
fi
|
|
fi
|
|
;;
|
|
|
|
"POST-INSTALL")
|
|
chgrp $GROUP $BINS
|
|
chmod 750 ${BINS}
|
|
chmod u+s ${SUIDBINS}
|
|
;;
|
|
|
|
"DEINSTALL")
|
|
if [ -z "`pw groupshow $GROUP 2>&1 | sed -E -e 's/^([^:]+:){3}(.*)$/\2/'`" ]; then
|
|
echo "Removing empty group \"$GROUP\"."
|
|
pw groupdel $GROUP
|
|
fi
|
|
;;
|
|
|
|
esac
|