Gentoo Archives: gentoo-commits

From: "Jeroen Roovers (jer)" <jer@g.o>
To: gentoo-commits@l.g.o
Subject: [gentoo-commits] gentoo-x86 commit in app-text/texlive-core: ChangeLog texlive-core-2012.ebuild
Date: Mon, 30 Jul 2012 20:30:20
Message-Id: 20120730203004.BEF252004B@flycatcher.gentoo.org
1 jer 12/07/30 20:30:04
2
3 Modified: ChangeLog texlive-core-2012.ebuild
4 Log:
5 Fix building on HPPA (big-endian problem, see bug #265232 and bug #414271).
6
7 (Portage version: 2.2.0_alpha120/cvs/Linux x86_64)
8
9 Revision Changes Path
10 1.184 app-text/texlive-core/ChangeLog
11
12 file : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/app-text/texlive-core/ChangeLog?rev=1.184&view=markup
13 plain: http://sources.gentoo.org/viewvc.cgi/gentoo-x86/app-text/texlive-core/ChangeLog?rev=1.184&content-type=text/plain
14 diff : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/app-text/texlive-core/ChangeLog?r1=1.183&r2=1.184
15
16 Index: ChangeLog
17 ===================================================================
18 RCS file: /var/cvsroot/gentoo-x86/app-text/texlive-core/ChangeLog,v
19 retrieving revision 1.183
20 retrieving revision 1.184
21 diff -u -r1.183 -r1.184
22 --- ChangeLog 27 Jul 2012 12:41:25 -0000 1.183
23 +++ ChangeLog 30 Jul 2012 20:30:04 -0000 1.184
24 @@ -1,6 +1,9 @@
25 # ChangeLog for app-text/texlive-core
26 # Copyright 1999-2012 Gentoo Foundation; Distributed under the GPL v2
27 -# $Header: /var/cvsroot/gentoo-x86/app-text/texlive-core/ChangeLog,v 1.183 2012/07/27 12:41:25 aballier Exp $
28 +# $Header: /var/cvsroot/gentoo-x86/app-text/texlive-core/ChangeLog,v 1.184 2012/07/30 20:30:04 jer Exp $
29 +
30 + 30 Jul 2012; Jeroen Roovers <jer@g.o> texlive-core-2012.ebuild:
31 + Fix building on HPPA (big-endian problem, see bug #265232 and bug #414271).
32
33 27 Jul 2012; Alexis Ballier <aballier@g.o> texlive-core-2012.ebuild:
34 disable uptex and euptex without USE=cjk too, bug #428258
35
36
37
38 1.3 app-text/texlive-core/texlive-core-2012.ebuild
39
40 file : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/app-text/texlive-core/texlive-core-2012.ebuild?rev=1.3&view=markup
41 plain: http://sources.gentoo.org/viewvc.cgi/gentoo-x86/app-text/texlive-core/texlive-core-2012.ebuild?rev=1.3&content-type=text/plain
42 diff : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/app-text/texlive-core/texlive-core-2012.ebuild?r1=1.2&r2=1.3
43
44 Index: texlive-core-2012.ebuild
45 ===================================================================
46 RCS file: /var/cvsroot/gentoo-x86/app-text/texlive-core/texlive-core-2012.ebuild,v
47 retrieving revision 1.2
48 retrieving revision 1.3
49 diff -u -r1.2 -r1.3
50 --- texlive-core-2012.ebuild 27 Jul 2012 12:41:25 -0000 1.2
51 +++ texlive-core-2012.ebuild 30 Jul 2012 20:30:04 -0000 1.3
52 @@ -1,6 +1,6 @@
53 # Copyright 1999-2012 Gentoo Foundation
54 # Distributed under the terms of the GNU General Public License v2
55 -# $Header: /var/cvsroot/gentoo-x86/app-text/texlive-core/texlive-core-2012.ebuild,v 1.2 2012/07/27 12:41:25 aballier Exp $
56 +# $Header: /var/cvsroot/gentoo-x86/app-text/texlive-core/texlive-core-2012.ebuild,v 1.3 2012/07/30 20:30:04 jer Exp $
57
58 EAPI=3
59
60 @@ -132,6 +132,11 @@
61 # It fails on alpha without this
62 use alpha && append-ldflags "-Wl,--no-relax"
63
64 + # Bug #265232 and bug #414271:
65 + if use hppa; then
66 + append-cppflags "-DU_IS_BIG_ENDIAN=1"
67 + fi
68 +
69 # Too many regexps use A-Z a-z constructs, what causes problems with locales
70 # that don't have the same alphabetical order than ascii. Bug #242430
71 # So we set LC_ALL to C in order to avoid problems.