# Copyright 1999-2011 Gentoo Foundation # Distributed under the terms of the GNU General Public License v2 # $Header: /var/cvsroot/gentoo-x86/sys-apps/flashrom/flashrom-0.9.4.ebuild,v 1.5 2011/09/20 16:03:21 nativemad Exp $ EAPI="4" CROS_WORKON_PROJECT="chromiumos/third_party/flashrom" inherit cros-workon toolchain-funcs DESCRIPTION="Utility for reading, writing, erasing and verifying flash ROM chips" HOMEPAGE="http://flashrom.org/" #SRC_URI="http://download.flashrom.org/releases/${P}.tar.bz2" SRC_URI="" LICENSE="GPL-2" SLOT="0" KEYWORDS="~amd64 ~x86 ~arm" IUSE="+atahpt +bitbang_spi +buspirate_spi dediprog +drkaiser +dummy +fdtmap ft2232_spi +gfxnvidia +internal +linux_i2c +linux_spi +nic3com +nicintel +nicintel_spi +nicnatsemi +nicrealtek +ogp_spi +rayer_spi +satasii +satamv +serprog +wiki static -use_os_timer cros_host" COMMON_DEPEND="atahpt? ( sys-apps/pciutils ) dediprog? ( virtual/libusb:0 ) drkaiser? ( sys-apps/pciutils ) fdtmap? ( sys-apps/dtc ) ft2232_spi? ( dev-embedded/libftdi ) gfxnvidia? ( sys-apps/pciutils ) internal? ( sys-apps/pciutils ) nic3com? ( sys-apps/pciutils ) nicintel? ( sys-apps/pciutils ) nicintel_spi? ( sys-apps/pciutils ) nicnatsemi? ( sys-apps/pciutils ) nicrealtek? ( sys-apps/pciutils ) rayer_spi? ( sys-apps/pciutils ) satasii? ( sys-apps/pciutils ) satamv? ( sys-apps/pciutils ) ogp_spi? ( sys-apps/pciutils )" # Force pciutils to rebuild as USE=static-libs in chroot. COMMON_DEPEND="${COMMON_DEPEND} sys-apps/pciutils[static-libs]" RDEPEND="${COMMON_DEPEND} internal? ( sys-apps/dmidecode )" DEPEND="${COMMON_DEPEND} sys-apps/diffutils" _flashrom_enable() { local c="CONFIG_${2:-$(echo $1 | tr [:lower:] [:upper:])}" args+=" $c=`use $1 && echo yes || echo no`" } flashrom_enable() { local u for u in "$@" ; do _flashrom_enable $u ; done } src_configure() { cros-workon_src_configure } src_compile() { local progs=0 local args="" # Programmer flashrom_enable \ atahpt bitbang_spi buspirate_spi dediprog drkaiser fdtmap \ ft2232_spi gfxnvidia linux_i2c linux_spi nic3com nicintel \ nicintel_spi nicnatsemi nicrealtek ogp_spi rayer_spi \ satasii satamv serprog \ internal dummy _flashrom_enable wiki PRINT_WIKI # You have to specify at least one programmer, and if you specify more than # one programmer you have to include either dummy or internal in the list. for prog in ${IUSE//[+-]} ; do case ${prog} in internal|dummy|wiki|use_os_timer) continue ;; esac use ${prog} && : $(( progs++ )) done if [ $progs -ne 1 ] ; then if ! use internal && ! use dummy ; then ewarn "You have to specify at least one programmer, and if you specify" ewarn "more than one programmer, you have to enable either dummy or" ewarn "internal as well. 'internal' will be the default now." args+=" CONFIG_INTERNAL=yes" fi fi tc-export AR CC RANLIB # Configure Flashrom to use OS timer instead of calibrated delay loop # if USE flag is specified or if a certain board requires it. if use use_os_timer ; then einfo "Configuring Flashrom to use OS timer" args="$args CONFIG_USE_OS_TIMER=yes" else einfo "Configuring Flashrom to use delay loop" args="$args CONFIG_USE_OS_TIMER=no" fi # WARNERROR=no, bug 347879 # TODO(hungte) Workaround for crosbug.com/32967: always provide # dynamic and static version binaries if 'static' is not # specified in USE flag. We should deprecate this behavior once # we find a better way to fix flashrom execution dependency. local dynamic_args="$args CONFIG_STATIC=no" local static_args="$args CONFIG_STATIC=yes" emake WARNERROR=no ${static_args} || die if ! use static; then # Provide the static one as flashrom_s. cp flashrom flashrom_s emake clean emake WARNERROR=no ${dynamic_args} || die fi } src_install() { dosbin flashrom || die if ! use static;then # crosbug.com/32967: Default target is not static. Provide the # auxiliary static version as flashrom_s. dosbin flashrom_s || die fi doman flashrom.8 dodoc README } src_test() { # Setup FDT test file if use cros_host && [ -d tests ]; then elog Running flashrom unit tests pushd tests >/dev/null ./tests.py || die popd >/dev/null fi }