summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorAndreas Sturmlechner <asturm@gentoo.org>2025-12-05 13:21:13 +0100
committerAndreas Sturmlechner <asturm@gentoo.org>2025-12-05 13:59:48 +0100
commitd3b273aadca92058249bdb4d9b5f71e413ce4c9f (patch)
treee074cd85b39378c6f53c4e1675f0262937f5e9d3
parentf4e9db33da2fdfea5bd07119ac6aa452f63dfd48 (diff)
downloadkde-d3b273aadca92058249bdb4d9b5f71e413ce4c9f.tar.gz
kde-d3b273aadca92058249bdb4d9b5f71e413ce4c9f.tar.bz2
kde-d3b273aadca92058249bdb4d9b5f71e413ce4c9f.zip
dev-libs/kosmindoormap: 25.12.0 version bump
Signed-off-by: Andreas Sturmlechner <asturm@gentoo.org>
-rw-r--r--dev-libs/kosmindoormap/Manifest1
-rw-r--r--dev-libs/kosmindoormap/kosmindoormap-25.12.0.ebuild49
2 files changed, 50 insertions, 0 deletions
diff --git a/dev-libs/kosmindoormap/Manifest b/dev-libs/kosmindoormap/Manifest
new file mode 100644
index 00000000000..7d4026d168e
--- /dev/null
+++ b/dev-libs/kosmindoormap/Manifest
@@ -0,0 +1 @@
+DIST kosmindoormap-25.12.0.tar.xz 777448 BLAKE2B 10205405748bc30d51709260716ef3e3bc2413836f283df6d375aea0125b3cfd7829d6f71793d8c8efc4db9f748b433ab5f693e88c99cc5cd23ffb165539c7ed SHA512 fdeae51c0a1726316595ecd6b7b43e01e1244e1072a567d497383d4b4734825f68069d561b4194e2107ce0785353f34d79251e9d2b99e0194d7d33f658f8dd9e
diff --git a/dev-libs/kosmindoormap/kosmindoormap-25.12.0.ebuild b/dev-libs/kosmindoormap/kosmindoormap-25.12.0.ebuild
new file mode 100644
index 00000000000..6fd7d9df9a0
--- /dev/null
+++ b/dev-libs/kosmindoormap/kosmindoormap-25.12.0.ebuild
@@ -0,0 +1,49 @@
+# Copyright 1999-2025 Gentoo Authors
+# Distributed under the terms of the GNU General Public License v2
+
+EAPI=8
+
+ECM_TEST="true"
+PVCUT=$(ver_cut 1-3)
+KFMIN=6.19.0
+QTMIN=6.9.1
+inherit ecm gear.kde.org
+
+DESCRIPTION="Data Model and Extraction System for Travel Reservation information"
+HOMEPAGE="https://invent.kde.org/libraries/kosmindoormap"
+
+LICENSE="LGPL-2+"
+SLOT="6/$(ver_cut 1-2)"
+KEYWORDS="~amd64 ~arm64"
+IUSE="+gui"
+
+# kservice is optional and only used to find and open josm
+RDEPEND="
+ >=dev-libs/kirigami-addons-1.6.0:6
+ dev-libs/protobuf:=
+ >=dev-qt/qtbase-${QTMIN}:6[gui?,network]
+ virtual/zlib:=
+ gui? (
+ >=dev-libs/kopeninghours-${PVCUT}:6=
+ >=dev-libs/kpublictransport-${PVCUT}:6=
+ >=dev-qt/qtdeclarative-${QTMIN}:6
+ >=kde-frameworks/kcoreaddons-${KFMIN}:6
+ >=kde-frameworks/ki18n-${KFMIN}:6
+ >=kde-frameworks/kservice-${KFMIN}:6
+ )
+"
+DEPEND="${RDEPEND}
+ test? ( >=dev-qt/qtbase-${QTMIN}:6[widgets] )
+"
+BDEPEND="
+ app-alternatives/lex
+ app-alternatives/yacc
+"
+
+src_configure() {
+ local mycmakeargs=(
+ -DBUILD_TOOLS_ONLY=$(usex !gui)
+ -DCMAKE_DISABLE_FIND_PACKAGE_OsmTools=ON # we have no use for it
+ )
+ ecm_src_configure
+}