Gentoo Archives: gentoo-commits

From: Pacho Ramos <pacho@g.o>
To: gentoo-commits@l.g.o
Subject: [gentoo-commits] repo/gentoo:master commit in: app-text/gtkspell/
Date: Sat, 26 Dec 2015 14:20:59
Message-Id: 1451139604.63cca522128e45910a1583e63c4a8e838c909d49.pacho@gentoo
1 commit: 63cca522128e45910a1583e63c4a8e838c909d49
2 Author: Pacho Ramos <pacho <AT> gentoo <DOT> org>
3 AuthorDate: Sat Dec 26 13:38:10 2015 +0000
4 Commit: Pacho Ramos <pacho <AT> gentoo <DOT> org>
5 CommitDate: Sat Dec 26 14:20:04 2015 +0000
6 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=63cca522
7
8 app-text/gtkspell: Version bump
9
10 Package-Manager: portage-2.2.26
11
12 app-text/gtkspell/Manifest | 1 +
13 app-text/gtkspell/gtkspell-3.0.7.ebuild | 47 +++++++++++++++++++++++++++++++++
14 2 files changed, 48 insertions(+)
15
16 diff --git a/app-text/gtkspell/Manifest b/app-text/gtkspell/Manifest
17 index 780768a..1dbe40d 100644
18 --- a/app-text/gtkspell/Manifest
19 +++ b/app-text/gtkspell/Manifest
20 @@ -1,2 +1,3 @@
21 DIST gtkspell-2.0.16.tar.gz 351277 SHA256 8fc7dc560167b2cb7193e76aca625a152dc19b0ebf49816b78539cbb90d80d02 SHA512 7d3afb327c2e15608194e6ee6110107a0ce082e483788d831d636b2e579472304137373c09a966d8e5c0cd2f830bf2e0ee477c9b5fca7da6ee27fd1498915b9d WHIRLPOOL 58dc258297412b99185f8d284fb4d2ab71ab834aa29e17a9dfb743e93271ae14d517fea2dc886112898f666104300df62b04082c307b3870de4a5d908bf2ae57
22 DIST gtkspell3-3.0.4.tar.gz 420762 SHA256 fabf8e670c99c1a91996e0e33fa78b7c023f77efb3e11355cf5aa9bcdc43e4a7 SHA512 907b9321b4608ca13c55c1c3a07a648b2d5eb30f0e4a92dca1c27051af254d4ded2444fef1b941f03a96e29e389d868ee15daad4bd7016239cd0dc54bb0f4abb WHIRLPOOL fd07dfd1fc2b4d449083c6847bf2c69d8f11fce2da6a5198a505e75ce6b14b9bd0c66638b5a15c0f0ff8675914355e6f9bbafbbc2096e786f81870c6ab42c1da
23 +DIST gtkspell3-3.0.7.tar.gz 447648 SHA256 13f2e6d3e2554cc24253ef592074b28c117db33b7a4465c98c69a3e0a4fa3cc2 SHA512 121c32050a3f3fe6868d76ce7783cb4619a9cbca083b45b78e1279e4c86143fe414e60971fed4c505b066449743664b372a06589af9c3e8dd1bafae355f83e47 WHIRLPOOL db0c04e6a6c01bf6929ef92c7f53f0852afab5216854d9dfd028749caa016b9cce94d8c41b0cca6d2e4a5e6005141bb080b1167e4dfeefa4acd0cd8196a8e112
24
25 diff --git a/app-text/gtkspell/gtkspell-3.0.7.ebuild b/app-text/gtkspell/gtkspell-3.0.7.ebuild
26 new file mode 100644
27 index 0000000..c4cb2b2
28 --- /dev/null
29 +++ b/app-text/gtkspell/gtkspell-3.0.7.ebuild
30 @@ -0,0 +1,47 @@
31 +# Copyright 1999-2014 Gentoo Foundation
32 +# Distributed under the terms of the GNU General Public License v2
33 +# $Id$
34 +
35 +EAPI="5"
36 +GCONF_DEBUG="no"
37 +
38 +inherit eutils gnome2 vala
39 +
40 +DESCRIPTION="Spell checking widget for GTK"
41 +HOMEPAGE="http://gtkspell.sourceforge.net/"
42 +MY_P="${PN}3-${PV}"
43 +SRC_URI="mirror://sourceforge/project/${PN}/${PV}/${MY_P}.tar.gz"
44 +
45 +LICENSE="GPL-2+"
46 +SLOT="3/0"
47 +KEYWORDS="~alpha ~amd64 ~arm ~hppa ~ia64 ~mips ~ppc ~ppc64 ~sparc ~x86 ~x86-fbsd ~x86-freebsd ~amd64-linux ~x86-linux ~x86-macos ~x86-solaris"
48 +IUSE="+introspection vala"
49 +
50 +RDEPEND="
51 + >=app-text/enchant-1.1.6
52 + app-text/iso-codes
53 + dev-libs/glib:2
54 + x11-libs/gtk+:3[introspection?]
55 + >=x11-libs/pango-1.8.0[introspection?]
56 + introspection? ( >=dev-libs/gobject-introspection-1.30:= )
57 +"
58 +DEPEND="${RDEPEND}
59 + >=dev-util/gtk-doc-am-1.17
60 + >=dev-util/intltool-0.35.0
61 + virtual/pkgconfig
62 + vala? ( $(vala_depend) )
63 +"
64 +
65 +S="${WORKDIR}/${MY_P}"
66 +
67 +src_prepare() {
68 + use vala && vala_src_prepare
69 + gnome2_src_prepare
70 +}
71 +
72 +src_configure() {
73 + gnome2_src_configure \
74 + --disable-static \
75 + $(use_enable introspection) \
76 + $(use_enable vala)
77 +}