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-emulation/dlx: ChangeLog dlx-1.0.0-r1.ebuild
Date: Tue, 30 Dec 2008 19:00:38
Message-Id: E1LHjpS-0002uR-BH@stork.gentoo.org
1 angelos 08/12/30 19:00:34
2
3 Modified: ChangeLog dlx-1.0.0-r1.ebuild
4 Log:
5 QA: Respect CC (bug 243578) and CFLAGS/LDFLAGS (bug 240003)
6 (Portage version: 2.2_rc20/cvs/Linux 2.6.28 x86_64)
7
8 Revision Changes Path
9 1.10 app-emulation/dlx/ChangeLog
10
11 file : http://sources.gentoo.org/viewcvs.py/gentoo-x86/app-emulation/dlx/ChangeLog?rev=1.10&view=markup
12 plain: http://sources.gentoo.org/viewcvs.py/gentoo-x86/app-emulation/dlx/ChangeLog?rev=1.10&content-type=text/plain
13 diff : http://sources.gentoo.org/viewcvs.py/gentoo-x86/app-emulation/dlx/ChangeLog?r1=1.9&r2=1.10
14
15 Index: ChangeLog
16 ===================================================================
17 RCS file: /var/cvsroot/gentoo-x86/app-emulation/dlx/ChangeLog,v
18 retrieving revision 1.9
19 retrieving revision 1.10
20 diff -u -r1.9 -r1.10
21 --- ChangeLog 21 Apr 2008 16:43:32 -0000 1.9
22 +++ ChangeLog 30 Dec 2008 19:00:34 -0000 1.10
23 @@ -1,6 +1,9 @@
24 # ChangeLog for app-emulation/dlx
25 # Copyright 2000-2008 Gentoo Foundation; Distributed under the GPL v2
26 -# $Header: /var/cvsroot/gentoo-x86/app-emulation/dlx/ChangeLog,v 1.9 2008/04/21 16:43:32 phreak Exp $
27 +# $Header: /var/cvsroot/gentoo-x86/app-emulation/dlx/ChangeLog,v 1.10 2008/12/30 19:00:34 angelos Exp $
28 +
29 + 30 Dec 2008; Christoph Mende <angelos@g.o> dlx-1.0.0-r1.ebuild:
30 + QA: Respect CC (bug 243578) and CFLAGS/LDFLAGS (bug 240003)
31
32 21 Apr 2008; Christian Heim <phreak@g.o> metadata.xml:
33 Fix up metadata.xml. If there's no maintainer for the package, the metadata
34
35
36
37 1.3 app-emulation/dlx/dlx-1.0.0-r1.ebuild
38
39 file : http://sources.gentoo.org/viewcvs.py/gentoo-x86/app-emulation/dlx/dlx-1.0.0-r1.ebuild?rev=1.3&view=markup
40 plain: http://sources.gentoo.org/viewcvs.py/gentoo-x86/app-emulation/dlx/dlx-1.0.0-r1.ebuild?rev=1.3&content-type=text/plain
41 diff : http://sources.gentoo.org/viewcvs.py/gentoo-x86/app-emulation/dlx/dlx-1.0.0-r1.ebuild?r1=1.2&r2=1.3
42
43 Index: dlx-1.0.0-r1.ebuild
44 ===================================================================
45 RCS file: /var/cvsroot/gentoo-x86/app-emulation/dlx/dlx-1.0.0-r1.ebuild,v
46 retrieving revision 1.2
47 retrieving revision 1.3
48 diff -u -r1.2 -r1.3
49 --- dlx-1.0.0-r1.ebuild 1 Jan 2005 14:09:37 -0000 1.2
50 +++ dlx-1.0.0-r1.ebuild 30 Dec 2008 19:00:34 -0000 1.3
51 @@ -1,20 +1,26 @@
52 -# Copyright 1999-2005 Gentoo Foundation
53 +# Copyright 1999-2008 Gentoo Foundation
54 # Distributed under the terms of the GNU General Public License v2
55 -# $Header: /var/cvsroot/gentoo-x86/app-emulation/dlx/dlx-1.0.0-r1.ebuild,v 1.2 2005/01/01 14:09:37 eradicator Exp $
56 +# $Header: /var/cvsroot/gentoo-x86/app-emulation/dlx/dlx-1.0.0-r1.ebuild,v 1.3 2008/12/30 19:00:34 angelos Exp $
57 +
58 +inherit toolchain-funcs
59
60 -S=${WORKDIR}/dlx
61 DESCRIPTION="DLX Simulator"
62 HOMEPAGE="http://www.davidviner.com/dlx.php"
63 -SRC_URI="http://www.davidviner.com/dlx/dlx.tar.gz"
64 +SRC_URI="http://www.davidviner.com/${PN}/${PN}.tar.gz"
65
66 LICENSE="GPL-2"
67 SLOT="0"
68 KEYWORDS="~x86 ~ppc"
69 IUSE=""
70 -DEPEND=""
71 +
72 +S="${WORKDIR}/${PN}"
73
74 src_compile() {
75 - emake || die
76 + emake CC="$(tc-getCC)" \
77 + LINK="$(tc-getCC)" \
78 + CFLAGS="${CFLAGS}" \
79 + LFLAGS="${LDFLAGS}" \
80 + || die "emake failed"
81 }
82
83 src_install() {