summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorAndreas K. Hüttel <dilfridge@gentoo.org>2019-01-28 01:07:59 +0100
committerAndreas K. Hüttel <dilfridge@gentoo.org>2019-01-28 01:07:59 +0100
commitb67f0fd58f0ea4f780a7c0c58493f44cacf21553 (patch)
tree2d865daefdafd765e4b196f5b5b59a369c4e2a43 /dev-tex/revtex/revtex-4.1_p2-r1.ebuild
parentdev-vcs/easygit: Remove old (diff)
downloadgentoo-b67f0fd58f0ea4f780a7c0c58493f44cacf21553.tar.gz
gentoo-b67f0fd58f0ea4f780a7c0c58493f44cacf21553.tar.bz2
gentoo-b67f0fd58f0ea4f780a7c0c58493f44cacf21553.zip
dev-tex/revtex: remove, bug 574350 and others
All versions provided by dev-tex/revtex are now also included in dev-tex/texlive-publishers-2017. No need for a separate package anymore. Closes: https://bugs.gentoo.org/574350 Closes: https://bugs.gentoo.org/514890 Signed-off-by: Andreas K. Hüttel <dilfridge@gentoo.org>
Diffstat (limited to 'dev-tex/revtex/revtex-4.1_p2-r1.ebuild')
-rw-r--r--dev-tex/revtex/revtex-4.1_p2-r1.ebuild43
1 files changed, 0 insertions, 43 deletions
diff --git a/dev-tex/revtex/revtex-4.1_p2-r1.ebuild b/dev-tex/revtex/revtex-4.1_p2-r1.ebuild
deleted file mode 100644
index 7c1b8b11ebb7..000000000000
--- a/dev-tex/revtex/revtex-4.1_p2-r1.ebuild
+++ /dev/null
@@ -1,43 +0,0 @@
-# Copyright 1999-2017 Gentoo Foundation
-# Distributed under the terms of the GNU General Public License v2
-
-EAPI=2
-
-inherit versionator latex-package
-
-MY_P="${PN}$(version_format_string '$1-$2')"
-
-DESCRIPTION="LaTeX2e macros to prepare manuscripts for the journals of the APS and AIP"
-HOMEPAGE="https://journals.aps.org/revtex"
-SRC_URI="http://authors.aps.org/revtex4/${MY_P}.zip -> ${P}.zip"
-
-LICENSE="LPPL-1.3c"
-SLOT="0"
-KEYWORDS="amd64 x86"
-
-RDEPEND=">=dev-texlive/texlive-latex-2012"
-DEPEND="app-arch/unzip"
-
-IUSE="doc"
-
-S="${WORKDIR}/${MY_P}"
-
-TEXMF=/usr/share/texmf-site
-# Bug #574350
-LATEX_PACKAGE_SKIP="reftest4-1.tex 00readme.tex aip.dtx ltxgrid.dtx ltxdocext.dtx"
-
-src_unpack() {
- default
- cd "${S}"
- unzip -o -j "${S}/${MY_P}-tds.zip"
-}
-
-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
-}