summaryrefslogtreecommitdiff
path: root/dev-libs/kosmindoormap
diff options
context:
space:
mode:
authorAndreas Sturmlechner <asturm@gentoo.org>2025-06-03 18:21:54 +0200
committerAndreas Sturmlechner <asturm@gentoo.org>2025-06-03 18:21:54 +0200
commite3deadcc187aa8f7895724ba4cfbfd6bc022bdb1 (patch)
tree05145031ce66bbc86720fba3aa0e0426d1230574 /dev-libs/kosmindoormap
parent4cc453a9a78e390ebf208949a0b055e0cda66ca5 (diff)
downloadkde-e3deadcc187aa8f7895724ba4cfbfd6bc022bdb1.tar.gz
kde-e3deadcc187aa8f7895724ba4cfbfd6bc022bdb1.tar.bz2
kde-e3deadcc187aa8f7895724ba4cfbfd6bc022bdb1.zip
dev-libs/kosmindoormap: 25.04.2 version bump
Signed-off-by: Andreas Sturmlechner <asturm@gentoo.org>
Diffstat (limited to 'dev-libs/kosmindoormap')
-rw-r--r--dev-libs/kosmindoormap/Manifest1
-rw-r--r--dev-libs/kosmindoormap/kosmindoormap-25.04.2.ebuild48
2 files changed, 49 insertions, 0 deletions
diff --git a/dev-libs/kosmindoormap/Manifest b/dev-libs/kosmindoormap/Manifest
new file mode 100644
index 00000000000..51d7ee1d051
--- /dev/null
+++ b/dev-libs/kosmindoormap/Manifest
@@ -0,0 +1 @@
+DIST kosmindoormap-25.04.2.tar.xz 736444 BLAKE2B da4f34c98e5f39dea6f1da8304e9be847537703c27b045063e46728a6a4a1102b2bc8105c97055c8dc4cdef2c41fc3b81c95f5cb60f0bc579d289a64e5c2338f SHA512 e07e4026c7deb14acfa0ef00b26e9506877b1688000f866e324daf89c1c9bab50b03accd86a8081c7b6e6c4018020dbef2702bd5dd7966838589ccedcef64516
diff --git a/dev-libs/kosmindoormap/kosmindoormap-25.04.2.ebuild b/dev-libs/kosmindoormap/kosmindoormap-25.04.2.ebuild
new file mode 100644
index 00000000000..d430712a813
--- /dev/null
+++ b/dev-libs/kosmindoormap/kosmindoormap-25.04.2.ebuild
@@ -0,0 +1,48 @@
+# 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.13.0
+QTMIN=6.7.2
+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"
+KEYWORDS="~amd64 ~arm64"
+IUSE="+gui"
+
+# kservice is optional and only used to find and open josm
+RDEPEND="
+ dev-libs/protobuf:=
+ >=dev-qt/qtbase-${QTMIN}:6[gui?,network]
+ sys-libs/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
+}