blob: b9b5165804f71b9979c0f1998167237c0c931deb [file] [log] [blame]
# Copyright 2011 The Chromium OS Authors
# Distributed under the terms of the GNU General Public License v2
# $Header:
EAPI="4"
CROS_WORKON_COMMIT="699e98cf6f69f1b516f07ed45c2b942074775ccc"
CROS_WORKON_TREE="38de2245b368eaa551b65386dcfd494993108df0"
CROS_WORKON_PROJECT="chromiumos/third_party/flashmap"
inherit cros-workon toolchain-funcs multilib
DESCRIPTION="Utility for manipulating firmware ROM mapping data structure"
HOMEPAGE="http://flashmap.googlecode.com"
SRC_URI=""
LICENSE="BSD-Google"
SLOT="0"
KEYWORDS="*"
# Disable unit testing for now because one of the test cases for detecting
# buffer overflow causes emake to fail when fmap_test is run.
# RESTRICT="test" will override FEATURES="test" and will also cause
# src_test() to be ignored by relevant scripts.
RESTRICT="test"
FEATURES="test"
src_configure() {
cros-workon_src_configure
}
src_compile() {
tc-export AR CC LD NM STRIP OBJCOPY
emake || die
}
src_test() {
tc-export AR CC LD NM STRIP OBJCOPY
# default "test" target uses lcov, so "test_only" was added to only
# build and run the test without generating coverage statistics
emake test_only || die
}
src_install() {
emake LIBDIR=$(get_libdir) DESTDIR="${D}" USE_PKG_CONFIG=1 install || die
}