pkgsrc/sysutils/tits/Makefile
scw 422efe9127 Upgrade to version 1.0.3.
Changes since the previous point release:
 - The telnet listener should not bomb out if it fails to init/add a client.
 - Fix a buffer size problem in the telnet client. Note: This was not a
   a buffer-overflow. It was simply getnameinfo(3) returning an error when
   presented with a peer whose IP address resolved to a string larger than
   NI_MAXSERV. Since NI_MAXSERV was the wrong constant to use anyway in this
   context, replace it with NI_MAXHOST.
2002-12-04 09:52:17 +00:00

26 lines
677 B
Makefile

# $NetBSD: Makefile,v 1.9 2002/12/04 09:52:17 scw Exp $
#
DISTNAME= tits-1.0.3
CATEGORIES= sysutils
MASTER_SITES= http://www.mctavish.co.uk/tits/
MAINTAINER= scw@netbsd.org
COMMENT= server which provides telnet(1) access to one or more tty ports
BINDIR= ${PREFIX}/sbin
MANDIR= ${PREFIX}/man
MAKE_ENV+= BINDIR=${BINDIR} MANDIR=${MANDIR}
MANCOMPRESSED_IF_MANZ= yes
post-patch:
${MV} ${WRKSRC}/tits.8 ${WRKSRC}/tits.8.in
${SED} -e 's|/usr/local/etc|${PKG_SYSCONFDIR}|g' \
-e 's|/usr/local|${PREFIX}|g' \
${WRKSRC}/tits.8.in > ${WRKSRC}/tits.8
post-install:
${INSTALL_DATA} ${WRKSRC}/tits.conf ${PREFIX}/share/examples/
.include "../../mk/bsd.pkg.mk"