diff options
author | Alexis Ballier <aballier@gentoo.org> | 2008-04-13 18:22:57 +0000 |
---|---|---|
committer | Alexis Ballier <aballier@gentoo.org> | 2008-04-13 18:22:57 +0000 |
commit | f3e3907281ea72ca8636e1e6a3b836b8dc03ed14 (patch) | |
tree | 7bd700759d061759ada25061bfd2e8f66c970702 /dev-tex | |
parent | remove old (diff) | |
download | gentoo-2-f3e3907281ea72ca8636e1e6a3b836b8dc03ed14.tar.gz gentoo-2-f3e3907281ea72ca8636e1e6a3b836b8dc03ed14.tar.bz2 gentoo-2-f3e3907281ea72ca8636e1e6a3b836b8dc03ed14.zip |
remove old
(Portage version: 2.1.5_rc3)
Diffstat (limited to 'dev-tex')
-rw-r--r-- | dev-tex/bibtex2html/ChangeLog | 6 | ||||
-rw-r--r-- | dev-tex/bibtex2html/bibtex2html-1.70.ebuild | 29 | ||||
-rw-r--r-- | dev-tex/bibtex2html/bibtex2html-1.88.ebuild | 53 |
3 files changed, 5 insertions, 83 deletions
diff --git a/dev-tex/bibtex2html/ChangeLog b/dev-tex/bibtex2html/ChangeLog index 3f5c918442a9..86d9ca646538 100644 --- a/dev-tex/bibtex2html/ChangeLog +++ b/dev-tex/bibtex2html/ChangeLog @@ -1,6 +1,10 @@ # ChangeLog for dev-tex/bibtex2html # Copyright 1999-2008 Gentoo Foundation; Distributed under the GPL v2 -# $Header: /var/cvsroot/gentoo-x86/dev-tex/bibtex2html/ChangeLog,v 1.12 2008/04/08 21:28:32 aballier Exp $ +# $Header: /var/cvsroot/gentoo-x86/dev-tex/bibtex2html/ChangeLog,v 1.13 2008/04/13 18:22:57 aballier Exp $ + + 13 Apr 2008; Alexis Ballier <aballier@gentoo.org> + -bibtex2html-1.70.ebuild, -bibtex2html-1.88.ebuild: + remove old *bibtex2html-1.91 (08 Apr 2008) diff --git a/dev-tex/bibtex2html/bibtex2html-1.70.ebuild b/dev-tex/bibtex2html/bibtex2html-1.70.ebuild deleted file mode 100644 index 616aae206dc2..000000000000 --- a/dev-tex/bibtex2html/bibtex2html-1.70.ebuild +++ /dev/null @@ -1,29 +0,0 @@ -# Copyright 1999-2005 Gentoo Foundation -# Distributed under the terms of the GNU General Public License v2 -# $Header: /var/cvsroot/gentoo-x86/dev-tex/bibtex2html/bibtex2html-1.70.ebuild,v 1.4 2005/12/17 15:45:52 cryos Exp $ - -inherit fixheadtails - -IUSE="" - -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" - -DEPEND=">=dev-lang/ocaml-3.07" - -src_compile() { - ht_fix_file configure* - econf --prefix=/usr || die "could not configure bibtex2html" - emake || die "could not make bibtex2html" -} - -src_install() { - dobin aux2bib bib2bib bibtex2html - doman aux2bib.1 bib2bib.1 bibtex2html.1 -} diff --git a/dev-tex/bibtex2html/bibtex2html-1.88.ebuild b/dev-tex/bibtex2html/bibtex2html-1.88.ebuild deleted file mode 100644 index bc379082a94f..000000000000 --- a/dev-tex/bibtex2html/bibtex2html-1.88.ebuild +++ /dev/null @@ -1,53 +0,0 @@ -# Copyright 1999-2007 Gentoo Foundation -# Distributed under the terms of the GNU General Public License v2 -# $Header: /var/cvsroot/gentoo-x86/dev-tex/bibtex2html/bibtex2html-1.88.ebuild,v 1.3 2007/12/08 10:12:20 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" - -RDEPEND=">=dev-lang/ocaml-3.09" -# With use doc we need a latex compiler to generate manual.ps -# hevea is used for manual.html -# manual.tex needs fullpage.sty -DEPEND="${RDEPEND} - doc? ( virtual/latex-base - || ( dev-texlive/texlive-latexextra app-text/tetex app-text/ptex ) - dev-tex/hevea )" - -src_unpack() { - unpack ${A} - cd "${S}" - - epatch "${FILESDIR}/${P}-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 -} |