blob: f3bb1a58b055804dfba0c6c7f5a39ab3e9b93879 (
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
|
# Copyright 2023-2024 Gentoo Authors
# Distributed under the terms of the GNU General Public License v2
EAPI=8
MY_PN="fcitx5-qt"
inherit cmake
DESCRIPTION="Qt library and IM module for fcitx5"
HOMEPAGE="https://github.com/fcitx/fcitx5-qt"
SRC_URI="https://download.fcitx-im.org/fcitx5/${MY_PN}/${MY_PN}-${PV}.tar.xz -> ${P}.tar.xz"
S="${WORKDIR}/${MY_PN}-${PV}"
LICENSE="BSD LGPL-2.1+"
SLOT="5"
KEYWORDS="amd64 ~arm64 ~loong ~riscv x86"
IUSE="+qt5 onlyplugin staticplugin qt6 +X wayland"
REQUIRED_USE="
|| ( qt5 qt6 )
qt5? ( X )
staticplugin? ( onlyplugin )
"
RDEPEND="
!onlyplugin? (
>=app-i18n/fcitx-5.1.5:5
qt5? ( dev-qt/qtconcurrent:5 )
)
qt5? (
dev-qt/qtcore:5
dev-qt/qtdbus:5
dev-qt/qtgui:5=
dev-qt/qtwidgets:5
wayland? ( dev-qt/qtwayland:5 )
)
qt6? (
dev-qt/qtbase:6=[dbus,gui,widgets,wayland?]
wayland? ( dev-qt/qtwayland:6 )
)
X? (
x11-libs/libX11
x11-libs/libxcb
x11-libs/libxkbcommon
)
"
DEPEND="${RDEPEND}"
BDEPEND="
kde-frameworks/extra-cmake-modules:0
virtual/pkgconfig
!onlyplugin? ( sys-devel/gettext )
"
src_configure() {
local mycmakeargs=(
-DENABLE_QT4=no
-DENABLE_QT5=$(usex qt5)
-DENABLE_QT6=$(usex qt6)
-DENABLE_QT6_WAYLAND_WORKAROUND=$(usex qt6 $(usex wayland))
-DENABLE_X11=$(usex X)
-DBUILD_ONLY_PLUGIN=$(usex onlyplugin)
-DBUILD_STATIC_PLUGIN=$(usex staticplugin)
)
cmake_src_configure
}
|