Gentoo Archives: gentoo-commits

From: "Mike Frysinger (vapier)" <vapier@g.o>
To: gentoo-commits@l.g.o
Subject: [gentoo-commits] gentoo-x86 commit in sys-boot/gnu-efi: gnu-efi-3.0s.ebuild ChangeLog
Date: Sun, 25 Nov 2012 04:27:23
Message-Id: 20121125042708.4146C20C65@flycatcher.gentoo.org
1 vapier 12/11/25 04:27:08
2
3 Modified: ChangeLog
4 Added: gnu-efi-3.0s.ebuild
5 Log:
6 Version bump and update to EAPI=4 #412645 by Rod Smith. Disable QA checks on compiled objects as they do not make sense for bootloaders #329823 by Dane Smith. Disable ssp since that requires a C library (like glibc) to work, and does not make sense for bootloaders #444246 by Maxim Kammerer.
7
8 (Portage version: 2.2.0_alpha142/cvs/Linux x86_64, signed Manifest commit with key FB7C4156)
9
10 Revision Changes Path
11 1.19 sys-boot/gnu-efi/ChangeLog
12
13 file : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/sys-boot/gnu-efi/ChangeLog?rev=1.19&view=markup
14 plain: http://sources.gentoo.org/viewvc.cgi/gentoo-x86/sys-boot/gnu-efi/ChangeLog?rev=1.19&content-type=text/plain
15 diff : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/sys-boot/gnu-efi/ChangeLog?r1=1.18&r2=1.19
16
17 Index: ChangeLog
18 ===================================================================
19 RCS file: /var/cvsroot/gentoo-x86/sys-boot/gnu-efi/ChangeLog,v
20 retrieving revision 1.18
21 retrieving revision 1.19
22 diff -u -r1.18 -r1.19
23 --- ChangeLog 28 Aug 2010 22:43:29 -0000 1.18
24 +++ ChangeLog 25 Nov 2012 04:27:08 -0000 1.19
25 @@ -1,6 +1,14 @@
26 # ChangeLog for sys-boot/gnu-efi
27 -# Copyright 1999-2010 Gentoo Foundation; Distributed under the GPL v2
28 -# $Header: /var/cvsroot/gentoo-x86/sys-boot/gnu-efi/ChangeLog,v 1.18 2010/08/28 22:43:29 vapier Exp $
29 +# Copyright 1999-2012 Gentoo Foundation; Distributed under the GPL v2
30 +# $Header: /var/cvsroot/gentoo-x86/sys-boot/gnu-efi/ChangeLog,v 1.19 2012/11/25 04:27:08 vapier Exp $
31 +
32 +*gnu-efi-3.0s (25 Nov 2012)
33 +
34 + 25 Nov 2012; Mike Frysinger <vapier@g.o> +gnu-efi-3.0s.ebuild:
35 + Version bump and update to EAPI=4 #412645 by Rod Smith. Disable QA checks on
36 + compiled objects as they do not make sense for bootloaders #329823 by Dane
37 + Smith. Disable ssp since that requires a C library (like glibc) to work, and
38 + does not make sense for bootloaders #444246 by Maxim Kammerer.
39
40 28 Aug 2010; Mike Frysinger <vapier@g.o> gnu-efi-3.0i.ebuild:
41 Clean up and document the ebuild a bit.
42 @@ -66,4 +74,3 @@
43 files/gnu-efi-3.0a-lds.patch:
44 New ebuild for gnu-efi with patches from Debian. Thanks to Matt Anderson in
45 bug 38875
46 -
47
48
49
50 1.1 sys-boot/gnu-efi/gnu-efi-3.0s.ebuild
51
52 file : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/sys-boot/gnu-efi/gnu-efi-3.0s.ebuild?rev=1.1&view=markup
53 plain: http://sources.gentoo.org/viewvc.cgi/gentoo-x86/sys-boot/gnu-efi/gnu-efi-3.0s.ebuild?rev=1.1&content-type=text/plain
54
55 Index: gnu-efi-3.0s.ebuild
56 ===================================================================
57 # Copyright 1999-2012 Gentoo Foundation
58 # Distributed under the terms of the GNU General Public License v2
59 # $Header: /var/cvsroot/gentoo-x86/sys-boot/gnu-efi/gnu-efi-3.0s.ebuild,v 1.1 2012/11/25 04:27:08 vapier Exp $
60
61 EAPI="4"
62
63 inherit eutils multilib
64
65 MY_P="${PN}_${PV}"
66 DEB_VER="3.0i-4"
67 DESCRIPTION="Library for build EFI Applications"
68 HOMEPAGE="http://developer.intel.com/technology/efi"
69 SRC_URI="mirror://sourceforge/gnu-efi/${MY_P}.orig.tar.gz
70 mirror://debian/pool/main/g/gnu-efi/${PN}_${DEB_VER}.diff.gz"
71
72 LICENSE="GPL-2"
73 SLOT="0"
74 KEYWORDS="~amd64 ~ia64 ~x86"
75 IUSE=""
76
77 DEPEND="sys-apps/pciutils"
78 RDEPEND=""
79
80 S=${WORKDIR}/${P%?}
81
82 # These objects get run early boot (i.e. not inside of Linux),
83 # so doing these QA checks on them doesn't make sense.
84 QA_EXECSTACK="usr/*/lib*efi.a:* usr/*/crt*.o"
85
86 src_prepare() {
87 EPATCH_OPTS="-p1" epatch "${WORKDIR}"/*.diff
88 sed -i -e '/^CFLAGS/s:$: -fno-stack-protector:' Make.defaults || die #444246
89 }
90
91 _emake() {
92 emake prefix=${CHOST}- ARCH=${iarch} LIBDIR=$(get_libdir) "$@"
93 }
94
95 src_compile() {
96 case ${ARCH} in
97 ia64) iarch=ia64 ;;
98 x86) iarch=ia32 ;;
99 amd64) iarch=x86_64 ;;
100 *) die "unknown architecture: $ARCH" ;;
101 esac
102 # The lib subdir uses unsafe archive targets, and
103 # the apps subdir needs gnuefi subdir
104 _emake -j1
105 }
106
107 src_install() {
108 _emake install INSTALLROOT="${D}"/usr
109 dodoc README* ChangeLog
110 }