diff options
author | Alexis Ballier <aballier@gentoo.org> | 2009-09-20 13:39:48 +0000 |
---|---|---|
committer | Alexis Ballier <aballier@gentoo.org> | 2009-09-20 13:39:48 +0000 |
commit | 18c780ff4f0cb0dd4f2ff4e3221da08f1aaa9d64 (patch) | |
tree | f7bac7db1f4b9e5b6a074db82af9a8d3505d6ede /dev-tex/bibtex2html | |
parent | remove old (diff) | |
download | gentoo-2-18c780ff4f0cb0dd4f2ff4e3221da08f1aaa9d64.tar.gz gentoo-2-18c780ff4f0cb0dd4f2ff4e3221da08f1aaa9d64.tar.bz2 gentoo-2-18c780ff4f0cb0dd4f2ff4e3221da08f1aaa9d64.zip |
version bump
(Portage version: 2.2_rc41/cvs/Linux x86_64)
Diffstat (limited to 'dev-tex/bibtex2html')
-rw-r--r-- | dev-tex/bibtex2html/ChangeLog | 8 | ||||
-rw-r--r-- | dev-tex/bibtex2html/bibtex2html-1.94.ebuild | 54 |
2 files changed, 61 insertions, 1 deletions
diff --git a/dev-tex/bibtex2html/ChangeLog b/dev-tex/bibtex2html/ChangeLog index 7b3dbb027cdb..e811d5fa1cb3 100644 --- a/dev-tex/bibtex2html/ChangeLog +++ b/dev-tex/bibtex2html/ChangeLog @@ -1,6 +1,12 @@ # ChangeLog for dev-tex/bibtex2html # Copyright 1999-2009 Gentoo Foundation; Distributed under the GPL v2 -# $Header: /var/cvsroot/gentoo-x86/dev-tex/bibtex2html/ChangeLog,v 1.16 2009/05/30 09:24:18 ulm Exp $ +# $Header: /var/cvsroot/gentoo-x86/dev-tex/bibtex2html/ChangeLog,v 1.17 2009/09/20 13:39:48 aballier Exp $ + +*bibtex2html-1.94 (20 Sep 2009) + + 20 Sep 2009; Alexis Ballier <aballier@gentoo.org> + +bibtex2html-1.94.ebuild: + version bump 30 May 2009; Ulrich Mueller <ulm@gentoo.org> bibtex2html-1.91.ebuild, bibtex2html-1.92.ebuild: diff --git a/dev-tex/bibtex2html/bibtex2html-1.94.ebuild b/dev-tex/bibtex2html/bibtex2html-1.94.ebuild new file mode 100644 index 000000000000..c062241b2dc2 --- /dev/null +++ b/dev-tex/bibtex2html/bibtex2html-1.94.ebuild @@ -0,0 +1,54 @@ +# Copyright 1999-2009 Gentoo Foundation +# Distributed under the terms of the GNU General Public License v2 +# $Header: /var/cvsroot/gentoo-x86/dev-tex/bibtex2html/bibtex2html-1.94.ebuild,v 1.1 2009/09/20 13:39:48 aballier Exp $ + +inherit eutils + +IUSE="doc" + +DESCRIPTION="A bibtex to HTML converter" +SRC_URI="http://www.lri.fr/~filliatr/ftp/bibtex2html/${P}.tar.gz" +HOMEPAGE="http://www.lri.fr/~filliatr/bibtex2html/" + +SLOT="0" + +LICENSE="GPL-2" +KEYWORDS="~amd64 ~ppc ~x86" +RESTRICT="test" + +# With use doc we need a latex compiler to generate manual.ps +# hevea is used for manual.html +# manual.tex needs fullpage.sty +DEPEND=">=dev-lang/ocaml-3.09 + doc? ( virtual/latex-base + || ( dev-texlive/texlive-latexextra app-text/ptex ) + dev-tex/hevea )" +# We need tex-base for bibtex but also some bibtex styles, so we use latex-base +RDEPEND="virtual/latex-base" + +src_unpack() { + unpack ${A} + cd "${S}" + + epatch "${FILESDIR}/${PN}-1.88-destdir.patch" + # Avoid pre-stripped files + sed -i -e "s/strip/true/" Makefile.in +} + +src_compile() { + export VARTEXFONTS="${T}/fonts" + econf || die "could not configure bibtex2html" + emake || die "could not make bibtex2html" + if use doc; then + emake doc || die "failed to create doc" + fi +} + +src_install() { + emake DESTDIR="${D}" install || die "failed to install" + dodoc README CHANGES + if use doc; then + dodoc manual.ps + dohtml manual.html + fi +} |