diff options
author | rillig <rillig@pkgsrc.org> | 2006-11-12 01:45:19 +0000 |
---|---|---|
committer | rillig <rillig@pkgsrc.org> | 2006-11-12 01:45:19 +0000 |
commit | 32641016eebf1c3d40a16a4e54d630f9b9ed738a (patch) | |
tree | a62ae14ee204dc10f55f172d73f56c7b626b0af9 /textproc | |
parent | fb70424dda7cbd63cea5d3f8bcfe9c7c5476a676 (diff) | |
download | pkgsrc-32641016eebf1c3d40a16a4e54d630f9b9ed738a.tar.gz |
Fixed PKGMANDIR.
Diffstat (limited to 'textproc')
-rw-r--r-- | textproc/html2text/Makefile | 8 |
1 files changed, 4 insertions, 4 deletions
diff --git a/textproc/html2text/Makefile b/textproc/html2text/Makefile index a574a153ca4..ccb83305771 100644 --- a/textproc/html2text/Makefile +++ b/textproc/html2text/Makefile @@ -1,4 +1,4 @@ -# $NetBSD: Makefile,v 1.12 2005/12/05 20:51:03 rillig Exp $ +# $NetBSD: Makefile,v 1.13 2006/11/12 01:45:19 rillig Exp $ DISTNAME= html2text-1.3.2a CATEGORIES= textproc @@ -13,14 +13,14 @@ GCC_REQD+= 3.0 HAS_CONFIGURE= yes CONFIGURE_ENV+= ECHO=${ECHO:Q} USE_TOOLS+= gunzip -INSTALLATION_DIRS= bin man/man1 man/man5 +INSTALLATION_DIRS= bin ${PKGMANDIR}/man1 ${PKGMANDIR}/man5 post-build: ${GUNZIP_CMD} -d ${WRKSRC}/html2text.1.gz ${WRKSRC}/html2textrc.5.gz do-install: ${INSTALL_PROGRAM} ${WRKSRC}/html2text ${PREFIX}/bin - ${INSTALL_MAN} ${WRKSRC}/html2text.1 ${PREFIX}/man/man1 - ${INSTALL_MAN} ${WRKSRC}/html2textrc.5 ${PREFIX}/man/man5/html2textrc.5 + ${INSTALL_MAN} ${WRKSRC}/html2text.1 ${PREFIX}/${PKGMANDIR}/man1 + ${INSTALL_MAN} ${WRKSRC}/html2textrc.5 ${PREFIX}/${PKGMANDIR}/man5/html2textrc.5 .include "../../mk/bsd.pkg.mk" |