summaryrefslogtreecommitdiff
path: root/dev-qt/qttools/qttools-6.5.2.ebuild
blob: e75eadff55affeb0d8338d95b9aee8ba97c88ffd (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
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
# Copyright 2021-2023 Gentoo Authors
# Distributed under the terms of the GNU General Public License v2

EAPI=8

inherit qt6-build

DESCRIPTION="Qt Tools Collection"

if [[ ${QT6_BUILD_TYPE} == release ]]; then
	KEYWORDS="~amd64"
fi

IUSE="
	assistant designer distancefieldgenerator +linguist pixeltool
	qattributionsscanner qdbus qdoc qdiag qplugininfo
"

DEPEND="
	=dev-qt/qtbase-${PV}*[network]
	assistant? ( =dev-qt/qtbase-${PV}*[sql,widgets] )
	designer? ( =dev-qt/qtbase-${PV}*[widgets] )
	distancefieldgenerator? (
		=dev-qt/qtbase-${PV}*[widgets]
		=dev-qt/qtdeclarative-${PV}*
	)
	pixeltool? ( =dev-qt/qtbase-${PV}*[widgets] )
	qdbus? ( =dev-qt/qtbase-${PV}*[widgets] )
	qdoc? ( sys-devel/clang:= )
	qdiag? ( =dev-qt/qtbase-${PV}*[opengl,widgets] )
"
RDEPEND="${DEPEND}"

src_configure() {
	local mycmakeargs=(
		$(qt_feature assistant)
		-DQT_FEATURE_commandlineparser=ON
		$(qt_feature designer)
		$(qt_feature distancefieldgenerator)
		$(qt_feature linguist)
		$(qt_feature pixeltool)
		$(qt_feature qattributionsscanner qtattributionsscanner)
		$(qt_feature qdbus)
		$(qt_feature qdoc clang)
		$(qt_feature qdiag qtdiag)
		$(qt_feature qplugininfo qtplugininfo)
		-DQT_FEATURE_thread=ON
	)

	qt6-build_src_configure
}

src_install() {
	qt6-build_src_install

	use assistant && qt6_symlink_binary_to_path assistant 6
	use designer && qt6_symlink_binary_to_path designer 6
	use distancefieldgenerator && qt6_symlink_binary_to_path qdistancefieldgenerator 6
	use linguist && qt6_symlink_binary_to_path linguist 6
	use pixeltool && qt6_symlink_binary_to_path pixeltool 6
	use qdbus && qt6_symlink_binary_to_path qdbus 6
	use qdbus && qt6_symlink_binary_to_path qdbusviewer 6
	use qdoc && qt6_symlink_binary_to_path qdoc 6
	use qdiag && qt6_symlink_binary_to_path qtdiag 6
	use qplugininfo && qt6_symlink_binary_to_path qtplugininfo 6
}