Gentoo Archives: gentoo-commits

From: "Mike Frysinger (vapier)" <vapier@g.o>
To: gentoo-commits@l.g.o
Subject: [gentoo-commits] gentoo-x86 commit in sys-apps/iproute2: ChangeLog iproute2-2.6.25.20080417.ebuild
Date: Sat, 21 Jun 2008 05:50:08
Message-Id: E1K9vz9-0002Fn-0K@stork.gentoo.org
1 vapier 08/06/21 05:50:03
2
3 Modified: ChangeLog iproute2-2.6.25.20080417.ebuild
4 Log:
5 Respect env CPPFLAGS, add fix by Bertrand Jacquin for cross-compiling #226035, and build against system headers rather than local copies #226359 by Derk W te Bokkel.
6 (Portage version: 2.2_pre8/cvs/Linux 2.6.25 x86_64)
7
8 Revision Changes Path
9 1.106 sys-apps/iproute2/ChangeLog
10
11 file : http://sources.gentoo.org/viewcvs.py/gentoo-x86/sys-apps/iproute2/ChangeLog?rev=1.106&view=markup
12 plain: http://sources.gentoo.org/viewcvs.py/gentoo-x86/sys-apps/iproute2/ChangeLog?rev=1.106&content-type=text/plain
13 diff : http://sources.gentoo.org/viewcvs.py/gentoo-x86/sys-apps/iproute2/ChangeLog?r1=1.105&r2=1.106
14
15 Index: ChangeLog
16 ===================================================================
17 RCS file: /var/cvsroot/gentoo-x86/sys-apps/iproute2/ChangeLog,v
18 retrieving revision 1.105
19 retrieving revision 1.106
20 diff -u -r1.105 -r1.106
21 --- ChangeLog 9 Jun 2008 00:58:21 -0000 1.105
22 +++ ChangeLog 21 Jun 2008 05:50:02 -0000 1.106
23 @@ -1,6 +1,13 @@
24 # ChangeLog for sys-apps/iproute2
25 # Copyright 1999-2008 Gentoo Foundation; Distributed under the GPL v2
26 -# $Header: /var/cvsroot/gentoo-x86/sys-apps/iproute2/ChangeLog,v 1.105 2008/06/09 00:58:21 vapier Exp $
27 +# $Header: /var/cvsroot/gentoo-x86/sys-apps/iproute2/ChangeLog,v 1.106 2008/06/21 05:50:02 vapier Exp $
28 +
29 + 21 Jun 2008; Mike Frysinger <vapier@g.o>
30 + +files/iproute2-2.6.25.20080417-build.patch,
31 + iproute2-2.6.25.20080417.ebuild:
32 + Respect env CPPFLAGS, add fix by Bertrand Jacquin for cross-compiling
33 + #226035, and build against system headers rather than local copies #226359
34 + by Derk W te Bokkel.
35
36 *iproute2-2.6.25.20080417 (09 Jun 2008)
37
38
39
40
41 1.2 sys-apps/iproute2/iproute2-2.6.25.20080417.ebuild
42
43 file : http://sources.gentoo.org/viewcvs.py/gentoo-x86/sys-apps/iproute2/iproute2-2.6.25.20080417.ebuild?rev=1.2&view=markup
44 plain: http://sources.gentoo.org/viewcvs.py/gentoo-x86/sys-apps/iproute2/iproute2-2.6.25.20080417.ebuild?rev=1.2&content-type=text/plain
45 diff : http://sources.gentoo.org/viewcvs.py/gentoo-x86/sys-apps/iproute2/iproute2-2.6.25.20080417.ebuild?r1=1.1&r2=1.2
46
47 Index: iproute2-2.6.25.20080417.ebuild
48 ===================================================================
49 RCS file: /var/cvsroot/gentoo-x86/sys-apps/iproute2/iproute2-2.6.25.20080417.ebuild,v
50 retrieving revision 1.1
51 retrieving revision 1.2
52 diff -u -r1.1 -r1.2
53 --- iproute2-2.6.25.20080417.ebuild 9 Jun 2008 00:58:21 -0000 1.1
54 +++ iproute2-2.6.25.20080417.ebuild 21 Jun 2008 05:50:02 -0000 1.2
55 @@ -1,6 +1,6 @@
56 # Copyright 1999-2008 Gentoo Foundation
57 # Distributed under the terms of the GNU General Public License v2
58 -# $Header: /var/cvsroot/gentoo-x86/sys-apps/iproute2/iproute2-2.6.25.20080417.ebuild,v 1.1 2008/06/09 00:58:21 vapier Exp $
59 +# $Header: /var/cvsroot/gentoo-x86/sys-apps/iproute2/iproute2-2.6.25.20080417.ebuild,v 1.2 2008/06/21 05:50:02 vapier Exp $
60
61 inherit eutils toolchain-funcs
62
63 @@ -27,7 +27,11 @@
64 src_unpack() {
65 unpack ${A}
66 cd "${S}"
67 - sed -i "s:-O2:${CFLAGS}:" Makefile || die "sed Makefile failed"
68 + sed -i "s:-O2:${CFLAGS} ${CPPFLAGS}:" Makefile || die "sed Makefile failed"
69 + epatch "${FILESDIR}"/${P}-build.patch #226035
70 +
71 + # build against system headers
72 + rm -r include/linux include/netinet #include/ip{,6}tables{,_common}.h include/libiptc
73
74 local check base=${PORTAGE_CONFIGROOT}/etc/portage/patches
75 for check in {${CATEGORY}/${PF},${CATEGORY}/${P},${CATEGORY}/${PN}}; do
76
77
78
79 --
80 gentoo-commits@l.g.o mailing list