diff options
author | Andreas Sturmlechner <asturm@gentoo.org> | 2023-08-25 10:08:10 +0200 |
---|---|---|
committer | Andreas Sturmlechner <asturm@gentoo.org> | 2023-08-25 10:28:12 +0200 |
commit | c90ea2c72bae2fbc4e4d554797985d61c246511e (patch) | |
tree | d679e224b0877a1156e5eab2dd0ca8311728808d /dev-libs/kosmindoormap | |
parent | dev-libs/kopeninghours: 23.08.0 version bump (diff) | |
download | gentoo-c90ea2c72bae2fbc4e4d554797985d61c246511e.tar.gz gentoo-c90ea2c72bae2fbc4e4d554797985d61c246511e.tar.bz2 gentoo-c90ea2c72bae2fbc4e4d554797985d61c246511e.zip |
dev-libs/kosmindoormap: 23.08.0 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-23.08.0.ebuild | 47 |
2 files changed, 48 insertions, 0 deletions
diff --git a/dev-libs/kosmindoormap/Manifest b/dev-libs/kosmindoormap/Manifest index a6b2ee95ccfb..3a9b43a66b97 100644 --- a/dev-libs/kosmindoormap/Manifest +++ b/dev-libs/kosmindoormap/Manifest @@ -1 +1,2 @@ DIST kosmindoormap-23.04.3.tar.xz 375680 BLAKE2B 306336b33c7b03e67531f11163c579dab5b68614f4fd582eb14858a7c80e601e848aaf933c846a144d07e59c215b59f3a0021429f675a76750903144e02829d1 SHA512 1ad5acc7143842005cc02c146e90090d57d8fbafbac6a4401ab94ec966c709f66f7f832169982a808ab21911b16e6f837137c2fd9cf284c540ce03e6647c3405 +DIST kosmindoormap-23.08.0.tar.xz 376708 BLAKE2B 53d873dce498e04333616baeb6122500bd0a159e9cd26d89a4c3a4b9033d6753bba711c0c1bfb6cb3076b944319bf90935594323b30ea7d9491fbf90979e7095 SHA512 282f7cd3c0436684c3321c2c65a3782abb9175005f726a075a6461cfdf5ee64403401d2ec10f0d7d06b3f683db408fcccfd4ea5cdab1deccd222d191a6df197e diff --git a/dev-libs/kosmindoormap/kosmindoormap-23.08.0.ebuild b/dev-libs/kosmindoormap/kosmindoormap-23.08.0.ebuild new file mode 100644 index 000000000000..7d84056f235e --- /dev/null +++ b/dev-libs/kosmindoormap/kosmindoormap-23.08.0.ebuild @@ -0,0 +1,47 @@ +# Copyright 1999-2023 Gentoo Authors +# Distributed under the terms of the GNU General Public License v2 + +EAPI=8 + +ECM_TEST="true" +PVCUT=$(ver_cut 1-3) +KFMIN=5.106.0 +QTMIN=5.15.9 +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="5" +KEYWORDS="~amd64" +IUSE="+openinghours" + +COMMON_DEPEND=" + >=dev-libs/kpublictransport-${PVCUT}:5 + dev-libs/protobuf:= + >=dev-qt/qtdeclarative-${QTMIN}:5 + >=dev-qt/qtgui-${QTMIN}:5 + >=dev-qt/qtnetwork-${QTMIN}:5 + >=kde-frameworks/ki18n-${KFMIN}:5 + sys-libs/zlib + openinghours? ( >=dev-libs/kopeninghours-${PVCUT}:5 ) +" +DEPEND="${COMMON_DEPEND} + test? ( >=dev-qt/qtwidgets-${QTMIN}:5 ) +" +RDEPEND="${COMMON_DEPEND} + >=dev-qt/qtquickcontrols2-${QTMIN}:5 +" +BDEPEND=" + sys-devel/bison + sys-devel/flex +" + +src_configure() { + local mycmakeargs=( + -DCMAKE_DISABLE_FIND_PACKAGE_OsmTools=ON # we have no use for it + $(cmake_use_find_package openinghours KOpeningHours) + ) + ecm_src_configure +} |