summaryrefslogtreecommitdiff
path: root/net
diff options
context:
space:
mode:
authorjlam <jlam@pkgsrc.org>2005-11-07 02:48:50 +0000
committerjlam <jlam@pkgsrc.org>2005-11-07 02:48:50 +0000
commit91456b7c0f48b966e426cb3781f96cb537622429 (patch)
tree438a66024d2e2f0e7756bbe66d63f1198241ec79 /net
parent3c9960ce0ec0572b329966eb01f805510977b92f (diff)
downloadpkgsrc-91456b7c0f48b966e426cb3781f96cb537622429.tar.gz
Pre-format the tbl in the faucet and hose man pages so they're properly
displayed by man(1).
Diffstat (limited to 'net')
-rw-r--r--net/netpipes/Makefile8
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"