diff options
author | minskim <minskim@pkgsrc.org> | 2012-02-10 17:12:48 +0000 |
---|---|---|
committer | minskim <minskim@pkgsrc.org> | 2012-02-10 17:12:48 +0000 |
commit | 9208e05d47a17caf4154d42886cd3ab756312e85 (patch) | |
tree | 3150c19d2041da3d2934d321e873205456e1d2c9 /converters/bibtex2html/Makefile | |
parent | c4380040b83286f19ba5c085692b0af4697e9219 (diff) | |
download | pkgsrc-9208e05d47a17caf4154d42886cd3ab756312e85.tar.gz |
Update bibtex2html to 1.97.
Changes:
o fixed translation of \u{a}, removed incorrect translations of \u{n}
and \u{N} (contributed by Domenico Bianculli)
o bib2bib conditions: support for \u (contributed by Domenico Bianculli)
Diffstat (limited to 'converters/bibtex2html/Makefile')
-rw-r--r-- | converters/bibtex2html/Makefile | 23 |
1 files changed, 14 insertions, 9 deletions
diff --git a/converters/bibtex2html/Makefile b/converters/bibtex2html/Makefile index 9e958efc65b..67094e1b948 100644 --- a/converters/bibtex2html/Makefile +++ b/converters/bibtex2html/Makefile @@ -1,23 +1,28 @@ -# $NetBSD: Makefile,v 1.28 2011/12/06 00:19:22 sbd Exp $ +# $NetBSD: Makefile,v 1.29 2012/02/10 17:12:48 minskim Exp $ -DISTNAME= bibtex2html-1.96 -PKGREVISION= 1 +DISTNAME= bibtex2html-1.97 CATEGORIES= converters MASTER_SITES= http://www.lri.fr/~filliatr/ftp/bibtex2html/ -MAINTAINER= minskim@NetBSD.org +MAINTAINER= pkgsrc-users@NetBSD.org HOMEPAGE= http://www.lri.fr/~filliatr/bibtex2html/ COMMENT= Collection of tools for translating from BibTeX to HTML LICENSE= gnu-gpl-v2 BUILD_DEPENDS+= hevea-[0-9]*:../../textproc/hevea -BUILD_DEPENDS+= dvipsk-[0-9]*:../../print/dvipsk +BUILD_DEPENDS+= tex-cm-super-[0-9]*:../../fonts/tex-cm-super +BUILD_DEPENDS+= tex-ec-[0-9]*:../../fonts/tex-ec +BUILD_DEPENDS+= tex-latex-[0-9]*:../../print/tex-latex +BUILD_DEPENDS+= tex-latex-bin-[0-9]*:../../print/tex-latex-bin +BUILD_DEPENDS+= tex-preprint-[0-9]*:../../print/tex-preprint +BUILD_DEPENDS+= tex-url-[0-9]*:../../print/tex-url +DEPENDS+= tex-bibtex-[0-9]*:../../print/tex-bibtex +DEPENDS+= web2c-[0-9]*:../../print/web2c PKG_DESTDIR_SUPPORT= user-destdir GNU_CONFIGURE= yes USE_TOOLS+= perl:run -TEX_ACCEPTED= teTeX3 SUBST_CLASSES+= paths SUBST_MESSAGE.paths= Fixing hardcoded paths. @@ -28,9 +33,11 @@ SUBST_SED.paths= -e 's,/usr/share,${PREFIX}/share,g' INSTALLATION_DIRS+= bin ${PKGMANDIR}/man1 INSTALLATION_DIRS+= share/doc/${PKGBASE} +.include "../../lang/ocaml/buildlink3.mk" + post-build: set -e; \ - cd ${WRKSRC}; ${MAKE} doc + cd ${WRKSRC} && ${MAKE} doc do-install: ${INSTALL_SCRIPT} ${WRKSRC}/aux2bib ${DESTDIR}${PREFIX}/bin @@ -47,6 +54,4 @@ do-install: ${INSTALL_DATA} ${WRKSRC}/manual.pdf \ ${DESTDIR}${PREFIX}/share/doc/${PKGBASE} -.include "../../lang/ocaml/buildlink3.mk" -.include "../../mk/tex.buildlink3.mk" .include "../../mk/bsd.pkg.mk" |