Gentoo Archives: gentoo-commits

From: "Ulrich Mueller (ulm)" <ulm@g.o>
To: gentoo-commits@l.g.o
Subject: [gentoo-commits] gentoo-x86 commit in dev-tex/catdvi: ChangeLog catdvi-0.14-r1.ebuild
Date: Wed, 27 Oct 2010 21:54:26
Message-Id: 20101027215421.D434820051@flycatcher.gentoo.org
1 ulm 10/10/27 21:54:21
2
3 Modified: ChangeLog
4 Added: catdvi-0.14-r1.ebuild
5 Log:
6 Fix compilation with kpathsea-6 library, bug 342817.
7
8 (Portage version: 2.1.9.21/cvs/Linux x86_64)
9
10 Revision Changes Path
11 1.6 dev-tex/catdvi/ChangeLog
12
13 file : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-tex/catdvi/ChangeLog?rev=1.6&view=markup
14 plain: http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-tex/catdvi/ChangeLog?rev=1.6&content-type=text/plain
15 diff : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-tex/catdvi/ChangeLog?r1=1.5&r2=1.6
16
17 Index: ChangeLog
18 ===================================================================
19 RCS file: /var/cvsroot/gentoo-x86/dev-tex/catdvi/ChangeLog,v
20 retrieving revision 1.5
21 retrieving revision 1.6
22 diff -u -r1.5 -r1.6
23 --- ChangeLog 17 Sep 2008 07:29:18 -0000 1.5
24 +++ ChangeLog 27 Oct 2010 21:54:21 -0000 1.6
25 @@ -1,6 +1,13 @@
26 # ChangeLog for dev-tex/catdvi
27 -# Copyright 1999-2008 Gentoo Foundation; Distributed under the GPL v2
28 -# $Header: /var/cvsroot/gentoo-x86/dev-tex/catdvi/ChangeLog,v 1.5 2008/09/17 07:29:18 ulm Exp $
29 +# Copyright 1999-2010 Gentoo Foundation; Distributed under the GPL v2
30 +# $Header: /var/cvsroot/gentoo-x86/dev-tex/catdvi/ChangeLog,v 1.6 2010/10/27 21:54:21 ulm Exp $
31 +
32 +*catdvi-0.14-r1 (26 Oct 2010)
33 +
34 + 26 Oct 2010; Ulrich Mueller <ulm@g.o> +catdvi-0.14-r1.ebuild,
35 + +files/catdvi-0.14-kpathsea.patch:
36 + Fix compilation with kpathsea-6 library, bug 342817. Thanks to Martin Väth
37 + <vaeth@××××××××××××××××××××××××.de>.
38
39 17 Sep 2008; Ulrich Mueller <ulm@g.o> metadata.xml:
40 Add package to tex herd.
41
42
43
44 1.1 dev-tex/catdvi/catdvi-0.14-r1.ebuild
45
46 file : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-tex/catdvi/catdvi-0.14-r1.ebuild?rev=1.1&view=markup
47 plain: http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-tex/catdvi/catdvi-0.14-r1.ebuild?rev=1.1&content-type=text/plain
48
49 Index: catdvi-0.14-r1.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/dev-tex/catdvi/catdvi-0.14-r1.ebuild,v 1.1 2010/10/27 21:54:21 ulm Exp $
54
55 EAPI=2
56
57 inherit eutils toolchain-funcs
58
59 DESCRIPTION="DVI to plain text translator"
60 HOMEPAGE="http://catdvi.sourceforge.net"
61 SRC_URI="mirror://sourceforge/${PN}/${P}.tar.gz"
62
63 LICENSE="GPL-2"
64 SLOT="0"
65 KEYWORDS="~amd64 ~x86"
66 IUSE=""
67
68 DEPEND="virtual/tex-base"
69 RDEPEND="${DEPEND}"
70
71 src_prepare() {
72 epatch "${FILESDIR}/${P}-kpathsea.patch"
73 }
74
75 src_compile() {
76 # Do not use plain emake here, because make tests
77 # may cache fonts and generate sandbox violations.
78 emake catdvi CC="$(tc-getCC)" || die "emake failed"
79 }
80
81 src_install() {
82 dobin catdvi || die
83 doman catdvi.1 || die
84 dodoc AUTHORS ChangeLog NEWS README TODO || die
85 }