mirror of
https://github.com/gentoo-mirror/gentoo.git
synced 2026-01-06 02:17:34 -08:00
The arch and OS that matches it are obsolete. Signed-off-by: Fabian Groffen <grobian@gentoo.org>
43 lines
1.0 KiB
Bash
43 lines
1.0 KiB
Bash
# Copyright 1999-2025 Gentoo Authors
|
|
# Distributed under the terms of the GNU General Public License v2
|
|
|
|
EAPI=8
|
|
|
|
VERIFY_SIG_OPENPGP_KEY_PATH=/usr/share/openpgp-keys/gnupg.asc
|
|
inherit cmake verify-sig
|
|
|
|
DESCRIPTION="GnuPG Made Easy is a library for making GnuPG easier to use (Qt bindings)"
|
|
HOMEPAGE="https://www.gnupg.org/related_software/gpgme"
|
|
SRC_URI="
|
|
mirror://gnupg/${PN}/${P}.tar.xz
|
|
verify-sig? ( mirror://gnupg/${PN}/${P}.tar.xz.sig )
|
|
"
|
|
|
|
LICENSE="GPL-2+ test? ( GPL-2 )"
|
|
SLOT="0/7"
|
|
KEYWORDS="amd64 arm arm64 ~hppa ~loong ppc ppc64 ~riscv x86 ~amd64-linux ~x86-linux ~arm64-macos ~x64-macos ~x64-solaris"
|
|
IUSE="test"
|
|
RESTRICT="!test? ( test )"
|
|
|
|
DEPEND="
|
|
>=app-crypt/gpgme-${PV%.*}:=
|
|
>=dev-cpp/gpgmepp-${PV%.*}:=
|
|
>=dev-libs/libgpg-error-1.47:=
|
|
>=dev-qt/qtbase-6.5.0:6
|
|
"
|
|
RDEPEND="${DEPEND}
|
|
!<app-crypt/gpgme-2[qt6(-)]
|
|
!dev-libs/qgpgme:1
|
|
"
|
|
BDEPEND="verify-sig? ( sec-keys/openpgp-keys-gnupg )"
|
|
|
|
src_configure() {
|
|
local mycmakeargs=(
|
|
-DBUILD_WITH_QT5=OFF
|
|
-DBUILD_WITH_QT6=ON
|
|
-DBUILD_TESTING=$(usex test)
|
|
)
|
|
|
|
cmake_src_configure
|
|
}
|