blob: 1099d3da90002920946911631141253b2004395b [file] [log] [blame]
# Copyright 2018 The Chromium OS Authors. All rights reserved.
# Distributed under the terms of the GNU General Public License v2
EAPI=6
CROS_WORKON_COMMIT="fc33550242495250878c540ce7efc4df287caf6f"
CROS_WORKON_TREE=("a9c9dfedee8947f546a02e996ac05ea263acfaa1" "51a258a64c91f7d9302cb4ad0f658627caa0d662" "fe7fcadbc951078b877f156adf4f155237b915da" "dc1506ef7c8cfd2c5ffd1809dac05596ec18773c")
CROS_WORKON_INCREMENTAL_BUILD=1
CROS_WORKON_LOCALNAME="platform2"
CROS_WORKON_PROJECT="chromiumos/platform2"
CROS_WORKON_OUTOFTREE_BUILD=1
# TODO(crbug.com/809389): Avoid directly including headers from other packages.
CROS_WORKON_SUBTREE="common-mk libtpmcrypto trunks .gn"
PLATFORM_SUBDIR="libtpmcrypto"
inherit cros-workon platform
DESCRIPTION="Encrypts/Decrypts data to a serialized proto with TPM sealed key."
HOMEPAGE="https://chromium.googlesource.com/chromiumos/platform2/+/master/libtpmcrypto/"
LICENSE="BSD-Google"
SLOT="0"
KEYWORDS="*"
IUSE="tpm tpm2"
REQUIRED_USE="tpm2? ( !tpm )"
# This depends on protobuf because it uses protoc and needs to be rebuilt
# whenever the protobuf library is updated since generated source files may be
# incompatible across different versions of the protobuf library.
RDEPEND="
tpm2? (
chromeos-base/trunks
)
!tpm2? (
app-crypt/trousers
)
chromeos-base/libbrillo:=
dev-libs/protobuf:=
"
DEPEND="
${RDEPEND}
"
src_install() {
dolib.so "${OUT}/lib/libtpmcrypto.so"
"${S}"/platform2_preinstall.sh "${PV}" "/usr/include/chromeos" "${OUT}"
insinto "/usr/$(get_libdir)/pkgconfig"
doins "${OUT}/libtpmcrypto.pc"
insinto "/usr/include/libtpmcrypto"
doins *.h
}
platform_pkg_test() {
local tests=(
tpmcrypto_test
)
local test_bin
for test_bin in "${tests[@]}"; do
platform_test "run" "${OUT}/${test_bin}"
done
}