summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorAlexis Ballier <aballier@gentoo.org>2013-03-10 09:49:09 +0000
committerAlexis Ballier <aballier@gentoo.org>2013-03-10 09:49:09 +0000
commita22e14b642ad81456bb83b511d09c1533186a32a (patch)
treef5fadee9f91e874d338833c1fb2ae0b2a8053081
parentslot dep on ocaml (diff)
downloadgentoo-2-a22e14b642ad81456bb83b511d09c1533186a32a.tar.gz
gentoo-2-a22e14b642ad81456bb83b511d09c1533186a32a.tar.bz2
gentoo-2-a22e14b642ad81456bb83b511d09c1533186a32a.zip
remove old
(Portage version: 2.2.0_alpha166/cvs/Linux x86_64, signed Manifest commit with key 160F534A)
-rw-r--r--dev-tex/hevea/ChangeLog5
-rw-r--r--dev-tex/hevea/hevea-1.10-r1.ebuild57
2 files changed, 4 insertions, 58 deletions
diff --git a/dev-tex/hevea/ChangeLog b/dev-tex/hevea/ChangeLog
index ec2ac837d87b..ced1a552a491 100644
--- a/dev-tex/hevea/ChangeLog
+++ b/dev-tex/hevea/ChangeLog
@@ -1,6 +1,9 @@
# ChangeLog for dev-tex/hevea
# Copyright 1999-2013 Gentoo Foundation; Distributed under the GPL v2
-# $Header: /var/cvsroot/gentoo-x86/dev-tex/hevea/ChangeLog,v 1.35 2013/02/04 12:54:21 aballier Exp $
+# $Header: /var/cvsroot/gentoo-x86/dev-tex/hevea/ChangeLog,v 1.36 2013/03/10 09:49:09 aballier Exp $
+
+ 10 Mar 2013; Alexis Ballier <aballier@gentoo.org> -hevea-1.10-r1.ebuild:
+ remove old
*hevea-2.02 (04 Feb 2013)
diff --git a/dev-tex/hevea/hevea-1.10-r1.ebuild b/dev-tex/hevea/hevea-1.10-r1.ebuild
deleted file mode 100644
index f9d81d5a2703..000000000000
--- a/dev-tex/hevea/hevea-1.10-r1.ebuild
+++ /dev/null
@@ -1,57 +0,0 @@
-# Copyright 1999-2011 Gentoo Foundation
-# Distributed under the terms of the GNU General Public License v2
-# $Header: /var/cvsroot/gentoo-x86/dev-tex/hevea/hevea-1.10-r1.ebuild,v 1.5 2011/02/12 18:45:39 armin76 Exp $
-
-EAPI="2"
-
-inherit eutils multilib
-
-IUSE="+ocamlopt"
-
-DESCRIPTION="HeVeA is a quite complete and fast LaTeX to HTML translator"
-HOMEPAGE="http://pauillac.inria.fr/~maranget/hevea/"
-SRC_URI="ftp://ftp.inria.fr/INRIA/moscova/hevea/${P}.tar.gz"
-
-LICENSE="QPL"
-SLOT="0"
-KEYWORDS="amd64 ppc ~ppc64 sparc x86"
-
-DEPEND=">=dev-lang/ocaml-3.10.2[ocamlopt?]"
-RDEPEND="${DEPEND}"
-
-src_compile() {
- rm -f config.sh
- emake PREFIX=/usr DESTDIR="${D}" LIBDIR="/usr/$(get_libdir)/hevea" LATEXLIBDIR="/usr/share/texmf-site/tex/latex/hevea" config.sh || die "Failed to create config.sh"
- if use ocamlopt; then
- emake PREFIX=/usr || die "Failed to build native code binaries"
- else
- emake PREFIX=/usr TARGET=byte || die "Failed to build bytecode binaries"
- fi
-}
-
-src_install() {
- if use ocamlopt; then
- emake DESTDIR="${D}" PREFIX=/usr install || die "Install failed"
- else
- emake DESTDIR="${D}" PREFIX=/usr TARGET=byte install || die "Install failed"
- fi
-
- dodoc README CHANGES
-}
-
-# If texmf-update is present this means we have a latex install; update it so
-# that hevea.sty can be found
-# Do not (r)depend on latex though because hevea does not need it itself
-# If latex is installed later, it will see hevea.sty
-
-pkg_postinst() {
- if [ "$ROOT" = "/" ] && [ -x /usr/sbin/texmf-update ] ; then
- /usr/sbin/texmf-update
- fi
-}
-
-pkg_postrm() {
- if [ "$ROOT" = "/" ] && [ -x /usr/sbin/texmf-update ] ; then
- /usr/sbin/texmf-update
- fi
-}