summaryrefslogtreecommitdiff
path: root/dev-tex/revtex/revtex-4.ebuild
diff options
context:
space:
mode:
Diffstat (limited to 'dev-tex/revtex/revtex-4.ebuild')
-rw-r--r--dev-tex/revtex/revtex-4.ebuild37
1 files changed, 0 insertions, 37 deletions
diff --git a/dev-tex/revtex/revtex-4.ebuild b/dev-tex/revtex/revtex-4.ebuild
deleted file mode 100644
index a424685b456d..000000000000
--- a/dev-tex/revtex/revtex-4.ebuild
+++ /dev/null
@@ -1,37 +0,0 @@
-# Copyright 1999-2017 Gentoo Foundation
-# Distributed under the terms of the GNU General Public License v2
-
-EAPI=5
-
-inherit latex-package
-
-DESCRIPTION="LaTeX2e macros to prepare manuscripts for the journals of the APS and AIP"
-HOMEPAGE="https://journals.aps.org/revtex"
-SRC_URI="http://publish.aps.org/files/revtex/4/revtex4.zip"
-
-LICENSE="LPPL-1.3c"
-SLOT="4"
-KEYWORDS="~amd64 ~x86"
-
-RDEPEND=">=dev-texlive/texlive-latex-2012"
-DEPEND="app-arch/unzip"
-
-IUSE=""
-
-S="${WORKDIR}/revtex4/src"
-
-TEXMF=/usr/share/texmf-site
-
-src_install() {
- latex-package_src_install
-
- # we need the revtex-specific rtx files in the same dir as the class files
- insinto ${TEXMF}/tex/latex/${PN}
- for i in `find . -maxdepth 1 -type f -name "*.rtx"` ; do
- doins $i || die "doins $i failed"
- done
-
- # remove duplicate docu files to allow concurrent install with revtex-4.1
- rm -fv "${ED}/${TEXMF}/doc/latex/revtex/"{ltxdocext.pdf,ltxgrid.pdf,ltxutil.pdf,ltxutil.dvi}
- rm -fv "${ED}/usr/share/doc/${P}/"{textcase.dvi,revtex4.dvi,ltxgrid.dvi,ltxdocext.dvi}
-}