mirror of
https://github.com/gentoo-mirror/gentoo.git
synced 2025-12-08 00:05:33 +03:00
app-i18n/libime: add 1.1.12
Signed-off-by: jinqiang zhang <peeweep@0x0.ee> Signed-off-by: Yixun Lan <dlan@gentoo.org>
This commit is contained in:
parent
71e5d9a1a3
commit
8451dc6c3c
@ -1 +1,2 @@
|
||||
DIST libime-1.1.11_dict.tar.zst 49591163 BLAKE2B 6f14f54237e951350c819905afefb4f72b3cc7c96374dc1d20013b917d3f14d38faabfcf11e90e5420b0a864adc4f4bb29f9730373bb59caffc344c571e47270 SHA512 8eaee360b97822bf7a4f6aa3454e9bb09106c382e99604347f08c078242cd4833caab558268312f94b6cc65a3928e624a14daa2c770dc31042f649707e2c56a3
|
||||
DIST libime-1.1.12_dict.tar.zst 49593140 BLAKE2B 4544b5cadc1bf141b7f5ed522e148e8c8aff8c4e75ad79ac208084df2d811f8ce9f27d42b85023e5273a362593ae62c56b812382ddc6e222f416af4d05bae8fb SHA512 e836a91cb8685a5cc063d9a7598dd753c654a47e7c29f2d8751df0389a8a6e99ef6bbb3f691b162e8d0939905a6ea50765a81dfbfccb28b0ea171cdd4a7f26d7
|
||||
|
||||
53
app-i18n/libime/libime-1.1.12.ebuild
Normal file
53
app-i18n/libime/libime-1.1.12.ebuild
Normal file
@ -0,0 +1,53 @@
|
||||
# Copyright 2023-2025 Gentoo Authors
|
||||
# Distributed under the terms of the GNU General Public License v2
|
||||
|
||||
EAPI=8
|
||||
|
||||
inherit cmake unpacker
|
||||
|
||||
DESCRIPTION="Fcitx5 Next generation of fcitx"
|
||||
HOMEPAGE="https://fcitx-im.org/"
|
||||
SRC_URI="https://download.fcitx-im.org/fcitx5/libime/libime-${PV}_dict.tar.zst"
|
||||
|
||||
LICENSE="LGPL-2+"
|
||||
SLOT="5"
|
||||
KEYWORDS="~amd64 ~arm64 ~loong ~ppc64 ~riscv ~x86"
|
||||
IUSE="+data doc test"
|
||||
RESTRICT="!test? ( test )"
|
||||
|
||||
RDEPEND="
|
||||
>=app-i18n/fcitx-5.1.13:5
|
||||
app-arch/zstd:=
|
||||
dev-libs/boost:=
|
||||
"
|
||||
DEPEND="${RDEPEND}"
|
||||
BDEPEND="
|
||||
kde-frameworks/extra-cmake-modules:0
|
||||
virtual/pkgconfig
|
||||
doc? (
|
||||
app-text/doxygen
|
||||
dev-texlive/texlive-fontutils
|
||||
)
|
||||
"
|
||||
|
||||
src_configure() {
|
||||
# 957570 : remove unused kenlm CMakeLists.txt
|
||||
rm src/libime/core/kenlm/CMakeLists.txt || die
|
||||
|
||||
local mycmakeargs=(
|
||||
-DENABLE_DATA=$(usex data)
|
||||
-DENABLE_DOC=$(usex doc)
|
||||
-DENABLE_TEST=$(usex test)
|
||||
)
|
||||
cmake_src_configure
|
||||
}
|
||||
|
||||
src_compile() {
|
||||
cmake_src_compile
|
||||
use doc && cmake_src_compile doc
|
||||
}
|
||||
|
||||
src_install() {
|
||||
cmake_src_install
|
||||
use doc && dodoc -r "${BUILD_DIR}"/doc/*
|
||||
}
|
||||
Loading…
x
Reference in New Issue
Block a user