mirror of
https://github.com/gentoo-mirror/gentoo.git
synced 2025-12-09 00:07:57 +03:00
36 lines
727 B
Bash
36 lines
727 B
Bash
# Copyright 1999-2025 Gentoo Authors
|
|
# Distributed under the terms of the GNU General Public License v2
|
|
|
|
EAPI=8
|
|
|
|
QTMIN=6.7.2
|
|
inherit ecm frameworks.kde.org
|
|
|
|
DESCRIPTION="QRCode and data matrix barcode library"
|
|
HOMEPAGE="https://invent.kde.org/frameworks/prison"
|
|
|
|
LICENSE="GPL-2"
|
|
KEYWORDS="amd64 arm64 ~loong ~ppc64 ~riscv ~x86"
|
|
IUSE="qml"
|
|
|
|
RDEPEND="
|
|
>=dev-qt/qtbase-${QTMIN}:6[gui]
|
|
>=dev-qt/qtmultimedia-${QTMIN}:6
|
|
media-gfx/qrencode:=
|
|
media-libs/libdmtx
|
|
media-libs/zxing-cpp:=
|
|
qml? ( >=dev-qt/qtdeclarative-${QTMIN}:6 )
|
|
"
|
|
DEPEND="${RDEPEND}
|
|
test? ( >=dev-qt/qtbase-${QTMIN}:6[concurrent,widgets] )
|
|
"
|
|
|
|
src_configure() {
|
|
local mycmakeargs=(
|
|
# TODO: WITH_MULTIMEDIA?
|
|
-DWITH_QUICK=$(usex qml)
|
|
)
|
|
|
|
ecm_src_configure
|
|
}
|