dev-libs/olm: make -fPIE optional, reduce installed docs
This commit is contained in:
parent
5ea18c24e8
commit
9b88eceb38
@ -1,35 +0,0 @@
|
|||||||
# Copyright 2020-2022 Gentoo Authors
|
|
||||||
# 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"
|
|
||||||
|
|
||||||
IUSE="doc test"
|
|
||||||
RESTRICT="!test? ( test )"
|
|
||||||
|
|
||||||
src_configure() {
|
|
||||||
local -a mycmakeargs=(
|
|
||||||
-DOLM_TESTS="$(usex test)"
|
|
||||||
)
|
|
||||||
|
|
||||||
cmake_src_configure
|
|
||||||
}
|
|
||||||
|
|
||||||
src_test() {
|
|
||||||
BUILD_DIR="${BUILD_DIR}/tests" cmake_src_test
|
|
||||||
}
|
|
||||||
|
|
||||||
src_install() {
|
|
||||||
use doc && DOCS=( README.md docs/{{,meg}olm,signing}.md )
|
|
||||||
|
|
||||||
cmake_src_install
|
|
||||||
}
|
|
20
dev-libs/olm/olm-3.2.13.ebuild → dev-libs/olm/olm-3.2.14-r2.ebuild
Executable file → Normal file
20
dev-libs/olm/olm-3.2.13.ebuild → dev-libs/olm/olm-3.2.14-r2.ebuild
Executable file → Normal file
@ -1,4 +1,4 @@
|
|||||||
# Copyright 2020-2022 Gentoo Authors
|
# Copyright 2020-2023 Gentoo Authors
|
||||||
# Distributed under the terms of the GNU General Public License v2
|
# Distributed under the terms of the GNU General Public License v2
|
||||||
|
|
||||||
EAPI=8
|
EAPI=8
|
||||||
@ -13,23 +13,21 @@ LICENSE="Apache-2.0"
|
|||||||
SLOT="0"
|
SLOT="0"
|
||||||
KEYWORDS="~amd64 ~arm64"
|
KEYWORDS="~amd64 ~arm64"
|
||||||
|
|
||||||
IUSE="doc test"
|
IUSE="+pie test"
|
||||||
RESTRICT="!test? ( test )"
|
RESTRICT="!test? ( test )"
|
||||||
|
|
||||||
|
DOCS=( README.md docs/{{,meg}olm,signing}.md docs/{"DH ",double_}ratchet.svg )
|
||||||
|
|
||||||
src_configure() {
|
src_configure() {
|
||||||
local -a mycmakeargs=(
|
local mycmakeargs=(
|
||||||
-DOLM_TESTS="$(usex test)"
|
-DCMAKE_POSITION_INDEPENDENT_CODE=$(usex pie)
|
||||||
|
-DOLM_TESTS=$(usex test)
|
||||||
)
|
)
|
||||||
|
|
||||||
cmake_src_configure
|
cmake_src_configure
|
||||||
}
|
}
|
||||||
|
|
||||||
src_test() {
|
src_test() {
|
||||||
BUILD_DIR="${BUILD_DIR}/tests" cmake_src_test
|
local -x BUILD_DIR="${BUILD_DIR}/tests"
|
||||||
}
|
cmake_src_test
|
||||||
|
|
||||||
src_install() {
|
|
||||||
use doc && DOCS=( README.md docs/{{,meg}olm,signing}.md )
|
|
||||||
|
|
||||||
cmake_src_install
|
|
||||||
}
|
}
|
Loading…
Reference in New Issue
Block a user