summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorMikle Kolyada <zlogene@gentoo.org>2020-07-31 21:32:53 +0300
committerMikle Kolyada <zlogene@gentoo.org>2020-07-31 21:32:53 +0300
commitf39e49783b5b691ff9e9cca77f6a3f8df516de5c (patch)
treef8f9c5d8a5de5fdc9d8f0b648c6a2a835bfef4e8 /dev-tex/bibtex2html/bibtex2html-1.98.ebuild
parentprofiles: mask dev-tex/herm-pic for removal (diff)
downloadgentoo-f39e49783b5b691ff9e9cca77f6a3f8df516de5c.tar.gz
gentoo-f39e49783b5b691ff9e9cca77f6a3f8df516de5c.tar.bz2
gentoo-f39e49783b5b691ff9e9cca77f6a3f8df516de5c.zip
dev-tex/bibtex2html: Drop old
Package-Manager: Portage-2.3.103, Repoman-2.3.23 Signed-off-by: Mikle Kolyada <zlogene@gentoo.org>
Diffstat (limited to 'dev-tex/bibtex2html/bibtex2html-1.98.ebuild')
-rw-r--r--dev-tex/bibtex2html/bibtex2html-1.98.ebuild57
1 files changed, 0 insertions, 57 deletions
diff --git a/dev-tex/bibtex2html/bibtex2html-1.98.ebuild b/dev-tex/bibtex2html/bibtex2html-1.98.ebuild
deleted file mode 100644
index 40fff567480f..000000000000
--- a/dev-tex/bibtex2html/bibtex2html-1.98.ebuild
+++ /dev/null
@@ -1,57 +0,0 @@
-# Copyright 1999-2018 Gentoo Foundation
-# Distributed under the terms of the GNU General Public License v2
-
-EAPI=5
-
-inherit eutils
-
-IUSE="doc +ocamlopt"
-
-DESCRIPTION="A bibtex to HTML converter"
-SRC_URI="https://www.lri.fr/~filliatr/ftp/bibtex2html/${P}.tar.gz"
-HOMEPAGE="https://www.lri.fr/~filliatr/bibtex2html/"
-
-SLOT="0"
-
-LICENSE="GPL-2"
-KEYWORDS="amd64 ppc ~ppc64 x86"
-RESTRICT="test"
-
-# With use doc we need a latex compiler to generate manual.pdf
-# hevea is used for manual.html
-# manual.tex needs fullpage.sty
-DEPEND=">=dev-lang/ocaml-3.10:=[ocamlopt?]
- doc? ( virtual/latex-base
- dev-texlive/texlive-latexextra
- dev-tex/hevea )"
-# We need tex-base for bibtex but also some bibtex styles, so we use latex-base
-RDEPEND="virtual/latex-base"
-
-src_prepare() {
- epatch "${FILESDIR}/${PN}-1.88-destdir.patch"
- # Avoid pre-stripped files
- sed -i -e "s/strip/true/" Makefile.in
- # For make install
- use ocamlopt || sed -i 's/= opt /= noopt /' Makefile.in
-}
-
-src_compile() {
- export VARTEXFONTS="${T}/fonts"
- if use ocamlopt ; then
- emake opt
- else
- emake byte
- fi
- if use doc; then
- emake doc
- fi
-}
-
-src_install() {
- emake DESTDIR="${D}" install
- dodoc README CHANGES
- if use doc; then
- dodoc manual.pdf
- dohtml manual.html
- fi
-}