blob: 1ebebad8433b3903a864f3b2e14a84b554bfe697 [file] [log] [blame]
# Copyright (c) 2011 The Chromium OS Authors. All rights reserved.
# Distributed under the terms of the GNU General Public License v2
EAPI="5"
CROS_WORKON_COMMIT="c485973c5a2ef8557767e47972f45be1d70f45ef"
CROS_WORKON_TREE="85b1c036a50b21895ed9461be28aad9dfd9df2bf"
CROS_WORKON_PROJECT="chromiumos/third_party/hdctools"
PYTHON_COMPAT=( python2_7 )
inherit cros-workon distutils-r1 toolchain-funcs multilib udev
DESCRIPTION="Software to communicate with servo/miniservo debug boards"
HOMEPAGE="https://www.chromium.org/chromium-os/servo"
LICENSE="BSD-Google"
SLOT="0"
KEYWORDS="*"
IUSE="cros_host test"
RDEPEND=">=dev-embedded/libftdi-0.18
dev-python/numpy
>=dev-python/pexpect-3.0
dev-python/pyserial
test? ( dev-python/pytest )
>=dev-python/pyusb-1.0.2
virtual/libusb:1
app-misc/screen
chromeos-base/ec-devutils"
DEPEND="${RDEPEND}
app-text/htmltidy"
src_configure() {
cros-workon_src_configure
}
src_test() {
python_test() {
py.test -v build/ || die
}
python_foreach_impl python_test
}
src_compile() {
tc-export CC PKG_CONFIG
local makeargs=( $(usex cros_host '' EXTRA_DIRS=chromeos) )
emake "${makeargs[@]}"
distutils-r1_src_compile
}
src_install() {
local makeargs=(
$(usex cros_host '' EXTRA_DIRS=chromeos)
DESTDIR="${D}"
LIBDIR=/usr/$(get_libdir)
UDEV_DEST="${D}$(get_udevdir)/rules.d"
install
)
emake "${makeargs[@]}"
distutils-r1_src_install
}