diff options
author | reed <reed@pkgsrc.org> | 2005-12-27 20:41:33 +0000 |
---|---|---|
committer | reed <reed@pkgsrc.org> | 2005-12-27 20:41:33 +0000 |
commit | e9e2dab73e837a96be6c93347b886e3b22cff61f (patch) | |
tree | b811830efaa2b6a569a784fbf57aea5915ac52eb /archivers | |
parent | 89df11eb7af7a3a42345dd60f951fc76066cd666 (diff) | |
download | pkgsrc-e9e2dab73e837a96be6c93347b886e3b22cff61f.tar.gz |
Install man pages to PKGMANDIR instead of "man".
Diffstat (limited to 'archivers')
-rw-r--r-- | archivers/zip/Makefile | 12 |
1 files changed, 6 insertions, 6 deletions
diff --git a/archivers/zip/Makefile b/archivers/zip/Makefile index c0fa3000b77..908acba3921 100644 --- a/archivers/zip/Makefile +++ b/archivers/zip/Makefile @@ -1,4 +1,4 @@ -# $NetBSD: Makefile,v 1.48 2005/12/01 16:41:30 rillig Exp $ +# $NetBSD: Makefile,v 1.49 2005/12/27 20:41:33 reed Exp $ DISTNAME= zip231 PKGNAME= zip-2.31 @@ -39,15 +39,15 @@ CFLAGS+= -O CFLAGS+= -DHAVE_DIRENT_H .endif -INSTALLATION_DIRS= bin man/man1 +INSTALLATION_DIRS= bin ${PKGMANDIR}/man1 do-install: cd ${WRKSRC} && \ ${INSTALL_PROGRAM} zip zipnote zipsplit zipcloak ${PREFIX}/bin cd ${WRKSRC}/man && \ - ${INSTALL_MAN} zip.1 ${PREFIX}/man/man1 - ${LN} -f -s zip.1 ${PREFIX}/man/man1/zipcloak.1 - ${LN} -f -s zip.1 ${PREFIX}/man/man1/zipnote.1 - ${LN} -f -s zip.1 ${PREFIX}/man/man1/zipsplit.1 + ${INSTALL_MAN} zip.1 ${PREFIX}/${PKGMANDIR}/man1 + ${LN} -f -s zip.1 ${PREFIX}/${PKGMANDIR}/man1/zipcloak.1 + ${LN} -f -s zip.1 ${PREFIX}/${PKGMANDIR}/man1/zipnote.1 + ${LN} -f -s zip.1 ${PREFIX}/${PKGMANDIR}/man1/zipsplit.1 .include "../../mk/bsd.pkg.mk" |