Gentoo Archives: gentoo-commits

From: "Victor Ostorga (vostorga)" <vostorga@g.o>
To: gentoo-commits@l.g.o
Subject: [gentoo-commits] gentoo-x86 commit in dev-libs/libunicode: ChangeLog libunicode-0.4-r1.ebuild
Date: Wed, 29 Jul 2009 22:28:25
Message-Id: E1MWHdG-0002AC-Ix@stork.gentoo.org
1 vostorga 09/07/29 22:28:22
2
3 Modified: ChangeLog libunicode-0.4-r1.ebuild
4 Log:
5 Respecting CC variable, closes bug #243934
6 (Portage version: 2.1.6.13/cvs/Linux i686)
7
8 Revision Changes Path
9 1.20 dev-libs/libunicode/ChangeLog
10
11 file : http://sources.gentoo.org/viewcvs.py/gentoo-x86/dev-libs/libunicode/ChangeLog?rev=1.20&view=markup
12 plain: http://sources.gentoo.org/viewcvs.py/gentoo-x86/dev-libs/libunicode/ChangeLog?rev=1.20&content-type=text/plain
13 diff : http://sources.gentoo.org/viewcvs.py/gentoo-x86/dev-libs/libunicode/ChangeLog?r1=1.19&r2=1.20
14
15 Index: ChangeLog
16 ===================================================================
17 RCS file: /var/cvsroot/gentoo-x86/dev-libs/libunicode/ChangeLog,v
18 retrieving revision 1.19
19 retrieving revision 1.20
20 diff -u -r1.19 -r1.20
21 --- ChangeLog 15 Jul 2007 08:24:06 -0000 1.19
22 +++ ChangeLog 29 Jul 2009 22:28:22 -0000 1.20
23 @@ -1,6 +1,10 @@
24 # ChangeLog for dev-libs/libunicode
25 -# Copyright 2002-2007 Gentoo Foundation; Distributed under the GPL v2
26 -# $Header: /var/cvsroot/gentoo-x86/dev-libs/libunicode/ChangeLog,v 1.19 2007/07/15 08:24:06 phreak Exp $
27 +# Copyright 1999-2009 Gentoo Foundation; Distributed under the GPL v2
28 +# $Header: /var/cvsroot/gentoo-x86/dev-libs/libunicode/ChangeLog,v 1.20 2009/07/29 22:28:22 vostorga Exp $
29 +
30 + 29 Jul 2009; VĂ­ctor Ostorga <vostorga@g.o>
31 + libunicode-0.4-r1.ebuild:
32 + Respecting CC variable, closes bug #243934
33
34 15 Jul 2007; Christian Heim <phreak@g.o> metadata.xml:
35 Assigning dev-libs/libunicode to m-needed, as beu is being retired (#66608).
36
37
38
39 1.33 dev-libs/libunicode/libunicode-0.4-r1.ebuild
40
41 file : http://sources.gentoo.org/viewcvs.py/gentoo-x86/dev-libs/libunicode/libunicode-0.4-r1.ebuild?rev=1.33&view=markup
42 plain: http://sources.gentoo.org/viewcvs.py/gentoo-x86/dev-libs/libunicode/libunicode-0.4-r1.ebuild?rev=1.33&content-type=text/plain
43 diff : http://sources.gentoo.org/viewcvs.py/gentoo-x86/dev-libs/libunicode/libunicode-0.4-r1.ebuild?r1=1.32&r2=1.33
44
45 Index: libunicode-0.4-r1.ebuild
46 ===================================================================
47 RCS file: /var/cvsroot/gentoo-x86/dev-libs/libunicode/libunicode-0.4-r1.ebuild,v
48 retrieving revision 1.32
49 retrieving revision 1.33
50 diff -u -r1.32 -r1.33
51 --- libunicode-0.4-r1.ebuild 5 Jan 2007 07:39:26 -0000 1.32
52 +++ libunicode-0.4-r1.ebuild 29 Jul 2009 22:28:22 -0000 1.33
53 @@ -1,6 +1,8 @@
54 -# Copyright 1999-2007 Gentoo Foundation
55 +# Copyright 1999-2009 Gentoo Foundation
56 # Distributed under the terms of the GNU General Public License v2
57 -# $Header: /var/cvsroot/gentoo-x86/dev-libs/libunicode/libunicode-0.4-r1.ebuild,v 1.32 2007/01/05 07:39:26 flameeyes Exp $
58 +# $Header: /var/cvsroot/gentoo-x86/dev-libs/libunicode/libunicode-0.4-r1.ebuild,v 1.33 2009/07/29 22:28:22 vostorga Exp $
59 +
60 +inherit toolchain-funcs
61
62 DESCRIPTION="Unicode library"
63 HOMEPAGE="http://www.gnome.org/"
64 @@ -11,7 +13,12 @@
65 KEYWORDS="alpha amd64 arm hppa ia64 ppc sparc x86"
66 IUSE=""
67
68 +src_compile() {
69 + econf || die
70 + emake CC=$(tc-getCC) || die "make failed"
71 +}
72 +
73 src_install() {
74 - make DESTDIR=${D} install || die
75 + emake DESTDIR="${D}" install || die
76 dodoc AUTHORS ChangeLog NEWS README THANKS TODO
77 }