diff options
author | jlam <jlam@pkgsrc.org> | 2005-11-07 02:48:50 +0000 |
---|---|---|
committer | jlam <jlam@pkgsrc.org> | 2005-11-07 02:48:50 +0000 |
commit | 0d48f281f89e3b1d8a4c535bbe45673c91219bd0 (patch) | |
tree | 438a66024d2e2f0e7756bbe66d63f1198241ec79 | |
parent | 356ab502208f82de70bb2ab6533f5b719d5f9592 (diff) | |
download | pkgsrc-0d48f281f89e3b1d8a4c535bbe45673c91219bd0.tar.gz |
Pre-format the tbl in the faucet and hose man pages so they're properly
displayed by man(1).
-rw-r--r-- | net/netpipes/Makefile | 8 |
1 files changed, 7 insertions, 1 deletions
diff --git a/net/netpipes/Makefile b/net/netpipes/Makefile index b210b1d9713..8a26551d4fe 100644 --- a/net/netpipes/Makefile +++ b/net/netpipes/Makefile @@ -1,4 +1,4 @@ -# $NetBSD: Makefile,v 1.2 2005/11/07 00:00:23 jlam Exp $ +# $NetBSD: Makefile,v 1.3 2005/11/07 02:48:50 jlam Exp $ DISTNAME= netpipes-4.2-export PKGNAME= ${DISTNAME:S/-export//} @@ -10,9 +10,15 @@ HOMEPAGE= http://web.purplefrog.com/~thoth/netpipes/netpipes.html COMMENT= utilities for communicating via sockets WRKSRC= ${WRKDIR} +USE_TOOLS+= tbl LIBS.SunOS= -lsocket -lnsl INSTALLATION_DIRS= bin ${PKGMANDIR} +post-build: + cd ${WRKSRC}; for f in faucet.1 hose.1; do \ + ${TBL} $$f > $$f.new; ${MV} -f $$f.new $$f; \ + done + .include "../../mk/bsd.pkg.mk" |