Gentoo Archives: gentoo-commits

From: "Thomas Beierlein (tomjbe)" <tomjbe@g.o>
To: gentoo-commits@l.g.o
Subject: [gentoo-commits] gentoo-x86 commit in dev-util/as11: ChangeLog as11-1.0.ebuild
Date: Sat, 02 Oct 2010 14:52:32
Message-Id: 20101002145228.EC8A220051@flycatcher.gentoo.org
1 tomjbe 10/10/02 14:52:28
2
3 Modified: ChangeLog as11-1.0.ebuild
4 Log:
5 Make package respecting LDFLAGS (bug #338143). Tested on amd64 and keyworded.
6
7 (Portage version: 2.1.9.13/cvs/Linux x86_64)
8
9 Revision Changes Path
10 1.9 dev-util/as11/ChangeLog
11
12 file : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-util/as11/ChangeLog?rev=1.9&view=markup
13 plain: http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-util/as11/ChangeLog?rev=1.9&content-type=text/plain
14 diff : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-util/as11/ChangeLog?r1=1.8&r2=1.9
15
16 Index: ChangeLog
17 ===================================================================
18 RCS file: /var/cvsroot/gentoo-x86/dev-util/as11/ChangeLog,v
19 retrieving revision 1.8
20 retrieving revision 1.9
21 diff -u -r1.8 -r1.9
22 --- ChangeLog 23 Sep 2009 17:40:06 -0000 1.8
23 +++ ChangeLog 2 Oct 2010 14:52:28 -0000 1.9
24 @@ -1,6 +1,10 @@
25 # ChangeLog for dev-util/as11
26 -# Copyright 1999-2009 Gentoo Foundation; Distributed under the GPL v2
27 -# $Header: /var/cvsroot/gentoo-x86/dev-util/as11/ChangeLog,v 1.8 2009/09/23 17:40:06 patrick Exp $
28 +# Copyright 1999-2010 Gentoo Foundation; Distributed under the GPL v2
29 +# $Header: /var/cvsroot/gentoo-x86/dev-util/as11/ChangeLog,v 1.9 2010/10/02 14:52:28 tomjbe Exp $
30 +
31 + 02 Oct 2010; Thomas Beierlein <tomjbe@g.o> as11-1.0.ebuild:
32 + Make package respecting LDFLAGS (bug #338143). Tested on amd64 and
33 + keyworded.
34
35 23 Sep 2009; Patrick Lauer <patrick@g.o> as11-1.0.ebuild:
36 Remove virtual/libc
37
38
39
40 1.9 dev-util/as11/as11-1.0.ebuild
41
42 file : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-util/as11/as11-1.0.ebuild?rev=1.9&view=markup
43 plain: http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-util/as11/as11-1.0.ebuild?rev=1.9&content-type=text/plain
44 diff : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-util/as11/as11-1.0.ebuild?r1=1.8&r2=1.9
45
46 Index: as11-1.0.ebuild
47 ===================================================================
48 RCS file: /var/cvsroot/gentoo-x86/dev-util/as11/as11-1.0.ebuild,v
49 retrieving revision 1.8
50 retrieving revision 1.9
51 diff -u -r1.8 -r1.9
52 --- as11-1.0.ebuild 23 Sep 2009 17:40:06 -0000 1.8
53 +++ as11-1.0.ebuild 2 Oct 2010 14:52:28 -0000 1.9
54 @@ -1,6 +1,8 @@
55 -# Copyright 1999-2009 Gentoo Foundation
56 +# Copyright 1999-2010 Gentoo Foundation
57 # Distributed under the terms of the GNU General Public License v2
58 -# $Header: /var/cvsroot/gentoo-x86/dev-util/as11/as11-1.0.ebuild,v 1.8 2009/09/23 17:40:06 patrick Exp $
59 +# $Header: /var/cvsroot/gentoo-x86/dev-util/as11/as11-1.0.ebuild,v 1.9 2010/10/02 14:52:28 tomjbe Exp $
60 +
61 +EAPI="2"
62
63 inherit toolchain-funcs
64
65 @@ -10,7 +12,7 @@
66 LICENSE="freedist"
67
68 SLOT="0"
69 -KEYWORDS="~x86 ~ppc"
70 +KEYWORDS="~amd64 ~ppc ~x86"
71 IUSE=""
72
73 S=${WORKDIR}/${PN}
74 @@ -18,6 +20,10 @@
75 DEPEND=""
76 RDEPEND=""
77
78 +src_prepare() {
79 + sed -i -e "s/ -o/\$(LDFLAGS) -o/g" Makefile || die
80 +}
81 +
82 src_compile() {
83 emake CC="$(tc-getCC)" || die "Compile failed"
84 }