diff options
author | rillig <rillig@pkgsrc.org> | 2007-01-07 09:13:46 +0000 |
---|---|---|
committer | rillig <rillig@pkgsrc.org> | 2007-01-07 09:13:46 +0000 |
commit | 2829e658f2ba62cb77f3f151f468ec8de1549bd5 (patch) | |
tree | 77b9cef42b625156081609e43af1544d569620be /converters/bibtex2html/Makefile | |
parent | 5997a7db2d5af7de47f411825619ffc3689f1ce2 (diff) | |
download | pkgsrc-2829e658f2ba62cb77f3f151f468ec8de1549bd5.tar.gz |
Mechanically replaced man/* with ${PKGMANDIR}/* in the definition of
INSTALLATION_DIRS, as well as all occurrences of ${PREFIX}/man with
${PREFIX}/${PKGMANDIR}.
Fixes PR 35265, although I did not use the patch provided therein.
Diffstat (limited to 'converters/bibtex2html/Makefile')
-rw-r--r-- | converters/bibtex2html/Makefile | 10 |
1 files changed, 5 insertions, 5 deletions
diff --git a/converters/bibtex2html/Makefile b/converters/bibtex2html/Makefile index 04dbc89c06f..3776897b4a1 100644 --- a/converters/bibtex2html/Makefile +++ b/converters/bibtex2html/Makefile @@ -1,4 +1,4 @@ -# $NetBSD: Makefile,v 1.20 2006/08/10 03:21:39 minskim Exp $ +# $NetBSD: Makefile,v 1.21 2007/01/07 09:13:49 rillig Exp $ DISTNAME= bibtex2html-1.82 CATEGORIES= converters @@ -20,7 +20,7 @@ SUBST_STAGE.paths= pre-configure SUBST_FILES.paths= aux2bib.1 SUBST_SED.paths= -e 's,/usr/share,${PREFIX}/share,g' -INSTALLATION_DIRS= bin man/man1 +INSTALLATION_DIRS= bin ${PKGMANDIR}/man1 post-build: cd ${WRKSRC}; ${MAKE} doc @@ -29,9 +29,9 @@ do-install: ${INSTALL_SCRIPT} ${WRKSRC}/aux2bib ${PREFIX}/bin ${INSTALL_PROGRAM} ${WRKSRC}/bibtex2html ${PREFIX}/bin ${INSTALL_PROGRAM} ${WRKSRC}/bib2bib ${PREFIX}/bin - ${INSTALL_MAN} ${WRKSRC}/bibtex2html.1 ${PREFIX}/man/man1 - ${INSTALL_MAN} ${WRKSRC}/bibtex2html.1 ${PREFIX}/man/man1/bib2bib.1 - ${INSTALL_MAN} ${WRKSRC}/aux2bib.1 ${PREFIX}/man/man1/aux2bib.1 + ${INSTALL_MAN} ${WRKSRC}/bibtex2html.1 ${PREFIX}/${PKGMANDIR}/man1 + ${INSTALL_MAN} ${WRKSRC}/bibtex2html.1 ${PREFIX}/${PKGMANDIR}/man1/bib2bib.1 + ${INSTALL_MAN} ${WRKSRC}/aux2bib.1 ${PREFIX}/${PKGMANDIR}/man1/aux2bib.1 ${INSTALL_DATA_DIR} ${PREFIX}/share/doc/${PKGBASE} ${INSTALL_DATA} ${WRKSRC}/manual.html ${PREFIX}/share/doc/${PKGBASE} ${INSTALL_DATA} ${WRKSRC}/manual.ps ${PREFIX}/share/doc/${PKGBASE} |