blob: b1f7cc0df2355faf83863453d8ae292a519868f9 [file] [log] [blame]
# Copyright 2014 The Chromium OS Authors. All rights reserved.
# Distributed under the terms of the GNU General Public License v2
EAPI=4
CROS_WORKON_COMMIT="164cb6141ad0a738c9d33c71e362814067968ceb"
CROS_WORKON_TREE="fe30118d9b43d945e1f8b27658348b7c50cb8a0b"
CROS_WORKON_INCREMENTAL_BUILD=1
CROS_WORKON_LOCALNAME="platform2"
CROS_WORKON_PROJECT="chromiumos/platform2"
CROS_WORKON_DESTDIR="${S}/platform2"
PLATFORM_SUBDIR="peerd"
inherit cros-workon platform
DESCRIPTION="Local peer discovery services for Chromium OS"
HOMEPAGE="http://www.chromium.org/"
LICENSE="BSD-Google"
SLOT=0
KEYWORDS="*"
RDEPEND="
chromeos-base/libchromeos
net-dns/avahi-daemon
"
DEPEND="
${RDEPEND}
test? ( dev-cpp/gmock )
dev-cpp/gtest
"
src_install() {
dobin "${OUT}/peerd"
# Install init scripts.
insinto /etc/init
doins init/peerd.conf
# Install DBus configuration files.
insinto /etc/dbus-1/system.d
doins dbus/org.chromium.peerd.conf
}
platform_pkg_test() {
local tests=(
peerd_testrunner
)
local test_bin
for test_bin in "${tests[@]}"; do
platform_test "run" "${OUT}/${test_bin}"
done
}