diff options
author | Gilles Dartiguelongue <eva@gentoo.org> | 2016-11-12 13:37:12 +0100 |
---|---|---|
committer | Gilles Dartiguelongue <eva@gentoo.org> | 2016-11-13 01:29:54 +0100 |
commit | 9289ca80c396b410cebeaa1561d0cb75d8c66a93 (patch) | |
tree | cf39de2f1afaabeaefd839c47eeeb56254446310 /app-text/gspell | |
parent | x11-wm/mutter: version bump 3.22.1 → 3.22.2 (diff) | |
download | gentoo-9289ca80c396b410cebeaa1561d0cb75d8c66a93.tar.gz gentoo-9289ca80c396b410cebeaa1561d0cb75d8c66a93.tar.bz2 gentoo-9289ca80c396b410cebeaa1561d0cb75d8c66a93.zip |
app-text/gspell: version bump 1.0.3 → 1.2.1
Package-Manager: portage-2.3.2
Diffstat (limited to 'app-text/gspell')
-rw-r--r-- | app-text/gspell/Manifest | 1 | ||||
-rw-r--r-- | app-text/gspell/gspell-1.2.1.ebuild | 48 |
2 files changed, 49 insertions, 0 deletions
diff --git a/app-text/gspell/Manifest b/app-text/gspell/Manifest index 1652d6d43709..841a9564af6d 100644 --- a/app-text/gspell/Manifest +++ b/app-text/gspell/Manifest @@ -1,2 +1,3 @@ DIST gspell-0.1.2.tar.xz 355128 SHA256 e8625c57296b6c178bc37659f023342f8edefaaa2c5eccf40de8bd479dbfa8f0 SHA512 8d9bd61f378929217b9461debb58df5070952539f30f6ee211cf13f856dfe5d5216468679a8d7d7b08df47ee6b7b45f25b2b6400212a83de9563e2bf175905bb WHIRLPOOL 44334ac608e9a66c5a6bf011ad21d7d368e29d7923079e947ed5484ae0c7847df1f29dc255979d0da844e1ecba16fa19dfae5b84aefd85287bc63de1465d3ffa DIST gspell-1.0.3.tar.xz 385772 SHA256 d95905e6c631e34911e8e3feeb364815bf3fd7ccd1dac118a34bcbae70261bd5 SHA512 c38159a988996c69ffd4ed7a348ab5eeef214632e57cf599541806b4317937f0f9ccb8d677182886fd281eb1a955cae595e6382924b1bd5f5edbe447b3e95e5b WHIRLPOOL c4dad122007264fe4a61039eb7aa38b04e4325fb3bf0916ddbcd1073988fe3acc13a9fe445023c113b87ea2ff59f93719d2efaa905d522aff5b070129098569b +DIST gspell-1.2.1.tar.xz 395356 SHA256 9f1c3e5f09693a786e8b8dfdc5f142e9c9641d8674ec687014be928073d3f1a3 SHA512 c1073b314dd478ae8b9fc26ad141b8b560e22f7e26aac49f53fcfb687de914c3caaec9d83781213dc5e76cd2b17eecc801cd63b989deb4cf520539479de35588 WHIRLPOOL ab2289d294f89927113e48277a87697fbe4bffeb6ad2cb3a36ce9279fd7cebf2fe308204c4a73c12fdddda11c558a6beb70e4631fb49f90771b212ae209b45a8 diff --git a/app-text/gspell/gspell-1.2.1.ebuild b/app-text/gspell/gspell-1.2.1.ebuild new file mode 100644 index 000000000000..5e42ce02f92f --- /dev/null +++ b/app-text/gspell/gspell-1.2.1.ebuild @@ -0,0 +1,48 @@ +# Copyright 1999-2016 Gentoo Foundation +# Distributed under the terms of the GNU General Public License v2 +# $Id$ + +EAPI="6" +VALA_USE_DEPEND="vapigen" + +inherit gnome2 vala virtualx + +DESCRIPTION="Spell check library for GTK+ applications" +HOMEPAGE="https://wiki.gnome.org/Projects/gspell" + +LICENSE="LGPL-2.1+" +SLOT="0/1" # subslot = libgspell-1 soname version +KEYWORDS="~alpha ~amd64 ~arm ~x86" + +IUSE="+introspection vala" +REQUIRED_USE="vala? ( introspection )" + +RDEPEND=" + app-text/iso-codes + >=app-text/enchant-1.6.0 + >=dev-libs/glib-2.44:2 + >=x11-libs/gtk+-3.20:3[introspection?] + introspection? ( >=dev-libs/gobject-introspection-1.42.0:= ) + vala? ( $(vala_depend) ) +" +DEPEND="${RDEPEND} + >=dev-util/gtk-doc-am-1.25 + >=dev-util/intltool-0.35.0 + >=sys-devel/gettext-0.19.4 + virtual/pkgconfig +" + +src_prepare() { + use vala && vala_src_prepare + gnome2_src_prepare +} + +src_configure() { + gnome2_src_configure \ + $(use_enable introspection) \ + $(use_enable vala) +} + +src_test() { + virtx emake check +} |