Gentoo Archives: gentoo-commits

From: "Pacho Ramos (pacho)" <pacho@g.o>
To: gentoo-commits@l.g.o
Subject: [gentoo-commits] gentoo-x86 commit in eclass: ChangeLog emul-linux-x86.eclass
Date: Sun, 24 Feb 2013 23:30:10
Message-Id: 20130224233002.80D0D2171D@flycatcher.gentoo.org
1 pacho 13/02/24 23:30:02
2
3 Modified: ChangeLog emul-linux-x86.eclass
4 Log:
5 Allow headers installation, bug #458784
6
7 Revision Changes Path
8 1.683 eclass/ChangeLog
9
10 file : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/eclass/ChangeLog?rev=1.683&view=markup
11 plain: http://sources.gentoo.org/viewvc.cgi/gentoo-x86/eclass/ChangeLog?rev=1.683&content-type=text/plain
12 diff : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/eclass/ChangeLog?r1=1.682&r2=1.683
13
14 Index: ChangeLog
15 ===================================================================
16 RCS file: /var/cvsroot/gentoo-x86/eclass/ChangeLog,v
17 retrieving revision 1.682
18 retrieving revision 1.683
19 diff -u -r1.682 -r1.683
20 --- ChangeLog 24 Feb 2013 21:05:08 -0000 1.682
21 +++ ChangeLog 24 Feb 2013 23:30:02 -0000 1.683
22 @@ -1,6 +1,9 @@
23 # ChangeLog for eclass directory
24 # Copyright 1999-2013 Gentoo Foundation; Distributed under the GPL v2
25 -# $Header: /var/cvsroot/gentoo-x86/eclass/ChangeLog,v 1.682 2013/02/24 21:05:08 mgorny Exp $
26 +# $Header: /var/cvsroot/gentoo-x86/eclass/ChangeLog,v 1.683 2013/02/24 23:30:02 pacho Exp $
27 +
28 + 24 Feb 2013; Pacho Ramos <pacho@g.o> emul-linux-x86.eclass:
29 + Allow headers installation, bug #458784
30
31 24 Feb 2013; Michał Górny <mgorny@g.o> xorg-2.eclass:
32 Introduce multilib support for xlibs.
33
34
35
36 1.18 eclass/emul-linux-x86.eclass
37
38 file : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/eclass/emul-linux-x86.eclass?rev=1.18&view=markup
39 plain: http://sources.gentoo.org/viewvc.cgi/gentoo-x86/eclass/emul-linux-x86.eclass?rev=1.18&content-type=text/plain
40 diff : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/eclass/emul-linux-x86.eclass?r1=1.17&r2=1.18
41
42 Index: emul-linux-x86.eclass
43 ===================================================================
44 RCS file: /var/cvsroot/gentoo-x86/eclass/emul-linux-x86.eclass,v
45 retrieving revision 1.17
46 retrieving revision 1.18
47 diff -u -r1.17 -r1.18
48 --- emul-linux-x86.eclass 24 Feb 2013 16:31:35 -0000 1.17
49 +++ emul-linux-x86.eclass 24 Feb 2013 23:30:02 -0000 1.18
50 @@ -1,6 +1,6 @@
51 # Copyright 1999-2013 Gentoo Foundation
52 # Distributed under the terms of the GNU General Public License v2
53 -# $Header: /var/cvsroot/gentoo-x86/eclass/emul-linux-x86.eclass,v 1.17 2013/02/24 16:31:35 pacho Exp $
54 +# $Header: /var/cvsroot/gentoo-x86/eclass/emul-linux-x86.eclass,v 1.18 2013/02/24 23:30:02 pacho Exp $
55
56 #
57 # Original Author: Mike Doty <kingtaco@g.o>
58 @@ -37,7 +37,7 @@
59 emul-linux-x86_src_prepare() {
60 ALLOWED=${ALLOWED:-^${S}/etc/env.d}
61 use development && ALLOWED="${ALLOWED}|/usr/lib32/pkgconfig"
62 - find "${S}" ! -type d ! '(' -name '*.so' -o -name '*.so.[0-9]*' ')' | egrep -v "${ALLOWED}" | xargs -d $'\n' rm -f || die 'failed to remove everything but *.so*'
63 + find "${S}" ! -type d ! '(' -name '*.so' -o -name '*.so.[0-9]*' -o -name '*.h' ')' | egrep -v "${ALLOWED}" | xargs -d $'\n' rm -f || die 'failed to remove everything but *.so*'
64 }
65
66 emul-linux-x86_src_install() {