diff options
author | tonio <tonio@pkgsrc.org> | 2008-01-10 18:15:29 +0000 |
---|---|---|
committer | tonio <tonio@pkgsrc.org> | 2008-01-10 18:15:29 +0000 |
commit | 1ac9cd1b232dac3d3455def07dfceca989c31702 (patch) | |
tree | 96f0eb689999454234e6346cfbc2cebaf7499edf /converters/bibtex2html/Makefile | |
parent | 6371e2593f64ffd584ac553a8c39c4679641b7bd (diff) | |
download | pkgsrc-1ac9cd1b232dac3d3455def07dfceca989c31702.tar.gz |
Update converters/bibtex2html to 1.89
Version 1.89, 08/01/2008
========================
o entry types and field names now typeset in lowercase in f_bib.html
o new option -unicode to use Unicode entities for some macros
(such as ◯ for \bigcirc, etc.)
o new option -html-entities to use HTML entities for some macros
such as \le, \approx, etc. (patch by Steven G. Johnson)
o new option -header to insert a header (similar to -footer)
(patch by Steven G. Johnson)
Diffstat (limited to 'converters/bibtex2html/Makefile')
-rw-r--r-- | converters/bibtex2html/Makefile | 8 |
1 files changed, 4 insertions, 4 deletions
diff --git a/converters/bibtex2html/Makefile b/converters/bibtex2html/Makefile index ff888f016dd..ee8eb67ec18 100644 --- a/converters/bibtex2html/Makefile +++ b/converters/bibtex2html/Makefile @@ -1,6 +1,6 @@ -# $NetBSD: Makefile,v 1.23 2007/12/01 14:19:35 tonio Exp $ +# $NetBSD: Makefile,v 1.24 2008/01/10 18:15:29 tonio Exp $ -DISTNAME= bibtex2html-1.88 +DISTNAME= bibtex2html-1.89 CATEGORIES= converters MASTER_SITES= http://www.lri.fr/~filliatr/ftp/bibtex2html/ @@ -20,7 +20,8 @@ SUBST_STAGE.paths= pre-configure SUBST_FILES.paths= aux2bib.1 SUBST_SED.paths= -e 's,/usr/share,${PREFIX}/share,g' -INSTALLATION_DIRS= bin ${PKGMANDIR}/man1 +INSTALLATION_DIRS+= bin ${PKGMANDIR}/man1 +INSTALLATION_DIRS+= share/doc/${PKGBASE} post-build: set -e; \ @@ -33,7 +34,6 @@ do-install: ${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} |