Gentoo Archives: gentoo-commits

From: "Christoph Mende (angelos)" <angelos@g.o>
To: gentoo-commits@l.g.o
Subject: [gentoo-commits] gentoo-x86 commit in app-shells/esh: ChangeLog esh-0.8.5.ebuild
Date: Tue, 30 Dec 2008 20:43:31
Message-Id: E1LHlR3-0005yt-8D@stork.gentoo.org
1 angelos 08/12/30 20:43:29
2
3 Modified: ChangeLog esh-0.8.5.ebuild
4 Log:
5 QA: Respect CC (bug 243700)
6 (Portage version: 2.2_rc20/cvs/Linux 2.6.28 x86_64)
7
8 Revision Changes Path
9 1.18 app-shells/esh/ChangeLog
10
11 file : http://sources.gentoo.org/viewcvs.py/gentoo-x86/app-shells/esh/ChangeLog?rev=1.18&view=markup
12 plain: http://sources.gentoo.org/viewcvs.py/gentoo-x86/app-shells/esh/ChangeLog?rev=1.18&content-type=text/plain
13 diff : http://sources.gentoo.org/viewcvs.py/gentoo-x86/app-shells/esh/ChangeLog?r1=1.17&r2=1.18
14
15 Index: ChangeLog
16 ===================================================================
17 RCS file: /var/cvsroot/gentoo-x86/app-shells/esh/ChangeLog,v
18 retrieving revision 1.17
19 retrieving revision 1.18
20 diff -u -r1.17 -r1.18
21 --- ChangeLog 15 May 2007 09:27:31 -0000 1.17
22 +++ ChangeLog 30 Dec 2008 20:43:29 -0000 1.18
23 @@ -1,6 +1,9 @@
24 # ChangeLog for app-shells/esh
25 -# Copyright 2002-2007 Gentoo Foundation; Distributed under the GPL v2
26 -# $Header: /var/cvsroot/gentoo-x86/app-shells/esh/ChangeLog,v 1.17 2007/05/15 09:27:31 bangert Exp $
27 +# Copyright 2002-2008 Gentoo Foundation; Distributed under the GPL v2
28 +# $Header: /var/cvsroot/gentoo-x86/app-shells/esh/ChangeLog,v 1.18 2008/12/30 20:43:29 angelos Exp $
29 +
30 + 30 Dec 2008; Christoph Mende <angelos@g.o> esh-0.8.5.ebuild:
31 + QA: Respect CC (bug 243700)
32
33 15 May 2007; Thilo Bangert <bangert@g.o> metadata.xml:
34 add <herd>no-herd</herd>
35
36
37
38 1.17 app-shells/esh/esh-0.8.5.ebuild
39
40 file : http://sources.gentoo.org/viewcvs.py/gentoo-x86/app-shells/esh/esh-0.8.5.ebuild?rev=1.17&view=markup
41 plain: http://sources.gentoo.org/viewcvs.py/gentoo-x86/app-shells/esh/esh-0.8.5.ebuild?rev=1.17&content-type=text/plain
42 diff : http://sources.gentoo.org/viewcvs.py/gentoo-x86/app-shells/esh/esh-0.8.5.ebuild?r1=1.16&r2=1.17
43
44 Index: esh-0.8.5.ebuild
45 ===================================================================
46 RCS file: /var/cvsroot/gentoo-x86/app-shells/esh/esh-0.8.5.ebuild,v
47 retrieving revision 1.16
48 retrieving revision 1.17
49 diff -u -r1.16 -r1.17
50 --- esh-0.8.5.ebuild 24 Apr 2005 02:54:34 -0000 1.16
51 +++ esh-0.8.5.ebuild 30 Dec 2008 20:43:29 -0000 1.17
52 @@ -1,6 +1,8 @@
53 -# Copyright 1999-2005 Gentoo Foundation
54 +# Copyright 1999-2008 Gentoo Foundation
55 # Distributed under the terms of the GNU General Public License v2
56 -# $Header: /var/cvsroot/gentoo-x86/app-shells/esh/esh-0.8.5.ebuild,v 1.16 2005/04/24 02:54:34 hansmi Exp $
57 +# $Header: /var/cvsroot/gentoo-x86/app-shells/esh/esh-0.8.5.ebuild,v 1.17 2008/12/30 20:43:29 angelos Exp $
58 +
59 +inherit toolchain-funcs
60
61 DESCRIPTION="A UNIX Shell with a simplified Scheme syntax"
62 HOMEPAGE="http://slon.ttk.ru/esh/"
63 @@ -11,22 +13,21 @@
64 KEYWORDS="x86 ppc sparc"
65 IUSE=""
66
67 -DEPEND="virtual/libc
68 - >=sys-libs/ncurses-5.1
69 +DEPEND=">=sys-libs/ncurses-5.1
70 >=sys-libs/readline-4.1"
71
72 S=${WORKDIR}/${PN}
73
74 src_compile() {
75 sed -i \
76 - -e "s:^CFLAGS=:CFLAGS=${CFLAGS/-fomit-frame-pointer/} :" \
77 + -e "/^CFLAGS/s/-g/${CFLAGS}/" \
78 -e "s:^LIB=:LIB=-lncurses :" \
79 -e "s:-ltermcap::" \
80 Makefile
81 # For some reason, this tarball has binary files in it for x86.
82 # Make clean so we can rebuild for our arch and optimization.
83 - make clean
84 - make || die
85 + emake clean
86 + emake CC="$(tc-getCC)" || die "emake failed"
87 }
88
89 src_install() {