summaryrefslogtreecommitdiff
path: root/dev-libs/kosmindoormap
diff options
context:
space:
mode:
authorAndreas Sturmlechner <asturm@gentoo.org>2024-11-29 15:29:39 +0100
committerAndreas Sturmlechner <asturm@gentoo.org>2024-11-29 16:08:53 +0100
commit08a11c141bddab9663d2b5ebc311238c485830f5 (patch)
treeb054d71abc602bcaeb885bce710f47a3b4a96b61 /dev-libs/kosmindoormap
parent4e785db053affd874fa40a520f055672ca682354 (diff)
downloadkde-08a11c141bddab9663d2b5ebc311238c485830f5.tar.gz
kde-08a11c141bddab9663d2b5ebc311238c485830f5.tar.bz2
kde-08a11c141bddab9663d2b5ebc311238c485830f5.zip
dev-libs/kosmindoormap: 24.11.90 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-24.11.90.ebuild48
2 files changed, 49 insertions, 0 deletions
diff --git a/dev-libs/kosmindoormap/Manifest b/dev-libs/kosmindoormap/Manifest
index 18c24d98a89..05ca1584a50 100644
--- a/dev-libs/kosmindoormap/Manifest
+++ b/dev-libs/kosmindoormap/Manifest
@@ -1 +1,2 @@
DIST kosmindoormap-24.11.80.tar.xz 693016 BLAKE2B 180fa552bbcbef7c0f023883ebda52a0e244f184f85dd8e561397accc25c61f4a3e4ad7a8254030a9aefc886f76f1c8c8bb53e9bdaa156312c1f902a7b43eb7c SHA512 1ee8201d6c7bb9d8f106c88334976751678d47dc026a8c0c818ba7a8a1af8d8bda17b48e3c2b83107c9bd554173a28bcabb2d7e410002e2096691d0da3bf956f
+DIST kosmindoormap-24.11.90.tar.xz 693040 BLAKE2B e2c4ebb3065d3e1d7148388b9e4daad301c7b27e5eba1576445e88b4634b16da578aeae596fd6f906a5ba8476d95fc61ff5470401c74d447f3722131e7eeb525 SHA512 508b6b76ec04b046580219810fedfa4f6d97bdce02975440eee6c7ae6a51680c1dbabd163c8c07810f5d365f821147066c412941f1690472d48322ae181c840f
diff --git a/dev-libs/kosmindoormap/kosmindoormap-24.11.90.ebuild b/dev-libs/kosmindoormap/kosmindoormap-24.11.90.ebuild
new file mode 100644
index 00000000000..917524a82c3
--- /dev/null
+++ b/dev-libs/kosmindoormap/kosmindoormap-24.11.90.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
+}