mirror of
https://git.FreeBSD.org/ports.git
synced 2024-12-28 05:29:48 +00:00
5274b14529
in SourceForge SVN. It now builds using SCons, and the Boost C++ libraries. The package is now relocatable using the rtld $ORIGIN feature, and should now conform to hier(7), and the Filesystem Hierarchy Standard. Other improvements include: more mature shared library support, default to using UNIX domain sockets for improved RPC performance, PIM-SM BSR, various bug fixes and performance enhancements, size reductions. With shared libraries, a full production router suite package of xorp-devel now weighs in at ~22MB on-disk, on amd64.
37 lines
986 B
Bash
37 lines
986 B
Bash
#!/bin/sh
|
|
#
|
|
# $FreeBSD: /tmp/pcvs/ports/net/xorp-devel/pkg-install,v 1.1 2009-12-08 10:53:10 bms Exp $
|
|
#
|
|
|
|
PATH=/bin:/usr/bin:/usr/sbin
|
|
|
|
if [ -z "${XORP_GROUP}" ]; then
|
|
XORP_GROUP=xorp
|
|
fi
|
|
|
|
case $2 in
|
|
POST-INSTALL)
|
|
if [ ! -f ${PREFIX}/etc/xorp.conf.sample ]; then \
|
|
cp ${WRKSRC}/rtrmgr/config/multicast4.boot \
|
|
${PREFIX}/etc/xorp.conf.sample; \
|
|
fi
|
|
if pw group show "${XORP_GROUP}" 2>/dev/null; then \
|
|
echo "You already have a group \"${XORP_GROUP}\", so I will use it."; \
|
|
else \
|
|
echo "Adding group \"${XORP_GROUP}\"."; \
|
|
pw groupadd -n ${XORP_GROUP} 2>/dev/null; \
|
|
fi
|
|
echo ""
|
|
echo "Add the following lines to /etc/rc.conf to enable xorp:"
|
|
echo ""
|
|
echo "defaultrouter=\"NO\""
|
|
echo "xorp_enable=\"YES\""
|
|
echo ""
|
|
echo "A configuration file must be created at ${PREFIX}/etc/xorp.conf before use."
|
|
echo ""
|
|
echo "Users who will be changing the xorp configuration via xorpsh"
|
|
echo "must be members of the group xorp."
|
|
echo ""
|
|
;;
|
|
esac
|