Gentoo Archives: gentoo-commits

From: Mart Raudsepp <leio@g.o>
To: gentoo-commits@l.g.o
Subject: [gentoo-commits] repo/gentoo:master commit in: app-text/enchant/
Date: Sat, 08 Feb 2020 09:28:39
Message-Id: 1581154053.87b596c6b22ecb70fe5d14fc5dc62be627758b26.leio@gentoo
1 commit: 87b596c6b22ecb70fe5d14fc5dc62be627758b26
2 Author: Mart Raudsepp <leio <AT> gentoo <DOT> org>
3 AuthorDate: Sat Feb 8 09:24:16 2020 +0000
4 Commit: Mart Raudsepp <leio <AT> gentoo <DOT> org>
5 CommitDate: Sat Feb 8 09:27:33 2020 +0000
6 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=87b596c6
7
8 app-text/enchant: remove old
9
10 Package-Manager: Portage-2.3.84, Repoman-2.3.20
11 Signed-off-by: Mart Raudsepp <leio <AT> gentoo.org>
12
13 app-text/enchant/enchant-1.6.1.ebuild | 58 -----------------------------------
14 1 file changed, 58 deletions(-)
15
16 diff --git a/app-text/enchant/enchant-1.6.1.ebuild b/app-text/enchant/enchant-1.6.1.ebuild
17 deleted file mode 100644
18 index 1a9e48216bf..00000000000
19 --- a/app-text/enchant/enchant-1.6.1.ebuild
20 +++ /dev/null
21 @@ -1,58 +0,0 @@
22 -# Copyright 1999-2020 Gentoo Authors
23 -# Distributed under the terms of the GNU General Public License v2
24 -
25 -EAPI=6
26 -inherit versionator
27 -
28 -MY_PV="$(replace_all_version_separators '-')"
29 -DESCRIPTION="Spellchecker wrapping library"
30 -HOMEPAGE="https://abiword.github.io/enchant/"
31 -SRC_URI="https://github.com/AbiWord/enchant/releases/download/${PN}-${MY_PV}/${P}.tar.gz"
32 -
33 -LICENSE="LGPL-2.1"
34 -SLOT="0"
35 -KEYWORDS="~alpha amd64 arm ~arm64 ~hppa ia64 ~mips ppc ppc64 ~sh sparc x86 ~amd64-linux ~x86-linux ~ppc-macos ~x86-macos ~x86-solaris"
36 -
37 -IUSE="aspell +hunspell static-libs test"
38 -RESTRICT="!test? ( test )"
39 -REQUIRED_USE="|| ( hunspell aspell )"
40 -
41 -# FIXME: depends on unittest++ but through pkgconfig which is a Debian hack, bug #629742
42 -COMMON_DEPENDS="
43 - >=dev-libs/glib-2.6:2
44 - aspell? ( app-text/aspell )
45 - hunspell? ( >=app-text/hunspell-1.2.1:0= )"
46 -RDEPEND="${COMMON_DEPENDS}"
47 -
48 -DEPEND="${COMMON_DEPENDS}
49 - virtual/pkgconfig
50 -"
51 -# test? ( dev-libs/unittest++ )
52 -
53 -DOCS="AUTHORS BUGS ChangeLog HACKING MAINTAINERS NEWS README TODO"
54 -
55 -PATCHES=(
56 - "${FILESDIR}"/${PN}-1.6.0-hunspell150_fix.patch
57 -)
58 -
59 -src_prepare() {
60 - default
61 - sed -e "/SUBDIRS/ s/unittests//" -i "${S}"/Makefile.{am,in} || die
62 -}
63 -
64 -src_configure() {
65 - econf \
66 - $(use_enable aspell) \
67 - $(use_enable hunspell myspell) \
68 - $(use_enable static-libs static) \
69 - --disable-hspell \
70 - --disable-ispell \
71 - --disable-uspell \
72 - --disable-voikko \
73 - --with-myspell-dir="${EPREFIX}"/usr/share/myspell/
74 -}
75 -
76 -src_install() {
77 - default
78 - find "${D}" -name '*.la' -delete || die
79 -}