mirror of
https://github.com/gentoo-mirror/gentoo.git
synced 2026-01-05 14:07:27 -08:00
34 lines
684 B
Bash
34 lines
684 B
Bash
# Copyright 1999-2025 Gentoo Authors
|
|
# Distributed under the terms of the GNU General Public License v2
|
|
|
|
EAPI=8
|
|
|
|
ECM_PYTHON_BINDINGS="off"
|
|
QTMIN=6.8.1
|
|
inherit ecm frameworks.kde.org
|
|
|
|
DESCRIPTION="Framework for converting units"
|
|
|
|
LICENSE="LGPL-2+"
|
|
KEYWORDS="amd64 arm64 ~loong ~ppc64 ~riscv ~x86"
|
|
IUSE=""
|
|
|
|
DEPEND="
|
|
>=dev-qt/qtbase-${QTMIN}:6[network]
|
|
=kde-frameworks/ki18n-${KDE_CATV}*:6
|
|
"
|
|
RDEPEND="${DEPEND}"
|
|
|
|
src_test() {
|
|
local CMAKE_SKIP_TESTS=(
|
|
# bug 623938 - needs internet connection
|
|
convertertest
|
|
# bug 808216 - needs internet connection
|
|
categorytest
|
|
# bug 808216 - unknown, reported upstream
|
|
currencytableinittest
|
|
)
|
|
|
|
LC_NUMERIC="C" ecm_src_test # bug 694804
|
|
}
|