diff options
Diffstat (limited to 'app-text/gspell/gspell-0.1.2.ebuild')
-rw-r--r-- | app-text/gspell/gspell-0.1.2.ebuild | 45 |
1 files changed, 45 insertions, 0 deletions
diff --git a/app-text/gspell/gspell-0.1.2.ebuild b/app-text/gspell/gspell-0.1.2.ebuild new file mode 100644 index 000000000000..d4bb07bcc899 --- /dev/null +++ b/app-text/gspell/gspell-0.1.2.ebuild @@ -0,0 +1,45 @@ +# Copyright 1999-2014 Gentoo Foundation +# Distributed under the terms of the GNU General Public License v2 +# $Id$ + +EAPI="5" +GCONF_DEBUG="no" +VALA_USE_DEPEND="vapigen" + +inherit gnome2 vala + +DESCRIPTION="Spell check library for GTK+ applications" +HOMEPAGE="https://wiki.gnome.org/Projects/gspell" + +LICENSE="GPL-2+" +SLOT="0" +KEYWORDS="~amd64 ~x86" +IUSE="+introspection vala" + +RDEPEND=" + >=app-text/enchant-1.6.0 + >=app-text/iso-codes-0.35 + >=dev-libs/glib-2.44:2 + >=dev-libs/libxml2-2.5.0:2 + >=x11-libs/gtk+-3.16:3 + >=x11-libs/gtksourceview-3.16:3.0 + introspection? ( >=dev-libs/gobject-introspection-1.42.0:= ) + vala? ( $(vala_depend) ) +" +DEPEND="${RDEPEND} + >=dev-util/gtk-doc-am-1.24 + >=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) +} |