aboutsummaryrefslogtreecommitdiff
blob: 6e200c73e48660bc56c95abda9e30f1bbabd1f86 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
# 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.245.0
QTMIN=6.6.0
inherit ecm gear.kde.org

DESCRIPTION="Thumbnail generators for Mobipocket, PDF/PS and RAW files"

LICENSE="GPL-2+"
SLOT="6"
KEYWORDS=""
IUSE="mobi" # TODO: raw

DEPEND="
	>=dev-qt/qtbase-${QTMIN}:6[gui]
	>=kde-frameworks/karchive-${KFMIN}:6
	>=kde-frameworks/kio-${KFMIN}:6
	mobi? ( >=kde-apps/kdegraphics-mobipocket-${PVCUT}:6 )
"
# 	raw? (
# 		>=kde-apps/libkdcraw-${PVCUT}:6
# 		>=kde-apps/libkexiv2-${PVCUT}:6
# 	)
RDEPEND="${DEPEND}"

src_configure() {
	local mycmakeargs=(
		-DDISABLE_MOBIPOCKET=$(usex !mobi)
# 		$(cmake_use_find_package raw KF6KExiv2)
# 		$(cmake_use_find_package raw KF6KDcraw)
	)

	ecm_src_configure
}