Gentoo Archives: gentoo-commits

From: "Raul Porcel (armin76)" <armin76@g.o>
To: gentoo-commits@l.g.o
Subject: [gentoo-commits] gentoo-x86 commit in sys-boot/gnu-efi: gnu-efi-3.0g.ebuild ChangeLog
Date: Tue, 02 Jun 2009 15:55:24
Message-Id: E1MBWKf-0002PI-U8@stork.gentoo.org
1 armin76 09/06/02 15:55:21
2
3 Modified: ChangeLog
4 Added: gnu-efi-3.0g.ebuild
5 Log:
6 Version bump
7 (Portage version: 2.1.6.11/cvs/Linux ia64)
8
9 Revision Changes Path
10 1.15 sys-boot/gnu-efi/ChangeLog
11
12 file : http://sources.gentoo.org/viewcvs.py/gentoo-x86/sys-boot/gnu-efi/ChangeLog?rev=1.15&view=markup
13 plain: http://sources.gentoo.org/viewcvs.py/gentoo-x86/sys-boot/gnu-efi/ChangeLog?rev=1.15&content-type=text/plain
14 diff : http://sources.gentoo.org/viewcvs.py/gentoo-x86/sys-boot/gnu-efi/ChangeLog?r1=1.14&r2=1.15
15
16 Index: ChangeLog
17 ===================================================================
18 RCS file: /var/cvsroot/gentoo-x86/sys-boot/gnu-efi/ChangeLog,v
19 retrieving revision 1.14
20 retrieving revision 1.15
21 diff -u -r1.14 -r1.15
22 --- ChangeLog 23 Feb 2008 02:05:41 -0000 1.14
23 +++ ChangeLog 2 Jun 2009 15:55:21 -0000 1.15
24 @@ -1,6 +1,11 @@
25 # ChangeLog for sys-boot/gnu-efi
26 -# Copyright 1999-2008 Gentoo Foundation; Distributed under the GPL v2
27 -# $Header: /var/cvsroot/gentoo-x86/sys-boot/gnu-efi/ChangeLog,v 1.14 2008/02/23 02:05:41 robbat2 Exp $
28 +# Copyright 1999-2009 Gentoo Foundation; Distributed under the GPL v2
29 +# $Header: /var/cvsroot/gentoo-x86/sys-boot/gnu-efi/ChangeLog,v 1.15 2009/06/02 15:55:21 armin76 Exp $
30 +
31 +*gnu-efi-3.0g (02 Jun 2009)
32 +
33 + 02 Jun 2009; Raúl Porcel <armin76@g.o> +gnu-efi-3.0g.ebuild:
34 + Version bump
35
36 23 Feb 2008; Robin H. Johnson <robbat2@g.o> gnu-efi-3.0e.ebuild:
37 This builds on amd64 too! Add ~amd64.
38
39
40
41 1.1 sys-boot/gnu-efi/gnu-efi-3.0g.ebuild
42
43 file : http://sources.gentoo.org/viewcvs.py/gentoo-x86/sys-boot/gnu-efi/gnu-efi-3.0g.ebuild?rev=1.1&view=markup
44 plain: http://sources.gentoo.org/viewcvs.py/gentoo-x86/sys-boot/gnu-efi/gnu-efi-3.0g.ebuild?rev=1.1&content-type=text/plain
45
46 Index: gnu-efi-3.0g.ebuild
47 ===================================================================
48 # Copyright 1999-2009 Gentoo Foundation
49 # Distributed under the terms of the GNU General Public License v2
50 # $Header: /var/cvsroot/gentoo-x86/sys-boot/gnu-efi/gnu-efi-3.0g.ebuild,v 1.1 2009/06/02 15:55:21 armin76 Exp $
51
52 inherit eutils toolchain-funcs
53
54 MY_P="${PN}_${PV}"
55
56 DESCRIPTION="Library for build EFI Applications"
57 HOMEPAGE="http://developer.intel.com/technology/efi"
58 SRC_URI="mirror://sourceforge/gnu-efi/${MY_P}.orig.tar.gz"
59
60 LICENSE="GPL-2"
61 SLOT="0"
62 KEYWORDS="~amd64 ~ia64 ~x86"
63 IUSE=""
64
65 DEPEND="sys-apps/pciutils"
66
67 S="${WORKDIR}"/${PN}-3.0
68
69 src_compile() {
70 local iarch
71 case $ARCH in
72 ia64) iarch=ia64 ;;
73 x86) iarch=ia32 ;;
74 amd64) iarch=x86_64 ;;
75 *) die "unknown architecture: $ARCH" ;;
76 esac
77 emake CC="$(tc-getCC)" ARCH=${iarch} -j1 || die "emake failed"
78 }
79
80 src_install() {
81 make install INSTALLROOT="${D}"/usr || die "install failed"
82 dodoc README* ChangeLog
83 }