summaryrefslogtreecommitdiff
path: root/dev-libs
diff options
context:
space:
mode:
authorAndreas Sturmlechner <asturm@gentoo.org>2024-11-15 15:17:14 +0100
committerAndreas Sturmlechner <asturm@gentoo.org>2024-11-15 18:30:34 +0100
commit134fb5d69846ffd99737854168b5424e2d3aaf1e (patch)
treeb75c71a793e8b3826d9b7efc6e344973ec23edf6 /dev-libs
parent7eefb7b0cdeb9c2a0068731f9f0cb9d9f8100da5 (diff)
downloadkde-134fb5d69846ffd99737854168b5424e2d3aaf1e.tar.gz
kde-134fb5d69846ffd99737854168b5424e2d3aaf1e.tar.bz2
kde-134fb5d69846ffd99737854168b5424e2d3aaf1e.zip
dev-libs/kosmindoormap: 24.11.80 version bump
Signed-off-by: Andreas Sturmlechner <asturm@gentoo.org>
Diffstat (limited to 'dev-libs')
-rw-r--r--dev-libs/kosmindoormap/Manifest1
-rw-r--r--dev-libs/kosmindoormap/kosmindoormap-24.11.80.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..18c24d98a89
--- /dev/null
+++ b/dev-libs/kosmindoormap/Manifest
@@ -0,0 +1 @@
+DIST kosmindoormap-24.11.80.tar.xz 693016 BLAKE2B 180fa552bbcbef7c0f023883ebda52a0e244f184f85dd8e561397accc25c61f4a3e4ad7a8254030a9aefc886f76f1c8c8bb53e9bdaa156312c1f902a7b43eb7c SHA512 1ee8201d6c7bb9d8f106c88334976751678d47dc026a8c0c818ba7a8a1af8d8bda17b48e3c2b83107c9bd554173a28bcabb2d7e410002e2096691d0da3bf956f
diff --git a/dev-libs/kosmindoormap/kosmindoormap-24.11.80.ebuild b/dev-libs/kosmindoormap/kosmindoormap-24.11.80.ebuild
new file mode 100644
index 00000000000..917524a82c3
--- /dev/null
+++ b/dev-libs/kosmindoormap/kosmindoormap-24.11.80.ebuild
@@ -0,0 +1,48 @@
+# Copyright 1999-2024 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.5.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
+}