dev-libs/qtkeychain: add 0.14.0

Bug: https://bugs.gentoo.org/829730
Signed-off-by: Andreas Sturmlechner <asturm@gentoo.org>
This commit is contained in:
Andreas Sturmlechner
2023-05-14 13:08:05 +02:00
parent 95811d5b5d
commit 5c3ae0f33b
2 changed files with 46 additions and 0 deletions

View File

@@ -1 +1,2 @@
DIST qtkeychain-0.13.2.tar.gz 43494 BLAKE2B d90799df83e8bed7f4ee9cdf6c7f56c86b1aee7123735963c4e2f858a69bbf28bcd062c6a302f8687626b1884acde61d7f7882b985517b24a1358b57ea13cdcc SHA512 10f8b1c959a126ba14614b797ea5640404a0b95c71e452225c74856eae90e966aac581ca393508a2106033c3d5ad70427ea6f7ef3f2997eddf6d09a7b4fa26eb
DIST qtkeychain-0.14.0.tar.gz 50655 BLAKE2B e79370b6bf2a6e880d281cd4b12106a88a5297e74e56b09a5d2a0cbef17166798a467d045b50beddb61de2a6ffeb75f1bc3f895236bebb01fc1f425ea3dbe309 SHA512 65118198d82f284c1bb914964657e62fccb81050359071b44530574c73c673913d22b5de17cc30e9099feca06ece556bb9329350f017ce331e845ba074d1f078

View File

@@ -0,0 +1,45 @@
# Copyright 1999-2023 Gentoo Authors
# Distributed under the terms of the GNU General Public License v2
EAPI=8
inherit cmake
HOMEPAGE="https://github.com/frankosterfeld/qtkeychain"
DESCRIPTION="Qt API for storing passwords securely"
if [[ ${PV} != *9999* ]]; then
SRC_URI="https://github.com/frankosterfeld/qtkeychain/archive/v${PV}.tar.gz -> ${P}.tar.gz"
KEYWORDS="~amd64 ~arm64 ~ppc64 ~riscv ~x86"
else
inherit git-r3
EGIT_REPO_URI="${HOMEPAGE}.git"
fi
LICENSE="BSD-2"
SLOT="0/1"
IUSE="keyring"
DEPEND="
dev-qt/qtcore:5
dev-qt/qtdbus:5
keyring? (
app-crypt/libsecret
dev-libs/glib:2
)
"
RDEPEND="${DEPEND}"
BDEPEND="dev-qt/linguist-tools:5"
DOCS=( ChangeLog ReadMe.md )
src_configure() {
local mycmakeargs=(
-DBUILD_WITH_QT6=OFF
-DBUILD_TEST_APPLICATION=OFF
-DBUILD_TRANSLATIONS=ON
-DLIBSECRET_SUPPORT=$(usex keyring)
)
cmake_src_configure
}