summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorAlexis Ballier <aballier@gentoo.org>2009-08-04 07:34:54 +0000
committerAlexis Ballier <aballier@gentoo.org>2009-08-04 07:34:54 +0000
commitc998cba95cb261d2f7538d93b4b6172469bc75eb (patch)
tree3fb1529f763d560ea8db902e53177242a3e5f080
parentFix a mistake in deps. (diff)
downloadgentoo-2-c998cba95cb261d2f7538d93b4b6172469bc75eb.tar.gz
gentoo-2-c998cba95cb261d2f7538d93b4b6172469bc75eb.tar.bz2
gentoo-2-c998cba95cb261d2f7538d93b4b6172469bc75eb.zip
remove old
(Portage version: 2.2_rc35/cvs/Linux x86_64)
-rw-r--r--app-text/active-dvi/ChangeLog6
-rw-r--r--app-text/active-dvi/active-dvi-1.7.3.ebuild76
2 files changed, 5 insertions, 77 deletions
diff --git a/app-text/active-dvi/ChangeLog b/app-text/active-dvi/ChangeLog
index 63a150e18a01..21153141e373 100644
--- a/app-text/active-dvi/ChangeLog
+++ b/app-text/active-dvi/ChangeLog
@@ -1,6 +1,10 @@
# ChangeLog for app-text/active-dvi
# Copyright 1999-2009 Gentoo Foundation; Distributed under the GPL v2
-# $Header: /var/cvsroot/gentoo-x86/app-text/active-dvi/ChangeLog,v 1.30 2009/07/29 21:17:46 maekke Exp $
+# $Header: /var/cvsroot/gentoo-x86/app-text/active-dvi/ChangeLog,v 1.31 2009/08/04 07:34:54 aballier Exp $
+
+ 04 Aug 2009; Alexis Ballier <aballier@gentoo.org>
+ -active-dvi-1.7.3.ebuild:
+ remove old
29 Jul 2009; Markus Meier <maekke@gentoo.org> active-dvi-1.7.3-r1.ebuild:
x86 stable, bug #276235
diff --git a/app-text/active-dvi/active-dvi-1.7.3.ebuild b/app-text/active-dvi/active-dvi-1.7.3.ebuild
deleted file mode 100644
index 9cf49526720f..000000000000
--- a/app-text/active-dvi/active-dvi-1.7.3.ebuild
+++ /dev/null
@@ -1,76 +0,0 @@
-# Copyright 1999-2009 Gentoo Foundation
-# Distributed under the terms of the GNU General Public License v2
-# $Header: /var/cvsroot/gentoo-x86/app-text/active-dvi/active-dvi-1.7.3.ebuild,v 1.9 2009/05/30 07:08:07 ulm Exp $
-
-EAPI="2"
-
-inherit eutils autotools
-
-MY_PN=${PN/ctive-/}
-MY_P=${MY_PN}-${PV}
-S=${WORKDIR}/${MY_P}
-
-DESCRIPTION="A DVI previewer and a presenter for slides written in LaTeX"
-SRC_URI="http://pauillac.inria.fr/advi/${MY_P}.tar.gz"
-HOMEPAGE="http://pauillac.inria.fr/advi/"
-LICENSE="LGPL-2.1"
-
-IUSE="+ocamlopt tk"
-SLOT="0"
-KEYWORDS="~amd64 ~ppc x86"
-
-RDEPEND=">=dev-lang/ocaml-3.10.0[ocamlopt?,tk?]
- >=dev-ml/camlimages-2.20-r2
- virtual/latex-base
- virtual/ghostscript
- x11-libs/libXinerama"
-DEPEND="${RDEPEND}
- || ( ( dev-texlive/texlive-pstricks dev-texlive/texlive-pictures )
- app-text/ptex )
- x11-proto/xineramaproto
- dev-ml/findlib
- dev-tex/hevea"
-
-DOCS="README TODO"
-
-src_prepare() {
- epatch "${FILESDIR}/${P}-asneeded.patch"
- AT_M4DIR="." eautoreconf
-}
-
-src_configure() {
- export ADVI_LOC="/usr/share/texmf/tex/latex/advi"
- econf $(use_enable ocamlopt native-program)
-}
-
-src_compile() {
- emake || die "emake failed"
- cd doc
- VARTEXFONTS="${T}/fonts" emake splash.dvi scratch_write_splash.dvi scratch_draw_splash.dvi || die "failed to create documentation"
-}
-
-src_install() {
- emake DESTDIR="${D}" install || die
-
- # now install the documentation
- dodoc ${DOCS}
- cd "${S}"/doc
- dohtml *.{jpg,gif,css,html}
- insinto /usr/share/doc/${PF}
- doins manual.{dvi,pdf,ps} || die "failed to install documentation"
- # and the manual page
- doman advi.1
- insinto /usr/share/texmf/tex/latex/advi
- doins splash.dvi scratch_write_splash.dvi scratch_draw_splash.dvi || die "failed to install splashes"
- export STRIP_MASK="*/bin/advi.byt"
-}
-
-pkg_postinst() {
- einfo "Running texhash to complete installation.."
- texhash
-}
-
-pkg_postrm() {
- einfo "Running texhash to complete installation.."
- texhash
-}