blob: b04311dc03796387e6338c940d30c81e3f6e011b (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
|
# Copyright 2022-2023 Gentoo Authors
# Distributed under the terms of the GNU General Public License v2
EAPI=8
inherit cmake
DESCRIPTION="High performance C++ OpenPGP library"
HOMEPAGE="https://www.rnpgp.org/ https://github.com/rnpgp/rnp"
SRC_URI="https://github.com/rnpgp/rnp/archive/refs/tags/v${PV}.tar.gz -> ${P}.tar.gz"
LICENSE="Apache-2.0 BSD BSD-2"
SLOT="0/0.16.1"
KEYWORDS="amd64 ~arm64 ~loong ~ppc64 x86"
IUSE="+botan man test"
RDEPEND="app-arch/bzip2
dev-libs/json-c:=
>=dev-libs/sexpp-0.8.5[-static-libs(-)]
sys-libs/zlib
botan? ( dev-libs/botan:2= )
!botan? ( >=dev-libs/openssl-1.1.1:= )"
DEPEND="${RDEPEND}
test? ( dev-cpp/gtest )"
BDEPEND="man? ( dev-ruby/asciidoctor )"
RESTRICT="!test? ( test )"
S="${WORKDIR}/${P/*lib/}"
PATCHES=( "${FILESDIR}"/librnp-0.17.0-dont-bundle-sexp.patch )
src_configure() {
local mycmakeargs=(
-DBUILD_TESTING=$(usex test on off)
-DCRYPTO_BACKEND=$(usex botan botan openssl)
-DDOWNLOAD_GTEST=off
-DENABLE_COVERAGE=off
-DENABLE_DOC=$(usex man on off)
-DENABLE_FUZZERS=off
-DENABLE_SANITIZERS=off
)
if use botan; then
local mycmakeargs+=(
-DENABLE_AEAD=on
-DENABLE_BLOWFISH=on
-DENABLE_BRAINPOOL=on
-DENABLE_CAST5=on
-DENABLE_IDEA=on
-DENABLE_RIPEMD160=on
-DENABLE_SM2=on
-DENABLE_TWOFISH=on
)
# OpenSSL support is still not as complete as botan.
# https://github.com/rnpgp/rnp/issues/1877 SM2,
# https://github.com/openssl/openssl/issues/2046 TWOFISH (won't be implemented).
else
local mycmakeargs+=(
-DENABLE_AEAD=on
-DENABLE_BLOWFISH=on
-DENABLE_BRAINPOOL=on
-DENABLE_CAST5=on
-DENABLE_IDEA=on
-DENABLE_RIPEMD160=on
-DENABLE_SM2=off
-DENABLE_TWOFISH=off
)
fi
cmake_src_configure
}
src_test() {
cd "${BUILD_DIR}"/src/tests || die
ctest -j"${MAKEOPTS}" -R .* --output-on-failure || die
}
src_install() {
cmake_src_install
find "${D}" -name '*.a' -delete || die
}
|