Gentoo Archives: gentoo-commits

From: "Tim Harder (radhermit)" <radhermit@g.o>
To: gentoo-commits@l.g.o
Subject: [gentoo-commits] gentoo-x86 commit in app-text/xindy: ChangeLog xindy-2.4.ebuild
Date: Wed, 29 Sep 2010 17:47:27
Message-Id: 20100929174722.9C3C120051@flycatcher.gentoo.org
1 radhermit 10/09/29 17:47:22
2
3 Modified: ChangeLog
4 Added: xindy-2.4.ebuild
5 Log:
6 Version bump (bug #281677). Update to EAPI=3, fix configure script issue, and remove extra external clisp setup as the build system defaults to using it properly.
7
8 (Portage version: 2.2_rc87/cvs/Linux x86_64)
9
10 Revision Changes Path
11 1.11 app-text/xindy/ChangeLog
12
13 file : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/app-text/xindy/ChangeLog?rev=1.11&view=markup
14 plain: http://sources.gentoo.org/viewvc.cgi/gentoo-x86/app-text/xindy/ChangeLog?rev=1.11&content-type=text/plain
15 diff : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/app-text/xindy/ChangeLog?r1=1.10&r2=1.11
16
17 Index: ChangeLog
18 ===================================================================
19 RCS file: /var/cvsroot/gentoo-x86/app-text/xindy/ChangeLog,v
20 retrieving revision 1.10
21 retrieving revision 1.11
22 diff -u -r1.10 -r1.11
23 --- ChangeLog 24 Apr 2010 11:12:33 -0000 1.10
24 +++ ChangeLog 29 Sep 2010 17:47:22 -0000 1.11
25 @@ -1,6 +1,14 @@
26 # ChangeLog for app-text/xindy
27 # Copyright 1999-2010 Gentoo Foundation; Distributed under the GPL v2
28 -# $Header: /var/cvsroot/gentoo-x86/app-text/xindy/ChangeLog,v 1.10 2010/04/24 11:12:33 aballier Exp $
29 +# $Header: /var/cvsroot/gentoo-x86/app-text/xindy/ChangeLog,v 1.11 2010/09/29 17:47:22 radhermit Exp $
30 +
31 +*xindy-2.4 (29 Sep 2010)
32 +
33 + 29 Sep 2010; Tim Harder <radhermit@g.o> +xindy-2.4.ebuild,
34 + +files/xindy-2.4-configure.patch:
35 + Version bump (bug #281677). Update to EAPI=3, fix configure script issue,
36 + and remove extra external clisp setup as the build system defaults to
37 + using it properly.
38
39 24 Apr 2010; Alexis Ballier <aballier@g.o> xindy-2.3.ebuild,
40 +files/xindy-2.3-clisp-2.48.patch:
41
42
43
44 1.1 app-text/xindy/xindy-2.4.ebuild
45
46 file : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/app-text/xindy/xindy-2.4.ebuild?rev=1.1&view=markup
47 plain: http://sources.gentoo.org/viewvc.cgi/gentoo-x86/app-text/xindy/xindy-2.4.ebuild?rev=1.1&content-type=text/plain
48
49 Index: xindy-2.4.ebuild
50 ===================================================================
51 # Copyright 1999-2010 Gentoo Foundation
52 # Distributed under the terms of the GNU General Public License v2
53 # $Header: /var/cvsroot/gentoo-x86/app-text/xindy/xindy-2.4.ebuild,v 1.1 2010/09/29 17:47:22 radhermit Exp $
54
55 EAPI=3
56
57 inherit eutils autotools
58
59 DESCRIPTION="A Flexible Indexing System"
60 HOMEPAGE="http://www.xindy.org/"
61 SRC_URI="http://www.xindy.org/xindy-2.4.tar.gz"
62
63 LICENSE="GPL-2"
64 SLOT="0"
65 KEYWORDS="~alpha ~amd64 ~ia64 ~ppc ~x86"
66 IUSE="doc"
67
68 RDEPEND="virtual/latex-base
69 >=dev-lisp/clisp-2.44.1-r1
70 || ( dev-texlive/texlive-langcyrillic app-text/ptex )"
71 DEPEND="${RDEPEND}
72 dev-lang/perl
73 sys-devel/flex"
74
75 src_prepare() {
76 epatch "${FILESDIR}"/${P}-configure.patch
77 eautoreconf
78 }
79
80 src_configure() {
81 econf \
82 --disable-dependency-tracking \
83 $(use_enable doc docs)
84 }
85
86 src_compile() {
87 VARTEXFONTS="${T}/fonts" emake || die "emake failed"
88 }
89
90 src_install() {
91 emake DESTDIR="${D}" install || die "emake install failed"
92 dodoc AUTHORS ChangeLog.Gour NEWS README
93 }