Gentoo Archives: gentoo-commits

From: "Alexis Ballier (aballier)" <aballier@g.o>
To: gentoo-commits@l.g.o
Subject: [gentoo-commits] gentoo-x86 commit in sys-libs/libcxxrt: ChangeLog libcxxrt-9999.ebuild
Date: Thu, 30 May 2013 23:33:36
Message-Id: 20130530233332.9400A2171D@flycatcher.gentoo.org
1 aballier 13/05/30 23:33:32
2
3 Modified: ChangeLog libcxxrt-9999.ebuild
4 Log:
5 stop hacking around unwind headers and install them protected under libcxxrt directory as that is what libcxx build system expects
6
7 (Portage version: 2.2.0_alpha177/cvs/Linux x86_64, signed Manifest commit with key 160F534A)
8
9 Revision Changes Path
10 1.10 sys-libs/libcxxrt/ChangeLog
11
12 file : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/sys-libs/libcxxrt/ChangeLog?rev=1.10&view=markup
13 plain: http://sources.gentoo.org/viewvc.cgi/gentoo-x86/sys-libs/libcxxrt/ChangeLog?rev=1.10&content-type=text/plain
14 diff : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/sys-libs/libcxxrt/ChangeLog?r1=1.9&r2=1.10
15
16 Index: ChangeLog
17 ===================================================================
18 RCS file: /var/cvsroot/gentoo-x86/sys-libs/libcxxrt/ChangeLog,v
19 retrieving revision 1.9
20 retrieving revision 1.10
21 diff -u -r1.9 -r1.10
22 --- ChangeLog 30 May 2013 22:41:12 -0000 1.9
23 +++ ChangeLog 30 May 2013 23:33:32 -0000 1.10
24 @@ -1,6 +1,10 @@
25 # ChangeLog for sys-libs/libcxxrt
26 # Copyright 1999-2013 Gentoo Foundation; Distributed under the GPL v2
27 -# $Header: /var/cvsroot/gentoo-x86/sys-libs/libcxxrt/ChangeLog,v 1.9 2013/05/30 22:41:12 aballier Exp $
28 +# $Header: /var/cvsroot/gentoo-x86/sys-libs/libcxxrt/ChangeLog,v 1.10 2013/05/30 23:33:32 aballier Exp $
29 +
30 + 30 May 2013; Alexis Ballier <aballier@g.o> libcxxrt-9999.ebuild:
31 + stop hacking around unwind headers and install them protected under libcxxrt
32 + directory as that is what libcxx build system expects
33
34 30 May 2013; Alexis Ballier <aballier@g.o> libcxxrt-9999.ebuild:
35 propagate static-libs use dep to libunwind
36
37
38
39 1.6 sys-libs/libcxxrt/libcxxrt-9999.ebuild
40
41 file : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/sys-libs/libcxxrt/libcxxrt-9999.ebuild?rev=1.6&view=markup
42 plain: http://sources.gentoo.org/viewvc.cgi/gentoo-x86/sys-libs/libcxxrt/libcxxrt-9999.ebuild?rev=1.6&content-type=text/plain
43 diff : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/sys-libs/libcxxrt/libcxxrt-9999.ebuild?r1=1.5&r2=1.6
44
45 Index: libcxxrt-9999.ebuild
46 ===================================================================
47 RCS file: /var/cvsroot/gentoo-x86/sys-libs/libcxxrt/libcxxrt-9999.ebuild,v
48 retrieving revision 1.5
49 retrieving revision 1.6
50 diff -u -r1.5 -r1.6
51 --- libcxxrt-9999.ebuild 30 May 2013 22:41:12 -0000 1.5
52 +++ libcxxrt-9999.ebuild 30 May 2013 23:33:32 -0000 1.6
53 @@ -1,6 +1,6 @@
54 # Copyright 1999-2013 Gentoo Foundation
55 # Distributed under the terms of the GNU General Public License v2
56 -# $Header: /var/cvsroot/gentoo-x86/sys-libs/libcxxrt/libcxxrt-9999.ebuild,v 1.5 2013/05/30 22:41:12 aballier Exp $
57 +# $Header: /var/cvsroot/gentoo-x86/sys-libs/libcxxrt/libcxxrt-9999.ebuild,v 1.6 2013/05/30 23:33:32 aballier Exp $
58
59 EAPI=4
60
61 @@ -36,8 +36,6 @@
62 base_src_prepare
63 cp "${FILESDIR}/Makefile" src/ || die
64 cp "${FILESDIR}/Makefile.test" test/Makefile || die
65 - rm -f src/unwind* || die
66 - cp -f "${FILESDIR}/unwind.h" src/ || die
67 }
68
69 src_compile() {
70 @@ -63,7 +61,7 @@
71 use static-libs && dolib.a src/${PN}.a
72
73 insinto /usr/include/libcxxrt/
74 - doins src/cxxabi.h
75 + doins src/cxxabi.h src/unwind*.h
76
77 dodoc AUTHORS COPYRIGHT README
78 }