diff options
author | joerg <joerg@pkgsrc.org> | 2008-05-26 02:13:14 +0000 |
---|---|---|
committer | joerg <joerg@pkgsrc.org> | 2008-05-26 02:13:14 +0000 |
commit | 7e8d73a2f828db9d35f29b49764e35728972ce24 (patch) | |
tree | b711f279533efa082bd9211a7161438542a8810d /textproc/unroff | |
parent | f46dfbfa33d3c97ae7eb4dca75789144f99079a7 (diff) | |
download | pkgsrc-7e8d73a2f828db9d35f29b49764e35728972ce24.tar.gz |
Second round of explicit pax dependencies. As reminded by tnn@,
many packages used to use ${PAX}. Use the common way of directly calling
pax, it is created as tool after all.
Diffstat (limited to 'textproc/unroff')
-rw-r--r-- | textproc/unroff/Makefile | 6 |
1 files changed, 4 insertions, 2 deletions
diff --git a/textproc/unroff/Makefile b/textproc/unroff/Makefile index 44dd99e3309..85c75195a5f 100644 --- a/textproc/unroff/Makefile +++ b/textproc/unroff/Makefile @@ -1,4 +1,4 @@ -# $NetBSD: Makefile,v 1.28 2007/12/02 11:44:26 wiz Exp $ +# $NetBSD: Makefile,v 1.29 2008/05/26 02:13:24 joerg Exp $ DISTNAME= unroff-1.0 PKGNAME= unroff-1.0.2 @@ -15,6 +15,8 @@ COMMENT= Programmable troff translator with backend for HTML DIST_SUBDIR= unroff +USE_TOOLS+= pax + CFLAGS+= -DBSD BUILD_DIRS= src @@ -29,7 +31,7 @@ do-install: ${INSTALL_DATA_DIR} ${LIBDIR} ${INSTALL_MAN_DIR} ${PREFIX}/${PKGMANDIR}/man1 cd ${WRKSRC} && ${INSTALL_PROGRAM} src/unroff ${PREFIX}/bin/unroff - cd ${WRKSRC} && ${PAX} -wr scm ${LIBDIR} + cd ${WRKSRC} && pax -wr scm ${LIBDIR} ${INSTALL_DATA_DIR} ${LIBDIR}/doc cd ${WRKSRC} && ${INSTALL_DATA} doc/manual.ms ${LIBDIR}/doc ${INSTALL_DATA_DIR} ${LIBDIR}/misc |