Diff hunspell-1.7.2 with a hunspell-1.7.2-r1
| /usr/portage/app-text/hunspell/hunspell-1.7.2-r1.ebuild 2024-12-25 14:59:47.747270056 +0300 | ||
|---|---|---|
| 1 |
# Copyright 1999-2023 Gentoo Authors |
|
| 1 |
# Copyright 1999-2024 Gentoo Authors |
|
| 2 | 2 |
# Distributed under the terms of the GNU General Public License v2 |
| 3 | 3 | |
| 4 | 4 |
EAPI=8 |
| ... | ... | |
| 17 | 17 |
KEYWORDS="~alpha amd64 arm arm64 ~hppa ~loong ~mips ppc ppc64 ~riscv sparc x86 ~amd64-linux ~x86-linux ~ppc-macos ~x64-macos ~x64-solaris" |
| 18 | 18 | |
| 19 | 19 |
RDEPEND=" |
| 20 |
virtual/libiconv |
|
| 20 | 21 |
ncurses? ( sys-libs/ncurses:= ) |
| 21 | 22 |
readline? ( sys-libs/readline:= ) |
| 22 | 23 |
" |
| 23 | 24 |
DEPEND="${RDEPEND}"
|
| 24 |
BDEPEND="sys-devel/gettext" |
|
| 25 |
BDEPEND=" |
|
| 26 |
>=sys-devel/gettext-0.18 |
|
| 27 |
" |
|
| 25 | 28 | |
| 26 | 29 |
PDEPEND="" |
| 27 | 30 |
for lang in ${LANGS}; do
|
| ... | ... | |
| 60 | 63 |
# You can do that, libreoffice can find them anywhere, just |
| 61 | 64 |
# ping me when you do so ; -- scarabeus |
| 62 | 65 |
local myeconfargs=( |
| 63 |
$(use_enable nls) |
|
| 64 |
$(use_with ncurses ui) |
|
| 65 |
$(use_with readline readline) |
|
| 66 |
$(use_enable static-libs static) |
|
| 66 |
"$(use_enable nls)" |
|
| 67 |
"$(use_with ncurses ui)" |
|
| 68 |
"$(use_with readline readline)" |
|
| 69 |
"$(use_enable static-libs static)" |
|
| 67 | 70 |
) |
| 68 | 71 |
econf "${myeconfargs[@]}"
|
| 69 | 72 |
} |
| 70 | 73 | |
| 71 | 74 |
src_install() {
|
| 72 | 75 |
default |
| 73 | ||
| 74 |
einstalldocs |
|
| 75 | ||
| 76 | 76 |
find "${ED}" -type f -name '*.la' -delete || die
|
| 77 |
einstalldocs |
|
| 77 | 78 | |
| 78 |
# bug #342449 |
|
| 79 |
pushd "${ED}"/usr/$(get_libdir)/ >/dev/null || die
|
|
| 80 |
ln -s lib${PN}{-$(ver_cut 1).$(ver_cut 2).so.0.0.1,.so} || die
|
|
| 81 |
popd >/dev/null || die |
|
| 79 |
# Bug #908872 |
|
| 80 |
keepdir "/usr/share/myspell" |
|
| 82 | 81 |
} |