74df2bdae4
In brief: - We now support a completely new platform, Tru64 UNIX - We have mostly revamped the Windows Cygwin port - The IRIX port has been brought up to date - The HPUX port has been retested and minor warnings have been fixed - The configure script has been massively revamped - Most noticeable is that we generate make dependencies on the fly now - We now use our own .lang files to provide translated numeric messages - IPv6 support is now automatically enabled/disabled - Cryptlinks now use Nagle's TCP_NODELAY algorithm - X-line (gecos ban) support has been added - Nick and channel RESVs are now stored in nresv.conf and cresv.conf
21 lines
550 B
Text
21 lines
550 B
Text
# $NetBSD: INSTALL,v 1.3 2005/11/13 22:40:00 adrianp Exp $
|
|
|
|
case ${STAGE} in
|
|
|
|
POST-INSTALL)
|
|
|
|
for f in ${PKG_SYSCONFDIR}/dline.conf ${PKG_SYSCONFDIR}/kline.conf \
|
|
${PKG_SYSCONFDIR}/xline.conf ${PKG_SYSCONFDIR}/nresv.conf \
|
|
${PKG_SYSCONFDIR}/cresv.conf ${PKG_SYSCONFDIR}/ircd.motd \
|
|
@VARBASE@/log/ircd-hybrid/logs/userlog \
|
|
@VARBASE@/log/ircd-hybrid/logs/operlog \
|
|
@VARBASE@/log/ircd-hybrid/logs/foperlog
|
|
do
|
|
${TOUCH} ${f}
|
|
${CHOWN} @IRCD_HYBRID_IRC_USER@ ${f}
|
|
${CHGRP} @IRCD_HYBRID_IRC_GROUP@ ${f}
|
|
${CHMOD} 0640 ${f}
|
|
done
|
|
|
|
;;
|
|
esac
|