diff options
author | Andreas Sturmlechner <asturm@gentoo.org> | 2024-08-11 00:17:18 +0200 |
---|---|---|
committer | Andreas Sturmlechner <asturm@gentoo.org> | 2024-08-11 00:17:18 +0200 |
commit | d9a1eafab059fc474d6f245745f794b845e49046 (patch) | |
tree | 4919f5e4e47e67c7f114583a6dce26116981bc01 /dev-libs/kosmindoormap | |
parent | dev-libs/kopeninghours: 24.07.90 version bump (diff) | |
download | kde-d9a1eafab059fc474d6f245745f794b845e49046.tar.gz kde-d9a1eafab059fc474d6f245745f794b845e49046.tar.bz2 kde-d9a1eafab059fc474d6f245745f794b845e49046.zip |
dev-libs/kosmindoormap: 24.07.90 version bump
Signed-off-by: Andreas Sturmlechner <asturm@gentoo.org>
Diffstat (limited to 'dev-libs/kosmindoormap')
-rw-r--r-- | dev-libs/kosmindoormap/Manifest | 1 | ||||
-rw-r--r-- | dev-libs/kosmindoormap/kosmindoormap-24.07.90.ebuild | 48 |
2 files changed, 49 insertions, 0 deletions
diff --git a/dev-libs/kosmindoormap/Manifest b/dev-libs/kosmindoormap/Manifest new file mode 100644 index 0000000000..aca907a6b7 --- /dev/null +++ b/dev-libs/kosmindoormap/Manifest @@ -0,0 +1 @@ +DIST kosmindoormap-24.07.90.tar.xz 691576 BLAKE2B 1eaba5f933cd127245e9645e14437a5fdea9e010703600c69172fcca68d314e2257037209b836bbea7232ca7a65a1d86ec2d3a31d5a2ff9df702959ddaf645fd SHA512 9a9b28139da566145d6b524d03ab1bb3c94eb871f373a29d879fda197042aa7e7db923392eb3cf2d829db81953bbb96448ee742ed408bcc7c90199ccf05decdd diff --git a/dev-libs/kosmindoormap/kosmindoormap-24.07.90.ebuild b/dev-libs/kosmindoormap/kosmindoormap-24.07.90.ebuild new file mode 100644 index 0000000000..917524a82c --- /dev/null +++ b/dev-libs/kosmindoormap/kosmindoormap-24.07.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 +} |