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 /cad/qcad-manual-en | |
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 'cad/qcad-manual-en')
-rw-r--r-- | cad/qcad-manual-en/Makefile.common | 6 |
1 files changed, 4 insertions, 2 deletions
diff --git a/cad/qcad-manual-en/Makefile.common b/cad/qcad-manual-en/Makefile.common index 0fc2ce55f74..aaf2a9bdc8f 100644 --- a/cad/qcad-manual-en/Makefile.common +++ b/cad/qcad-manual-en/Makefile.common @@ -1,4 +1,4 @@ -# $NetBSD: Makefile.common,v 1.1 2006/06/15 08:41:13 chap Exp $ +# $NetBSD: Makefile.common,v 1.2 2008/05/26 02:13:16 joerg Exp $ # EXTRACT_SUFX= .zip @@ -11,11 +11,13 @@ EXTRACT_SUFX= .zip DEPENDS+= qcad>=2.0.4.0:../../cad/qcad +USE_TOOLS+= pax + NO_CONFIGURE= yes NO_BUILD= yes do-install: ${INSTALL_DATA_DIR} ${PREFIX}/share/qcad/doc - cd ${WRKSRC} && umask 022 && ${PAX} -rwpm . ${PREFIX}/share/qcad/doc + cd ${WRKSRC} && umask 022 && pax -rwpm . ${PREFIX}/share/qcad/doc .include "../../mk/bsd.pkg.mk" |