Gentoo Archives: gentoo-commits

From: "George Shapovalov (george)" <george@g.o>
To: gentoo-commits@l.g.o
Subject: [gentoo-commits] gentoo-x86 commit in eclass: gnatbuild.eclass
Date: Tue, 12 Aug 2008 09:26:23
Message-Id: E1KSq8y-00049r-8b@stork.gentoo.org
1 george 08/08/12 09:26:20
2
3 Modified: gnatbuild.eclass
4 Log:
5 fixed conditional for gnat-gpl, #231534
6
7 Revision Changes Path
8 1.41 eclass/gnatbuild.eclass
9
10 file : http://sources.gentoo.org/viewcvs.py/gentoo-x86/eclass/gnatbuild.eclass?rev=1.41&view=markup
11 plain: http://sources.gentoo.org/viewcvs.py/gentoo-x86/eclass/gnatbuild.eclass?rev=1.41&content-type=text/plain
12 diff : http://sources.gentoo.org/viewcvs.py/gentoo-x86/eclass/gnatbuild.eclass?r1=1.40&r2=1.41
13
14 Index: gnatbuild.eclass
15 ===================================================================
16 RCS file: /var/cvsroot/gentoo-x86/eclass/gnatbuild.eclass,v
17 retrieving revision 1.40
18 retrieving revision 1.41
19 diff -u -r1.40 -r1.41
20 --- gnatbuild.eclass 6 Jul 2008 13:00:53 -0000 1.40
21 +++ gnatbuild.eclass 12 Aug 2008 09:26:19 -0000 1.41
22 @@ -1,6 +1,6 @@
23 # Copyright 1999-2006 Gentoo Foundation
24 # Distributed under the terms of the GNU General Public License v2
25 -# $Header: /var/cvsroot/gentoo-x86/eclass/gnatbuild.eclass,v 1.40 2008/07/06 13:00:53 george Exp $
26 +# $Header: /var/cvsroot/gentoo-x86/eclass/gnatbuild.eclass,v 1.41 2008/08/12 09:26:19 george Exp $
27 #
28 # Author: George Shapovalov <george@g.o>
29 # Belongs to: ada herd <ada@g.o>
30 @@ -457,8 +457,9 @@
31 --disable-werror \
32 --disable-libunwind-exceptions"
33
34 - # ACT's gnat-gpl does not line libada for whatever reason..
35 - if ${PN} == ${PN_GnatGpl}; then
36 + # ACT's gnat-gpl does not like libada for whatever reason..
37 + if [[ ${PN} == ${PN_GnatGpl} ]]; then
38 + einfo "ACT's gnat-gpl does not like libada, disabling"
39 confgcc="${confgcc} --disable-libada"
40 else
41 confgcc="${confgcc} --enable-libada"