mirror of
https://github.com/gentoo-mirror/gentoo.git
synced 2026-09-24 04:59:14 -07:00
app-i18n/libhangul: add 0.2.0
Release: - https://github.com/libhangul/libhangul/releases/tag/libhangul-0.2.0 Closes: https://github.com/gentoo/gentoo/pull/42333 Signed-off-by: Sungjoon Moon <sumoon@seoulsaram.org> Signed-off-by: WANG Xuerui <xen0n@gentoo.org>
This commit is contained in:
committed by
WANG Xuerui
parent
d0e6fc9ba7
commit
db75efaaef
@@ -1 +1,2 @@
|
||||
DIST libhangul-0.1.0.tar.gz 2899845 BLAKE2B 5d6f4f9d6dfc32b8d6c6c0219b6e25b9c483555dbe623e5d284043d15eb24b4c7044003bcfd4c55b1ff6ab4b3b0c28037a8497f79fc9b733eb7de8952fee3ed0 SHA512 cf84850bf7a41e743457300513c5efdf7b3e18d168f4fdc324aaa8e1be78743752fcb98385764f94c707777ab82cc9444e076808e61fdbd915c9c0d7ea93c534
|
||||
DIST libhangul-0.2.0.tar.gz 3027777 BLAKE2B aab23c62009b77d39aaf57d0650dd4ae553e660b8cc7c9dc1b323b03c6862bc0713357bba87f6105373f25ef06173379d4a5d1eaca361919ad85824e9057a0cb SHA512 a8e1e70a91d51932bedc9b9d9e3099aba18d1b696cdc2395430076bf433855d0dbe807bc901f4eee4bd7bfda1e0079f73d58c6564a03e5f7828a7fe41c357c0a
|
||||
|
||||
43
app-i18n/libhangul/libhangul-0.2.0.ebuild
Normal file
43
app-i18n/libhangul/libhangul-0.2.0.ebuild
Normal file
@@ -0,0 +1,43 @@
|
||||
# Copyright 2006-2025 Gentoo Authors
|
||||
# Distributed under the terms of the GNU General Public License v2
|
||||
|
||||
EAPI="8"
|
||||
|
||||
inherit libtool
|
||||
|
||||
DESCRIPTION="Library for hangul input method logic, hanja dictionary"
|
||||
HOMEPAGE="https://github.com/libhangul/libhangul"
|
||||
SRC_URI="https://github.com/libhangul/${PN}/releases/download/${P}/${P}.tar.gz"
|
||||
|
||||
LICENSE="LGPL-2.1+"
|
||||
SLOT="0/1"
|
||||
KEYWORDS="~amd64 ~arm64 ~loong ~ppc ~ppc64 ~riscv ~x86"
|
||||
IUSE="nls static-libs test"
|
||||
RESTRICT="!test? ( test )"
|
||||
|
||||
BDEPEND="virtual/pkgconfig
|
||||
nls? ( sys-devel/gettext )"
|
||||
RDEPEND="virtual/libiconv
|
||||
nls? ( virtual/libintl )"
|
||||
DEPEND="${RDEPEND}
|
||||
test? ( dev-libs/check )"
|
||||
|
||||
src_prepare() {
|
||||
default
|
||||
elibtoolize
|
||||
}
|
||||
|
||||
src_configure() {
|
||||
econf \
|
||||
$(use_enable nls) \
|
||||
$(use_enable static-libs static)
|
||||
}
|
||||
|
||||
src_test() {
|
||||
emake -C test check
|
||||
}
|
||||
|
||||
src_install() {
|
||||
default
|
||||
find "${ED}" -name "*.la" -delete || die
|
||||
}
|
||||
Reference in New Issue
Block a user