mirror of
https://github.com/gentoo-mirror/gentoo.git
synced 2026-01-06 02:17:34 -08:00
Closes: https://bugs.gentoo.org/965857 Signed-off-by: Andreas Sturmlechner <asturm@gentoo.org>
59 lines
1.2 KiB
Bash
59 lines
1.2 KiB
Bash
# Copyright 1999-2025 Gentoo Authors
|
|
# Distributed under the terms of the GNU General Public License v2
|
|
|
|
EAPI=8
|
|
|
|
CMAKE_QA_COMPAT_SKIP=1
|
|
ECM_QTHELP="true"
|
|
ECM_TEST="true"
|
|
PVCUT=$(ver_cut 1-3)
|
|
KFMIN=6.16.0
|
|
QTMIN=6.9.1
|
|
PYTHON_COMPAT=( python3_{11..13} )
|
|
inherit ecm gear.kde.org python-single-r1
|
|
|
|
DESCRIPTION="Library for parsing and evaluating OSM opening hours expressions"
|
|
HOMEPAGE="https://api.kde.org/kopeninghours/html/index.html
|
|
https://invent.kde.org/libraries/kopeninghours"
|
|
|
|
LICENSE="LGPL-2+"
|
|
SLOT="6/$(ver_cut 1-2)"
|
|
KEYWORDS="~amd64 ~arm64"
|
|
IUSE="python"
|
|
|
|
REQUIRED_USE="python? ( ${PYTHON_REQUIRED_USE} )"
|
|
|
|
DEPEND="
|
|
>=dev-libs/kpublictransport-${PVCUT}:6=
|
|
>=dev-qt/qtdeclarative-${QTMIN}:6
|
|
>=kde-frameworks/kholidays-${KFMIN}:6
|
|
>=kde-frameworks/ki18n-${KFMIN}:6
|
|
virtual/zlib:=
|
|
python? (
|
|
$(python_gen_cond_dep '
|
|
>=dev-libs/boost-1.70:=[python,${PYTHON_USEDEP}]
|
|
')
|
|
)
|
|
"
|
|
RDEPEND="${DEPEND}
|
|
${PYTHON_DEPS}
|
|
"
|
|
BDEPEND="
|
|
app-alternatives/lex
|
|
app-alternatives/yacc
|
|
"
|
|
|
|
src_configure() {
|
|
local mycmakeargs=(
|
|
-DPython_LIBRARY=$(python_get_library_path)
|
|
-DPython_INCLUDE_DIR=$(python_get_includedir)
|
|
$(cmake_use_find_package python Boost)
|
|
)
|
|
ecm_src_configure
|
|
}
|
|
|
|
src_install() {
|
|
ecm_src_install
|
|
use python && python_optimize
|
|
}
|