92f2bc71e8
Changes from previous version: 1.0.3 -> 1.1.0 ~~~~~~~~~~~~~~ 13/04/2003 - Added a "raw" protocol, based on the existing telnet code. - Added a "suppressbanner" client option, for the benefit of the "raw" protocol. 1.1.0 -> 1.1.1 ~~~~~~~~~~~~~~ 1/09/2003 - Added "xonxoff true/false" to the tty server's config file option list to permit changing software flow-control settings. (Requested by Ben Elliston).
26 lines
678 B
Makefile
26 lines
678 B
Makefile
# $NetBSD: Makefile,v 1.12 2003/09/26 08:16:17 agc Exp $
|
|
#
|
|
|
|
DISTNAME= tits-1.1.1
|
|
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"
|