diff options
author | 2023-01-31 11:12:15 +0100 | |
---|---|---|
committer | 2023-01-31 15:12:09 +0100 | |
commit | bf4558c9189ad19394e84a3b9d48adfdf6deddff (patch) | |
tree | e481e45b2f27c9cf7a25f3e90cd33ceba2ab7ecb /kde-apps/thumbnailers | |
parent | kde-apps/svgpart: 22.12.2 version bump (diff) | |
download | kde-bf4558c9189ad19394e84a3b9d48adfdf6deddff.tar.gz kde-bf4558c9189ad19394e84a3b9d48adfdf6deddff.tar.bz2 kde-bf4558c9189ad19394e84a3b9d48adfdf6deddff.zip |
kde-apps/thumbnailers: 22.12.2 version bump
Signed-off-by: Andreas Sturmlechner <asturm@gentoo.org>
Diffstat (limited to 'kde-apps/thumbnailers')
-rw-r--r-- | kde-apps/thumbnailers/Manifest | 1 | ||||
-rw-r--r-- | kde-apps/thumbnailers/thumbnailers-22.12.2.ebuild | 41 |
2 files changed, 42 insertions, 0 deletions
diff --git a/kde-apps/thumbnailers/Manifest b/kde-apps/thumbnailers/Manifest new file mode 100644 index 0000000000..58a9fcaeff --- /dev/null +++ b/kde-apps/thumbnailers/Manifest @@ -0,0 +1 @@ +DIST kdegraphics-thumbnailers-22.12.2.tar.xz 49036 BLAKE2B a06f3635c9da6c5974ad9fae5d635965ace43f14a52ff86dcfb06c00ed0cc9b56b6af2950d4473ad34b291148a00f6ff495d2efa7a42915b094ff32735c79373 SHA512 5e7d77d6dc6c3e9bcf248bd19bf0ea9f747bd2ecf7e4a485483ab9ef33c38e58bc73f5b02d0052ef76338d29f518a4743719e507a991b1d0c7a264a6c9a00861 diff --git a/kde-apps/thumbnailers/thumbnailers-22.12.2.ebuild b/kde-apps/thumbnailers/thumbnailers-22.12.2.ebuild new file mode 100644 index 0000000000..07866d0e37 --- /dev/null +++ b/kde-apps/thumbnailers/thumbnailers-22.12.2.ebuild @@ -0,0 +1,41 @@ +# Copyright 1999-2023 Gentoo Authors +# Distributed under the terms of the GNU General Public License v2 + +EAPI=8 + +KDE_ORG_NAME="kdegraphics-thumbnailers" +PVCUT=$(ver_cut 1-3) +KFMIN=5.101.0 +QTMIN=5.15.5 +inherit ecm gear.kde.org + +DESCRIPTION="Thumbnail generators for Mobipocket, PDF/PS and RAW files" + +LICENSE="GPL-2+" +SLOT="5" +KEYWORDS="~amd64 ~arm64 ~loong ~ppc64 ~riscv ~x86" +IUSE="mobi raw" + +DEPEND=" + >=dev-qt/qtgui-${QTMIN}:5 + >=kde-frameworks/karchive-${KFMIN}:5 + >=kde-frameworks/kio-${KFMIN}:5 + mobi? ( >=kde-apps/kdegraphics-mobipocket-${PVCUT}:5 ) + raw? ( + >=kde-apps/libkdcraw-${PVCUT}:5 + >=kde-apps/libkexiv2-${PVCUT}:5 + ) +" +RDEPEND="${DEPEND} + mobi? ( !<kde-apps/kdegraphics-mobipocket-21.12.50:5[thumbnail] ) +" + +src_configure() { + local mycmakeargs=( + -DDISABLE_MOBIPOCKET=$(usex !mobi) + $(cmake_use_find_package raw KF5KExiv2) + $(cmake_use_find_package raw KF5KDcraw) + ) + + ecm_src_configure +} |