mirror of
https://anongit.gentoo.org/git/repo/gentoo.git
synced 2025-06-07 21:55:04 +02:00
Done with regret but :0 is absolutely ancient and I don't think it's worth spending time on this given only pidgin->gtkspell-2 is left depending on this. Do the same as Fedora and built w/ -std=gnu89. Closes: https://bugs.gentoo.org/932436 Signed-off-by: Sam James <sam@gentoo.org>
65 lines
1.4 KiB
Bash
65 lines
1.4 KiB
Bash
# Copyright 1999-2024 Gentoo Authors
|
|
# Distributed under the terms of the GNU General Public License v2
|
|
|
|
EAPI=8
|
|
|
|
inherit flag-o-matic
|
|
|
|
MY_PV="${PV//./-}"
|
|
DESCRIPTION="Spellchecker wrapping library"
|
|
HOMEPAGE="https://github.com/rrthomas/enchant"
|
|
SRC_URI="https://github.com/rrthomas/enchant/releases/download/${PN}-${MY_PV}/${P}.tar.gz"
|
|
|
|
LICENSE="LGPL-2.1+"
|
|
SLOT="0"
|
|
KEYWORDS="~alpha amd64 arm arm64 ~hppa ~loong ~mips ppc ppc64 ~riscv sparc x86 ~amd64-linux ~x86-linux ~ppc-macos"
|
|
|
|
IUSE="aspell +hunspell test"
|
|
RESTRICT="!test? ( test )"
|
|
REQUIRED_USE="|| ( aspell hunspell )"
|
|
|
|
COMMON_DEPEND="
|
|
>=dev-libs/glib-2.6:2
|
|
aspell? ( app-text/aspell )
|
|
hunspell? ( >=app-text/hunspell-1.2.1:0= )
|
|
"
|
|
RDEPEND="${COMMON_DEPEND}
|
|
!<app-text/enchant-2.3.3:2
|
|
"
|
|
DEPEND="${COMMON_DEPEND}
|
|
test? ( >=dev-libs/unittest++-2.0.0-r2 )
|
|
"
|
|
BDEPEND="virtual/pkgconfig"
|
|
|
|
PATCHES=(
|
|
"${FILESDIR}"/${PN}-1.6.0-hunspell150_fix.patch
|
|
)
|
|
|
|
src_prepare() {
|
|
default
|
|
sed -e "s/build_zemberek=yes//" -i "${S}"/configure{.ac,} || die # bug 662484
|
|
}
|
|
|
|
src_configure() {
|
|
# bug #932436
|
|
append-cflags -std=gnu89
|
|
|
|
local myconf=(
|
|
--datadir="${EPREFIX}"/usr/share/enchant-1
|
|
--disable-static
|
|
$(use_enable aspell)
|
|
$(use_enable hunspell myspell)
|
|
--disable-hspell
|
|
--disable-ispell
|
|
--disable-uspell
|
|
--disable-voikko
|
|
--disable-zemberek
|
|
--with-myspell-dir="${EPREFIX}"/usr/share/myspell/
|
|
)
|
|
econf "${myconf[@]}"
|
|
}
|
|
|
|
src_install() {
|
|
default
|
|
find "${D}" -name '*.la' -delete || die
|
|
}
|