blob: 875b88e310042b2df37aa77d432d74b691f695fd [file] [log] [blame]
# Copyright 2017 The Chromium OS Authors. All rights reserved.
# Distributed under the terms of the GNU General Public License v2
EAPI=7
CROS_WORKON_COMMIT="f1d892b43c2170b8960364f75585484ed0a4448f"
CROS_WORKON_TREE=("b2d7995ab106fbf61493d108c2bfd78d1a721d83" "e7dba8c91c1f3257c34d4a7ffff0ea2537aeb6bb")
CROS_WORKON_PROJECT="chromiumos/platform2"
CROS_WORKON_LOCALNAME="platform2"
CROS_WORKON_OUTOFTREE_BUILD=1
CROS_WORKON_SUBTREE="common-mk touch_keyboard .gn"
PLATFORM_SUBDIR="touch_keyboard"
inherit cros-workon platform user
DESCRIPTION="Touch Keyboard"
HOMEPAGE="https://chromium.googlesource.com/chromiumos/platform2/+/master/touch_keyboard/"
SRC_URI=""
LICENSE="BSD-Google"
SLOT="0/0"
KEYWORDS="*"
IUSE=""
pkg_preinst() {
# Set up the touch_keyboard user and group, which will be used to run
# touch_keyboard_handler instead of root.
enewuser touch_keyboard
enewgroup touch_keyboard
}
src_install() {
# Install the actual binary that handles the touch keyboard.
dobin "${OUT}/touch_keyboard_handler"
# Install a tool for testing the haptic feedback in the factory.
dobin "${OUT}/touchkb_haptic_test"
# Install an upstart script to start the handler at boot time.
insinto "/etc/init"
doins "touch_keyboard.conf"
# Install the correct seccomp policy for this architecture.
insinto "/opt/google/touch/policies"
doins seccomp/${ARCH}/*.policy
}
platform_pkg_test() {
platform_test "run" "${OUT}"/eventkey_test
platform_test "run" "${OUT}"/slot_test
platform_test "run" "${OUT}"/statemachine_test
platform_test "run" "${OUT}"/evdevsource_test
platform_test "run" "${OUT}"/uinputdevice_test
}