blob: d46c1f331c2b862ae56e3a4eb6b0c54f2c03687c (
plain) (
blame)
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
|
# Copyright 1999-2021 Gentoo Authors
# Distributed under the terms of the GNU General Public License v2
EAPI=7
inherit xdg cmake
DESCRIPTION="Rime Support for Fcitx5"
HOMEPAGE="https://github.com/fcitx/fcitx5-rime"
if [[ "${PV}" == 9999 ]]; then
inherit git-r3
EGIT_REPO_URI="https://github.com/fcitx/fcitx5-rime.git"
KEYWORDS=""
else
SRC_URI="https://github.com/fcitx/fcitx5-rime/archive/refs/tags/${PV}.tar.gz -> ${P}.tar.gz"
KEYWORDS="~amd64 ~x86"
fi
LICENSE="GPL-2"
SLOT="5"
IUSE=""
RDEPEND="app-i18n/fcitx5
>=app-i18n/librime-1.0
>=app-i18n/rime-data-0.3.0
x11-libs/libnotify
!app-i18n/fcitx-rime"
DEPEND="${RDEPEND}"
|