summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorAlexis Ballier <aballier@gentoo.org>2009-12-07 07:55:59 +0000
committerAlexis Ballier <aballier@gentoo.org>2009-12-07 07:55:59 +0000
commit2e5ea4e2034dc4452401ec370d2855fe9ce91363 (patch)
tree66ba94ceca5c628a1620a8ef9c569df8333ef03b /app-text
parentMark all stable. (diff)
downloadgentoo-2-2e5ea4e2034dc4452401ec370d2855fe9ce91363.tar.gz
gentoo-2-2e5ea4e2034dc4452401ec370d2855fe9ce91363.tar.bz2
gentoo-2-2e5ea4e2034dc4452401ec370d2855fe9ce91363.zip
remove old
(Portage version: 2.2_rc56/cvs/Linux x86_64)
Diffstat (limited to 'app-text')
-rw-r--r--app-text/active-dvi/ChangeLog6
-rw-r--r--app-text/active-dvi/active-dvi-1.7.3-r1.ebuild76
2 files changed, 5 insertions, 77 deletions
diff --git a/app-text/active-dvi/ChangeLog b/app-text/active-dvi/ChangeLog
index 04cb841e3e73..276d05d245d9 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.33 2009/11/27 12:43:23 fauli Exp $
+# $Header: /var/cvsroot/gentoo-x86/app-text/active-dvi/ChangeLog,v 1.34 2009/12/07 07:55:59 aballier Exp $
+
+ 07 Dec 2009; Alexis Ballier <aballier@gentoo.org>
+ -active-dvi-1.7.3-r1.ebuild:
+ remove old
27 Nov 2009; Christian Faulhammer <fauli@gentoo.org>
active-dvi-1.8.ebuild:
diff --git a/app-text/active-dvi/active-dvi-1.7.3-r1.ebuild b/app-text/active-dvi/active-dvi-1.7.3-r1.ebuild
deleted file mode 100644
index 78658ce40d95..000000000000
--- a/app-text/active-dvi/active-dvi-1.7.3-r1.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-r1.ebuild,v 1.2 2009/07/29 21:17:46 maekke 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-3.0.1[truetype,tiff,jpeg,gs]
- 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
-}