You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
34 lines
719 B
34 lines
719 B
# Copyright 1999-2022 Gentoo Authors
|
|
# Distributed under the terms of the GNU General Public License v2
|
|
|
|
EAPI=8
|
|
|
|
KFMIN=5.92.0
|
|
QTMIN=5.15.3
|
|
inherit ecm kde.org
|
|
|
|
DESCRIPTION="SANE Library interface based on KDE Frameworks"
|
|
|
|
LICENSE="|| ( LGPL-2.1 LGPL-3 )"
|
|
SLOT="5"
|
|
KEYWORDS="~amd64 ~arm64 ~ppc64 ~riscv ~x86"
|
|
IUSE="kwallet"
|
|
|
|
DEPEND="
|
|
>=dev-qt/qtgui-${QTMIN}:5
|
|
>=dev-qt/qtwidgets-${QTMIN}:5
|
|
>=kde-frameworks/ki18n-${KFMIN}:5
|
|
>=kde-frameworks/ktextwidgets-${KFMIN}:5
|
|
>=kde-frameworks/kwidgetsaddons-${KFMIN}:5
|
|
media-gfx/sane-backends
|
|
kwallet? ( >=kde-frameworks/kwallet-${KFMIN}:5 )
|
|
"
|
|
RDEPEND="${DEPEND}"
|
|
|
|
src_configure() {
|
|
local mycmakeargs=(
|
|
$(cmake_use_find_package kwallet KF5Wallet)
|
|
)
|
|
ecm_src_configure
|
|
}
|