commit:     9bbe6101cecbb98b30966bebf6730a04ce1fe273
Author:     orbea <orbea <AT> riseup <DOT> net>
AuthorDate: Wed May 10 18:58:08 2023 +0000
Commit:     orbea <orbea <AT> riseup <DOT> net>
CommitDate: Wed May 10 18:58:08 2023 +0000
URL:        https://gitweb.gentoo.org/repo/proj/libressl.git/commit/?id=9bbe6101

app-crypt/qca: add 2.3.6-r1

Signed-off-by: orbea <orbea <AT> riseup.net>

 app-crypt/qca/Manifest            |  1 +
 app-crypt/qca/qca-2.3.6-r1.ebuild | 90 +++++++++++++++++++++++++++++++++++++++
 2 files changed, 91 insertions(+)

diff --git a/app-crypt/qca/Manifest b/app-crypt/qca/Manifest
index 64a596a..4581cb6 100644
--- a/app-crypt/qca/Manifest
+++ b/app-crypt/qca/Manifest
@@ -1 +1,2 @@
 DIST qca-2.3.5.tar.xz 741036 BLAKE2B 
3948dc9b58a8ef03eec246cc14c7582d30e2513ea4b8f457a44d4a0c8f91fdb10af041f7cc342a0c8d9540a43cb47b4ca5b35641dfc3716c065fc3a1d6ff227a
 SHA512 
656e44d4f30c3c0e1a8c04f2703484e3cff2d962b12c6ff9891b9f28127cd61ed30dcd248c059bf9066ac645bf53a9b7c14bdb413a7766c8b3f3d37426478d96
+DIST qca-2.3.6.tar.xz 745864 BLAKE2B 
a3a5955215504b5703db304f241ae9c0c9b243c280cacb6180f631b3259b5f9a8af1c08b233f70e8e4130ac2e957dc3d8a99817b4dec2df0fab41b39bc54f8c8
 SHA512 
018bde919df28cfc9e5d6c5ad30724199a1a17437022751fb92bfc1ce691d8a56c62b661526e346f5a0c5ff7ffd556499f2ee25efe9f8b1698b3f8eee480811c

diff --git a/app-crypt/qca/qca-2.3.6-r1.ebuild 
b/app-crypt/qca/qca-2.3.6-r1.ebuild
new file mode 100644
index 0000000..99b6f59
--- /dev/null
+++ b/app-crypt/qca/qca-2.3.6-r1.ebuild
@@ -0,0 +1,90 @@
+# Copyright 1999-2023 Gentoo Authors
+# Distributed under the terms of the GNU General Public License v2
+
+EAPI=8
+
+inherit cmake kde.org qmake-utils
+
+DESCRIPTION="Qt Cryptographic Architecture (QCA)"
+HOMEPAGE="https://userbase.kde.org/QCA";
+SRC_URI="mirror://kde/stable/${PN}/${PV}/${P}.tar.xz"
+
+LICENSE="LGPL-2.1"
+SLOT="2"
+KEYWORDS="~amd64 ~arm ~arm64 ~hppa ~loong ~ppc ~ppc64 ~riscv ~sparc ~x86 
~amd64-linux ~x86-linux ~ppc-macos ~sparc-solaris"
+IUSE="botan debug doc examples gcrypt gpg logger nss pkcs11 sasl softstore 
+ssl test"
+
+RESTRICT="!test? ( test )"
+
+RDEPEND="
+       >=dev-qt/qtcore-5.14:5
+       botan? ( dev-libs/botan:3= )
+       gcrypt? ( dev-libs/libgcrypt:= )
+       gpg? ( app-crypt/gnupg )
+       nss? ( dev-libs/nss )
+       pkcs11? (
+               >=dev-libs/openssl-1.1
+               dev-libs/pkcs11-helper
+       )
+       sasl? ( dev-libs/cyrus-sasl:2 )
+       ssl? ( >=dev-libs/openssl-1.1:= )
+"
+DEPEND="${RDEPEND}
+       test? (
+               dev-qt/qtnetwork:5
+               dev-qt/qttest:5
+       )
+"
+BDEPEND="
+       doc? (
+               app-doc/doxygen[dot]
+               virtual/latex-base
+       )
+"
+
+PATCHES=(
+       "${FILESDIR}/${PN}-disable-pgp-test.patch"
+       "${FILESDIR}/${PN}-2.3.4-libressl.patch"
+)
+
+qca_plugin_use() {
+       echo -DWITH_${2:-$1}_PLUGIN=$(usex "$1")
+}
+
+src_configure() {
+       local mycmakeargs=(
+               
-DQCA_FEATURE_INSTALL_DIR="${EPREFIX}$(qt5_get_mkspecsdir)/features"
+               -DQCA_PLUGINS_INSTALL_DIR="${EPREFIX}$(qt5_get_plugindir)"
+               $(qca_plugin_use botan)
+               $(qca_plugin_use gcrypt)
+               $(qca_plugin_use gpg gnupg)
+               $(qca_plugin_use logger)
+               $(qca_plugin_use nss)
+               $(qca_plugin_use pkcs11)
+               $(qca_plugin_use sasl cyrus-sasl)
+               $(qca_plugin_use softstore)
+               $(qca_plugin_use ssl ossl)
+               -DBUILD_TESTS=$(usex test)
+       )
+       cmake_src_configure
+}
+
+src_test() {
+       local -x QCA_PLUGIN_PATH="${BUILD_DIR}/lib/qca"
+       cmake_src_test
+}
+
+src_install() {
+       cmake_src_install
+
+       if use doc; then
+               pushd "${BUILD_DIR}" >/dev/null || die
+               doxygen Doxyfile || die
+               dodoc -r apidocs/html
+               popd >/dev/null || die
+       fi
+
+       if use examples; then
+               dodoc -r "${S}"/examples
+       fi
+}

Reply via email to