diff options
author | scw <scw@pkgsrc.org> | 2001-02-09 14:25:48 +0000 |
---|---|---|
committer | scw <scw@pkgsrc.org> | 2001-02-09 14:25:48 +0000 |
commit | cc59bf2a5d38aad9acaab4d5c306f04742dc601b (patch) | |
tree | b681f9e9fe352e7b63dbe76a02833308531f1ffa /sysutils/tits/Makefile | |
parent | 76e182323e04e4ef10a19c294d72891844831b4e (diff) | |
download | pkgsrc-cc59bf2a5d38aad9acaab4d5c306f04742dc601b.tar.gz |
Import of a "Tiny Terminal Server".
`Tits' implements a fairly simple Terminal Server which allows clients
to connect, using telnet(1), to serial ports on the host.
Diffstat (limited to 'sysutils/tits/Makefile')
-rw-r--r-- | sysutils/tits/Makefile | 24 |
1 files changed, 24 insertions, 0 deletions
diff --git a/sysutils/tits/Makefile b/sysutils/tits/Makefile new file mode 100644 index 00000000000..faf587e4a5e --- /dev/null +++ b/sysutils/tits/Makefile @@ -0,0 +1,24 @@ +# $NetBSD: Makefile,v 1.1.1.1 2001/02/09 14:25:48 scw Exp $ +# + +DISTNAME= tits-1.0 +CATEGORIES= sysutils +MASTER_SITES= http://www.wee-eck.demon.co.uk/ + +MAINTAINER= scw@netbsd.org +#HOMEPAGE= + +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|${PREFIX}|g' ${WRKSRC}/tits.8.in > ${WRKSRC}/tits.8 + +post-install: + ${BSD_INSTALL_DATA} ${WRKSRC}/tits.conf ${PREFIX}/share/examples/ + +.include "../../mk/bsd.pkg.mk" |