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 | 3d8ef5a52d6570c7a88c64337bb6c476b78c810c (patch) | |
tree | b711f279533efa082bd9211a7161438542a8810d /textproc/unroff/Makefile | |
parent | 7f7f5ce9170554e6c0c04606c5c2c0548ffab031 (diff) | |
download | pkgsrc-3d8ef5a52d6570c7a88c64337bb6c476b78c810c.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/Makefile')
-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 |