2023-05-06 19:57:55 +02:00
|
|
|
# Copyright 2020-2023 Gentoo Authors
|
2021-12-10 21:09:33 +01:00
|
|
|
# Distributed under the terms of the GNU General Public License v2
|
|
|
|
|
|
|
|
EAPI=8
|
|
|
|
|
|
|
|
inherit cmake
|
|
|
|
|
|
|
|
DESCRIPTION="Implementation of the olm and megolm cryptographic ratchets"
|
|
|
|
HOMEPAGE="https://gitlab.matrix.org/matrix-org/olm"
|
|
|
|
SRC_URI="https://gitlab.matrix.org/matrix-org/${PN}/-/archive/${PV}/${P}.tar.bz2"
|
|
|
|
|
|
|
|
LICENSE="Apache-2.0"
|
|
|
|
SLOT="0"
|
|
|
|
KEYWORDS="~amd64 ~arm64"
|
|
|
|
|
2023-05-06 19:57:55 +02:00
|
|
|
IUSE="+pie test"
|
2021-12-10 21:09:33 +01:00
|
|
|
RESTRICT="!test? ( test )"
|
|
|
|
|
2023-05-06 19:57:55 +02:00
|
|
|
DOCS=( README.md docs/{{,meg}olm,signing}.md docs/{"DH ",double_}ratchet.svg )
|
|
|
|
|
2021-12-10 21:09:33 +01:00
|
|
|
src_configure() {
|
2023-05-06 19:57:55 +02:00
|
|
|
local mycmakeargs=(
|
|
|
|
-DCMAKE_POSITION_INDEPENDENT_CODE=$(usex pie)
|
|
|
|
-DOLM_TESTS=$(usex test)
|
2021-12-10 21:09:33 +01:00
|
|
|
)
|
|
|
|
|
|
|
|
cmake_src_configure
|
|
|
|
}
|
|
|
|
|
|
|
|
src_test() {
|
2023-05-06 19:57:55 +02:00
|
|
|
local -x BUILD_DIR="${BUILD_DIR}/tests"
|
|
|
|
cmake_src_test
|
2021-12-10 21:09:33 +01:00
|
|
|
}
|