summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorMart Raudsepp <leio@gentoo.org>2024-04-13 13:21:03 +0300
committerMart Raudsepp <leio@gentoo.org>2024-04-13 13:21:03 +0300
commit477db4daa39ca65276eea3c5662d55e091bc3724 (patch)
tree4aef01f8bbe44034384c93097984d7afad017511 /app-text/enchant
parentdev-libs/totem-pl-parser: drop 3.26.6 (diff)
downloadgentoo-477db4daa39ca65276eea3c5662d55e091bc3724.tar.gz
gentoo-477db4daa39ca65276eea3c5662d55e091bc3724.tar.bz2
gentoo-477db4daa39ca65276eea3c5662d55e091bc3724.zip
app-text/enchant: drop 2.5.0
Signed-off-by: Mart Raudsepp <leio@gentoo.org>
Diffstat (limited to 'app-text/enchant')
-rw-r--r--app-text/enchant/Manifest1
-rw-r--r--app-text/enchant/enchant-2.5.0.ebuild66
2 files changed, 0 insertions, 67 deletions
diff --git a/app-text/enchant/Manifest b/app-text/enchant/Manifest
index 9324c7998dbb..e0cde0b11fd0 100644
--- a/app-text/enchant/Manifest
+++ b/app-text/enchant/Manifest
@@ -1,3 +1,2 @@
DIST enchant-1.6.1.tar.gz 642124 BLAKE2B d41aa9b313e7fe8b0887728b55f3c5218e270c7359b4edcdc8d9180af68687230bcc9f7d1abb9f85ac673478530e5674366c9bc7d08b983e7226725b2cdd73d3 SHA512 26c62dfa89ee40150db502651a2f876fba00569b7015f205dae27a029557effacff335bbe36124dbe6686537da2305bcab02592179d03e95fdf9741d54b98036
-DIST enchant-2.5.0.tar.gz 990061 BLAKE2B 297274e48de094815bc5bc105beebf6c3aa41d0d424ce277b348452cfaf2a07e3b71821dd63a0322e14fd3f8635b6d6a40fc84ea888aef9eb31175061149ef67 SHA512 3ab209b0b87b7cd8f94dd2bceed126d0e36252a1ede7a30b1550169555242784a631c0f259b0fe6591771da491ab934cac48f833029ba78dd779fc1ed91341fe
DIST enchant-2.6.1.tar.gz 1014436 BLAKE2B 3df1d72d4fa2e912788d4e12e7bc4ab2676952e358e97457259284e78c32006482be0713059d5feeef56905e83ded975e7d723563c58e4f92c845b0b279a6827 SHA512 e2faabeb6a4edc7237a0a279b210512100fb1662b097cd23f0fc07a3519e48632e5527b0d393793a7623667011eae7e11f15fcddcaa155c4abd26ab6981ddf44
diff --git a/app-text/enchant/enchant-2.5.0.ebuild b/app-text/enchant/enchant-2.5.0.ebuild
deleted file mode 100644
index 22f22e0ed91a..000000000000
--- a/app-text/enchant/enchant-2.5.0.ebuild
+++ /dev/null
@@ -1,66 +0,0 @@
-# Copyright 1999-2024 Gentoo Authors
-# Distributed under the terms of the GNU General Public License v2
-
-EAPI=8
-
-inherit libtool
-
-DESCRIPTION="Spellchecker wrapping library"
-HOMEPAGE="https://abiword.github.io/enchant/"
-SRC_URI="https://github.com/AbiWord/enchant/releases/download/v${PV}/${P}.tar.gz"
-
-LICENSE="LGPL-2.1+"
-SLOT="2"
-KEYWORDS="~alpha amd64 arm arm64 ~hppa ~ia64 ~loong ~mips ppc ppc64 ~riscv ~s390 sparc x86 ~amd64-linux ~x86-linux ~ppc-macos"
-
-IUSE="aspell +hunspell nuspell test voikko"
-RESTRICT="!test? ( test )"
-REQUIRED_USE="|| ( aspell hunspell nuspell )"
-
-COMMON_DEPEND="
- >=dev-libs/glib-2.6:2
- aspell? ( app-text/aspell )
- hunspell? ( >=app-text/hunspell-1.2.1:0= )
- nuspell? ( >=app-text/nuspell-5.1.0:0= )
- voikko? ( dev-libs/libvoikko:= )
-"
-RDEPEND="${COMMON_DEPEND}
- !<app-text/enchant-1.6.1-r2:0
-"
-DEPEND="${COMMON_DEPEND}
- test? ( >=dev-libs/unittest++-2.0.0-r2 )
-"
-BDEPEND="
- sys-apps/groff
- virtual/pkgconfig
-"
-
-QA_CONFIG_IMPL_DECL_SKIP=(
- alignof
-)
-
-src_prepare() {
- default
- elibtoolize
-}
-
-src_configure() {
- local myconf=(
- --disable-static
- $(use_enable test relocatable)
- $(use_with aspell)
- $(use_with hunspell)
- $(use_with nuspell)
- $(use_with voikko)
- --without-hspell
- --without-applespell
- --without-zemberek
- --with-hunspell-dir="${EPREFIX}"/usr/share/hunspell/
- )
- econf "${myconf[@]}"
-}
-
-src_install() {
- default
- find "${D}" -name '*.la' -delete || die
-}