blob: 051420a03a7e9dd69d44b20887e28038cab57138 (
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
|
# Copyright 2025 The Trinity Desktop Project
# Distributed under the terms of the GNU General Public License v2
EAPI="8"
TRINITY_MODULE_TYPE="dependencies"
TRINITY_MODULE_NAME="$PN"
inherit trinity-base-2 cmake
DESCRIPTION="The TQt Cryptographic Architecture library"
HOMEPAGE="https://trinitydesktop.org/"
LICENSE="LGPL-2"
SLOT="0"
if [[ ${PV} != *9999* ]] ; then
KEYWORDS="~amd64 ~arm64 ~x86"
fi
IUSE="+ssl"
DEPEND="
~dev-tqt/tqt-${PV}
ssl? ( dev-libs/openssl )
"
RDEPEND="${DEPEND}"
src_configure() {
local mycmakeargs=(
-DBUILD_TQCA=ON
-DBUILD_TQCA_TLS=$(usex ssl)
)
cmake_src_configure
}
|