Gentoo Archives: gentoo-commits

From: "Mike Frysinger (vapier)" <vapier@g.o>
To: gentoo-commits@l.g.o
Subject: [gentoo-commits] gentoo-x86 commit in dev-util/mingw64-runtime: mingw64-runtime-2.0.1.ebuild ChangeLog
Date: Wed, 06 Jun 2012 19:58:39
Message-Id: 20120606195825.033D82004B@flycatcher.gentoo.org
1 vapier 12/06/06 19:58:24
2
3 Modified: mingw64-runtime-2.0.1.ebuild ChangeLog
4 Log:
5 Always provide mingw symlink in sysroot for gcc #419601 by Alon Bar-Lev.
6
7 (Portage version: 2.2.0_alpha110/cvs/Linux x86_64)
8
9 Revision Changes Path
10 1.2 dev-util/mingw64-runtime/mingw64-runtime-2.0.1.ebuild
11
12 file : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-util/mingw64-runtime/mingw64-runtime-2.0.1.ebuild?rev=1.2&view=markup
13 plain: http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-util/mingw64-runtime/mingw64-runtime-2.0.1.ebuild?rev=1.2&content-type=text/plain
14 diff : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-util/mingw64-runtime/mingw64-runtime-2.0.1.ebuild?r1=1.1&r2=1.2
15
16 Index: mingw64-runtime-2.0.1.ebuild
17 ===================================================================
18 RCS file: /var/cvsroot/gentoo-x86/dev-util/mingw64-runtime/mingw64-runtime-2.0.1.ebuild,v
19 retrieving revision 1.1
20 retrieving revision 1.2
21 diff -u -r1.1 -r1.2
22 --- mingw64-runtime-2.0.1.ebuild 12 Mar 2012 05:26:31 -0000 1.1
23 +++ mingw64-runtime-2.0.1.ebuild 6 Jun 2012 19:58:24 -0000 1.2
24 @@ -1,6 +1,6 @@
25 # Copyright 1999-2012 Gentoo Foundation
26 # Distributed under the terms of the GNU General Public License v2
27 -# $Header: /var/cvsroot/gentoo-x86/dev-util/mingw64-runtime/mingw64-runtime-2.0.1.ebuild,v 1.1 2012/03/12 05:26:31 vapier Exp $
28 +# $Header: /var/cvsroot/gentoo-x86/dev-util/mingw64-runtime/mingw64-runtime-2.0.1.ebuild,v 1.2 2012/06/06 19:58:24 vapier Exp $
29
30 export CBUILD=${CBUILD:-${CHOST}}
31 export CTARGET=${CTARGET:-${CHOST}}
32 @@ -60,9 +60,12 @@
33 src_install() {
34 insinto /usr/${CTARGET}/usr/include
35 doins -r "${WORKDIR}"/sysroot/usr/${CTARGET}/include/* || die
36 - is_crosscompile \
37 - && dosym usr /usr/${CTARGET}/${CTARGET} \
38 - && dosym usr/include /usr/${CTARGET}/sys-include
39 + if is_crosscompile ; then
40 + # gcc is configured to look at specific hard-coded paths for mingw #419601
41 + dosym usr /usr/${CTARGET}/mingw
42 + dosym usr /usr/${CTARGET}/${CTARGET}
43 + dosym usr/include /usr/${CTARGET}/sys-include
44 + fi
45 just_headers && return 0
46
47 emake install DESTDIR="${D}" || die
48
49
50
51 1.10 dev-util/mingw64-runtime/ChangeLog
52
53 file : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-util/mingw64-runtime/ChangeLog?rev=1.10&view=markup
54 plain: http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-util/mingw64-runtime/ChangeLog?rev=1.10&content-type=text/plain
55 diff : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-util/mingw64-runtime/ChangeLog?r1=1.9&r2=1.10
56
57 Index: ChangeLog
58 ===================================================================
59 RCS file: /var/cvsroot/gentoo-x86/dev-util/mingw64-runtime/ChangeLog,v
60 retrieving revision 1.9
61 retrieving revision 1.10
62 diff -u -r1.9 -r1.10
63 --- ChangeLog 12 Mar 2012 05:26:31 -0000 1.9
64 +++ ChangeLog 6 Jun 2012 19:58:24 -0000 1.10
65 @@ -1,6 +1,9 @@
66 # ChangeLog for dev-util/mingw64-runtime
67 # Copyright 1999-2012 Gentoo Foundation; Distributed under the GPL v2
68 -# $Header: /var/cvsroot/gentoo-x86/dev-util/mingw64-runtime/ChangeLog,v 1.9 2012/03/12 05:26:31 vapier Exp $
69 +# $Header: /var/cvsroot/gentoo-x86/dev-util/mingw64-runtime/ChangeLog,v 1.10 2012/06/06 19:58:24 vapier Exp $
70 +
71 + 06 Jun 2012; Mike Frysinger <vapier@g.o> mingw64-runtime-2.0.1.ebuild:
72 + Always provide mingw symlink in sysroot for gcc #419601 by Alon Bar-Lev.
73
74 *mingw64-runtime-2.0.1 (12 Mar 2012)