blob: 153df9e0fce7cd7a0168626fad0fcdbd709c1764 [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="37b2e13c99f1f2b9429569378c297aab852c8f53"
CROS_WORKON_TREE="479f684d89d4aec71d0670e12a6707161833f8f2"
CROS_WORKON_INCREMENTAL_BUILD=1
CROS_WORKON_LOCALNAME="platform2"
CROS_WORKON_PROJECT="chromiumos/platform2"
CROS_WORKON_OUTOFTREE_BUILD=1
PLATFORM_SUBDIR="privetd"
inherit cros-workon platform user
DESCRIPTION="Privet protocol handler for Chrome OS Core"
HOMEPAGE="http://www.chromium.org/"
LICENSE="BSD-Google"
SLOT=0
KEYWORDS="*"
COMMON_DEPEND="
chromeos-base/libchrome_crypto
chromeos-base/libchromeos
chromeos-base/libwebserv
"
RDEPEND="
${COMMON_DEPEND}
chromeos-base/apmanager
chromeos-base/peerd
net-firewall/iptables
"
DEPEND="
${COMMON_DEPEND}
test? (
dev-cpp/gmock
dev-cpp/gtest
)
"
pkg_preinst() {
# Create user and group for privetd.
enewuser "privetd"
enewgroup "privetd"
# Additional groups to put privetd into.
enewgroup "apmanager"
enewgroup "buffet"
enewgroup "peerd"
}
src_install() {
dobin "${OUT}/privetd"
# Install init scripts.
insinto /etc/init
doins init/privetd.conf
}
platform_pkg_test() {
local tests=(
privetd_testrunner
)
local test_bin
for test_bin in "${tests[@]}"; do
platform_test "run" "${OUT}/${test_bin}"
done
}