diff options
author | drochner <drochner@pkgsrc.org> | 2004-07-09 12:34:53 +0000 |
---|---|---|
committer | drochner <drochner@pkgsrc.org> | 2004-07-09 12:34:53 +0000 |
commit | 3c718a82b3ee902a1663fe4ae6743aac242abc8a (patch) | |
tree | 9e64b386fd7c8a78d0e4e670954e88c2eec9ef67 /x11 | |
parent | 3be6477b97aed249438531b062d8e04108ec6d71 (diff) | |
download | pkgsrc-3c718a82b3ee902a1663fe4ae6743aac242abc8a.tar.gz |
depend on groff and use ${TBL} for tbl,
fixes PR pkg/23010 by Jeremy C. Reed
Diffstat (limited to 'x11')
-rw-r--r-- | x11/openmotif/Makefile | 5 |
1 files changed, 3 insertions, 2 deletions
diff --git a/x11/openmotif/Makefile b/x11/openmotif/Makefile index 6e531cfabf9..eb0faea7ea7 100644 --- a/x11/openmotif/Makefile +++ b/x11/openmotif/Makefile @@ -1,4 +1,4 @@ -# $NetBSD: Makefile,v 1.26 2004/04/11 18:21:32 xtraeme Exp $ +# $NetBSD: Makefile,v 1.27 2004/07/09 12:34:53 drochner Exp $ # FreeBSD: /c/ncvs/ports/x11-toolkits/open-motif/Makefile,v 1.18 2000/10/09 01:40:02 asami Exp # OpenBSD: Makefile,v 1.5 2000/10/23 16:08:12 espie Exp @@ -102,7 +102,7 @@ do-configure: post-build: cd ${WRKSRC}/doc/man; \ for file in man1/*.1 man3/*.3 man4/*.4 man5/*.5; do \ - tbl $${file} > $${file}.tblized; \ + ${TBL} $${file} > $${file}.tblized; \ ${MV} -f $${file}.tblized $${file}; \ done @@ -119,4 +119,5 @@ post-install: ${INSTALL_MAN} $${file} ${PREFIX}/man/$${file}; \ done +.include "../../textproc/groff/buildlink3.mk" .include "../../mk/bsd.pkg.mk" |