Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(44)

Side by Side Diff: chromeos-base/vboot_reference/vboot_reference-9999.ebuild

Issue 2852001: Prepare vboot_reference ebuild to work with the new makefile and build flow. (Closed) Base URL: ssh://git@chromiumos-git/chromiumos-overlay.git
Patch Set: Modified based on the review comments Created 10 years, 6 months ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View unified diff | Download patch
« no previous file with comments | « chromeos-base/vboot_reference/vboot_reference-1.0.ebuild ('k') | no next file » | no next file with comments »
Toggle Intra-line Diffs ('i') | Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
OLDNEW
(Empty)
1 # Copyright (c) 2010 The Chromium OS Authors. All rights reserved.
2 # Distributed under the terms of the GNU General Public License v2
3
4 inherit cros-workon
5
6 DESCRIPTION="Chrome OS verified boot tools"
7 LICENSE="GPL-3"
8 SLOT="0"
9 KEYWORDS="~amd64 ~arm ~x86"
10 IUSE="minimal"
11 EAPI="2"
12
13 DEPEND="dev-libs/openssl
14 sys-apps/util-linux"
15
16 EGIT_REPO_URI=git://chromiumos-git/git/repos/not-yet-populated.git
17 SRCPATH=src/platform/vboot_reference
18
19 src_compile() {
20 tc-export CC AR CXX
21 err_msg="${SRCPATH} compile failed. "
22 err_msg+="Try running 'make clean' in the package root directory"
23 emake || die "${err_msg}"
24 }
25
26 src_install() {
27 if use minimal ; then
28 emake DESTDIR="${D}/usr/bin" BUILD="${S}"/build -C cgpt \
29 install || die "${SRCPATH} install failed."
30 else
31 emake DESTDIR="${D}/usr/bin" install || \
32 die "${SRCPATH} install failed."
33 fi
34 }
OLDNEW
« no previous file with comments | « chromeos-base/vboot_reference/vboot_reference-1.0.ebuild ('k') | no next file » | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698