Gentoo Archives: gentoo-commits

From: Mikle Kolyada <zlogene@g.o>
To: gentoo-commits@l.g.o
Subject: [gentoo-commits] repo/gentoo:master commit in: app-text/xindy/
Date: Tue, 02 Jan 2018 22:28:34
Message-Id: 1514932091.670ddd1c64b32edbd2ac5fc5a0b118911756642d.zlogene@gentoo
1 commit: 670ddd1c64b32edbd2ac5fc5a0b118911756642d
2 Author: Mikle Kolyada <zlogene <AT> gentoo <DOT> org>
3 AuthorDate: Tue Jan 2 22:28:11 2018 +0000
4 Commit: Mikle Kolyada <zlogene <AT> gentoo <DOT> org>
5 CommitDate: Tue Jan 2 22:28:11 2018 +0000
6 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=670ddd1c
7
8 app-text/xindy: Drop old
9
10 Closes: https://bugs.gentoo.org/642332
11 Package-Manager: Portage-2.3.13, Repoman-2.3.3
12
13 app-text/xindy/xindy-2.4.ebuild | 47 -----------------------------------------
14 1 file changed, 47 deletions(-)
15
16 diff --git a/app-text/xindy/xindy-2.4.ebuild b/app-text/xindy/xindy-2.4.ebuild
17 deleted file mode 100644
18 index 0352e0f329a..00000000000
19 --- a/app-text/xindy/xindy-2.4.ebuild
20 +++ /dev/null
21 @@ -1,47 +0,0 @@
22 -# Copyright 1999-2017 Gentoo Foundation
23 -# Distributed under the terms of the GNU General Public License v2
24 -
25 -EAPI=3
26 -
27 -inherit eutils autotools
28 -
29 -DESCRIPTION="A Flexible Indexing System"
30 -HOMEPAGE="http://www.xindy.org/ https://github.com/jschrod/xindy.ctan"
31 -SRC_URI="http://www.xindy.org/${P}.tar.gz"
32 -
33 -# The latest development is now on the TeXlive SVN.
34 -# The author jschrod backports it from time to time to his github repo.
35 -
36 -LICENSE="GPL-2"
37 -SLOT="0"
38 -KEYWORDS="alpha amd64 ia64 ppc x86"
39 -IUSE="doc"
40 -
41 -RDEPEND="virtual/latex-base
42 - dev-texlive/texlive-fontsrecommended
43 - >=dev-lisp/clisp-2.44.1-r1
44 - dev-texlive/texlive-langcyrillic"
45 -DEPEND="${RDEPEND}
46 - dev-lang/perl
47 - sys-devel/flex"
48 -
49 -src_prepare() {
50 - epatch "${FILESDIR}"/${P}-configure.patch
51 - epatch "${FILESDIR}"/${P}-locale.patch
52 - eautoreconf
53 -}
54 -
55 -src_configure() {
56 - econf \
57 - --disable-dependency-tracking \
58 - $(use_enable doc docs)
59 -}
60 -
61 -src_compile() {
62 - VARTEXFONTS="${T}/fonts" emake || die "emake failed"
63 -}
64 -
65 -src_install() {
66 - emake DESTDIR="${D}" install || die "emake install failed"
67 - dodoc AUTHORS ChangeLog.Gour NEWS README
68 -}