blob: b551ecb9ff3740dbf01d79b676817f46d16f750f (
plain) (
tree)
|
|
# Copyright 1999-2021 Gentoo Authors
# Distributed under the terms of the GNU General Public License v2
EAPI=7
inherit cmake
if [[ "${PV}" == 9999 ]]; then
inherit git-r3
EGIT_REPO_URI="https://github.com/fcitx/fcitx5-qt.git"
KEYWORDS=""
else
SRC_URI="https://github.com/fcitx/fcitx5-qt/archive/refs/tags/${PV}.tar.gz -> ${P}.tar.gz"
KEYWORDS="~amd64 ~x86"
fi
DESCRIPTION="Qt library and IM module for fcitx5"
HOMEPAGE="https://github.com/fcitx/fcitx5-qt"
LICENSE="BSD-1 GPL-2+ LGPL-2+ MIT"
SLOT="5"
IUSE="qt5 only_plugin"
RDEPEND="app-i18n/fcitx5
dev-qt/qtcore:5
dev-qt/qtdbus:5
dev-qt/qtgui:5
dev-qt/qtwidgets:5
x11-libs/libX11
dev-qt/qtconcurrent:5
kde-frameworks/extra-cmake-modules"
DEPEND="${RDEPEND}
virtual/pkgconfig"
src_configure() {
local mycmakeargs=(
-DCMAKE_INSTALL_SYSCONFDIR="${EPREFIX}/etc"
-DCMAKE_INSTALL_LIBDIR="${EPREFIX}/usr/$(get_libdir)"
-DCMAKE_BUILD_TYPE=Release
-DENABLE_QT4=no
-DENABLE_QT5=$(usex qt5)
-DBUILD_ONLY_PLUGIN=$(usex only_plugin)
)
cmake_src_configure
}
|