mirror of
https://anongit.gentoo.org/git/repo/gentoo.git
synced 2026-05-06 07:27:03 -04:00
2af31d477d
remove empty IUSE Signed-off-by: Nicolas PARLANT <nicolas.parlant@parhuet.fr> Part-of: https://codeberg.org/gentoo/gentoo/pulls/736 Signed-off-by: Sam James <sam@gentoo.org>
36 lines
1.0 KiB
Bash
36 lines
1.0 KiB
Bash
# Copyright 1999-2026 Gentoo Authors
|
|
# Distributed under the terms of the GNU General Public License v2
|
|
|
|
EAPI=8
|
|
|
|
MYSPELL_DICT=(
|
|
"opt/libreoffice7.1/share/extensions/dict-hu/hu_HU.aff"
|
|
"opt/libreoffice7.1/share/extensions/dict-hu/hu_HU.dic"
|
|
)
|
|
|
|
MYSPELL_HYPH=(
|
|
"opt/libreoffice7.1/share/extensions/dict-hu/hyph_hu_HU.dic"
|
|
)
|
|
|
|
MYSPELL_THES=(
|
|
"opt/libreoffice7.1/share/extensions/dict-hu/th_hu_HU_v2.dat"
|
|
"opt/libreoffice7.1/share/extensions/dict-hu/th_hu_HU_v2.idx"
|
|
)
|
|
|
|
RPM_COMPRESS_TYPE=none
|
|
inherit rpm myspell-r2
|
|
|
|
DESCRIPTION="Hungarian dictionaries for myspell/hunspell"
|
|
HOMEPAGE="http://magyarispell.sourceforge.net/"
|
|
SRC_URI="https://downloadarchive.documentfoundation.org/libreoffice/old/${PV}/rpm/x86_64/LibreOffice_${PV}_Linux_x86-64_rpm_langpack_hu.tar.gz"
|
|
|
|
LICENSE="GPL-3 GPL-2 LGPL-2.1 MPL-1.1"
|
|
SLOT="0"
|
|
KEYWORDS="~alpha amd64 arm arm64 ~hppa ~loong ~mips ppc ppc64 ~riscv ~sparc x86"
|
|
|
|
src_unpack() {
|
|
myspell-r2_src_unpack
|
|
|
|
rpm_unpack ./LibreOffice_${PV}_Linux_x86-64_rpm_langpack_hu/RPMS/libreoffice7.1-dict-hu-${PV}-2.x86_64.rpm
|
|
}
|