Gentoo Archives: gentoo-commits

From: "Rémi Cardona" <remi@g.o>
To: gentoo-commits@l.g.o
Subject: [gentoo-commits] repo/gentoo:master commit in: app-text/gtkspell/
Date: Thu, 06 Feb 2020 23:32:57
Message-Id: 1581031962.b1dec27cc401e050bfe2a8783cdb3d0cb92d0bb6.remi@gentoo
1 commit: b1dec27cc401e050bfe2a8783cdb3d0cb92d0bb6
2 Author: Rémi Cardona <remi <AT> gentoo <DOT> org>
3 AuthorDate: Thu Feb 6 23:32:16 2020 +0000
4 Commit: Rémi Cardona <remi <AT> gentoo <DOT> org>
5 CommitDate: Thu Feb 6 23:32:42 2020 +0000
6 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=b1dec27c
7
8 app-text/gtkspell: disable gtk-doc support to cope with tool removal
9
10 Closes: https://bugs.gentoo.org/707368
11 Package-Manager: Portage-2.3.87, Repoman-2.3.20
12 Signed-off-by: Rémi Cardona <remi <AT> gentoo.org>
13
14 app-text/gtkspell/gtkspell-2.0.16-r1.ebuild | 40 +++++++++++++++++++++++++++++
15 1 file changed, 40 insertions(+)
16
17 diff --git a/app-text/gtkspell/gtkspell-2.0.16-r1.ebuild b/app-text/gtkspell/gtkspell-2.0.16-r1.ebuild
18 new file mode 100644
19 index 00000000000..bc0747bea5f
20 --- /dev/null
21 +++ b/app-text/gtkspell/gtkspell-2.0.16-r1.ebuild
22 @@ -0,0 +1,40 @@
23 +# Copyright 1999-2020 Gentoo Authors
24 +# Distributed under the terms of the GNU General Public License v2
25 +
26 +EAPI=7
27 +
28 +inherit eutils
29 +
30 +DESCRIPTION="Spell checking widget for GTK"
31 +HOMEPAGE="http://gtkspell.sourceforge.net/"
32 +# gtkspell doesn't use sourceforge mirroring system it seems.
33 +SRC_URI="http://${PN}.sourceforge.net/download/${P}.tar.gz"
34 +
35 +LICENSE="GPL-2+"
36 +SLOT="2"
37 +KEYWORDS="~alpha ~amd64 ~arm ~arm64 ~hppa ~ia64 ~mips ~ppc ~ppc64 ~sparc ~x86 ~amd64-linux ~x86-linux ~x86-macos ~x86-solaris"
38 +IUSE=""
39 +
40 +RDEPEND="x11-libs/gtk+:2
41 + >=app-text/enchant-1.1.6:0"
42 +DEPEND="${RDEPEND}
43 + >=dev-util/intltool-0.35.0
44 + virtual/pkgconfig"
45 +
46 +DOCS=( AUTHORS ChangeLog README ) # NEWS file is empty
47 +
48 +src_prepare() {
49 + default
50 +
51 + # Fix intltoolize broken file, see upstream #577133
52 + sed -i -e "s:'\^\$\$lang\$\$':\^\$\$lang\$\$:g" po/Makefile.in.in || die
53 +}
54 +
55 +src_configure() {
56 + econf --disable-static --disable-gtk-doc
57 +}
58 +
59 +src_install() {
60 + default
61 + find "${D}" -name '*.la' -type f -delete || die
62 +}