diff options
author | Andreas Sturmlechner <asturm@gentoo.org> | 2023-02-02 10:38:12 +0100 |
---|---|---|
committer | Andreas Sturmlechner <asturm@gentoo.org> | 2023-02-02 12:00:11 +0100 |
commit | f48ce73ceb5b468bf7f3441cd7e2b36a0cfd21e1 (patch) | |
tree | 1077f3e6cb9e17040202d3241d2f89d6cc4e73e1 /dev-libs/kosmindoormap | |
parent | dev-libs/kopeninghours: 22.12.2 version bump (diff) | |
download | gentoo-f48ce73ceb5b468bf7f3441cd7e2b36a0cfd21e1.tar.gz gentoo-f48ce73ceb5b468bf7f3441cd7e2b36a0cfd21e1.tar.bz2 gentoo-f48ce73ceb5b468bf7f3441cd7e2b36a0cfd21e1.zip |
dev-libs/kosmindoormap: 22.12.2 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-22.12.2.ebuild | 47 |
2 files changed, 48 insertions, 0 deletions
diff --git a/dev-libs/kosmindoormap/Manifest b/dev-libs/kosmindoormap/Manifest index b1c37ce021e1..a5f3f73f1701 100644 --- a/dev-libs/kosmindoormap/Manifest +++ b/dev-libs/kosmindoormap/Manifest @@ -1,2 +1,3 @@ DIST kosmindoormap-22.08.3.tar.xz 358936 BLAKE2B 947e915db5df274aa6f1ea5126d5cb43a5ef1530803774f67fbf10dbeb3e1efe1b6bffa8814533cf6c09a2d5e4869320b19ad39b6b1dbd3434399845a21ed319 SHA512 925376ddea2b950bf435045193acbf2dca77601af16a3656acd9bb20d62a98c807b658cf6f5e85dcff56b749985e88537b194e03c619f70acc017761c2482ed8 DIST kosmindoormap-22.12.1.tar.xz 363444 BLAKE2B bc7e301332d387938a999cd799e2e7ec91cf8bd0c6d48e0f136df28c18a047c1215bd1d154f1066f0607de13cbd0c09bde24c82b0b06530b6f61098295dc3b12 SHA512 44421a90575b9e112220dfb0e4e9552eb9971abe91dec52b11ffe994a652ee7f135e6584192bff313f727ed669544b70f08b4651e59f840d29eff54544728b61 +DIST kosmindoormap-22.12.2.tar.xz 363444 BLAKE2B 8a5878b01502d1c63ece4a0702e2b8df2dcf48b981ddd3701f693160a4a33b60a7812689a17638cf39cf8f68b526e0c080dcc77fc92fc4c530d5539600441fd7 SHA512 354826ceeb88aa7ae2d2f60a137214770857a0cc3e6886b0405a67a35f4d8509902a6673fcc4c54036b8803e8c906ca7371b12fb66d9add16db6d212db217976 diff --git a/dev-libs/kosmindoormap/kosmindoormap-22.12.2.ebuild b/dev-libs/kosmindoormap/kosmindoormap-22.12.2.ebuild new file mode 100644 index 000000000000..c16c17a57eac --- /dev/null +++ b/dev-libs/kosmindoormap/kosmindoormap-22.12.2.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.101.0 +QTMIN=5.15.5 +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 +} |