Gentoo Archives: gentoo-commits

From: "Andreas K. Hüttel" <dilfridge@g.o>
To: gentoo-commits@l.g.o
Subject: [gentoo-commits] repo/gentoo:master commit in: app-text/mythes/
Date: Tue, 22 Dec 2020 21:32:11
Message-Id: 1608672715.07c30c847fb665ab41af02057110e13a1f53cbe5.dilfridge@gentoo
1 commit: 07c30c847fb665ab41af02057110e13a1f53cbe5
2 Author: Andreas K. Hüttel <dilfridge <AT> gentoo <DOT> org>
3 AuthorDate: Tue Dec 22 21:31:38 2020 +0000
4 Commit: Andreas K. Hüttel <dilfridge <AT> gentoo <DOT> org>
5 CommitDate: Tue Dec 22 21:31:55 2020 +0000
6 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=07c30c84
7
8 app-text/mythes: EAPI bump
9
10 Bug: https://bugs.gentoo.org/757567
11 Package-Manager: Portage-3.0.9, Repoman-3.0.2
12 Signed-off-by: Andreas K. Hüttel <dilfridge <AT> gentoo.org>
13
14 app-text/mythes/mythes-1.2.4-r1.ebuild | 26 ++++++++++++++++++++++++++
15 1 file changed, 26 insertions(+)
16
17 diff --git a/app-text/mythes/mythes-1.2.4-r1.ebuild b/app-text/mythes/mythes-1.2.4-r1.ebuild
18 new file mode 100644
19 index 00000000000..6b67564f63a
20 --- /dev/null
21 +++ b/app-text/mythes/mythes-1.2.4-r1.ebuild
22 @@ -0,0 +1,26 @@
23 +# Copyright 1999-2020 Gentoo Authors
24 +# Distributed under the terms of the GNU General Public License v2
25 +
26 +EAPI=7
27 +
28 +DESCRIPTION="A simple thesaurus for Libreoffice"
29 +HOMEPAGE="http://hunspell.sourceforge.net/"
30 +SRC_URI="mirror://sourceforge/hunspell/MyThes/${PV}/${P}.tar.gz"
31 +
32 +LICENSE="MIT"
33 +SLOT="0"
34 +KEYWORDS="~amd64 ~arm ~arm64 ~ppc ~ppc64 ~sparc ~x86 ~amd64-linux ~x86-linux"
35 +IUSE=""
36 +
37 +RDEPEND="app-text/hunspell"
38 +DEPEND="${DEPEND}
39 + virtual/pkgconfig"
40 +
41 +src_configure() {
42 + econf --disable-static
43 +}
44 +
45 +src_install() {
46 + default
47 + find "${ED}" -name '*.la' -exec rm -f {} +
48 +}